diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md
index 981ed156b34..5d13d3086f7 100644
--- a/.github/PULL_REQUEST_TEMPLATE.md
+++ b/.github/PULL_REQUEST_TEMPLATE.md
@@ -4,8 +4,8 @@
###### Things done
- [ ] Tested using sandboxing
- ([nix.useSandbox](http://nixos.org/nixos/manual/options.html#opt-nix.useSandbox) on NixOS,
- or option `build-use-sandbox` in [`nix.conf`](http://nixos.org/nix/manual/#sec-conf-file)
+ ([nix.useChroot](http://nixos.org/nixos/manual/options.html#opt-nix.useChroot) on NixOS,
+ or option `build-use-chroot` in [`nix.conf`](http://nixos.org/nix/manual/#sec-conf-file)
on non-NixOS)
- Built on platform(s)
- [ ] NixOS
diff --git a/doc/default.nix b/doc/default.nix
index 6a44587a31b..076703213e4 100644
--- a/doc/default.nix
+++ b/doc/default.nix
@@ -57,11 +57,11 @@ stdenv.mkDerivation {
outputFile = "./languages-frameworks/haskell.xml";
}
+ toDocbook {
- inputFile = ./../pkgs/development/idris-modules/README.md;
+ inputFile = ../pkgs/development/idris-modules/README.md;
outputFile = "languages-frameworks/idris.xml";
}
+ toDocbook {
- inputFile = ./../pkgs/development/r-modules/README.md;
+ inputFile = ../pkgs/development/r-modules/README.md;
outputFile = "languages-frameworks/r.xml";
}
+ ''
diff --git a/doc/functions.xml b/doc/functions.xml
index e6bb6b7deef..908e9571ed6 100644
--- a/doc/functions.xml
+++ b/doc/functions.xml
@@ -89,27 +89,27 @@ in ...
<pkg>.overrideDerivation
- Do not use this function in Nixpkgs. Because it breaks
- package abstraction and doesn’t provide error checking for
- function arguments, it is only intended for ad-hoc customisation
- (such as in ~/.nixpkgs/config.nix ).
-
-
-
- Additionally, overrideDerivation forces an evaluation
- of the Derivation which can be quite a performance penalty if there are many
- overrides used.
+ Do not use this function in Nixpkgs as it evaluates a Derivation
+ before modifying it, which breaks package abstraction and removes
+ error-checking of function arguments. In addition, this
+ evaluation-per-function application incurs a performance penalty,
+ which can become a problem if many overrides are used.
+ It is only intended for ad-hoc customisation, such as in
+ ~/.nixpkgs/config.nix .
- The function overrideDerivation is usually available for all the
- derivations in the nixpkgs expression (pkgs ).
+ The function overrideDerivation creates a new derivation
+ based on an existing one by overriding the original's attributes with
+ the attribute set produced by the specified function.
+ This function is available on all
+ derivations defined using the makeOverridable function.
+ Most standard derivation-producing functions, such as
+ stdenv.mkDerivation , are defined using this
+ function, which means most packages in the nixpkgs expression,
+ pkgs , have this function.
-
- It is used to create a new derivation by overriding the attributes of
- the original derivation according to the given function.
-
Example usage:
@@ -125,9 +125,9 @@ in ...
- In the above example, the name, src and patches of the derivation
- will be overridden, while all other attributes will be retained from the
- original derivation.
+ In the above example, the name , src ,
+ and patches of the derivation will be overridden, while
+ all other attributes will be retained from the original derivation.
@@ -135,6 +135,20 @@ in ...
the original derivation.
+
+
+ A package's attributes are evaluated *before* being modified by
+ the overrideDerivation function.
+ For example, the name attribute reference
+ in url = "mirror://gnu/hello/${name}.tar.gz";
+ is filled-in *before* the overrideDerivation function
+ modifies the attribute set. This means that overriding the
+ name attribute, in this example, *will not* change the
+ value of the url attribute. Instead, we need to override
+ both the name *and* url attributes.
+
+
+
@@ -171,42 +185,18 @@ c = lib.makeOverridable f { a = 1; b = 2; }
- buildFHSChrootEnv/buildFHSUserEnv
+ buildFHSUserEnv
- buildFHSChrootEnv and
- buildFHSUserEnv provide a way to build and run
- FHS-compatible lightweight sandboxes. They get their own isolated root with
- binded /nix/store , so their footprint in terms of disk
+ buildFHSUserEnv provides a way to build and run
+ FHS-compatible lightweight sandboxes. It creates an isolated root with
+ bound /nix/store , so its footprint in terms of disk
space needed is quite small. This allows one to run software which is hard or
unfeasible to patch for NixOS -- 3rd-party source trees with FHS assumptions,
games distributed as tarballs, software with integrity checking and/or external
- self-updated binaries.
-
-
-
- buildFHSChrootEnv allows to create persistent
- environments, which can be constructed, deconstructed and entered by
- multiple users at once. A downside is that it requires
- root access for both those who create and destroy and
- those who enter it. It can be useful to create environments for daemons that
- one can enter and observe.
-
-
-
- buildFHSUserEnv uses Linux namespaces feature to create
+ self-updated binaries. It uses Linux namespaces feature to create
temporary lightweight environments which are destroyed after all child
- processes exit. It does not require root access, and can be useful to create
- sandboxes and wrap applications.
-
-
-
- Those functions both rely on buildFHSEnv , which creates
- an actual directory structure given a list of necessary packages and extra
- build commands.
- buildFHSChrootEnv and buildFHSUserEnv
- both accept those arguments which are passed to
- buildFHSEnv :
+ processes exit, without root user rights requirement. Accepted arguments are:
@@ -220,14 +210,16 @@ c = lib.makeOverridable f { a = 1; b = 2; }
targetPkgs
Packages to be installed for the main host's architecture
- (i.e. x86_64 on x86_64 installations).
+ (i.e. x86_64 on x86_64 installations). Along with libraries binaries are also
+ installed.
multiPkgs
Packages to be installed for all architectures supported by
- a host (i.e. i686 and x86_64 on x86_64 installations).
+ a host (i.e. i686 and x86_64 on x86_64 installations). Only libraries are
+ installed by default.
@@ -240,29 +232,33 @@ c = lib.makeOverridable f { a = 1; b = 2; }
extraBuildCommandsMulti
- Like extraBuildCommandsMulti , but
+ Like extraBuildCommands , but
executed only on multilib architectures.
+
+
+ extraOutputsToInstall
+
+ Additional derivation outputs to be linked for both
+ target and multi-architecture packages.
+
+
+
+ extraInstallCommands
+
+ Additional commands to be executed for finalizing the
+ derivation with runner script.
+
+
+
+ runScript
+
+ A command that would be executed inside the sandbox and
+ passed all the command line arguments. It defaults to
+ bash .
+
-
- Additionally, buildFHSUserEnv accepts
- runScript parameter, which is a command that would be
- executed inside the sandbox and passed all the command line arguments. It
- default to bash .
-
-
- It also uses CHROOTENV_EXTRA_BINDS environment variable
- for binding extra directories in the sandbox to outside places. The format of
- the variable is /mnt=test-mnt:/data , where
- /mnt would be mounted as /test-mnt
- and /data would be mounted as /data .
- extraBindMounts array argument to
- buildFHSUserEnv function is prepended to this variable.
- Latter entries take priority if defined several times -- i.e. in case of
- /data=data1:/data=data2 the actual bind path would be
- /data2 .
-
One can create a simple environment using a shell.nix
like that:
diff --git a/doc/languages-frameworks/go.xml b/doc/languages-frameworks/go.xml
index d715765f6a1..7365f5abe68 100644
--- a/doc/languages-frameworks/go.xml
+++ b/doc/languages-frameworks/go.xml
@@ -5,27 +5,29 @@
Go
The function buildGoPackage builds
-standard Go packages.
+standard Go programs.
buildGoPackage
-net = buildGoPackage rec {
- name = "go.net-${rev}";
- goPackagePath = "golang.org/x/net";
- subPackages = [ "ipv4" "ipv6" ];
- rev = "e0403b4e005";
+deis = buildGoPackage rec {
+ name = "deis-${version}";
+ version = "1.13.0";
+
+ goPackagePath = "github.com/deis/deis";
+ subPackages = [ "client" ];
+
src = fetchFromGitHub {
- inherit rev;
- owner = "golang";
- repo = "net";
- sha256 = "1g7cjzw4g4301a3yqpbk8n1d4s97sfby2aysl275x04g0zh8jxqp";
+ owner = "deis";
+ repo = "deis";
+ rev = "v${version}";
+ sha256 = "1qv9lxqx7m18029lj8cw3k7jngvxs4iciwrypdy0gd2nnghc68sw";
};
- goPackageAliases = [ "code.google.com/p/go.net" ];
- propagatedBuildInputs = [ goPackages.text ];
- buildFlags = "--tags release";
- disabled = isGo13;
-};
+
+ goDeps = ./deps.json;
+
+ buildFlags = "--tags release";
+}
@@ -47,50 +49,90 @@ the following arguments are of special significance to the function:
packages will be built.
- In this example only code.google.com/p/go.net/ipv4 and
- code.google.com/p/go.net/ipv6 will be built.
+ In this example only github.com/deis/deis/client will be built.
- goPackageAliases is a list of alternative import paths
- that are valid for this library.
- Packages that depend on this library will automatically rename
- import paths that match any of the aliases to goPackagePath .
-
-
- In this example imports will be renamed from
- code.google.com/p/go.net to
- golang.org/x/net in every package that depend on the
- go.net library.
+ goDeps is where the Go dependencies of a Go program are listed
+ in a JSON format described below.
-
- propagatedBuildInputs is where the dependencies of a Go library are
- listed. Only libraries should list propagatedBuildInputs . If a standalone
- program is being built instead, use buildInputs . If a library's tests require
- additional dependencies that are not propagated, they should be listed in buildInputs .
-
-
-
-
buildFlags is a list of flags passed to the go build command.
-
+
+
+
+
+The goDeps attribute should point to a JSON file that defines which Go libraries
+ are needed and should be included in GOPATH for buildPhase .
+
+
+
+deps.json
+
+[
+ {
+ "goPackagePath": "gopkg.in/yaml.v2",
+ "fetch": {
+ "type": "git",
+ "url": "https://gopkg.in/yaml.v2",
+ "rev": "a83829b6f1293c91addabc89d0571c246397bbf4",
+ "sha256": "1m4dsmk90sbi17571h6pld44zxz7jc4lrnl4f27dpd1l8g5xvjhh"
+ }
+ },
+ {
+ "include": "../../libs.json",
+ "packages": [
+ "github.com/docopt/docopt-go",
+ "golang.org/x/crypto",
+ ]
+ }
+]
+
+
+
+
+
+
+
+
- If disabled is true ,
- nix will refuse to build this package.
+ goDeps is a list of Go dependencies.
+
+
+
- In this example the package will not be built for go 1.3. The isGo13
- is an utility function that returns true if go used to build the
- package has version 1.3.x.
+ goPackagePath specifies Go package import path.
+
+
+
+
+
+ fetch type that needs to be used to get package source. If git
+ is used there should be url , rev and sha256
+ defined next to it.
+
+
+
+
+
+ include could be used to reuse goDeps between Go programs.
+ There is a common libs set in <nixpkgs/pkgs/development/go-modules/libs.json>
+ with pinned versions of many packages that you can reuse.
+
+
+
+
+
+ packages enumerates all Go packages that will be imported from included file.
@@ -99,12 +141,21 @@ the following arguments are of special significance to the function:
-Reusable Go libraries may be found in the goPackages set. You can test
-build a Go package as follows:
+ buildGoPackage produces
+ where bin includes program binaries. You can test build a Go binary as follows:
-
-$ nix-build -A goPackages.net
-
+
+ $ nix-build -A deis.bin
+
+
+ or build all outputs with:
+
+
+ $ nix-build -A deis.all
+
+
+ bin output will be installed by default with nix-env -i
+ or systemPackages .
@@ -119,6 +170,7 @@ done
- To extract dependency information from a Go package in automated way use go2nix.
+To extract dependency information from a Go package in automated way use go2nix.
+ It can produce complete derivation and goDeps file for Go programs.
diff --git a/doc/languages-frameworks/haskell.md b/doc/languages-frameworks/haskell.md
index e066ad110be..3da13dd9ed6 100644
--- a/doc/languages-frameworks/haskell.md
+++ b/doc/languages-frameworks/haskell.md
@@ -378,6 +378,23 @@ special options turned on:
buildInputs = [ R zeromq zlib ];
}
+You can select a particular GHC version to compile with by setting the
+`ghc` attribute as an argument to `buildStackProject`. Better yet, let
+Stack choose what GHC version it wants based on the snapshot specified
+in `stack.yaml` (only works with Stack >= 1.1.3):
+
+ {nixpkgs ? import { }, ghc ? nixpkgs.ghc}
+
+ with nixpkgs;
+
+ let R = pkgs.R.override { enableStrictBarrier = true; };
+ in
+ haskell.lib.buildStackProject {
+ name = "HaskellR";
+ buildInputs = [ R zeromq zlib ];
+ inherit ghc;
+ }
+
[stack-nix-doc]: http://docs.haskellstack.org/en/stable/nix_integration.html
### How to create ad hoc environments for `nix-shell`
@@ -636,7 +653,7 @@ then you have to download and re-install `foo` and all its dependents from
scratch:
# nix-store -q --referrers /nix/store/*-haskell-text-1.2.0.4 \
- | xargs -L 1 nix-store --repair-path --option binary-caches http://hydra.nixos.org
+ | xargs -L 1 nix-store --repair-path
If you're using additional Hydra servers other than `hydra.nixos.org`, then it
might be necessary to purge the local caches that store data from those
diff --git a/doc/languages-frameworks/python.md b/doc/languages-frameworks/python.md
index dd9af4e827e..99fb6774b82 100644
--- a/doc/languages-frameworks/python.md
+++ b/doc/languages-frameworks/python.md
@@ -532,6 +532,7 @@ All parameters from `mkDerivation` function are still supported.
* `makeWrapperArgs`: A list of strings. Arguments to be passed to `makeWrapper`, which wraps generated binaries. By default, the arguments to `makeWrapper` set `PATH` and `PYTHONPATH` environment variables before calling the binary. Additional arguments here can allow a developer to set environment variables which will be available when the binary is run. For example, `makeWrapperArgs = ["--set FOO BAR" "--set BAZ QUX"]`.
* `installFlags`: A list of strings. Arguments to be passed to `pip install`. To pass options to `python setup.py install`, use `--install-option`. E.g., `installFlags=["--install-option='--cpp_implementation'"].
* `format`: Format of the source. Options are `setup` for when the source has a `setup.py` and `setuptools` is used to build a wheel, and `wheel` in case the source is already a binary wheel. The default value is `setup`.
+* `catchConflicts` If `true`, abort package build if a package name appears more than once in dependency tree. Default is `true`.
#### `buildPythonApplication` function
@@ -648,6 +649,56 @@ community to help save time. No tool is preferred at the moment.
## FAQ
+### How can I install a working Python environment?
+
+As explained in the user's guide installing individual Python packages
+imperatively with `nix-env -i` or declaratively in `environment.systemPackages`
+is not supported. However, it is possible to install a Python environment with packages (`python.buildEnv`).
+
+In the following examples we create an environment with Python 3.5, `numpy` and `ipython`.
+As you might imagine there is one limitation here, and that's you can install
+only one environment at a time. You will notice the complaints about collisions
+when you try to install a second environment.
+
+#### Environment defined in separate `.nix` file
+
+Create a file, e.g. `build.nix`, with the following expression
+```nix
+with import {};
+with python35Packages;
+
+python.withPackages (ps: with ps; [ numpy ipython ])
+```
+and install it in your profile with
+```
+nix-env -if build.nix
+```
+Now you can use the Python interpreter, as well as the extra packages that you added to the environment.
+
+#### Environment defined in `~/.nixpkgs/config.nix`
+
+If you prefer to, you could also add the environment as a package override to the Nixpkgs set.
+```
+ packageOverrides = pkgs: with pkgs; with python35Packages; {
+ myEnv = python.withPackages (ps: with ps; [ numpy ipython ]);
+ };
+```
+and install it in your profile with
+```
+nix-env -iA nixos.blogEnv
+```
+Note that I'm using the attribute path here.
+
+#### Environment defined in `/etc/nixos/configuration.nix`
+
+For the sake of completeness, here's another example how to install the environment system-wide.
+
+```nix
+environment.systemPackages = with pkgs; [
+ (python35Packages.python.withPackages (ps: callPackage ../packages/common-python-packages.nix { pythonPackages = ps; }))
+];
+```
+
### How to solve circular dependencies?
Consider the packages `A` and `B` that depend on each other. When packaging `B`,
diff --git a/doc/stdenv.xml b/doc/stdenv.xml
index 434b61fd6a4..303ad2db8a7 100644
--- a/doc/stdenv.xml
+++ b/doc/stdenv.xml
@@ -1196,10 +1196,24 @@ echo @foo@
stripHash
path
Strips the directory and hash part of a store
- path, and prints (on standard output) only the name part. For
- instance, stripHash
- /nix/store/68afga4khv0w...-coreutils-6.12 print
- coreutils-6.12 .
+ path, storing the name part in the environment variable
+ strippedName . For example:
+
+
+stripHash "/nix/store/9s9r019176g7cvn2nvcw41gsp862y6b4-coreutils-8.24"
+# prints coreutils-8.24
+echo $strippedName
+
+
+ If you wish to store the result in another variable, then the
+ following idiom may be useful:
+
+
+name="/nix/store/9s9r019176g7cvn2nvcw41gsp862y6b4-coreutils-8.24"
+someVar=$(stripHash $name; echo $strippedName)
+
+
+
diff --git a/lib/attrsets.nix b/lib/attrsets.nix
index 636cb257d6b..f47e481c58a 100644
--- a/lib/attrsets.nix
+++ b/lib/attrsets.nix
@@ -457,7 +457,6 @@ rec {
/*** deprecated stuff ***/
- deepSeqAttrs = throw "removed 2016-02-29 because unused and broken";
zipWithNames = zipAttrsWithNames;
zip = builtins.trace
"lib.zip is deprecated, use lib.zipAttrsWith instead" zipAttrsWith;
diff --git a/lib/lists.nix b/lib/lists.nix
index 40475e7655d..6712e5cc93f 100644
--- a/lib/lists.nix
+++ b/lib/lists.nix
@@ -68,18 +68,7 @@ rec {
imap (i: v: "${v}-${toString i}") ["a" "b"]
=> [ "a-1" "b-2" ]
*/
- imap =
- if builtins ? genList then
- f: list: genList (n: f (n + 1) (elemAt list n)) (length list)
- else
- f: list:
- let
- len = length list;
- imap' = n:
- if n == len
- then []
- else [ (f (n + 1) (elemAt list n)) ] ++ imap' (n + 1);
- in imap' 0;
+ imap = f: list: genList (n: f (n + 1) (elemAt list n)) (length list);
/* Map and concatenate the result.
@@ -216,17 +205,11 @@ rec {
range 3 2
=> [ ]
*/
- range =
- if builtins ? genList then
- first: last:
- if first > last
- then []
- else genList (n: first + n) (last - first + 1)
+ range = first: last:
+ if first > last then
+ []
else
- first: last:
- if last < first
- then []
- else [first] ++ range (first + 1) last;
+ genList (n: first + n) (last - first + 1);
/* Splits the elements of a list in two lists, `right' and
`wrong', depending on the evaluation of a predicate.
@@ -250,19 +233,9 @@ rec {
zipListsWith (a: b: a + b) ["h" "l"] ["e" "o"]
=> ["he" "lo"]
*/
- zipListsWith =
- if builtins ? genList then
- f: fst: snd: genList (n: f (elemAt fst n) (elemAt snd n)) (min (length fst) (length snd))
- else
- f: fst: snd:
- let
- len = min (length fst) (length snd);
- zipListsWith' = n:
- if n != len then
- [ (f (elemAt fst n) (elemAt snd n)) ]
- ++ zipListsWith' (n + 1)
- else [];
- in zipListsWith' 0;
+ zipListsWith = f: fst: snd:
+ genList
+ (n: f (elemAt fst n) (elemAt snd n)) (min (length fst) (length snd));
/* Merges two lists of the same size together. If the sizes aren't the same
the merging stops at the shortest.
@@ -280,11 +253,8 @@ rec {
reverseList [ "b" "o" "j" ]
=> [ "j" "o" "b" ]
*/
- reverseList =
- if builtins ? genList then
- xs: let l = length xs; in genList (n: elemAt xs (l - n - 1)) l
- else
- fold (e: acc: acc ++ [ e ]) [];
+ reverseList = xs:
+ let l = length xs; in genList (n: elemAt xs (l - n - 1)) l;
/* Sort a list based on a comparator function which compares two
elements and returns true if the first argument is strictly below
@@ -320,19 +290,7 @@ rec {
take 2 [ ]
=> [ ]
*/
- take =
- if builtins ? genList then
- count: sublist 0 count
- else
- count: list:
- let
- len = length list;
- take' = n:
- if n == len || n == count
- then []
- else
- [ (elemAt list n) ] ++ take' (n + 1);
- in take' 0;
+ take = count: sublist 0 count;
/* Remove the first (at most) N elements of a list.
@@ -342,19 +300,7 @@ rec {
drop 2 [ ]
=> [ ]
*/
- drop =
- if builtins ? genList then
- count: list: sublist count (length list) list
- else
- count: list:
- let
- len = length list;
- drop' = n:
- if n == -1 || n < count
- then []
- else
- drop' (n - 1) ++ [ (elemAt list n) ];
- in drop' (len - 1);
+ drop = count: list: sublist count (length list) list;
/* Return a list consisting of at most ‘count’ elements of ‘list’,
starting at index ‘start’.
@@ -428,8 +374,4 @@ rec {
*/
subtractLists = e: filter (x: !(elem x e));
- /*** deprecated stuff ***/
-
- deepSeqList = throw "removed 2016-02-29 because unused and broken";
-
}
diff --git a/lib/maintainers.nix b/lib/maintainers.nix
index 79cd4c364a7..3d83a0a3a1c 100644
--- a/lib/maintainers.nix
+++ b/lib/maintainers.nix
@@ -15,6 +15,7 @@
adev = "Adrien Devresse ";
Adjective-Object = "Maxwell Huang-Hobbs ";
adnelson = "Allen Nelson ";
+ adolfogc = "Adolfo E. García Castro ";
aespinosa = "Allan Espinosa ";
aflatter = "Alexander Flatter ";
aforemny = "Alexander Foremny ";
@@ -70,6 +71,7 @@
c0dehero = "CodeHero ";
calrama = "Moritz Maxeiner ";
campadrenalin = "Philip Horger ";
+ carlsverre = "Carl Sverre ";
cdepillabout = "Dennis Gosnell ";
cfouche = "Chaddaï Fouché ";
chaoflow = "Florian Friesdorf ";
@@ -78,6 +80,7 @@
chris-martin = "Chris Martin ";
chrisjefferson = "Christopher Jefferson ";
christopherpoole = "Christopher Mark Poole ";
+ cko = "Christine Koppelt ";
cleverca22 = "Michael Bishop ";
cmcdragonkai = "Roger Qiu ";
coconnor = "Corey O'Connor ";
@@ -131,6 +134,7 @@
falsifian = "James Cook ";
flosse = "Markus Kohlhase ";
fluffynukeit = "Daniel Austin ";
+ fmthoma = "Franz Thoma ";
forkk = "Andrew Okin ";
fornever = "Friedrich von Never ";
fpletz = "Franz Pletz ";
@@ -182,6 +186,7 @@
joamaki = "Jussi Maki ";
joelmo = "Joel Moberg ";
joelteon = "Joel Taylor ";
+ joko = "Ioannis Koutras ";
jpbernardy = "Jean-Philippe Bernardy ";
jraygauthier = "Raymond Gauthier ";
juliendehos = "Julien Dehos ";
@@ -228,6 +233,7 @@
markus1189 = "Markus Hauck ";
markWot = "Markus Wotringer ";
martijnvermaat = "Martijn Vermaat ";
+ martingms = "Martin Gammelsæter ";
matejc = "Matej Cotman ";
mathnerd314 = "Mathnerd314 ";
matthiasbeyer = "Matthias Beyer ";
@@ -252,6 +258,7 @@
mornfall = "Petr Ročkai ";
MostAwesomeDude = "Corbin Simpson ";
MP2E = "Cray Elliott ";
+ mpscholten = "Marc Scholten ";
msackman = "Matthew Sackman ";
mschristiansen = "Mikkel Christiansen ";
msteen = "Matthijs Steen ";
@@ -260,6 +267,7 @@
muflax = "Stefan Dorn ";
myrl = "Myrl Hex ";
nathan-gs = "Nathan Bijnens ";
+ Nate-Devv = "Nathan Moore ";
nckx = "Tobias Geerinckx-Rice ";
nequissimus = "Tim Steinbach ";
nfjinjing = "Jinjing Wang ";
@@ -273,6 +281,7 @@
odi = "Oliver Dunkl ";
offline = "Jaka Hudoklin ";
olcai = "Erik Timan ";
+ olejorgenb = "Ole Jørgen Brønner ";
orbitz = "Malcolm Matalka ";
osener = "Ozan Sener ";
otwieracz = "Slawomir Gonet ";
@@ -282,6 +291,7 @@
pakhfn = "Fedor Pakhomov ";
palo = "Ingolf Wanger ";
pashev = "Igor Pashev ";
+ pawelpacana = "Paweł Pacana ";
pesterhazy = "Paulus Esterhazy ";
peterhoeg = "Peter Hoeg ";
peti = "Peter Simons ";
@@ -307,6 +317,8 @@
pxc = "Patrick Callahan ";
qknight = "Joachim Schiele ";
ragge = "Ragnar Dahlen ";
+ ralith = "Benjamin Saunders ";
+ ramkromberg = "Ram Kromberg ";
rardiol = "Ricardo Ardissone ";
rasendubi = "Alexey Shmalko ";
raskin = "Michael Raskin <7c6f434c@mail.ru>";
@@ -352,11 +364,13 @@
skrzyp = "Jakub Skrzypnik ";
sleexyz = "Sean Lee ";
smironov = "Sergey Mironov ";
+ solson = "Scott Olson ";
spacefrogg = "Michael Raitza ";
spencerjanssen = "Spencer Janssen ";
spinus = "Tomasz Czyż ";
sprock = "Roger Mason ";
spwhitt = "Spencer Whitt ";
+ SShrike = "Severen Redwood ";
stephenmw = "Stephen Weinberg ";
steveej = "Stefan Junker ";
swistak35 = "Rafał Łasocha ";
@@ -409,6 +423,7 @@
wscott = "Wayne Scott ";
wyvie = "Elijah Rum ";
yarr = "Dmitry V. ";
+ yurrriq = "Eric Bailey ";
z77z = "Marco Maggesi ";
zagy = "Christian Zagrodnick ";
zef = "Zef Hemel ";
diff --git a/lib/strings.nix b/lib/strings.nix
index 9e9bdd6e153..5e5f7b37866 100644
--- a/lib/strings.nix
+++ b/lib/strings.nix
@@ -16,11 +16,7 @@ rec {
concatStrings ["foo" "bar"]
=> "foobar"
*/
- concatStrings =
- if builtins ? concatStringsSep then
- builtins.concatStringsSep ""
- else
- lib.foldl' (x: y: x + y) "";
+ concatStrings = builtins.concatStringsSep "";
/* Map a function over a list and concatenate the resulting strings.
@@ -207,13 +203,21 @@ rec {
*/
escape = list: replaceChars list (map (c: "\\${c}") list);
- /* Escape all characters that have special meaning in the Bourne shell.
+ /* Quote string to be used safely within the Bourne shell.
Example:
- escapeShellArg "so([<>])me"
- => "so\\(\\[\\<\\>\\]\\)me"
+ escapeShellArg "esc'ape\nme"
+ => "'esc'\\''ape\nme'"
*/
- escapeShellArg = lib.escape (stringToCharacters "\\ ';$`()|<>\t*[]");
+ escapeShellArg = arg: "'${replaceStrings ["'"] ["'\\''"] (toString arg)}'";
+
+ /* Quote all arguments to be safely passed to the Bourne shell.
+
+ Example:
+ escapeShellArgs ["one" "two three" "four'five"]
+ => "'one' 'two three' 'four'\\''five'"
+ */
+ escapeShellArgs = concatMapStringsSep " " escapeShellArg;
/* Obsolete - use replaceStrings instead. */
replaceChars = builtins.replaceStrings or (
diff --git a/lib/tests/release.nix b/lib/tests/release.nix
index 093e9bcbf10..f9f57424f7d 100644
--- a/lib/tests/release.nix
+++ b/lib/tests/release.nix
@@ -1,6 +1,6 @@
{ nixpkgs }:
-with import ./../.. { };
+with import ../.. { };
with lib;
stdenv.mkDerivation {
diff --git a/lib/types.nix b/lib/types.nix
index 91b39f3a9cf..83f624e6b44 100644
--- a/lib/types.nix
+++ b/lib/types.nix
@@ -100,6 +100,10 @@ rec {
in if isDerivation res then res else toDerivation res;
};
+ shellPackage = package // {
+ check = x: (package.check x) && (hasAttr "shellPath" x);
+ };
+
path = mkOptionType {
name = "path";
# Hacky: there is no ‘isPath’ primop.
diff --git a/maintainers/scripts/fetch-kde-qt.sh b/maintainers/scripts/fetch-kde-qt.sh
new file mode 100755
index 00000000000..c88d8729ace
--- /dev/null
+++ b/maintainers/scripts/fetch-kde-qt.sh
@@ -0,0 +1,49 @@
+#! /usr/bin/env nix-shell
+#! nix-shell -i bash -p coreutils findutils gnused nix wget
+
+tmp=$(mktemp -d)
+pushd $tmp >/dev/null
+wget -nH -r -c --no-parent "$@" >/dev/null
+
+csv=$(mktemp)
+find . -type f | while read src; do
+ # Sanitize file name
+ filename=$(basename "$src" | tr '@' '_')
+ nameVersion="${filename%.tar.*}"
+ name=$(echo "$nameVersion" | sed -e 's,-[[:digit:]].*,,' | sed -e 's,-opensource-src$,,')
+ version=$(echo "$nameVersion" | sed -e 's,^\([[:alpha:]][[:alnum:]]*-\)\+,,')
+ echo "$name,$version,$src,$filename" >>$csv
+done
+
+cat </dev/null
+rm -fr $tmp >/dev/null
+
+rm -f $csv >/dev/null
diff --git a/maintainers/scripts/generate-kde-applications.sh b/maintainers/scripts/generate-kde-applications.sh
new file mode 100755
index 00000000000..b4073a05b88
--- /dev/null
+++ b/maintainers/scripts/generate-kde-applications.sh
@@ -0,0 +1,5 @@
+#!/bin/sh
+
+./maintainers/scripts/fetch-kde-qt.sh \
+ http://download.kde.org/stable/applications/16.04.3/ -A '*.tar.xz' \
+ >pkgs/desktops/kde-5/applications/srcs.nix
diff --git a/maintainers/scripts/generate-kde-frameworks.sh b/maintainers/scripts/generate-kde-frameworks.sh
new file mode 100755
index 00000000000..b3b559b3571
--- /dev/null
+++ b/maintainers/scripts/generate-kde-frameworks.sh
@@ -0,0 +1,5 @@
+#!/bin/sh
+
+./maintainers/scripts/fetch-kde-qt.sh \
+ http://download.kde.org/stable/frameworks/5.24/ -A '*.tar.xz' \
+ >pkgs/desktops/kde-5/frameworks/srcs.nix
diff --git a/maintainers/scripts/generate-kde-plasma.sh b/maintainers/scripts/generate-kde-plasma.sh
new file mode 100755
index 00000000000..1d93a05512c
--- /dev/null
+++ b/maintainers/scripts/generate-kde-plasma.sh
@@ -0,0 +1,5 @@
+#!/bin/sh
+
+./maintainers/scripts/fetch-kde-qt.sh \
+ http://download.kde.org/stable/plasma/5.7.1/ -A '*.tar.xz' \
+ >pkgs/desktops/kde-5/plasma/srcs.nix
diff --git a/maintainers/scripts/generate-qt.sh b/maintainers/scripts/generate-qt.sh
new file mode 100755
index 00000000000..61691520696
--- /dev/null
+++ b/maintainers/scripts/generate-qt.sh
@@ -0,0 +1,3 @@
+#!/bin/sh
+
+./fetch-kde-qt.sh http://download.qt.io/official_releases/qt/5.6/5.6.1/submodules/ -A '*.tar.xz'
diff --git a/maintainers/scripts/travis-nox-review-pr.sh b/maintainers/scripts/travis-nox-review-pr.sh
index a366ac435bd..092fc0cd9d0 100755
--- a/maintainers/scripts/travis-nox-review-pr.sh
+++ b/maintainers/scripts/travis-nox-review-pr.sh
@@ -13,10 +13,6 @@ if [[ $1 == nix ]]; then
sudo mkdir /etc/nix
sudo sh -c 'echo "build-max-jobs = 4" > /etc/nix/nix.conf'
- # Nix builds in /tmp and we need exec support
- sudo mount
- sudo mount -o remount,exec /run
-
# Verify evaluation
echo "=== Verifying that nixpkgs evaluates..."
nix-env -f. -qa --json >/dev/null
@@ -30,6 +26,11 @@ elif [[ $1 == build ]]; then
if [[ $TRAVIS_OS_NAME == "osx" ]]; then
echo "Skipping NixOS things on darwin"
else
+ # Nix builds in /tmp and we need exec support
+ sudo mount -o remount,exec /run
+ sudo mount -o remount,exec /run/user
+ sudo mount
+
echo "=== Checking NixOS options"
nix-build nixos/release.nix -A options --show-trace
diff --git a/nixos/doc/manual/installation/installing.xml b/nixos/doc/manual/installation/installing.xml
index 2f118d27b1a..073f7ca3462 100644
--- a/nixos/doc/manual/installation/installing.xml
+++ b/nixos/doc/manual/installation/installing.xml
@@ -22,7 +22,7 @@
(with empty password).
If you downloaded the graphical ISO image, you can
- run start display-manager to start KDE. If you
+ run systemctl start display-manager to start KDE. If you
want to continue on the terminal, you can use
loadkeys to switch to your preferred keyboard layout.
(We even provide neo2 via loadkeys de neo !)
diff --git a/nixos/doc/manual/man-nixos-version.xml b/nixos/doc/manual/man-nixos-version.xml
new file mode 100644
index 00000000000..615d74f9090
--- /dev/null
+++ b/nixos/doc/manual/man-nixos-version.xml
@@ -0,0 +1,97 @@
+
+
+
+ nixos-version
+ 8
+ NixOS
+
+
+
+ nixos-version
+ show the NixOS version
+
+
+
+
+ nixos-version
+ --hash
+ --revision
+
+
+
+Description
+
+This command shows the version of the currently active NixOS
+configuration. For example:
+
+$ nixos-version
+16.03.1011.6317da4 (Emu)
+
+
+The version consists of the following elements:
+
+
+
+
+ 16.03
+ The NixOS release, indicating the year and month
+ in which it was released (e.g. March 2016).
+
+
+
+ 1011
+ The number of commits in the Nixpkgs Git
+ repository between the start of the release branch and the commit
+ from which this version was built. This ensures that NixOS
+ versions are monotonically increasing. It is
+ git when the current NixOS configuration was
+ built from a checkout of the Nixpkgs Git repository rather than
+ from a NixOS channel.
+
+
+
+ 6317da4
+ The first 7 characters of the commit in the
+ Nixpkgs Git repository from which this version was
+ built.
+
+
+
+ Emu
+ The code name of the NixOS release. The first
+ letter of the code name indicates that this is the N'th stable
+ NixOS release; for example, Emu is the fifth
+ release.
+
+
+
+
+
+
+
+
+
+Options
+
+This command accepts the following options:
+
+
+
+
+ --hash
+ --revision
+
+ Show the full SHA1 hash of the Git commit from which this
+ configuration was built, e.g.
+$ nixos-version --hash
+6317da40006f6bc2480c6781999c52d88dde2acf
+
+
+
+
+
+
+
+
diff --git a/nixos/doc/manual/man-pages.xml b/nixos/doc/manual/man-pages.xml
index 97a2c16d406..e945e0e6263 100644
--- a/nixos/doc/manual/man-pages.xml
+++ b/nixos/doc/manual/man-pages.xml
@@ -27,5 +27,6 @@
+
diff --git a/nixos/lib/testing.nix b/nixos/lib/testing.nix
index f7159634e4f..5f463c09284 100644
--- a/nixos/lib/testing.nix
+++ b/nixos/lib/testing.nix
@@ -113,14 +113,14 @@ rec {
--add-flags "$vms" \
${lib.optionalString enableOCR "--prefix PATH : '${ocrProg}/bin'"} \
--run "testScript=\"\$(cat $out/test-script)\"" \
- --set testScript '"$testScript"' \
- --set VLANS '"${toString vlans}"'
+ --set testScript '$testScript' \
+ --set VLANS '${toString vlans}'
ln -s ${testDriver}/bin/nixos-test-driver $out/bin/nixos-run-vms
wrapProgram $out/bin/nixos-run-vms \
--add-flags "$vms" \
${lib.optionalString enableOCR "--prefix PATH : '${ocrProg}/bin'"} \
- --set tests '"startAll; joinAll;"' \
- --set VLANS '"${toString vlans}"' \
+ --set tests 'startAll; joinAll;' \
+ --set VLANS '${toString vlans}' \
${lib.optionalString (builtins.length vms == 1) "--set USE_SERIAL 1"}
''; # "
diff --git a/nixos/lib/utils.nix b/nixos/lib/utils.nix
index 7b8be2050c1..40d0854d968 100644
--- a/nixos/lib/utils.nix
+++ b/nixos/lib/utils.nix
@@ -8,4 +8,12 @@ rec {
replaceChars ["/" "-" " "] ["-" "\\x2d" "\\x20"]
(if hasPrefix "/" s then substring 1 (stringLength s) s else s);
+ # Returns a system path for a given shell package
+ toShellPath = shell:
+ if types.shellPackage.check shell then
+ "/run/current-system/sw${shell.shellPath}"
+ else if types.package.check shell then
+ throw "${shell} is not a shell package"
+ else
+ shell;
}
diff --git a/nixos/maintainers/scripts/ec2/create-amis.sh b/nixos/maintainers/scripts/ec2/create-amis.sh
index 192f608e138..e26caa19164 100755
--- a/nixos/maintainers/scripts/ec2/create-amis.sh
+++ b/nixos/maintainers/scripts/ec2/create-amis.sh
@@ -13,8 +13,11 @@ echo "NixOS version is $version ($major)"
rm -f ec2-amis.nix
+types="hvm pv"
+stores="ebs s3"
+regions="eu-west-1 eu-central-1 us-east-1 us-west-1 us-west-2 ap-southeast-1 ap-southeast-2 ap-northeast-1 ap-northeast-2 sa-east-1 ap-south-1"
-for type in hvm pv; do
+for type in $types; do
link=$stateDir/$type
imageFile=$link/nixos.qcow2
system=x86_64-linux
@@ -31,7 +34,7 @@ for type in hvm pv; do
--arg configuration "{ imports = [ ]; ec2.hvm = $hvmFlag; }"
fi
- for store in ebs s3; do
+ for store in $stores; do
bucket=nixos-amis
bucketDir="$version-$type-$store"
@@ -39,7 +42,7 @@ for type in hvm pv; do
prevAmi=
prevRegion=
- for region in eu-west-1 eu-central-1 us-east-1 us-west-1 us-west-2 ap-southeast-1 ap-southeast-2 ap-northeast-1 sa-east-1; do
+ for region in $regions; do
name=nixos-$version-$arch-$type-$store
description="NixOS $system $version ($type-$store)"
@@ -51,10 +54,11 @@ for type in hvm pv; do
echo "doing $name in $region..."
if [ -n "$prevAmi" ]; then
- ami=$(ec2-copy-image \
+ ami=$(aws ec2 copy-image \
--region "$region" \
- --source-region "$prevRegion" --source-ami-id "$prevAmi" \
- --name "$name" --description "$description" | cut -f 2)
+ --source-region "$prevRegion" --source-image-id "$prevAmi" \
+ --name "$name" --description "$description" | json -q .ImageId)
+ if [ "$ami" = null ]; then break; fi
else
if [ $store = s3 ]; then
@@ -85,12 +89,12 @@ for type in hvm pv; do
ec2-upload-bundle \
-m $imageDir/$type.raw.manifest.xml \
-b "$bucket/$bucketDir" \
- -a "$EC2_ACCESS_KEY" -s "$EC2_SECRET_KEY" \
+ -a "$AWS_ACCESS_KEY_ID" -s "$AWS_SECRET_ACCESS_KEY" \
--location EU
touch $imageDir/uploaded
fi
- extraFlags="$bucket/$bucketDir/$type.raw.manifest.xml"
+ extraFlags="--image-location $bucket/$bucketDir/$type.raw.manifest.xml"
else
@@ -115,7 +119,8 @@ for type in hvm pv; do
if [ -z "$snapId" -a -z "$volId" -a -z "$taskId" ]; then
echo "importing $vhdFile..."
taskId=$(ec2-import-volume $vhdFile --no-upload -f vhd \
- -o "$EC2_ACCESS_KEY" -w "$EC2_SECRET_KEY" \
+ -O "$AWS_ACCESS_KEY_ID" -W "$AWS_SECRET_ACCESS_KEY" \
+ -o "$AWS_ACCESS_KEY_ID" -w "$AWS_SECRET_ACCESS_KEY" \
--region "$region" -z "${region}a" \
--bucket "$bucket" --prefix "$bucketDir/" \
| tee /dev/stderr \
@@ -125,15 +130,16 @@ for type in hvm pv; do
if [ -z "$snapId" -a -z "$volId" ]; then
ec2-resume-import $vhdFile -t "$taskId" --region "$region" \
- -o "$EC2_ACCESS_KEY" -w "$EC2_SECRET_KEY"
+ -O "$AWS_ACCESS_KEY_ID" -W "$AWS_SECRET_ACCESS_KEY" \
+ -o "$AWS_ACCESS_KEY_ID" -w "$AWS_SECRET_ACCESS_KEY"
fi
# Wait for the volume creation to finish.
if [ -z "$snapId" -a -z "$volId" ]; then
echo "waiting for import to finish..."
while true; do
- volId=$(ec2-describe-conversion-tasks "$taskId" --region "$region" | sed 's/.*VolumeId.*\(vol-[0-9a-f]\+\).*/\1/ ; t ; d')
- if [ -n "$volId" ]; then break; fi
+ volId=$(aws ec2 describe-conversion-tasks --conversion-task-ids "$taskId" --region "$region" | jq -r .ConversionTasks[0].ImportVolume.Volume.Id)
+ if [ "$volId" != null ]; then break; fi
sleep 10
done
@@ -143,22 +149,24 @@ for type in hvm pv; do
# Delete the import task.
if [ -n "$volId" -a -n "$taskId" ]; then
echo "removing import task..."
- ec2-delete-disk-image -t "$taskId" --region "$region" -o "$EC2_ACCESS_KEY" -w "$EC2_SECRET_KEY" || true
+ ec2-delete-disk-image -t "$taskId" --region "$region" \
+ -O "$AWS_ACCESS_KEY_ID" -W "$AWS_SECRET_ACCESS_KEY" \
+ -o "$AWS_ACCESS_KEY_ID" -w "$AWS_SECRET_ACCESS_KEY" || true
rm -f $stateDir/$region.$type.task-id
fi
# Create a snapshot.
if [ -z "$snapId" ]; then
echo "creating snapshot..."
- snapId=$(ec2-create-snapshot "$volId" --region "$region" | cut -f 2)
+ snapId=$(aws ec2 create-snapshot --volume-id "$volId" --region "$region" --description "$description" | jq -r .SnapshotId)
+ if [ "$snapId" = null ]; then exit 1; fi
echo -n "$snapId" > $stateDir/$region.$type.snap-id
- ec2-create-tags "$snapId" -t "Name=$description" --region "$region"
fi
# Wait for the snapshot to finish.
echo "waiting for snapshot to finish..."
while true; do
- status=$(ec2-describe-snapshots "$snapId" --region "$region" | head -n1 | cut -f 4)
+ status=$(aws ec2 describe-snapshots --snapshot-ids "$snapId" --region "$region" | jq -r .Snapshots[0].State)
if [ "$status" = completed ]; then break; fi
sleep 10
done
@@ -166,35 +174,50 @@ for type in hvm pv; do
# Delete the volume.
if [ -n "$volId" ]; then
echo "deleting volume..."
- ec2-delete-volume "$volId" --region "$region" || true
+ aws ec2 delete-volume --volume-id "$volId" --region "$region" || true
rm -f $stateDir/$region.$type.vol-id
fi
- extraFlags="-b /dev/sda1=$snapId:$vhdFileLogicalGigaBytes:true:gp2"
+ blockDeviceMappings="DeviceName=/dev/sda1,Ebs={SnapshotId=$snapId,VolumeSize=$vhdFileLogicalGigaBytes,DeleteOnTermination=true,VolumeType=gp2}"
+ extraFlags=""
if [ $type = pv ]; then
- extraFlags+=" --root-device-name=/dev/sda1"
+ extraFlags+=" --root-device-name /dev/sda1"
+ else
+ extraFlags+=" --root-device-name /dev/sda1"
+ extraFlags+=" --sriov-net-support simple"
+ extraFlags+=" --ena-support"
fi
- extraFlags+=" -b /dev/sdb=ephemeral0 -b /dev/sdc=ephemeral1 -b /dev/sdd=ephemeral2 -b /dev/sde=ephemeral3"
+ blockDeviceMappings+=" DeviceName=/dev/sdb,VirtualName=ephemeral0"
+ blockDeviceMappings+=" DeviceName=/dev/sdc,VirtualName=ephemeral1"
+ blockDeviceMappings+=" DeviceName=/dev/sdd,VirtualName=ephemeral2"
+ blockDeviceMappings+=" DeviceName=/dev/sde,VirtualName=ephemeral3"
+ fi
+
+ if [ $type = hvm ]; then
+ extraFlags+=" --sriov-net-support simple"
+ extraFlags+=" --ena-support"
fi
# Register the AMI.
if [ $type = pv ]; then
- kernel=$(ec2-describe-images -o amazon --filter "manifest-location=*pv-grub-hd0_1.04-$arch*" --region "$region" | cut -f 2)
- [ -n "$kernel" ]
+ kernel=$(aws ec2 describe-images --owner amazon --filters "Name=name,Values=pv-grub-hd0_1.04-$arch.gz" | jq -r .Images[0].ImageId)
+ if [ "$kernel" = null ]; then break; fi
echo "using PV-GRUB kernel $kernel"
extraFlags+=" --virtualization-type paravirtual --kernel $kernel"
else
extraFlags+=" --virtualization-type hvm"
fi
- ami=$(ec2-register \
- -n "$name" \
- -d "$description" \
+ ami=$(aws ec2 register-image \
+ --name "$name" \
+ --description "$description" \
--region "$region" \
--architecture "$arch" \
- $extraFlags | cut -f 2)
+ --block-device-mappings $blockDeviceMappings \
+ $extraFlags | jq -r .ImageId)
+ if [ "$ami" = null ]; then break; fi
fi
echo -n "$ami" > $amiFile
@@ -204,23 +227,45 @@ for type in hvm pv; do
ami=$(cat $amiFile)
fi
- if [ -z "$NO_WAIT" -o -z "$prevAmi" ]; then
- echo "waiting for AMI..."
- while true; do
- status=$(ec2-describe-images "$ami" --region "$region" | head -n1 | cut -f 5)
- if [ "$status" = available ]; then break; fi
- sleep 10
- done
-
- ec2-modify-image-attribute \
- --region "$region" "$ami" -l -a all
- fi
-
echo "region = $region, type = $type, store = $store, ami = $ami"
+
if [ -z "$prevAmi" ]; then
prevAmi="$ami"
prevRegion="$region"
fi
+ done
+
+ done
+
+done
+
+for type in $types; do
+ link=$stateDir/$type
+ system=x86_64-linux
+ arch=x86_64
+
+ for store in $stores; do
+
+ for region in $regions; do
+
+ name=nixos-$version-$arch-$type-$store
+ amiFile=$stateDir/$region.$type.$store.ami-id
+ ami=$(cat $amiFile)
+
+ echo "region = $region, type = $type, store = $store, ami = $ami"
+
+ echo -n "waiting for AMI..."
+ while true; do
+ status=$(aws ec2 describe-images --image-ids "$ami" --region "$region" | jq -r .Images[0].State)
+ if [ "$status" = available ]; then break; fi
+ sleep 10
+ echo -n '.'
+ done
+ echo
+
+ # Make the image public.
+ aws ec2 modify-image-attribute \
+ --image-id "$ami" --region "$region" --launch-permission 'Add={Group=all}'
echo " \"$major\".$region.$type-$store = \"$ami\";" >> ec2-amis.nix
done
diff --git a/nixos/modules/config/fonts/fontconfig-ultimate.nix b/nixos/modules/config/fonts/fontconfig-ultimate.nix
index 02568f9de51..47d7cc5924d 100644
--- a/nixos/modules/config/fonts/fontconfig-ultimate.nix
+++ b/nixos/modules/config/fonts/fontconfig-ultimate.nix
@@ -3,6 +3,84 @@
with lib;
let fcBool = x: if x then "true " else "false ";
+ cfg = config.fonts.fontconfig.ultimate;
+ fontconfigUltimateConf = pkgs.writeText "ultimate-conf" ''
+
+
+
+
+ ${optionalString (!cfg.allowBitmaps) ''
+
+
+
+
+ false
+
+
+
+ ''}
+
+ ${optionalString cfg.allowType1 ''
+
+
+
+
+
+ Type 1
+
+
+
+
+ ''}
+
+
+
+
+ ${fcBool cfg.useEmbeddedBitmaps}
+
+
+
+
+
+
+ ${fcBool cfg.forceAutohint}
+
+
+
+
+
+
+ ${fcBool cfg.renderMonoTTFAsBitmap}
+
+
+
+
+ '';
+ confPkg =
+ let version = pkgs.fontconfig.configVersion;
+ in pkgs.runCommand "font-ultimate-conf" {} ''
+ mkdir -p $out/etc/fonts/{,${version}/}conf.d/
+
+ cp ${fontconfigUltimateConf} \
+ $out/etc/fonts/conf.d/52-fontconfig-ultimate.conf
+
+ cp ${fontconfigUltimateConf} \
+ $out/etc/fonts/${version}/conf.d/52-fontconfig-ultimate.conf
+
+ ${optionalString (cfg.substitutions != "none") ''
+ cp ${pkgs.fontconfig-ultimate.confd}/etc/fonts/presets/${cfg.substitutions}/*.conf \
+ $out/etc/fonts/conf.d/
+ cp ${pkgs.fontconfig-ultimate.confd}/etc/fonts/presets/${cfg.substitutions}/*.conf \
+ $out/etc/fonts/${version}/conf.d/
+ ''}
+
+ ln -s ${pkgs.fontconfig-ultimate.confd}/etc/fonts/conf.d/*.conf \
+ $out/etc/fonts/conf.d/
+
+ ln -s ${pkgs.fontconfig-ultimate.confd}/etc/fonts/conf.d/*.conf \
+ $out/etc/fonts/${version}/conf.d/
+ '';
+
in
{
@@ -115,78 +193,11 @@ in
};
- config =
- let ultimate = config.fonts.fontconfig.ultimate;
- fontconfigUltimateConf = ''
-
-
-
+ config = mkIf (config.fonts.fontconfig.enable && cfg.enable) {
- ${optionalString (!ultimate.allowBitmaps) ''
-
-
-
-
- false
-
-
-
- ''}
-
- ${optionalString ultimate.allowType1 ''
-
-
-
-
-
- Type 1
-
-
-
-
- ''}
-
-
-
-
- ${fcBool ultimate.useEmbeddedBitmaps}
-
-
-
-
-
-
- ${fcBool ultimate.forceAutohint}
-
-
-
-
-
-
- ${fcBool ultimate.renderMonoTTFAsBitmap}
-
-
-
- ${optionalString (ultimate.substitutions != "none") ''
-
- ${pkgs.fontconfig-ultimate.confd}/etc/fonts/presets/${ultimate.substitutions}
- ''}
-
- ${pkgs.fontconfig-ultimate.confd}/etc/fonts/conf.d
-
-
- '';
- in mkIf (config.fonts.fontconfig.enable && ultimate.enable) {
-
- environment.etc."fonts/conf.d/52-fontconfig-ultimate.conf" = {
- text = fontconfigUltimateConf;
- };
-
- environment.etc."fonts/${pkgs.fontconfig.configVersion}/conf.d/52-fontconfig-ultimate.conf" = {
- text = fontconfigUltimateConf;
- };
-
- environment.variables = ultimate.rendering;
+ fonts.fontconfig.confPkgs = [ confPkg ];
+
+ environment.variables = cfg.rendering;
};
diff --git a/nixos/modules/config/fonts/fontconfig.nix b/nixos/modules/config/fonts/fontconfig.nix
index 1eaebe4b2bb..fcf5add4519 100644
--- a/nixos/modules/config/fonts/fontconfig.nix
+++ b/nixos/modules/config/fonts/fontconfig.nix
@@ -2,6 +2,121 @@
with lib;
+let cfg = config.fonts.fontconfig;
+ fcBool = x: "" + (if x then "true" else "false") + " ";
+ renderConf = pkgs.writeText "render-conf" ''
+
+
+
+
+
+
+
+ ${fcBool cfg.hinting.enable}
+
+
+ ${fcBool cfg.hinting.autohint}
+
+
+ hint${cfg.hinting.style}
+
+
+ ${fcBool cfg.antialias}
+
+
+ ${cfg.subpixel.rgba}
+
+
+ lcd${cfg.subpixel.lcdfilter}
+
+
+
+ ${optionalString (cfg.dpi != 0) ''
+
+
+ ${toString cfg.dpi}
+
+
+ ''}
+
+
+ '';
+ genericAliasConf =
+ let genDefault = fonts: name:
+ optionalString (fonts != []) ''
+
+ ${name}
+
+ ${concatStringsSep ""
+ (map (font: ''
+ ${font}
+ '') fonts)}
+
+
+ '';
+ in
+ pkgs.writeText "generic-alias-conf" ''
+
+
+
+
+
+ ${genDefault cfg.defaultFonts.sansSerif "sans-serif"}
+
+ ${genDefault cfg.defaultFonts.serif "serif"}
+
+ ${genDefault cfg.defaultFonts.monospace "monospace"}
+
+
+ '';
+ cacheConf = let
+ cache = fontconfig: pkgs.makeFontsCache { inherit fontconfig; fontDirectories = config.fonts.fonts; };
+ in
+ pkgs.writeText "cache-conf" ''
+
+
+
+
+ ${concatStringsSep "\n" (map (font: "${font} ") config.fonts.fonts)}
+
+ ${cache pkgs.fontconfig}
+ ${optionalString (pkgs.stdenv.isx86_64 && cfg.cache32Bit) ''
+ ${cache pkgs.pkgsi686Linux.fontconfig}
+ ''}
+
+ '';
+ userConf = pkgs.writeText "user-conf" ''
+
+
+
+ fontconfig/conf.d
+ fontconfig/fonts.conf
+
+ '';
+ fontsConf = pkgs.makeFontsConf { fontconfig = pkgs.fontconfig_210; fontDirectories = config.fonts.fonts; };
+ confPkg =
+ let version = pkgs.fontconfig.configVersion;
+ in pkgs.runCommand "fontconfig-conf" {} ''
+ mkdir -p $out/etc/fonts/{,${version}/}conf.d
+
+ ln -s ${fontsConf} $out/etc/fonts/fonts.conf
+
+ ln -s ${pkgs.fontconfig.out}/etc/fonts/fonts.conf $out/etc/fonts/${version}/fonts.conf
+ ln -s ${pkgs.fontconfig.out}/etc/fonts/conf.d/* $out/etc/fonts/${version}/conf.d/
+
+ ln -s ${renderConf} $out/etc/fonts/conf.d/10-nixos-rendering.conf
+ ln -s ${genericAliasConf} $out/etc/fonts/conf.d/60-nixos-generic-alias.conf
+
+ ln -s ${cacheConf} $out/etc/fonts/${version}/conf.d/00-nixos.conf
+
+ ln -s ${renderConf} $out/etc/fonts/${version}/conf.d/10-nixos-rendering.conf
+ ln -s ${genericAliasConf} $out/etc/fonts/${version}/conf.d/30-nixos-generic-alias.conf
+
+ ${optionalString cfg.includeUserConf
+ "ln -s ${userConf} $out/etc/fonts/${version}/conf.d/99-user.conf"}
+
+ '';
+in
{
options = {
@@ -21,6 +136,15 @@ with lib;
'';
};
+ confPkgs = mkOption {
+ internal = true;
+ type = with types; listOf path;
+ default = [ ];
+ description = ''
+ Fontconfig configuration packages.
+ '';
+ };
+
antialias = mkOption {
type = types.bool;
default = true;
@@ -143,135 +267,17 @@ with lib;
};
- config =
- let fontconfig = config.fonts.fontconfig;
- fcBool = x: "" + (if x then "true" else "false") + " ";
- renderConf = ''
-
-
-
+ config = mkIf cfg.enable {
+ fonts.fontconfig.confPkgs = [ confPkg ];
-
-
-
- ${fcBool fontconfig.hinting.enable}
-
-
- ${fcBool fontconfig.hinting.autohint}
-
-
- hint${fontconfig.hinting.style}
-
-
- ${fcBool fontconfig.antialias}
-
-
- ${fontconfig.subpixel.rgba}
-
-
- lcd${fontconfig.subpixel.lcdfilter}
-
-
+ environment.etc.fonts.source =
+ let fontConf = pkgs.symlinkJoin {
+ name = "fontconfig-etc";
+ paths = cfg.confPkgs;
+ };
+ in "${fontConf}/etc/fonts/";
- ${optionalString (fontconfig.dpi != 0) ''
-
-
- ${toString fontconfig.dpi}
-
-
- ''}
-
-
- '';
- genericAliasConf = ''
-
-
-
-
-
- ${optionalString (fontconfig.defaultFonts.sansSerif != []) ''
-
- sans-serif
-
- ${concatStringsSep "\n"
- (map (font: "${font} ")
- fontconfig.defaultFonts.sansSerif)}
-
-
- ''}
- ${optionalString (fontconfig.defaultFonts.serif != []) ''
-
- serif
-
- ${concatStringsSep "\n"
- (map (font: "${font} ")
- fontconfig.defaultFonts.serif)}
-
-
- ''}
- ${optionalString (fontconfig.defaultFonts.monospace != []) ''
-
- monospace
-
- ${concatStringsSep "\n"
- (map (font: "${font} ")
- fontconfig.defaultFonts.monospace)}
-
-
- ''}
-
-
- '';
- in mkIf fontconfig.enable {
-
- # Fontconfig 2.10 backward compatibility
-
- # Bring in the default (upstream) fontconfig configuration, only for fontconfig 2.10
- environment.etc."fonts/fonts.conf".source =
- pkgs.makeFontsConf { fontconfig = pkgs.fontconfig_210; fontDirectories = config.fonts.fonts; };
-
- environment.etc."fonts/conf.d/10-nixos-rendering.conf".text = renderConf;
- environment.etc."fonts/conf.d/60-nixos-generic-alias.conf".text = genericAliasConf;
-
- # Versioned fontconfig > 2.10. Take shared fonts.conf from fontconfig.
- # Otherwise specify only font directories.
- environment.etc."fonts/${pkgs.fontconfig.configVersion}/fonts.conf".source =
- "${pkgs.fontconfig.out}/etc/fonts/fonts.conf";
-
- environment.etc."fonts/${pkgs.fontconfig.configVersion}/conf.d/00-nixos.conf".text =
- let
- cache = fontconfig: pkgs.makeFontsCache { inherit fontconfig; fontDirectories = config.fonts.fonts; };
- in ''
-
-
-
-
- ${concatStringsSep "\n" (map (font: "${font} ") config.fonts.fonts)}
-
- ${cache pkgs.fontconfig}
- ${optionalString (pkgs.stdenv.isx86_64 && config.fonts.fontconfig.cache32Bit) ''
- ${cache pkgs.pkgsi686Linux.fontconfig}
- ''}
-
- '';
-
- environment.etc."fonts/${pkgs.fontconfig.configVersion}/conf.d/10-nixos-rendering.conf".text = renderConf;
- environment.etc."fonts/${pkgs.fontconfig.configVersion}/conf.d/60-nixos-generic-alias.conf".text = genericAliasConf;
-
- environment.etc."fonts/${pkgs.fontconfig.configVersion}/conf.d/99-user.conf" = {
- enable = fontconfig.includeUserConf;
- text = ''
-
-
-
- fontconfig/conf.d
- fontconfig/fonts.conf
-
- '';
- };
-
- environment.systemPackages = [ pkgs.fontconfig ];
-
- };
+ environment.systemPackages = [ pkgs.fontconfig ];
+ };
}
diff --git a/nixos/modules/config/i18n.nix b/nixos/modules/config/i18n.nix
index b20fac6ad3e..e341931aacc 100644
--- a/nixos/modules/config/i18n.nix
+++ b/nixos/modules/config/i18n.nix
@@ -41,6 +41,15 @@ in
'';
};
+ consolePackages = mkOption {
+ type = types.listOf types.package;
+ default = with pkgs.kbdKeymaps; [ dvp neo ];
+ description = ''
+ List of additional packages that provide console fonts, keymaps and
+ other resources.
+ '';
+ };
+
consoleFont = mkOption {
type = types.str;
default = "Lat2-Terminus16";
diff --git a/nixos/modules/config/shells-environment.nix b/nixos/modules/config/shells-environment.nix
index 9642981803b..f458bc39ada 100644
--- a/nixos/modules/config/shells-environment.nix
+++ b/nixos/modules/config/shells-environment.nix
@@ -1,7 +1,7 @@
# This module defines a global environment configuration and
# a common configuration for all shells.
-{ config, lib, pkgs, ... }:
+{ config, lib, utils, pkgs, ... }:
with lib;
@@ -135,13 +135,13 @@ in
environment.shells = mkOption {
default = [];
- example = [ "/run/current-system/sw/bin/zsh" ];
+ example = literalExample "[ pkgs.bashInteractive pkgs.zsh ]";
description = ''
A list of permissible login shells for user accounts.
No need to mention /bin/sh
here, it is placed into this list implicitly.
'';
- type = types.listOf types.path;
+ type = types.listOf (types.either types.shellPackage types.path);
};
};
@@ -158,7 +158,7 @@ in
environment.etc."shells".text =
''
- ${concatStringsSep "\n" cfg.shells}
+ ${concatStringsSep "\n" (map utils.toShellPath cfg.shells)}
/bin/sh
'';
diff --git a/nixos/modules/config/swap.nix b/nixos/modules/config/swap.nix
index f0353c5a35e..62b6e011713 100644
--- a/nixos/modules/config/swap.nix
+++ b/nixos/modules/config/swap.nix
@@ -30,8 +30,7 @@ let
description = ''
If this option is set, ‘device’ is interpreted as the
path of a swapfile that will be created automatically
- with the indicated size (in megabytes) if it doesn't
- exist.
+ with the indicated size (in megabytes).
'';
};
@@ -132,9 +131,13 @@ in
script =
''
${optionalString (sw.size != null) ''
- if [ ! -e "${sw.device}" ]; then
+ currentSize=$(( $(stat -c "%s" "${sw.device}" 2>/dev/null || echo 0) / 1024 / 1024 ))
+ if [ "${toString sw.size}" != "$currentSize" ]; then
fallocate -l ${toString sw.size}M "${sw.device}" ||
dd if=/dev/zero of="${sw.device}" bs=1M count=${toString sw.size}
+ if [ "${toString sw.size}" -lt "$currentSize" ]; then
+ truncate --size "${toString sw.size}M" "${sw.device}"
+ fi
chmod 0600 ${sw.device}
${optionalString (!sw.randomEncryption) "mkswap ${sw.realDevice}"}
fi
diff --git a/nixos/modules/config/update-users-groups.pl b/nixos/modules/config/update-users-groups.pl
index de73de91629..967f427374b 100644
--- a/nixos/modules/config/update-users-groups.pl
+++ b/nixos/modules/config/update-users-groups.pl
@@ -103,7 +103,7 @@ foreach my $g (@{$spec->{groups}}) {
if (defined $existing) {
$g->{gid} = $existing->{gid} if !defined $g->{gid};
if ($g->{gid} != $existing->{gid}) {
- warn "warning: not applying GID change of group ‘$name’\n";
+ warn "warning: not applying GID change of group ‘$name’ ($existing->{gid} -> $g->{gid})\n";
$g->{gid} = $existing->{gid};
}
$g->{password} = $existing->{password}; # do we want this?
@@ -163,7 +163,7 @@ foreach my $u (@{$spec->{users}}) {
if (defined $existing) {
$u->{uid} = $existing->{uid} if !defined $u->{uid};
if ($u->{uid} != $existing->{uid}) {
- warn "warning: not applying UID change of user ‘$name’\n";
+ warn "warning: not applying UID change of user ‘$name’ ($existing->{uid} -> $u->{uid})\n";
$u->{uid} = $existing->{uid};
}
} else {
diff --git a/nixos/modules/config/users-groups.nix b/nixos/modules/config/users-groups.nix
index e643b2d059b..d92deb85d2a 100644
--- a/nixos/modules/config/users-groups.nix
+++ b/nixos/modules/config/users-groups.nix
@@ -1,9 +1,8 @@
-{ config, lib, pkgs, ... }:
+{ config, lib, utils, pkgs, ... }:
with lib;
let
-
ids = config.ids;
cfg = config.users;
@@ -103,7 +102,7 @@ let
};
home = mkOption {
- type = types.str;
+ type = types.path;
default = "/var/empty";
description = "The user's home directory.";
};
@@ -118,9 +117,17 @@ let
};
shell = mkOption {
- type = types.str;
- default = "/run/current-system/sw/bin/nologin";
- description = "The path to the user's shell.";
+ type = types.either types.shellPackage types.path;
+ default = pkgs.nologin;
+ defaultText = "pkgs.nologin";
+ example = literalExample "pkgs.bashInteractive";
+ description = ''
+ The path to the user's shell. Can use shell derivations,
+ like pkgs.bashInteractive . Don’t
+ forget to enable your shell in
+ programs if necessary,
+ like programs.zsh.enable = true;
.
+ '';
};
subUidRanges = mkOption {
@@ -359,11 +366,12 @@ let
spec = pkgs.writeText "users-groups.json" (builtins.toJSON {
inherit (cfg) mutableUsers;
- users = mapAttrsToList (n: u:
+ users = mapAttrsToList (_: u:
{ inherit (u)
- name uid group description home shell createHome isSystemUser
+ name uid group description home createHome isSystemUser
password passwordFile hashedPassword
initialPassword initialHashedPassword;
+ shell = utils.toShellPath u.shell;
}) cfg.users;
groups = mapAttrsToList (n: g:
{ inherit (g) name gid;
@@ -373,6 +381,12 @@ let
}) cfg.groups;
});
+ systemShells =
+ let
+ shells = mapAttrsToList (_: u: u.shell) cfg.users;
+ in
+ filter types.shellPackage.check shells;
+
in {
###### interface
@@ -468,7 +482,6 @@ in {
home = "/root";
shell = mkDefault cfg.defaultUserShell;
group = "root";
- extraGroups = [ "grsecurity" ];
initialHashedPassword = mkDefault config.security.initialRootPassword;
};
nobody = {
@@ -478,6 +491,9 @@ in {
};
};
+ # Install all the user shells
+ environment.systemPackages = systemShells;
+
users.groups = {
root.gid = ids.gids.root;
wheel.gid = ids.gids.wheel;
@@ -497,7 +513,6 @@ in {
nixbld.gid = ids.gids.nixbld;
utmp.gid = ids.gids.utmp;
adm.gid = ids.gids.adm;
- grsecurity.gid = ids.gids.grsecurity;
input.gid = ids.gids.input;
};
diff --git a/nixos/modules/i18n/input-method/fcitx.nix b/nixos/modules/i18n/input-method/fcitx.nix
index bdefd2d2d59..e97bb9f80eb 100644
--- a/nixos/modules/i18n/input-method/fcitx.nix
+++ b/nixos/modules/i18n/input-method/fcitx.nix
@@ -4,7 +4,7 @@ with lib;
let
cfg = config.i18n.inputMethod.fcitx;
- fcitxPackage = pkgs.fcitx-with-plugins.override { plugins = cfg.engines; };
+ fcitxPackage = pkgs.fcitx.override { plugins = cfg.engines; };
fcitxEngine = types.package // {
name = "fcitx-engine";
check = x: (lib.types.package.check x) && (attrByPath ["meta" "isFcitxEngine"] false x);
diff --git a/nixos/modules/installer/cd-dvd/sd-image-armv7l-multiplatform.nix b/nixos/modules/installer/cd-dvd/sd-image-armv7l-multiplatform.nix
index 957a8ff9ce6..80fb4707228 100644
--- a/nixos/modules/installer/cd-dvd/sd-image-armv7l-multiplatform.nix
+++ b/nixos/modules/installer/cd-dvd/sd-image-armv7l-multiplatform.nix
@@ -19,18 +19,37 @@ in
"it cannot be cross compiled";
};
+ # Needed by RPi firmware
+ nixpkgs.config.allowUnfree = true;
+
boot.loader.grub.enable = false;
boot.loader.generic-extlinux-compatible.enable = true;
boot.kernelPackages = pkgs.linuxPackages_latest;
- boot.kernelParams = ["console=ttyS0,115200n8" "console=ttymxc0,115200n8" "console=ttyAMA0,115200n8" "console=tty0"];
+ boot.kernelParams = ["console=ttyS0,115200n8" "console=ttymxc0,115200n8" "console=ttyAMA0,115200n8" "console=ttyO0,115200n8" "console=tty0"];
+ boot.consoleLogLevel = 7;
# FIXME: this probably should be in installation-device.nix
users.extraUsers.root.initialHashedPassword = "";
sdImage = {
- populateBootCommands = ''
+ populateBootCommands = let
+ configTxt = pkgs.writeText "config.txt" ''
+ [pi2]
+ kernel=u-boot-rpi2.bin
+
+ [pi3]
+ kernel=u-boot-rpi3.bin
+ enable_uart=1
+ '';
+ in ''
+ for f in bootcode.bin fixup.dat start.elf; do
+ cp ${pkgs.raspberrypifw}/share/raspberrypi/boot/$f boot/
+ done
+ cp ${pkgs.ubootRaspberryPi2}/u-boot.bin boot/u-boot-rpi2.bin
+ cp ${pkgs.ubootRaspberryPi3}/u-boot.bin boot/u-boot-rpi3.bin
+ cp ${configTxt} boot/config.txt
${extlinux-conf-builder} -t 3 -c ${config.system.build.toplevel} -d ./boot
- '';
+ '';
};
}
diff --git a/nixos/modules/installer/cd-dvd/sd-image-raspberrypi.nix b/nixos/modules/installer/cd-dvd/sd-image-raspberrypi.nix
index e7163f10a3c..dc196468139 100644
--- a/nixos/modules/installer/cd-dvd/sd-image-raspberrypi.nix
+++ b/nixos/modules/installer/cd-dvd/sd-image-raspberrypi.nix
@@ -26,6 +26,7 @@ in
boot.loader.generic-extlinux-compatible.enable = true;
boot.kernelPackages = pkgs.linuxPackages_rpi;
+ boot.consoleLogLevel = 7;
# FIXME: this probably should be in installation-device.nix
users.extraUsers.root.initialHashedPassword = "";
diff --git a/nixos/modules/installer/tools/nixos-install.sh b/nixos/modules/installer/tools/nixos-install.sh
index c23d7e5b509..7962be13787 100644
--- a/nixos/modules/installer/tools/nixos-install.sh
+++ b/nixos/modules/installer/tools/nixos-install.sh
@@ -91,12 +91,10 @@ ln -s /run $mountPoint/var/run
rm -f $mountPoint/etc/{resolv.conf,hosts}
cp -Lf /etc/resolv.conf /etc/hosts $mountPoint/etc/
-if [ -e "$SSL_CERT_FILE" ]; then
- cp -Lf "$SSL_CERT_FILE" "$mountPoint/tmp/ca-cert.crt"
- export SSL_CERT_FILE=/tmp/ca-cert.crt
- # For Nix 1.7
- export CURL_CA_BUNDLE=/tmp/ca-cert.crt
-fi
+cp -Lf "@cacert@" "$mountPoint/tmp/ca-cert.crt"
+export SSL_CERT_FILE=/tmp/ca-cert.crt
+# For Nix 1.7
+export CURL_CA_BUNDLE=/tmp/ca-cert.crt
if [ -n "$runChroot" ]; then
if ! [ -L $mountPoint/nix/var/nix/profiles/system ]; then
diff --git a/nixos/modules/installer/tools/nixos-version.sh b/nixos/modules/installer/tools/nixos-version.sh
index 51aa2dd8232..77a1b458a34 100644
--- a/nixos/modules/installer/tools/nixos-version.sh
+++ b/nixos/modules/installer/tools/nixos-version.sh
@@ -1,6 +1,10 @@
#! @shell@
case "$1" in
+ -h|--help)
+ exec man nixos-version
+ exit 1
+ ;;
--hash|--revision)
echo "@nixosRevision@"
;;
diff --git a/nixos/modules/installer/tools/tools.nix b/nixos/modules/installer/tools/tools.nix
index b8fd9deaf1e..d8622b51052 100644
--- a/nixos/modules/installer/tools/tools.nix
+++ b/nixos/modules/installer/tools/tools.nix
@@ -23,6 +23,7 @@ let
inherit (pkgs) perl pathsFromGraph;
nix = config.nix.package.out;
+ cacert = "${pkgs.cacert}/etc/ssl/certs/ca-bundle.crt";
nixClosure = pkgs.runCommand "closure"
{ exportReferencesGraph = ["refs" config.nix.package.out]; }
diff --git a/nixos/modules/misc/ids.nix b/nixos/modules/misc/ids.nix
index d421167c859..581cd4fb631 100644
--- a/nixos/modules/misc/ids.nix
+++ b/nixos/modules/misc/ids.nix
@@ -147,7 +147,6 @@
foundationdb = 118;
newrelic = 119;
starbound = 120;
- #grsecurity = 121; # unused
hydra = 122;
spiped = 123;
teamspeak = 124;
@@ -269,6 +268,8 @@
nzbget = 245;
mosquitto = 246;
toxvpn = 247;
+ squeezelite = 248;
+ turnserver = 249;
# When adding a uid, make sure it doesn't match an existing gid. And don't use uids above 399!
@@ -369,7 +370,7 @@
quassel = 89;
amule = 90;
minidlna = 91;
- #elasticsearch = 92; # unused
+ elasticsearch = 92;
#tcpcryptd = 93; # unused
connman = 94;
firebird = 95;
@@ -396,7 +397,6 @@
foundationdb = 118;
newrelic = 119;
starbound = 120;
- grsecurity = 121;
hydra = 122;
spiped = 123;
teamspeak = 124;
@@ -508,6 +508,8 @@
nzbget = 245;
mosquitto = 246;
#toxvpn = 247; # unused
+ #squeezelite = 248; #unused
+ turnserver = 249;
# When adding a gid, make sure it doesn't match an existing
# uid. Users and groups with the same name should have equal
diff --git a/nixos/modules/module-list.nix b/nixos/modules/module-list.nix
index 37a200c0958..0b3f49aec5c 100644
--- a/nixos/modules/module-list.nix
+++ b/nixos/modules/module-list.nix
@@ -76,6 +76,7 @@
./programs/screen.nix
./programs/shadow.nix
./programs/shell.nix
+ ./programs/spacefm.nix
./programs/ssh.nix
./programs/ssmtp.nix
./programs/tmux.nix
@@ -110,6 +111,7 @@
./services/audio/liquidsoap.nix
./services/audio/mpd.nix
./services/audio/mopidy.nix
+ ./services/audio/squeezelite.nix
./services/backup/almir.nix
./services/backup/bacula.nix
./services/backup/crashplan.nix
@@ -125,10 +127,11 @@
./services/computing/torque/server.nix
./services/computing/torque/mom.nix
./services/computing/slurm/slurm.nix
- ./services/continuous-integration/jenkins/default.nix
- ./services/continuous-integration/jenkins/slave.nix
- ./services/continuous-integration/jenkins/job-builder.nix
+ ./services/continuous-integration/buildkite-agent.nix
./services/continuous-integration/hydra/default.nix
+ ./services/continuous-integration/jenkins/default.nix
+ ./services/continuous-integration/jenkins/job-builder.nix
+ ./services/continuous-integration/jenkins/slave.nix
./services/databases/4store-endpoint.nix
./services/databases/4store.nix
./services/databases/couchdb.nix
@@ -162,6 +165,7 @@
./services/desktops/profile-sync-daemon.nix
./services/desktops/telepathy.nix
./services/development/hoogle.nix
+ ./services/editors/emacs.nix
./services/games/factorio.nix
./services/games/ghost-one.nix
./services/games/minecraft-server.nix
@@ -218,6 +222,7 @@
./services/misc/confd.nix
./services/misc/devmon.nix
./services/misc/dictd.nix
+ ./services/misc/dysnomia.nix
./services/misc/disnix.nix
./services/misc/docker-registry.nix
./services/misc/emby.nix
@@ -314,6 +319,7 @@
./services/networking/cntlm.nix
./services/networking/connman.nix
./services/networking/consul.nix
+ ./services/networking/coturn.nix
./services/networking/ddclient.nix
./services/networking/dhcpcd.nix
./services/networking/dhcpd.nix
@@ -362,6 +368,7 @@
./services/networking/ntopng.nix
./services/networking/ntpd.nix
./services/networking/nylon.nix
+ ./services/networking/offlineimap.nix
./services/networking/oidentd.nix
./services/networking/openfire.nix
./services/networking/openntpd.nix
@@ -369,6 +376,7 @@
./services/networking/ostinato.nix
./services/networking/pdnsd.nix
./services/networking/polipo.nix
+ ./services/networking/pptpd.nix
./services/networking/prayer.nix
./services/networking/privoxy.nix
./services/networking/prosody.nix
@@ -409,6 +417,7 @@
./services/networking/wicd.nix
./services/networking/wpa_supplicant.nix
./services/networking/xinetd.nix
+ ./services/networking/xl2tpd.nix
./services/networking/zerobin.nix
./services/networking/zerotierone.nix
./services/networking/znc.nix
@@ -455,6 +464,7 @@
./services/web-servers/lighttpd/cgit.nix
./services/web-servers/lighttpd/default.nix
./services/web-servers/lighttpd/gitweb.nix
+ ./services/web-servers/lighttpd/inginious.nix
./services/web-servers/nginx/default.nix
./services/web-servers/phpfpm.nix
./services/web-servers/shellinabox.nix
@@ -490,6 +500,7 @@
./services/x11/window-managers/windowlab.nix
./services/x11/window-managers/wmii.nix
./services/x11/window-managers/xmonad.nix
+ ./services/x11/xbanish.nix
./services/x11/xfs.nix
./services/x11/xserver.nix
./system/activation/activation-script.nix
@@ -513,6 +524,7 @@
./system/boot/luksroot.nix
./system/boot/modprobe.nix
./system/boot/networkd.nix
+ ./system/boot/plymouth.nix
./system/boot/resolved.nix
./system/boot/shutdown.nix
./system/boot/stage-1.nix
diff --git a/nixos/modules/profiles/installation-device.nix b/nixos/modules/profiles/installation-device.nix
index 669b6975c69..93736ba256b 100644
--- a/nixos/modules/profiles/installation-device.nix
+++ b/nixos/modules/profiles/installation-device.nix
@@ -42,7 +42,7 @@ with lib;
The "root" account has an empty password. ${
optionalString config.services.xserver.enable
- "Type `start display-manager' to\nstart the graphical user interface."}
+ "Type `systemctl start display-manager' to\nstart the graphical user interface."}
'';
# Allow sshd to be started manually through "start sshd".
diff --git a/nixos/modules/programs/bash/bash.nix b/nixos/modules/programs/bash/bash.nix
index e4e264ec003..c09bcfb70e2 100644
--- a/nixos/modules/programs/bash/bash.nix
+++ b/nixos/modules/programs/bash/bash.nix
@@ -200,7 +200,7 @@ in
# Configuration for readline in bash.
environment.etc."inputrc".source = ./inputrc;
- users.defaultUserShell = mkDefault "/run/current-system/sw/bin/bash";
+ users.defaultUserShell = mkDefault pkgs.bashInteractive;
environment.pathsToLink = optionals cfg.enableCompletion [
"/etc/bash_completion.d"
diff --git a/nixos/modules/programs/bash/inputrc b/nixos/modules/programs/bash/inputrc
index e4eabc052c5..f339eb649ed 100644
--- a/nixos/modules/programs/bash/inputrc
+++ b/nixos/modules/programs/bash/inputrc
@@ -6,6 +6,7 @@ set meta-flag on
set input-meta on
set convert-meta off
set output-meta on
+set colored-stats on
#set mark-symlinked-directories on
diff --git a/nixos/modules/programs/shadow.nix b/nixos/modules/programs/shadow.nix
index 566398d839f..6398509357a 100644
--- a/nixos/modules/programs/shadow.nix
+++ b/nixos/modules/programs/shadow.nix
@@ -1,6 +1,6 @@
# Configuration for the pwdutils suite of tools: passwd, useradd, etc.
-{ config, lib, pkgs, ... }:
+{ config, lib, utils, pkgs, ... }:
with lib;
@@ -43,13 +43,13 @@ in
users.defaultUserShell = lib.mkOption {
description = ''
This option defines the default shell assigned to user
- accounts. This must not be a store path, since the path is
+ accounts. This can be either a full system path or a shell package.
+
+ This must not be a store path, since the path is
used outside the store (in particular in /etc/passwd).
- Rather, it should be the path of a symlink that points to the
- actual shell in the Nix store.
'';
- example = "/run/current-system/sw/bin/zsh";
- type = types.path;
+ example = literalExample "pkgs.zsh";
+ type = types.either types.path types.shellPackage;
};
};
@@ -60,7 +60,9 @@ in
config = {
environment.systemPackages =
- lib.optional config.users.mutableUsers pkgs.shadow;
+ lib.optional config.users.mutableUsers pkgs.shadow ++
+ lib.optional (types.shellPackage.check config.users.defaultUserShell)
+ config.users.defaultUserShell;
environment.etc =
[ { # /etc/login.defs: global configuration for pwdutils. You
@@ -74,7 +76,7 @@ in
''
GROUP=100
HOME=/home
- SHELL=${config.users.defaultUserShell}
+ SHELL=${utils.toShellPath config.users.defaultUserShell}
'';
target = "default/useradd";
}
diff --git a/nixos/modules/programs/spacefm.nix b/nixos/modules/programs/spacefm.nix
new file mode 100644
index 00000000000..6d03608402f
--- /dev/null
+++ b/nixos/modules/programs/spacefm.nix
@@ -0,0 +1,55 @@
+# Global configuration for spacefm.
+
+{ config, lib, pkgs, ... }:
+
+with lib;
+
+let cfg = config.programs.spacefm;
+
+in
+{
+ ###### interface
+
+ options = {
+
+ programs.spacefm = {
+
+ enable = mkOption {
+ type = types.bool;
+ default = false;
+ description = ''
+ Whether to install SpaceFM and create /etc/spacefm/spacefm.conf .
+ '';
+ };
+
+ settings = mkOption {
+ type = types.attrs;
+ default = {
+ tmp_dir = "/tmp";
+ terminal_su = "${pkgs.sudo}/bin/sudo";
+ graphical_su = "${pkgs.gksu}/bin/gksu";
+ };
+ example = literalExample ''{
+ tmp_dir = "/tmp";
+ terminal_su = "''${pkgs.sudo}/bin/sudo";
+ graphical_su = "''${pkgs.gksu}/bin/gksu";
+ }'';
+ description = ''
+ The system-wide spacefm configuration.
+ Parameters to be written to /etc/spacefm/spacefm.conf .
+ Refer to the relevant entry in the SpaceFM manual.
+ '';
+ };
+
+ };
+ };
+
+ ###### implementation
+
+ config = mkIf cfg.enable {
+ environment.systemPackages = [ pkgs.spaceFM ];
+
+ environment.etc."spacefm/spacefm.conf".text =
+ concatStrings (mapAttrsToList (n: v: "${n}=${toString v}\n") cfg.settings);
+ };
+}
diff --git a/nixos/modules/rename.nix b/nixos/modules/rename.nix
index 3440261c396..634f91a275d 100644
--- a/nixos/modules/rename.nix
+++ b/nixos/modules/rename.nix
@@ -114,6 +114,26 @@ with lib;
(mkRenamedOptionModule [ "services" "iodined" "extraConfig" ] [ "services" "iodine" "server" "extraConfig" ])
(mkRemovedOptionModule [ "services" "iodined" "client" ])
+ # Grsecurity
+ (mkRemovedOptionModule [ "security" "grsecurity" "kernelPatch" ])
+ (mkRemovedOptionModule [ "security" "grsecurity" "config" "mode" ])
+ (mkRemovedOptionModule [ "security" "grsecurity" "config" "priority" ])
+ (mkRemovedOptionModule [ "security" "grsecurity" "config" "system" ])
+ (mkRemovedOptionModule [ "security" "grsecurity" "config" "virtualisationConfig" ])
+ (mkRemovedOptionModule [ "security" "grsecurity" "config" "hardwareVirtualisation" ])
+ (mkRemovedOptionModule [ "security" "grsecurity" "config" "virtualisationSoftware" ])
+ (mkRemovedOptionModule [ "security" "grsecurity" "config" "sysctl" ])
+ (mkRemovedOptionModule [ "security" "grsecurity" "config" "denyChrootChmod" ])
+ (mkRemovedOptionModule [ "security" "grsecurity" "config" "denyChrootCaps" ])
+ (mkRemovedOptionModule [ "security" "grsecurity" "config" "denyUSB" ])
+ (mkRemovedOptionModule [ "security" "grsecurity" "config" "restrictProc" ])
+ (mkRemovedOptionModule [ "security" "grsecurity" "config" "restrictProcWithGroup" ])
+ (mkRemovedOptionModule [ "security" "grsecurity" "config" "unrestrictProcGid" ])
+ (mkRemovedOptionModule [ "security" "grsecurity" "config" "disableRBAC" ])
+ (mkRemovedOptionModule [ "security" "grsecurity" "config" "disableSimultConnect" ])
+ (mkRemovedOptionModule [ "security" "grsecurity" "config" "verboseVersion" ])
+ (mkRemovedOptionModule [ "security" "grsecurity" "config" "kernelExtraConfig" ])
+
# Options that are obsolete and have no replacement.
(mkRemovedOptionModule [ "boot" "initrd" "luks" "enable" ])
(mkRemovedOptionModule [ "programs" "bash" "enable" ])
diff --git a/nixos/modules/security/acme.nix b/nixos/modules/security/acme.nix
index ef6da788e61..f646602221a 100644
--- a/nixos/modules/security/acme.nix
+++ b/nixos/modules/security/acme.nix
@@ -187,7 +187,7 @@ in
script = ''
cd '${cpath}'
set +e
- simp_le ${concatMapStringsSep " " (arg: escapeShellArg (toString arg)) cmdline}
+ simp_le ${escapeShellArgs cmdline}
EXITCODE=$?
set -e
echo "$EXITCODE" > /tmp/lastExitCode
diff --git a/nixos/modules/security/grsecurity.nix b/nixos/modules/security/grsecurity.nix
index 3f24118ea1c..9d0249820d5 100644
--- a/nixos/modules/security/grsecurity.nix
+++ b/nixos/modules/security/grsecurity.nix
@@ -1,312 +1,122 @@
-{ config, lib, pkgs, ... }:
+{ config, pkgs, lib, ... }:
with lib;
let
cfg = config.security.grsecurity;
+ grsecLockPath = "/proc/sys/kernel/grsecurity/grsec_lock";
- customGrsecPkg =
- (import ../../../pkgs/build-support/grsecurity {
- grsecOptions = cfg;
- inherit pkgs lib;
- }).grsecPackage;
+ # Ascertain whether ZFS is required for booting the system; grsecurity is
+ # currently incompatible with ZFS, rendering the system unbootable.
+ zfsNeededForBoot = filter
+ (fs: (fs.neededForBoot
+ || elem fs.mountPoint [ "/" "/nix" "/nix/store" "/var" "/var/log" "/var/lib" "/etc" ])
+ && fs.fsType == "zfs")
+ (attrValues config.fileSystems) != [];
in
+
{
- options = {
- security.grsecurity = {
- enable = mkOption {
- type = types.bool;
- default = false;
- description = ''
- Enable grsecurity support. This enables advanced exploit
- hardening for the Linux kernel, and adds support for
- administrative Role-Based Acess Control (RBAC) via
- gradm . It also includes traditional
- utilities for PaX.
- '';
- };
+ options.security.grsecurity = {
- kernelPatch = mkOption {
- type = types.attrs;
- example = lib.literalExample "pkgs.kernelPatches.grsecurity_4_1";
- description = ''
- Grsecurity patch to use.
- '';
- };
+ enable = mkEnableOption "Grsecurity/PaX";
- config = {
- mode = mkOption {
- type = types.enum [ "auto" "custom" ];
- default = "auto";
- description = ''
- grsecurity configuration mode. This specifies whether
- grsecurity is auto-configured or otherwise completely
- manually configured.
- '';
- };
-
- priority = mkOption {
- type = types.enum [ "security" "performance" ];
- default = "security";
- description = ''
- grsecurity configuration priority. This specifies whether
- the kernel configuration should emphasize speed or
- security.
- '';
- };
-
- system = mkOption {
- type = types.enum [ "desktop" "server" ];
- default = "desktop";
- description = ''
- grsecurity system configuration.
- '';
- };
-
- virtualisationConfig = mkOption {
- type = types.nullOr (types.enum [ "host" "guest" ]);
- default = null;
- description = ''
- grsecurity virtualisation configuration. This specifies
- the virtualisation role of the machine - that is, whether
- it will be a virtual machine guest, a virtual machine
- host, or neither.
- '';
- };
-
- hardwareVirtualisation = mkOption {
- type = types.nullOr types.bool;
- default = null;
- example = true;
- description = ''
- grsecurity hardware virtualisation configuration. Set to
- true if your machine supports hardware
- accelerated virtualisation.
- '';
- };
-
- virtualisationSoftware = mkOption {
- type = types.nullOr (types.enum [ "kvm" "xen" "vmware" "virtualbox" ]);
- default = null;
- description = ''
- Configure grsecurity for use with this virtualisation software.
- '';
- };
-
- sysctl = mkOption {
- type = types.bool;
- default = false;
- description = ''
- If true, then set GRKERN_SYSCTL y . If
- enabled then grsecurity can be controlled using sysctl
- (and turned off). You are advised to *never* enable this,
- but if you do, make sure to always set the sysctl
- kernel.grsecurity.grsec_lock to
- non-zero as soon as all sysctl options are set. *THIS IS
- EXTREMELY IMPORTANT*!
- '';
- };
-
- denyChrootChmod = mkOption {
- type = types.bool;
- default = false;
- description = ''
- If true, then set GRKERN_CHROOT_CHMOD
- y . If enabled, this denies processes inside a
- chroot from setting the suid or sgid bits using
- chmod or fchmod .
-
- By default this protection is disabled - it makes it
- impossible to use Nix to build software on your system,
- which is what most users want.
-
- If you are using NixOps to deploy your software to a
- remote machine, you're encouraged to enable this as you
- won't need to compile code.
- '';
- };
-
- denyChrootCaps = mkOption {
- type = types.bool;
- default = false;
- description = ''
- Whether to lower capabilities of all processes within a chroot,
- preventing commands that require CAP_SYS_ADMIN .
-
- This protection is disabled by default because it breaks
- nixos-rebuild . Whenever possible, it is
- highly recommended to enable this protection.
- '';
- };
-
- denyUSB = mkOption {
- type = types.bool;
- default = false;
- description = ''
- If true, then set GRKERNSEC_DENYUSB y .
-
- This enables a sysctl with name
- kernel.grsecurity.deny_new_usb . Setting
- its value to 1 will prevent any new USB
- devices from being recognized by the OS. Any attempted
- USB device insertion will be logged.
-
- This option is intended to be used against custom USB
- devices designed to exploit vulnerabilities in various USB
- device drivers.
- '';
- };
-
- restrictProc = mkOption {
- type = types.bool;
- default = false;
- description = ''
- If true, then set GRKERN_PROC_USER
- y . This restricts non-root users to only viewing
- their own processes and restricts network-related
- information, kernel symbols, and module information.
- '';
- };
-
- restrictProcWithGroup = mkOption {
- type = types.bool;
- default = true;
- description = ''
- If true, then set GRKERN_PROC_USERGROUP
- y . This is similar to
- restrictProc except it allows a special
- group (specified by unrestrictProcGid )
- to still access otherwise classified information in
- /proc .
- '';
- };
-
- unrestrictProcGid = mkOption {
- type = types.int;
- default = config.ids.gids.grsecurity;
- description = ''
- If set, specifies a GID which is exempt from
- /proc restrictions (set by
- GRKERN_PROC_USERGROUP ). By default,
- this is set to the GID for grsecurity ,
- a predefined NixOS group, which the
- root account is a member of. You may
- conveniently add other users to this group if you need
- access to /proc
- '';
- };
-
- disableRBAC = mkOption {
- type = types.bool;
- default = false;
- description = ''
- If true, then set GRKERN_NO_RBAC
- y . This disables the
- /dev/grsec device, which in turn
- disables the RBAC system (and gradm ).
- '';
- };
-
- disableSimultConnect = mkOption {
- type = types.bool;
- default = false;
- description = ''
- Disable TCP simultaneous connect. The TCP simultaneous connect
- feature allows two clients to connect without either of them
- entering the listening state. This feature of the TCP specification
- is claimed to enable an attacker to deny the target access to a given
- server by guessing the source port the target would use to make the
- connection.
-
- This option is OFF by default because TCP simultaneous connect has
- some legitimate uses. Enable this option if you know what this TCP
- feature is for and know that you do not need it.
- '';
- };
-
- verboseVersion = mkOption {
- type = types.bool;
- default = false;
- description = "Use verbose version in kernel localversion.";
- };
-
- kernelExtraConfig = mkOption {
- type = types.str;
- default = "";
- description = "Extra kernel configuration parameters.";
- };
- };
- };
- };
-
- config = mkIf cfg.enable {
- assertions =
- [
- { assertion = (cfg.config.restrictProc -> !cfg.config.restrictProcWithGroup) ||
- (cfg.config.restrictProcWithGroup -> !cfg.config.restrictProc);
- message = "You cannot enable both restrictProc and restrictProcWithGroup";
- }
- { assertion = config.boot.kernelPackages.kernel.features ? grsecurity
- && config.boot.kernelPackages.kernel.features.grsecurity;
- message = "grsecurity enabled, but kernel doesn't have grsec support";
- }
- { assertion = (cfg.config.mode == "auto" && (cfg.config.virtualisationConfig != null)) ->
- cfg.config.hardwareVirtualisation != null;
- message = "when using auto grsec mode with virtualisation, you must specify if your hardware has virtualisation extensions";
- }
- { assertion = (cfg.config.mode == "auto" && (cfg.config.virtualisationConfig != null)) ->
- cfg.config.virtualisationSoftware != null;
- message = "grsecurity configured for virtualisation but no virtualisation software specified";
- }
- ];
-
- security.grsecurity.kernelPatch = lib.mkDefault pkgs.kernelPatches.grsecurity_latest;
-
- systemd.services.grsec-lock = mkIf cfg.config.sysctl {
- description = "grsecurity sysctl-lock Service";
- wants = [ "systemd-sysctl.service" ];
- after = [ "systemd-sysctl.service" ];
- wantedBy = [ "multi-user.target" ];
- serviceConfig.Type = "oneshot";
- serviceConfig.RemainAfterExit = "yes";
- unitConfig.ConditionPathIsReadWrite = "/proc/sys/kernel/grsecurity/grsec_lock";
- script = ''
- locked=`cat /proc/sys/kernel/grsecurity/grsec_lock`
- if [ "$locked" == "0" ]; then
- echo 1 > /proc/sys/kernel/grsecurity/grsec_lock
- echo grsecurity sysctl lock - enabled
- else
- echo grsecurity sysctl lock already enabled - doing nothing
- fi
+ lockTunables = mkOption {
+ type = types.bool;
+ example = false;
+ default = true;
+ description = ''
+ Whether to automatically lock grsecurity tunables
+ (boot.kernel.sysctl."kernel.grsecurity.*" ). Disable
+ this to allow configuration of grsecurity features while the system is
+ running. The lock can be manually engaged by activating the
+ grsec-lock service unit.
'';
};
-# systemd.services.grsec-learn = {
-# description = "grsecurity learning Service";
-# wantedBy = [ "local-fs.target" ];
-# serviceConfig = {
-# Type = "oneshot";
-# RemainAfterExit = "yes";
-# ExecStart = "${pkgs.gradm}/sbin/gradm -VFL /etc/grsec/learning.logs";
-# ExecStop = "${pkgs.gradm}/sbin/gradm -D";
-# };
-# };
+ };
- system.activationScripts = lib.optionalAttrs (!cfg.config.disableRBAC) { grsec = ''
- mkdir -p /etc/grsec
- if [ ! -f /etc/grsec/learn_config ]; then
- cp ${pkgs.gradm}/etc/grsec/learn_config /etc/grsec
- fi
- if [ ! -f /etc/grsec/policy ]; then
- cp ${pkgs.gradm}/etc/grsec/policy /etc/grsec
- fi
- chmod -R 0600 /etc/grsec
- ''; };
+ config = mkIf cfg.enable {
+
+ # Allow the user to select a different package set, subject to the stated
+ # required kernel config
+ boot.kernelPackages = mkDefault pkgs.linuxPackages_grsec_nixos;
+
+ system.requiredKernelConfig = with config.lib.kernelConfig;
+ [ (isEnabled "GRKERNSEC")
+ (isEnabled "PAX")
+ (isYES "GRKERNSEC_SYSCTL")
+ (isYES "GRKERNSEC_SYSCTL_DISTRO")
+ ];
+
+ # Crashing on an overflow in kernel land is user unfriendly and may prevent
+ # the system from booting, which is too severe for our use case.
+ boot.kernelParams = [ "pax_size_overflow_report_only" ];
+
+ # Install PaX related utillities into the system profile. Eventually, we
+ # also want to include gradm here.
+ environment.systemPackages = with pkgs; [ paxctl pax-utils ];
+
+ # Install rules for the grsec device node
+ services.udev.packages = [ pkgs.gradm ];
+
+ # This service unit is responsible for locking the Grsecurity tunables. The
+ # unit is always defined, but only activated on bootup if lockTunables is
+ # toggled. When lockTunables is toggled, failure to activate the unit will
+ # enter emergency mode. The intent is to make it difficult to silently
+ # enter multi-user mode without having locked the tunables. Some effort is
+ # made to ensure that starting the unit is an idempotent operation.
+ systemd.services.grsec-lock = {
+ description = "Lock grsecurity tunables";
+
+ wantedBy = optional cfg.lockTunables "multi-user.target";
+
+ wants = [ "local-fs.target" "systemd-sysctl.service" ];
+ after = [ "local-fs.target" "systemd-sysctl.service" ];
+ conflicts = [ "shutdown.target" ];
+
+ restartIfChanged = false;
+
+ script = ''
+ if ${pkgs.gnugrep}/bin/grep -Fq 0 ${grsecLockPath} ; then
+ echo -n 1 > ${grsecLockPath}
+ fi
+ '';
+
+ unitConfig = {
+ ConditionPathIsReadWrite = grsecLockPath;
+ DefaultDependencies = false;
+ } // optionalAttrs cfg.lockTunables {
+ OnFailure = "emergency.target";
+ };
+
+ serviceConfig = {
+ Type = "oneshot";
+ RemainAfterExit = true;
+ };
+ };
+
+ # Configure system tunables
+ boot.kernel.sysctl = {
+ # Removed under grsecurity
+ "kernel.kptr_restrict" = mkForce null;
+ } // optionalAttrs config.nix.useSandbox {
+ # chroot(2) restrictions that conflict with sandboxed Nix builds
+ "kernel.grsecurity.chroot_caps" = mkForce 0;
+ "kernel.grsecurity.chroot_deny_chroot" = mkForce 0;
+ "kernel.grsecurity.chroot_deny_mount" = mkForce 0;
+ "kernel.grsecurity.chroot_deny_pivot" = mkForce 0;
+ } // optionalAttrs config.boot.enableContainers {
+ # chroot(2) restrictions that conflict with NixOS lightweight containers
+ "kernel.grsecurity.chroot_deny_chmod" = mkForce 0;
+ "kernel.grsecurity.chroot_deny_mount" = mkForce 0;
+ "kernel.grsecurity.chroot_restrict_nice" = mkForce 0;
+ };
+
+ assertions = [
+ { assertion = !zfsNeededForBoot;
+ message = "grsecurity is currently incompatible with ZFS";
+ }
+ ];
- # Enable AppArmor, gradm udev rules, and utilities
- security.apparmor.enable = true;
- boot.kernelPackages = customGrsecPkg;
- services.udev.packages = lib.optional (!cfg.config.disableRBAC) pkgs.gradm;
- environment.systemPackages = [ pkgs.paxctl pkgs.pax-utils ] ++ lib.optional (!cfg.config.disableRBAC) pkgs.gradm;
};
}
diff --git a/nixos/modules/services/audio/squeezelite.nix b/nixos/modules/services/audio/squeezelite.nix
new file mode 100644
index 00000000000..f1a60be992d
--- /dev/null
+++ b/nixos/modules/services/audio/squeezelite.nix
@@ -0,0 +1,67 @@
+{ config, lib, pkgs, ... }:
+
+with lib;
+
+let
+
+ uid = config.ids.uids.squeezelite;
+ cfg = config.services.squeezelite;
+
+in {
+
+ ###### interface
+
+ options = {
+
+ services.squeezelite= {
+
+ enable = mkEnableOption "Squeezelite, a software Squeezebox emulator";
+
+ dataDir = mkOption {
+ default = "/var/lib/squeezelite";
+ type = types.str;
+ description = ''
+ The directory where Squeezelite stores its name file.
+ '';
+ };
+
+ extraArguments = mkOption {
+ default = "";
+ type = types.str;
+ description = ''
+ Additional command line arguments to pass to Squeezelite.
+ '';
+ };
+
+ };
+
+ };
+
+
+ ###### implementation
+
+ config = mkIf cfg.enable {
+
+ systemd.services.squeezelite= {
+ wantedBy = [ "multi-user.target" ];
+ after = [ "network.target" "sound.target" ];
+ description = "Software Squeezebox emulator";
+ preStart = "mkdir -p ${cfg.dataDir} && chown -R squeezelite ${cfg.dataDir}";
+ serviceConfig = {
+ ExecStart = "${pkgs.squeezelite}/bin/squeezelite -N ${cfg.dataDir}/player-name ${cfg.extraArguments}";
+ User = "squeezelite";
+ PermissionsStartOnly = true;
+ };
+ };
+
+ users.extraUsers.squeezelite= {
+ inherit uid;
+ group = "nogroup";
+ extraGroups = [ "audio" ];
+ description = "Squeezelite user";
+ home = "${cfg.dataDir}";
+ };
+
+ };
+
+}
diff --git a/nixos/modules/services/continuous-integration/buildkite-agent.nix b/nixos/modules/services/continuous-integration/buildkite-agent.nix
new file mode 100644
index 00000000000..b1449882b04
--- /dev/null
+++ b/nixos/modules/services/continuous-integration/buildkite-agent.nix
@@ -0,0 +1,100 @@
+{ config, lib, pkgs, ... }:
+
+with lib;
+
+let
+ cfg = config.services.buildkite-agent;
+ configFile = pkgs.writeText "buildkite-agent.cfg"
+ ''
+ token="${cfg.token}"
+ name="${cfg.name}"
+ meta-data="${cfg.meta-data}"
+ hooks-path="${pkgs.buildkite-agent}/share/hooks"
+ build-path="/var/lib/buildkite-agent/builds"
+ bootstrap-script="${pkgs.buildkite-agent}/share/bootstrap.sh"
+ '';
+in
+
+{
+ options = {
+ services.buildkite-agent = {
+ enable = mkEnableOption "buildkite-agent";
+
+ token = mkOption {
+ type = types.str;
+ description = ''
+ The token from your Buildkite "Agents" page.
+ '';
+ };
+
+ name = mkOption {
+ type = types.str;
+ description = ''
+ The name of the agent.
+ '';
+ };
+
+ meta-data = mkOption {
+ type = types.str;
+ default = "";
+ description = ''
+ Meta data for the agent.
+ '';
+ };
+
+ openssh =
+ { privateKey = mkOption {
+ type = types.str;
+ description = ''
+ Private agent key.
+ '';
+ };
+ publicKey = mkOption {
+ type = types.str;
+ description = ''
+ Public agent key.
+ '';
+ };
+ };
+ };
+ };
+
+ config = mkIf config.services.buildkite-agent.enable {
+ users.extraUsers.buildkite-agent =
+ { name = "buildkite-agent";
+ home = "/var/lib/buildkite-agent";
+ createHome = true;
+ description = "Buildkite agent user";
+ };
+
+ environment.systemPackages = [ pkgs.buildkite-agent ];
+
+ systemd.services.buildkite-agent =
+ { description = "Buildkite Agent";
+ wantedBy = [ "multi-user.target" ];
+ after = [ "network.target" ];
+ environment.HOME = "/var/lib/buildkite-agent";
+ preStart = ''
+ ${pkgs.coreutils}/bin/mkdir -m 0700 -p /var/lib/buildkite-agent/.ssh
+
+ if ! [ -f /var/lib/buildkite-agent/.ssh/id_rsa ]; then
+ echo "${cfg.openssh.privateKey}" > /var/lib/buildkite-agent/.ssh/id_rsa
+ ${pkgs.coreutils}/bin/chmod 600 /var/lib/buildkite-agent/.ssh/id_rsa
+ fi
+
+ if ! [ -f /var/lib/buildkite-agent/.ssh/id_rsa.pub ]; then
+ echo "${cfg.openssh.publicKey}" > /var/lib/buildkite-agent/.ssh/id_rsa.pub
+ ${pkgs.coreutils}/bin/chmod 600 /var/lib/buildkite-agent/.ssh/id_rsa.pub
+ fi
+ '';
+
+ serviceConfig =
+ { ExecStart = "${pkgs.buildkite-agent}/bin/buildkite-agent start --config ${configFile}";
+ User = "buildkite-agent";
+ RestartSec = 5;
+ Restart = "on-failure";
+ TimeoutSec = 10;
+ };
+ };
+ };
+}
diff --git a/nixos/modules/services/continuous-integration/jenkins/default.nix b/nixos/modules/services/continuous-integration/jenkins/default.nix
index ae3f186c1d0..7da49fa0aaa 100644
--- a/nixos/modules/services/continuous-integration/jenkins/default.nix
+++ b/nixos/modules/services/continuous-integration/jenkins/default.nix
@@ -154,7 +154,7 @@ in {
'';
script = ''
- ${pkgs.jdk}/bin/java -jar ${pkgs.jenkins} --httpListenAddress=${cfg.listenAddress} \
+ ${pkgs.jdk}/bin/java -jar ${pkgs.jenkins}/lib/jenkins.war --httpListenAddress=${cfg.listenAddress} \
--httpPort=${toString cfg.port} \
--prefix=${cfg.prefix} \
${concatStringsSep " " cfg.extraOptions}
diff --git a/nixos/modules/services/databases/openldap.nix b/nixos/modules/services/databases/openldap.nix
index cbdc676d47b..9f22aa7c92b 100644
--- a/nixos/modules/services/databases/openldap.nix
+++ b/nixos/modules/services/databases/openldap.nix
@@ -40,6 +40,13 @@ in
description = "Group account under which slapd runs.";
};
+ urlList = mkOption {
+ type = types.listOf types.string;
+ default = [ "ldap:///" ];
+ description = "URL list slapd should listen on.";
+ example = [ "ldaps:///" ];
+ };
+
dataDir = mkOption {
type = types.string;
default = "/var/db/openldap";
@@ -50,7 +57,7 @@ in
type = types.lines;
default = "";
description = "
- sldapd.conf configuration
+ slapd.conf configuration
";
example = literalExample ''
'''
@@ -89,7 +96,7 @@ in
mkdir -p ${cfg.dataDir}
chown -R ${cfg.user}:${cfg.group} ${cfg.dataDir}
'';
- serviceConfig.ExecStart = "${openldap.out}/libexec/slapd -u ${cfg.user} -g ${cfg.group} -d 0 -f ${configFile}";
+ serviceConfig.ExecStart = "${openldap.out}/libexec/slapd -u ${cfg.user} -g ${cfg.group} -d 0 -h \"${concatStringsSep " " cfg.urlList}\" -f ${configFile}";
};
users.extraUsers.openldap =
diff --git a/nixos/modules/services/editors/emacs.nix b/nixos/modules/services/editors/emacs.nix
new file mode 100644
index 00000000000..43b4219c51d
--- /dev/null
+++ b/nixos/modules/services/editors/emacs.nix
@@ -0,0 +1,86 @@
+{ config, lib, pkgs, ... }:
+
+with lib;
+
+let
+
+ cfg = config.services.emacs;
+
+ editorScript = pkgs.writeScriptBin "emacseditor" ''
+ #!${pkgs.stdenv.shell}
+ if [ -z "$1" ]; then
+ exec ${cfg.package}/bin/emacsclient --create-frame --alternate-editor ${cfg.package}/bin/emacs
+ else
+ exec ${cfg.package}/bin/emacsclient --alternate-editor ${cfg.package}/bin/emacs "$@"
+ fi
+ '';
+
+in {
+
+ options.services.emacs = {
+ enable = mkOption {
+ type = types.bool;
+ default = false;
+ example = true;
+ description = ''
+ Whether to enable a user service for the Emacs daemon. Use emacsclient to connect to the
+ daemon. If true , services.emacs.install is
+ considered true , whatever its value.
+ '';
+ };
+
+ install = mkOption {
+ type = types.bool;
+ default = false;
+ example = true;
+ description = ''
+ Whether to install a user service for the Emacs daemon. Once
+ the service is started, use emacsclient to connect to the
+ daemon.
+
+ The service must be manually started for each user with
+ "systemctl --user start emacs" or globally through
+ services.emacs.enable .
+ '';
+ };
+
+
+ package = mkOption {
+ type = types.package;
+ default = pkgs.emacs;
+ defaultText = "pkgs.emacs";
+ description = ''
+ emacs derivation to use.
+ '';
+ };
+
+ defaultEditor = mkOption {
+ type = types.bool;
+ default = false;
+ example = true;
+ description = ''
+ When enabled, configures emacsclient to be the default editor
+ using the EDITOR environment variable.
+ '';
+ };
+ };
+
+ config = mkIf (cfg.enable || cfg.install) {
+ systemd.user.services.emacs = {
+ description = "Emacs: the extensible, self-documenting text editor";
+
+ serviceConfig = {
+ Type = "forking";
+ ExecStart = "${pkgs.bash}/bin/bash -c 'source ${config.system.build.setEnvironment}; exec ${cfg.package}/bin/emacs --daemon'";
+ ExecStop = "${cfg.package}/bin/emacsclient --eval (kill-emacs)";
+ Restart = "always";
+ };
+ } // optionalAttrs cfg.enable { wantedBy = [ "default.target" ]; };
+
+ environment.systemPackages = [ cfg.package editorScript ];
+
+ environment.variables = if cfg.defaultEditor then {
+ EDITOR = mkOverride 900 "${editorScript}/bin/emacseditor";
+ } else {};
+ };
+}
diff --git a/nixos/modules/services/games/factorio.nix b/nixos/modules/services/games/factorio.nix
index 10f3daea69e..90834c5b260 100644
--- a/nixos/modules/services/games/factorio.nix
+++ b/nixos/modules/services/games/factorio.nix
@@ -78,7 +78,7 @@ in
test -e ${stateDir}/saves/${cfg.saveName}.zip || \
${pkgs.factorio-headless}/bin/factorio \
--config=${cfg.configFile} \
- --create=${cfg.saveName}
+ --create=${stateDir}/saves/${cfg.saveName}.zip
'';
serviceConfig = {
@@ -93,7 +93,7 @@ in
"${pkgs.factorio-headless}/bin/factorio"
"--config=${cfg.configFile}"
"--port=${toString cfg.port}"
- "--start-server=${cfg.saveName}"
+ "--start-server=${stateDir}/saves/${cfg.saveName}.zip"
];
};
};
diff --git a/nixos/modules/services/hardware/tlp.nix b/nixos/modules/services/hardware/tlp.nix
index 6427c5be681..5ab7daafa85 100644
--- a/nixos/modules/services/hardware/tlp.nix
+++ b/nixos/modules/services/hardware/tlp.nix
@@ -54,6 +54,9 @@ in
config = mkIf cfg.enable {
+ powerManagement.scsiLinkPolicy = null;
+ powerManagement.cpuFreqGovernor = null;
+
systemd.services = {
tlp = {
description = "TLP system startup/shutdown";
@@ -61,6 +64,7 @@ in
after = [ "multi-user.target" ];
wantedBy = [ "multi-user.target" ];
before = [ "shutdown.target" ];
+ restartTriggers = [ confFile ];
serviceConfig = {
Type = "oneshot";
diff --git a/nixos/modules/services/logging/logstash.nix b/nixos/modules/services/logging/logstash.nix
index e019e6c3f23..2c3016d27df 100644
--- a/nixos/modules/services/logging/logstash.nix
+++ b/nixos/modules/services/logging/logstash.nix
@@ -105,7 +105,7 @@ in
prune {
whitelist_names => [
"type", "@timestamp", "@version",
- "MESSAGE", "PRIORITY", "SYSLOG_FACILITY",
+ "MESSAGE", "PRIORITY", "SYSLOG_FACILITY"
]
}
}
diff --git a/nixos/modules/services/mail/opendkim.nix b/nixos/modules/services/mail/opendkim.nix
index af996758f41..f065208ddfc 100644
--- a/nixos/modules/services/mail/opendkim.nix
+++ b/nixos/modules/services/mail/opendkim.nix
@@ -101,7 +101,7 @@ in {
wantedBy = [ "multi-user.target" ];
serviceConfig = {
- ExecStart = "${pkgs.opendkim}/bin/opendkim ${concatMapStringsSep " " escapeShellArg args}";
+ ExecStart = "${pkgs.opendkim}/bin/opendkim ${escapeShellArgs args}";
User = cfg.user;
Group = cfg.group;
RuntimeDirectory = optional (cfg.socket == defaultSock) "opendkim";
diff --git a/nixos/modules/services/mail/postfix.nix b/nixos/modules/services/mail/postfix.nix
index bad9d527f9a..cdde4144622 100644
--- a/nixos/modules/services/mail/postfix.nix
+++ b/nixos/modules/services/mail/postfix.nix
@@ -127,11 +127,11 @@ let
# (yes) (yes) (no) (never) (100)
# ==========================================================================
smtp inet n - n - - smtpd
- #submission inet n - n - - smtpd
- # -o smtpd_tls_security_level=encrypt
- # -o smtpd_sasl_auth_enable=yes
- # -o smtpd_client_restrictions=permit_sasl_authenticated,reject
- # -o milter_macro_daemon_name=ORIGINATING
+ '' + optionalString cfg.enableSubmission ''
+ submission inet n - n - - smtpd
+ ${concatStringsSep "\n " (mapAttrsToList (x: y: "-o " + x + "=" + y) cfg.submissionOptions)}
+ ''
+ + ''
pickup unix n - n 60 1 pickup
cleanup unix n - n - 0 cleanup
qmgr unix n - n 300 1 qmgr
@@ -201,6 +201,28 @@ in
default = true;
description = "Whether to enable smtp in master.cf.";
};
+
+ enableSubmission = mkOption {
+ type = types.bool;
+ default = false;
+ description = "Whether to enable smtp submission";
+ };
+
+ submissionOptions = mkOption {
+ type = types.attrs;
+ default = { "smtpd_tls_security_level" = "encrypt";
+ "smtpd_sasl_auth_enable" = "yes";
+ "smtpd_client_restrictions" = "permit_sasl_authenticated,reject";
+ "milter_macro_daemon_name" = "ORIGINATING";
+ };
+ description = "Options for the submission config in master.cf";
+ example = { "smtpd_tls_security_level" = "encrypt";
+ "smtpd_sasl_auth_enable" = "yes";
+ "smtpd_sasl_type" = "dovecot";
+ "smtpd_client_restrictions" = "permit_sasl_authenticated,reject";
+ "milter_macro_daemon_name" = "ORIGINATING";
+ };
+ };
setSendmail = mkOption {
type = types.bool;
diff --git a/nixos/modules/services/misc/confd.nix b/nixos/modules/services/misc/confd.nix
index c0fbf06e6c4..72ec68dee6b 100644
--- a/nixos/modules/services/misc/confd.nix
+++ b/nixos/modules/services/misc/confd.nix
@@ -75,7 +75,7 @@ in {
wantedBy = [ "multi-user.target" ];
after = [ "network.target" ];
serviceConfig = {
- ExecStart = "${cfg.package}/bin/confd";
+ ExecStart = "${cfg.package.bin}/bin/confd";
};
};
diff --git a/nixos/modules/services/misc/disnix.nix b/nixos/modules/services/misc/disnix.nix
index 218802e0cf0..e5a125ad324 100644
--- a/nixos/modules/services/misc/disnix.nix
+++ b/nixos/modules/services/misc/disnix.nix
@@ -36,49 +36,32 @@ in
default = false;
description = "Whether to enable the DisnixWebService interface running on Apache Tomcat";
};
-
- publishInfrastructure = {
- enable = mkOption {
- default = false;
- description = "Whether to publish capabilities/properties of this machine in as attributes in the infrastructure option";
- };
-
- enableAuthentication = mkOption {
- default = false;
- description = "Whether to publish authentication credentials through the infrastructure attribute (not recommended in combination with Avahi)";
- };
- };
-
- infrastructure = mkOption {
- default = {};
- description = "List of name value pairs containing properties for the infrastructure model";
- };
-
- publishAvahi = mkOption {
- default = false;
- description = "Whether to publish capabilities/properties as a Disnix service through Avahi";
+
+ package = mkOption {
+ type = types.path;
+ description = "The Disnix package";
+ default = pkgs.disnix;
};
};
};
-
###### implementation
config = mkIf cfg.enable {
- environment.systemPackages = [ pkgs.disnix pkgs.dysnomia ] ++ optional cfg.useWebServiceInterface pkgs.DisnixWebService;
+ dysnomia.enable = true;
+
+ environment.systemPackages = [ pkgs.disnix ] ++ optional cfg.useWebServiceInterface pkgs.DisnixWebService;
services.dbus.enable = true;
services.dbus.packages = [ pkgs.disnix ];
- services.avahi.enable = cfg.publishAvahi;
-
services.tomcat.enable = cfg.useWebServiceInterface;
services.tomcat.extraGroups = [ "disnix" ];
services.tomcat.javaOpts = "${optionalString cfg.useWebServiceInterface "-Djava.library.path=${pkgs.libmatthew_java}/lib/jni"} ";
services.tomcat.sharedLibs = optional cfg.useWebServiceInterface "${pkgs.DisnixWebService}/share/java/DisnixConnection.jar"
- ++ optional cfg.useWebServiceInterface "${pkgs.dbus_java}/share/java/dbus.jar";
+ ++ optional cfg.useWebServiceInterface "${pkgs.dbus_java}/share/java/dbus.jar";
services.tomcat.webapps = optional cfg.useWebServiceInterface pkgs.DisnixWebService;
users.extraGroups = singleton
@@ -86,38 +69,6 @@ in
gid = config.ids.gids.disnix;
};
- services.disnix.infrastructure =
- optionalAttrs (cfg.publishInfrastructure.enable)
- ( { hostname = config.networking.hostName;
- #targetHost = config.deployment.targetHost;
- system = if config.nixpkgs.system == "" then builtins.currentSystem else config.nixpkgs.system;
-
- supportedTypes = (import "${pkgs.stdenv.mkDerivation {
- name = "supportedtypes";
- buildCommand = ''
- ( echo -n "[ "
- cd ${dysnomia}/libexec/dysnomia
- for i in *
- do
- echo -n "\"$i\" "
- done
- echo -n " ]") > $out
- '';
- }}");
- }
- #// optionalAttrs (cfg.useWebServiceInterface) { targetEPR = "http://${config.deployment.targetHost}:8080/DisnixWebService/services/DisnixWebService"; }
- // optionalAttrs (config.services.httpd.enable) { documentRoot = config.services.httpd.documentRoot; }
- // optionalAttrs (config.services.mysql.enable) { mysqlPort = config.services.mysql.port; }
- // optionalAttrs (config.services.tomcat.enable) { tomcatPort = 8080; }
- // optionalAttrs (config.services.svnserve.enable) { svnBaseDir = config.services.svnserve.svnBaseDir; }
- // optionalAttrs (config.services.ejabberd.enable) { ejabberdUser = config.services.ejabberd.user; }
- // optionalAttrs (cfg.publishInfrastructure.enableAuthentication) (
- optionalAttrs (config.services.mysql.enable) { mysqlUsername = "root"; mysqlPassword = readFile config.services.mysql.rootPassword; })
- )
- ;
-
- services.disnix.publishInfrastructure.enable = cfg.publishAvahi;
-
systemd.services = {
disnix = {
description = "Disnix server";
@@ -133,46 +84,17 @@ in
restartIfChanged = false;
- path = [ pkgs.nix pkgs.disnix dysnomia "/run/current-system/sw" ];
+ path = [ config.nix.package cfg.package config.dysnomia.package "/run/current-system/sw" ];
environment = {
HOME = "/root";
- };
-
- preStart = ''
- mkdir -p /etc/systemd-mutable/system
- if [ ! -f /etc/systemd-mutable/system/dysnomia.target ]
- then
- ( echo "[Unit]"
- echo "Description=Services that are activated and deactivated by Dysnomia"
- echo "After=final.target"
- ) > /etc/systemd-mutable/system/dysnomia.target
- fi
- '';
-
- script = "disnix-service";
+ }
+ // (if config.environment.variables ? DYSNOMIA_CONTAINERS_PATH then { inherit (config.environment.variables) DYSNOMIA_CONTAINERS_PATH; } else {})
+ // (if config.environment.variables ? DYSNOMIA_MODULES_PATH then { inherit (config.environment.variables) DYSNOMIA_MODULES_PATH; } else {});
+
+ serviceConfig.ExecStart = "${cfg.package}/bin/disnix-service";
};
- } // optionalAttrs cfg.publishAvahi {
- disnixAvahi = {
- description = "Disnix Avahi publisher";
- wants = [ "avahi-daemon.service" ];
- wantedBy = [ "multi-user.target" ];
- script = ''
- ${pkgs.avahi}/bin/avahi-publish-service disnix-${config.networking.hostName} _disnix._tcp 22 \
- "mem=$(grep 'MemTotal:' /proc/meminfo | sed -e 's/kB//' -e 's/MemTotal://' -e 's/ //g')" \
- ${concatMapStrings (infrastructureAttrName:
- let infrastructureAttrValue = getAttr infrastructureAttrName (cfg.infrastructure);
- in
- if isInt infrastructureAttrValue then
- ''${infrastructureAttrName}=${toString infrastructureAttrValue} \
- ''
- else
- ''${infrastructureAttrName}=\"${infrastructureAttrValue}\" \
- ''
- ) (attrNames (cfg.infrastructure))}
- '';
- };
};
};
}
diff --git a/nixos/modules/services/misc/dysnomia.nix b/nixos/modules/services/misc/dysnomia.nix
new file mode 100644
index 00000000000..df44d0a5486
--- /dev/null
+++ b/nixos/modules/services/misc/dysnomia.nix
@@ -0,0 +1,217 @@
+{pkgs, lib, config, ...}:
+
+with lib;
+
+let
+ cfg = config.dysnomia;
+
+ printProperties = properties:
+ concatMapStrings (propertyName:
+ let
+ property = properties."${propertyName}";
+ in
+ if isList property then "${propertyName}=(${lib.concatMapStrings (elem: "\"${toString elem}\" ") (properties."${propertyName}")})\n"
+ else "${propertyName}=\"${toString property}\"\n"
+ ) (builtins.attrNames properties);
+
+ properties = pkgs.stdenv.mkDerivation {
+ name = "dysnomia-properties";
+ buildCommand = ''
+ cat > $out << "EOF"
+ ${printProperties cfg.properties}
+ EOF
+ '';
+ };
+
+ containersDir = pkgs.stdenv.mkDerivation {
+ name = "dysnomia-containers";
+ buildCommand = ''
+ mkdir -p $out
+ cd $out
+
+ ${concatMapStrings (containerName:
+ let
+ containerProperties = cfg.containers."${containerName}";
+ in
+ ''
+ cat > ${containerName} < $out
+ '';
+ }}");
+ };
+
+ dysnomia.containers = lib.recursiveUpdate ({
+ process = {};
+ wrapper = {};
+ }
+ // lib.optionalAttrs (config.services.httpd.enable) { apache-webapplication = {
+ documentRoot = config.services.httpd.documentRoot;
+ }; }
+ // lib.optionalAttrs (config.services.tomcat.axis2.enable) { axis2-webservice = {}; }
+ // lib.optionalAttrs (config.services.ejabberd.enable) { ejabberd-dump = {
+ ejabberdUser = config.services.ejabberd.user;
+ }; }
+ // lib.optionalAttrs (config.services.mysql.enable) { mysql-database = {
+ mysqlPort = config.services.mysql.port;
+ } // lib.optionalAttrs cfg.enableAuthentication {
+ mysqlUsername = "root";
+ mysqlPassword = builtins.readFile (config.services.mysql.rootPassword);
+ };
+ }
+ // lib.optionalAttrs (config.services.postgresql.enable && cfg.enableAuthentication) { postgresql-database = {
+ postgresqlUsername = "root";
+ }; }
+ // lib.optionalAttrs (config.services.tomcat.enable) { tomcat-webapplication = {
+ tomcatPort = 8080;
+ }; }
+ // lib.optionalAttrs (config.services.mongodb.enable) { mongo-database = {}; }
+ // lib.optionalAttrs (config.services.svnserve.enable) { subversion-repository = {
+ svnBaseDir = config.services.svnserve.svnBaseDir;
+ }; }) cfg.extraContainerProperties;
+
+ system.activationScripts.dysnomia = ''
+ mkdir -p /etc/systemd-mutable/system
+ if [ ! -f /etc/systemd-mutable/system/dysnomia.target ]
+ then
+ ( echo "[Unit]"
+ echo "Description=Services that are activated and deactivated by Dysnomia"
+ echo "After=final.target"
+ ) > /etc/systemd-mutable/system/dysnomia.target
+ fi
+ '';
+ };
+}
diff --git a/nixos/modules/services/misc/etcd.nix b/nixos/modules/services/misc/etcd.nix
index bc8064e3c87..0d6ed8eb904 100644
--- a/nixos/modules/services/misc/etcd.nix
+++ b/nixos/modules/services/misc/etcd.nix
@@ -115,7 +115,7 @@ in {
serviceConfig = {
Type = "notify";
- ExecStart = "${pkgs.etcd}/bin/etcd";
+ ExecStart = "${pkgs.etcd.bin}/bin/etcd";
User = "etcd";
PermissionsStartOnly = true;
};
diff --git a/nixos/modules/services/misc/matrix-synapse.nix b/nixos/modules/services/misc/matrix-synapse.nix
index 0ae0516769c..1a95e2d9367 100644
--- a/nixos/modules/services/misc/matrix-synapse.nix
+++ b/nixos/modules/services/misc/matrix-synapse.nix
@@ -5,17 +5,31 @@ with lib;
let
cfg = config.services.matrix-synapse;
logConfigFile = pkgs.writeText "log_config.yaml" cfg.logConfig;
+ mkResource = r: ''{names: ${builtins.toJSON r.names}, compress: ${if r.compress then "true" else "false"}}'';
+ mkListener = l: ''{port: ${toString l.port}, bind_address: "${l.bind_address}", type: ${l.type}, tls: ${if l.tls then "true" else "false"}, x_forwarded: ${if l.x_forwarded then "true" else "false"}, resources: [${concatStringsSep "," (map mkResource l.resources)}]}'';
configFile = pkgs.writeText "homeserver.yaml" ''
tls_certificate_path: "${cfg.tls_certificate_path}"
+${optionalString (cfg.tls_private_key_path != null) ''
tls_private_key_path: "${cfg.tls_private_key_path}"
+''}
tls_dh_params_path: "${cfg.tls_dh_params_path}"
no_tls: ${if cfg.no_tls then "true" else "false"}
+${optionalString (cfg.bind_port != null) ''
bind_port: ${toString cfg.bind_port}
+''}
+${optionalString (cfg.unsecure_port != null) ''
unsecure_port: ${toString cfg.unsecure_port}
+''}
+${optionalString (cfg.bind_host != null) ''
bind_host: "${cfg.bind_host}"
+''}
server_name: "${cfg.server_name}"
pid_file: "/var/run/matrix-synapse.pid"
web_client: ${if cfg.web_client then "true" else "false"}
+${optionalString (cfg.public_baseurl != null) ''
+public_baseurl: "${cfg.public_baseurl}"
+''}
+listeners: [${concatStringsSep "," (map mkListener cfg.listeners)}]
database: {
name: "${cfg.database_type}",
args: {
@@ -24,21 +38,41 @@ database: {
)}
}
}
+event_cache_size: "${cfg.event_cache_size}"
+verbose: ${cfg.verbose}
log_file: "/var/log/matrix-synapse/homeserver.log"
log_config: "${logConfigFile}"
+rc_messages_per_second: ${cfg.rc_messages_per_second}
+rc_message_burst_count: ${cfg.rc_message_burst_count}
+federation_rc_window_size: ${cfg.federation_rc_window_size}
+federation_rc_sleep_limit: ${cfg.federation_rc_sleep_limit}
+federation_rc_sleep_delay: ${cfg.federation_rc_sleep_delay}
+federation_rc_reject_limit: ${cfg.federation_rc_reject_limit}
+federation_rc_concurrent: ${cfg.federation_rc_concurrent}
media_store_path: "/var/lib/matrix-synapse/media"
+uploads_path: "/var/lib/matrix-synapse/uploads"
+max_upload_size: "${cfg.max_upload_size}"
+max_image_pixels: "${cfg.max_image_pixels}"
+dynamic_thumbnails: ${if cfg.dynamic_thumbnails then "true" else "false"}
+url_preview_enabled: False
recaptcha_private_key: "${cfg.recaptcha_private_key}"
recaptcha_public_key: "${cfg.recaptcha_public_key}"
enable_registration_captcha: ${if cfg.enable_registration_captcha then "true" else "false"}
-turn_uris: ${if (length cfg.turn_uris) == 0 then "[]" else ("\n" + (concatStringsSep "\n" (map (s: "- " + s) cfg.turn_uris)))}
+turn_uris: ${builtins.toJSON cfg.turn_uris}
turn_shared_secret: "${cfg.turn_shared_secret}"
enable_registration: ${if cfg.enable_registration then "true" else "false"}
-${optionalString (cfg.registration_shared_secret != "") ''
+${optionalString (cfg.registration_shared_secret != null) ''
registration_shared_secret: "${cfg.registration_shared_secret}"
''}
+recaptcha_siteverify_api: "https://www.google.com/recaptcha/api/siteverify"
+turn_user_lifetime: "${cfg.turn_user_lifetime}"
+user_creation_max_duration: ${cfg.user_creation_max_duration}
+bcrypt_rounds: ${cfg.bcrypt_rounds}
+allow_guest_access: {if cfg.allow_guest_access then "true" else "false"}
enable_metrics: ${if cfg.enable_metrics then "true" else "false"}
report_stats: ${if cfg.report_stats then "true" else "false"}
signing_key_path: "/var/lib/matrix-synapse/homeserver.signing.key"
+key_refresh_interval: "${cfg.key_refresh_interval}"
perspectives:
servers: {
${concatStringsSep "},\n" (mapAttrsToList (n: v: ''
@@ -52,6 +86,8 @@ perspectives:
'') cfg.servers)}
}
}
+app_service_config_files: ${builtins.toJSON cfg.app_service_config_files}
+
${cfg.extraConfig}
'';
in {
@@ -73,53 +109,65 @@ in {
Don't bind to the https port
'';
};
- tls_certificate_path = mkOption {
- type = types.path;
- default = "/var/lib/matrix-synapse/homeserver.tls.crt";
- description = ''
- PEM encoded X509 certificate for TLS
- '';
- };
- tls_private_key_path = mkOption {
- type = types.path;
- default = "/var/lib/matrix-synapse/homeserver.tls.key";
- description = ''
- PEM encoded private key for TLS
- '';
- };
- tls_dh_params_path = mkOption {
- type = types.path;
- default = "/var/lib/matrix-synapse/homeserver.tls.dh";
- description = ''
- PEM dh parameters for ephemeral keys
- '';
- };
bind_port = mkOption {
- type = types.int;
- default = 8448;
+ type = types.nullOr types.int;
+ default = null;
+ example = 8448;
description = ''
+ DEPRECATED: Use listeners instead.
The port to listen for HTTPS requests on.
For when matrix traffic is sent directly to synapse.
'';
};
unsecure_port = mkOption {
- type = types.int;
- default = 8008;
+ type = types.nullOr types.int;
+ default = null;
+ example = 8008;
description = ''
+ DEPRECATED: Use listeners instead.
The port to listen for HTTP requests on.
For when matrix traffic passes through loadbalancer that unwraps TLS.
'';
};
bind_host = mkOption {
- type = types.str;
- default = "";
+ type = types.nullOr types.str;
+ default = null;
description = ''
+ DEPRECATED: Use listeners instead.
Local interface to listen on.
The empty string will cause synapse to listen on all interfaces.
'';
};
+ tls_certificate_path = mkOption {
+ type = types.str;
+ default = "/var/lib/matrix-synapse/homeserver.tls.crt";
+ description = ''
+ PEM encoded X509 certificate for TLS.
+ You can replace the self-signed certificate that synapse
+ autogenerates on launch with your own SSL certificate + key pair
+ if you like. Any required intermediary certificates can be
+ appended after the primary certificate in hierarchical order.
+ '';
+ };
+ tls_private_key_path = mkOption {
+ type = types.nullOr types.str;
+ default = "/var/lib/matrix-synapse/homeserver.tls.key";
+ example = null;
+ description = ''
+ PEM encoded private key for TLS. Specify null if synapse is not
+ speaking TLS directly.
+ '';
+ };
+ tls_dh_params_path = mkOption {
+ type = types.str;
+ default = "/var/lib/matrix-synapse/homeserver.tls.dh";
+ description = ''
+ PEM dh parameters for ephemeral keys
+ '';
+ };
server_name = mkOption {
type = types.str;
+ example = "example.com";
description = ''
The domain name of the server, with optional explicit port.
This is used by remote servers to connect to this server,
@@ -134,6 +182,145 @@ in {
Whether to serve a web client from the HTTP/HTTPS root resource.
'';
};
+ public_baseurl = mkOption {
+ type = types.nullOr types.str;
+ default = null;
+ example = "https://example.com:8448/";
+ description = ''
+ The public-facing base URL for the client API (not including _matrix/...)
+ '';
+ };
+ listeners = mkOption {
+ type = types.listOf (types.submodule {
+ options = {
+ port = mkOption {
+ type = types.int;
+ example = 8448;
+ description = ''
+ The port to listen for HTTP(S) requests on.
+ '';
+ };
+ bind_address = mkOption {
+ type = types.str;
+ default = "";
+ example = "203.0.113.42";
+ description = ''
+ Local interface to listen on.
+ The empty string will cause synapse to listen on all interfaces.
+ '';
+ };
+ type = mkOption {
+ type = types.str;
+ default = "http";
+ description = ''
+ Type of listener.
+ '';
+ };
+ tls = mkOption {
+ type = types.bool;
+ default = true;
+ description = ''
+ Whether to listen for HTTPS connections rather than HTTP.
+ '';
+ };
+ x_forwarded = mkOption {
+ type = types.bool;
+ default = false;
+ description = ''
+ Use the X-Forwarded-For (XFF) header as the client IP and not the
+ actual client IP.
+ '';
+ };
+ resources = mkOption {
+ type = types.listOf (types.submodule {
+ options = {
+ names = mkOption {
+ type = types.listOf types.str;
+ description = ''
+ List of resources to host on this listener.
+ '';
+ example = ["client" "webclient" "federation"];
+ };
+ compress = mkOption {
+ type = types.bool;
+ description = ''
+ Should synapse compress HTTP responses to clients that support it?
+ This should be disabled if running synapse behind a load balancer
+ that can do automatic compression.
+ '';
+ };
+ };
+ });
+ description = ''
+ List of HTTP resources to serve on this listener.
+ '';
+ };
+ };
+ });
+ default = [{
+ port = 8448;
+ bind_address = "";
+ type = "http";
+ tls = true;
+ x_forwarded = false;
+ resources = [
+ { names = ["client" "webclient"]; compress = true; }
+ { names = ["federation"]; compress = false; }
+ ];
+ }];
+ description = ''
+ List of ports that Synapse should listen on, their purpose and their configuration.
+ '';
+ };
+ verbose = mkOption {
+ type = types.str;
+ default = "0";
+ description = "Logging verbosity level.";
+ };
+ rc_messages_per_second = mkOption {
+ type = types.str;
+ default = "0.2";
+ description = "Number of messages a client can send per second";
+ };
+ rc_message_burst_count = mkOption {
+ type = types.str;
+ default = "10.0";
+ description = "Number of message a client can send before being throttled";
+ };
+ federation_rc_window_size = mkOption {
+ type = types.str;
+ default = "1000";
+ description = "The federation window size in milliseconds";
+ };
+ federation_rc_sleep_limit = mkOption {
+ type = types.str;
+ default = "10";
+ description = ''
+ The number of federation requests from a single server in a window
+ before the server will delay processing the request.
+ '';
+ };
+ federation_rc_sleep_delay = mkOption {
+ type = types.str;
+ default = "500";
+ description = ''
+ The duration in milliseconds to delay processing events from
+ remote servers by if they go over the sleep limit.
+ '';
+ };
+ federation_rc_reject_limit = mkOption {
+ type = types.str;
+ default = "50";
+ description = ''
+ The maximum number of concurrent federation requests allowed
+ from a single server
+ '';
+ };
+ federation_rc_concurrent = mkOption {
+ type = types.str;
+ default = "3";
+ description = "The number of federation requests to concurrently process from a single server";
+ };
database_type = mkOption {
type = types.enum [ "sqlite3" "psycopg2" ];
default = "sqlite3";
@@ -150,6 +337,11 @@ in {
Arguments to pass to the engine.
'';
};
+ event_cache_size = mkOption {
+ type = types.str;
+ default = "10K";
+ description = "Number of events to cache in memory.";
+ };
recaptcha_private_key = mkOption {
type = types.str;
default = "";
@@ -187,6 +379,11 @@ in {
The shared secret used to compute passwords for the TURN server
'';
};
+ turn_user_lifetime = mkOption {
+ type = types.str;
+ default = "1h";
+ description = "How long generated TURN credentials last";
+ };
enable_registration = mkOption {
type = types.bool;
default = false;
@@ -195,8 +392,8 @@ in {
'';
};
registration_shared_secret = mkOption {
- type = types.str;
- default = "";
+ type = types.nullOr types.str;
+ default = null;
description = ''
If set, allows registration by anyone who also has the shared
secret, even if registration is otherwise disabled.
@@ -216,7 +413,7 @@ in {
'';
};
servers = mkOption {
- type = types.attrs;
+ type = types.attrsOf (types.attrsOf types.str);
default = {
"matrix.org" = {
"ed25519:auto" = "Noi6WqcDj0QmPxCNQqgezwTlBKrfqehY1u2FyWP9uYw";
@@ -226,6 +423,69 @@ in {
The trusted servers to download signing keys from.
'';
};
+ max_upload_size = mkOption {
+ type = types.str;
+ default = "10M";
+ description = "The largest allowed upload size in bytes";
+ };
+ max_image_pixels = mkOption {
+ type = types.str;
+ default = "32M";
+ description = "Maximum number of pixels that will be thumbnailed";
+ };
+ dynamic_thumbnails = mkOption {
+ type = types.bool;
+ default = false;
+ description = ''
+ Whether to generate new thumbnails on the fly to precisely match
+ the resolution requested by the client. If true then whenever
+ a new resolution is requested by the client the server will
+ generate a new thumbnail. If false the server will pick a thumbnail
+ from a precalculated list.
+ '';
+ };
+ user_creation_max_duration = mkOption {
+ type = types.str;
+ default = "1209600000";
+ description = ''
+ Sets the expiry for the short term user creation in
+ milliseconds. The default value is two weeks.
+ '';
+ };
+ bcrypt_rounds = mkOption {
+ type = types.str;
+ default = "12";
+ description = ''
+ Set the number of bcrypt rounds used to generate password hash.
+ Larger numbers increase the work factor needed to generate the hash.
+ '';
+ };
+ allow_guest_access = mkOption {
+ type = types.bool;
+ default = false;
+ description = ''
+ Allows users to register as guests without a password/email/etc, and
+ participate in rooms hosted on this server which have been made
+ accessible to anonymous users.
+ '';
+ };
+ key_refresh_interval = mkOption {
+ type = types.str;
+ default = "1d";
+ description = ''
+ How long key response published by this server is valid for.
+ Used to set the valid_until_ts in /key/v2 APIs.
+ Determines how quickly servers will query to check which keys
+ are still valid.
+ '';
+ };
+ app_service_config_files = mkOption {
+ type = types.listOf types.path;
+ default = [ ];
+ description = ''
+ A list of application service config file to use
+ '';
+ };
extraConfig = mkOption {
type = types.lines;
default = "";
@@ -265,7 +525,7 @@ in {
mkdir -p /var/lib/matrix-synapse
chmod 700 /var/lib/matrix-synapse
chown -R matrix-synapse:matrix-synapse /var/lib/matrix-synapse
- ${cfg.package}/bin/homeserver --config-path ${configFile} --generate-keys
+ ${cfg.package}/bin/homeserver --config-path ${configFile} --keys-directory /var/lib/matrix-synapse/ --generate-keys
'';
serviceConfig = {
Type = "simple";
diff --git a/nixos/modules/services/misc/parsoid.nix b/nixos/modules/services/misc/parsoid.nix
index ea97d6e30e8..0844190a549 100644
--- a/nixos/modules/services/misc/parsoid.nix
+++ b/nixos/modules/services/misc/parsoid.nix
@@ -91,7 +91,7 @@ in
wantedBy = [ "multi-user.target" ];
after = [ "network.target" ];
serviceConfig = {
- ExecStart = "${pkgs.nodePackages_0_10.parsoid}/lib/node_modules/parsoid/api/server.js -c ${confFile} -n ${toString cfg.workers}";
+ ExecStart = "${pkgs.nodePackages.parsoid}/lib/node_modules/parsoid/api/server.js -c ${confFile} -n ${toString cfg.workers}";
};
};
diff --git a/nixos/modules/services/misc/taskserver/default.nix b/nixos/modules/services/misc/taskserver/default.nix
index b7d14e90a2b..c846ffd0455 100644
--- a/nixos/modules/services/misc/taskserver/default.nix
+++ b/nixos/modules/services/misc/taskserver/default.nix
@@ -152,8 +152,6 @@ let
};
};
- mkShellStr = val: "'${replaceStrings ["'"] ["'\\''"] val}'";
-
certtool = "${pkgs.gnutls.bin}/bin/certtool";
nixos-taskserver = pkgs.buildPythonPackage {
diff --git a/nixos/modules/services/monitoring/bosun.nix b/nixos/modules/services/monitoring/bosun.nix
index 51d38e8db4d..9a1e790d3ab 100644
--- a/nixos/modules/services/monitoring/bosun.nix
+++ b/nixos/modules/services/monitoring/bosun.nix
@@ -148,7 +148,7 @@ in {
User = cfg.user;
Group = cfg.group;
ExecStart = ''
- ${cfg.package}/bin/bosun -c ${configFile}
+ ${cfg.package.bin}/bin/bosun -c ${configFile}
'';
};
};
diff --git a/nixos/modules/services/monitoring/grafana.nix b/nixos/modules/services/monitoring/grafana.nix
index defbd9289dc..0b7f3ce0a29 100644
--- a/nixos/modules/services/monitoring/grafana.nix
+++ b/nixos/modules/services/monitoring/grafana.nix
@@ -228,7 +228,7 @@ in {
after = ["networking.target"];
environment = mapAttrs' (n: v: nameValuePair "GF_${n}" (toString v)) envOptions;
serviceConfig = {
- ExecStart = "${cfg.package}/bin/grafana-server -homepath ${cfg.dataDir}";
+ ExecStart = "${cfg.package.bin}/bin/grafana-server -homepath ${cfg.dataDir}";
WorkingDirectory = cfg.dataDir;
User = "grafana";
};
diff --git a/nixos/modules/services/monitoring/scollector.nix b/nixos/modules/services/monitoring/scollector.nix
index 1e397435e60..2684482c618 100644
--- a/nixos/modules/services/monitoring/scollector.nix
+++ b/nixos/modules/services/monitoring/scollector.nix
@@ -119,7 +119,7 @@ in {
PermissionsStartOnly = true;
User = cfg.user;
Group = cfg.group;
- ExecStart = "${cfg.package}/bin/scollector -conf=${conf} ${lib.concatStringsSep " " cfg.extraOpts}";
+ ExecStart = "${cfg.package.bin}/bin/scollector -conf=${conf} ${lib.concatStringsSep " " cfg.extraOpts}";
};
};
diff --git a/nixos/modules/services/networking/avahi-daemon.nix b/nixos/modules/services/networking/avahi-daemon.nix
index 8b178ee9398..7650f45c557 100644
--- a/nixos/modules/services/networking/avahi-daemon.nix
+++ b/nixos/modules/services/networking/avahi-daemon.nix
@@ -24,6 +24,7 @@ let
use-ipv4=${if ipv4 then "yes" else "no"}
use-ipv6=${if ipv6 then "yes" else "no"}
${optionalString (interfaces!=null) "allow-interfaces=${concatStringsSep "," interfaces}"}
+ ${optionalString (domainName!=null) "domain-name=${domainName}"}
[wide-area]
enable-wide-area=${if wideArea then "yes" else "no"}
@@ -65,6 +66,14 @@ in
'';
};
+ domainName = mkOption {
+ type = types.str;
+ default = "local";
+ description = ''
+ Domain name for all advertisements.
+ '';
+ };
+
browseDomains = mkOption {
default = [ "0pointer.de" "zeroconf.org" ];
description = ''
diff --git a/nixos/modules/services/networking/consul.nix b/nixos/modules/services/networking/consul.nix
index 2aa101f980d..166ee773237 100644
--- a/nixos/modules/services/networking/consul.nix
+++ b/nixos/modules/services/networking/consul.nix
@@ -178,14 +178,14 @@ in
(filterAttrs (n: _: hasPrefix "consul.d/" n) config.environment.etc);
serviceConfig = {
- ExecStart = "@${cfg.package}/bin/consul consul agent -config-dir /etc/consul.d"
+ ExecStart = "@${cfg.package.bin}/bin/consul consul agent -config-dir /etc/consul.d"
+ concatMapStrings (n: " -config-file ${n}") configFiles;
- ExecReload = "${cfg.package}/bin/consul reload";
+ ExecReload = "${cfg.package.bin}/bin/consul reload";
PermissionsStartOnly = true;
User = if cfg.dropPrivileges then "consul" else null;
TimeoutStartSec = "0";
} // (optionalAttrs (cfg.leaveOnStop) {
- ExecStop = "${cfg.package}/bin/consul leave";
+ ExecStop = "${cfg.package.bin}/bin/consul leave";
});
path = with pkgs; [ iproute gnugrep gawk consul ];
@@ -236,7 +236,7 @@ in
serviceConfig = {
ExecStart = ''
- ${cfg.alerts.package}/bin/consul-alerts start \
+ ${cfg.alerts.package.bin}/bin/consul-alerts start \
--alert-addr=${cfg.alerts.listenAddr} \
--consul-addr=${cfg.alerts.consulAddr} \
${optionalString cfg.alerts.watchChecks "--watch-checks"} \
diff --git a/nixos/modules/services/networking/coturn.nix b/nixos/modules/services/networking/coturn.nix
new file mode 100644
index 00000000000..14e6932d868
--- /dev/null
+++ b/nixos/modules/services/networking/coturn.nix
@@ -0,0 +1,327 @@
+{ config, lib, pkgs, ... }:
+with lib;
+let
+ cfg = config.services.coturn;
+ pidfile = "/run/turnserver/turnserver.pid";
+ configFile = pkgs.writeText "turnserver.conf" ''
+listening-port=${toString cfg.listening-port}
+tls-listening-port=${toString cfg.tls-listening-port}
+alt-listening-port=${toString cfg.alt-listening-port}
+alt-tls-listening-port=${toString cfg.alt-tls-listening-port}
+${concatStringsSep "\n" (map (x: "listening-ip=${x}") cfg.listening-ips)}
+${concatStringsSep "\n" (map (x: "relay-ip=${x}") cfg.relay-ips)}
+min-port=${toString cfg.min-port}
+max-port=${toString cfg.max-port}
+${lib.optionalString cfg.lt-cred-mech "lt-cred-mech"}
+${lib.optionalString cfg.no-auth "no-auth"}
+${lib.optionalString cfg.use-auth-secret "use-auth-secret"}
+${lib.optionalString (cfg.static-auth-secret != null) ("static-auth-secret=${cfg.static-auth-secret}")}
+realm=${cfg.realm}
+${lib.optionalString cfg.no-udp "no-udp"}
+${lib.optionalString cfg.no-tcp "no-tcp"}
+${lib.optionalString cfg.no-tls "no-tls"}
+${lib.optionalString cfg.no-dtls "no-dtls"}
+${lib.optionalString cfg.no-udp-relay "no-udp-relay"}
+${lib.optionalString cfg.no-tcp-relay "no-tcp-relay"}
+${lib.optionalString (cfg.cert != null) "cert=${cfg.cert}"}
+${lib.optionalString (cfg.pkey != null) "pkey=${cfg.pkey}"}
+${lib.optionalString (cfg.dh-file != null) ("dh-file=${cfg.dh-file}")}
+no-stdout-log
+syslog
+pidfile=${pidfile}
+${lib.optionalString cfg.secure-stun "secure-stun"}
+${lib.optionalString cfg.no-cli "no-cli"}
+cli-ip=${cfg.cli-ip}
+cli-port=${toString cfg.cli-port}
+${lib.optionalString (cfg.cli-password != null) ("cli-password=${cfg.cli-password}")}
+${cfg.extraConfig}
+'';
+in {
+ options = {
+ services.coturn = {
+ enable = mkEnableOption "coturn TURN server";
+ listening-port = mkOption {
+ type = types.int;
+ default = 3478;
+ description = ''
+ TURN listener port for UDP and TCP.
+ Note: actually, TLS and DTLS sessions can connect to the
+ "plain" TCP and UDP port(s), too - if allowed by configuration.
+ '';
+ };
+ tls-listening-port = mkOption {
+ type = types.int;
+ default = 5349;
+ description = ''
+ TURN listener port for TLS.
+ Note: actually, "plain" TCP and UDP sessions can connect to the TLS and
+ DTLS port(s), too - if allowed by configuration. The TURN server
+ "automatically" recognizes the type of traffic. Actually, two listening
+ endpoints (the "plain" one and the "tls" one) are equivalent in terms of
+ functionality; but we keep both endpoints to satisfy the RFC 5766 specs.
+ For secure TCP connections, we currently support SSL version 3 and
+ TLS version 1.0, 1.1 and 1.2.
+ For secure UDP connections, we support DTLS version 1.
+ '';
+ };
+ alt-listening-port = mkOption {
+ type = types.int;
+ default = cfg.listening-port + 1;
+ defaultText = "listening-port + 1";
+ description = ''
+ Alternative listening port for UDP and TCP listeners;
+ default (or zero) value means "listening port plus one".
+ This is needed for RFC 5780 support
+ (STUN extension specs, NAT behavior discovery). The TURN Server
+ supports RFC 5780 only if it is started with more than one
+ listening IP address of the same family (IPv4 or IPv6).
+ RFC 5780 is supported only by UDP protocol, other protocols
+ are listening to that endpoint only for "symmetry".
+ '';
+ };
+ alt-tls-listening-port = mkOption {
+ type = types.int;
+ default = cfg.tls-listening-port + 1;
+ defaultText = "tls-listening-port + 1";
+ description = ''
+ Alternative listening port for TLS and DTLS protocols.
+ '';
+ };
+ listening-ips = mkOption {
+ type = types.listOf types.str;
+ default = [];
+ example = [ "203.0.113.42" "2001:DB8::42" ];
+ description = ''
+ Listener IP addresses of relay server.
+ If no IP(s) specified in the config file or in the command line options,
+ then all IPv4 and IPv6 system IPs will be used for listening.
+ '';
+ };
+ relay-ips = mkOption {
+ type = types.listOf types.str;
+ default = [];
+ example = [ "203.0.113.42" "2001:DB8::42" ];
+ description = ''
+ Relay address (the local IP address that will be used to relay the
+ packets to the peer).
+ Multiple relay addresses may be used.
+ The same IP(s) can be used as both listening IP(s) and relay IP(s).
+
+ If no relay IP(s) specified, then the turnserver will apply the default
+ policy: it will decide itself which relay addresses to be used, and it
+ will always be using the client socket IP address as the relay IP address
+ of the TURN session (if the requested relay address family is the same
+ as the family of the client socket).
+ '';
+ };
+ min-port = mkOption {
+ type = types.int;
+ default = 49152;
+ description = ''
+ Lower bound of UDP relay endpoints
+ '';
+ };
+ max-port = mkOption {
+ type = types.int;
+ default = 65535;
+ description = ''
+ Upper bound of UDP relay endpoints
+ '';
+ };
+ lt-cred-mech = mkOption {
+ type = types.bool;
+ default = false;
+ description = ''
+ Use long-term credential mechanism.
+ '';
+ };
+ no-auth = mkOption {
+ type = types.bool;
+ default = false;
+ description = ''
+ This option is opposite to lt-cred-mech.
+ (TURN Server with no-auth option allows anonymous access).
+ If neither option is defined, and no users are defined,
+ then no-auth is default. If at least one user is defined,
+ in this file or in command line or in usersdb file, then
+ lt-cred-mech is default.
+ '';
+ };
+ use-auth-secret = mkOption {
+ type = types.bool;
+ default = false;
+ description = ''
+ TURN REST API flag.
+ Flag that sets a special authorization option that is based upon authentication secret.
+ This feature can be used with the long-term authentication mechanism, only.
+ This feature purpose is to support "TURN Server REST API", see
+ "TURN REST API" link in the project's page
+ https://github.com/coturn/coturn/
+
+ This option is used with timestamp:
+
+ usercombo -> "timestamp:userid"
+ turn user -> usercombo
+ turn password -> base64(hmac(secret key, usercombo))
+
+ This allows TURN credentials to be accounted for a specific user id.
+ If you don't have a suitable id, the timestamp alone can be used.
+ This option is just turning on secret-based authentication.
+ The actual value of the secret is defined either by option static-auth-secret,
+ or can be found in the turn_secret table in the database.
+ '';
+ };
+ static-auth-secret = mkOption {
+ type = types.nullOr types.str;
+ default = null;
+ description = ''
+ 'Static' authentication secret value (a string) for TURN REST API only.
+ If not set, then the turn server
+ will try to use the 'dynamic' value in turn_secret table
+ in user database (if present). The database-stored value can be changed on-the-fly
+ by a separate program, so this is why that other mode is 'dynamic'.
+ '';
+ };
+ realm = mkOption {
+ type = types.str;
+ default = config.networking.hostName;
+ example = "example.com";
+ description = ''
+ The default realm to be used for the users when no explicit
+ origin/realm relationship was found in the database, or if the TURN
+ server is not using any database (just the commands-line settings
+ and the userdb file). Must be used with long-term credentials
+ mechanism or with TURN REST API.
+ '';
+ };
+ cert = mkOption {
+ type = types.nullOr types.str;
+ default = null;
+ example = "/var/lib/acme/example.com/fullchain.pem";
+ description = ''
+ Certificate file in PEM format.
+ '';
+ };
+ pkey = mkOption {
+ type = types.nullOr types.str;
+ default = null;
+ example = "/var/lib/acme/example.com/key.pem";
+ description = ''
+ Private key file in PEM format.
+ '';
+ };
+ dh-file = mkOption {
+ type = types.nullOr types.str;
+ default = null;
+ description = ''
+ Use custom DH TLS key, stored in PEM format in the file.
+ '';
+ };
+ secure-stun = mkOption {
+ type = types.bool;
+ default = false;
+ description = ''
+ Require authentication of the STUN Binding request.
+ By default, the clients are allowed anonymous access to the STUN Binding functionality.
+ '';
+ };
+ no-cli = mkOption {
+ type = types.bool;
+ default = false;
+ description = ''
+ Turn OFF the CLI support.
+ '';
+ };
+ cli-ip = mkOption {
+ type = types.str;
+ default = "127.0.0.1";
+ description = ''
+ Local system IP address to be used for CLI server endpoint.
+ '';
+ };
+ cli-port = mkOption {
+ type = types.int;
+ default = 5766;
+ description = ''
+ CLI server port.
+ '';
+ };
+ cli-password = mkOption {
+ type = types.nullOr types.str;
+ default = null;
+ description = ''
+ CLI access password.
+ For the security reasons, it is recommended to use the encrypted
+ for of the password (see the -P command in the turnadmin utility).
+ '';
+ };
+ no-udp = mkOption {
+ type = types.bool;
+ default = false;
+ description = "Disable UDP client listener";
+ };
+ no-tcp = mkOption {
+ type = types.bool;
+ default = false;
+ description = "Disable TCP client listener";
+ };
+ no-tls = mkOption {
+ type = types.bool;
+ default = false;
+ description = "Disable TLS client listener";
+ };
+ no-dtls = mkOption {
+ type = types.bool;
+ default = false;
+ description = "Disable DTLS client listener";
+ };
+ no-udp-relay = mkOption {
+ type = types.bool;
+ default = false;
+ description = "Disable UDP relay endpoints";
+ };
+ no-tcp-relay = mkOption {
+ type = types.bool;
+ default = false;
+ description = "Disable TCP relay endpoints";
+ };
+ extraConfig = mkOption {
+ type = types.lines;
+ default = "";
+ description = "Additional configuration options";
+ };
+ };
+ };
+
+ config = mkIf cfg.enable {
+ users.extraUsers = [
+ { name = "turnserver";
+ uid = config.ids.uids.turnserver;
+ description = "coturn TURN server user";
+ } ];
+ users.extraGroups = [
+ { name = "turnserver";
+ gid = config.ids.gids.turnserver;
+ members = [ "turnserver" ];
+ } ];
+
+ systemd.services.coturn = {
+ description = "coturn TURN server";
+ after = [ "network.target" ];
+ wantedBy = [ "multi-user.target" ];
+
+ unitConfig = {
+ Documentation = "man:coturn(1) man:turnadmin(1) man:turnserver(1)";
+ };
+
+ serviceConfig = {
+ Type = "simple";
+ ExecStart = "${pkgs.coturn}/bin/turnserver -c ${configFile}";
+ RuntimeDirectory = "turnserver";
+ User = "turnserver";
+ Group = "turnserver";
+ Restart = "on-abort";
+ };
+ };
+ };
+}
diff --git a/nixos/modules/services/networking/ddclient.nix b/nixos/modules/services/networking/ddclient.nix
index c5dd1e71c18..633ceaebfa4 100644
--- a/nixos/modules/services/networking/ddclient.nix
+++ b/nixos/modules/services/networking/ddclient.nix
@@ -7,22 +7,8 @@ let
stateDir = "/var/spool/ddclient";
ddclientUser = "ddclient";
- ddclientFlags = "-foreground -verbose -noquiet -file ${ddclientCfg}";
+ ddclientFlags = "-foreground -verbose -noquiet -file /etc/ddclient.conf";
ddclientPIDFile = "${stateDir}/ddclient.pid";
- ddclientCfg = pkgs.writeText "ddclient.conf" ''
- daemon=600
- cache=${stateDir}/ddclient.cache
- pid=${ddclientPIDFile}
- use=${config.services.ddclient.use}
- login=${config.services.ddclient.username}
- password=${config.services.ddclient.password}
- protocol=${config.services.ddclient.protocol}
- server=${config.services.ddclient.server}
- ssl=${if config.services.ddclient.ssl then "yes" else "no"}
- wildcard=YES
- ${config.services.ddclient.domain}
- ${config.services.ddclient.extraConfig}
- '';
in
@@ -122,10 +108,30 @@ in
home = stateDir;
};
+ environment.etc."ddclient.conf" = {
+ uid = config.ids.uids.ddclient;
+ mode = "0600";
+ text = ''
+ daemon=600
+ cache=${stateDir}/ddclient.cache
+ pid=${ddclientPIDFile}
+ use=${config.services.ddclient.use}
+ login=${config.services.ddclient.username}
+ password=${config.services.ddclient.password}
+ protocol=${config.services.ddclient.protocol}
+ server=${config.services.ddclient.server}
+ ssl=${if config.services.ddclient.ssl then "yes" else "no"}
+ wildcard=YES
+ ${config.services.ddclient.domain}
+ ${config.services.ddclient.extraConfig}
+ '';
+ };
+
systemd.services.ddclient = {
description = "Dynamic DNS Client";
wantedBy = [ "multi-user.target" ];
after = [ "network.target" ];
+ restartTriggers = [ config.environment.etc."ddclient.conf".source ];
serviceConfig = {
# Uncomment this if too many problems occur:
diff --git a/nixos/modules/services/networking/ejabberd.nix b/nixos/modules/services/networking/ejabberd.nix
index 9868f303ab2..8ecc16257db 100644
--- a/nixos/modules/services/networking/ejabberd.nix
+++ b/nixos/modules/services/networking/ejabberd.nix
@@ -13,7 +13,7 @@ let
ectl = ''${cfg.package}/bin/ejabberdctl ${if cfg.configFile == null then "" else "--config ${cfg.configFile}"} --ctl-config "${ctlcfg}" --spool "${cfg.spoolDir}" --logs "${cfg.logsDir}"'';
- dumps = lib.concatMapStringsSep " " lib.escapeShellArg cfg.loadDumps;
+ dumps = lib.escapeShellArgs cfg.loadDumps;
in {
diff --git a/nixos/modules/services/networking/networkmanager.nix b/nixos/modules/services/networking/networkmanager.nix
index 9912ad9ae3f..8aac1360526 100644
--- a/nixos/modules/services/networking/networkmanager.nix
+++ b/nixos/modules/services/networking/networkmanager.nix
@@ -231,11 +231,6 @@ in {
users.extraUsers = [{
name = "nm-openvpn";
uid = config.ids.uids.nm-openvpn;
- }
- {
- # to enable link-local connections
- name = "avahi-autoipd";
- uid = config.ids.uids.avahi-autoipd;
}];
systemd.packages = cfg.packages;
diff --git a/nixos/modules/services/networking/offlineimap.nix b/nixos/modules/services/networking/offlineimap.nix
new file mode 100644
index 00000000000..31ce9280f31
--- /dev/null
+++ b/nixos/modules/services/networking/offlineimap.nix
@@ -0,0 +1,73 @@
+{ config, lib, pkgs, ... }:
+
+with lib;
+
+let
+ cfg = config.services.offlineimap;
+in {
+
+ options.services.offlineimap = {
+ enable = mkEnableOption "Offlineimap, a software to dispose your mailbox(es) as a local Maildir(s).";
+
+ install = mkOption {
+ type = types.bool;
+ default = false;
+ example = true;
+ description = ''
+ Whether to install a user service for Offlineimap. Once
+ the service is started, emails will be fetched automatically.
+
+ The service must be manually started for each user with
+ "systemctl --user start offlineimap" or globally through
+ services.offlineimap.enable .
+ '';
+ };
+
+ package = mkOption {
+ type = types.package;
+ default = pkgs.offlineimap;
+ defaultText = "pkgs.offlineimap";
+ description = "Offlineimap derivation to use.";
+ };
+
+ path = mkOption {
+ type = types.listOf types.path;
+ default = [];
+ example = literalExample "[ pkgs.pass pkgs.bash pkgs.notmuch ]";
+ description = "List of derivations to put in Offlineimap's path.";
+ };
+
+ onCalendar = mkOption {
+ type = types.str;
+ default = "*:0/3"; # every 3 minutes
+ description = "How often is offlineimap started. Default is '*:0/3' meaning every 3 minutes. See systemd.time(7) for more information about the format.";
+ };
+
+ timeoutStartSec = mkOption {
+ type = types.str;
+ default = "120sec"; # Kill if still alive after 2 minutes
+ description = "How long waiting for offlineimap before killing it. Default is '120sec' meaning every 2 minutes. See systemd.time(7) for more information about the format.";
+ };
+ };
+ config = mkIf (cfg.enable || cfg.install) {
+ systemd.user.services.offlineimap = {
+ description = "Offlineimap: a software to dispose your mailbox(es) as a local Maildir(s)";
+ serviceConfig = {
+ Type = "oneshot";
+ ExecStart = "${cfg.package}/bin/offlineimap -u basic -o -1";
+ TimeoutStartSec = cfg.timeoutStartSec;
+ };
+ path = cfg.path;
+ };
+ environment.systemPackages = [ "${cfg.package}" ];
+ systemd.user.timers.offlineimap = {
+ description = "offlineimap timer";
+ timerConfig = {
+ Unit = "offlineimap.service";
+ OnCalendar = cfg.onCalendar;
+ # start immediately after computer is started:
+ Persistent = "true";
+ };
+ } // optionalAttrs cfg.enable { wantedBy = [ "default.target" ]; };
+ };
+}
diff --git a/nixos/modules/services/networking/pptpd.nix b/nixos/modules/services/networking/pptpd.nix
new file mode 100644
index 00000000000..513e6174752
--- /dev/null
+++ b/nixos/modules/services/networking/pptpd.nix
@@ -0,0 +1,124 @@
+{ config, stdenv, pkgs, lib, ... }:
+
+with lib;
+
+{
+ options = {
+ services.pptpd = {
+ enable = mkEnableOption "Whether pptpd should be run on startup.";
+
+ serverIp = mkOption {
+ type = types.string;
+ description = "The server-side IP address.";
+ default = "10.124.124.1";
+ };
+
+ clientIpRange = mkOption {
+ type = types.string;
+ description = "The range from which client IPs are drawn.";
+ default = "10.124.124.2-11";
+ };
+
+ maxClients = mkOption {
+ type = types.int;
+ description = "The maximum number of simultaneous connections.";
+ default = 10;
+ };
+
+ extraPptpdOptions = mkOption {
+ type = types.lines;
+ description = "Adds extra lines to the pptpd configuration file.";
+ default = "";
+ };
+
+ extraPppdOptions = mkOption {
+ type = types.lines;
+ description = "Adds extra lines to the pppd options file.";
+ default = "";
+ example = ''
+ ms-dns 8.8.8.8
+ ms-dns 8.8.4.4
+ '';
+ };
+ };
+ };
+
+ config = mkIf config.services.pptpd.enable {
+ systemd.services.pptpd = let
+ cfg = config.services.pptpd;
+
+ pptpd-conf = pkgs.writeText "pptpd.conf" ''
+ # Inspired from pptpd-1.4.0/samples/pptpd.conf
+ ppp ${ppp-pptpd-wrapped}/bin/pppd
+ option ${pppd-options}
+ pidfile /run/pptpd.pid
+ localip ${cfg.serverIp}
+ remoteip ${cfg.clientIpRange}
+ connections ${toString cfg.maxClients} # (Will get harmless warning if inconsistent with IP range)
+
+ # Extra
+ ${cfg.extraPptpdOptions}
+ '';
+
+ pppd-options = pkgs.writeText "ppp-options-pptpd.conf" ''
+ # From: cat pptpd-1.4.0/samples/options.pptpd | grep -v ^# | grep -v ^$
+ name pptpd
+ refuse-pap
+ refuse-chap
+ refuse-mschap
+ require-mschap-v2
+ require-mppe-128
+ proxyarp
+ lock
+ nobsdcomp
+ novj
+ novjccomp
+ nologfd
+
+ # Extra:
+ ${cfg.extraPppdOptions}
+ '';
+
+ ppp-pptpd-wrapped = pkgs.stdenv.mkDerivation {
+ name = "ppp-pptpd-wrapped";
+ phases = [ "installPhase" ];
+ buildInputs = with pkgs; [ makeWrapper ];
+ installPhase = ''
+ mkdir -p $out/bin
+ makeWrapper ${pkgs.ppp}/bin/pppd $out/bin/pppd \
+ --set LD_PRELOAD "${pkgs.libredirect}/lib/libredirect.so" \
+ --set NIX_REDIRECTS "/etc/ppp=/etc/ppp-pptpd"
+ '';
+ };
+ in {
+ description = "pptpd server";
+
+ requires = [ "network-online.target" ];
+ wantedBy = [ "multi-user.target" ];
+
+ preStart = ''
+ mkdir -p -m 700 /etc/ppp-pptpd
+
+ secrets="/etc/ppp-pptpd/chap-secrets"
+
+ [ -f "$secrets" ] || cat > "$secrets" << EOF
+ # From: pptpd-1.4.0/samples/chap-secrets
+ # Secrets for authentication using CHAP
+ # client server secret IP addresses
+ #username pptpd password *
+ EOF
+
+ chown root.root "$secrets"
+ chmod 600 "$secrets"
+ '';
+
+ serviceConfig = {
+ ExecStart = "${pkgs.pptpd}/bin/pptpd --conf ${pptpd-conf}";
+ KillMode = "process";
+ Restart = "on-success";
+ Type = "forking";
+ PIDFile = "/run/pptpd.pid";
+ };
+ };
+ };
+}
diff --git a/nixos/modules/services/networking/shairport-sync.nix b/nixos/modules/services/networking/shairport-sync.nix
index a523e66d09b..908de9efd6f 100644
--- a/nixos/modules/services/networking/shairport-sync.nix
+++ b/nixos/modules/services/networking/shairport-sync.nix
@@ -52,6 +52,8 @@ in
config = mkIf config.services.shairport-sync.enable {
services.avahi.enable = true;
+ services.avahi.publish.enable = true;
+ services.avahi.publish.userServices = true;
users.extraUsers = singleton
{ name = cfg.user;
diff --git a/nixos/modules/services/networking/skydns.nix b/nixos/modules/services/networking/skydns.nix
index 39ebaa45a79..ba913482e3c 100644
--- a/nixos/modules/services/networking/skydns.nix
+++ b/nixos/modules/services/networking/skydns.nix
@@ -83,7 +83,7 @@ in {
SKYDNS_NAMESERVERS = concatStringsSep "," cfg.nameservers;
};
serviceConfig = {
- ExecStart = "${cfg.package}/bin/skydns";
+ ExecStart = "${cfg.package.bin}/bin/skydns";
};
};
diff --git a/nixos/modules/services/networking/wpa_supplicant.nix b/nixos/modules/services/networking/wpa_supplicant.nix
index 53648aef1e0..8d22c10d3f7 100644
--- a/nixos/modules/services/networking/wpa_supplicant.nix
+++ b/nixos/modules/services/networking/wpa_supplicant.nix
@@ -129,7 +129,7 @@ in {
in {
description = "WPA Supplicant";
- after = [ "network-interfaces.target" ];
+ after = [ "network-interfaces.target" ] ++ lib.concatMap deviceUnit ifaces;
requires = lib.concatMap deviceUnit ifaces;
wantedBy = [ "network.target" ];
diff --git a/nixos/modules/services/networking/xl2tpd.nix b/nixos/modules/services/networking/xl2tpd.nix
new file mode 100644
index 00000000000..5e006c13f0d
--- /dev/null
+++ b/nixos/modules/services/networking/xl2tpd.nix
@@ -0,0 +1,143 @@
+{ config, stdenv, pkgs, lib, ... }:
+
+with lib;
+
+{
+ options = {
+ services.xl2tpd = {
+ enable = mkEnableOption "Whether xl2tpd should be run on startup.";
+
+ serverIp = mkOption {
+ type = types.string;
+ description = "The server-side IP address.";
+ default = "10.125.125.1";
+ };
+
+ clientIpRange = mkOption {
+ type = types.string;
+ description = "The range from which client IPs are drawn.";
+ default = "10.125.125.2-11";
+ };
+
+ extraXl2tpOptions = mkOption {
+ type = types.lines;
+ description = "Adds extra lines to the xl2tpd configuration file.";
+ default = "";
+ };
+
+ extraPppdOptions = mkOption {
+ type = types.lines;
+ description = "Adds extra lines to the pppd options file.";
+ default = "";
+ example = ''
+ ms-dns 8.8.8.8
+ ms-dns 8.8.4.4
+ '';
+ };
+ };
+ };
+
+ config = mkIf config.services.xl2tpd.enable {
+ systemd.services.xl2tpd = let
+ cfg = config.services.xl2tpd;
+
+ # Config files from https://help.ubuntu.com/community/L2TPServer
+ xl2tpd-conf = pkgs.writeText "xl2tpd.conf" ''
+ [global]
+ ipsec saref = no
+
+ [lns default]
+ local ip = ${cfg.serverIp}
+ ip range = ${cfg.clientIpRange}
+ pppoptfile = ${pppd-options}
+ length bit = yes
+
+ ; Extra
+ ${cfg.extraXl2tpOptions}
+ '';
+
+ pppd-options = pkgs.writeText "ppp-options-xl2tpd.conf" ''
+ refuse-pap
+ refuse-chap
+ refuse-mschap
+ require-mschap-v2
+ # require-mppe-128
+ asyncmap 0
+ auth
+ crtscts
+ idle 1800
+ mtu 1200
+ mru 1200
+ lock
+ hide-password
+ local
+ # debug
+ name xl2tpd
+ # proxyarp
+ lcp-echo-interval 30
+ lcp-echo-failure 4
+
+ # Extra:
+ ${cfg.extraPppdOptions}
+ '';
+
+ xl2tpd-ppp-wrapped = pkgs.stdenv.mkDerivation {
+ name = "xl2tpd-ppp-wrapped";
+ phases = [ "installPhase" ];
+ buildInputs = with pkgs; [ makeWrapper ];
+ installPhase = ''
+ mkdir -p $out/bin
+
+ makeWrapper ${pkgs.ppp}/sbin/pppd $out/bin/pppd \
+ --set LD_PRELOAD "${pkgs.libredirect}/lib/libredirect.so" \
+ --set NIX_REDIRECTS "/etc/ppp=/etc/xl2tpd/ppp"
+
+ makeWrapper ${pkgs.xl2tpd}/bin/xl2tpd $out/bin/xl2tpd \
+ --set LD_PRELOAD "${pkgs.libredirect}/lib/libredirect.so" \
+ --set NIX_REDIRECTS "${pkgs.ppp}/sbin/pppd=$out/bin/pppd"
+ '';
+ };
+ in {
+ description = "xl2tpd server";
+
+ requires = [ "network-online.target" ];
+ wantedBy = [ "multi-user.target" ];
+
+ preStart = ''
+ mkdir -p -m 700 /etc/xl2tpd
+
+ pushd /etc/xl2tpd > /dev/null
+
+ mkdir -p -m 700 ppp
+
+ [ -f ppp/chap-secrets ] || cat > ppp/chap-secrets << EOF
+ # Secrets for authentication using CHAP
+ # client server secret IP addresses
+ #username xl2tpd password *
+ EOF
+
+ chown root.root ppp/chap-secrets
+ chmod 600 ppp/chap-secrets
+
+ # The documentation says this file should be present but doesn't explain why and things work even if not there:
+ [ -f l2tp-secrets ] || (echo -n "* * "; ${pkgs.apg}/bin/apg -n 1 -m 32 -x 32 -a 1 -M LCN) > l2tp-secrets
+ chown root.root l2tp-secrets
+ chmod 600 l2tp-secrets
+
+ popd > /dev/null
+
+ mkdir -p /run/xl2tpd
+ chown root.root /run/xl2tpd
+ chmod 700 /run/xl2tpd
+ '';
+
+ serviceConfig = {
+ ExecStart = "${xl2tpd-ppp-wrapped}/bin/xl2tpd -D -c ${xl2tpd-conf} -s /etc/xl2tpd/l2tp-secrets -p /run/xl2tpd/pid -C /run/xl2tpd/control";
+ KillMode = "process";
+ Restart = "on-success";
+ Type = "simple";
+ PIDFile = "/run/xl2tpd/pid";
+ };
+ };
+ };
+}
diff --git a/nixos/modules/services/search/elasticsearch.nix b/nixos/modules/services/search/elasticsearch.nix
index 17ac8fe7e24..9299aaac2f7 100644
--- a/nixos/modules/services/search/elasticsearch.nix
+++ b/nixos/modules/services/search/elasticsearch.nix
@@ -157,11 +157,14 @@ in {
environment.systemPackages = [ cfg.package ];
- users.extraUsers = singleton {
- name = "elasticsearch";
- uid = config.ids.uids.elasticsearch;
- description = "Elasticsearch daemon user";
- home = cfg.dataDir;
+ users = {
+ groups.elasticsearch.gid = config.ids.gids.elasticsearch;
+ users.elasticsearch = {
+ uid = config.ids.uids.elasticsearch;
+ description = "Elasticsearch daemon user";
+ home = cfg.dataDir;
+ group = "elasticsearch";
+ };
};
};
}
diff --git a/nixos/modules/services/security/hologram.nix b/nixos/modules/services/security/hologram.nix
index 58f308df7a2..e267fed2795 100644
--- a/nixos/modules/services/security/hologram.nix
+++ b/nixos/modules/services/security/hologram.nix
@@ -95,7 +95,7 @@ in {
wantedBy = [ "multi-user.target" ];
serviceConfig = {
- ExecStart = "${pkgs.hologram}/bin/hologram-server --debug --conf ${cfgFile}";
+ ExecStart = "${pkgs.hologram.bin}/bin/hologram-server --debug --conf ${cfgFile}";
};
};
};
diff --git a/nixos/modules/services/security/oauth2_proxy.nix b/nixos/modules/services/security/oauth2_proxy.nix
index b149373076a..4c20392214f 100644
--- a/nixos/modules/services/security/oauth2_proxy.nix
+++ b/nixos/modules/services/security/oauth2_proxy.nix
@@ -515,7 +515,7 @@ in
serviceConfig = {
User = "oauth2_proxy";
Restart = "always";
- ExecStart = "${cfg.package}/bin/oauth2_proxy ${mkCommandLine cfg}";
+ ExecStart = "${cfg.package.bin}/bin/oauth2_proxy ${mkCommandLine cfg}";
};
};
diff --git a/nixos/modules/services/system/dbus.nix b/nixos/modules/services/system/dbus.nix
index 5583a1bcb3a..8bcd6f01656 100644
--- a/nixos/modules/services/system/dbus.nix
+++ b/nixos/modules/services/system/dbus.nix
@@ -65,10 +65,13 @@ in
default = [ ];
description = ''
Packages whose D-Bus configuration files should be included in
- the configuration of the D-Bus system-wide message bus.
- Specifically, every file in
+ the configuration of the D-Bus system-wide or session-wide
+ message bus. Specifically, files in the following directories
+ will be included into their respective DBus configuration paths:
pkg /etc/dbus-1/system.d
- is included.
+ pkg /share/dbus-1/system-services
+ pkg /etc/dbus-1/session.d
+ pkg /share/dbus-1/services
'';
};
diff --git a/nixos/modules/services/web-servers/apache-httpd/default.nix b/nixos/modules/services/web-servers/apache-httpd/default.nix
index c23897192b4..397857ea085 100644
--- a/nixos/modules/services/web-servers/apache-httpd/default.nix
+++ b/nixos/modules/services/web-servers/apache-httpd/default.nix
@@ -12,7 +12,9 @@ let
httpdConf = mainCfg.configFile;
- php = pkgs.php.override { apacheHttpd = httpd.dev; /* otherwise it only gets .out */ };
+ php = mainCfg.phpPackage.override { apacheHttpd = httpd.dev; /* otherwise it only gets .out */ };
+
+ phpMajorVersion = head (splitString "." php.version);
getPort = cfg: if cfg.port != 0 then cfg.port else if cfg.enableSSL then 443 else 80;
@@ -337,7 +339,8 @@ let
allModules =
concatMap (svc: svc.extraModulesPre) allSubservices
++ map (name: {inherit name; path = "${httpd}/modules/mod_${name}.so";}) apacheModules
- ++ optional enablePHP { name = "php5"; path = "${php}/modules/libphp5.so"; }
+ ++ optional mainCfg.enableMellon { name = "auth_mellon"; path = "${pkgs.apacheHttpdPackages.mod_auth_mellon}/modules/mod_auth_mellon.so"; }
+ ++ optional enablePHP { name = "php${phpMajorVersion}"; path = "${php}/modules/libphp${phpMajorVersion}.so"; }
++ concatMap (svc: svc.extraModules) allSubservices
++ extraForeignModules;
in concatMapStrings load allModules
@@ -541,12 +544,27 @@ in
'';
};
+ enableMellon = mkOption {
+ type = types.bool;
+ default = false;
+ description = "Whether to enable the mod_auth_mellon module.";
+ };
+
enablePHP = mkOption {
type = types.bool;
default = false;
description = "Whether to enable the PHP module.";
};
+ phpPackage = mkOption {
+ type = types.package;
+ default = pkgs.php;
+ defaultText = "pkgs.php";
+ description = ''
+ Overridable attribute of the PHP package to use.
+ '';
+ };
+
phpOptions = mkOption {
type = types.lines;
default = "";
@@ -650,6 +668,7 @@ in
environment =
optionalAttrs enablePHP { PHPRC = phpIni; }
+ // optionalAttrs mainCfg.enableMellon { LD_LIBRARY_PATH = "${pkgs.xmlsec}/lib"; }
// (listToAttrs (concatMap (svc: svc.globalEnvVars) allSubservices));
preStart =
diff --git a/nixos/modules/services/web-servers/caddy.nix b/nixos/modules/services/web-servers/caddy.nix
index 0d2612aaa66..b84431373bd 100644
--- a/nixos/modules/services/web-servers/caddy.nix
+++ b/nixos/modules/services/web-servers/caddy.nix
@@ -33,7 +33,7 @@ in
after = [ "network.target" ];
wantedBy = [ "multi-user.target" ];
serviceConfig = {
- ExecStart = "${pkgs.caddy}/bin/caddy -conf=${configFile} -email=${cfg.email}";
+ ExecStart = "${pkgs.caddy.bin}/bin/caddy -conf=${configFile} -email=${cfg.email}";
Type = "simple";
User = "caddy";
Group = "caddy";
diff --git a/nixos/modules/services/web-servers/lighttpd/inginious.nix b/nixos/modules/services/web-servers/lighttpd/inginious.nix
new file mode 100644
index 00000000000..43deccb6aef
--- /dev/null
+++ b/nixos/modules/services/web-servers/lighttpd/inginious.nix
@@ -0,0 +1,262 @@
+{ config, lib, pkgs, ... }:
+with lib;
+
+let
+ cfg = config.services.lighttpd.inginious;
+ inginious = pkgs.inginious;
+ execName = "inginious-${if cfg.useLTI then "lti" else "webapp"}";
+
+ inginiousConfigFile = if cfg.configFile != null then cfg.configFile else pkgs.writeText "inginious.yaml" ''
+ # Backend; can be:
+ # - "local" (run containers on the same machine)
+ # - "remote" (connect to distant docker daemon and auto start agents) (choose this if you use boot2docker)
+ # - "remote_manual" (connect to distant and manually installed agents)
+ backend: "${cfg.backendType}"
+
+ ## TODO (maybe): Add an option for the "remote" backend in this NixOS module.
+ # List of remote docker daemon to which the backend will try
+ # to connect (backend: remote only)
+ #docker_daemons:
+ # - # Host of the docker daemon *from the webapp*
+ # remote_host: "some.remote.server"
+ # # Port of the distant docker daemon *from the webapp*
+ # remote_docker_port: "2375"
+ # # A mandatory port used by the backend and the agent that will be automatically started.
+ # # Needs to be available on the remote host, and to be open in the firewall.
+ # remote_agent_port: "63456"
+ # # Does the remote docker requires tls? Defaults to false.
+ # # Parameter can be set to true or path to the certificates
+ # #use_tls: false
+ # # Link to the docker daemon *from the host that runs the docker daemon*. Defaults to:
+ # #local_location: "unix:///var/run/docker.sock"
+ # # Path to the cgroups "mount" *from the host that runs the docker daemon*. Defaults to:
+ # #cgroups_location: "/sys/fs/cgroup"
+ # # Name that will be used to reference the agent
+ # #"agent_name": "inginious-agent"
+
+ # List of remote agents to which the backend will try
+ # to connect (backend: remote_manual only)
+ # Example:
+ #agents:
+ # - host: "192.168.59.103"
+ # port: 5001
+ agents:
+ ${lib.concatMapStrings (agent:
+ " - host: \"${agent.host}\"\n" +
+ " port: ${agent.port}\n"
+ ) cfg.remoteAgents}
+
+ # Location of the task directory
+ tasks_directory: "${cfg.tasksDirectory}"
+
+ # Super admins: list of user names that can do everything in the backend
+ superadmins:
+ ${lib.concatMapStrings (x: " - \"${x}\"\n") cfg.superadmins}
+
+ # Aliases for containers
+ # Only containers listed here can be used by tasks
+ containers:
+ ${lib.concatStrings (lib.mapAttrsToList (name: fullname:
+ " ${name}: \"${fullname}\"\n"
+ ) cfg.containers)}
+
+ # Use single minified javascript file (production) or multiple files (dev) ?
+ use_minified_js: true
+
+ ## TODO (maybe): Add NixOS options for these parameters.
+
+ # MongoDB options
+ #mongo_opt:
+ # host: localhost
+ # database: INGInious
+
+ # Disable INGInious?
+ #maintenance: false
+
+ #smtp:
+ # sendername: 'INGInious '
+ # host: 'smtp.gmail.com'
+ # port: 587
+ # username: 'configme@gmail.com'
+ # password: 'secret'
+ # starttls: True
+
+ ## NixOS extra config
+
+ ${cfg.extraConfig}
+ '';
+in
+{
+ options.services.lighttpd.inginious = {
+ enable = mkEnableOption "INGInious, an automated code testing and grading system.";
+
+ configFile = mkOption {
+ type = types.nullOr types.path;
+ default = null;
+ example = literalExample ''pkgs.writeText "configuration.yaml" "# custom config options ...";'';
+ description = ''The path to an INGInious configuration file.'';
+ };
+
+ extraConfig = mkOption {
+ type = types.lines;
+ default = "";
+ example = ''
+ # Load the dummy auth plugin.
+ plugins:
+ - plugin_module: inginious.frontend.webapp.plugins.auth.demo_auth
+ users:
+ # register the user "test" with the password "someverycomplexpassword"
+ test: someverycomplexpassword
+ '';
+ description = ''Extra option in YaML format, to be appended to the config file.'';
+ };
+
+ tasksDirectory = mkOption {
+ type = types.path;
+ default = "${inginious}/lib/python2.7/site-packages/inginious/tasks";
+ example = "/var/lib/INGInious/tasks";
+ description = ''
+ Path to the tasks folder.
+ Defaults to the provided test tasks folder (readonly).
+ '';
+ };
+
+ useLTI = mkOption {
+ type = types.bool;
+ default = false;
+ description = ''Whether to start the LTI frontend in place of the webapp.'';
+ };
+
+ superadmins = mkOption {
+ type = types.uniq (types.listOf types.str);
+ default = [ "admin" ];
+ example = [ "john" "pepe" "emilia" ];
+ description = ''List of user logins allowed to administrate the whole server.'';
+ };
+
+ containers = mkOption {
+ type = types.attrsOf types.str;
+ default = {
+ default = "ingi/inginious-c-default";
+ };
+ example = {
+ default = "ingi/inginious-c-default";
+ sekexe = "ingi/inginious-c-sekexe";
+ java = "ingi/inginious-c-java";
+ oz = "ingi/inginious-c-oz";
+ pythia1compat = "ingi/inginious-c-pythia1compat";
+ };
+ description = ''
+ An attrset describing the required containers
+ These containers will be available in INGInious using their short name (key)
+ and will be automatically downloaded before INGInious starts.
+ '';
+ };
+
+ hostPattern = mkOption {
+ type = types.str;
+ default = "^inginious.";
+ example = "^inginious.mydomain.xyz$";
+ description = ''
+ The domain that serves INGInious.
+ INGInious uses absolute paths which makes it difficult to relocate in its own subdir.
+ The default configuration will serve INGInious when the server is accessed with a hostname starting with "inginious.".
+ If left blank, INGInious will take the precedence over all the other lighttpd sites, which is probably not what you want.
+ '';
+ };
+
+ backendType = mkOption {
+ type = types.enum [ "local" "remote_manual" ]; # TODO: support backend "remote"
+ default = "local";
+ description = ''
+ Select how INGINious accesses to grading containers.
+ The default "local" option ensures that Docker is started and provisioned.
+ Fore more information, see http://inginious.readthedocs.io/en/latest/install_doc/config_reference.html
+ Not all backends are supported. Use services.inginious.configFile for full flexibility.
+ '';
+ };
+
+ remoteAgents = mkOption {
+ type = types.listOf (types.attrsOf types.str);
+ default = [];
+ example = [ { host = "192.0.2.25"; port = "1345"; } ];
+ description = ''A list of remote agents, used only when services.inginious.backendType is "remote_manual".'';
+ };
+ };
+
+ config = mkIf cfg.enable (
+ mkMerge [
+ # For a local install, we need docker.
+ (mkIf (cfg.backendType == "local") {
+ virtualisation.docker = {
+ enable = true;
+ # We need docker to listen on port 2375.
+ extraOptions = "-H tcp://127.0.0.1:2375 -H unix:///var/run/docker.sock";
+ storageDriver = mkDefault "overlay";
+ socketActivation = false;
+ };
+
+ users.extraUsers."lighttpd".extraGroups = [ "docker" ];
+
+ # Ensure that docker has pulled the required images.
+ systemd.services.inginious-prefetch = {
+ script = let
+ images = lib.unique (
+ [ "centos" "ingi/inginious-agent" ]
+ ++ lib.mapAttrsToList (_: image: image) cfg.containers
+ );
+ in lib.concatMapStrings (image: ''
+ ${pkgs.docker}/bin/docker pull ${image}
+ '') images;
+
+ serviceConfig.Type = "oneshot";
+ wants = [ "docker.service" ];
+ after = [ "docker.service" ];
+ wantedBy = [ "lighttpd.service" ];
+ before = [ "lighttpd.service" ];
+ };
+ })
+
+ # Common
+ {
+ # To access inginous tools (like inginious-test-task)
+ environment.systemPackages = [ inginious ];
+
+ services.mongodb.enable = true;
+
+ services.lighttpd.enable = true;
+ services.lighttpd.enableModules = [ "mod_access" "mod_alias" "mod_fastcgi" "mod_redirect" "mod_rewrite" ];
+ services.lighttpd.extraConfig = ''
+ $HTTP["host"] =~ "${cfg.hostPattern}" {
+ fastcgi.server = ( "/${execName}" =>
+ ((
+ "socket" => "/run/lighttpd/inginious-fastcgi.socket",
+ "bin-path" => "${inginious}/bin/${execName} --config=${inginiousConfigFile}",
+ "max-procs" => 1,
+ "bin-environment" => ( "REAL_SCRIPT_NAME" => "" ),
+ "check-local" => "disable"
+ ))
+ )
+ url.rewrite-once = (
+ "^/.well-known/.*" => "$0",
+ "^/static/.*" => "$0",
+ "^/.*$" => "/${execName}$0",
+ "^/favicon.ico$" => "/static/common/favicon.ico",
+ )
+ alias.url += (
+ "/static/webapp/" => "${inginious}/lib/python2.7/site-packages/inginious/frontend/webapp/static/",
+ "/static/common/" => "${inginious}/lib/python2.7/site-packages/inginious/frontend/common/static/"
+ )
+ }
+ '';
+
+ systemd.services.lighttpd.preStart = ''
+ mkdir -p /run/lighttpd
+ chown lighttpd.lighttpd /run/lighttpd
+ '';
+
+ systemd.services.lighttpd.wants = [ "mongodb.service" "docker.service" ];
+ systemd.services.lighttpd.after = [ "mongodb.service" "docker.service" ];
+ }
+ ]);
+}
diff --git a/nixos/modules/services/x11/desktop-managers/gnome3.nix b/nixos/modules/services/x11/desktop-managers/gnome3.nix
index 91601f387cb..89b515a6e27 100644
--- a/nixos/modules/services/x11/desktop-managers/gnome3.nix
+++ b/nixos/modules/services/x11/desktop-managers/gnome3.nix
@@ -78,6 +78,8 @@ in {
type = types.listOf types.path;
description = "List of packages for which gsettings are overridden.";
};
+
+ debug = mkEnableOption "gnome-session debug messages";
};
environment.gnome3.packageSet = mkOption {
@@ -117,7 +119,10 @@ in {
services.telepathy.enable = mkDefault true;
networking.networkmanager.enable = mkDefault true;
services.upower.enable = config.powerManagement.enable;
+ services.dbus.packages = mkIf config.services.printing.enable [ pkgs.system-config-printer ];
+ services.colord.enable = mkDefault true;
hardware.bluetooth.enable = mkDefault true;
+ services.xserver.libinput.enable = mkDefault true; # for controlling touchpad settings via gnome control center
fonts.fonts = [ pkgs.dejavu_fonts pkgs.cantarell_fonts ];
@@ -159,7 +164,7 @@ in {
# Update user dirs as described in http://freedesktop.org/wiki/Software/xdg-user-dirs/
${pkgs.xdg-user-dirs}/bin/xdg-user-dirs-update
- ${gnome3.gnome_session}/bin/gnome-session&
+ ${gnome3.gnome_session}/bin/gnome-session ${optionalString cfg.debug "--debug"} &
waitPID=$!
'';
};
diff --git a/nixos/modules/services/x11/desktop-managers/xfce.nix b/nixos/modules/services/x11/desktop-managers/xfce.nix
index 4c4e3d96798..634d2a39576 100644
--- a/nixos/modules/services/x11/desktop-managers/xfce.nix
+++ b/nixos/modules/services/x11/desktop-managers/xfce.nix
@@ -33,6 +33,14 @@ in
default = false;
description = "Don't install XFCE desktop components (xfdesktop, panel and notification daemon).";
};
+
+ extraSessionCommands = mkOption {
+ default = "";
+ type = types.lines;
+ description = ''
+ Shell commands executed just before XFCE is started.
+ '';
+ };
};
};
@@ -45,6 +53,8 @@ in
bgSupport = true;
start =
''
+ ${cfg.extraSessionCommands}
+
# Set GTK_PATH so that GTK+ can find the theme engines.
export GTK_PATH="${config.system.path}/lib/gtk-2.0:${config.system.path}/lib/gtk-3.0"
diff --git a/nixos/modules/services/x11/window-managers/i3.nix b/nixos/modules/services/x11/window-managers/i3.nix
index 2e2e10cc33b..cfe9439b688 100644
--- a/nixos/modules/services/x11/window-managers/i3.nix
+++ b/nixos/modules/services/x11/window-managers/i3.nix
@@ -3,37 +3,52 @@
with lib;
let
- cfg = config.services.xserver.windowManager.i3;
+ wmCfg = config.services.xserver.windowManager;
+
+ i3option = name: {
+ enable = mkEnableOption name;
+ configFile = mkOption {
+ default = null;
+ type = types.nullOr types.path;
+ description = ''
+ Path to the i3 configuration file.
+ If left at the default value, $HOME/.i3/config will be used.
+ '';
+ };
+ extraSessionCommands = mkOption {
+ default = "";
+ type = types.lines;
+ description = ''
+ Shell commands executed just before i3 is started.
+ '';
+ };
+ };
+
+ i3config = name: pkg: cfg: {
+ services.xserver.windowManager.session = [{
+ inherit name;
+ start = ''
+ ${cfg.extraSessionCommands}
+
+ ${pkg}/bin/i3 ${optionalString (cfg.configFile != null)
+ "-c \"${cfg.configFile}\""
+ } &
+ waitPID=$!
+ '';
+ }];
+ environment.systemPackages = [ pkg ];
+ };
+
in
{
- options = {
- services.xserver.windowManager.i3 = {
- enable = mkEnableOption "i3";
-
- configFile = mkOption {
- default = null;
- type = types.nullOr types.path;
- description = ''
- Path to the i3 configuration file.
- If left at the default value, $HOME/.i3/config will be used.
- '';
- };
- };
+ options.services.xserver.windowManager = {
+ i3 = i3option "i3";
+ i3-gaps = i3option "i3-gaps";
};
- config = mkIf cfg.enable {
- services.xserver.windowManager = {
- session = [{
- name = "i3";
- start = ''
- ${pkgs.i3}/bin/i3 ${optionalString (cfg.configFile != null)
- "-c \"${cfg.configFile}\""
- } &
- waitPID=$!
- '';
- }];
- };
- environment.systemPackages = with pkgs; [ i3 ];
- };
+ config = mkMerge [
+ (mkIf wmCfg.i3.enable (i3config "i3" pkgs.i3 wmCfg.i3))
+ (mkIf wmCfg.i3-gaps.enable (i3config "i3-gaps" pkgs.i3-gaps wmCfg.i3-gaps))
+ ];
}
diff --git a/nixos/modules/services/x11/xbanish.nix b/nixos/modules/services/x11/xbanish.nix
new file mode 100644
index 00000000000..e1e3cbc8e44
--- /dev/null
+++ b/nixos/modules/services/x11/xbanish.nix
@@ -0,0 +1,30 @@
+{ config, lib, pkgs, ... }:
+
+with lib;
+
+let cfg = config.services.xbanish;
+
+in {
+ options.services.xbanish = {
+
+ enable = mkEnableOption "xbanish";
+
+ arguments = mkOption {
+ description = "Arguments to pass to xbanish command";
+ default = "";
+ example = "-d -i shift";
+ type = types.str;
+ };
+ };
+
+ config = mkIf cfg.enable {
+ systemd.user.services.xbanish = {
+ description = "xbanish hides the mouse pointer";
+ wantedBy = [ "default.target" ];
+ serviceConfig.ExecStart = ''
+ ${pkgs.xbanish}/bin/xbanish ${cfg.arguments}
+ '';
+ serviceConfig.Restart = "always";
+ };
+ };
+}
diff --git a/nixos/modules/system/activation/switch-to-configuration.pl b/nixos/modules/system/activation/switch-to-configuration.pl
index 093b7f1ff22..bb97d0c53a6 100644
--- a/nixos/modules/system/activation/switch-to-configuration.pl
+++ b/nixos/modules/system/activation/switch-to-configuration.pl
@@ -261,7 +261,7 @@ while (my ($unit, $state) = each %{$activePrev}) {
sub pathToUnitName {
my ($path) = @_;
- open my $cmd, "-|", "systemd-escape", "--suffix=mount", "-p", $path
+ open my $cmd, "-|", "@systemd@/bin/systemd-escape", "--suffix=mount", "-p", $path
or die "Unable to escape $path!\n";
my $escaped = join "", <$cmd>;
chomp $escaped;
diff --git a/nixos/modules/system/boot/coredump.nix b/nixos/modules/system/boot/coredump.nix
index 793c7515c76..b27a35b6257 100644
--- a/nixos/modules/system/boot/coredump.nix
+++ b/nixos/modules/system/boot/coredump.nix
@@ -36,6 +36,8 @@ with lib;
config = mkMerge [
(mkIf config.systemd.coredump.enable {
+ systemd.additionalUpstreamSystemUnits = [ "systemd-coredump.socket" "systemd-coredump@.service" ];
+
environment.etc."systemd/coredump.conf".text =
''
[Coredump]
@@ -45,7 +47,7 @@ with lib;
# Have the kernel pass core dumps to systemd's coredump helper binary.
# From systemd's 50-coredump.conf file. See:
#
- boot.kernel.sysctl."kernel.core_pattern" = "|${pkgs.systemd}/lib/systemd/systemd-coredump %p %u %g %s %t %e";
+ boot.kernel.sysctl."kernel.core_pattern" = "|${pkgs.systemd}/lib/systemd/systemd-coredump %P %u %g %s %t %c %e";
})
(mkIf (!config.systemd.coredump.enable) {
diff --git a/nixos/modules/system/boot/initrd-ssh.nix b/nixos/modules/system/boot/initrd-ssh.nix
index 3e2805a8c34..d0a4ce51148 100644
--- a/nixos/modules/system/boot/initrd-ssh.nix
+++ b/nixos/modules/system/boot/initrd-ssh.nix
@@ -100,9 +100,6 @@ in
'';
boot.initrd.network.postCommands = ''
- mkdir /dev/pts
- mount -t devpts devpts /dev/pts
-
echo '${cfg.shell}' > /etc/shells
echo 'root:x:0:0:root:/root:${cfg.shell}' > /etc/passwd
echo 'passwd: files' > /etc/nsswitch.conf
diff --git a/nixos/modules/system/boot/loader/generic-extlinux-compatible/extlinux-conf-builder.nix b/nixos/modules/system/boot/loader/generic-extlinux-compatible/extlinux-conf-builder.nix
index c5c250c14ce..576a07c1d27 100644
--- a/nixos/modules/system/boot/loader/generic-extlinux-compatible/extlinux-conf-builder.nix
+++ b/nixos/modules/system/boot/loader/generic-extlinux-compatible/extlinux-conf-builder.nix
@@ -5,5 +5,4 @@ pkgs.substituteAll {
isExecutable = true;
path = [pkgs.coreutils pkgs.gnused pkgs.gnugrep];
inherit (pkgs) bash;
- kernelDTB = pkgs.stdenv.platform.kernelDTB or false;
}
diff --git a/nixos/modules/system/boot/loader/generic-extlinux-compatible/extlinux-conf-builder.sh b/nixos/modules/system/boot/loader/generic-extlinux-compatible/extlinux-conf-builder.sh
index 78a8e8fd658..c780a89b102 100644
--- a/nixos/modules/system/boot/loader/generic-extlinux-compatible/extlinux-conf-builder.sh
+++ b/nixos/modules/system/boot/loader/generic-extlinux-compatible/extlinux-conf-builder.sh
@@ -75,9 +75,10 @@ addEntry() {
copyToKernelsDir "$path/kernel"; kernel=$result
copyToKernelsDir "$path/initrd"; initrd=$result
- if [ -n "@kernelDTB@" ]; then
- # XXX UGLY: maybe the system config should have a top-level "dtbs" entry?
- copyToKernelsDir $(readlink -m "$path/kernel/../dtbs"); dtbs=$result
+ # XXX UGLY: maybe the system config should have a top-level "dtbs" entry?
+ dtbDir=$(readlink -m "$path/kernel/../dtbs")
+ if [ -d "$dtbDir" ]; then
+ copyToKernelsDir "$dtbDir"; dtbs=$result
fi
timestampEpoch=$(stat -L -c '%Z' $path)
@@ -95,7 +96,7 @@ addEntry() {
fi
echo " LINUX ../nixos/$(basename $kernel)"
echo " INITRD ../nixos/$(basename $initrd)"
- if [ -n "@kernelDTB@" ]; then
+ if [ -d "$dtbDir" ]; then
echo " FDTDIR ../nixos/$(basename $dtbs)"
fi
echo " APPEND systemConfig=$path init=$path/init $extraParams"
diff --git a/nixos/modules/system/boot/loader/grub/install-grub.pl b/nixos/modules/system/boot/loader/grub/install-grub.pl
index b8ef02da4bc..94d87b43606 100644
--- a/nixos/modules/system/boot/loader/grub/install-grub.pl
+++ b/nixos/modules/system/boot/loader/grub/install-grub.pl
@@ -501,7 +501,7 @@ sub getEfiTarget {
my @deviceTargets = getDeviceTargets();
my $efiTarget = getEfiTarget();
my $prevGrubState = readGrubState();
-my @prevDeviceTargets = split/:/, $prevGrubState->devices;
+my @prevDeviceTargets = split/,/, $prevGrubState->devices;
my $devicesDiffer = scalar (List::Compare->new( '-u', '-a', \@deviceTargets, \@prevDeviceTargets)->get_symmetric_difference());
my $nameDiffer = get("fullName") ne $prevGrubState->name;
@@ -549,7 +549,7 @@ if ($requireNewInstall != 0) {
print FILE get("fullName"), "\n" or die;
print FILE get("fullVersion"), "\n" or die;
print FILE $efiTarget, "\n" or die;
- print FILE join( ":", @deviceTargets ), "\n" or die;
+ print FILE join( ",", @deviceTargets ), "\n" or die;
print FILE $efiSysMountPoint, "\n" or die;
close FILE or die;
}
diff --git a/nixos/modules/system/boot/luksroot.nix b/nixos/modules/system/boot/luksroot.nix
index 8dad09c8920..15881b6d371 100644
--- a/nixos/modules/system/boot/luksroot.nix
+++ b/nixos/modules/system/boot/luksroot.nix
@@ -36,7 +36,7 @@ let
${optionalString (header != null) "--header=${header}"} \
${optionalString (keyFile != null) "--key-file=${keyFile} ${optionalString (keyFileSize != null) "--keyfile-size=${toString keyFileSize}"}"} \
> /.luksopen_args
- cryptsetup-askpass
+ get_password "Enter LUKS Passphrase" cryptsetup-askpass
rm /.luksopen_args
}
@@ -78,9 +78,7 @@ let
for try in $(seq 3); do
${optionalString yubikey.twoFactor ''
- echo -n "Enter two-factor passphrase: "
- read -s k_user
- echo
+ k_user="$(get_password "Enter two-factor passphrase" cat)"
''}
if [ ! -z "$k_user" ]; then
@@ -463,6 +461,26 @@ in
''}
'';
+ boot.initrd.preDeviceCommands = ''
+ get_password() {
+ local ret
+ local reply
+ local tty_stat
+
+ tty_stat="$(stty -g)"
+ stty -echo
+ for i in `seq 1 3`; do
+ echo -n "$1: "
+ read reply
+ echo "$reply" | "$2"
+ if [ "$?" = "0" ]; then
+ break
+ fi
+ done
+ stty "$tty_stat"
+ }
+ '';
+
boot.initrd.preLVMCommands = concatStrings (mapAttrsToList openCommand preLVM);
boot.initrd.postDeviceCommands = concatStrings (mapAttrsToList openCommand postLVM);
diff --git a/nixos/modules/system/boot/plymouth.nix b/nixos/modules/system/boot/plymouth.nix
new file mode 100644
index 00000000000..82c1032937c
--- /dev/null
+++ b/nixos/modules/system/boot/plymouth.nix
@@ -0,0 +1,129 @@
+{ config, lib, pkgs, ... }:
+
+with lib;
+
+let
+
+ inherit (pkgs) plymouth;
+
+ cfg = config.boot.plymouth;
+
+ themesEnv = pkgs.buildEnv {
+ name = "plymouth-themes";
+ paths = [ plymouth ] ++ cfg.themePackages;
+ };
+
+ configFile = pkgs.writeText "plymouthd.conf" ''
+ [Daemon]
+ ShowDelay=0
+ Theme=${cfg.theme}
+ '';
+
+in
+
+{
+
+ options = {
+
+ boot.plymouth = {
+
+ enable = mkEnableOption "Plymouth boot splash screen";
+
+ themePackages = mkOption {
+ default = [];
+ type = types.listOf types.package;
+ description = ''
+ Extra theme packages for plymouth.
+ '';
+ };
+
+ theme = mkOption {
+ default = "fade-in";
+ type = types.str;
+ description = ''
+ Splash screen theme.
+ '';
+ };
+
+ logo = mkOption {
+ type = types.path;
+ default = pkgs.fetchurl {
+ url = "https://nixos.org/logo/nixos-hires.png";
+ sha256 = "1ivzgd7iz0i06y36p8m5w48fd8pjqwxhdaavc0pxs7w1g7mcy5si";
+ };
+ description = ''
+ Logo which is displayed on the splash screen.
+ '';
+ };
+
+ };
+
+ };
+
+ config = mkIf cfg.enable {
+
+ boot.kernelParams = [ "splash" ];
+
+ # To be discoverable by systemd.
+ environment.systemPackages = [ plymouth ];
+
+ environment.etc."plymouth/plymouthd.conf".source = configFile;
+ environment.etc."plymouth/plymouthd.defaults".source = "${plymouth}/share/plymouth/plymouth.defaults";
+ environment.etc."plymouth/logo.png".source = cfg.logo;
+ environment.etc."plymouth/themes".source = "${themesEnv}/share/plymouth/themes";
+ # XXX: Needed because we supply a different set of plugins in initrd.
+ environment.etc."plymouth/plugins".source = "${plymouth}/lib/plymouth";
+
+ systemd.packages = [ plymouth ];
+
+ systemd.services.plymouth-kexec.wantedBy = [ "kexec.target" ];
+ systemd.services.plymouth-halt.wantedBy = [ "halt.target" ];
+ systemd.services.plymouth-quit = {
+ wantedBy = [ "multi-user.target" ];
+ after = [ "display-manager.service" "multi-user.target" ];
+ };
+ systemd.services.plymouth-poweroff.wantedBy = [ "poweroff.target" ];
+ systemd.services.plymouth-reboot.wantedBy = [ "reboot.target" ];
+ systemd.services.plymouth-read-write.wantedBy = [ "sysinit.target" ];
+
+ boot.initrd.extraUtilsCommands = ''
+ copy_bin_and_libs ${pkgs.plymouth}/bin/plymouthd
+ copy_bin_and_libs ${pkgs.plymouth}/bin/plymouth
+
+ moduleName="$(sed -n 's,ModuleName *= *,,p' ${themesEnv}/share/plymouth/themes/${cfg.theme}/${cfg.theme}.plymouth)"
+
+ mkdir -p $out/lib/plymouth/renderers
+ cp ${plymouth}/lib/plymouth/{text,details,$moduleName}.so $out/lib/plymouth
+ cp ${plymouth}/lib/plymouth/renderers/{drm,frame-buffer}.so $out/lib/plymouth/renderers
+
+ mkdir -p $out/share/plymouth/themes
+ cp ${plymouth}/share/plymouth/plymouthd.defaults $out/share/plymouth
+ cp -r ${themesEnv}/share/plymouth/themes/{text,details,${cfg.theme}} $out/share/plymouth/themes
+ cp ${cfg.logo} $out/share/plymouth/logo.png
+ '';
+
+ boot.initrd.extraUtilsCommandsTest = ''
+ $out/bin/plymouthd --help >/dev/null
+ $out/bin/plymouth --help >/dev/null
+ '';
+
+ boot.initrd.extraUdevRulesCommands = ''
+ cp ${config.systemd.package}/lib/udev/rules.d/{70-uaccess,71-seat}.rules $out
+ sed -i '/loginctl/d' $out/71-seat.rules
+ '';
+
+ boot.initrd.preLVMCommands = mkAfter ''
+ mkdir -p /etc/plymouth
+ ln -s ${configFile} /etc/plymouth/plymouthd.conf
+ ln -s $extraUtils/share/plymouth/plymouthd.defaults /etc/plymouth/plymouthd.defaults
+ ln -s $extraUtils/share/plymouth/logo.png /etc/plymouth/logo.png
+ ln -s $extraUtils/share/plymouth/themes /etc/plymouth/themes
+ ln -s $extraUtils/lib/plymouth /etc/plymouth/plugins
+
+ plymouthd --mode=boot --pid-file=/run/plymouth/pid --attach-to-session
+ plymouth --show-splash
+ '';
+
+ };
+
+}
diff --git a/nixos/modules/system/boot/resolved.nix b/nixos/modules/system/boot/resolved.nix
index 5a98b9b6d48..4b7c545dcc0 100644
--- a/nixos/modules/system/boot/resolved.nix
+++ b/nixos/modules/system/boot/resolved.nix
@@ -1,7 +1,9 @@
{ config, lib, pkgs, ... }:
with lib;
-
+let
+ cfg = config.services.resolved;
+in
{
options = {
@@ -14,9 +16,60 @@ with lib;
'';
};
+ services.resolved.fallbackDns = mkOption {
+ default = [ ];
+ example = [ "8.8.8.8" "2001:4860:4860::8844" ];
+ type = types.listOf types.str;
+ description = ''
+ A list of IPv4 and IPv6 addresses to use as the fallback DNS servers.
+ If this option is empty, a compiled-in list of DNS servers is used instead.
+ '';
+ };
+
+ services.resolved.domains = mkOption {
+ default = config.networking.search;
+ example = [ "example.com" ];
+ type = types.listOf types.str;
+ description = ''
+ A list of domains. These domains are used as search suffixes when resolving single-label host names (domain names which contain no dot), in order to qualify them into fully-qualified domain names (FQDNs).
+ For compatibility reasons, if this setting is not specified, the search domains listed in /etc/resolv.conf are used instead, if that file exists and any domains are configured in it.
+ '';
+ };
+
+ services.resolved.llmnr = mkOption {
+ default = "true";
+ example = "false";
+ type = types.enum [ "true" "resolve" "false" ];
+ description = ''
+ Controls Link-Local Multicast Name Resolution support (RFC 4794) on the local host.
+ If true, enables full LLMNR responder and resolver support.
+ If false, disables both.
+ If set to "resolve", only resolution support is enabled, but responding is disabled.
+ '';
+ };
+
+ services.resolved.dnssec = mkOption {
+ default = "allow-downgrade";
+ example = "true";
+ type = types.enum [ "true" "allow-downgrade" "false" ];
+ description = ''
+ If true all DNS lookups are DNSSEC-validated locally (excluding LLMNR and Multicast DNS). Note that this mode requires a DNS server that supports DNSSEC. If the DNS server does not properly support DNSSEC all validations will fail.
+ If set to "allow-downgrade" DNSSEC validation is attempted, but if the server does not support DNSSEC properly, DNSSEC mode is automatically disabled. Note that this mode makes DNSSEC validation vulnerable to "downgrade" attacks, where an attacker might be able to trigger a downgrade to non-DNSSEC mode by synthesizing a DNS response that suggests DNSSEC was not supported.
+ If set to false, DNS lookups are not DNSSEC validated.
+ '';
+ };
+
+ services.resolved.extraConfig = mkOption {
+ default = "";
+ type = types.lines;
+ description = ''
+ Extra config to append to resolved.conf.
+ '';
+ };
+
};
- config = mkIf config.services.resolved.enable {
+ config = mkIf cfg.enable {
systemd.additionalUpstreamSystemUnits = [ "systemd-resolved.service" ];
@@ -27,7 +80,15 @@ with lib;
environment.etc."systemd/resolved.conf".text = ''
[Resolve]
- DNS=${concatStringsSep " " config.networking.nameservers}
+ ${optionalString (config.networking.nameservers != [])
+ "DNS=${concatStringsSep " " config.networking.nameservers}"}
+ ${optionalString (cfg.fallbackDns != [])
+ "FallbackDNS=${concatStringsSep " " cfg.fallbackDns}"}
+ ${optionalString (cfg.domains != [])
+ "Domains=${concatStringsSep " " cfg.domains}"}
+ LLMNR=${cfg.llmnr}
+ DNSSEC=${cfg.dnssec}
+ ${config.services.resolved.extraConfig}
'';
};
diff --git a/nixos/modules/system/boot/stage-1-init.sh b/nixos/modules/system/boot/stage-1-init.sh
index 9bffcd31b9b..6b1bf0b3e02 100644
--- a/nixos/modules/system/boot/stage-1-init.sh
+++ b/nixos/modules/system/boot/stage-1-init.sh
@@ -3,6 +3,7 @@
targetRoot=/mnt-root
console=tty1
+extraUtils="@extraUtils@"
export LD_LIBRARY_PATH=@extraUtils@/lib
export PATH=@extraUtils@/bin
ln -s @extraUtils@/bin /bin
@@ -13,6 +14,9 @@ export LVM_SUPPRESS_FD_WARNINGS=true
fail() {
if [ -n "$panicOnFail" ]; then exit 1; fi
+ # If we have a splash screen started, quit it.
+ command -v plymouth >/dev/null 2>&1 && plymouth quit
+
# If starting stage 2 failed, allow the user to repair the problem
# in an interactive shell.
cat < $out
+ '';
+
+ # Sadly, systemd-vconsole-setup doesn't support binary keymaps.
vconsoleConf = pkgs.writeText "vconsole.conf" ''
KEYMAP=${config.i18n.consoleKeyMap}
FONT=${config.i18n.consoleFont}
${colors}
'';
+ kbdEnv = pkgs.buildEnv {
+ name = "kbd-env";
+ paths = [ pkgs.kbd ] ++ config.i18n.consolePackages;
+ pathsToLink = [ "/share/consolefonts" "/share/consoletrans" "/share/keymaps" "/share/unimaps" ];
+ };
+
setVconsole = !config.boot.isContainer;
in
@@ -38,38 +57,75 @@ in
'';
};
+ boot.earlyVconsoleSetup = mkOption {
+ default = false;
+ type = types.bool;
+ description = ''
+ Enable setting font and keymap as early as possible (in initrd).
+ '';
+ };
+
};
###### implementation
config = mkMerge [
- (mkIf (!setVconsole) {
+ (mkIf (!setVconsole || (setVconsole && config.boot.earlyVconsoleSetup)) {
systemd.services."systemd-vconsole-setup".enable = false;
})
- (mkIf setVconsole {
- environment.systemPackages = [ pkgs.kbd ];
+ (mkIf setVconsole (mkMerge [
+ { environment.systemPackages = [ pkgs.kbd ];
- # Let systemd-vconsole-setup.service do the work of setting up the
- # virtual consoles. FIXME: trigger a restart of
- # systemd-vconsole-setup.service if /etc/vconsole.conf changes.
- environment.etc = [ {
- target = "vconsole.conf";
- source = vconsoleConf;
- } ];
+ # Let systemd-vconsole-setup.service do the work of setting up the
+ # virtual consoles.
+ environment.etc."vconsole.conf".source = vconsoleConf;
+ # Provide kbd with additional packages.
+ environment.etc."kbd".source = "${kbdEnv}/share";
+ }
- # This is identical to the systemd-vconsole-setup.service unit
- # shipped with systemd, except that it uses /dev/tty1 instead of
- # /dev/tty0 to prevent putting the X server in non-raw mode, and
- # it has a restart trigger.
- systemd.services."systemd-vconsole-setup" =
- { wantedBy = [ "multi-user.target" ];
- before = [ "display-manager.service" ];
- after = [ "systemd-udev-settle.service" ];
- restartTriggers = [ vconsoleConf ];
- };
- })
+ (mkIf (!config.boot.earlyVconsoleSetup) {
+ # This is identical to the systemd-vconsole-setup.service unit
+ # shipped with systemd, except that it uses /dev/tty1 instead of
+ # /dev/tty0 to prevent putting the X server in non-raw mode, and
+ # it has a restart trigger.
+ systemd.services."systemd-vconsole-setup" =
+ { wantedBy = [ "sysinit.target" ];
+ before = [ "display-manager.service" ];
+ after = [ "systemd-udev-settle.service" ];
+ restartTriggers = [ vconsoleConf kbdEnv ];
+ };
+ })
+
+ (mkIf config.boot.earlyVconsoleSetup {
+ boot.initrd.extraUtilsCommands = ''
+ mkdir -p $out/share/consolefonts
+ ${if substring 0 1 config.i18n.consoleFont == "/" then ''
+ font="${config.i18n.consoleFont}"
+ '' else ''
+ font="$(echo ${kbdEnv}/share/consolefonts/${config.i18n.consoleFont}.*)"
+ ''}
+ if [[ $font == *.gz ]]; then
+ gzip -cd $font > $out/share/consolefonts/font.psf
+ else
+ cp -L $font $out/share/consolefonts/font.psf
+ fi
+ '';
+
+ boot.initrd.preLVMCommands = mkBefore ''
+ kbd_mode ${if isUnicode then "-u" else "-a"} -C /dev/console
+ printf "\033%%${if isUnicode then "G" else "@"}" >> /dev/console
+ loadkmap < ${optimizedKeymap}
+
+ setfont -C /dev/console $extraUtils/share/consolefonts/font.psf
+
+ ${concatImapStringsSep "\n" (n: color: ''
+ printf "${makeColorCS n color}" >> /dev/console
+ '') config.i18n.consoleColors}
+ '';
+ })
+ ]))
];
}
diff --git a/nixos/modules/virtualisation/amazon-image.nix b/nixos/modules/virtualisation/amazon-image.nix
index 9e8417cde1d..ebf398fa266 100644
--- a/nixos/modules/virtualisation/amazon-image.nix
+++ b/nixos/modules/virtualisation/amazon-image.nix
@@ -20,7 +20,12 @@ let cfg = config.ec2; in
autoResize = true;
};
+ boot.extraModulePackages =
+ [ config.boot.kernelPackages.ixgbevf
+ config.boot.kernelPackages.ena
+ ];
boot.initrd.kernelModules = [ "xen-blkfront" "xen-netfront" ];
+ boot.initrd.availableKernelModules = [ "ixgbevf" "ena" ];
boot.kernelParams = mkIf cfg.hvm [ "console=ttyS0" ];
# Prevent the nouveau kernel module from being loaded, as it
diff --git a/nixos/modules/virtualisation/docker.nix b/nixos/modules/virtualisation/docker.nix
index 97b2927cf1b..c99fc78d49e 100644
--- a/nixos/modules/virtualisation/docker.nix
+++ b/nixos/modules/virtualisation/docker.nix
@@ -95,7 +95,7 @@ in
LimitNPROC = 1048576;
} // proxy_env;
- path = [ pkgs.kmod ] ++ (optional (cfg.storageDriver == "zfs") pkgs.zfs);
+ path = [ config.system.sbin.modprobe ] ++ (optional (cfg.storageDriver == "zfs") pkgs.zfs);
environment.MODULE_DIR = "/run/current-system/kernel-modules/lib/modules";
postStart = if cfg.socketActivation then "" else cfg.postStart;
diff --git a/nixos/modules/virtualisation/ec2-amis.nix b/nixos/modules/virtualisation/ec2-amis.nix
index 5257aaf6202..bdf6ed4dcd2 100644
--- a/nixos/modules/virtualisation/ec2-amis.nix
+++ b/nixos/modules/virtualisation/ec2-amis.nix
@@ -90,40 +90,48 @@
"15.09".us-west-2.pv-ebs = "ami-005fb160";
"15.09".us-west-2.pv-s3 = "ami-cd55bbad";
- "16.03".ap-northeast-1.hvm-ebs = "ami-b6edf5d8";
- "16.03".ap-northeast-1.hvm-s3 = "ami-b1e3fbdf";
- "16.03".ap-northeast-1.pv-ebs = "ami-6190880f";
- "16.03".ap-northeast-1.pv-s3 = "ami-908d95fe";
- "16.03".ap-southeast-1.hvm-ebs = "ami-35b16656";
- "16.03".ap-southeast-1.hvm-s3 = "ami-41be6922";
- "16.03".ap-southeast-1.pv-ebs = "ami-4cb96e2f";
- "16.03".ap-southeast-1.pv-s3 = "ami-3bb96e58";
- "16.03".ap-southeast-2.hvm-ebs = "ami-debc91bd";
- "16.03".ap-southeast-2.hvm-s3 = "ami-55bc9136";
- "16.03".ap-southeast-2.pv-ebs = "ami-b38ba6d0";
- "16.03".ap-southeast-2.pv-s3 = "ami-9e8ba6fd";
- "16.03".eu-central-1.hvm-ebs = "ami-7c967413";
- "16.03".eu-central-1.hvm-s3 = "ami-b29072dd";
- "16.03".eu-central-1.pv-ebs = "ami-7a947615";
- "16.03".eu-central-1.pv-s3 = "ami-729b791d";
- "16.03".eu-west-1.hvm-ebs = "ami-ff27a98c";
- "16.03".eu-west-1.hvm-s3 = "ami-6c21af1f";
- "16.03".eu-west-1.pv-ebs = "ami-a33cb2d0";
- "16.03".eu-west-1.pv-s3 = "ami-ec38b69f";
- "16.03".sa-east-1.hvm-ebs = "ami-5bef6637";
- "16.03".sa-east-1.hvm-s3 = "ami-55f87139";
- "16.03".sa-east-1.pv-ebs = "ami-76e56c1a";
- "16.03".sa-east-1.pv-s3 = "ami-e1f8718d";
- "16.03".us-east-1.hvm-ebs = "ami-4bfd1926";
- "16.03".us-east-1.hvm-s3 = "ami-60c5210d";
- "16.03".us-east-1.pv-ebs = "ami-c0c92dad";
- "16.03".us-east-1.pv-s3 = "ami-f9d63294";
- "16.03".us-west-1.hvm-ebs = "ami-13aad473";
- "16.03".us-west-1.hvm-s3 = "ami-e1a8d681";
- "16.03".us-west-1.pv-ebs = "ami-c0a6d8a0";
- "16.03".us-west-1.pv-s3 = "ami-6aa9d70a";
- "16.03".us-west-2.hvm-ebs = "ami-265dad46";
- "16.03".us-west-2.hvm-s3 = "ami-cd40b0ad";
- "16.03".us-west-2.pv-ebs = "ami-7b4aba1b";
- "16.03".us-west-2.pv-s3 = "ami-0849b968";
+ "16.03".ap-northeast-1.hvm-ebs = "ami-40619d21";
+ "16.03".ap-northeast-1.hvm-s3 = "ami-ce629eaf";
+ "16.03".ap-northeast-1.pv-ebs = "ami-ef639f8e";
+ "16.03".ap-northeast-1.pv-s3 = "ami-a1609cc0";
+ "16.03".ap-northeast-2.hvm-ebs = "ami-deca00b0";
+ "16.03".ap-northeast-2.hvm-s3 = "ami-a3b77dcd";
+ "16.03".ap-northeast-2.pv-ebs = "ami-7bcb0115";
+ "16.03".ap-northeast-2.pv-s3 = "ami-a2b77dcc";
+ "16.03".ap-south-1.hvm-ebs = "ami-0dff9562";
+ "16.03".ap-south-1.hvm-s3 = "ami-13f69c7c";
+ "16.03".ap-south-1.pv-ebs = "ami-0ef39961";
+ "16.03".ap-south-1.pv-s3 = "ami-e0c8a28f";
+ "16.03".ap-southeast-1.hvm-ebs = "ami-5e964a3d";
+ "16.03".ap-southeast-1.hvm-s3 = "ami-4d964a2e";
+ "16.03".ap-southeast-1.pv-ebs = "ami-ec9b478f";
+ "16.03".ap-southeast-1.pv-s3 = "ami-999b47fa";
+ "16.03".ap-southeast-2.hvm-ebs = "ami-9f7359fc";
+ "16.03".ap-southeast-2.hvm-s3 = "ami-987359fb";
+ "16.03".ap-southeast-2.pv-ebs = "ami-a2705ac1";
+ "16.03".ap-southeast-2.pv-s3 = "ami-a3705ac0";
+ "16.03".eu-central-1.hvm-ebs = "ami-17a45178";
+ "16.03".eu-central-1.hvm-s3 = "ami-f9a55096";
+ "16.03".eu-central-1.pv-ebs = "ami-c8a550a7";
+ "16.03".eu-central-1.pv-s3 = "ami-6ea45101";
+ "16.03".eu-west-1.hvm-ebs = "ami-b5b3d5c6";
+ "16.03".eu-west-1.hvm-s3 = "ami-c986e0ba";
+ "16.03".eu-west-1.pv-ebs = "ami-b083e5c3";
+ "16.03".eu-west-1.pv-s3 = "ami-3c83e54f";
+ "16.03".sa-east-1.hvm-ebs = "ami-f6eb7f9a";
+ "16.03".sa-east-1.hvm-s3 = "ami-93e773ff";
+ "16.03".sa-east-1.pv-ebs = "ami-cbb82ca7";
+ "16.03".sa-east-1.pv-s3 = "ami-abb82cc7";
+ "16.03".us-east-1.hvm-ebs = "ami-c123a3d6";
+ "16.03".us-east-1.hvm-s3 = "ami-bc25a5ab";
+ "16.03".us-east-1.pv-ebs = "ami-bd25a5aa";
+ "16.03".us-east-1.pv-s3 = "ami-a325a5b4";
+ "16.03".us-west-1.hvm-ebs = "ami-748bcd14";
+ "16.03".us-west-1.hvm-s3 = "ami-a68dcbc6";
+ "16.03".us-west-1.pv-ebs = "ami-048acc64";
+ "16.03".us-west-1.pv-s3 = "ami-208dcb40";
+ "16.03".us-west-2.hvm-ebs = "ami-8263a0e2";
+ "16.03".us-west-2.hvm-s3 = "ami-925c9ff2";
+ "16.03".us-west-2.pv-ebs = "ami-5e61a23e";
+ "16.03".us-west-2.pv-s3 = "ami-734c8f13";
}
diff --git a/nixos/modules/virtualisation/libvirtd.nix b/nixos/modules/virtualisation/libvirtd.nix
index 67fbb8263b0..ea503a9526f 100644
--- a/nixos/modules/virtualisation/libvirtd.nix
+++ b/nixos/modules/virtualisation/libvirtd.nix
@@ -1,5 +1,3 @@
-# Systemd services for libvirtd.
-
{ config, lib, pkgs, ... }:
with lib;
@@ -16,71 +14,59 @@ let
${cfg.extraConfig}
'';
-in
+in {
-{
###### interface
options = {
- virtualisation.libvirtd.enable =
- mkOption {
- type = types.bool;
- default = false;
- description =
- ''
- This option enables libvirtd, a daemon that manages
- virtual machines. Users in the "libvirtd" group can interact with
- the daemon (e.g. to start or stop VMs) using the
- virsh command line tool, among others.
- '';
- };
+ virtualisation.libvirtd.enable = mkOption {
+ type = types.bool;
+ default = false;
+ description = ''
+ This option enables libvirtd, a daemon that manages
+ virtual machines. Users in the "libvirtd" group can interact with
+ the daemon (e.g. to start or stop VMs) using the
+ virsh command line tool, among others.
+ '';
+ };
- virtualisation.libvirtd.enableKVM =
- mkOption {
- type = types.bool;
- default = true;
- description =
- ''
- This option enables support for QEMU/KVM in libvirtd.
- '';
- };
+ virtualisation.libvirtd.enableKVM = mkOption {
+ type = types.bool;
+ default = true;
+ description = ''
+ This option enables support for QEMU/KVM in libvirtd.
+ '';
+ };
- virtualisation.libvirtd.extraConfig =
- mkOption {
- type = types.lines;
- default = "";
- description =
- ''
- Extra contents appended to the libvirtd configuration file,
- libvirtd.conf.
- '';
- };
+ virtualisation.libvirtd.extraConfig = mkOption {
+ type = types.lines;
+ default = "";
+ description = ''
+ Extra contents appended to the libvirtd configuration file,
+ libvirtd.conf.
+ '';
+ };
- virtualisation.libvirtd.extraOptions =
- mkOption {
- type = types.listOf types.str;
- default = [ ];
- example = [ "--verbose" ];
- description =
- ''
- Extra command line arguments passed to libvirtd on startup.
- '';
- };
-
- virtualisation.libvirtd.onShutdown =
- mkOption {
- type = types.enum ["shutdown" "suspend" ];
- default = "suspend";
- description =
- ''
- When shutting down / restarting the host what method should
- be used to gracefully halt the guests. Setting to "shutdown"
- will cause an ACPI shutdown of each guest. "suspend" will
- attempt to save the state of the guests ready to restore on boot.
- '';
- };
+ virtualisation.libvirtd.extraOptions = mkOption {
+ type = types.listOf types.str;
+ default = [ ];
+ example = [ "--verbose" ];
+ description = ''
+ Extra command line arguments passed to libvirtd on startup.
+ '';
+ };
+ virtualisation.libvirtd.onShutdown = mkOption {
+ type = types.enum ["shutdown" "suspend" ];
+ default = "suspend";
+ description = ''
+ When shutting down / restarting the host what method should
+ be used to gracefully halt the guests. Setting to "shutdown"
+ will cause an ACPI shutdown of each guest. "suspend" will
+ attempt to save the state of the guests ready to restore on boot.
+ '';
+ };
};
@@ -95,103 +81,87 @@ in
boot.kernelModules = [ "tun" ];
- systemd.services.libvirtd =
- { description = "Libvirt Virtual Machine Management Daemon";
+ users.extraGroups.libvirtd.gid = config.ids.gids.libvirtd;
- wantedBy = [ "multi-user.target" ];
- after = [ "systemd-udev-settle.service" ]
- ++ optional vswitch.enable "vswitchd.service";
-
- path = [
- pkgs.bridge-utils
- pkgs.dmidecode
- pkgs.dnsmasq
- pkgs.ebtables
- ]
- ++ optional cfg.enableKVM pkgs.qemu_kvm
- ++ optional vswitch.enable vswitch.package;
-
- preStart =
- ''
- mkdir -p /var/log/libvirt/qemu -m 755
- rm -f /var/run/libvirtd.pid
-
- mkdir -p /var/lib/libvirt
- mkdir -p /var/lib/libvirt/dnsmasq
-
- chmod 755 /var/lib/libvirt
- chmod 755 /var/lib/libvirt/dnsmasq
-
- # Copy default libvirt network config .xml files to /var/lib
- # Files modified by the user will not be overwritten
- for i in $(cd ${pkgs.libvirt}/var/lib && echo \
- libvirt/qemu/networks/*.xml libvirt/qemu/networks/autostart/*.xml \
- libvirt/nwfilter/*.xml );
- do
- mkdir -p /var/lib/$(dirname $i) -m 755
- cp -npd ${pkgs.libvirt}/var/lib/$i /var/lib/$i
- done
-
- # libvirtd puts the full path of the emulator binary in the machine
- # config file. But this path can unfortunately be garbage collected
- # while still being used by the virtual machine. So update the
- # emulator path on each startup to something valid (re-scan $PATH).
- for file in /etc/libvirt/qemu/*.xml /etc/libvirt/lxc/*.xml; do
- test -f "$file" || continue
- # get (old) emulator path from config file
- emulator=$(grep "^[[:space:]]*" "$file" | sed 's,^[[:space:]]*\(.*\) .*,\1,')
- # get a (definitely) working emulator path by re-scanning $PATH
- new_emulator=$(PATH=${pkgs.libvirt}/libexec:$PATH command -v $(basename "$emulator"))
- # write back
- sed -i "s,^[[:space:]]*.*, $new_emulator ," "$file"
- done
- ''; # */
-
- serviceConfig.ExecStart = ''@${pkgs.libvirt}/sbin/libvirtd libvirtd --config "${configFile}" --daemon ${concatStringsSep " " cfg.extraOptions}'';
- serviceConfig.Type = "forking";
- serviceConfig.KillMode = "process"; # when stopping, leave the VMs alone
-
- # Wait until libvirtd is ready to accept requests.
- postStart =
- ''
- for ((i = 0; i < 60; i++)); do
- if ${pkgs.libvirt}/bin/virsh list > /dev/null; then exit 0; fi
- sleep 1
- done
- exit 1 # !!! seems to be ignored
- '';
- };
-
- systemd.services."libvirt-guests" = {
- description = "Libvirt Virtual Machines";
+ systemd.services.libvirtd = {
+ description = "Libvirt Virtual Machine Management Daemon";
wantedBy = [ "multi-user.target" ];
- wants = [ "libvirtd.service" ];
- after = [ "libvirtd.service" ];
+ after = [ "systemd-udev-settle.service" ]
+ ++ optional vswitch.enable "vswitchd.service";
- restartIfChanged = false;
-
- path = with pkgs; [ gettext libvirt gawk ];
+ path = [
+ pkgs.bridge-utils
+ pkgs.dmidecode
+ pkgs.dnsmasq
+ pkgs.ebtables
+ ]
+ ++ optional cfg.enableKVM pkgs.qemu_kvm
+ ++ optional vswitch.enable vswitch.package;
preStart = ''
- mkdir -p /var/lock/subsys -m 755
- ${pkgs.libvirt}/etc/rc.d/init.d/libvirt-guests start || true
- '';
+ mkdir -p /var/log/libvirt/qemu -m 755
+ rm -f /var/run/libvirtd.pid
- postStop = ''
- export PATH=${pkgs.gettext}/bin:$PATH
- export ON_SHUTDOWN=${cfg.onShutdown}
- ${pkgs.libvirt}/etc/rc.d/init.d/libvirt-guests stop
- '';
+ mkdir -p /var/lib/libvirt
+ mkdir -p /var/lib/libvirt/dnsmasq
+
+ chmod 755 /var/lib/libvirt
+ chmod 755 /var/lib/libvirt/dnsmasq
+
+ # Copy default libvirt network config .xml files to /var/lib
+ # Files modified by the user will not be overwritten
+ for i in $(cd ${pkgs.libvirt}/var/lib && echo \
+ libvirt/qemu/networks/*.xml libvirt/qemu/networks/autostart/*.xml \
+ libvirt/nwfilter/*.xml );
+ do
+ mkdir -p /var/lib/$(dirname $i) -m 755
+ cp -npd ${pkgs.libvirt}/var/lib/$i /var/lib/$i
+ done
+
+ # libvirtd puts the full path of the emulator binary in the machine
+ # config file. But this path can unfortunately be garbage collected
+ # while still being used by the virtual machine. So update the
+ # emulator path on each startup to something valid (re-scan $PATH).
+ for file in /etc/libvirt/qemu/*.xml /etc/libvirt/lxc/*.xml; do
+ test -f "$file" || continue
+ # get (old) emulator path from config file
+ emulator=$(grep "^[[:space:]]*" "$file" | sed 's,^[[:space:]]*\(.*\) .*,\1,')
+ # get a (definitely) working emulator path by re-scanning $PATH
+ new_emulator=$(PATH=${pkgs.libvirt}/libexec:$PATH command -v $(basename "$emulator"))
+ # write back
+ sed -i "s,^[[:space:]]*.*, $new_emulator ," "$file"
+ done
+ ''; # */
serviceConfig = {
- Type = "oneshot";
- RemainAfterExit = true;
+ ExecStart = ''@${pkgs.libvirt}/sbin/libvirtd libvirtd --config "${configFile}" ${concatStringsSep " " cfg.extraOptions}'';
+ Type = "notify";
+ KillMode = "process"; # when stopping, leave the VMs alone
+ Restart = "on-failure";
};
};
- users.extraGroups.libvirtd.gid = config.ids.gids.libvirtd;
+ systemd.sockets.virtlogd = {
+ description = "Virtual machine log manager socket";
+ wantedBy = [ "sockets.target" ];
+ listenStreams = [ "/run/libvirt/virtlogd-sock" ];
+ };
+ systemd.services.virtlogd = {
+ description = "Virtual machine log manager";
+ serviceConfig.ExecStart = "@${pkgs.libvirt}/sbin/virtlogd virtlogd";
+ };
+
+ systemd.sockets.virtlockd = {
+ description = "Virtual machine lock manager socket";
+ wantedBy = [ "sockets.target" ];
+ listenStreams = [ "/run/libvirt/virtlockd-sock" ];
+ };
+
+ systemd.services.virtlockd = {
+ description = "Virtual machine lock manager";
+ serviceConfig.ExecStart = "@${pkgs.libvirt}/sbin/virtlockd virtlockd";
+ };
};
-
}
diff --git a/nixos/modules/virtualisation/lxd.nix b/nixos/modules/virtualisation/lxd.nix
index 845f14352f3..9d76b890872 100644
--- a/nixos/modules/virtualisation/lxd.nix
+++ b/nixos/modules/virtualisation/lxd.nix
@@ -47,7 +47,7 @@ in
# TODO(wkennington): Add lvm2 and thin-provisioning-tools
path = with pkgs; [ acl rsync gnutar xz btrfs-progs ];
- serviceConfig.ExecStart = "@${pkgs.lxd}/bin/lxd lxd --syslog --group lxd";
+ serviceConfig.ExecStart = "@${pkgs.lxd.bin}/bin/lxd lxd --syslog --group lxd";
serviceConfig.Type = "simple";
serviceConfig.KillMode = "process"; # when stopping, leave the containers alone
};
diff --git a/nixos/release-combined.nix b/nixos/release-combined.nix
index f275291c716..9cc1ee762a8 100644
--- a/nixos/release-combined.nix
+++ b/nixos/release-combined.nix
@@ -68,6 +68,7 @@ in rec {
(all nixos.tests.boot.uefiCdrom)
(all nixos.tests.boot.uefiUsb)
(all nixos.tests.boot-stage1)
+ (all nixos.tests.ecryptfs)
(all nixos.tests.ipv6)
(all nixos.tests.i3wm)
(all nixos.tests.kde4)
diff --git a/nixos/release.nix b/nixos/release.nix
index c8547784bbc..1800122fa2e 100644
--- a/nixos/release.nix
+++ b/nixos/release.nix
@@ -220,6 +220,7 @@ in rec {
tests.docker = hydraJob (import tests/docker.nix { system = "x86_64-linux"; });
tests.dockerRegistry = hydraJob (import tests/docker-registry.nix { system = "x86_64-linux"; });
tests.dnscrypt-proxy = callTest tests/dnscrypt-proxy.nix { system = "x86_64-linux"; };
+ tests.ecryptfs = callTest tests/ecryptfs.nix {};
tests.etcd = hydraJob (import tests/etcd.nix { system = "x86_64-linux"; });
tests.ec2-nixops = hydraJob (import tests/ec2.nix { system = "x86_64-linux"; }).boot-ec2-nixops;
tests.ec2-config = hydraJob (import tests/ec2.nix { system = "x86_64-linux"; }).boot-ec2-config;
diff --git a/nixos/tests/ecryptfs.nix b/nixos/tests/ecryptfs.nix
new file mode 100644
index 00000000000..eceb25a0dea
--- /dev/null
+++ b/nixos/tests/ecryptfs.nix
@@ -0,0 +1,81 @@
+import ./make-test.nix ({ pkgs, ... }:
+{
+ name = "ecryptfs";
+
+ machine = { config, pkgs, ... }: {
+ imports = [ ./common/user-account.nix ];
+ boot.kernelModules = [ "ecryptfs" ];
+ security.pam.enableEcryptfs = true;
+ environment.systemPackages = with pkgs; [ keyutils ];
+ };
+
+ testScript = ''
+ $machine->waitForUnit("default.target");
+
+ # Set alice up with a password and a home
+ $machine->succeed("(echo foobar; echo foobar) | passwd alice");
+ $machine->succeed("chown -R alice.users ~alice");
+
+ # Migrate alice's home
+ my $out = $machine->succeed("echo foobar | ecryptfs-migrate-home -u alice");
+ $machine->log("ecryptfs-migrate-home said: $out");
+
+ # Log alice in (ecryptfs passwhrase is wrapped during first login)
+ $machine->sleep(2); # urgh: wait for username prompt
+ $machine->sendChars("alice\n");
+ $machine->sleep(1);
+ $machine->sendChars("foobar\n");
+ $machine->sleep(2);
+ $machine->sendChars("logout\n");
+ $machine->sleep(2);
+
+ # Why do I need to do this??
+ $machine->succeed("su alice -c ecryptfs-umount-private");
+ $machine->sleep(1);
+ $machine->fail("mount | grep ecryptfs"); # check that encrypted home is not mounted
+
+ # Show contents of the user keyring
+ my $out = $machine->succeed("su - alice -c 'keyctl list \@u'");
+ $machine->log("keyctl unlink said: " . $out);
+
+ # Log alice again
+ $machine->sendChars("alice\n");
+ $machine->sleep(1);
+ $machine->sendChars("foobar\n");
+ $machine->sleep(2);
+
+ # Create some files in encrypted home
+ $machine->succeed("su alice -c 'touch ~alice/a'");
+ $machine->succeed("su alice -c 'echo c > ~alice/b'");
+
+ # Logout
+ $machine->sendChars("logout\n");
+ $machine->sleep(2);
+
+ # Why do I need to do this??
+ $machine->succeed("su alice -c ecryptfs-umount-private");
+ $machine->sleep(1);
+
+ # Check that the filesystem is not accessible
+ $machine->fail("mount | grep ecryptfs");
+ $machine->succeed("su alice -c 'test \! -f ~alice/a'");
+ $machine->succeed("su alice -c 'test \! -f ~alice/b'");
+
+ # Log alice once more
+ $machine->sendChars("alice\n");
+ $machine->sleep(1);
+ $machine->sendChars("foobar\n");
+ $machine->sleep(2);
+
+ # Check that the files are there
+ $machine->sleep(1);
+ $machine->succeed("su alice -c 'test -f ~alice/a'");
+ $machine->succeed("su alice -c 'test -f ~alice/b'");
+ $machine->succeed(qq%test "\$(cat ~alice/b)" = "c"%);
+
+ # Catch https://github.com/NixOS/nixpkgs/issues/16766
+ $machine->succeed("su alice -c 'ls -lh ~alice/'");
+
+ $machine->sendChars("logout\n");
+ '';
+})
diff --git a/nixos/tests/emacs-daemon.nix b/nixos/tests/emacs-daemon.nix
new file mode 100644
index 00000000000..a4d63bdb7e4
--- /dev/null
+++ b/nixos/tests/emacs-daemon.nix
@@ -0,0 +1,45 @@
+import ./make-test.nix ({ pkgs, ...} : {
+ name = "emacs-daemon";
+ meta = with pkgs.stdenv.lib.maintainers; {
+ maintainers = [ DamienCassou ];
+ };
+
+ enableOCR = true;
+
+ machine =
+ { config, pkgs, ... }:
+
+ { imports = [ ./common/x11.nix ];
+ services.emacs = {
+ enable = true;
+ defaultEditor = true;
+ };
+
+ # Important to get the systemd service running for root
+ environment.variables.XDG_RUNTIME_DIR = "/run/user/0";
+
+ environment.variables.TEST_SYSTEM_VARIABLE = "system variable";
+ };
+
+ testScript =
+ ''
+ $machine->waitForUnit("multi-user.target");
+
+ # checks that the EDITOR environment variable is set
+ $machine->succeed("test \$(basename \"\$EDITOR\") = emacseditor");
+
+ # waits for the emacs service to be ready
+ $machine->waitUntilSucceeds("systemctl --user status emacs.service | grep 'Active: active'");
+
+ # connects to the daemon
+ $machine->succeed("emacsclient --create-frame \$EDITOR &");
+
+ # checks that Emacs shows the edited filename
+ $machine->waitForText("emacseditor");
+
+ # makes sure environment variables are accessible from Emacs
+ $machine->succeed("emacsclient --eval '(getenv \"TEST_SYSTEM_VARIABLE\")'") =~ /system variable/ or die;
+
+ $machine->screenshot("emacsclient");
+ '';
+})
diff --git a/nixos/tests/gnome3_20-gdm.nix b/nixos/tests/gnome3_18-gdm.nix
similarity index 100%
rename from nixos/tests/gnome3_20-gdm.nix
rename to nixos/tests/gnome3_18-gdm.nix
diff --git a/nixos/tests/gnome3_20.nix b/nixos/tests/gnome3_18.nix
similarity index 95%
rename from nixos/tests/gnome3_20.nix
rename to nixos/tests/gnome3_18.nix
index 51c83a4e312..2c88e6abe89 100644
--- a/nixos/tests/gnome3_20.nix
+++ b/nixos/tests/gnome3_18.nix
@@ -15,7 +15,7 @@ import ./make-test.nix ({ pkgs, ...} : {
services.xserver.displayManager.auto.user = "alice";
services.xserver.desktopManager.gnome3.enable = true;
- environment.gnome3.packageSet = pkgs.gnome3_20;
+ environment.gnome3.packageSet = pkgs.gnome3_18;
virtualisation.memorySize = 512;
};
diff --git a/nixos/tests/grsecurity.nix b/nixos/tests/grsecurity.nix
index 14f1aa9ff88..aadbfd8371f 100644
--- a/nixos/tests/grsecurity.nix
+++ b/nixos/tests/grsecurity.nix
@@ -3,17 +3,39 @@
import ./make-test.nix ({ pkgs, ...} : {
name = "grsecurity";
meta = with pkgs.stdenv.lib.maintainers; {
- maintainers = [ copumpkin ];
+ maintainers = [ copumpkin joachifm ];
};
machine = { config, pkgs, ... }:
- { boot.kernelPackages = pkgs.linuxPackages_grsec_testing_server; };
+ { security.grsecurity.enable = true;
+ boot.kernel.sysctl."kernel.grsecurity.deter_bruteforce" = 0;
+ security.apparmor.enable = true;
+ };
- testScript =
- ''
- $machine->succeed("uname -a") =~ /grsec/;
- # FIXME: this seems to hang the whole test. Unclear why, but let's fix it
- # $machine->succeed("${pkgs.paxtest}/bin/paxtest blackhat");
- '';
+ testScript = ''
+ subtest "grsec-lock", sub {
+ $machine->succeed("systemctl is-active grsec-lock");
+ $machine->succeed("grep -Fq 1 /proc/sys/kernel/grsecurity/grsec_lock");
+ $machine->fail("echo -n 0 >/proc/sys/kernel/grsecurity/grsec_lock");
+ };
+
+ subtest "paxtest", sub {
+ # TODO: running paxtest blackhat hangs the vm
+ $machine->succeed("${pkgs.paxtest}/lib/paxtest/anonmap") =~ /Killed/ or die;
+ $machine->succeed("${pkgs.paxtest}/lib/paxtest/execbss") =~ /Killed/ or die;
+ $machine->succeed("${pkgs.paxtest}/lib/paxtest/execdata") =~ /Killed/ or die;
+ $machine->succeed("${pkgs.paxtest}/lib/paxtest/execheap") =~ /Killed/ or die;
+ $machine->succeed("${pkgs.paxtest}/lib/paxtest/execstack") =~ /Killed/ or die;
+ $machine->succeed("${pkgs.paxtest}/lib/paxtest/mprotanon") =~ /Killed/ or die;
+ $machine->succeed("${pkgs.paxtest}/lib/paxtest/mprotbss") =~ /Killed/ or die;
+ $machine->succeed("${pkgs.paxtest}/lib/paxtest/mprotdata") =~ /Killed/ or die;
+ $machine->succeed("${pkgs.paxtest}/lib/paxtest/mprotheap") =~ /Killed/ or die;
+ $machine->succeed("${pkgs.paxtest}/lib/paxtest/mprotstack") =~ /Killed/ or die;
+ };
+
+ subtest "tcc", sub {
+ $machine->execute("echo -e '#include \nint main(void) { puts(\"hello\"); return 0; }' >main.c");
+ $machine->succeed("${pkgs.tinycc.bin}/bin/tcc -run main.c");
+ };
+ '';
})
-
diff --git a/pkgs/applications/audio/cantata/default.nix b/pkgs/applications/audio/cantata/default.nix
index 6906c7bccb5..f4e1fe8b151 100644
--- a/pkgs/applications/audio/cantata/default.nix
+++ b/pkgs/applications/audio/cantata/default.nix
@@ -103,7 +103,7 @@ stdenv.mkDerivation rec {
'';
meta = with stdenv.lib; {
- homepage = http://code.google.com/p/cantata/;
+ homepage = https://github.com/cdrummond/cantata;
description = "A graphical client for MPD";
license = licenses.gpl3;
diff --git a/pkgs/applications/audio/cd-discid/default.nix b/pkgs/applications/audio/cd-discid/default.nix
index 7e0c245d357..5286362b50f 100644
--- a/pkgs/applications/audio/cd-discid/default.nix
+++ b/pkgs/applications/audio/cd-discid/default.nix
@@ -16,7 +16,7 @@ stdenv.mkDerivation rec {
license = licenses.gpl2Plus;
maintainers = [ maintainers.rycee ];
platforms = platforms.unix;
- description = "command-line utility to get CDDB discid information from a CD-ROM disc";
+ description = "Command-line utility to get CDDB discid information from a CD-ROM disc";
longDescription = ''
cd-discid is a backend utility to get CDDB discid information
diff --git a/pkgs/applications/audio/cmus/default.nix b/pkgs/applications/audio/cmus/default.nix
index 4aba1a53075..826ba186cef 100644
--- a/pkgs/applications/audio/cmus/default.nix
+++ b/pkgs/applications/audio/cmus/default.nix
@@ -93,13 +93,13 @@ in
stdenv.mkDerivation rec {
name = "cmus-${version}";
- version = "2.7.0";
+ version = "2.7.1";
src = fetchFromGitHub {
owner = "cmus";
repo = "cmus";
- rev = "0306cc74c5073a85cf8619c61da5b94a3f863eaa";
- sha256 = "18w9mznb843nzkrcqvshfha51mlpdl92zlvb5wfc5dpgrbf37728";
+ rev = "v${version}";
+ sha256 = "0xd96py21bl869qlv1353zw7xsgq6v5s8szr0ldr63zj5fgc2ps5";
};
patches = [ ./option-debugging.patch ];
diff --git a/pkgs/applications/audio/csound/default.nix b/pkgs/applications/audio/csound/default.nix
index e1c063d823d..166ed592ad8 100644
--- a/pkgs/applications/audio/csound/default.nix
+++ b/pkgs/applications/audio/csound/default.nix
@@ -26,7 +26,7 @@ stdenv.mkDerivation {
buildInputs = [ cmake libsndfile flex bison alsaLib libpulseaudio tcltk ];
meta = {
- description = "sound design, audio synthesis, and signal processing system, providing facilities for music composition and performance on all major operating systems and platforms";
+ description = "Sound design, audio synthesis, and signal processing system, providing facilities for music composition and performance on all major operating systems and platforms";
homepage = http://www.csounds.com/;
license = stdenv.lib.licenses.gpl2;
maintainers = [stdenv.lib.maintainers.marcweber];
diff --git a/pkgs/applications/audio/i-score/default.nix b/pkgs/applications/audio/i-score/default.nix
index 17fadfe8b1f..97e8f5f1429 100644
--- a/pkgs/applications/audio/i-score/default.nix
+++ b/pkgs/applications/audio/i-score/default.nix
@@ -3,7 +3,7 @@
cln,
cmake,
fetchgit,
- gcc5,
+ gcc,
ginac,
jamomacore,
kde5,
@@ -37,7 +37,7 @@ stdenv.mkDerivation rec {
cln
cmake
ginac
- gcc5
+ gcc
jamomacore
kde5.kdnssd
libsndfile
diff --git a/pkgs/applications/audio/pianobar/default.nix b/pkgs/applications/audio/pianobar/default.nix
index 09bb75b2e41..87f79583c3b 100644
--- a/pkgs/applications/audio/pianobar/default.nix
+++ b/pkgs/applications/audio/pianobar/default.nix
@@ -1,11 +1,11 @@
{ fetchurl, stdenv, pkgconfig, libao, readline, json_c, libgcrypt, libav, curl }:
stdenv.mkDerivation rec {
- name = "pianobar-2015.11.22";
+ name = "pianobar-2016.06.02";
src = fetchurl {
url = "http://6xq.net/projects/pianobar/${name}.tar.bz2";
- sha256 = "0arjvs31d108l1mn2k2hxbpg3mxs47vqzxm0lzdpfcjvypkckyr3";
+ sha256 = "0n9544bfsdp04xqcjm4nhfvp357dx0c3gpys0rjkq09nzv8b1vy6";
};
buildInputs = [
diff --git a/pkgs/applications/audio/qsampler/default.nix b/pkgs/applications/audio/qsampler/default.nix
index b851517b872..692938884b6 100644
--- a/pkgs/applications/audio/qsampler/default.nix
+++ b/pkgs/applications/audio/qsampler/default.nix
@@ -17,7 +17,7 @@ stdenv.mkDerivation rec {
meta = with stdenv.lib; {
homepage = http://www.linuxsampler.org;
- description = "graphical frontend to LinuxSampler";
+ description = "Graphical frontend to LinuxSampler";
license = licenses.gpl2;
maintainers = [ maintainers.goibhniu ];
platforms = platforms.linux;
diff --git a/pkgs/applications/audio/rakarrack/default.nix b/pkgs/applications/audio/rakarrack/default.nix
index 822e0d5548b..ec71cfb427c 100644
--- a/pkgs/applications/audio/rakarrack/default.nix
+++ b/pkgs/applications/audio/rakarrack/default.nix
@@ -18,7 +18,7 @@ stdenv.mkDerivation rec {
libpng libsamplerate libsndfile zlib ];
meta = with stdenv.lib; {
- description = "multi-effects processor emulating a guitar effects pedalboard";
+ description = "Multi-effects processor emulating a guitar effects pedalboard";
homepage = http://rakarrack.sourceforge.net;
license = licenses.gpl2;
platforms = platforms.linux;
diff --git a/pkgs/applications/audio/renoise/default.nix b/pkgs/applications/audio/renoise/default.nix
index 7b4c1143fb4..91e8f1be6ec 100644
--- a/pkgs/applications/audio/renoise/default.nix
+++ b/pkgs/applications/audio/renoise/default.nix
@@ -54,7 +54,7 @@ stdenv.mkDerivation rec {
'';
meta = {
- description = "modern tracker-based DAW";
+ description = "Modern tracker-based DAW";
homepage = http://www.renoise.com/;
license = stdenv.lib.licenses.unfree;
};
diff --git a/pkgs/applications/audio/seq24/default.nix b/pkgs/applications/audio/seq24/default.nix
index 7976a7bf678..d1de6f1abd4 100644
--- a/pkgs/applications/audio/seq24/default.nix
+++ b/pkgs/applications/audio/seq24/default.nix
@@ -13,7 +13,7 @@ stdenv.mkDerivation rec {
nativeBuildInputs = [ pkgconfig ];
meta = with stdenv.lib; {
- description = "minimal loop based midi sequencer";
+ description = "Minimal loop based midi sequencer";
homepage = "http://www.filter24.org/seq24";
license = licenses.gpl2;
platforms = platforms.linux;
diff --git a/pkgs/applications/audio/shntool/default.nix b/pkgs/applications/audio/shntool/default.nix
index 12ef79d746e..8645251b384 100644
--- a/pkgs/applications/audio/shntool/default.nix
+++ b/pkgs/applications/audio/shntool/default.nix
@@ -12,7 +12,7 @@ stdenv.mkDerivation rec {
buildInputs = [ flac ];
meta = {
- description = "multi-purpose WAVE data processing and reporting utility";
+ description = "Multi-purpose WAVE data processing and reporting utility";
homepage = http://www.etree.org/shnutils/shntool/;
license = stdenv.lib.licenses.gpl2Plus;
platforms = stdenv.lib.platforms.all;
diff --git a/pkgs/applications/audio/spotify/default.nix b/pkgs/applications/audio/spotify/default.nix
index d6db4403d77..e9c1d7d8119 100644
--- a/pkgs/applications/audio/spotify/default.nix
+++ b/pkgs/applications/audio/spotify/default.nix
@@ -5,7 +5,7 @@
assert stdenv.system == "x86_64-linux";
let
- version = "1.0.28.89.gf959d4ce-37";
+ version = "1.0.32.96.g3c8a06e6-37";
deps = [
alsaLib
@@ -50,7 +50,7 @@ stdenv.mkDerivation {
src =
fetchurl {
url = "http://repository-origin.spotify.com/pool/non-free/s/spotify-client/spotify-client_${version}_amd64.deb";
- sha256 = "06v6fmjn0zi1riqhbmwkrq4m1q1vs95p348i8c12hqvsrp0g2qy5";
+ sha256 = "0nk5sf3x9vf5ivm035h7rnjx0wvqlvii1i2mwvv50h86wmc25iih";
};
buildInputs = [ dpkg makeWrapper ];
diff --git a/pkgs/applications/audio/squeezelite/default.nix b/pkgs/applications/audio/squeezelite/default.nix
new file mode 100644
index 00000000000..20f6271c7ad
--- /dev/null
+++ b/pkgs/applications/audio/squeezelite/default.nix
@@ -0,0 +1,26 @@
+{ stdenv, fetchFromGitHub, alsaLib, faad2, flac, libmad, libvorbis, mpg123 }:
+
+stdenv.mkDerivation {
+ name = "squeezelite-git-2016-05-27";
+
+ src = fetchFromGitHub {
+ owner = "ralph-irving";
+ repo = "squeezelite";
+ rev = "e37ed17fed9e11a7346cbe9f1e1deeccc051f42e";
+ sha256 = "15ihx2dbp4kr6k6r50g9q5npqad5zyv8nqf5cr37bhg964syvbdm";
+ };
+
+ buildInputs = [ alsaLib faad2 flac libmad libvorbis mpg123 ];
+
+ installPhase = ''
+ mkdir -p $out/bin
+ cp squeezelite $out/bin
+ '';
+
+ meta = with stdenv.lib; {
+ description = "Lightweight headless squeezebox client emulator";
+ homepage = https://github.com/ralph-irving/squeezelite;
+ license = licenses.gpl3;
+ platforms = platforms.linux;
+ };
+}
diff --git a/pkgs/applications/audio/xsynth-dssi/default.nix b/pkgs/applications/audio/xsynth-dssi/default.nix
index c4ed20defd6..96da8ad8c55 100644
--- a/pkgs/applications/audio/xsynth-dssi/default.nix
+++ b/pkgs/applications/audio/xsynth-dssi/default.nix
@@ -21,7 +21,7 @@ stdenv.mkDerivation rec {
'';
meta = with stdenv.lib; {
- description = "classic-analog (VCOs-VCF-VCA) style software synthesizer";
+ description = "Classic-analog (VCOs-VCF-VCA) style software synthesizer";
longDescription = ''
Xsynth-DSSI is a classic-analog (VCOs-VCF-VCA) style software
synthesizer which operates as a plugin for the DSSI Soft Synth
diff --git a/pkgs/applications/audio/yoshimi/default.nix b/pkgs/applications/audio/yoshimi/default.nix
index ab7eb10798d..0ec39940775 100644
--- a/pkgs/applications/audio/yoshimi/default.nix
+++ b/pkgs/applications/audio/yoshimi/default.nix
@@ -25,7 +25,7 @@ stdenv.mkDerivation rec {
cmakeFlags = [ "-DFLTK_MATH_LIBRARY=${stdenv.glibc.out}/lib/libm.so -DCMAKE_INSTALL_DATAROOTDIR=$out" ];
meta = with stdenv.lib; {
- description = "high quality software synthesizer based on ZynAddSubFX";
+ description = "High quality software synthesizer based on ZynAddSubFX";
longDescription = ''
Yoshimi delivers the same synthesizer capabilities as
ZynAddSubFX along with very good Jack and Alsa midi/audio
diff --git a/pkgs/applications/editors/atom/default.nix b/pkgs/applications/editors/atom/default.nix
index 5f0ba1b1901..620d0fb629e 100644
--- a/pkgs/applications/editors/atom/default.nix
+++ b/pkgs/applications/editors/atom/default.nix
@@ -2,11 +2,11 @@
stdenv.mkDerivation rec {
name = "atom-${version}";
- version = "1.7.3";
+ version = "1.8.0";
src = fetchurl {
url = "https://github.com/atom/atom/releases/download/v${version}/atom-amd64.deb";
- sha256 = "1fd6j05czir2z3bvkf0mixkfncp73jw8kgqgaqxjjg546381yb7a";
+ sha256 = "0x73n64y3jfwbwg6s9pmsajryrjrrx1a0dzf3ff6dbi5gvv950xi";
name = "${name}.deb";
};
diff --git a/pkgs/applications/editors/bviplus/default.nix b/pkgs/applications/editors/bviplus/default.nix
index d61fa182379..d08e006ec5b 100644
--- a/pkgs/applications/editors/bviplus/default.nix
+++ b/pkgs/applications/editors/bviplus/default.nix
@@ -13,13 +13,13 @@ stdenv.mkDerivation rec {
ncurses
];
- patches = [ ./gcc5.diff ];
-
makeFlags = "PREFIX=$(out)";
+ buildFlags = [ "CFLAGS=-fgnu89-inline" ];
+
meta = with stdenv.lib; {
- description = "ncurses based hex editor with a vim-like interface";
- homepage = "http://bviplus.sourceforge.net";
+ description = "Ncurses based hex editor with a vim-like interface";
+ homepage = http://bviplus.sourceforge.net;
license = licenses.gpl3;
platforms = platforms.linux;
maintainers = with maintainers; [ cstrahan ];
diff --git a/pkgs/applications/editors/bviplus/gcc5.diff b/pkgs/applications/editors/bviplus/gcc5.diff
deleted file mode 100644
index 75dc57151dd..00000000000
--- a/pkgs/applications/editors/bviplus/gcc5.diff
+++ /dev/null
@@ -1,11 +0,0 @@
---- bviplus-0.9.4/vf_backend.c 2016-02-07 15:58:47.265405962 +0000
-+++ bviplus-0.9.4/vf_backend.c 2016-02-07 16:04:30.020004919 +0000
-@@ -253,7 +253,7 @@
- /*---------------------------
-
- ---------------------------*/
--inline void compute_percent_complete(off_t offset, off_t size, int *complete)
-+extern void compute_percent_complete(off_t offset, off_t size, int *complete)
- {
- if (size == 0)
- {
diff --git a/pkgs/applications/editors/eclipse/default.nix b/pkgs/applications/editors/eclipse/default.nix
index e4eb6eb8f65..afb3eab625d 100644
--- a/pkgs/applications/editors/eclipse/default.nix
+++ b/pkgs/applications/editors/eclipse/default.nix
@@ -312,7 +312,7 @@ rec {
};
eclipse_sdk_451 = eclipse-sdk-451; # backward compatibility, added 2016-01-30
- eclipse-platform = eclipse-platform-452;
+ eclipse-platform = eclipse-platform-46;
eclipse-platform-45 = buildEclipse {
name = "eclipse-platform-4.5";
@@ -359,6 +359,21 @@ rec {
};
};
+ eclipse-platform-46 = buildEclipse {
+ name = "eclipse-platform-4.6";
+ description = "Eclipse platform";
+ sources = {
+ "x86_64-linux" = fetchurl {
+ url = https://www.eclipse.org/downloads/download.php?r=1&nf=1&file=/eclipse/downloads/drops4/R-4.6-201606061100/eclipse-SDK-4.6-linux-gtk-x86_64.tar.gz;
+ sha256 = "02lfa0f4j53q4ks3nal4jxnm1vc6xck2k9zng58izfh49v73jyjd";
+ };
+ "i686-linux" = fetchurl {
+ url = https://www.eclipse.org/downloads/download.php?r=1&nf=1&file=/eclipse/downloads/drops4/R-4.6-201606061100/eclipse-SDK-4.6-linux-gtk.tar.gz;
+ sha256 = "053hsy87jmr9phn934a4qny959d6inxjx8nlcmxa2165ra8d7qfr";
+ };
+ };
+ };
+
eclipseWithPlugins = { eclipse, plugins ? [], jvmArgs ? [] }:
let
# Gather up the desired plugins.
diff --git a/pkgs/applications/editors/eclipse/plugins.nix b/pkgs/applications/editors/eclipse/plugins.nix
index 10586341784..1f250280b10 100644
--- a/pkgs/applications/editors/eclipse/plugins.nix
+++ b/pkgs/applications/editors/eclipse/plugins.nix
@@ -171,12 +171,12 @@ rec {
checkstyle = buildEclipseUpdateSite rec {
name = "checkstyle-${version}";
- version = "6.16.0.201603042325";
+ version = "6.19.0.201606092149";
src = fetchzip {
stripRoot = false;
- url = "mirror://sourceforge/project/eclipse-cs/Eclipse%20Checkstyle%20Plug-in/6.16.0/net.sf.eclipsecs-updatesite_${version}.zip";
- sha256 = "0bm1linyw82bryblyabcx89zqw1ingh8mx62bwp3qj05yc9ksnly";
+ url = "mirror://sourceforge/project/eclipse-cs/Eclipse%20Checkstyle%20Plug-in/6.19.0/net.sf.eclipsecs-updatesite_${version}.zip";
+ sha256 = "0d066fihvdkisic0lsdvh947yd2v20xc8h4aknfcyg2mq3xzi0x7";
};
meta = with stdenv.lib; {
@@ -341,12 +341,12 @@ rec {
jdt = buildEclipseUpdateSite rec {
name = "jdt-${version}";
- version = "4.5.1";
+ version = "4.5.2";
src = fetchzip {
stripRoot = false;
- url = "https://www.eclipse.org/downloads/download.php?r=1&nf=1&file=/eclipse/downloads/drops4/R-4.5.1-201509040015/org.eclipse.jdt-4.5.1.zip";
- sha256 = "0nxi552vvpjalnsqhc0zi6fgaj9p22amxsiczpv7za4kr7m47x73";
+ url = "https://www.eclipse.org/downloads/download.php?r=1&nf=1&file=/eclipse/downloads/drops4/R-4.5.2-201602121500/org.eclipse.jdt-4.5.2.zip";
+ sha256 = "0v4cfq4z62k60l8l014wqgbjnd6a93dwcp6qvr5y7q1v9jr2na5g";
};
meta = with stdenv.lib; {
diff --git a/pkgs/applications/editors/edbrowse/default.nix b/pkgs/applications/editors/edbrowse/default.nix
index 712ede2e316..1d91a136876 100644
--- a/pkgs/applications/editors/edbrowse/default.nix
+++ b/pkgs/applications/editors/edbrowse/default.nix
@@ -1,13 +1,17 @@
-{ stdenv, fetchurl, spidermonkey_24, unzip, curl, pcre, readline, openssl }:
+{ stdenv, fetchurl, spidermonkey_24, unzip, curl, pcre, readline, openssl, perl, html-tidy }:
stdenv.mkDerivation rec {
name = "edbrowse-${version}";
- version = "3.5.4.1";
+ version = "3.6.1";
nativeBuildInputs = [ unzip ];
- buildInputs = [ curl pcre readline openssl spidermonkey_24 ];
+ buildInputs = [ curl pcre readline openssl spidermonkey_24 perl html-tidy ];
patchPhase = ''
substituteInPlace src/ebjs.c --replace \"edbrowse-js\" \"$out/bin/edbrowse-js\"
+ for i in ./tools/*.pl
+ do
+ substituteInPlace $i --replace "/usr/bin/perl" "${perl}/bin/perl"
+ done
'';
NIX_CFLAGS_COMPILE = "-I${spidermonkey_24.dev}/include/mozjs-24";
@@ -15,9 +19,9 @@ stdenv.mkDerivation rec {
src = fetchurl {
url = "http://edbrowse.org/${name}.zip";
- sha256 = "0fpzaalwvgwbns7yxq4a4i6hpdljmcjfyvx19r1dlb3vdfw0vx5l";
+ sha256 = "1grkn09r31nmvcnm76jkd8aclmd9n5141mpqvb86wndp9pa7gz7q";
};
- meta = {
+ meta = with stdenv.lib; {
description = "Command Line Editor Browser";
longDescription = ''
Edbrowse is a combination editor, browser, and mail client that is 100% text based.
@@ -26,8 +30,8 @@ stdenv.mkDerivation rec {
A batch job, or cron job, can access web pages on the internet, submit forms, and send email, with no human intervention whatsoever.
edbrowse can also tap into databases through odbc. It was primarily written by Karl Dahlke.
'';
- license = stdenv.lib.licenses.gpl1Plus;
+ license = licenses.gpl1Plus;
homepage = http://edbrowse.org/;
- maintainers = [ stdenv.lib.maintainers.schmitthenner ];
+ maintainers = [ maintainers.schmitthenner maintainers.vrthra ];
};
}
diff --git a/pkgs/applications/editors/edit/default.nix b/pkgs/applications/editors/edit/default.nix
new file mode 100644
index 00000000000..1a76ab40532
--- /dev/null
+++ b/pkgs/applications/editors/edit/default.nix
@@ -0,0 +1,39 @@
+{ stdenv, fetchgit, unzip, pkgconfig, ncurses, libX11, libXft, cwebbin }:
+
+stdenv.mkDerivation rec {
+ name = "edit-nightly-${version}";
+ version = "20160425";
+
+ src = fetchgit {
+ url = git://c9x.me/ed.git;
+ rev = "323d49b68c5e804ed3b8cada0e2274f1589b3484";
+ sha256 = "0wv8i3ii7cd9bqhjpahwp2g5fcmyk365nc7ncmvl79cxbz3f7y8v";
+ };
+
+ buildInputs = [
+ unzip
+ pkgconfig
+ ncurses
+ libX11
+ libXft
+ cwebbin
+ ];
+
+ buildPhase = ''
+ ctangle *.w
+ make
+ '';
+
+ installPhase = ''
+ mkdir -p $out/bin/
+ cp obj/edit $out/bin/edit
+ '';
+
+ meta = with stdenv.lib; {
+ description = "A relaxing mix of Vi and ACME";
+ homepage = http://c9x.me/edit;
+ license = licenses.publicDomain;
+ maintainers = [ maintainers.vrthra ];
+ };
+}
+
diff --git a/pkgs/applications/editors/emacs-25/default.nix b/pkgs/applications/editors/emacs-25/default.nix
index 47e6a3eb76a..44581ffb4d0 100644
--- a/pkgs/applications/editors/emacs-25/default.nix
+++ b/pkgs/applications/editors/emacs-25/default.nix
@@ -23,13 +23,13 @@ let
in
stdenv.mkDerivation rec {
- name = "emacs-25.0.94";
+ name = "emacs-25.0.95";
builder = ./builder.sh;
src = fetchurl {
url = "ftp://alpha.gnu.org/gnu/emacs/pretest/${name}.tar.xz";
- sha256 = "19kd9iwj4rz7llihs7a4gmag98n3asrxn3jh6mdmyn24w2kmxi69";
+ sha256 = "0bmvg7cbrwfa9rbryjrqv2qcllgwja92sx9ikirl80r5d09caf0l";
};
patches = lib.optionals stdenv.isDarwin [
diff --git a/pkgs/applications/editors/emacs-modes/logito/default.nix b/pkgs/applications/editors/emacs-modes/logito/default.nix
index a47f04472ec..c324e395fa9 100644
--- a/pkgs/applications/editors/emacs-modes/logito/default.nix
+++ b/pkgs/applications/editors/emacs-modes/logito/default.nix
@@ -21,7 +21,7 @@ stdenv.mkDerivation rec {
'';
meta = {
- description = "tiny logging framework for Emacs";
+ description = "Tiny logging framework for Emacs";
homepage = https://github.com/sigma/logito;
license = stdenv.lib.licenses.gpl2Plus;
diff --git a/pkgs/applications/editors/emacs-modes/melpa-generated.nix b/pkgs/applications/editors/emacs-modes/melpa-generated.nix
index 6ebe1617196..2cb892c3646 100644
--- a/pkgs/applications/editors/emacs-modes/melpa-generated.nix
+++ b/pkgs/applications/editors/emacs-modes/melpa-generated.nix
@@ -2,7 +2,7 @@
_0blayout = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "_0blayout";
- version = "20151021.1249";
+ version = "20151021.549";
src = fetchFromGitHub {
owner = "etu";
repo = "0blayout-mode";
@@ -10,7 +10,7 @@
sha256 = "1xigpz2aswlmpcsc1f7gfakyw7041pbyl9zfd8nz38iq036n5b96";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/0blayout";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/6521ec44ae8b0ba2e0523517f0f3d5b94ddbe1be/recipes/0blayout";
sha256 = "027k85h34998i8vmbg2hi4q1m4f7jfva5jm38k0g9m1db700gk92";
name = "_0blayout";
};
@@ -23,14 +23,14 @@
_2048-game = callPackage ({ fetchhg, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "_2048-game";
- version = "20151026.2033";
+ version = "20151026.1433";
src = fetchhg {
url = "https://bitbucket.com/zck/2048.el";
rev = "ea6c3bce8ac1";
sha256 = "1p9qn9n8mfb4z62h1s94mlg0vshpzafbhsxgzvx78sqlf6bfc80l";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/2048-game";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/5b7972602399f9df9139cff177e38653bb0f43ed/recipes/2048-game";
sha256 = "0z7x9bnyi3qlq7l0fskb61i6yr9gm7w7wplqd28wz8p1j5yw8aa0";
name = "_2048-game";
};
@@ -43,7 +43,7 @@
_4clojure = callPackage ({ fetchFromGitHub, fetchurl, json ? null, lib, melpaBuild, request }:
melpaBuild {
pname = "_4clojure";
- version = "20131015.7";
+ version = "20131014.1707";
src = fetchFromGitHub {
owner = "losingkeys";
repo = "4clojure.el";
@@ -51,7 +51,7 @@
sha256 = "1fybicg46fc5jjqv7g2d3dnj1x9n58m2fg9x6qxn9l8qlzk9yxkq";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/4clojure";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/7fabdb05de9b8ec18a3a566f99688b50443b6b44/recipes/4clojure";
sha256 = "09bmdxkkp676sn1sbbly44k99i47w83yznq950nkxv6x8753ifgk";
name = "_4clojure";
};
@@ -64,7 +64,7 @@
aa-edit-mode = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, navi2ch }:
melpaBuild {
pname = "aa-edit-mode";
- version = "20160228.717";
+ version = "20160228.17";
src = fetchFromGitHub {
owner = "zonuexe";
repo = "aa-edit-mode";
@@ -72,7 +72,7 @@
sha256 = "0d7q0fhcw4cvy9140hwxp8zdh0g37zhfsq6kmsdngxdx7lw3wryi";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/aa-edit-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/20d00f782f2db87264c7fb1aac7455e44b8b24e7/recipes/aa-edit-mode";
sha256 = "00b99ik04xx4b2a1cm1z8dl42hjnb5r32qypjyyx8924n1dhxzgn";
name = "aa-edit-mode";
};
@@ -85,7 +85,7 @@
abc-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "abc-mode";
- version = "20140225.1844";
+ version = "20140225.1144";
src = fetchFromGitHub {
owner = "mkjunker";
repo = "abc-mode";
@@ -93,7 +93,7 @@
sha256 = "1h4gwp2gyd4jhbkb8ai1zbzhhmlhmihbwzr0wsxg5yq074n72ifs";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/abc-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/aaee9dc5de06747374f311d86a550d3cc15beed1/recipes/abc-mode";
sha256 = "0qf5lbszyscmagiqhc0d05vzkhdky7ini4w33z1h3j5417sscrcx";
name = "abc-mode";
};
@@ -106,7 +106,7 @@
abl-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "abl-mode";
- version = "20160129.1131";
+ version = "20160129.431";
src = fetchFromGitHub {
owner = "afroisalreadyinu";
repo = "abl-mode";
@@ -114,7 +114,7 @@
sha256 = "09hy7rj27h7xbvasd87146di4vhpg5cmqc9f39fy0ihmv9gy56za";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/abl-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/70a52edb381daa9c4dcc9f7e511175b38fc141be/recipes/abl-mode";
sha256 = "0h25lc87pa8irgxflnmnmkr9dcv4kz841nfc45fcz4awrn75kkzb";
name = "abl-mode";
};
@@ -127,7 +127,7 @@
abyss-theme = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "abyss-theme";
- version = "20160420.1412";
+ version = "20160420.712";
src = fetchFromGitHub {
owner = "mgrbyte";
repo = "emacs-abyss-theme";
@@ -135,7 +135,7 @@
sha256 = "1yr6cqycd7ljkqzfp4prz9ilcpjq8wxg5yf645m24gy9v4w365ia";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/abyss-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/f390e5153b6360a27abc74983f5fef11226634f3/recipes/abyss-theme";
sha256 = "0ckrgfd7fjls6g510v8fqpkd0fd18lr0spg3lf5s88gky8ihdg6c";
name = "abyss-theme";
};
@@ -148,7 +148,7 @@
ac-alchemist = callPackage ({ alchemist, auto-complete, cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "ac-alchemist";
- version = "20150908.856";
+ version = "20150908.156";
src = fetchFromGitHub {
owner = "syohex";
repo = "emacs-ac-alchemist";
@@ -156,7 +156,7 @@
sha256 = "19msfx3f3px1maj41bzh139s6sv2pjk9vm3bphn7758fqhzyin0f";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ac-alchemist";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/ef9037aa41a8d9467838495bb235db32c19cc417/recipes/ac-alchemist";
sha256 = "02ll3hcixgdb8zyszn78714gy1h2q0vkhpbnwap9302mr2racwl0";
name = "ac-alchemist";
};
@@ -169,7 +169,7 @@
ac-anaconda = callPackage ({ anaconda-mode, auto-complete, dash, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "ac-anaconda";
- version = "20160221.2023";
+ version = "20160221.1323";
src = fetchFromGitHub {
owner = "proofit404";
repo = "ac-anaconda";
@@ -177,7 +177,7 @@
sha256 = "092m8y38h4irh2ig6n6510gw2scjjxah37zim6mk92jzn1xv06d0";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ac-anaconda";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/0eb23a75c8b57b4af1737c0508f03e66430e6076/recipes/ac-anaconda";
sha256 = "124nvigk6y3iw0lj2r7div88rrx8vz59xwqph1063jsrc29x8rjf";
name = "ac-anaconda";
};
@@ -190,7 +190,7 @@
ac-c-headers = callPackage ({ auto-complete, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "ac-c-headers";
- version = "20151021.1034";
+ version = "20151021.334";
src = fetchFromGitHub {
owner = "zk-phi";
repo = "ac-c-headers";
@@ -198,7 +198,7 @@
sha256 = "1z6rj15p5gjv0jwnnck8789n9csf1pwxfvsz37graihgfy2khj0y";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ac-c-headers";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/d7736fb9ea3a59c36c0b8b824d83bb1bb0099d43/recipes/ac-c-headers";
sha256 = "1cq5rz2w79bj185va7y13x7bciihrpsvyxwk6msmcxb4g86s9phv";
name = "ac-c-headers";
};
@@ -211,7 +211,7 @@
ac-cake = callPackage ({ auto-complete, cake, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "ac-cake";
- version = "20140315.1729";
+ version = "20140315.1129";
src = fetchFromGitHub {
owner = "k1LoW";
repo = "emacs-ac-cake";
@@ -219,7 +219,7 @@
sha256 = "1llpnb9vy612sg214i76rxnzcl3qx8pqnixczc5pik9kd3fdaz5f";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ac-cake";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/2257db76719cb1e3e2f79aff2b61073b655f9061/recipes/ac-cake";
sha256 = "0s2pgf0m98ixgadsnn201vm5gnawanpvxv56sf599f33krqnxzkl";
name = "ac-cake";
};
@@ -232,7 +232,7 @@
ac-cake2 = callPackage ({ auto-complete, cake2, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "ac-cake2";
- version = "20140320.808";
+ version = "20140320.208";
src = fetchFromGitHub {
owner = "k1LoW";
repo = "emacs-ac-cake2";
@@ -240,7 +240,7 @@
sha256 = "0mlmhdl9s28z981y8bnpj8jpfzm6bgfiyl0zmpgvhyqw1wzqywwv";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ac-cake2";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/b8b728c2caed96d7505cafc42d0d7ed49d6cadcd/recipes/ac-cake2";
sha256 = "0qxilldx23wqf8ilif2nin119bvd0l7b6f6wifixx28a6kl1vsgy";
name = "ac-cake2";
};
@@ -253,7 +253,7 @@
ac-capf = callPackage ({ auto-complete, cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "ac-capf";
- version = "20151101.317";
+ version = "20151031.2117";
src = fetchFromGitHub {
owner = "syohex";
repo = "emacs-ac-capf";
@@ -261,7 +261,7 @@
sha256 = "0nyq34yq4jcp3p30ygma3iz1h0q551p33792byj76pa5ps09g1da";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ac-capf";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/929da263f57b904c50f5f17b09d4c4b480999c97/recipes/ac-capf";
sha256 = "1drgk5iz2wp3rxzd39pj0n4cfmm5z8zqlp50jw5z7ffbbg35qxbm";
name = "ac-capf";
};
@@ -274,15 +274,15 @@
ac-cider = callPackage ({ auto-complete, cider, cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "ac-cider";
- version = "20160530.1358";
+ version = "20160611.504";
src = fetchFromGitHub {
owner = "clojure-emacs";
repo = "ac-cider";
- rev = "4be034e5f82421b0a836ec7ff45815c67caffcee";
- sha256 = "12s7wy7fyk5z9q287j871gcsrvj90f4c81h39p66d99jw0cl93qj";
+ rev = "cb3a758690faa12e9a8542897a92db9cc55e10e7";
+ sha256 = "13vv6k81zjmj14220yhc11il5s222hj83imh307xs4k6qyslpnav";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ac-cider";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/e8adefaf2e284ef91baec3dbd3e10c868de69926/recipes/ac-cider";
sha256 = "1dszpb706h34miq2bxqyq1ycbran5ax36vcniwp8vvhgcjsw5sz6";
name = "ac-cider";
};
@@ -295,7 +295,7 @@
ac-clang = callPackage ({ auto-complete, cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, pos-tip, yasnippet }:
melpaBuild {
pname = "ac-clang";
- version = "20150906.1908";
+ version = "20150906.1208";
src = fetchFromGitHub {
owner = "yaruopooner";
repo = "ac-clang";
@@ -303,7 +303,7 @@
sha256 = "0n9zagwh3rz7b76irj4ya8wskffns9v1c1pivsdqgpd76spvl7n5";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ac-clang";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/ffe0485048b85825f5e8ba95917d8c9dc64fe5de/recipes/ac-clang";
sha256 = "070s06xhkzaqfc3j8c4i44rks6gn8z66lwd54j17p8d91x3qjpr4";
name = "ac-clang";
};
@@ -315,13 +315,13 @@
}) {};
ac-dabbrev = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild {
pname = "ac-dabbrev";
- version = "20130906.718";
+ version = "20130906.18";
src = fetchurl {
url = "https://www.emacswiki.org/emacs/download/ac-dabbrev.el";
sha256 = "0q0lbhdng5s5hqa342yyvg02hf2bfbwq513lj1rlaqz4ykvpd7fh";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ac-dabbrev";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/4327b4dd464ebb00c2acdd496274dedf912cdf92/recipes/ac-dabbrev";
sha256 = "03lndw7y55bzz4rckl80j0kh66qa82xxxhfakzs1dh1h9f1f0azh";
name = "ac-dabbrev";
};
@@ -334,7 +334,7 @@
ac-dcd = callPackage ({ auto-complete, fetchFromGitHub, fetchurl, flycheck-dmd-dub, lib, melpaBuild }:
melpaBuild {
pname = "ac-dcd";
- version = "20160311.1517";
+ version = "20160311.817";
src = fetchFromGitHub {
owner = "atilaneves";
repo = "ac-dcd";
@@ -342,7 +342,7 @@
sha256 = "1hlijh415wgl450ry16a1072jjrkqqqkk862hfhswfr2l6rjfw98";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ac-dcd";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/64142a4b14531409f45f02a8053ed8948f48221d/recipes/ac-dcd";
sha256 = "086jp9c6bilc361n1hscza3pbhgvqlq944z7cil2jm1kicsf8s7r";
name = "ac-dcd";
};
@@ -355,7 +355,7 @@
ac-emmet = callPackage ({ auto-complete, emmet-mode, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "ac-emmet";
- version = "20131015.1758";
+ version = "20131015.1058";
src = fetchFromGitHub {
owner = "yasuyk";
repo = "ac-emmet";
@@ -363,7 +363,7 @@
sha256 = "1lkhqmfkjga7qi4r1m7mjax3pyf9m6minsn57cbzm2z2kvkhq22g";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ac-emmet";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/39861b4f0a458c8ccf02f7a3443c54b0e74daa11/recipes/ac-emmet";
sha256 = "09ycjllfpdgqaf5iis5bkkhal1vxvl3qkxrn2759p67s97c49f3x";
name = "ac-emmet";
};
@@ -376,7 +376,7 @@
ac-emoji = callPackage ({ auto-complete, cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "ac-emoji";
- version = "20150823.911";
+ version = "20150823.211";
src = fetchFromGitHub {
owner = "syohex";
repo = "emacs-ac-emoji";
@@ -384,7 +384,7 @@
sha256 = "19981mzxnqqdb8dsdizy2i8byb8sx9138x3nrvi6ap2qbcsabjmz";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ac-emoji";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/15f591f9cba367b071046fef5ae01bbbd0475ce3/recipes/ac-emoji";
sha256 = "0msh3dh89jzk6hxva34gp9d5pazchgdknxjbi72z26rss9bkp1mw";
name = "ac-emoji";
};
@@ -397,7 +397,7 @@
ac-etags = callPackage ({ auto-complete, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "ac-etags";
- version = "20151101.321";
+ version = "20151031.2121";
src = fetchFromGitHub {
owner = "syohex";
repo = "emacs-ac-etags";
@@ -405,7 +405,7 @@
sha256 = "140i02b2ipyfmki945l1xd1nsqdpganhmi3bmwj1h9w8cg078bd4";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ac-etags";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/fda9c7def8bc54af4ab17dc049dd94324c8f10fa/recipes/ac-etags";
sha256 = "0ag49k9izrs4ikzac9lifvvwhcn5n89lr2vb20pngsvg1czdyhzb";
name = "ac-etags";
};
@@ -418,7 +418,7 @@
ac-geiser = callPackage ({ auto-complete, fetchFromGitHub, fetchurl, geiser, lib, melpaBuild }:
melpaBuild {
pname = "ac-geiser";
- version = "20130929.847";
+ version = "20130929.147";
src = fetchFromGitHub {
owner = "xiaohanyu";
repo = "ac-geiser";
@@ -426,7 +426,7 @@
sha256 = "02ifz25rq64z0ifxs52aqdz0iz4mi6xvj88hcn3aakkmsj749vvn";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ac-geiser";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/586ef409e3ae758b459b625d4bf0108f0525a085/recipes/ac-geiser";
sha256 = "0v558qz1mp8b1bgk8kgdk5sx5mpd353mw77n5b0pw4b2ikzpz2mx";
name = "ac-geiser";
};
@@ -439,7 +439,7 @@
ac-haskell-process = callPackage ({ auto-complete, fetchFromGitHub, fetchurl, haskell-mode, lib, melpaBuild }:
melpaBuild {
pname = "ac-haskell-process";
- version = "20150423.1602";
+ version = "20150423.902";
src = fetchFromGitHub {
owner = "purcell";
repo = "ac-haskell-process";
@@ -447,7 +447,7 @@
sha256 = "0m33v9iy3y37sicfmpx7kvmn8v1a8k6cs7d0v9v5k93p4d5ila41";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ac-haskell-process";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/98bd259b6bfd9b49a8ae421807a4ab3821f09608/recipes/ac-haskell-process";
sha256 = "0kv4z850kv03wiax1flnrp6sgqja25j23l719w7rkr7ck110q8rw";
name = "ac-haskell-process";
};
@@ -460,7 +460,7 @@
ac-helm = callPackage ({ auto-complete, cl-lib ? null, fetchFromGitHub, fetchurl, helm, lib, melpaBuild, popup }:
melpaBuild {
pname = "ac-helm";
- version = "20160319.333";
+ version = "20160318.2133";
src = fetchFromGitHub {
owner = "yasuyk";
repo = "ac-helm";
@@ -468,7 +468,7 @@
sha256 = "1fyikdwn0gzng7pbmfg7zb7jphjv228776vsjc12j7g1aqz92n4l";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ac-helm";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50427d365c79aff84ac759d19ce177b4f7ed2751/recipes/ac-helm";
sha256 = "16ajxlhcah5zbvywpc6l4l1arr308gjpgvdx6l1nrv2zvpckhlwq";
name = "ac-helm";
};
@@ -481,7 +481,7 @@
ac-html = callPackage ({ auto-complete, dash, f, fetchFromGitHub, fetchurl, lib, melpaBuild, s }:
melpaBuild {
pname = "ac-html";
- version = "20151005.931";
+ version = "20151005.231";
src = fetchFromGitHub {
owner = "cheunghy";
repo = "ac-html";
@@ -489,7 +489,7 @@
sha256 = "0lz1a8a4bqxiw20jh65r7cg7jnid3vz4h8b7dkfcrzwn0agx8frw";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ac-html";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/ce370d60b2f4dd0570b631f6ca92a221e1fe2de6/recipes/ac-html";
sha256 = "0qf8f75b6dvy844dq8vh8d9c6k599rh1ynjcif9bwvdpf6pxwvqa";
name = "ac-html";
};
@@ -502,7 +502,7 @@
ac-html-angular = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, web-completion-data }:
melpaBuild {
pname = "ac-html-angular";
- version = "20151225.819";
+ version = "20151225.119";
src = fetchFromGitHub {
owner = "osv";
repo = "ac-html-angular";
@@ -510,7 +510,7 @@
sha256 = "1v3ia439h4n2i204n0sazzbwwm0l5k6j31gq58iv2rqrq2ysikny";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ac-html-angular";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/0805ba6674d1298d730770e8ea46b9bbd68cd1d3/recipes/ac-html-angular";
sha256 = "05rbxf5kbr4jlskrhvfvhf82qvb55zl5cb6z1ymfh9l3h9j9xk3s";
name = "ac-html-angular";
};
@@ -523,7 +523,7 @@
ac-html-bootstrap = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, web-completion-data }:
melpaBuild {
pname = "ac-html-bootstrap";
- version = "20160302.1801";
+ version = "20160302.1101";
src = fetchFromGitHub {
owner = "osv";
repo = "ac-html-bootstrap";
@@ -531,7 +531,7 @@
sha256 = "0ry398awbsyswc87v275x4mdyv64kr0s647y6nagqg1h3n3jhvsq";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ac-html-bootstrap";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/6cf8aed547ca2390395dcf52d6c542b6944697af/recipes/ac-html-bootstrap";
sha256 = "0z71m6xws0k9smhsswaivpikr64mv0wh6klnmi5cwhwcqas6kdi1";
name = "ac-html-bootstrap";
};
@@ -544,7 +544,7 @@
ac-html-csswatcher = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, web-completion-data }:
melpaBuild {
pname = "ac-html-csswatcher";
- version = "20151208.2213";
+ version = "20151208.1513";
src = fetchFromGitHub {
owner = "osv";
repo = "ac-html-csswatcher";
@@ -552,7 +552,7 @@
sha256 = "0swbw62zh5rjjf73pvmp8brrrmk6bp061k793z4z83v7ic0cicrr";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ac-html-csswatcher";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/fba8b9bf212e6fa389eae8394d0b3bbce9eb0f92/recipes/ac-html-csswatcher";
sha256 = "0jb9dnm2lxadrxssf0rjqw8yvvskcq4hys8c21shjyj3gkvwbfqn";
name = "ac-html-csswatcher";
};
@@ -565,7 +565,7 @@
ac-inf-ruby = callPackage ({ auto-complete, fetchFromGitHub, fetchurl, inf-ruby, lib, melpaBuild }:
melpaBuild {
pname = "ac-inf-ruby";
- version = "20131115.1250";
+ version = "20131115.550";
src = fetchFromGitHub {
owner = "purcell";
repo = "ac-inf-ruby";
@@ -573,7 +573,7 @@
sha256 = "0xdqk0qr1mmm5q3049ldwlmrcfgz6rzk4yxc8qgz6kll27kciia0";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ac-inf-ruby";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/1a72abe0fe1253149afb45b0d9e81b6846a926c0/recipes/ac-inf-ruby";
sha256 = "04jclf0yxz78x1fsaf5sh1p466947nqrcx337kyhqn0nkj3hplqr";
name = "ac-inf-ruby";
};
@@ -586,7 +586,7 @@
ac-ispell = callPackage ({ auto-complete, cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "ac-ispell";
- version = "20151101.326";
+ version = "20151031.2126";
src = fetchFromGitHub {
owner = "syohex";
repo = "emacs-ac-ispell";
@@ -594,7 +594,7 @@
sha256 = "1cq73bdv3lkn8v3nx6aznygqaac9s5i7pvirl8wz9ib31hsgwpbk";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ac-ispell";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/b41acb7387ebef9af2906fa16298b64d6431bfb0/recipes/ac-ispell";
sha256 = "1vsy2qjh60n5lavivpqhhcpg5pk8zz2r0wy1sb65capn841zdi67";
name = "ac-ispell";
};
@@ -607,7 +607,7 @@
ac-js2 = callPackage ({ fetchFromGitHub, fetchurl, js2-mode, lib, melpaBuild, skewer-mode }:
melpaBuild {
pname = "ac-js2";
- version = "20140906.1342";
+ version = "20140906.642";
src = fetchFromGitHub {
owner = "ScottyB";
repo = "ac-js2";
@@ -615,7 +615,7 @@
sha256 = "0yn9333rjs2pzb1wk1japclsqagdcl28j0yjl3q5b70g5gi5vx7k";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ac-js2";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/255588a330e4c9a03517885092d5678375aa7850/recipes/ac-js2";
sha256 = "0gcr0xdi89nj3854v2z3nndfgazmcdzmd6wdndl0i4s7pdfl96fa";
name = "ac-js2";
};
@@ -628,7 +628,7 @@
ac-math = callPackage ({ auto-complete, fetchFromGitHub, fetchurl, lib, math-symbol-lists, melpaBuild }:
melpaBuild {
pname = "ac-math";
- version = "20141116.2227";
+ version = "20141116.1527";
src = fetchFromGitHub {
owner = "vspinu";
repo = "ac-math";
@@ -636,7 +636,7 @@
sha256 = "0p5cdaw9v8jgnmjqpb95bxy4khwbdgg19wzg8jkr2j2p55dpfbd6";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ac-math";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/7fabdb05de9b8ec18a3a566f99688b50443b6b44/recipes/ac-math";
sha256 = "02c821zabxp9qkwx252pxjmssdbmas0iwanw09r03bmiby9d4nsl";
name = "ac-math";
};
@@ -649,7 +649,7 @@
ac-mozc = callPackage ({ auto-complete, cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild, mozc }:
melpaBuild {
pname = "ac-mozc";
- version = "20150227.1719";
+ version = "20150227.1019";
src = fetchFromGitHub {
owner = "igjit";
repo = "ac-mozc";
@@ -657,7 +657,7 @@
sha256 = "19cb8kq8gmrplkxil22ahvbyq5cng1l2vh2lrfiyqpjsap7zfjz5";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ac-mozc";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/4b3f74039d397037e640cc371d24bdb60ac90bf1/recipes/ac-mozc";
sha256 = "1v3iiid8cq50i076q98ycks9m827xzncgxqwqs2rqhab0ncy3h0f";
name = "ac-mozc";
};
@@ -670,7 +670,7 @@
ac-octave = callPackage ({ auto-complete, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "ac-octave";
- version = "20150112.208";
+ version = "20150111.1908";
src = fetchFromGitHub {
owner = "coldnew";
repo = "ac-octave";
@@ -678,7 +678,7 @@
sha256 = "16bg2zg08223x7q54rmfjziaccgm64h9vc8z59sjljkw1bgx9m7q";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ac-octave";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/634bd324148d6b74e1098362e06dc512456cde31/recipes/ac-octave";
sha256 = "1g5s4dk1rcgkjn17jfw6g201pw0vfhqcx1nhigmnizpnzy0man9z";
name = "ac-octave";
};
@@ -688,41 +688,52 @@
license = lib.licenses.free;
};
}) {};
- ac-php = callPackage ({ auto-complete, dash, emacs, f, fetchFromGitHub, fetchurl, lib, melpaBuild, php-mode, popup, s, xcscope, yasnippet }:
+ ac-php = callPackage ({ ac-php-core, auto-complete, fetchFromGitHub, fetchurl, lib, melpaBuild, yasnippet }:
melpaBuild {
pname = "ac-php";
- version = "20160525.826";
+ version = "20160628.622";
src = fetchFromGitHub {
owner = "xcwen";
repo = "ac-php";
- rev = "23b998dafd43ff1dadc85cd0fa71f6aca34411e6";
- sha256 = "02mpyzc7w14f3xgj4snkqh54537892a4bz98dl0fac65fk268xzy";
+ rev = "eacdc1b1c97322c786c0fb330b0dde3f7b40682e";
+ sha256 = "1kh5h55kf1lypysq585jd56jqcsga27658fnm1jwxylcgh8pi5sw";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ac-php";
- sha256 = "1dlz4cv54ynl4ql5l2sa5lazlzq6rrlbz61k20l5lcljjwvj5xja";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/ac283f1b65c3ba6278e9d3236e5a19734e42b123/recipes/ac-php";
+ sha256 = "1wqwwgdln98snlq5msdx94b7985krvqfn264hxs1h94r85kgn1ba";
name = "ac-php";
};
- packageRequires = [
- auto-complete
- dash
- emacs
- f
- php-mode
- popup
- s
- xcscope
- yasnippet
- ];
+ packageRequires = [ ac-php-core auto-complete yasnippet ];
meta = {
homepage = "https://melpa.org/#/ac-php";
license = lib.licenses.free;
};
}) {};
+ ac-php-core = callPackage ({ dash, emacs, f, fetchFromGitHub, fetchurl, lib, melpaBuild, php-mode, popup, s, xcscope }:
+ melpaBuild {
+ pname = "ac-php-core";
+ version = "20160630.2248";
+ src = fetchFromGitHub {
+ owner = "xcwen";
+ repo = "ac-php";
+ rev = "eacdc1b1c97322c786c0fb330b0dde3f7b40682e";
+ sha256 = "1kh5h55kf1lypysq585jd56jqcsga27658fnm1jwxylcgh8pi5sw";
+ };
+ recipeFile = fetchurl {
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/ac283f1b65c3ba6278e9d3236e5a19734e42b123/recipes/ac-php-core";
+ sha256 = "0vk3jsxb7dgk5a6pap3bdqkqwpszil0rck1c3y0wyxrlj2y1jcvn";
+ name = "ac-php-core";
+ };
+ packageRequires = [ dash emacs f php-mode popup s xcscope ];
+ meta = {
+ homepage = "https://melpa.org/#/ac-php-core";
+ license = lib.licenses.free;
+ };
+ }) {};
ac-racer = callPackage ({ auto-complete, cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild, racer }:
melpaBuild {
pname = "ac-racer";
- version = "20160518.720";
+ version = "20160518.20";
src = fetchFromGitHub {
owner = "syohex";
repo = "emacs-ac-racer";
@@ -730,7 +741,7 @@
sha256 = "0p0220axf7c0ga4bkd8d2lcwdgwz08xqglw56lnwzdlksgqhsgyf";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ac-racer";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/e4318daf4dbb6864ee41f41287c89010fb811641/recipes/ac-racer";
sha256 = "1vkvh8y3ckvzvqxj4i2k6jqri94121wbfjziybli74qba8dca4yp";
name = "ac-racer";
};
@@ -743,7 +754,7 @@
ac-skk = callPackage ({ auto-complete, cl-lib ? null, ddskk, fetchFromGitHub, fetchurl, lib, melpaBuild, tinysegmenter }:
melpaBuild {
pname = "ac-skk";
- version = "20141230.219";
+ version = "20141229.1919";
src = fetchFromGitHub {
owner = "myuhe";
repo = "ac-skk.el";
@@ -751,7 +762,7 @@
sha256 = "1nvz0jfz4x99xc5ywspl8fdpyqns5zd0j7i4bwzlwplmy3qakjwm";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ac-skk";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/1d9d8268d2db4b38ca18156964483b0b067f6f5d/recipes/ac-skk";
sha256 = "0iycyfgv8v15ygngvyx66m3w3sv8p9h6q6j1hbpzwd8azl8fzj5z";
name = "ac-skk";
};
@@ -764,7 +775,7 @@
ac-slime = callPackage ({ auto-complete, cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild, slime }:
melpaBuild {
pname = "ac-slime";
- version = "20150730.535";
+ version = "20150729.2235";
src = fetchFromGitHub {
owner = "purcell";
repo = "ac-slime";
@@ -772,7 +783,7 @@
sha256 = "13yghv7p6c91fn8mrxbwrb6ldk5n3b6nj6a7pwsvks1q73i1pl88";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ac-slime";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/cae2ac3513e371a256be0f1a7468e38e686c2487/recipes/ac-slime";
sha256 = "0mk3k1lcbqa16xvsbgk28x09vzqyaidqaqpq934xdbrwhdgwgckg";
name = "ac-slime";
};
@@ -785,7 +796,7 @@
ac-sly = callPackage ({ auto-complete, cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild, sly }:
melpaBuild {
pname = "ac-sly";
- version = "20150421.2222";
+ version = "20150421.1522";
src = fetchFromGitHub {
owner = "qoocku";
repo = "ac-sly";
@@ -793,7 +804,7 @@
sha256 = "0mif35chyj4ai1bj4gq8qi38dyfsp72yi1xchhzy9zi2plpvqa7a";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ac-sly";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/bb26741e841d4886c14f0a059a52805732f179b1/recipes/ac-sly";
sha256 = "1ng81b5f8w2s9mm9s7h5kwyx8fdwndnlsbzx50slmqyaz2ad15mx";
name = "ac-sly";
};
@@ -806,7 +817,7 @@
ace-flyspell = callPackage ({ ace-jump-mode, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "ace-flyspell";
- version = "20150523.2015";
+ version = "20150523.1315";
src = fetchFromGitHub {
owner = "cute-jumper";
repo = "ace-flyspell";
@@ -814,7 +825,7 @@
sha256 = "1msj0dbzfan0jax5wh5rmv4l7cp5zhrp5wy5k1n9s7xdgz2dprzj";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ace-flyspell";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/1ea85eca9cf2df3f8c06709dfb44b339b8bdbc6c/recipes/ace-flyspell";
sha256 = "0f24qrpcvyg7h6ylyggn4zrbydci537iigshac1d8yywsr0j47gd";
name = "ace-flyspell";
};
@@ -827,7 +838,7 @@
ace-isearch = callPackage ({ ace-jump-mode, avy, emacs, fetchFromGitHub, fetchurl, helm-swoop, lib, melpaBuild }:
melpaBuild {
pname = "ace-isearch";
- version = "20150808.1456";
+ version = "20150808.756";
src = fetchFromGitHub {
owner = "tam17aki";
repo = "ace-isearch";
@@ -835,7 +846,7 @@
sha256 = "02i3gxk7kfv3a0pcc82z69hgvjw8bvn40y8h7d59chg8bixcwbyr";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ace-isearch";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/344f0cf784a027cde196b7d766024fb415fa1968/recipes/ace-isearch";
sha256 = "0n8qf08z9n8c2sp5ks29nxcfks5mil1jj6wq348apda8safk36hm";
name = "ace-isearch";
};
@@ -848,7 +859,7 @@
ace-jump-buffer = callPackage ({ avy, dash, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "ace-jump-buffer";
- version = "20160229.2358";
+ version = "20160229.1658";
src = fetchFromGitHub {
owner = "waymondo";
repo = "ace-jump-buffer";
@@ -856,7 +867,7 @@
sha256 = "1y2rl4faj1nfjqbh393yp460cbv24simllak31ag1ischpcbqjy4";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ace-jump-buffer";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/31100b5b899e942de7796bcbf6365625d1b62574/recipes/ace-jump-buffer";
sha256 = "0hkxa0ps0v1hwmjafqbnyr6rc4s0w95igk8y3w53asl7f5sj5mpi";
name = "ace-jump-buffer";
};
@@ -869,7 +880,7 @@
ace-jump-helm-line = callPackage ({ avy, fetchFromGitHub, fetchurl, helm, lib, melpaBuild }:
melpaBuild {
pname = "ace-jump-helm-line";
- version = "20160329.2118";
+ version = "20160329.1418";
src = fetchFromGitHub {
owner = "cute-jumper";
repo = "ace-jump-helm-line";
@@ -877,7 +888,7 @@
sha256 = "1d4bxxcnjbdr6cjr3jmz2zrnzjv5pwrypbp4xqgqyv9rz02n7ac1";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ace-jump-helm-line";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/8925f3daa92ff39776b55642aa9ec0e49245c0c7/recipes/ace-jump-helm-line";
sha256 = "04q8wh6jskvbiq6y2xsp2ir23vgz5zw09rm127sgiqrmn0jc61b9";
name = "ace-jump-helm-line";
};
@@ -890,7 +901,7 @@
ace-jump-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "ace-jump-mode";
- version = "20140616.1015";
+ version = "20140616.315";
src = fetchFromGitHub {
owner = "winterTTr";
repo = "ace-jump-mode";
@@ -898,7 +909,7 @@
sha256 = "17axrgd99glnl6ma4ls3k01ysdqmiqr581wnrbsn3s4gp53mm2x6";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ace-jump-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/cae2ac3513e371a256be0f1a7468e38e686c2487/recipes/ace-jump-mode";
sha256 = "0yk0kppjyblr5wamncrjm3ym3n8jcl0r0g0cbnwni89smvpngij6";
name = "ace-jump-mode";
};
@@ -911,7 +922,7 @@
ace-jump-zap = callPackage ({ ace-jump-mode, dash, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "ace-jump-zap";
- version = "20150330.2242";
+ version = "20150330.1542";
src = fetchFromGitHub {
owner = "waymondo";
repo = "ace-jump-zap";
@@ -919,7 +930,7 @@
sha256 = "0z0rblr41r94l4b2gh9fcw50nk82ifxrr3ilxqzbb8wmvil54gh4";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ace-jump-zap";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/3b435db3b79333a20aa27a72f33c431f0a019ba1/recipes/ace-jump-zap";
sha256 = "07bkmly3lvlbby2m13nj3m1q0gcnwy5sas7d6ws6vr9jh0d36byb";
name = "ace-jump-zap";
};
@@ -932,7 +943,7 @@
ace-link = callPackage ({ avy, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "ace-link";
- version = "20160530.850";
+ version = "20160530.150";
src = fetchFromGitHub {
owner = "abo-abo";
repo = "ace-link";
@@ -940,7 +951,7 @@
sha256 = "1mrlwkls80blispg5hdgnif42rck3iqhcm1f3khq14nm09yqwdk9";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ace-link";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/68032f40c0ce4170a22db535be4bfa7099f61f85/recipes/ace-link";
sha256 = "1jl805r2s3wa0xyhss1q28rcy6y2fngf0yfcrcd9wf8kamhpajk5";
name = "ace-link";
};
@@ -953,7 +964,7 @@
ace-mc = callPackage ({ ace-jump-mode, dash, fetchFromGitHub, fetchurl, lib, melpaBuild, multiple-cursors }:
melpaBuild {
pname = "ace-mc";
- version = "20160409.237";
+ version = "20160408.1937";
src = fetchFromGitHub {
owner = "mm--";
repo = "ace-mc";
@@ -961,7 +972,7 @@
sha256 = "1zgmqgh5dff914dw7i8s142znd849gv4xh86f8q8agx5r7almx14";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ace-mc";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/62e3a5f23ce219b16081cb0bba9fc4699e11fafa/recipes/ace-mc";
sha256 = "1kca6ha2glhv7lkamqx3sxp7dy05c7f6xxy3lr3v2bik8r50jss8";
name = "ace-mc";
};
@@ -974,15 +985,15 @@
ace-pinyin = callPackage ({ ace-jump-mode, avy, fetchFromGitHub, fetchurl, lib, melpaBuild, pinyinlib }:
melpaBuild {
pname = "ace-pinyin";
- version = "20160516.637";
+ version = "20160611.1955";
src = fetchFromGitHub {
owner = "cute-jumper";
repo = "ace-pinyin";
- rev = "72c8ea30cd52397a10b94dbe2cb32ee6ad09b4c1";
- sha256 = "0q91f52v57qgfn245z3xsskqj9p9lpmxpj3py0vcx8r9br0ykagq";
+ rev = "8f7d7fdf3912730076d30b0a3ba17d05da1db9ee";
+ sha256 = "06bsrnhhpncmk6jpcnvmjdb0ccz6z34ksf2ywp00l1c343p90v38";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ace-pinyin";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/10bb2de9c6b938fa12deff1e2748bfd0a345891a/recipes/ace-pinyin";
sha256 = "18gmj71zd0i6yx8ifjxsqz2v81jx0j37f5kxllf31w7fj32ymbkc";
name = "ace-pinyin";
};
@@ -995,7 +1006,7 @@
ace-popup-menu = callPackage ({ avy-menu, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "ace-popup-menu";
- version = "20160522.1419";
+ version = "20160522.719";
src = fetchFromGitHub {
owner = "mrkkrp";
repo = "ace-popup-menu";
@@ -1003,7 +1014,7 @@
sha256 = "1afw9nxxd0shlg62w9ifc1wlf8vsw5ss8r52h5a5s8m3pnswlx2h";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ace-popup-menu";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/53742e2242101c4b3b3901f5c74e24facf62c7d6/recipes/ace-popup-menu";
sha256 = "1cq1mpv7v98bqrpsm598krq1741b6rwih71cx3yjifpbagrv4m5s";
name = "ace-popup-menu";
};
@@ -1016,7 +1027,7 @@
ace-window = callPackage ({ avy, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "ace-window";
- version = "20160225.1719";
+ version = "20160225.1019";
src = fetchFromGitHub {
owner = "abo-abo";
repo = "ace-window";
@@ -1024,7 +1035,7 @@
sha256 = "1afc0f8ax334gv644zdrrp55754gxa353iijvmfzxmlr67v23j96";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ace-window";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/42fe131d3c2ea498e4df30ba539a6b91c00f5b07/recipes/ace-window";
sha256 = "1k0x8m1phmvgdxb5aj841iai9q96a5lfq8i4b5vnlbc3w888n3xa";
name = "ace-window";
};
@@ -1037,14 +1048,14 @@
achievements = callPackage ({ fetchhg, fetchurl, keyfreq, lib, melpaBuild }:
melpaBuild {
pname = "achievements";
- version = "20150530.2026";
+ version = "20150530.1326";
src = fetchhg {
url = "https://bitbucket.com/gvol/emacs-achievements";
rev = "5b4b7b6816aa";
sha256 = "0zjncby2884cv8nz2ss7i0p17l15lsk88zwvb7b0gr3apbfpcpa3";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/achievements";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/5b7972602399f9df9139cff177e38653bb0f43ed/recipes/achievements";
sha256 = "1pwlibq87ph20z2pssk5hbgs6v8kdym9193jjdx2rxp0nic4k0cr";
name = "achievements";
};
@@ -1057,7 +1068,7 @@
ack-menu = callPackage ({ fetchFromGitHub, fetchurl, lib, mag-menu, melpaBuild }:
melpaBuild {
pname = "ack-menu";
- version = "20150504.2222";
+ version = "20150504.1522";
src = fetchFromGitHub {
owner = "chumpage";
repo = "ack-menu";
@@ -1065,7 +1076,7 @@
sha256 = "02ba4d8qkvgy52g0zcbyfvsnhr9685gq569nkwa2as30xdcq3khm";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ack-menu";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/8ff331ed45e5b7697e4862e723408602ecc98bc7/recipes/ack-menu";
sha256 = "1d2kw04ndxji2qjcm1b65qnxpp08zx8gbia8bl6x6mnjb2isc2d9";
name = "ack-menu";
};
@@ -1078,7 +1089,7 @@
actionscript-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "actionscript-mode";
- version = "20140605.2028";
+ version = "20140605.1328";
src = fetchFromGitHub {
owner = "austinhaas";
repo = "actionscript-mode";
@@ -1086,7 +1097,7 @@
sha256 = "1rxx2j7kkzjdsk06zgisiydg8dc18vqll4wl6q9mfhrg2y12lq94";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/actionscript-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/2c11e74f2156f109b713380cebf83022d7159d4a/recipes/actionscript-mode";
sha256 = "1dkiay9jmizvslji5kzab4dxm1dq0jm8ps7sjq6710g7a5aqdvwq";
name = "actionscript-mode";
};
@@ -1099,7 +1110,7 @@
addressbook-bookmark = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "addressbook-bookmark";
- version = "20160317.703";
+ version = "20160317.103";
src = fetchFromGitHub {
owner = "thierryvolpiatto";
repo = "addressbook-bookmark";
@@ -1107,7 +1118,7 @@
sha256 = "0dk7hyp7cs0ws4w7i32g7di5aqkkxlxkvmrllg43bi5ivlji7pvn";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/addressbook-bookmark";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/a497aec6e27efa627068542cae5a16c01c3c6d3c/recipes/addressbook-bookmark";
sha256 = "15p00v4ndrsbadal0ss176mks4ynj39786bmrnil29b6sqibd43r";
name = "addressbook-bookmark";
};
@@ -1120,7 +1131,7 @@
adoc-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, markup-faces, melpaBuild }:
melpaBuild {
pname = "adoc-mode";
- version = "20160314.2230";
+ version = "20160314.1630";
src = fetchFromGitHub {
owner = "sensorflo";
repo = "adoc-mode";
@@ -1128,7 +1139,7 @@
sha256 = "199da15f6p84809z33w3m35lrk9bgx8qpgnxsxgisli373mpzvd8";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/adoc-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/70a3b6a7b43c76b0ce3b350f5c8d657bf4f7fb04/recipes/adoc-mode";
sha256 = "0wgagcsh0fkb51fy17ilrs20z2vzdpmz97vpwijcfy2b9rypxq15";
name = "adoc-mode";
};
@@ -1141,7 +1152,7 @@
aes = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "aes";
- version = "20160121.2137";
+ version = "20160121.1437";
src = fetchFromGitHub {
owner = "Sauermann";
repo = "emacs-aes";
@@ -1149,7 +1160,7 @@
sha256 = "1p90yv2xl1hhpjm0mmhdjyf1jagf79610hkzhw8nycy2p1y4gvl6";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/aes";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/33ca3106852f82624b36c7e3f03f5c0c620f304f/recipes/aes";
sha256 = "11vl9x3ldrv7q7rd29xk4xmlvfxs0m6iys84f6mlgf00190l5r5v";
name = "aes";
};
@@ -1162,7 +1173,7 @@
afternoon-theme = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "afternoon-theme";
- version = "20140104.1959";
+ version = "20140104.1259";
src = fetchFromGitHub {
owner = "osener";
repo = "emacs-afternoon-theme";
@@ -1170,7 +1181,7 @@
sha256 = "19d5d6qs5nwmpf26rsb86ranb5p4236qp7p2b4i88cimcmzspylb";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/afternoon-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/583256b7fa48501c8bfad305d76d2e16b6441539/recipes/afternoon-theme";
sha256 = "13xgdw8px58sxpl7nyhkcdxwqdpp13i8wghvlb3l4471plw3vqgj";
name = "afternoon-theme";
};
@@ -1183,15 +1194,15 @@
ag = callPackage ({ cl-lib ? null, dash, fetchFromGitHub, fetchurl, lib, melpaBuild, s }:
melpaBuild {
pname = "ag";
- version = "20160322.6";
+ version = "20160702.1328";
src = fetchFromGitHub {
owner = "Wilfred";
repo = "ag.el";
- rev = "29d40fdaa4f605e9a6bf689050f0767f3ba22307";
- sha256 = "1hwjd1ln99595xwakynhgr3azs4h8rziy75kfz8k5b7i3hns7z08";
+ rev = "518c7a4a6c3080bcd5dab8f276942da2a9fa5b04";
+ sha256 = "193bv4hwf0i0xgb7rjka94m70cd61x9a7r20x027zxlp0varmq71";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ag";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/67f410ac3a58a038e194bcf174bc0a8ceceafb9a/recipes/ag";
sha256 = "1r4ai09vdckkg4h4i7dp781qqmm4kky53p4q8azp3n2c78i1vz6g";
name = "ag";
};
@@ -1204,7 +1215,7 @@
aggressive-fill-paragraph = callPackage ({ dash, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "aggressive-fill-paragraph";
- version = "20160301.2314";
+ version = "20160301.1614";
src = fetchFromGitHub {
owner = "davidshepherd7";
repo = "aggressive-fill-paragraph-mode";
@@ -1212,7 +1223,7 @@
sha256 = "05lci7hpla4f0z124zr58aj282pgmabqkzgcqadf0hbnqbz2jwcs";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/aggressive-fill-paragraph";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/982f5936f2d83222263df2886ca0b629076366bb/recipes/aggressive-fill-paragraph";
sha256 = "1df4bk3ks09805y67af6z1gpfln0lz773jzbbckfl0fy3yli0dja";
name = "aggressive-fill-paragraph";
};
@@ -1225,15 +1236,15 @@
aggressive-indent = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "aggressive-indent";
- version = "20160519.114";
+ version = "20160608.1825";
src = fetchFromGitHub {
owner = "Malabarba";
repo = "aggressive-indent-mode";
- rev = "e49252fcb56982fd9b1d215d5477c80fc2a98ec9";
- sha256 = "1mymm68126nhv7fss1vlkyy20qw7f2mdsz2cskcjiv1crzpvkz4i";
+ rev = "6c3842eb4501bf6f39ea9b21c50aadd0339c4e6e";
+ sha256 = "168p898flmvczqqh1ql46lgm8cw5y0ydzg5mxpylfiqa26gq3f20";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/aggressive-indent";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/1e6aed365c42987d64d0cd9a8a6178339b1b39e8/recipes/aggressive-indent";
sha256 = "1qi8jbr28gax35siim3hnnkiy8pa2vcrzqzc6axr98wzny46x0i2";
name = "aggressive-indent";
};
@@ -1245,14 +1256,14 @@
}) {};
ahg = callPackage ({ fetchhg, fetchurl, lib, melpaBuild }: melpaBuild {
pname = "ahg";
- version = "20160513.1036";
+ version = "20160513.336";
src = fetchhg {
url = "https://bitbucket.com/agriggio/ahg";
rev = "8779fec342a4";
sha256 = "0w5wqanw2spxxhmlxgxyp4rb9i1y6kqhfb8cyv5fz01i8b8p5faw";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ahg";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/5b7972602399f9df9139cff177e38653bb0f43ed/recipes/ahg";
sha256 = "0kw138lfzwp54fmly3jzzml11y7fhcjp3w0irmwdzr68lc206lr4";
name = "ahg";
};
@@ -1265,7 +1276,7 @@
ahk-mode = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "ahk-mode";
- version = "20160320.2321";
+ version = "20160320.1721";
src = fetchFromGitHub {
owner = "ralesi";
repo = "ahk-mode";
@@ -1273,7 +1284,7 @@
sha256 = "07qpwa990bgs9028rqqk344c3z4hnr1jkfzcx9fi4z5k756zmw3b";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ahk-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/d8674b54ad5e17d1da1e499c7d8113f8acd8fd5d/recipes/ahk-mode";
sha256 = "066l4hsb49wbyv381qgn9k4hn8gxlzi20h3qaim9grngjj5ljbni";
name = "ahk-mode";
};
@@ -1286,7 +1297,7 @@
ahungry-theme = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "ahungry-theme";
- version = "20160517.558";
+ version = "20160516.2258";
src = fetchFromGitHub {
owner = "ahungry";
repo = "color-theme-ahungry";
@@ -1294,7 +1305,7 @@
sha256 = "0y17ilvpqivzrd1hvdwi6w0j5bb2d87v54c54ibnf92aryndvyqy";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ahungry-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/520295978fd7de3f4266dd69cc30d0b4fdf09db0/recipes/ahungry-theme";
sha256 = "0fhim0qscpqx9siprp3ax1azxzmqkzvrjx517d9bnd68z7xxbpqy";
name = "ahungry-theme";
};
@@ -1307,7 +1318,7 @@
airline-themes = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, powerline }:
melpaBuild {
pname = "airline-themes";
- version = "20160204.10";
+ version = "20160203.1710";
src = fetchFromGitHub {
owner = "AnthonyDiGirolamo";
repo = "airline-themes";
@@ -1315,7 +1326,7 @@
sha256 = "0blrpqn8wy9pwzikgzb0v6x4hk7axv93j4byfci62fh1905zfkkb";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/airline-themes";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/addeb923176132a52807308fa5e71d41c9511802/recipes/airline-themes";
sha256 = "0jkhb6nigyjmwqny7g59h4ssfy64vl3qnwcw46wnx5k9i73cjyih";
name = "airline-themes";
};
@@ -1328,7 +1339,7 @@
airplay = callPackage ({ deferred, fetchFromGitHub, fetchurl, lib, melpaBuild, request, simple-httpd }:
melpaBuild {
pname = "airplay";
- version = "20130212.1326";
+ version = "20130212.626";
src = fetchFromGitHub {
owner = "gongo";
repo = "airplay-el";
@@ -1336,7 +1347,7 @@
sha256 = "1lxpfswp1bjrz192px79f155dycf2kazpr7dfrcr1gyshlgxkpf7";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/airplay";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/b7f9d8229e4c91f4e3e8925b07e59d2a81cc745e/recipes/airplay";
sha256 = "095nibgs197iplphk6csvkgsrgh1fcfyy33py860v6qmihvk538f";
name = "airplay";
};
@@ -1349,7 +1360,7 @@
alchemist = callPackage ({ company, dash, elixir-mode, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, pkg-info }:
melpaBuild {
pname = "alchemist";
- version = "20160603.841";
+ version = "20160603.141";
src = fetchFromGitHub {
owner = "tonini";
repo = "alchemist.el";
@@ -1357,7 +1368,7 @@
sha256 = "1pfmpwma9k6l386v4m884gb5p2apl4k5m2vaxhmb7hnf9p27yrwl";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/alchemist";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/6616dc61d17c5bd89bc4d226baab24a1f8e49b3e/recipes/alchemist";
sha256 = "18jxw0zb7y34qbm4bcpfpb2656f0h9grmrbfskgp4ra4q5q3n369";
name = "alchemist";
};
@@ -1370,15 +1381,15 @@
alda-mode = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "alda-mode";
- version = "20160322.800";
+ version = "20160322.200";
src = fetchFromGitHub {
owner = "jgkamat";
repo = "alda-mode";
- rev = "6b74648e9e78f3e8e01d0c4eb9894d67581ba4fe";
- sha256 = "1bzw713rvih6p2h7c6vw6iyjyiqrrgwr46p5r0l57zklj279m37r";
+ rev = "f75173f4cb86259503ff4950e450e3fa7a37a808";
+ sha256 = "00s6z6f9nlqw528ppbwsglh9wshw8cpg2g102ywdsl28bwy3wvgj";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/alda-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/2612c494a2b6bd43ffbbaef88ce9ee6327779158/recipes/alda-mode";
sha256 = "0vpxiw3k0qxp6s19n93qkkyrr44rbw38ygriqdrfpp84pa09wprh";
name = "alda-mode";
};
@@ -1391,7 +1402,7 @@
alect-themes = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "alect-themes";
- version = "20160414.1014";
+ version = "20160414.314";
src = fetchFromGitHub {
owner = "alezost";
repo = "alect-themes";
@@ -1399,7 +1410,7 @@
sha256 = "1g9fai2i8izswiih4ba0l2wamhfl6pvmkq7is8x0wr45waldcga9";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/alect-themes";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/84c25a290ae4bcc4674434c83c66ae128e4c4282/recipes/alect-themes";
sha256 = "04fq65qnxlvl5nc2q037c6yb4nf422dfw2913gv6zfh9rdmxsks8";
name = "alect-themes";
};
@@ -1412,7 +1423,7 @@
alert = callPackage ({ fetchFromGitHub, fetchurl, gntp, lib, log4e, melpaBuild }:
melpaBuild {
pname = "alert";
- version = "20160507.321";
+ version = "20160506.2021";
src = fetchFromGitHub {
owner = "jwiegley";
repo = "alert";
@@ -1420,7 +1431,7 @@
sha256 = "1p6969wq2n26jvbh8p2gwc0hw38h4xq4rs299i7yzviq2hwvg8r1";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/alert";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/113953825ac4ff98d90a5375eb48d8b7bfa224e7/recipes/alert";
sha256 = "0x3cvczq09jvshz435jw2fjm69457x2wxdvvbbjq46nfnybhi118";
name = "alert";
};
@@ -1433,7 +1444,7 @@
align-cljlet = callPackage ({ clojure-mode, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "align-cljlet";
- version = "20160112.2201";
+ version = "20160112.1501";
src = fetchFromGitHub {
owner = "gstamp";
repo = "align-cljlet";
@@ -1441,7 +1452,7 @@
sha256 = "0l2rgs0rd4nmv4v7m10zhf2znzfvdifv1vlhpa3zbppg0fj8zph1";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/align-cljlet";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/091dcc3775ec2137cb61d66df4e72aca4900897a/recipes/align-cljlet";
sha256 = "0pnhhv33rvlmb3823xpy9v5h6q99fa7fn38djbwry4rymi4jmlih";
name = "align-cljlet";
};
@@ -1454,15 +1465,15 @@
all-ext = callPackage ({ all, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "all-ext";
- version = "20160530.328";
+ version = "20160604.1701";
src = fetchFromGitHub {
owner = "rubikitch";
repo = "all-ext";
- rev = "ccee331b96f58c62d9bbc8790d82e6b4eaebc6a1";
- sha256 = "0fj8426a6sraflk4vr2qb9frfqvaj5fczl8ibn67s6wnnyhhknjc";
+ rev = "2639955833132451679feae8a54ca157c1d864ce";
+ sha256 = "0g5g0nhq76v8jbhs38si6abwn4zv9qh7jl87qhhy3in8s1inswzf";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/all-ext";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/f8e4328cae9b4759a75da0b26ea8b68821bc71af/recipes/all-ext";
sha256 = "0vmpa5p7likg2xgck18sa0jvmvnhjs9v1fbl82sxx7qy2f3cggql";
name = "all-ext";
};
@@ -1475,7 +1486,7 @@
amd-mode = callPackage ({ ag, dash, f, fetchFromGitHub, fetchurl, js2-mode, js2-refactor, lib, makey, melpaBuild, projectile, s }:
melpaBuild {
pname = "amd-mode";
- version = "20160603.1901";
+ version = "20160603.1201";
src = fetchFromGitHub {
owner = "NicolasPetton";
repo = "amd-mode.el";
@@ -1483,7 +1494,7 @@
sha256 = "1q49gfs98djwjxw2sr8q08jf5glf9d3ks9014gjjwa1dpf98mpy3";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/amd-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/e4d6e9935e4935c9de769c7bf1c1b6dd256e10da/recipes/amd-mode";
sha256 = "17ry6vm5xlmdfs0mykdyn05cik38yswq5axdgn8hxrvvb6f58d06";
name = "amd-mode";
};
@@ -1505,7 +1516,7 @@
ample-regexps = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "ample-regexps";
- version = "20151023.1200";
+ version = "20151023.500";
src = fetchFromGitHub {
owner = "immerrr";
repo = "ample-regexps.el";
@@ -1513,7 +1524,7 @@
sha256 = "17kdv4447dyjaz2chi1f8hlrry8pgvjgxivvk48r9yzi1crjd1zj";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ample-regexps";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/6a5c72dfb52d55b2b22c91f115b32fff14f2f61e/recipes/ample-regexps";
sha256 = "00y07pd438v7ldkn5f1w84cpxa1mvcnzjkj6sf5l5pm97xqiz7j2";
name = "ample-regexps";
};
@@ -1526,7 +1537,7 @@
ample-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "ample-theme";
- version = "20150814.2001";
+ version = "20150814.1301";
src = fetchFromGitHub {
owner = "jordonbiondo";
repo = "ample-theme";
@@ -1534,7 +1545,7 @@
sha256 = "0x72czw5rmz89w5fa27z54bz8qirrr882g0r37pb8li04j1hk7kw";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ample-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/d448c03202137a461ed814ce87acfac23faf676e/recipes/ample-theme";
sha256 = "055c6jy2q761za4cl1vlqdskcd3mc1j58k8b4418q7h2lv2zc0ry";
name = "ample-theme";
};
@@ -1547,7 +1558,7 @@
ample-zen-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "ample-zen-theme";
- version = "20150119.2254";
+ version = "20150119.1554";
src = fetchFromGitHub {
owner = "mjwall";
repo = "ample-zen";
@@ -1555,7 +1566,7 @@
sha256 = "18z9jl5d19a132k6g1dvwqfbbdh5cx66b2qxlcjsfiqxlxglc2sa";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ample-zen-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/b3b8c21f5dfbe9d4845a01548c8b7d9ddfe172a7/recipes/ample-zen-theme";
sha256 = "0xygk80mh05qssrbfj4h6k50pg557dyj6kzc2pdlmnr5r4gnzdn3";
name = "ample-zen-theme";
};
@@ -1568,7 +1579,7 @@
anaconda-mode = callPackage ({ dash, emacs, f, fetchFromGitHub, fetchurl, lib, melpaBuild, pythonic, s }:
melpaBuild {
pname = "anaconda-mode";
- version = "20160527.1412";
+ version = "20160527.712";
src = fetchFromGitHub {
owner = "proofit404";
repo = "anaconda-mode";
@@ -1576,7 +1587,7 @@
sha256 = "0931yd46dfmaagmgvjx8f4a584a4faaw7krwmhnmhdbc3cqjvy39";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/anaconda-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/e03b698fd3fe5b80bdd24ce01f7fba28e9da0da8/recipes/anaconda-mode";
sha256 = "0gz16aam4zrm3s9ms13h4qcdflf55506kgkpyncq3bi54cvv8n1r";
name = "anaconda-mode";
};
@@ -1589,7 +1600,7 @@
anaphora = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "anaphora";
- version = "20140729.36";
+ version = "20140728.1736";
src = fetchFromGitHub {
owner = "rolandwalker";
repo = "anaphora";
@@ -1597,7 +1608,7 @@
sha256 = "1ym43y0wqifkzpkm7ayf8cq2wz8pc2wgg9zvdyi0cn9lr9mwpbav";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/anaphora";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/8505db1945071a15ba0f2bb74b58d4a6875ca7d6/recipes/anaphora";
sha256 = "1wb7fb3pc4gxvpjlm6gjbyx0rbhjiwd93qwc4vfw6p865ikl19y2";
name = "anaphora";
};
@@ -1610,13 +1621,13 @@
anchored-transpose = callPackage ({ fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "anchored-transpose";
- version = "20080905.754";
+ version = "20080905.54";
src = fetchurl {
url = "https://www.emacswiki.org/emacs/download/anchored-transpose.el";
sha256 = "1hklypbp79pgaf1yklbm3qx4skm3xlml0cm1r9b9js3dbqyha651";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/anchored-transpose";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/993271c9931170c3352daa3c1c0a8bcfa6915d9a/recipes/anchored-transpose";
sha256 = "19dgj1605qxc2znvzj0cj6x29zyrh00qnzk2rlwpn9hvzypg9v7w";
name = "anchored-transpose";
};
@@ -1629,7 +1640,7 @@
android-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "android-mode";
- version = "20160408.1423";
+ version = "20160408.723";
src = fetchFromGitHub {
owner = "remvee";
repo = "android-mode";
@@ -1637,7 +1648,7 @@
sha256 = "1cg35nb4hhibsk9d6daszs2khadqb3gzyzaxjsykxsgmpfh27ikv";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/android-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/77633aa340803a433570327943fbe31b396f4355/recipes/android-mode";
sha256 = "1nqrvq411yg4b9xb5cvc7ai7lfalwc2rfhclzprvymc4vxh6k4cc";
name = "android-mode";
};
@@ -1650,7 +1661,7 @@
angry-police-captain = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "angry-police-captain";
- version = "20120829.1452";
+ version = "20120829.752";
src = fetchFromGitHub {
owner = "rolpereira";
repo = "angry-police-captain-el";
@@ -1658,7 +1669,7 @@
sha256 = "1m0c7ns7aiycg86cgglir8bkw730fslyg1n15m9ki0da4cnmm97a";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/angry-police-captain";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/7fabdb05de9b8ec18a3a566f99688b50443b6b44/recipes/angry-police-captain";
sha256 = "00r3dx33h0wjxj0687ln8nbl1ff2badm3mk3r3bplfrd61z2qzld";
name = "angry-police-captain";
};
@@ -1671,7 +1682,7 @@
angular-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "angular-mode";
- version = "20151201.2227";
+ version = "20151201.1527";
src = fetchFromGitHub {
owner = "omouse";
repo = "angularjs-mode";
@@ -1679,7 +1690,7 @@
sha256 = "04kg2x0lif91knmkkh05mj42xw3dkzsnysjda6ian95v57wfg377";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/angular-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/7b120c7f97e8d313387d2e9d9210e7fcdd10523b/recipes/angular-mode";
sha256 = "1bwfmjldnxki0lqi3ys6r2a3nlhbwm1dibsg2dvzirq8qql02w1i";
name = "angular-mode";
};
@@ -1692,7 +1703,7 @@
angular-snippets = callPackage ({ dash, fetchFromGitHub, fetchurl, lib, melpaBuild, s }:
melpaBuild {
pname = "angular-snippets";
- version = "20140514.723";
+ version = "20140514.23";
src = fetchFromGitHub {
owner = "magnars";
repo = "angular-snippets.el";
@@ -1700,7 +1711,7 @@
sha256 = "0hdm1a323mzxjfdply8ri3addk146f21d8cmpd18r7dw3j3cdfrn";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/angular-snippets";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/96a0ad5fdbc52f803846e580856fb9c58181c020/recipes/angular-snippets";
sha256 = "057phgizn1c6njvdfigb23ljs31knq247gr0rcpqfrdaxsnnzm5c";
name = "angular-snippets";
};
@@ -1713,7 +1724,7 @@
annotate = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "annotate";
- version = "20151227.1722";
+ version = "20151227.1022";
src = fetchFromGitHub {
owner = "bastibe";
repo = "annotate.el";
@@ -1721,7 +1732,7 @@
sha256 = "08gs96r9mbdg0s5l504yp6i5nmi9qr4nwxq3xprsbx9bdzv5l2dx";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/annotate";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/3aae88b8e3b080501195d291012deab31aaf35f7/recipes/annotate";
sha256 = "1ajykgara2m713blj2kfmdz12fzm8jw7klyakkyi6i3c3a9m44jy";
name = "annotate";
};
@@ -1734,7 +1745,7 @@
annotate-depth = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "annotate-depth";
- version = "20160520.2240";
+ version = "20160520.1540";
src = fetchFromGitHub {
owner = "netromdk";
repo = "annotate-depth";
@@ -1742,7 +1753,7 @@
sha256 = "18cav5wl3d0yq15273rqmdwvrgw96lmqiq9x5fxhf3wjb543mifl";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/annotate-depth";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/bb37bd77aea642ca72d74112bdd8a02eab8d1a80/recipes/annotate-depth";
sha256 = "1j1pwnj7k6gl1p4npxsgrib0j1rzisq40pkm2wchjh86j3ybv2l4";
name = "annotate-depth";
};
@@ -1755,7 +1766,7 @@
annoying-arrows-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "annoying-arrows-mode";
- version = "20151113.1802";
+ version = "20151113.1102";
src = fetchFromGitHub {
owner = "magnars";
repo = "annoying-arrows-mode.el";
@@ -1763,7 +1774,7 @@
sha256 = "1ppq3kszzj2fgr7mwj565bjs8bs285ymy384cnnw7paddgcr9z02";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/annoying-arrows-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/8b528544841995045fb1f8344aaaa38946bb3915/recipes/annoying-arrows-mode";
sha256 = "13bwqv3mv7kgi1gms58f5g03q5g7q98n4vv6n28zqmppxm5z33s7";
name = "annoying-arrows-mode";
};
@@ -1776,7 +1787,7 @@
ansi = callPackage ({ dash, fetchFromGitHub, fetchurl, lib, melpaBuild, s }:
melpaBuild {
pname = "ansi";
- version = "20150703.1026";
+ version = "20150703.326";
src = fetchFromGitHub {
owner = "rejeep";
repo = "ansi.el";
@@ -1784,7 +1795,7 @@
sha256 = "19k71dj83kvc8mks6zhl45vsrsb61via53dqxjv9bny1ybh2av85";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ansi";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/7fabdb05de9b8ec18a3a566f99688b50443b6b44/recipes/ansi";
sha256 = "0b5xnv6z471jm53g37njxin6l8yflsgm80y4wxahfgy8apipcq89";
name = "ansi";
};
@@ -1797,7 +1808,7 @@
ansible = callPackage ({ f, fetchFromGitHub, fetchurl, lib, melpaBuild, s }:
melpaBuild {
pname = "ansible";
- version = "20160326.1631";
+ version = "20160326.1031";
src = fetchFromGitHub {
owner = "k1LoW";
repo = "emacs-ansible";
@@ -1805,7 +1816,7 @@
sha256 = "0k927pwhmn1cfl6jqs7ww1g6f64nq5i8f6a732d4q2rbl3aqzbdi";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ansible";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/8e45bf58b980ff542a5e887707a6361eb5ac0492/recipes/ansible";
sha256 = "1xdc05fdglqfbizra6s1zl6knnvaq526dkxqnw9g7w269j8f4z8g";
name = "ansible";
};
@@ -1818,7 +1829,7 @@
ansible-doc = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "ansible-doc";
- version = "20150524.1905";
+ version = "20150524.1205";
src = fetchFromGitHub {
owner = "lunaryorn";
repo = "ansible-doc.el";
@@ -1826,7 +1837,7 @@
sha256 = "1h3rqrjrl8wx7xvvd631jkbbczq3srd4mgz7y9wh3cvz1njdpy62";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ansible-doc";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/1daaaa7462f0b83c15ed9d9e7e6d0ee94434b8e9/recipes/ansible-doc";
sha256 = "03idvnn79fr9id81aivkm7g7cmlsg0c520wcq4da8g013xvi342w";
name = "ansible-doc";
};
@@ -1839,7 +1850,7 @@
ant = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "ant";
- version = "20160211.1643";
+ version = "20160211.943";
src = fetchFromGitHub {
owner = "apg";
repo = "ant-el";
@@ -1847,7 +1858,7 @@
sha256 = "0jb5vl3cq5m3r23fjhcxgxl4g011zkjkkyn5mqqxx22a1sydsvab";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ant";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/7fabdb05de9b8ec18a3a566f99688b50443b6b44/recipes/ant";
sha256 = "06028xjic14yv3rfqyc3k6jyjgm6fqfrf1mv8lvbh2sri2d5ifqa";
name = "ant";
};
@@ -1860,7 +1871,7 @@
anti-zenburn-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "anti-zenburn-theme";
- version = "20160502.150";
+ version = "20160501.1850";
src = fetchFromGitHub {
owner = "m00natic";
repo = "anti-zenburn-theme";
@@ -1868,7 +1879,7 @@
sha256 = "06xa29hq2qgg8hx1igj5hq7c16yj674mlnd3sgj40pwk88j5jp88";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/anti-zenburn-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/6f6f803dc99a1b1fdb5b4e79f1c9cf72b702d091/recipes/anti-zenburn-theme";
sha256 = "1sp9p6m2jy4m9fdn1hz25cmasy0mwwgn46qmvm92i56f5x6jlzzk";
name = "anti-zenburn-theme";
};
@@ -1881,7 +1892,7 @@
anx-api = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "anx-api";
- version = "20140208.1614";
+ version = "20140208.914";
src = fetchFromGitHub {
owner = "rmloveland";
repo = "emacs-appnexus-api";
@@ -1889,7 +1900,7 @@
sha256 = "0fzxzar8m9qznfxv3wr7vfj9y2110wf6mm5cj55k3sd5djdjhmf1";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/anx-api";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/2e3b329ff11818a1553c74a02475cb4110173076/recipes/anx-api";
sha256 = "1vzg3wsqyfb9rsfxrpz8k2gazjlz2nwnf4gnn1dypsjspjnzcb8r";
name = "anx-api";
};
@@ -1902,7 +1913,7 @@
anybar = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "anybar";
- version = "20160112.1702";
+ version = "20160112.1002";
src = fetchFromGitHub {
owner = "tie-rack";
repo = "anybar-el";
@@ -1910,7 +1921,7 @@
sha256 = "0qy5q4rq68nb21k7w3xpil8k8k5awcpjrjlxjwnhcklwb83w3dhf";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/anybar";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/5516e309df9ac8bf0fafb9ec9037094d82913b67/recipes/anybar";
sha256 = "0prnr8wjhishpf2zmn4b7054vfahk10w05nzsg2p6whaxywcachm";
name = "anybar";
};
@@ -1923,7 +1934,7 @@
anyins = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "anyins";
- version = "20131229.1141";
+ version = "20131229.441";
src = fetchFromGitHub {
owner = "antham";
repo = "anyins";
@@ -1931,7 +1942,7 @@
sha256 = "05lq0bllgn44zs85mgnfdcyjasm6j8m70jdcxksf798i0qdqnk7n";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/anyins";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/a367da2cb71fc0b144f9e608dc4857624991f19c/recipes/anyins";
sha256 = "0ncf3kn8rackcidkgda2zs60km3hx87rwr9daj7ksmbb6am09s7c";
name = "anyins";
};
@@ -1944,14 +1955,14 @@
anything = callPackage ({ fetchgit, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "anything";
- version = "20151019.403";
+ version = "20151018.2103";
src = fetchgit {
url = "http://repo.or.cz/r/anything-config.git";
rev = "2d7e0450e13ab04b20f4dff08f32936e78677e58";
- sha256 = "0sc64kmykfkcxfs4zd4anxvvdiiyajd9vz9byb7a8ncyc22fs3g9";
+ sha256 = "077gdqd6vhnfryf21mbgs2bdp8k7bdgaiajdw72rq4rlcg4xpjv9";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/anything";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/e1700e86cb35617178f5d7c61c88718ac7849f9b/recipes/anything";
sha256 = "13pmks0bsby57v3vp6jcvvzwb771d4qq62djgvrw4ykxqzkcb8fj";
name = "anything";
};
@@ -1964,7 +1975,7 @@
anything-exuberant-ctags = callPackage ({ anything, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "anything-exuberant-ctags";
- version = "20140317.37";
+ version = "20140316.1837";
src = fetchFromGitHub {
owner = "k1LoW";
repo = "anything-exuberant-ctags";
@@ -1972,7 +1983,7 @@
sha256 = "0dbf510gcd0m191samih0r4lx6d7sgk0ls0sx2jrdkyacy82ridy";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/anything-exuberant-ctags";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/66cae648d534468e5e9f125679847fb876935f68/recipes/anything-exuberant-ctags";
sha256 = "0p0jq2ggdgaxv2gd9m5iza0y3mjjc82xmgp899yr15pfffa4wihk";
name = "anything-exuberant-ctags";
};
@@ -1985,7 +1996,7 @@
anything-git-files = callPackage ({ anything, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "anything-git-files";
- version = "20130609.1143";
+ version = "20130609.443";
src = fetchFromGitHub {
owner = "tarao";
repo = "anything-git-files-el";
@@ -1993,7 +2004,7 @@
sha256 = "0gj0p7420wx5c186kdccjb9icn656sg5b0zwnwy3fjvhsbbvrb2r";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/anything-git-files";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/7f69f8362790ef4a9200f99a8f7ac3770b402b97/recipes/anything-git-files";
sha256 = "13giasg8lh5968plva449ki9nc3478a63700f8c0yghnwjb77asw";
name = "anything-git-files";
};
@@ -2006,7 +2017,7 @@
anything-git-grep = callPackage ({ anything, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "anything-git-grep";
- version = "20130609.440";
+ version = "20130608.2140";
src = fetchFromGitHub {
owner = "mechairoi";
repo = "anything-git-grep";
@@ -2014,7 +2025,7 @@
sha256 = "06fyvk7cjz1aag6fj52qraqmr23b0fqwml41yyid8gjxl4ygmkpv";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/anything-git-grep";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/784a04ab60ef0862105d2bec309994d3a755c043/recipes/anything-git-grep";
sha256 = "1kw88fvxil9l80w8zn16az7avqplyf2m0l7kp431wb5b1b1508jl";
name = "anything-git-grep";
};
@@ -2027,7 +2038,7 @@
anything-milkode = callPackage ({ anything, fetchFromGitHub, fetchurl, lib, melpaBuild, milkode }:
melpaBuild {
pname = "anything-milkode";
- version = "20140518.1643";
+ version = "20140518.943";
src = fetchFromGitHub {
owner = "ongaeshi";
repo = "anything-milkode";
@@ -2035,7 +2046,7 @@
sha256 = "1jw6gqwcl3fx1m7w0a15w2pnzzlqyr1fbg0m81ay358s4w3jn6v7";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/anything-milkode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/124d55605500c30ca7b01ae31eec3f3da51a2c7e/recipes/anything-milkode";
sha256 = "1apc865a01jyx602ldzj32rrjk6xmgnxdccpjpcfgh24h2aqpdan";
name = "anything-milkode";
};
@@ -2048,7 +2059,7 @@
anything-project = callPackage ({ anything, fetchFromGitHub, fetchurl, imakado, lib, melpaBuild }:
melpaBuild {
pname = "anything-project";
- version = "20141024.1127";
+ version = "20141024.427";
src = fetchFromGitHub {
owner = "imakado";
repo = "anything-project";
@@ -2056,7 +2067,7 @@
sha256 = "16a7i01q8qqkgph1s3jnwdr2arjq3cm3jpv5bk5sqs29c003q0pp";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/anything-project";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/e842d55882ec4d689d279fb80490db60a1f32fd6/recipes/anything-project";
sha256 = "10crwm34igb4kjh97alni15xzhsb2s0d4ghva86f2gpjidka9fhr";
name = "anything-project";
};
@@ -2069,7 +2080,7 @@
anything-prosjekt = callPackage ({ anything, fetchFromGitHub, fetchurl, lib, melpaBuild, prosjekt }:
melpaBuild {
pname = "anything-prosjekt";
- version = "20140129.904";
+ version = "20140129.204";
src = fetchFromGitHub {
owner = "abingham";
repo = "prosjekt";
@@ -2077,7 +2088,7 @@
sha256 = "1m8zvrv5aws7b0dffk8y6b5mncdk2c4k90mx69jys10fs0gc5hb3";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/anything-prosjekt";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/6d359ec827573dd8c871c4f23df5d1737f1830e7/recipes/anything-prosjekt";
sha256 = "15kgn0wrnbh666kchijdlssf2gp7spgbymr2nwgv6k730cb4mfa8";
name = "anything-prosjekt";
};
@@ -2090,7 +2101,7 @@
anything-replace-string = callPackage ({ anything, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "anything-replace-string";
- version = "20140317.1136";
+ version = "20140317.536";
src = fetchFromGitHub {
owner = "k1LoW";
repo = "anything-replace-string";
@@ -2098,7 +2109,7 @@
sha256 = "1834yj2vgs4dasdfnppc8iw8ll3yif948biq9hj0sbpsa2d8y44k";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/anything-replace-string";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/39b7f3a8de2f7728b374c09a1387beb3f7595d2e/recipes/anything-replace-string";
sha256 = "1fagi6cn88p6sf1yhx1qsi7nw9zpyx9hdfl66iyskqwddfvywp71";
name = "anything-replace-string";
};
@@ -2111,7 +2122,7 @@
anything-sage = callPackage ({ anything, cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild, sage-shell-mode }:
melpaBuild {
pname = "anything-sage";
- version = "20141005.1313";
+ version = "20141005.613";
src = fetchFromGitHub {
owner = "stakemori";
repo = "anything-sage";
@@ -2119,7 +2130,7 @@
sha256 = "08xr6fkk1r4r5jqh349d4dfal9nbs2a8y2fp8zn3zlrj2cd0g80k";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/anything-sage";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/07be4b11bbddb376e11616525e7b226c5a9f2296/recipes/anything-sage";
sha256 = "1878vj8hzrwfyd2yvxcm0f1vm9m0ndwnj0pcq7j8zm9lxj0w48p3";
name = "anything-sage";
};
@@ -2132,15 +2143,15 @@
anzu = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "anzu";
- version = "20160405.718";
+ version = "20160628.2009";
src = fetchFromGitHub {
owner = "syohex";
repo = "emacs-anzu";
- rev = "174b940c7e53e9e8180abc718d61dd200f7748be";
- sha256 = "1l0frc62i542avx8mmirdbwp6x3iy2ysdpwycpradmx4hsriin2c";
+ rev = "9574e8140f7ec35c148d440f850d0303f76fd377";
+ sha256 = "04n52yy7s397c9g30m8s7llnz42kq22v0h8r2mi12n9780i7pah6";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/anzu";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/04ac359d02d91725c8fc451b17bc2f06a7fe57a5/recipes/anzu";
sha256 = "0i2ia0jisj31vc2pjx9bhv8jccbp24q7c406x3nhh9hxjzs1f41i";
name = "anzu";
};
@@ -2152,13 +2163,13 @@
}) {};
aok = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild {
pname = "aok";
- version = "20130824.1327";
+ version = "20130824.627";
src = fetchurl {
url = "https://www.emacswiki.org/emacs/download/aok.el";
sha256 = "10vdmxzifxx3fkpyg76ngnj79k3d2pq0f322rd8ssc66alxhkz3g";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/aok";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/38eee4f0f7ad25d9b1de9011e63b82400177cdd5/recipes/aok";
sha256 = "1nkkbfwqp5r44wjwl902gm0xc8p3d2qj5mk1cchilr2rib52zd46";
name = "aok";
};
@@ -2171,7 +2182,7 @@
aozora-view = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "aozora-view";
- version = "20140310.1417";
+ version = "20140310.817";
src = fetchFromGitHub {
owner = "kawabata";
repo = "aozora-view";
@@ -2179,7 +2190,7 @@
sha256 = "0528z3axjmplg2fdbv4jxgy1p39vr4rnsm4a3ps2fanf8bwsyx3l";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/aozora-view";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/c6c13f8a0dd90c1c1f39711a5de69c1e0b785601/recipes/aozora-view";
sha256 = "0pd2574a6dkhrfr0jf5gvv34ganp6ddylyb6cfpg2d4znwbc2r2w";
name = "aozora-view";
};
@@ -2191,13 +2202,13 @@
}) {};
apache-mode = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild {
pname = "apache-mode";
- version = "20150828.1614";
+ version = "20150828.914";
src = fetchurl {
url = "https://www.emacswiki.org/emacs/download/apache-mode.el";
sha256 = "1jndhcjvj6s1clmyyphl5ss5267c7b5a58fz8gbp1ffk1d9ylfik";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/apache-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/a6da3640b72496e2b32e6ed21aa39df87af9f7f3/recipes/apache-mode";
sha256 = "1a1pj3bk0gplfx217yd6qdn7qrhfbkx2bhkk33k0gq5sia6rzs44";
name = "apache-mode";
};
@@ -2210,7 +2221,7 @@
apel = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "apel";
- version = "20160427.1052";
+ version = "20160427.352";
src = fetchFromGitHub {
owner = "wanderlust";
repo = "apel";
@@ -2218,8 +2229,8 @@
sha256 = "1aywxk77vfgr1mk7j4pygy9hl4q7lbbx4iik1rs9frkmw6sb8qni";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/apel";
- sha256 = "0zhlm8lfri3zkhj62cycvdhkkgrn72lqb0dalh8qgr049bdv816y";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/4976446a8ae40980d502186615902fc05c15ec7c/recipes/apel";
+ sha256 = "0zrm8m66p3aqr0108s3cj6z4xqbg2hx37z1pam4c65bqlhh74s8y";
name = "apel";
};
packageRequires = [];
@@ -2231,7 +2242,7 @@
apples-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "apples-mode";
- version = "20110121.518";
+ version = "20110120.2218";
src = fetchFromGitHub {
owner = "tequilasunset";
repo = "apples-mode";
@@ -2239,7 +2250,7 @@
sha256 = "0br0jl6xnajdx37s5cvs13srn9lldg58y9587a11s3s651xjdq0z";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/apples-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/5ca765a6a2f312f585624ec8b82dc9eb6b9bbc0c/recipes/apples-mode";
sha256 = "05ssnxs9ybc26jhr69xl9jpb41bz1688minmlc9msq2nvyfnj97s";
name = "apples-mode";
};
@@ -2252,14 +2263,14 @@
applescript-mode = callPackage ({ fetchsvn, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "applescript-mode";
- version = "20120205.1207";
+ version = "20120205.507";
src = fetchsvn {
url = "http://svn.osdn.jp/svnroot/macemacsjp/applescript-mode/trunk";
rev = "584";
sha256 = "0n3y0314ajqhn5hzih09gl72110ifw4vzcgdxm8n6npjbx7irbml";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/applescript-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/79d8790798305d5e0a75b289c5d8d1b6567c0c7d/recipes/applescript-mode";
sha256 = "1ya0dh7gz7qfflhn6dq43rapb2zg7djvxwn7p4jajyjnwbxmk611";
name = "applescript-mode";
};
@@ -2272,7 +2283,7 @@
aproject = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "aproject";
- version = "20150605.1106";
+ version = "20150605.406";
src = fetchFromGitHub {
owner = "vietor";
repo = "aproject";
@@ -2280,7 +2291,7 @@
sha256 = "1wyz8jvdy4m0cn75mm3zvxagm2gl10q51479f91gnqv14b4rndfc";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/aproject";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/de10c48976352f273e8363c2f6fa60602ee86c9b/recipes/aproject";
sha256 = "0v3gx2mff2s7knm69y253pm1yr4svy8w00pqbn1chrvymb62jhp2";
name = "aproject";
};
@@ -2293,13 +2304,13 @@
apropos-fn-plus-var = callPackage ({ fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "apropos-fn-plus-var";
- version = "20151231.2105";
+ version = "20151231.1405";
src = fetchurl {
url = "https://www.emacswiki.org/emacs/download/apropos-fn+var.el";
sha256 = "0wc9zg30a48cj2ssfj9wc7ga0ip9igcxcdbn1wr0qmndzxxa7x5k";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/apropos-fn+var";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/cd66a7c1a54ede8a279effeee5326be392058d1c/recipes/apropos-fn+var";
sha256 = "1s5gnsipsj7dhc8ca806grg32i6vlwm78hcxhrbs830vx9k84g5x";
name = "apropos-fn-plus-var";
};
@@ -2312,15 +2323,15 @@
apropospriate-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "apropospriate-theme";
- version = "20160212.1830";
+ version = "20160615.1010";
src = fetchFromGitHub {
owner = "waymondo";
repo = "apropospriate-theme";
- rev = "bdd9deddd78df2e8dda0030de5d3e86003bf2f4e";
- sha256 = "0j0k5ak5pzh3n2grf7b6b7ajxsp4ssv2l5gmg08kmbdwscavzc4r";
+ rev = "e91522784480185a9a38e34b91174fb64225f4c6";
+ sha256 = "1gqhf2hf1mgj54k4kd61r9jvmgdl0mwg7wa8q0n20l0ygq9wnlwv";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/apropospriate-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/1da33013f15825ab656260ce7453b8127e0286f4/recipes/apropospriate-theme";
sha256 = "10bj2bsi7b104m686z8mgvbh493liidsvivxfvfxzbndc8wyjsw9";
name = "apropospriate-theme";
};
@@ -2332,13 +2343,13 @@
}) {};
apu = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild {
pname = "apu";
- version = "20151231.2108";
+ version = "20151231.1408";
src = fetchurl {
url = "https://www.emacswiki.org/emacs/download/apu.el";
sha256 = "1xbvky0mspmbi8ghqhqhgbjn70acipwf0qwn6s5zdarwch10nljj";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/apu";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/ad04078221946c9d6b758809ec03ff88efce7322/recipes/apu";
sha256 = "0399rmjwcs7fykj10s9m0lm2wb1cr2bzw2bkgm5rp4n3va0rzaa2";
name = "apu";
};
@@ -2351,7 +2362,7 @@
archive-region = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "archive-region";
- version = "20140202.42";
+ version = "20140201.1742";
src = fetchFromGitHub {
owner = "rubikitch";
repo = "archive-region";
@@ -2359,7 +2370,7 @@
sha256 = "03pmwgvlxxlp4wh0sg5czpx1i88i43lz8lwdbfa6l28g1sv0f264";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/archive-region";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/f8e4328cae9b4759a75da0b26ea8b68821bc71af/recipes/archive-region";
sha256 = "1aiz6a0vdc2zm2q5r80cj5xixqfhsgmr7ldj9ff40k4sf3z5xny3";
name = "archive-region";
};
@@ -2372,7 +2383,7 @@
arduino-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "arduino-mode";
- version = "20151018.835";
+ version = "20151018.135";
src = fetchFromGitHub {
owner = "bookest";
repo = "arduino-mode";
@@ -2380,7 +2391,7 @@
sha256 = "1yvaqjc9hadbnnay5fprnh890xsp53kidad1zpb4a5z4a5z61n3c";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/arduino-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/e21ef938877444097d6d9cb7769819e2acb77cff/recipes/arduino-mode";
sha256 = "1lpsjpc7par12zsmg9sf4r1h039kxa4n68anjr3mhpp3d6rapjcx";
name = "arduino-mode";
};
@@ -2393,14 +2404,14 @@
aria2 = callPackage ({ emacs, fetchgit, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "aria2";
- version = "20141108.17";
+ version = "20141107.1717";
src = fetchgit {
url = "https://bitbucket.org/ukaszg/aria2.git";
rev = "3c54254e424c6c8b4eb0d8e7c4907b094c27a3f0";
- sha256 = "1z6smlc5cpf6kswbibhwwx3h5khsbj38a371lsjjhgmharg7a4r7";
+ sha256 = "1xkgz3l7idw5bk1xlffdaddf5v1q6fm3grbryl4xvssrbwgnyisf";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/aria2";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/9444cfcdf2ea01891e63c599bcbba36a6bf47cce/recipes/aria2";
sha256 = "10x2k99m3kl6y0k0mw590gq1ac162nmdwk58i8i7a4mb72zmsmhc";
name = "aria2";
};
@@ -2413,7 +2424,7 @@
ariadne = callPackage ({ bert, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "ariadne";
- version = "20131117.1811";
+ version = "20131117.1111";
src = fetchFromGitHub {
owner = "manzyuk";
repo = "ariadne-el";
@@ -2421,7 +2432,7 @@
sha256 = "0vh9wfc3657sd12ybjcrxpg6f757x2ghkcl1lw01szmyy5vmj27h";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ariadne";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/89635cd11621b04a8575629ec1bf196fb3ea5d43/recipes/ariadne";
sha256 = "0lfhving19wcfr40gjb2gnginiz8cncixiyyxhwx08lm84qb3a7p";
name = "ariadne";
};
@@ -2434,7 +2445,7 @@
arjen-grey-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "arjen-grey-theme";
- version = "20160403.2115";
+ version = "20160403.1415";
src = fetchFromGitHub {
owner = "credmp";
repo = "arjen-grey-theme";
@@ -2442,7 +2453,7 @@
sha256 = "0p8k6sxmvmf535sawis6rn6lfyl5ph263i1phf2d5wl3dzs0xj5x";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/arjen-grey-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/ed9804061cfadd26c69bb1bfe63dbe22f916f723/recipes/arjen-grey-theme";
sha256 = "18q66f7hhys2ab9ljsdp9013mp7d6v6d1lrb0d1bb035r1b4pfj7";
name = "arjen-grey-theme";
};
@@ -2455,7 +2466,7 @@
artbollocks-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "artbollocks-mode";
- version = "20160604.220";
+ version = "20160603.1920";
src = fetchFromGitHub {
owner = "sachac";
repo = "artbollocks-mode";
@@ -2463,7 +2474,7 @@
sha256 = "063j7q2i3701fmh44m77d572ppq0fd60hznh8jcwqa1ljbzynzkn";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/artbollocks-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/22b237ab91ddd3c17986ea12e6a32f2ce62d3a79/recipes/artbollocks-mode";
sha256 = "0dlnxicn6nzyiz44y92pbl4nzr9jxfb9a99wacjrwq2ahdrwhhjp";
name = "artbollocks-mode";
};
@@ -2476,7 +2487,7 @@
arview = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "arview";
- version = "20160419.2309";
+ version = "20160419.1609";
src = fetchFromGitHub {
owner = "afainer";
repo = "arview";
@@ -2484,7 +2495,7 @@
sha256 = "1yvirfmvf6v5khl7zhx2ddv9bbxnx1qhwfzi0gy2nmbxlykb6s2j";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/arview";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/31574cd756f4f93e2c6bcad5eca33a3294cccd54/recipes/arview";
sha256 = "0d935lj0x3rbar94l7288xrgbcp1wmz6r2l0b7i89r5piczyiy1y";
name = "arview";
};
@@ -2496,13 +2507,13 @@
}) {};
ascii = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild {
pname = "ascii";
- version = "20130824.1400";
+ version = "20130824.700";
src = fetchurl {
url = "https://www.emacswiki.org/emacs/download/ascii.el";
sha256 = "05fjsj5nmc05cmsi0qj914dqdwk8rll1d4dwhn0crw36p2ivql75";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ascii";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/a6da3640b72496e2b32e6ed21aa39df87af9f7f3/recipes/ascii";
sha256 = "0jb63f7qwhfbz0n4yrvnvx03cjqly3mqsc3rq9mgf4svy2zw702r";
name = "ascii";
};
@@ -2515,7 +2526,7 @@
asilea = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "asilea";
- version = "20150105.1625";
+ version = "20150105.925";
src = fetchFromGitHub {
owner = "Fanael";
repo = "asilea";
@@ -2523,7 +2534,7 @@
sha256 = "1s973vzivibaqjb8acn4ylrdasxh17jcfmmvqp4wm05nwhg75597";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/asilea";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/858e673c66e876d80f41d47d307c944d7bdb147d/recipes/asilea";
sha256 = "1lb8nr6r6yy06m4pxg8w9ja4zv8k5xwhl95v2wv95y1qwhgnwg3j";
name = "asilea";
};
@@ -2536,15 +2547,15 @@
asn1-mode = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, s }:
melpaBuild {
pname = "asn1-mode";
- version = "20151124.728";
+ version = "20160627.40";
src = fetchFromGitHub {
owner = "kawabata";
repo = "asn1-mode";
- rev = "f8acc7e79306ca416f28ff4dc308d8ec47af51a5";
- sha256 = "0h18x9nh152dnyqjv5b1zjksl8wb75s8zmx3v8vvmwqyy6ql8gcj";
+ rev = "c244717529229d7ecc2b2c160992f28dcb755d2c";
+ sha256 = "0r004sli3ggkhsdi61m8p32l227h5wligzph0mfhsy39fkhmva34";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/asn1-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/b694baceceb54810be8f8c7152b2ac0b4063f01c/recipes/asn1-mode";
sha256 = "0iswisb08dqz7jc5ra4wcdhbmglildgyrb547dm5362xmvm9ifmy";
name = "asn1-mode";
};
@@ -2557,15 +2568,15 @@
assess = callPackage ({ dash, emacs, fetchFromGitHub, fetchurl, lib, m-buffer, melpaBuild }:
melpaBuild {
pname = "assess";
- version = "20160523.2222";
+ version = "20160628.1739";
src = fetchFromGitHub {
owner = "phillord";
repo = "assess";
- rev = "e1b7740df50771b8eec5742f6910988e4a08b88f";
- sha256 = "1lng956z7cc73b0sn1zp433cl9hgya8x7drnaf0v122hg9qhf5c4";
+ rev = "fca80753d788e48ffe782b016db925663c9e84ce";
+ sha256 = "1cjjvjzim98cbqq1ifa5hrk15laswsakr95k407qiqsdbj8j7ksq";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/assess";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/6f917a34506193f2674b195569dfd3c13ba62c1d/recipes/assess";
sha256 = "0xj3f48plwxmibax00qn15ya7s0h560xzwr8nkwl5r151v1mc9rr";
name = "assess";
};
@@ -2578,7 +2589,7 @@
async = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "async";
- version = "20160513.1028";
+ version = "20160513.328";
src = fetchFromGitHub {
owner = "jwiegley";
repo = "emacs-async";
@@ -2586,7 +2597,7 @@
sha256 = "0w1cf78074is9n7wyfnyf1xjyydpyrbppf2xbvs9f1knmdajsph3";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/async";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/6a0fe448e82f42cad0fdaa40c964032892fedd83/recipes/async";
sha256 = "063ci4f35x1zm9ixy110i5ds0vsrcafpixrz3xkvpnfqdn29si3f";
name = "async";
};
@@ -2599,7 +2610,7 @@
at = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, queue }:
melpaBuild {
pname = "at";
- version = "20140707.1420";
+ version = "20140707.720";
src = fetchFromGitHub {
owner = "skeeto";
repo = "at-el";
@@ -2607,7 +2618,7 @@
sha256 = "0rnnvr8x1czphbinby2z2dga7ikwgd13d7zhgmp3ggamzyaz6nf1";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/@";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/f6ab31b9371236fe1f3bf8e68c93d0bad8e14d24/recipes/@";
sha256 = "0w91qx955z67w2yh8kf86b58bb3b6s6490mmbky8467knf2q83qz";
name = "at";
};
@@ -2620,7 +2631,7 @@
atom-dark-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "atom-dark-theme";
- version = "20151120.835";
+ version = "20151120.135";
src = fetchFromGitHub {
owner = "whitlockjc";
repo = "atom-dark-theme-emacs";
@@ -2628,7 +2639,7 @@
sha256 = "0jfpzv8dmvl4nr6kvq5aii830s5h632bq2q3jbnfc4zdql7id464";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/atom-dark-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/d1f565871559d6ea4ca4bb2fbaebce58f2f383eb/recipes/atom-dark-theme";
sha256 = "1ci61blm7wc83wm2iyax017ai4jljyag5j1mvw86rimmmjzr0v8f";
name = "atom-dark-theme";
};
@@ -2641,7 +2652,7 @@
atom-one-dark-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "atom-one-dark-theme";
- version = "20160521.2106";
+ version = "20160521.1406";
src = fetchFromGitHub {
owner = "jonathanchu";
repo = "atom-one-dark-theme";
@@ -2649,7 +2660,7 @@
sha256 = "07gbnm0bbgbqvmzhwmfpnxfkirrldr4dvvvq5plv923hbqzayiih";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/atom-one-dark-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/3ba1c4625c9603372746a6c2edb69d65f0ef79f5/recipes/atom-one-dark-theme";
sha256 = "0wwnkhq7vyysqiqcxc1jsn98155ri4mf4w03k7inl1f8ffpwahvw";
name = "atom-one-dark-theme";
};
@@ -2662,7 +2673,7 @@
auctex-latexmk = callPackage ({ auctex, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "auctex-latexmk";
- version = "20160522.1950";
+ version = "20160522.1250";
src = fetchFromGitHub {
owner = "tom-tan";
repo = "auctex-latexmk";
@@ -2670,7 +2681,7 @@
sha256 = "0myf7y4ayz79875vaqmms7ps9wk8p5sj4bd4vgxmzgfwi3vqdql4";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/auctex-latexmk";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/3f48af615c56f093dff417a5d3b705f9993c518f/recipes/auctex-latexmk";
sha256 = "1rdlgkiwlgm06i1gjxcfciz6wgdskfhln8qhixyfxk7pnz0ax327";
name = "auctex-latexmk";
};
@@ -2683,7 +2694,7 @@
auctex-lua = callPackage ({ auctex, fetchFromGitHub, fetchurl, lib, lua-mode, melpaBuild }:
melpaBuild {
pname = "auctex-lua";
- version = "20151121.1710";
+ version = "20151121.1010";
src = fetchFromGitHub {
owner = "vermiculus";
repo = "auctex-lua";
@@ -2691,7 +2702,7 @@
sha256 = "0lgfgvnaln5rhhwgcrzwrhbj0gz8sgaf6xxdl7njf3sa6bfgngsz";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/auctex-lua";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/102c7b05f5bfff12ac2820cae58c0205ca450559/recipes/auctex-lua";
sha256 = "0v999jvinljkvhbn205p36a6jfzppn0xvflvzr8mid1hnqlrpjhf";
name = "auctex-lua";
};
@@ -2704,7 +2715,7 @@
audio-notes-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "audio-notes-mode";
- version = "20140204.2054";
+ version = "20140204.1354";
src = fetchFromGitHub {
owner = "Malabarba";
repo = "audio-notes-mode";
@@ -2712,7 +2723,7 @@
sha256 = "0q79kblcbz5vlzj0f49vpc1902767ydmvkmwwjs60x3w2f3aq3cm";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/audio-notes-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/1e6aed365c42987d64d0cd9a8a6178339b1b39e8/recipes/audio-notes-mode";
sha256 = "0q88xmi7jbrx47nvbbmwggbm6i7agzpnv5y7cpdh73lg165xsz2h";
name = "audio-notes-mode";
};
@@ -2725,7 +2736,7 @@
aurel = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "aurel";
- version = "20160309.936";
+ version = "20160309.236";
src = fetchFromGitHub {
owner = "alezost";
repo = "aurel";
@@ -2733,7 +2744,7 @@
sha256 = "0dqr1yrzf7a8655dsbcch4622rc75j9yjbn9zhkyikqjicddnlda";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/aurel";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/d1612acd2cf1fea739739608113923ec51d307e9/recipes/aurel";
sha256 = "13zyi55ksv426pcksbm3l9s6bmp102w7j1xbry46bc48al6i2nnl";
name = "aurel";
};
@@ -2746,7 +2757,7 @@
aurora-config-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "aurora-config-mode";
- version = "20140520.1103";
+ version = "20140520.403";
src = fetchFromGitHub {
owner = "bdd";
repo = "aurora-config-mode.el";
@@ -2754,7 +2765,7 @@
sha256 = "0ns1xhpk1awbj3kv946dv11a99p84dhm54vjk72kslxwx42nia28";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/aurora-config-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/7fabdb05de9b8ec18a3a566f99688b50443b6b44/recipes/aurora-config-mode";
sha256 = "1hpjwidqmjxanijsc1imc7ww9abbylmkin1p0846fbz1hz3a603c";
name = "aurora-config-mode";
};
@@ -2767,7 +2778,7 @@
aurora-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "aurora-theme";
- version = "20151015.2002";
+ version = "20151015.1302";
src = fetchFromGitHub {
owner = "xzerocode";
repo = "aurora-theme";
@@ -2775,7 +2786,7 @@
sha256 = "1z2n6gd63mgj2wj45n6g1gmfrk0iwzlrzb6g1rdd9r9a03c03qi6";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/aurora-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/a687ff55ba0f473484b9dadf98d5ea4961f346b9/recipes/aurora-theme";
sha256 = "1fhlng30v25ycr502vfvajl70vimscqkipva6ghr670j35ac5vz5";
name = "aurora-theme";
};
@@ -2788,7 +2799,7 @@
auth-password-store = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, password-store, seq }:
melpaBuild {
pname = "auth-password-store";
- version = "20160228.1523";
+ version = "20160228.823";
src = fetchFromGitHub {
owner = "DamienCassou";
repo = "auth-password-store";
@@ -2796,7 +2807,7 @@
sha256 = "1b6g7qvrxv6gkl4izq1y7k0x0l7izyfnpki10di5vdv3jp6xg9b2";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/auth-password-store";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/0f4d2a28373ba93da5b280ebf40c5a3fa758ea11/recipes/auth-password-store";
sha256 = "118ll12dhhxmlsp2mxmy5cd91166a1qsk406yhap5zw1qvyg58w5";
name = "auth-password-store";
};
@@ -2809,7 +2820,7 @@
auto-async-byte-compile = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "auto-async-byte-compile";
- version = "20120322.2241";
+ version = "20120322.1641";
src = fetchFromGitHub {
owner = "rubikitch";
repo = "auto-async-byte-compile";
@@ -2817,7 +2828,7 @@
sha256 = "17nv8rqjh3ynbk1r0njwjb5hd7sgii0vncsa1q19jyp3h30rj4in";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/auto-async-byte-compile";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/f8e4328cae9b4759a75da0b26ea8b68821bc71af/recipes/auto-async-byte-compile";
sha256 = "0ks6xsxzayiyd0jl8m36xlc5p57p21qbhgq2mmz50a2lhpxxfiyg";
name = "auto-async-byte-compile";
};
@@ -2830,7 +2841,7 @@
auto-auto-indent = callPackage ({ cl-lib ? null, es-lib, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "auto-auto-indent";
- version = "20131106.2003";
+ version = "20131106.1303";
src = fetchFromGitHub {
owner = "sabof";
repo = "auto-auto-indent";
@@ -2838,7 +2849,7 @@
sha256 = "1whbvqylwnxg8d8gn55kcky39rgyc49rakyxlbkplh813lk6lxb7";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/auto-auto-indent";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/2ad2ea105b895cb958ce0ab2bf2fad2b40d41b2f/recipes/auto-auto-indent";
sha256 = "08s73pnyrmklb660jl5rshncpq31z3m9fl55v7453ch8syp7gzh7";
name = "auto-auto-indent";
};
@@ -2850,13 +2861,13 @@
}) {};
auto-capitalize = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild {
pname = "auto-capitalize";
- version = "20160415.2303";
+ version = "20160415.1603";
src = fetchurl {
url = "https://www.emacswiki.org/emacs/download/auto-capitalize.el";
sha256 = "0xywyfpsi64g9lihm5ncmjrj06iq9s6pp9fmsgj1hdf9y0z65lg0";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/auto-capitalize";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/d4edbba637a27a641f53f8a51861b176cabaa286/recipes/auto-capitalize";
sha256 = "18fygc71n9bc0vrpymz2f7sw9hzkpqxzfglh53shmbm1zns3wkw0";
name = "auto-capitalize";
};
@@ -2869,7 +2880,7 @@
auto-compile = callPackage ({ dash, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, packed }:
melpaBuild {
pname = "auto-compile";
- version = "20160424.1318";
+ version = "20160424.618";
src = fetchFromGitHub {
owner = "tarsius";
repo = "auto-compile";
@@ -2877,7 +2888,7 @@
sha256 = "05crb8cm7s1nggrqq0xcs2xiabjw3vh44fnkdiilq1c5cnajdcrj";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/auto-compile";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/e00dcd4f8c59c748cc3c85af1607dd19b85d7813/recipes/auto-compile";
sha256 = "1cdv41hg71mi5ixxi4kiizyg03xai2gyhk0vz7gw59d9a7482yks";
name = "auto-compile";
};
@@ -2890,7 +2901,7 @@
auto-complete = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild, popup }:
melpaBuild {
pname = "auto-complete";
- version = "20160416.1504";
+ version = "20160416.804";
src = fetchFromGitHub {
owner = "auto-complete";
repo = "auto-complete";
@@ -2898,7 +2909,7 @@
sha256 = "19sdjwnjryzaq1rpjkvr3mjz9mg7cqzrrx5mqzic3aklgg71d53j";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/auto-complete";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/083fb071191bccd6feb3fb84569373a597440fb1/recipes/auto-complete";
sha256 = "1c4ij5bnclg94jdzhkqvq2vxwv6wvs051mbki1ibjm5f2hlacvh3";
name = "auto-complete";
};
@@ -2911,7 +2922,7 @@
auto-complete-auctex = callPackage ({ auto-complete, fetchFromGitHub, fetchurl, lib, melpaBuild, yasnippet }:
melpaBuild {
pname = "auto-complete-auctex";
- version = "20140223.1858";
+ version = "20140223.1158";
src = fetchFromGitHub {
owner = "monsanto";
repo = "auto-complete-auctex";
@@ -2919,7 +2930,7 @@
sha256 = "1wri8q5llpy1q1h4ac4kjnnkgj6fby8i9vrpr6mrb13d4gnk4gr2";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/auto-complete-auctex";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/77167fb2e84bed32ace9490c1ed4148719e4cf8e/recipes/auto-complete-auctex";
sha256 = "00npvryds5wd3d5a13r9prlvw6vvjlag8d32x5xf9bfmmvs0fgqh";
name = "auto-complete-auctex";
};
@@ -2932,7 +2943,7 @@
auto-complete-c-headers = callPackage ({ auto-complete, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "auto-complete-c-headers";
- version = "20150912.523";
+ version = "20150911.2223";
src = fetchFromGitHub {
owner = "mooz";
repo = "auto-complete-c-headers";
@@ -2940,7 +2951,7 @@
sha256 = "12mzi6bwg702sp0f0wd1ag555blbpk252rr9rqs03bn8pkw89h4n";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/auto-complete-c-headers";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/0174b70fec45ddec9c1e9555adc82fef59054135/recipes/auto-complete-c-headers";
sha256 = "02pkrxvzrpyjrr2fkxnl1qw06aspzv8jlp2c1piln6zcjd92l3j7";
name = "auto-complete-c-headers";
};
@@ -2953,7 +2964,7 @@
auto-complete-chunk = callPackage ({ auto-complete, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "auto-complete-chunk";
- version = "20140225.1046";
+ version = "20140225.346";
src = fetchFromGitHub {
owner = "tkf";
repo = "auto-complete-chunk";
@@ -2961,7 +2972,7 @@
sha256 = "1zhbpxpl443ghpkl9i68jcjfcw1vnf8ky06pf5qjjmqbxlcyd9li";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/auto-complete-chunk";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/306e2528638d97c28372df55a9376750d3fde1d4/recipes/auto-complete-chunk";
sha256 = "1937j1xm20vfcqm9ig4nvciqfkz7rpw0nsfhlg69gkmv0nqszdr3";
name = "auto-complete-chunk";
};
@@ -2974,7 +2985,7 @@
auto-complete-clang = callPackage ({ auto-complete, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "auto-complete-clang";
- version = "20140409.952";
+ version = "20140409.252";
src = fetchFromGitHub {
owner = "brianjcj";
repo = "auto-complete-clang";
@@ -2982,7 +2993,7 @@
sha256 = "12y6f47xbjl4gy14j2f5wlisy5vl6rhx74n27w61pjv38m0a7mi1";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/auto-complete-clang";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/eab7d88a893fdf76c22f0aa5ac3577efd60fc9b4/recipes/auto-complete-clang";
sha256 = "1rnmphl7ml5ryjl5ka2l58hddir8b34iz1rm905wdwh164piljva";
name = "auto-complete-clang";
};
@@ -2995,7 +3006,7 @@
auto-complete-clang-async = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "auto-complete-clang-async";
- version = "20130526.1714";
+ version = "20130526.1014";
src = fetchFromGitHub {
owner = "Golevka";
repo = "emacs-clang-complete-async";
@@ -3003,7 +3014,7 @@
sha256 = "1sw0wxrjcjqk0w1llfj376g6axa5bnk2lq2vv66746bkz14h0s8f";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/auto-complete-clang-async";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/23aa24b025216359c5e600eee2f2cd4ecc7556e3/recipes/auto-complete-clang-async";
sha256 = "1jj0jn1v3070g7g0j5gvpybv145kki8nsjxqb8fjf9qag8ilfkjh";
name = "auto-complete-clang-async";
};
@@ -3016,7 +3027,7 @@
auto-complete-exuberant-ctags = callPackage ({ auto-complete, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "auto-complete-exuberant-ctags";
- version = "20140320.824";
+ version = "20140320.224";
src = fetchFromGitHub {
owner = "k1LoW";
repo = "auto-complete-exuberant-ctags";
@@ -3024,7 +3035,7 @@
sha256 = "1fqgyg986fg1dzac5wa97bx82mfddqb6qrfnpr3zksmw3vgykxr0";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/auto-complete-exuberant-ctags";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/1cc9786ed8cea2461b592f860d8e2a0897c57068/recipes/auto-complete-exuberant-ctags";
sha256 = "1i2s3ycc8jafkzdsz3kbvx1hh95ydi5s6rq6n0wzw1kyy3km35gd";
name = "auto-complete-exuberant-ctags";
};
@@ -3037,7 +3048,7 @@
auto-complete-nxml = callPackage ({ auto-complete, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "auto-complete-nxml";
- version = "20140221.558";
+ version = "20140220.2258";
src = fetchFromGitHub {
owner = "aki2o";
repo = "auto-complete-nxml";
@@ -3045,7 +3056,7 @@
sha256 = "18bf1kw85mab0zp7rn85cm1nxjxg5c1dmiv0j0mjwzsv8an4px5y";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/auto-complete-nxml";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/c89dcbf03a802a4361e44174a332a312e352be36/recipes/auto-complete-nxml";
sha256 = "0viscr5k1carn9vhflry16kgihr6fvh6h36b049pgnk6ww085k6a";
name = "auto-complete-nxml";
};
@@ -3058,7 +3069,7 @@
auto-complete-pcmp = callPackage ({ auto-complete, fetchFromGitHub, fetchurl, lib, log4e, melpaBuild, yaxception }:
melpaBuild {
pname = "auto-complete-pcmp";
- version = "20140227.751";
+ version = "20140227.51";
src = fetchFromGitHub {
owner = "aki2o";
repo = "auto-complete-pcmp";
@@ -3066,7 +3077,7 @@
sha256 = "1hf2f903hy9afahrgy2fx9smgn631drs6733188zgqi3nkyizj26";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/auto-complete-pcmp";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/f5c53a8aeaaab23e032a8e7cb5cad7e531a1662c/recipes/auto-complete-pcmp";
sha256 = "1mpgkwj8jwpvxphlm6iaprwjrldmihbgg97jav0fbm1kjnm4azna";
name = "auto-complete-pcmp";
};
@@ -3079,7 +3090,7 @@
auto-complete-rst = callPackage ({ auto-complete, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "auto-complete-rst";
- version = "20140225.1044";
+ version = "20140225.344";
src = fetchFromGitHub {
owner = "tkf";
repo = "auto-complete-rst";
@@ -3087,7 +3098,7 @@
sha256 = "107svb82cgfns9kcrmy3hh56cab81782jkbz5i9959ms81xizfb8";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/auto-complete-rst";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/4c948dc47f67aa47a1607cbdacdc95241d1a658f/recipes/auto-complete-rst";
sha256 = "0dazkpnzzr0imb2a01qq8l60jxhhlknzjx7wccnbm7d2rk3338m6";
name = "auto-complete-rst";
};
@@ -3100,7 +3111,7 @@
auto-complete-sage = callPackage ({ auto-complete, fetchFromGitHub, fetchurl, lib, melpaBuild, sage-shell-mode }:
melpaBuild {
pname = "auto-complete-sage";
- version = "20160514.951";
+ version = "20160514.251";
src = fetchFromGitHub {
owner = "stakemori";
repo = "auto-complete-sage";
@@ -3108,7 +3119,7 @@
sha256 = "139in1jgxg43v7ji4i1qmxbgspr71h95lzlz0fvdk78vkxc5842b";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/auto-complete-sage";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/f1cd78dcd58d559c47873f8fcfcab089a8493dd6/recipes/auto-complete-sage";
sha256 = "02sxbir3arvmnkvxgndlkln9y05jnlv6i8czd6a0wcxk4nj43lq1";
name = "auto-complete-sage";
};
@@ -3121,7 +3132,7 @@
auto-dictionary = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "auto-dictionary";
- version = "20150410.1810";
+ version = "20150410.1110";
src = fetchFromGitHub {
owner = "nschum";
repo = "auto-dictionary-mode";
@@ -3129,7 +3140,7 @@
sha256 = "0rfjx0x2an28821shgb4v5djza4kwn5nnrsl2cvh3px4wrvw3izp";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/auto-dictionary";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/1711d710ac09fe407fde89ee351ccdcb78555d35/recipes/auto-dictionary";
sha256 = "1va485a8lxvb3507kr83cr6wpssxnf8y4l42mamn9daa8sjx3q16";
name = "auto-dictionary";
};
@@ -3142,7 +3153,7 @@
auto-dim-other-buffers = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "auto-dim-other-buffers";
- version = "20160128.1846";
+ version = "20160128.1146";
src = fetchFromGitHub {
owner = "mina86";
repo = "auto-dim-other-buffers.el";
@@ -3150,7 +3161,7 @@
sha256 = "0lqfnv8wqnbb5ddwmh9svphc3bgmwdpwx40qw9sgqdzpj3xh7v8g";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/auto-dim-other-buffers";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/acc9b816796b9f142c53f90593952b43c962d2d8/recipes/auto-dim-other-buffers";
sha256 = "0n9d23sfcmkjfqlm80vrgf856wy08ak4n4rk0z7vadq07yj46zxh";
name = "auto-dim-other-buffers";
};
@@ -3163,7 +3174,7 @@
auto-highlight-symbol = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "auto-highlight-symbol";
- version = "20130313.1043";
+ version = "20130313.443";
src = fetchFromGitHub {
owner = "gennad";
repo = "auto-highlight-symbol";
@@ -3171,7 +3182,7 @@
sha256 = "0jfiax1qqnyznhlnqkjsr9nnv7fpjywvfhj9jq59460j0nbrgs5c";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/auto-highlight-symbol";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/fdf73ee62f0a4e762e3a1aa94284abea8da8ce7c/recipes/auto-highlight-symbol";
sha256 = "02mkji4sxym07jf5ww5kgv1c18x0xdfn8cmvgns5h4gij64lnr66";
name = "auto-highlight-symbol";
};
@@ -3184,7 +3195,7 @@
auto-indent-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "auto-indent-mode";
- version = "20160427.522";
+ version = "20160426.2222";
src = fetchFromGitHub {
owner = "mattfidler";
repo = "auto-indent-mode.el";
@@ -3192,7 +3203,7 @@
sha256 = "1ya7lnlgrxwrbaxlkl0bbz2m8pic6yjln0dm1mcmr9mjglp8kh6y";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/auto-indent-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/49af78177278e7072c70fde0eaa5bb82490ebe9d/recipes/auto-indent-mode";
sha256 = "1nk78p8lqs8cx90asfs8iaqnwwyy8fi5bafaprm9c0nrxz299ibz";
name = "auto-indent-mode";
};
@@ -3204,13 +3215,13 @@
}) {};
auto-install = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild {
pname = "auto-install";
- version = "20150419.202";
+ version = "20150418.1902";
src = fetchurl {
url = "https://www.emacswiki.org/emacs/download/auto-install.el";
sha256 = "043pb2wk7jh0jgxphdl4848rjyabna26gj0vlhpiyd8zc361pg9d";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/auto-install";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/7ad02a591b981518abd147475195f9484e4012fc/recipes/auto-install";
sha256 = "1gaxc2ya4r903k0jf3319wg7wg5kzq7k8rfy8ac9b0wfzv247ixk";
name = "auto-install";
};
@@ -3223,7 +3234,7 @@
auto-package-update = callPackage ({ dash, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "auto-package-update";
- version = "20151026.711";
+ version = "20151026.111";
src = fetchFromGitHub {
owner = "rranelli";
repo = "auto-package-update.el";
@@ -3231,7 +3242,7 @@
sha256 = "05llpa6g4nb4qswmcn7j3bs7hnmkrkax7hsk7wvklr0wrljyg9a2";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/auto-package-update";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/78f549a299a06941edce13381f597f3a61e8c723/recipes/auto-package-update";
sha256 = "0fdcniq5mrwbc7yvma4088r0frdfvc2ydfil0s003faz0nrjcp8k";
name = "auto-package-update";
};
@@ -3244,7 +3255,7 @@
auto-pause = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "auto-pause";
- version = "20160426.1416";
+ version = "20160426.716";
src = fetchFromGitHub {
owner = "lujun9972";
repo = "auto-pause";
@@ -3252,7 +3263,7 @@
sha256 = "1pxhqwvg059pslin6z87jd8d0q44ljwvdn6y23ffrz9kfpn3m5m2";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/auto-pause";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/275d1b1bf1eb47cd9c769286c03b2b9aff9d74dd/recipes/auto-pause";
sha256 = "0cdak2kicxylj5f161kia0bzzqad426y8cj4zf04gcl0nndijyrc";
name = "auto-pause";
};
@@ -3265,7 +3276,7 @@
auto-save-buffers-enhanced = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "auto-save-buffers-enhanced";
- version = "20130608.449";
+ version = "20130607.2149";
src = fetchFromGitHub {
owner = "kentaro";
repo = "auto-save-buffers-enhanced";
@@ -3273,7 +3284,7 @@
sha256 = "10aw3bpvawkqj1l8brvzq057wx3mkzpxs4zc3yhppkhq2cpvx7i2";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/auto-save-buffers-enhanced";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/d221a217e9f6a686fa2a8b120a1f0b43c4482ce6/recipes/auto-save-buffers-enhanced";
sha256 = "123vf6nnvdhrrfjn8n8h8a11mkqmy2zm3w3yn99np0zj31x8z7bb";
name = "auto-save-buffers-enhanced";
};
@@ -3286,7 +3297,7 @@
auto-shell-command = callPackage ({ deferred, fetchFromGitHub, fetchurl, lib, melpaBuild, popwin }:
melpaBuild {
pname = "auto-shell-command";
- version = "20160604.438";
+ version = "20160603.2138";
src = fetchFromGitHub {
owner = "ongaeshi";
repo = "auto-shell-command";
@@ -3294,7 +3305,7 @@
sha256 = "0ahiy5cv3a632wfiar28186l0dgibafx5jaw9nrp4h5sqkbyvmjn";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/auto-shell-command";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/ea710bfa77fee7c2688eea8258ca9d2105d1896e/recipes/auto-shell-command";
sha256 = "1i78fh72i8yv91rnabf0vs78r43qrjkr36hndmn5ya2xs3b1g41j";
name = "auto-shell-command";
};
@@ -3307,7 +3318,7 @@
auto-virtualenv = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild, pyvenv, s }:
melpaBuild {
pname = "auto-virtualenv";
- version = "20160220.1536";
+ version = "20160220.836";
src = fetchFromGitHub {
owner = "marcwebbie";
repo = "auto-virtualenv";
@@ -3315,7 +3326,7 @@
sha256 = "1ya5rn55sclh2w5bjy4b2b75gd6bgavfqmhdisz6afp8w4l4a2bv";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/auto-virtualenv";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/ccb91515d9a8195061429ed8df3471867d211f9a/recipes/auto-virtualenv";
sha256 = "0xv51g74l5pxa3s185867dpc98m6y26xbj5wgz7f9177qchvdbhk";
name = "auto-virtualenv";
};
@@ -3328,7 +3339,7 @@
auto-yasnippet = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, yasnippet }:
melpaBuild {
pname = "auto-yasnippet";
- version = "20160524.1518";
+ version = "20160524.818";
src = fetchFromGitHub {
owner = "abo-abo";
repo = "auto-yasnippet";
@@ -3336,7 +3347,7 @@
sha256 = "0xp9yixv853bcyqyb1yy9sq5b8xdmad68z38wylrn0m971p722dd";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/auto-yasnippet";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/d33c0aee6a5d27217bbae28fc8f448c3badc8a4b/recipes/auto-yasnippet";
sha256 = "02281gyy07cy72a29fjsixg9byqq3izb9m1jxv98ni8pcy3bpsqa";
name = "auto-yasnippet";
};
@@ -3349,7 +3360,7 @@
autobookmarks = callPackage ({ cl-lib ? null, dash, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "autobookmarks";
- version = "20160430.2121";
+ version = "20160430.1421";
src = fetchFromGitHub {
owner = "Fuco1";
repo = "autobookmarks";
@@ -3357,7 +3368,7 @@
sha256 = "1kb6h37qlhzxk3v45bn0m38bp244c3fpxr3lzr7f6rsy8bpc8w67";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/autobookmarks";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/e40e6ebeb30b3f23ad37a695e011431a48c5a62e/recipes/autobookmarks";
sha256 = "11zhg3y9fb5mq67fwsnjrql9mnwkp3hwib7fpllb3yyf2yywc8zp";
name = "autobookmarks";
};
@@ -3370,7 +3381,7 @@
autodisass-java-bytecode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "autodisass-java-bytecode";
- version = "20151005.1812";
+ version = "20151005.1112";
src = fetchFromGitHub {
owner = "gbalats";
repo = "autodisass-java-bytecode";
@@ -3378,7 +3389,7 @@
sha256 = "1pf2mwnicj5x2kksxwmrzz2vfxj9y9r6rzgc1fl8028mfrmrmg8s";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/autodisass-java-bytecode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/a094845521d76754a29435012af5fba9f7975a8e/recipes/autodisass-java-bytecode";
sha256 = "1k19nkbxnysm3qkpdhz4gv2x9nnrp94xl40x84q8n84s6xaan4dc";
name = "autodisass-java-bytecode";
};
@@ -3391,7 +3402,7 @@
autodisass-llvm-bitcode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "autodisass-llvm-bitcode";
- version = "20150411.325";
+ version = "20150410.2025";
src = fetchFromGitHub {
owner = "gbalats";
repo = "autodisass-llvm-bitcode";
@@ -3399,7 +3410,7 @@
sha256 = "1fq4h5fmamyh7z8nq6pigx74p5v8k3qfm64k66vwsm8bl5jdkw17";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/autodisass-llvm-bitcode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/657e8f6bd0e44f11db8480ca42fb29d85fc3ec29/recipes/autodisass-llvm-bitcode";
sha256 = "0bh73nzll9jp7kiqfnb5dwkipw85p3c3cyq58s0nghig02z63j01";
name = "autodisass-llvm-bitcode";
};
@@ -3412,13 +3423,13 @@
autofit-frame = callPackage ({ fetchurl, fit-frame, lib, melpaBuild }:
melpaBuild {
pname = "autofit-frame";
- version = "20151231.2109";
+ version = "20151231.1409";
src = fetchurl {
url = "https://www.emacswiki.org/emacs/download/autofit-frame.el";
sha256 = "1af45z1w69dkdk4mzjphwn420m9rrkc3djv5kpp6lzbxxnmswbqw";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/autofit-frame";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/a5d15f875b0080b12ce45cf696c581f6bbf061ba/recipes/autofit-frame";
sha256 = "0p24qqnfa1vfn5pgnpvbxwi11zjkd6f3cv5igwg6h0pr5s7spnvw";
name = "autofit-frame";
};
@@ -3431,7 +3442,7 @@
automargin = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "automargin";
- version = "20131112.914";
+ version = "20131112.214";
src = fetchFromGitHub {
owner = "zk-phi";
repo = "automargin";
@@ -3439,7 +3450,7 @@
sha256 = "02nnyncfh6g0xizy7wa8721ahpnwk451kngd6n0y0249f50p3962";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/automargin";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/0937e63ec686cc3e183bddb029a514c64934fc81/recipes/automargin";
sha256 = "0llqz01wmacc0f8j3h7r0j57vkmzksl9vj1h0igfxzpm347mm9q8";
name = "automargin";
};
@@ -3452,7 +3463,7 @@
autopair = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "autopair";
- version = "20160304.1337";
+ version = "20160304.637";
src = fetchFromGitHub {
owner = "capitaomorte";
repo = "autopair";
@@ -3460,7 +3471,7 @@
sha256 = "09p56vi5zgm2djglimwyhv4n4gyydjndzn46vg9qzzlxvvmw66i1";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/autopair";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/091dcc3775ec2137cb61d66df4e72aca4900897a/recipes/autopair";
sha256 = "161qhk8rc1ldj9hpg0k9phka0gflz9vny7gc8rnylk90p6asmr28";
name = "autopair";
};
@@ -3473,15 +3484,15 @@
autotest = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "autotest";
- version = "20150130.1125";
+ version = "20150130.425";
src = fetchFromGitHub {
owner = "zenspider";
repo = "elisp";
- rev = "df58c83a5f1e0b9889858407eae0e383bd759473";
- sha256 = "184ghdi2m4hagddi71c1pmc408fad1cmw0q2n4k737w6j8537hph";
+ rev = "164ae0f8302c1e1938a9e30597901b1164b43f96";
+ sha256 = "1mgkwaa0q672r3lmw267ax54z4bvc3v3zji3q9asygni9bymkfyz";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/autotest";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/5fc2c4a590cbeccfb43003972a78f5d76ec4a9e7/recipes/autotest";
sha256 = "0f46m5pc40i531dzfnhkcn192dcs1q20y083c1c0wg2zhjcdr5iy";
name = "autotest";
};
@@ -3494,7 +3505,7 @@
autotetris-mode = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "autotetris-mode";
- version = "20141114.1746";
+ version = "20141114.1046";
src = fetchFromGitHub {
owner = "skeeto";
repo = "autotetris-mode";
@@ -3502,7 +3513,7 @@
sha256 = "162zay36mmkkpbfvp0lagv2js4cr1z75dc1z5l2505814m5sx3az";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/autotetris-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/4c5c698b7dfb179f43b9fdf4652b96e2d7f8e7c6/recipes/autotetris-mode";
sha256 = "0k4yq4pvrs1zaf9aqxmlb6l2v4k774zbxj4zcx49w3l1h8gwxpbb";
name = "autotetris-mode";
};
@@ -3515,7 +3526,7 @@
autumn-light-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "autumn-light-theme";
- version = "20150515.1647";
+ version = "20150515.947";
src = fetchFromGitHub {
owner = "aalpern";
repo = "emacs-color-theme-autumn-light";
@@ -3523,7 +3534,7 @@
sha256 = "1lip7282g41ghn64dvx2ab437s83cj9l8ps1rd8rbhqyz4bx5wb9";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/autumn-light-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/52a7598dc550c76f4e081fe1c4a6d8697bd30561/recipes/autumn-light-theme";
sha256 = "0g3wqv1yw3jycq30mcj3w4sn9nj6i6gyd2ljzimf547ggcai536a";
name = "autumn-light-theme";
};
@@ -3536,15 +3547,15 @@
avandu = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "avandu";
- version = "20140412.2326";
+ version = "20140412.1626";
src = fetchFromGitHub {
owner = "dk87";
repo = "avandu";
- rev = "891a847b0fff0ec1abfa717ede28250a16d5c429";
- sha256 = "01mcp4q8qsbcz2nfsfd5wndpnka7qfiqfn2f35y0pm56di7a49v5";
+ rev = "98155b6da0e81e9480de94791df75f1f7b9653f6";
+ sha256 = "06fwpqj21z1xrfl0i9jjrn14vk83a0h32scja34hk7pj9vc2854m";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/avandu";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/824aa2dbc230142e893ace4470d386290db8785e/recipes/avandu";
sha256 = "00fhc3mw7ihfil8fbnibgs8bch9712fya2d1k7k3ll2aln25jjxw";
name = "avandu";
};
@@ -3557,15 +3568,15 @@
avy = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "avy";
- version = "20160601.758";
+ version = "20160703.117";
src = fetchFromGitHub {
owner = "abo-abo";
repo = "avy";
- rev = "4dcf0a9a9a2c4d08723e29d3e451ae2caf27acb5";
- sha256 = "10hc3b1cvsnajbrxdmanc2apcrb01sgmrrfvfhkwaffnmck75z99";
+ rev = "20ecb9bed63abcef28e1f36c72515380306c49c3";
+ sha256 = "1483833hlv1w3bdmb6z43imrkgrkfvkx8sii9s7pk0pbniy3cfmd";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/avy";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/77fac7a702d4086fb860514e377037acedc60412/recipes/avy";
sha256 = "0gjq79f8jagbngp0shkcqmwhisc3hpgwfk34kq30nb929nbnlmag";
name = "avy";
};
@@ -3575,10 +3586,31 @@
license = lib.licenses.free;
};
}) {};
+ avy-flycheck = callPackage ({ avy, emacs, fetchFromGitHub, fetchurl, flycheck, lib, melpaBuild, seq }:
+ melpaBuild {
+ pname = "avy-flycheck";
+ version = "20160702.916";
+ src = fetchFromGitHub {
+ owner = "magicdirac";
+ repo = "avy-flycheck";
+ rev = "9c01e7573254d925ac40c95e14ce56af4d223212";
+ sha256 = "09xc7w0c8hrppxmnkcij4wqrmqbf6y2jqzzjicf1863rv2f8xcm9";
+ };
+ recipeFile = fetchurl {
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/05755bed49219072d2ec98f0be5ecba4deda7cd1/recipes/avy-flycheck";
+ sha256 = "0xvgysbx8yxhypms6639kk3cn0x6y6njnhnn9lf6hxsi96wd9y96";
+ name = "avy-flycheck";
+ };
+ packageRequires = [ avy emacs flycheck seq ];
+ meta = {
+ homepage = "https://melpa.org/#/avy-flycheck";
+ license = lib.licenses.free;
+ };
+ }) {};
avy-menu = callPackage ({ avy, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "avy-menu";
- version = "20160126.1325";
+ version = "20160126.625";
src = fetchFromGitHub {
owner = "mrkkrp";
repo = "avy-menu";
@@ -3586,7 +3618,7 @@
sha256 = "0bjx6fsrnx373fzndhwq4k6nbrvq4q2pxrmgd9lpi4fpdwxq635c";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/avy-menu";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/2f0b4cfb30c405d44803b36ebcaccef0cf87fe2d/recipes/avy-menu";
sha256 = "1g2bsm0jpig51jwn9f9mx6z5glb0bn4s21194xam768qin0rf4iw";
name = "avy-menu";
};
@@ -3599,15 +3631,15 @@
avy-migemo = callPackage ({ avy, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, migemo }:
melpaBuild {
pname = "avy-migemo";
- version = "20160521.1526";
+ version = "20160620.1020";
src = fetchFromGitHub {
owner = "momomo5717";
repo = "avy-migemo";
- rev = "dbff540eddd2eb2e64c43eec346cc64db2b1bcbe";
- sha256 = "0akllwdn1qn4v4b7hj5if11v87ppx6dr8spzmlmkav8ls4z8zhgf";
+ rev = "0871f06a0e043febbdd398cfdde9d7bb5871c740";
+ sha256 = "0yjg0qsjzc3qzn32ybignxp2b2942za942g97q92s2xv7sqzwkb7";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/avy-migemo";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/6a02db29eb3e4b76b4a9cdbc966df5a1bd35dec0/recipes/avy-migemo";
sha256 = "1zvgkhma445gj1zjl8j25prw95bdpjbvfy8yr0r5liay6g2hf296";
name = "avy-migemo";
};
@@ -3620,7 +3652,7 @@
avy-zap = callPackage ({ avy, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "avy-zap";
- version = "20160330.2030";
+ version = "20160330.1330";
src = fetchFromGitHub {
owner = "cute-jumper";
repo = "avy-zap";
@@ -3628,7 +3660,7 @@
sha256 = "0nv6y9jwy2z4rlnd6qklhqww367kaqjc5id7yr4hsmxmxw2jj43p";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/avy-zap";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/10a2a57c78ac1d8ab621031caa21e8574daeb9a0/recipes/avy-zap";
sha256 = "1zbkf21ggrmg1w0xaw40i3swgc1g4fz0j8p0r9djm9j120d94zkx";
name = "avy-zap";
};
@@ -3640,13 +3672,13 @@
}) {};
awk-it = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild {
pname = "awk-it";
- version = "20130917.2048";
+ version = "20130917.1348";
src = fetchurl {
url = "https://www.emacswiki.org/emacs/download/awk-it.el";
sha256 = "1r1vbi1r3rdbkyb2naciqwja7hxigjhqfxsfcinnygabsi7fw9aw";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/awk-it";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/04101ec2a234a0f95faab6fa664e54413365ba9a/recipes/awk-it";
sha256 = "1rnrm9jf9wvfrwyylhj0bfrz9140945lc87lrh21caf7q88fpvkw";
name = "awk-it";
};
@@ -3659,15 +3691,15 @@
aws-ec2 = callPackage ({ dash, dash-functional, emacs, fetchFromGitHub, fetchurl, lib, magit-popup, melpaBuild, tablist }:
melpaBuild {
pname = "aws-ec2";
- version = "20160603.1616";
+ version = "20160623.2321";
src = fetchFromGitHub {
owner = "Yuki-Inoue";
repo = "aws.el";
- rev = "df3f68ebb938adec7c3bb39f619fcf5247313eaf";
- sha256 = "1gxwd4w09mp7kymcppfvi971d8cv9dqzvayxk69ijazszibxw8hm";
+ rev = "aab56335b2e70ca9599f238cd8f406632a1dca8d";
+ sha256 = "05ah99b8mhd62mz5808qdgjn4rg9j5bf4vr6z78i70xzkxsg1dis";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/aws-ec2";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/90ac00160cbf692baa1f3953122ac828356944e0/recipes/aws-ec2";
sha256 = "040c69g8rhpcmrdjjg4avdmqarxx3dfzylmz62yxhfpn02qh48xd";
name = "aws-ec2";
};
@@ -3680,14 +3712,14 @@
axiom-environment = callPackage ({ emacs, fetchhg, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "axiom-environment";
- version = "20160325.2315";
+ version = "20160325.1715";
src = fetchhg {
url = "https://bitbucket.com/pdo/axiom-environment";
rev = "bc294e47f51c";
sha256 = "0z15n7cpprbhiamq26240g5bqsiw5mgyzdisi7j6hpybyk2zyl9q";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/axiom-environment";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/5b7972602399f9df9139cff177e38653bb0f43ed/recipes/axiom-environment";
sha256 = "1d3h1fn5zfbh7kpm2i02kza3bq9s6if4yd2vvfjdhgrykvl86h66";
name = "axiom-environment";
};
@@ -3700,15 +3732,15 @@
babel = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "babel";
- version = "20131231.1625";
+ version = "20160629.1351";
src = fetchFromGitHub {
owner = "juergenhoetzel";
repo = "babel";
- rev = "9bc1c3cf6de50b0e34fa1a7640eb68c650e72fd6";
- sha256 = "140lbpqq4qz45ykycdn8nvcn8pv0xqfwpapgprvyg8z5fjkyc4sg";
+ rev = "bf860f4594f06729b3ff5da2102ec9e3ab8a5ccb";
+ sha256 = "1d5v21ig92w30dllhp2cqbjqma2l0l87cjqqlx721qx15zfhxxxb";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/babel";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/b0d748fa06b3cbe336cb01a7e3ed7b0421d885cc/recipes/babel";
sha256 = "0sdpp4iym61ni32zv75n48ylj4jib8ca6n9hyqwj1b7nqg76mm1c";
name = "babel";
};
@@ -3721,7 +3753,7 @@
babel-repl = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "babel-repl";
- version = "20160505.1";
+ version = "20160504.1701";
src = fetchFromGitHub {
owner = "hung-phan";
repo = "babel-repl";
@@ -3729,7 +3761,7 @@
sha256 = "0sp0ja0346k401q5zpx3zl4pnxp4ml2jqkgk7z8i08rhdbp0c4nr";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/babel-repl";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/dfd4ac01ea16fcbc6e9343a953a2f278c5874d3d/recipes/babel-repl";
sha256 = "0h11i8w8s4ia1x0lm5n7bnc3db4bv0a7f7hzl27qrg38m3c7dl6x";
name = "babel-repl";
};
@@ -3742,7 +3774,7 @@
back-button = callPackage ({ fetchFromGitHub, fetchurl, lib, list-utils, melpaBuild, nav-flash, pcache, persistent-soft, smartrep, ucs-utils }:
melpaBuild {
pname = "back-button";
- version = "20150804.2204";
+ version = "20150804.1504";
src = fetchFromGitHub {
owner = "rolandwalker";
repo = "back-button";
@@ -3750,7 +3782,7 @@
sha256 = "0rj6a8rdwa0h2ckz7h4d91hnxqcin98l4ikbfyak2whfb47z909l";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/back-button";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/c9db386ab3910940addae6e925b2ac17e64e0f87/recipes/back-button";
sha256 = "0vyhvm445d0rs14j5xi419akk5nd88d4hvm4251z62fmnvs50j85";
name = "back-button";
};
@@ -3769,13 +3801,13 @@
}) {};
backup-each-save = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild {
pname = "backup-each-save";
- version = "20130704.1632";
+ version = "20130704.932";
src = fetchurl {
url = "https://www.emacswiki.org/emacs/download/backup-each-save.el";
sha256 = "0b9vvi2m0fdv36wj8mvawl951gjmg3pypg08a8n6rzn3rwg0fwz7";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/backup-each-save";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/88fd979eb479701303e65e68c581f8f847887842/recipes/backup-each-save";
sha256 = "1fv9sf6vkjyv93vil4l9hjm2fg73zlxbnif0xfm3kpmva9xin337";
name = "backup-each-save";
};
@@ -3788,7 +3820,7 @@
backup-walker = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "backup-walker";
- version = "20130720.1716";
+ version = "20130720.1016";
src = fetchFromGitHub {
owner = "lewang";
repo = "backup-walker";
@@ -3796,7 +3828,7 @@
sha256 = "0z4d8x9lkad50720lgvr8f85p1ligv07865i30lgr9ck0q04w68v";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/backup-walker";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/9428a70292cf6b796d7d994ad6b73d7d45970c19/recipes/backup-walker";
sha256 = "0hfr27yiiblrd0p3zhpapbj4vijfdk7wqh406xnlwf2yvnfsqycd";
name = "backup-walker";
};
@@ -3809,7 +3841,7 @@
badger-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "badger-theme";
- version = "20140717.432";
+ version = "20140716.2132";
src = fetchFromGitHub {
owner = "ccann";
repo = "badger-theme";
@@ -3817,7 +3849,7 @@
sha256 = "0g8smx6pi2wqv78mhxfgwg51mx5msqsgcc55xcz29aq0q3naw4z1";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/badger-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/298e43769c6cd855526d847e8e3b237912360777/recipes/badger-theme";
sha256 = "01h5bsqllgn6gs0wpl0y2h041007mn3ldjswkz6f3mayrgl4c6yf";
name = "badger-theme";
};
@@ -3830,7 +3862,7 @@
badwolf-theme = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "badwolf-theme";
- version = "20160521.1355";
+ version = "20160521.655";
src = fetchFromGitHub {
owner = "bkruczyk";
repo = "badwolf-emacs";
@@ -3838,7 +3870,7 @@
sha256 = "06l5b1dnz8gggqf1lsmw8x4mlra9pvpxzykjw06qaassfjjhaql2";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/badwolf-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/01f3deade0759830ed2e70e00e596915be5f5c11/recipes/badwolf-theme";
sha256 = "03plkzpmlh0pgfp1c9padsh4w2g23clsznym8x4jabxnk0ynhq41";
name = "badwolf-theme";
};
@@ -3851,7 +3883,7 @@
baidu-life = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "baidu-life";
- version = "20160426.1419";
+ version = "20160426.719";
src = fetchFromGitHub {
owner = "lujun9972";
repo = "el-baidu-life";
@@ -3859,7 +3891,7 @@
sha256 = "024gpdjr1lbqjg6md526g4wz2shpgfpdrrd2m1bn4fissbzj70i1";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/baidu-life";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/101ae6ea151df8d423f00cb6ac391374d0f7f3c8/recipes/baidu-life";
sha256 = "0rib50hja33qk8dmw5i62gaxhx7mscj2y0n25jmnds7k88ms8z19";
name = "baidu-life";
};
@@ -3872,7 +3904,7 @@
base16-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "base16-theme";
- version = "20151019.1611";
+ version = "20151019.911";
src = fetchFromGitHub {
owner = "mkaito";
repo = "base16-emacs";
@@ -3880,7 +3912,7 @@
sha256 = "16240dj0hvxkljas9973wjdgkbx213sqws77j167yr5xf761dlsr";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/base16-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/521e8df1c741833e0a1237bb3498a9ed7ac279bd/recipes/base16-theme";
sha256 = "1zxbvfj6gvz1ynhj6i9q9y65hq7aq41qx4vnx738cjizcq0rc8bs";
name = "base16-theme";
};
@@ -3893,7 +3925,7 @@
bash-completion = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "bash-completion";
- version = "20150514.1628";
+ version = "20150514.928";
src = fetchFromGitHub {
owner = "szermatt";
repo = "emacs-bash-completion";
@@ -3901,7 +3933,7 @@
sha256 = "06c42531dy5ngscwfvg8rksg6jcsakfn7104hmlg1jp4kvfiy1kg";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/bash-completion";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/8b528544841995045fb1f8344aaaa38946bb3915/recipes/bash-completion";
sha256 = "0l41yj0sb87i27hw6dh35l32hg4qkka6r3bpkckjnfm0xifrd9hj";
name = "bash-completion";
};
@@ -3911,10 +3943,31 @@
license = lib.licenses.free;
};
}) {};
+ basic-c-compile = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }:
+ melpaBuild {
+ pname = "basic-c-compile";
+ version = "20160627.2241";
+ src = fetchFromGitHub {
+ owner = "nick96";
+ repo = "basic-c-compile";
+ rev = "c76ca7763f61079b588ed61487e95da56fd0417e";
+ sha256 = "1qsgh74af51shc30s71rrww9pffj7akm6zqvw63rwia8v1nbkqhp";
+ };
+ recipeFile = fetchurl {
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/bdf8a23771774f630baa41b24375cb57f90fbb2e/recipes/basic-c-compile";
+ sha256 = "07p35wg426ap0awgk4vg5n36s5jbfs3fi5djl8jq93jr6xs9imbc";
+ name = "basic-c-compile";
+ };
+ packageRequires = [ cl-lib ];
+ meta = {
+ homepage = "https://melpa.org/#/basic-c-compile";
+ license = lib.licenses.free;
+ };
+ }) {};
basic-theme = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "basic-theme";
- version = "20151010.1007";
+ version = "20151010.307";
src = fetchFromGitHub {
owner = "fgeller";
repo = "basic-theme.el";
@@ -3922,7 +3975,7 @@
sha256 = "1pbnw6ccphxynbhnc4g687jfcg33p1sa7a0mfxc2ai0i3z59gn78";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/basic-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/451d1b67fefec5d3a346b1261d1284e8df6927a0/recipes/basic-theme";
sha256 = "16rgff1d0s65alh328lr93zc06zmgbzgwx1rf3k3l4d10ki4cc27";
name = "basic-theme";
};
@@ -3934,13 +3987,13 @@
}) {};
batch-mode = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild {
pname = "batch-mode";
- version = "20140807.2250";
+ version = "20140807.1550";
src = fetchurl {
url = "https://www.emacswiki.org/emacs/download/batch-mode.el";
sha256 = "1aa611jrzw4svmxvw1ghgh53x4nry0sl7mxmp4kxiaybqqvz6a1p";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/batch-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/7fb675b865b8fa1497cdd33764bad051b2fd4d7e/recipes/batch-mode";
sha256 = "1p0rh5r8w00jag64sbjy8xb9g6lqhm2fz476v201kbrj9ggp643x";
name = "batch-mode";
};
@@ -3953,7 +4006,7 @@
bats-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "bats-mode";
- version = "20160514.815";
+ version = "20160514.115";
src = fetchFromGitHub {
owner = "dougm";
repo = "bats-mode";
@@ -3961,7 +4014,7 @@
sha256 = "1ikb4rb20ng1yq95g3ydwpk37axmiw38rjzn1av9m4cs81qby4jv";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/bats-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/d742fb825e163beb33c3873aa48a1c411711e312/recipes/bats-mode";
sha256 = "1l5winy30w8fs3f5cylc3a3j3mfkvchwanlgsin7q76jivn87h7w";
name = "bats-mode";
};
@@ -3974,7 +4027,7 @@
bbcode-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "bbcode-mode";
- version = "20141103.2241";
+ version = "20141103.1541";
src = fetchFromGitHub {
owner = "ejmr";
repo = "bbcode-mode";
@@ -3982,7 +4035,7 @@
sha256 = "17ip24fk13aj9zldn2qsr4naa8anqhm484m1an5l5i9m9awfiyn7";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/bbcode-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/acc9b816796b9f142c53f90593952b43c962d2d8/recipes/bbcode-mode";
sha256 = "0ixxavmilr6na56yc148prbh3nlhcwir6rxqvh332cr8vr9gmp89";
name = "bbcode-mode";
};
@@ -3994,14 +4047,14 @@
}) {};
bbdb = callPackage ({ fetchgit, fetchurl, lib, melpaBuild }: melpaBuild {
pname = "bbdb";
- version = "20151115.41";
+ version = "20151114.1741";
src = fetchgit {
url = "git://git.savannah.nongnu.org/bbdb.git";
rev = "8fce6df3ab09250d545a2ed373ae64e68d12ff4c";
- sha256 = "09ib71b669sccp0x5lf2ic4gzdqcmmdx918n870lhabqhn0gw3g2";
+ sha256 = "1nglakzpcy2pizg80ny1w972vq74v5jgzdvgqp69jkb7312cqzvd";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/bbdb";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/6b6801fe29cb6fb6183f0babf528375d14f966b3/recipes/bbdb";
sha256 = "0zhs4psa9b9yf9hxm19q5znsny11cdp23pya3rrlmj39j4jfn73j";
name = "bbdb";
};
@@ -4014,7 +4067,7 @@
bbdb- = callPackage ({ bbdb, fetchFromGitHub, fetchurl, lib, log4e, melpaBuild, yaxception }:
melpaBuild {
pname = "bbdb-";
- version = "20140222.54";
+ version = "20140221.1754";
src = fetchFromGitHub {
owner = "aki2o";
repo = "bbdb-";
@@ -4022,7 +4075,7 @@
sha256 = "17nbnkg0zn6p89r27mk9hl6qhv6xscwdsq8iyikdw03svpr16lnp";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/bbdb-";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/01e7a8cc1dde506cb2fcfd9270f15dc61c43ec17/recipes/bbdb-";
sha256 = "1vzbalcchay4pxl9f1sxg0zclgc095f59dlj15pj0bqq61sbl9jf";
name = "bbdb-";
};
@@ -4035,7 +4088,7 @@
bbdb-android = callPackage ({ bbdb-vcard, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "bbdb-android";
- version = "20150706.724";
+ version = "20150706.24";
src = fetchFromGitHub {
owner = "tumashu";
repo = "bbdb-android";
@@ -4043,7 +4096,7 @@
sha256 = "0m80k87dahzdpfa4snbl4p9zm5d5anc8s91535mwzsnfbr98qmhm";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/bbdb-android";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/1296e9ffe3a49022a9480b398fbfa311121a1020/recipes/bbdb-android";
sha256 = "0v3njygqkcrwjkf7jrqmza6bwk2jp3956cx1qvf9ph7dfxsq7rn3";
name = "bbdb-android";
};
@@ -4056,7 +4109,7 @@
bbdb-china = callPackage ({ bbdb-vcard, chinese-pyim, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "bbdb-china";
- version = "20150616.356";
+ version = "20150615.2056";
src = fetchFromGitHub {
owner = "tumashu";
repo = "bbdb-china";
@@ -4064,7 +4117,7 @@
sha256 = "07plwm5nh58qya03l8z0iaqh8bmyhywx7qiffkf803n8wwjb3kdn";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/bbdb-china";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/f0e8f0aadc5a46df9d4c1bfdf77d69e839914124/recipes/bbdb-china";
sha256 = "111lf256zxlnylfmwis0pngbpj73p59s520v8abbm7pn82k2m72b";
name = "bbdb-china";
};
@@ -4077,7 +4130,7 @@
bbdb-csv-import = callPackage ({ bbdb, dash, fetchFromGitLab, fetchurl, lib, melpaBuild, pcsv }:
melpaBuild {
pname = "bbdb-csv-import";
- version = "20140802.1342";
+ version = "20140802.642";
src = fetchFromGitLab {
owner = "iankelling";
repo = "bbdb-csv-import";
@@ -4085,7 +4138,7 @@
sha256 = "1h9vi9wb3dzzjrw5zfypk60afzzshxa3qmnbc24ypby5dr7qy91l";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/bbdb-csv-import";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/76ac7178ee5381e08ae881f3fc6061106eeb1c1d/recipes/bbdb-csv-import";
sha256 = "0r7pc2ypd1ydqrnvcqmsg69rm047by7k0zhm563538ra82597wnm";
name = "bbdb-csv-import";
};
@@ -4098,7 +4151,7 @@
bbdb-ext = callPackage ({ bbdb, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "bbdb-ext";
- version = "20151220.2113";
+ version = "20151220.1413";
src = fetchFromGitHub {
owner = "vapniks";
repo = "bbdb-ext";
@@ -4106,7 +4159,7 @@
sha256 = "1ydf89mmp3zjfqdymnrwg18wclyf7psarz9f2k82pl58h0khh71g";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/bbdb-ext";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/b1ba0575cb6f0270bab8bf00726842b2a4d0bef3/recipes/bbdb-ext";
sha256 = "0fnxcvzdyh0602rdfz3lz3vmvza4s0syz1vn2fgsn2lg3afqq7li";
name = "bbdb-ext";
};
@@ -4119,7 +4172,7 @@
bbdb-handy = callPackage ({ bbdb, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "bbdb-handy";
- version = "20150708.252";
+ version = "20150707.1952";
src = fetchFromGitHub {
owner = "tumashu";
repo = "bbdb-handy";
@@ -4127,7 +4180,7 @@
sha256 = "04yxky7qxh0s4y4addry85qd1074l97frhp0hw77xd1bc7n5zzg0";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/bbdb-handy";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/f0e8f0aadc5a46df9d4c1bfdf77d69e839914124/recipes/bbdb-handy";
sha256 = "0qv1lw4fv9w9c1ypzpbnvkm6ypqrzqpwyw5gpi7n9almxpd8d68z";
name = "bbdb-handy";
};
@@ -4140,7 +4193,7 @@
bbdb-vcard = callPackage ({ bbdb, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "bbdb-vcard";
- version = "20150713.2250";
+ version = "20150713.1550";
src = fetchFromGitHub {
owner = "tohojo";
repo = "bbdb-vcard";
@@ -4148,7 +4201,7 @@
sha256 = "1zlf9xhpirln72xr7v6kgndkg5wyz5ipsl4gpq9lbmp92jlgbwlj";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/bbdb-vcard";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/dd5d9027c49beae89f78d2a30dfa4bd070dff1bd/recipes/bbdb-vcard";
sha256 = "1kn98b7mh9a28933r4yl8qfl9p92rpix4vkp71sar9cka0m71ilj";
name = "bbdb-vcard";
};
@@ -4161,7 +4214,7 @@
bbdb2erc = callPackage ({ bbdb, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "bbdb2erc";
- version = "20130607.829";
+ version = "20130607.129";
src = fetchFromGitHub {
owner = "unhammer";
repo = "bbdb2erc";
@@ -4169,7 +4222,7 @@
sha256 = "1zkh7dcas80wwjvigl27wj8sp4b5z6lh3qj7zkziinwamwnxbdbs";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/bbdb2erc";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/04867a574773e8794335a2664d4f5e8b243f3ec9/recipes/bbdb2erc";
sha256 = "0k1f6mq9xd3568vg01dqqvcdbdshbdsi4ivkjyxis6dqfnqhlfdd";
name = "bbdb2erc";
};
@@ -4182,7 +4235,7 @@
bbyac = callPackage ({ browse-kill-ring, cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "bbyac";
- version = "20150316.1101";
+ version = "20150316.501";
src = fetchFromGitHub {
owner = "baohaojun";
repo = "bbyac";
@@ -4190,7 +4243,7 @@
sha256 = "1cdm4d6fjf3m495phynq0dzvv0wc0gfsw6fdq4d47iyxs0p4q2dl";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/bbyac";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/4409df77dca17b3f9556666a62ee924cb8794364/recipes/bbyac";
sha256 = "19s9fqcdyqz22m981vr0p8jwghbs267yrlxsv9xkfzd7fccnx170";
name = "bbyac";
};
@@ -4203,7 +4256,7 @@
bdo = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "bdo";
- version = "20140126.1001";
+ version = "20140126.301";
src = fetchFromGitHub {
owner = "chrisdone";
repo = "bdo";
@@ -4211,7 +4264,7 @@
sha256 = "0d5b7zyl2vg621w1ll2lw3kjz5hx6lqxc0jivh0i449gckk5pzkm";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/bdo";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/bc1d68a1d232016db004d145b9a40bcfbf400aa6/recipes/bdo";
sha256 = "0vp8am2x11abxganw90025w9qxnqjdkj015592glbbzpa6338nfl";
name = "bdo";
};
@@ -4224,7 +4277,7 @@
beacon = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, seq }:
melpaBuild {
pname = "beacon";
- version = "20160527.250";
+ version = "20160526.1950";
src = fetchFromGitHub {
owner = "Malabarba";
repo = "beacon";
@@ -4232,7 +4285,7 @@
sha256 = "0hjzh5dgwzr4sq9pj22g0cfkqdcd01aq5dcpg96c8xq8b8ga81g6";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/beacon";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/d09cfab21be800831644218e9c8c4433087951c0/recipes/beacon";
sha256 = "1pwxvdfzs9qjd44wvgimipi2hg4qw5sh5wlsl8h8mq2kyx09s7hq";
name = "beacon";
};
@@ -4245,7 +4298,7 @@
beeminder = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, org }:
melpaBuild {
pname = "beeminder";
- version = "20160210.403";
+ version = "20160209.2103";
src = fetchFromGitHub {
owner = "Sodaware";
repo = "beeminder.el";
@@ -4253,7 +4306,7 @@
sha256 = "0ki9q3ylssjabh15dr49k7dxv88snpj4564g0myp3c61qzyy82lk";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/beeminder";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/7fabdb05de9b8ec18a3a566f99688b50443b6b44/recipes/beeminder";
sha256 = "1cb8xmgsv23b464hpchm9f9i64p3fyf7aillrwk1aa2l1008kyww";
name = "beeminder";
};
@@ -4266,7 +4319,7 @@
beginend = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "beginend";
- version = "20150607.1901";
+ version = "20150607.1201";
src = fetchFromGitHub {
owner = "DamienCassou";
repo = "beginend";
@@ -4274,7 +4327,7 @@
sha256 = "1hyiz7iwnzbg1616q0w7fndllbnx4m98kakgxn04bsqib5fqk78p";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/beginend";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/31c1157d4fd9e47a780bbd91075252acdc7899dd/recipes/beginend";
sha256 = "1y81kr9q0zrsr3c3s14rm6l86y5wf1a0kia6d98112fy4fwdm7kq";
name = "beginend";
};
@@ -4287,7 +4340,7 @@
benchmark-init = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "benchmark-init";
- version = "20150905.1138";
+ version = "20150905.438";
src = fetchFromGitHub {
owner = "dholm";
repo = "benchmark-init-el";
@@ -4295,7 +4348,7 @@
sha256 = "058mic9jkwiqvmp3k9sfd6gb70ysdphnb1iynlszhixbrz5w7zs2";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/benchmark-init";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/54b9ae6fc10b0c56fcc7a0ad73743ffc85a3e9a0/recipes/benchmark-init";
sha256 = "0dknch4b1j7ff1079z2fhqng7kp4903b3v7mhj15b5vzspbp3wal";
name = "benchmark-init";
};
@@ -4308,7 +4361,7 @@
bert = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "bert";
- version = "20131117.1114";
+ version = "20131117.414";
src = fetchFromGitHub {
owner = "manzyuk";
repo = "bert-el";
@@ -4316,7 +4369,7 @@
sha256 = "06izbc0ksyhgh4gsjiifhj11v0gx9x5xjx9aqci5mc4kc6mg05sf";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/bert";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/89635cd11621b04a8575629ec1bf196fb3ea5d43/recipes/bert";
sha256 = "1zhz1dcy1nf84p244x6lc4ajancv5fgmqmbrm080yhb2ral1z8x7";
name = "bert";
};
@@ -4329,15 +4382,15 @@
better-defaults = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "better-defaults";
- version = "20160601.2119";
+ version = "20160620.108";
src = fetchFromGitHub {
owner = "technomancy";
repo = "better-defaults";
- rev = "3f993b021d885a5386d7724425efeb7248cfe9b7";
- sha256 = "10aq52vrp2sxj713si6m0bpz9s3c0yxjr2qqw29731hb1s2hvznp";
+ rev = "ce2a9a85636a2ec220a6005185fb271b6f264907";
+ sha256 = "0f1qq2fr734fa5cnlfpz4nm9j3wa1npji1vid3z02sllnh9y2dvq";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/better-defaults";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/7bb729c1ad8602a5c0c27e81c9442981a54a924a/recipes/better-defaults";
sha256 = "13bqcmx2gagm2ykg921ik3awp8zvw5d4lb69rr6gkpjlqp7nq2cm";
name = "better-defaults";
};
@@ -4349,13 +4402,13 @@
}) {};
better-registers = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild {
pname = "better-registers";
- version = "20140813.1019";
+ version = "20140813.319";
src = fetchurl {
url = "https://www.emacswiki.org/emacs/download/better-registers.el";
sha256 = "05dlhhvd1m9q642gqqj6klif13shbinqi6bi72fldidi1z6wcqlh";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/better-registers";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/2667829dfc72e848ab939be0602cbec1105671b0/recipes/better-registers";
sha256 = "01i0qjrwsc5way2h9z3pmsgccsbdifsq1dh6zhka4h6qfgrmn3bx";
name = "better-registers";
};
@@ -4368,7 +4421,7 @@
bf-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "bf-mode";
- version = "20130403.1642";
+ version = "20130403.942";
src = fetchFromGitHub {
owner = "emacs-jp";
repo = "bf-mode";
@@ -4376,7 +4429,7 @@
sha256 = "02b2m0cq04ynjcmr4j8gpdzjv9mpf1fysn736xv724xgaymj396n";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/bf-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/f7fe1763891c7343c0ad0c7970b8a3c9035b4e8a/recipes/bf-mode";
sha256 = "0b1yf9bx1ldkzry7v5qvcnl059rq62a50dvpa10i2f5v0y96n1q9";
name = "bf-mode";
};
@@ -4389,7 +4442,7 @@
bfbuilder = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "bfbuilder";
- version = "20150924.1850";
+ version = "20150924.1150";
src = fetchFromGitHub {
owner = "zk-phi";
repo = "bfbuilder";
@@ -4397,7 +4450,7 @@
sha256 = "1y9fxs1nbf0xsn8mw45m9ghmji3h64wdbfnyr1npmf5fb27rmd17";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/bfbuilder";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/3e77dd911b850846f1719b2ee943b74028d94f04/recipes/bfbuilder";
sha256 = "16ckybqd0a8l75ascm3k4cdzp969lzq7m050aymdyjhwif6ld2r7";
name = "bfbuilder";
};
@@ -4410,15 +4463,15 @@
biblio = callPackage ({ biblio-core, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "biblio";
- version = "20160407.1127";
+ version = "20160625.1123";
src = fetchFromGitHub {
owner = "cpitclaudel";
repo = "biblio.el";
- rev = "0985aff28a2a105d6cee1b9a89b3c4e66780bd3c";
- sha256 = "12i4ha6cncni0159n6i8qy2kfrn4ixdwni71gbwqmi9fbcyj4rls";
+ rev = "55a72b5cd41325d8c98a73932ef3a7b0cf71ea63";
+ sha256 = "0d2yj315snd9h8bnbfk9rnr4ybxfpcj1c423hvpbrf54agy57gac";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/biblio";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/c5fbaa8c59b0e64d13beb0e0f18b0734afa84f51/recipes/biblio";
sha256 = "0ym7xvcfd7hh3qdpfb8zpa7w8s4lpg0vngh9d0ns3s3lnhz4mi0g";
name = "biblio";
};
@@ -4431,15 +4484,15 @@
biblio-core = callPackage ({ dash, emacs, fetchFromGitHub, fetchurl, let-alist, lib, melpaBuild, seq }:
melpaBuild {
pname = "biblio-core";
- version = "20160530.48";
+ version = "20160625.1123";
src = fetchFromGitHub {
owner = "cpitclaudel";
repo = "biblio.el";
- rev = "0985aff28a2a105d6cee1b9a89b3c4e66780bd3c";
- sha256 = "12i4ha6cncni0159n6i8qy2kfrn4ixdwni71gbwqmi9fbcyj4rls";
+ rev = "55a72b5cd41325d8c98a73932ef3a7b0cf71ea63";
+ sha256 = "0d2yj315snd9h8bnbfk9rnr4ybxfpcj1c423hvpbrf54agy57gac";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/biblio-core";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/f4f086d3e8fd6a95ce198e148cd3ede35dd73fb8/recipes/biblio-core";
sha256 = "0zpfamrb2gka41h834a05hxdbw4h55777kh6rhjikjfmy765nl97";
name = "biblio-core";
};
@@ -4452,7 +4505,7 @@
bibretrieve = callPackage ({ auctex, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "bibretrieve";
- version = "20131013.2032";
+ version = "20131013.1332";
src = fetchFromGitHub {
owner = "pzorin";
repo = "bibretrieve";
@@ -4460,7 +4513,7 @@
sha256 = "0rwy4k06nd9a31hpyqs0fxp45dpddbvbhwcw1gzx4f73qmgawq9b";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/bibretrieve";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/e548e0cf8babaf32f1db58099599a72cebdbb84d/recipes/bibretrieve";
sha256 = "1mf884c6adx7rq5c2z5wrnjpb6znljy30mscxskwqiyfs8c62mii";
name = "bibretrieve";
};
@@ -4473,7 +4526,7 @@
bibslurp = callPackage ({ dash, fetchFromGitHub, fetchurl, lib, melpaBuild, s }:
melpaBuild {
pname = "bibslurp";
- version = "20151203.46";
+ version = "20151202.1746";
src = fetchFromGitHub {
owner = "mkmcc";
repo = "bibslurp";
@@ -4481,7 +4534,7 @@
sha256 = "077shjz9sd0k0akvxzzgjd8a626ck650xxlhp2ws4gs7rjd7a823";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/bibslurp";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/67f473e839d6325f193c641792671f43fbf83b6d/recipes/bibslurp";
sha256 = "178nhng87bdi8s0r2bdh2gk31w9mmjkyi6ncnddk3v7p8fsh4jjp";
name = "bibslurp";
};
@@ -4494,7 +4547,7 @@
bibtex-utils = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "bibtex-utils";
- version = "20150924.1547";
+ version = "20150924.847";
src = fetchFromGitHub {
owner = "plantarum";
repo = "bibtex-utils";
@@ -4502,7 +4555,7 @@
sha256 = "1qf45s53vcbd90v2d2brynv3xmp8sy9w9jp611cf0dzfl1k7x8p8";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/bibtex-utils";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/5764b6a880e8143db66e9011cc1c2bf0bcd61082/recipes/bibtex-utils";
sha256 = "13llsyyvy0xc9s51cqqc1rz13m3qdqh8jw07gwywfbixlma59z8l";
name = "bibtex-utils";
};
@@ -4515,7 +4568,7 @@
bind-chord = callPackage ({ bind-key, fetchFromGitHub, fetchurl, key-chord, lib, melpaBuild }:
melpaBuild {
pname = "bind-chord";
- version = "20160530.1942";
+ version = "20160530.1242";
src = fetchFromGitHub {
owner = "waymondo";
repo = "use-package-chords";
@@ -4523,7 +4576,7 @@
sha256 = "0d69hckz6xbll1x2mll385kcw7mwx8cwxg1wdhphnww0s810isgp";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/bind-chord";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/92fbae4e0bcc1d5ad9f3f42d01f08ab4c3450f1f/recipes/bind-chord";
sha256 = "01a3c298kq8cfsxsscpic0shkjm77adiamgbgk8laqkbrlsrrcsb";
name = "bind-chord";
};
@@ -4536,15 +4589,15 @@
bind-key = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "bind-key";
- version = "20160227.948";
+ version = "20160227.248";
src = fetchFromGitHub {
owner = "jwiegley";
repo = "use-package";
- rev = "22c63c8f98fc318c357b51a658cee62d64601e16";
- sha256 = "19vc1hblbqlns2c28aqwjpmj8k35ih7akqi04wrqv1b6pljfy3jg";
+ rev = "56687f58c499db608167065b8d94a371902f3ed4";
+ sha256 = "0dr8zkx6nr4n7i02l7v5k36cckiwjrrxafh72pi2qzk3b7n1yvrm";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/bind-key";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/d39d33af6b6c9af9fe49bda319ea05c711a1b16e/recipes/bind-key";
sha256 = "1qw2c27016d3yfg0w10is1v72y2jvzhq07ca4h6v17yi94ahj5xm";
name = "bind-key";
};
@@ -4557,15 +4610,15 @@
bind-map = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "bind-map";
- version = "20160510.1948";
+ version = "20160606.1543";
src = fetchFromGitHub {
owner = "justbur";
repo = "emacs-bind-map";
- rev = "4ceb7deb3add0716afaa2a5d658b81469ee2879b";
- sha256 = "126pjiiwhz500l60dvf6a9ixgda2sqv0rbj5f2a7g3pssh5yjh12";
+ rev = "ffe5e636178ab9878fa8213fd1a1d4862ccb3d5f";
+ sha256 = "1h07s8g4vpq6c8sl5m6vxvd598iks160bksv0wn51680gh05f0pa";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/bind-map";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/f58800af5965a6e7c9314aa00e971196ea0d036e/recipes/bind-map";
sha256 = "1jzkp010b4vs1bdhccf5igmymfxab4vxs1pccpk9n5n5a4xaa358";
name = "bind-map";
};
@@ -4578,15 +4631,15 @@
bing-dict = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "bing-dict";
- version = "20160514.2259";
+ version = "20160616.2020";
src = fetchFromGitHub {
owner = "cute-jumper";
repo = "bing-dict.el";
- rev = "fe79788010d015080c5683f0ddd0edb45c4c2980";
- sha256 = "1cv2gx3wpk360a0s80pnd2h2xnbfz5cgsln2kij36dvjbxkrzjz8";
+ rev = "bcad59c4f3a35d83aeaa4a88f0935e89cc2da764";
+ sha256 = "04zfq3d1h9givycp182a9lb19dbny98qgvc43s08kb0gdjj0f6xx";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/bing-dict";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/5653d2b6c2a9b33cfed867e7f6e552d4ed90b181/recipes/bing-dict";
sha256 = "0s5pd08rcnvmgi1hw17xbzvswlv0yni6h2h2gccrjmf6izi8whh1";
name = "bing-dict";
};
@@ -4599,7 +4652,7 @@
birds-of-paradise-plus-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "birds-of-paradise-plus-theme";
- version = "20130419.2329";
+ version = "20130419.1629";
src = fetchFromGitHub {
owner = "jimeh";
repo = "birds-of-paradise-plus-theme.el";
@@ -4607,7 +4660,7 @@
sha256 = "1n5icy29ks5rxrxp7v4sf0523z7wxn0fh9lx4y6jb7ppdjnff12s";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/birds-of-paradise-plus-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/3932853232c269f158806aebe416b456c752a9bb/recipes/birds-of-paradise-plus-theme";
sha256 = "0vdv2siy30kf1qhzrc39sygjk17lwm3ix58pcs3shwkg1y5amj3m";
name = "birds-of-paradise-plus-theme";
};
@@ -4620,15 +4673,15 @@
bison-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "bison-mode";
- version = "20141119.943";
+ version = "20160617.52";
src = fetchFromGitHub {
owner = "Wilfred";
repo = "bison-mode";
- rev = "bb48d82f296bbe9f8b4a5651fab6610525fdbfcf";
- sha256 = "0iccafawm9ah62f7qq1k77kjpafhcpjcaiqh5xjig1wxnpc43ck7";
+ rev = "314af3b7af7eb897fd3932616cb8600a85228cea";
+ sha256 = "0ymjgwyi73vl81i7v1g2ad09lxp4mhp47r6zcijqa5hbx9l1skik";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/bison-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/d08592cabbc0779c67c260f9648d2273c0dd9e3e/recipes/bison-mode";
sha256 = "097gimlzmyrsfnl76cbzyyi9dm0d2y3f9107672h56ncri35mh66";
name = "bison-mode";
};
@@ -4641,15 +4694,15 @@
bitbake = callPackage ({ dash, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, mmm-mode, s }:
melpaBuild {
pname = "bitbake";
- version = "20160104.954";
+ version = "20160613.356";
src = fetchFromGitHub {
owner = "canatella";
repo = "bitbake-el";
- rev = "d37d6e39d557f77ea329b0b40f88490b002d1f33";
- sha256 = "14dsjbw4ss3i6ydynm121v5j3idvy85sk1vqbr5r871d32179xan";
+ rev = "da272d5c32e1ff45c6bfe4163e4013b402e3d0e7";
+ sha256 = "038cyx0pfkqc4fgf07ks6ph3v7zfjqag603387010csn7f0z02is";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/bitbake";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/da099b66180ed537f8962ab4ca727d2441f9691d/recipes/bitbake";
sha256 = "1k2n1i8g0jc78sp1icm64rlhi1q0vqar2a889nldp134a1l7bfah";
name = "bitbake";
};
@@ -4662,7 +4715,7 @@
bitlbee = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "bitlbee";
- version = "20151203.100";
+ version = "20151202.1800";
src = fetchFromGitHub {
owner = "pjones";
repo = "bitlbee-el";
@@ -4670,7 +4723,7 @@
sha256 = "0mccvpf8f87i7rqga3s4slrqz80rp3kyj071rrimhzpx8pnsrxx9";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/bitlbee";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/7fabdb05de9b8ec18a3a566f99688b50443b6b44/recipes/bitlbee";
sha256 = "1lmbmlshr8b645qsb88rswmbbcbbawzl04xdjlygq4dnpkxc8w0f";
name = "bitlbee";
};
@@ -4683,7 +4736,7 @@
bitly = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "bitly";
- version = "20151125.1748";
+ version = "20151125.1048";
src = fetchFromGitHub {
owner = "jorgenschaefer";
repo = "bitly-el";
@@ -4691,7 +4744,7 @@
sha256 = "09blh9cbcbqr3pdaiwm9fmh5kzqm1v9mffy623z3jn87g5wadrmb";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/bitly";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/e6b1161d39ba66577ad57d76e4f4ea84e604002f/recipes/bitly";
sha256 = "032s7ax8qp3qzcj1njbyyxiyadjirphswqdlr45zj6hzajfsr247";
name = "bitly";
};
@@ -4703,13 +4756,13 @@
}) {};
blank-mode = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild {
pname = "blank-mode";
- version = "20130824.1359";
+ version = "20130824.659";
src = fetchurl {
url = "https://www.emacswiki.org/emacs/download/blank-mode.el";
sha256 = "1wdplnmdllbydwr9gyyq4fbkxl5xjh7220vd4iajyv74pg2jkkkv";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/blank-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/7e687f3d3945bdff0e8e36bcff1f629d8ad921fc/recipes/blank-mode";
sha256 = "1pyx5xwflnni9my5aqpgf8xz4q4rvmj67pwb4zxx1lghrca97z87";
name = "blank-mode";
};
@@ -4722,7 +4775,7 @@
blgrep = callPackage ({ clmemo, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "blgrep";
- version = "20150401.1616";
+ version = "20150401.916";
src = fetchFromGitHub {
owner = "ataka";
repo = "blgrep";
@@ -4730,7 +4783,7 @@
sha256 = "1pslwyaq18d1z7fay2ih3n27i6b49ss62drqqb095l1jxk42xxm0";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/blgrep";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/e78ed9dc4a7ff57524e79213973157ab364ae14d/recipes/blgrep";
sha256 = "0w7453vh9c73hdfgr06693kwvhznn9xr1hqa65izlsx2fjhqc9gm";
name = "blgrep";
};
@@ -4743,7 +4796,7 @@
bliss-theme = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "bliss-theme";
- version = "20141116.801";
+ version = "20141116.101";
src = fetchFromGitHub {
owner = "emacsfodder";
repo = "emacs-bliss-theme";
@@ -4751,7 +4804,7 @@
sha256 = "0dn0i3nxrqd82b9d17p1v0ddlpxnlfclkc8sqzrwq6cf19wcrmdr";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/bliss-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/641d1959bd31598fcdacd39a3d1bb077dcccfa5c/recipes/bliss-theme";
sha256 = "1kzvi6zymfgirr41l8r2kazfz1y4xkigbp5qa1fafcdmw81anmdh";
name = "bliss-theme";
};
@@ -4764,7 +4817,7 @@
blockdiag-mode = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "blockdiag-mode";
- version = "20160427.724";
+ version = "20160427.24";
src = fetchFromGitHub {
owner = "xcezx";
repo = "blockdiag-mode";
@@ -4772,7 +4825,7 @@
sha256 = "111i897dnkbx4xq62jfkqq4li4gm16lxbgkgg2gn13zv0f0lzgvy";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/blockdiag-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/2a0adb94f2a435e846944a1c544e6591b131a10e/recipes/blockdiag-mode";
sha256 = "0v48w4slzx8baxrf10jrzcpqmcv9d3z2pz0xqn8czlzm2f6id3ya";
name = "blockdiag-mode";
};
@@ -4785,15 +4838,15 @@
blog-admin = callPackage ({ ctable, f, fetchFromGitHub, fetchurl, lib, melpaBuild, names, s }:
melpaBuild {
pname = "blog-admin";
- version = "20160531.850";
+ version = "20160609.2135";
src = fetchFromGitHub {
owner = "CodeFalling";
repo = "blog-admin";
- rev = "09e077da0ba1cbf2242b49e913bb1746c172eaaa";
- sha256 = "1ssjd2k7fkxk09f2cm56kjjlil9vrv28y2v80gd8xgylm17523bn";
+ rev = "fd97d405a5cd06b6246a433f31fc5af2077bb255";
+ sha256 = "0fia93kxmw5xkzyf434n3j4f0d6gijkli2mqi82j32z8wayrf307";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/blog-admin";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/7fabdb05de9b8ec18a3a566f99688b50443b6b44/recipes/blog-admin";
sha256 = "03wnci5903c6jikkvlzc2vfma9h9qk673cc3wm756rx94jxinmyk";
name = "blog-admin";
};
@@ -4806,7 +4859,7 @@
bm = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "bm";
- version = "20151223.103";
+ version = "20151222.1803";
src = fetchFromGitHub {
owner = "joodland";
repo = "bm";
@@ -4814,7 +4867,7 @@
sha256 = "1ggqg0lgvxg2adq91damvh55m36qsa23n3z6zyf5z6855ilzaa4x";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/bm";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/cae2ac3513e371a256be0f1a7468e38e686c2487/recipes/bm";
sha256 = "07459r7m12j2nsb7qrb26bx32alylhaaq3z448n42lz02a8dc63g";
name = "bm";
};
@@ -4824,18 +4877,39 @@
license = lib.licenses.free;
};
}) {};
+ bnfc = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
+ melpaBuild {
+ pname = "bnfc";
+ version = "20160605.1427";
+ src = fetchFromGitHub {
+ owner = "jmitchell";
+ repo = "bnfc-mode";
+ rev = "1b58df1dd0cb9b81900632fb2843a03b94f56fdb";
+ sha256 = "0lmqrcy80nw6vmf81kh6q39x8pwhzrj6lbk31xpl8mvwnpqaykmn";
+ };
+ recipeFile = fetchurl {
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/7871b6372a391ace76edea40c6f92ceb10b70bf9/recipes/bnfc";
+ sha256 = "0h6qhyi7vcikg7zhv8lywdz033kp27a8z1ymq5wgs4aqs184igm6";
+ name = "bnfc";
+ };
+ packageRequires = [ emacs ];
+ meta = {
+ homepage = "https://melpa.org/#/bnfc";
+ license = lib.licenses.free;
+ };
+ }) {};
bog = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "bog";
- version = "20160523.747";
+ version = "20160613.2305";
src = fetchFromGitHub {
owner = "kyleam";
repo = "bog";
- rev = "11d6dce0d8e40ed90eceabbd4db9e4995a18ee45";
- sha256 = "0lj2xxyjkrvwh2hfqa086l39c419afsg2rxacbmk6rqvbi8cc4wl";
+ rev = "32ab80807923682b6cdaa897b0ee02c1defa86c5";
+ sha256 = "1nzfjfm0vxc3hlpsd8fz1q1y3hvbl3i2qlmrgdhjlkp6g70s4r75";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/bog";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/19fd0bf2f8e52c79120c492a6dcabdd51b465d35/recipes/bog";
sha256 = "1ci8xxca7dclmi5v37y5k45qlmzs6a9hi6m7czgiwxii902w5pkl";
name = "bog";
};
@@ -4848,15 +4922,15 @@
bongo = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "bongo";
- version = "20160313.1517";
+ version = "20160623.1258";
src = fetchFromGitHub {
owner = "dbrock";
repo = "bongo";
- rev = "029e02b782e25b7bfbc946956d9e99aef277cdcc";
- sha256 = "109r51flzhva8npch6ykqkcd2j5jpffhw6ziq3rmlqb7yc04wghb";
+ rev = "6499a28fdd8249724cf3b9f3cf2dcbce8c4d3927";
+ sha256 = "0s24b0z4q23rfj8j8ifhnnh1ll87c3frpcc0p829a2qqb2nqc4nn";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/bongo";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/692428769cd792dc0644641682c2793103dd00c6/recipes/bongo";
sha256 = "07i9gw067r2igp6s2g2iakm1ybvw04q6zznna2cfdf08nax64ghv";
name = "bongo";
};
@@ -4869,7 +4943,7 @@
bonjourmadame = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "bonjourmadame";
- version = "20160112.1056";
+ version = "20160112.356";
src = fetchFromGitHub {
owner = "pierre-lecocq";
repo = "bonjourmadame";
@@ -4877,7 +4951,7 @@
sha256 = "06cpbjbv8ysz81szwgglgy5r1aay8rrzw5k86wyqg9jdzwpmilpn";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/bonjourmadame";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/34c4cfd7bbf5b442a9304598ba0a23ba9b8dfae4/recipes/bonjourmadame";
sha256 = "0d36yradh37359fjk59s54hxkbh4qcc17sblj2ylcdyw7181iwfn";
name = "bonjourmadame";
};
@@ -4890,15 +4964,15 @@
boogie-friends = callPackage ({ cl-lib ? null, company, dash, fetchFromGitHub, fetchurl, flycheck, lib, melpaBuild, yasnippet }:
melpaBuild {
pname = "boogie-friends";
- version = "20160423.1803";
+ version = "20160629.1830";
src = fetchFromGitHub {
owner = "boogie-org";
repo = "boogie-friends";
- rev = "0e086c1c1ac81db2c7b137d83086fe7e486301cc";
- sha256 = "128xs1qznhbzicv0k7k80mwb68amjdgigm7qzqln5nfg8p1rwz50";
+ rev = "d7bd275274c6f61c995b96f776feb3948174d2a0";
+ sha256 = "0wy3jhj4x1qg3hl0dfs7yalcjl0934317c0q4a43n26wfihingi0";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/boogie-friends";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/5bdd06b82d002677c046876642efe1dc01bc3e77/recipes/boogie-friends";
sha256 = "0cfs7gvjxsx2027dbzh4yypz500nmk503ikiiprbww8jyvc8grk7";
name = "boogie-friends";
};
@@ -4910,13 +4984,13 @@
}) {};
bookmark-plus = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild {
pname = "bookmark-plus";
- version = "20160530.2300";
+ version = "20160624.934";
src = fetchurl {
url = "https://www.emacswiki.org/emacs/download/bookmark+.el";
sha256 = "06621js3bvslfmzmkphzzcrd8hbixin2nx30ammcqaa6572y14ad";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/bookmark+";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/4327b4dd464ebb00c2acdd496274dedf912cdf92/recipes/bookmark+";
sha256 = "0121xx7dp2pakk9g7sg6par4mkxd9ky746yk4wh2wrhprc9dqzni";
name = "bookmark-plus";
};
@@ -4929,7 +5003,7 @@
boon = callPackage ({ emacs, expand-region, fetchFromGitHub, fetchurl, lib, melpaBuild, multiple-cursors }:
melpaBuild {
pname = "boon";
- version = "20160502.1506";
+ version = "20160502.806";
src = fetchFromGitHub {
owner = "jyp";
repo = "boon";
@@ -4937,7 +5011,7 @@
sha256 = "16mlhc00wd1vakzfwda4zhp5q9xvd34xyb9ibwy6fayd06brfaad";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/boon";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/091dcc3775ec2137cb61d66df4e72aca4900897a/recipes/boon";
sha256 = "0gryw7x97jd46jgrm93cjagj4p7w93cjc36i2ps9ajf0d8m4gajb";
name = "boon";
};
@@ -4950,7 +5024,7 @@
borland-blue-theme = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "borland-blue-theme";
- version = "20160117.1421";
+ version = "20160117.721";
src = fetchFromGitHub {
owner = "fourier";
repo = "borland-blue-theme";
@@ -4958,7 +5032,7 @@
sha256 = "0yzfxxv2bw4x320268bixfc7yf97851804bz3829vbdhnr4kp6y5";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/borland-blue-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/f2ff5916fd2caee778479bc2ad3ef13ee514052c/recipes/borland-blue-theme";
sha256 = "1sc8qngm40bwdym8k1dgbahg48i73c00zxd99kqqwm9fnd6nm7qx";
name = "borland-blue-theme";
};
@@ -4971,7 +5045,7 @@
boron-theme = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "boron-theme";
- version = "20150117.1852";
+ version = "20150117.1152";
src = fetchFromGitHub {
owner = "emacsfodder";
repo = "emacs-boron-theme";
@@ -4979,7 +5053,7 @@
sha256 = "1gys5ri56s2s525wdji3m72sxzswmb8cmhmw5iha84v7hlqkrahb";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/boron-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/641d1959bd31598fcdacd39a3d1bb077dcccfa5c/recipes/boron-theme";
sha256 = "1rrqlq08jnh9ihb99ji1vvmamj742assnm4a7xqz6gp7f248nb81";
name = "boron-theme";
};
@@ -4992,7 +5066,7 @@
boxquote = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "boxquote";
- version = "20081011.2226";
+ version = "20081011.1526";
src = fetchFromGitHub {
owner = "davep";
repo = "boxquote.el";
@@ -5000,7 +5074,7 @@
sha256 = "0235l4f1cxj7nysfnay4fz52mg0c13pzqxbhw65vdpfzz1gl1p73";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/boxquote";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/d2148f8f17b16154bfc337df69a5ad31e25a9b05/recipes/boxquote";
sha256 = "0s6cxb8y1y8w9vxxhj1izs8d0gzk4z2zm0cm9gkw1h7k2kyggx6s";
name = "boxquote";
};
@@ -5013,7 +5087,7 @@
bpe = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "bpe";
- version = "20141228.2305";
+ version = "20141228.1605";
src = fetchFromGitHub {
owner = "yuutayamada";
repo = "bpe";
@@ -5021,7 +5095,7 @@
sha256 = "0chmarbpqingdma54d6chbr6v6jg8lapbw56cpvcpbl04fz980r0";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/bpe";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/1a99263c2672d4c2433835cf948101130126e14b/recipes/bpe";
sha256 = "08zfqcgs7i2ram2qpy8vrzksx5722aahr66vdi4d9bcxm03s19fm";
name = "bpe";
};
@@ -5034,7 +5108,7 @@
bpr = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "bpr";
- version = "20160514.1358";
+ version = "20160514.658";
src = fetchFromGitHub {
owner = "ilya-babanov";
repo = "emacs-bpr";
@@ -5042,7 +5116,7 @@
sha256 = "10178l56ryfxsrxysy9qb6vg71q1xavfw1sbchh0mrb90x12vilz";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/bpr";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/410d9d7d9de4d53f1b760081ff46764f121e8f1d/recipes/bpr";
sha256 = "0rjxn40n4s4xdq51bq0w3455g9pli2pvcf1gnbr96zawbngrw6x2";
name = "bpr";
};
@@ -5055,7 +5129,7 @@
bracketed-paste = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "bracketed-paste";
- version = "20160408.148";
+ version = "20160407.1848";
src = fetchFromGitHub {
owner = "hchbaw";
repo = "bracketed-paste.el";
@@ -5063,7 +5137,7 @@
sha256 = "1l6j2zs12psc15cfhqq6hm1bg012jr49zd2i36cmappbsiax1l8m";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/bracketed-paste";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/6446db573d97ceb21cd39ce05fb39627113bbd74/recipes/bracketed-paste";
sha256 = "1v7zwi29as0218vy6ch21iqqcxfhyh373m3dbcdzm2pb8bpcg58j";
name = "bracketed-paste";
};
@@ -5076,7 +5150,7 @@
brainfuck-mode = callPackage ({ fetchFromGitHub, fetchurl, langdoc, lib, melpaBuild }:
melpaBuild {
pname = "brainfuck-mode";
- version = "20150113.942";
+ version = "20150113.242";
src = fetchFromGitHub {
owner = "tom-tan";
repo = "brainfuck-mode";
@@ -5084,7 +5158,7 @@
sha256 = "1nzgjgzidyrplfs4jl8nikd5wwvb4rmrnm51qxmw9y2if0hpq0jd";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/brainfuck-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/279ae8faabbfa2f894999e1534a964606722a150/recipes/brainfuck-mode";
sha256 = "08jzx329mrr3c2pifs3hb4i79dsw606b0iviagaaja8s808m40cd";
name = "brainfuck-mode";
};
@@ -5097,7 +5171,7 @@
broadcast = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "broadcast";
- version = "20151205.312";
+ version = "20151204.2012";
src = fetchFromGitHub {
owner = "killdash9";
repo = "broadcast.el";
@@ -5105,7 +5179,7 @@
sha256 = "0w6b9rxdciy1365kgf6fh3vgrjr8xd5ar6xcn0g4h56f2zg9hdmj";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/broadcast";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/6ed51896112e702a8b853059884aad50d37738c2/recipes/broadcast";
sha256 = "1h2c3mb49q3vlpalrsrx8q3rmy1zg0y45ayvzbvzdkfgs8idgbib";
name = "broadcast";
};
@@ -5118,15 +5192,15 @@
browse-at-remote = callPackage ({ cl-lib ? null, f, fetchFromGitHub, fetchurl, lib, melpaBuild, s }:
melpaBuild {
pname = "browse-at-remote";
- version = "20160414.221";
+ version = "20160618.305";
src = fetchFromGitHub {
owner = "rmuslimov";
repo = "browse-at-remote";
- rev = "8134dffac11d750cdeb5eec1fe169c11a94aac49";
- sha256 = "12m24n9yif9km4b2sw6am1bdfhxg05wdrq2jnp56jy1i7cgjrm1c";
+ rev = "3124d791d159d22661ebe1a1c938a292c8d3e207";
+ sha256 = "17kfmxcjndk7xigc1vwxvycsjmzrwaik5f0nscah0y867vicz3lf";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/browse-at-remote";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/203e177f09eac4ebb8c7e3532bd82f749f8e2607/recipes/browse-at-remote";
sha256 = "1d40b9j3pc6iy3l25062k7f52aq0vk9sizdwd7wii3v5nciczv6w";
name = "browse-at-remote";
};
@@ -5139,7 +5213,7 @@
browse-kill-ring = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "browse-kill-ring";
- version = "20160125.909";
+ version = "20160125.209";
src = fetchFromGitHub {
owner = "browse-kill-ring";
repo = "browse-kill-ring";
@@ -5147,7 +5221,7 @@
sha256 = "0sndzhza9k4vcf70fzxsyzrfryaz92lm1y7bbb0dx10m65qljpbi";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/browse-kill-ring";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/294dc32a672e6b6b0ebfc46cdf0ff9ceacf73e89/recipes/browse-kill-ring";
sha256 = "1d97ap0vrg5ymp96z7y6si98fspxzy02jh1i4clvw5lggjfibhq4";
name = "browse-kill-ring";
};
@@ -5160,13 +5234,13 @@
browse-kill-ring-plus = callPackage ({ browse-kill-ring, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "browse-kill-ring-plus";
- version = "20151231.2121";
+ version = "20151231.1421";
src = fetchurl {
url = "https://www.emacswiki.org/emacs/download/browse-kill-ring+.el";
sha256 = "1z6pix1ml3s97jh34fwjj008ihlrz4hkipdh5yzcvc6nhrimjw2f";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/browse-kill-ring+";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/e700f4066e67991dd67f6476c783e0a5134723db/recipes/browse-kill-ring+";
sha256 = "1flw7vmqgsjjvr2zlgz2909gvpq9mhz8qkg6hvsrzwg95f4l548w";
name = "browse-kill-ring-plus";
};
@@ -5179,7 +5253,7 @@
browse-url-dwim = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, string-utils }:
melpaBuild {
pname = "browse-url-dwim";
- version = "20140731.2122";
+ version = "20140731.1422";
src = fetchFromGitHub {
owner = "rolandwalker";
repo = "browse-url-dwim";
@@ -5187,7 +5261,7 @@
sha256 = "1rcihwdxrzhgcz573rh1yp3770ihkwqjqvd39yhic1d3sgwxz2hy";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/browse-url-dwim";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/a082c2dc0458e3007a947923f5b97e88217199e8/recipes/browse-url-dwim";
sha256 = "13bv2ka5pp9k4kwrxfqfawwxzsqlakvpi9a32gxgx7qfi0dcb1rf";
name = "browse-url-dwim";
};
@@ -5199,13 +5273,13 @@
}) {};
bs-ext = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild {
pname = "bs-ext";
- version = "20130824.1359";
+ version = "20130824.659";
src = fetchurl {
url = "https://www.emacswiki.org/emacs/download/bs-ext.el";
sha256 = "1yslzlx54n17330sf6b2pynz01y6ifnkhipz4hggn1i55bz8hvrw";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/bs-ext";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/74c4861e76bb806ec4c4fd3482162bf0d95530a8/recipes/bs-ext";
sha256 = "0dddligqr71qdakgfkx0r45k9py85qlym7y5f204bxppyw5jmwb6";
name = "bs-ext";
};
@@ -5218,7 +5292,7 @@
btc-ticker = callPackage ({ fetchFromGitHub, fetchurl, json ? null, lib, melpaBuild, request }:
melpaBuild {
pname = "btc-ticker";
- version = "20151113.1559";
+ version = "20151113.859";
src = fetchFromGitHub {
owner = "niedbalski";
repo = "emacs-btc-ticker";
@@ -5226,7 +5300,7 @@
sha256 = "022j0gw5qkxjz8f70vqjxysifv2mz6cigf9n5z03zmpvwwvxmx2z";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/btc-ticker";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/f78796a8835ec44f4d13c99559fd4d113c6f4f29/recipes/btc-ticker";
sha256 = "1vfnx114bvnly1k3fmcpkqq4m9558wqr5c9k9yj8f046dgfh8dp1";
name = "btc-ticker";
};
@@ -5239,7 +5313,7 @@
bts = callPackage ({ dash, fetchFromGitHub, fetchurl, lib, log4e, melpaBuild, pos-tip, s, widget-mvc, yaxception }:
melpaBuild {
pname = "bts";
- version = "20151109.1433";
+ version = "20151109.733";
src = fetchFromGitHub {
owner = "aki2o";
repo = "emacs-bts";
@@ -5247,7 +5321,7 @@
sha256 = "1qgasaqhqm0birjmb6k6isd2f5pn58hva8db8qfhva9g5kg1f38w";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/bts";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/0d2f9c2f465b06c97cd03c5644155cd6c7fade24/recipes/bts";
sha256 = "1i1lbjracrgdxr52agxhxxgkra4w291dmz85s195lcx38rva7ib3";
name = "bts";
};
@@ -5260,7 +5334,7 @@
bts-github = callPackage ({ bts, fetchFromGitHub, fetchurl, gh, lib, melpaBuild }:
melpaBuild {
pname = "bts-github";
- version = "20150108.927";
+ version = "20150108.227";
src = fetchFromGitHub {
owner = "aki2o";
repo = "emacs-bts-github";
@@ -5268,7 +5342,7 @@
sha256 = "1sfr3j11jz4k9jnfa9i05bp4v5vkil38iyrgsp3kxf15797b9dg9";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/bts-github";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/6f3e87699181877e50d75a89e2ee76e403fc9317/recipes/bts-github";
sha256 = "03lz12bbkjqbs82alc97k6s1pmk721qip3h9cifq8a5ww5cbq9ln";
name = "bts-github";
};
@@ -5281,7 +5355,7 @@
bubbleberry-theme = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "bubbleberry-theme";
- version = "20141017.1144";
+ version = "20141017.444";
src = fetchFromGitHub {
owner = "jasonm23";
repo = "emacs-bubbleberry-theme";
@@ -5289,7 +5363,7 @@
sha256 = "1aha8rzilv4k300rr4l9qjfygydfwllkbw17lhm8jz0kh9w6bd28";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/bubbleberry-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/e359b4463b10ac713c2d024c43a1682fca2959af/recipes/bubbleberry-theme";
sha256 = "056pcr9ynsl34wqa2pw6sh4bdl5kpp1r0pl1vvw15p4866l9bdz3";
name = "bubbleberry-theme";
};
@@ -5302,7 +5376,7 @@
buffer-buttons = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "buffer-buttons";
- version = "20150106.1539";
+ version = "20150106.839";
src = fetchFromGitHub {
owner = "rpav";
repo = "buffer-buttons";
@@ -5310,7 +5384,7 @@
sha256 = "1p5a29bpjqr1gs6sb6rr7y0j06nlva23wxkwfskap25zvjpgwbvq";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/buffer-buttons";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/d518e81c8342a93455108e769c8b42747982c924/recipes/buffer-buttons";
sha256 = "1p0ydbrff9197sann3s0d7hpav7r9g461w4llncafmy31w7m1dn6";
name = "buffer-buttons";
};
@@ -5323,7 +5397,7 @@
buffer-flip = callPackage ({ fetchFromGitHub, fetchurl, key-chord, lib, melpaBuild }:
melpaBuild {
pname = "buffer-flip";
- version = "20160110.354";
+ version = "20160109.2054";
src = fetchFromGitHub {
owner = "killdash9";
repo = "buffer-flip.el";
@@ -5331,7 +5405,7 @@
sha256 = "0s43cvkr1za5sd2cvl55ig34wbp8xyjf85snmf67ps04swyyk92q";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/buffer-flip";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/3924870cac1392a7eaeeda34b92614c26c674d63/recipes/buffer-flip";
sha256 = "0ka9ynj528yp1p31hbhm89627v6dpwspybly806n92vxavxrn098";
name = "buffer-flip";
};
@@ -5341,18 +5415,39 @@
license = lib.licenses.free;
};
}) {};
+ buffer-layers = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }:
+ melpaBuild {
+ pname = "buffer-layers";
+ version = "20160615.1657";
+ src = fetchFromGitHub {
+ owner = "swflint";
+ repo = "buffer-layers";
+ rev = "2e0302c79273b8e7ba04932abc55ca5da66d6eaa";
+ sha256 = "1ynxb5zvr4kh49z79k4bxksm1syjzk2167nswraiikq2g7b3z88c";
+ };
+ recipeFile = fetchurl {
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/40e29173cacaf734a002648fa92a075908cd1ba3/recipes/buffer-layers";
+ sha256 = "1k78h9caw8hi6l0znba47fxzh16y90nm5bn4c5x9xpc4g0z5ah0g";
+ name = "buffer-layers";
+ };
+ packageRequires = [ cl-lib ];
+ meta = {
+ homepage = "https://melpa.org/#/buffer-layers";
+ license = lib.licenses.free;
+ };
+ }) {};
buffer-move = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "buffer-move";
- version = "20160108.1608";
+ version = "20160615.1303";
src = fetchFromGitHub {
owner = "lukhas";
repo = "buffer-move";
- rev = "ac7dddff5e6b8a1de65616bdc74a821f891bada5";
- sha256 = "1yzga2zs9flbarsh704hh7k4l3w09g4li9a7r3fsvl4kll80x393";
+ rev = "cb517ecf8409b5fdcda472d7190c6021f0c49751";
+ sha256 = "0gxy58v8nyv6pmzfn8552m8a14f5lzcbkndp5xpzq4g9qvmifmj6";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/buffer-move";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/e30e053eab078a8bef73e42b90299231ea0997ee/recipes/buffer-move";
sha256 = "0wysywff2bggrha7lpl83c8x6ln7zgdj9gsqmjva6gramqb260fg";
name = "buffer-move";
};
@@ -5364,13 +5459,13 @@
}) {};
buffer-stack = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild {
pname = "buffer-stack";
- version = "20101223.1120";
+ version = "20101223.420";
src = fetchurl {
url = "https://www.emacswiki.org/emacs/download/buffer-stack.el";
sha256 = "0d87cl7a4rcd6plbjyf26vaar7imwd18z24xdi4dz734m9zbkg6r";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/buffer-stack";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/5b1245af5b838e4e782cf323813ba143a7666ac4/recipes/buffer-stack";
sha256 = "00vxfd4ki5pqf9n9vbmn1441vn2y14bdr1v05h46hswf13b4hzrn";
name = "buffer-stack";
};
@@ -5383,7 +5478,7 @@
buffer-utils = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "buffer-utils";
- version = "20140512.1600";
+ version = "20140512.900";
src = fetchFromGitHub {
owner = "rolandwalker";
repo = "buffer-utils";
@@ -5391,7 +5486,7 @@
sha256 = "1mnf0dgr6g58k0jyia7985jsinrla04vm5sjl2iajwphbhadjk8p";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/buffer-utils";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/a082c2dc0458e3007a947923f5b97e88217199e8/recipes/buffer-utils";
sha256 = "0cfipdn4fc4fvz513mwiaihvbdi05mza3z5z1379wlljw6r539z2";
name = "buffer-utils";
};
@@ -5404,7 +5499,7 @@
bufshow = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "bufshow";
- version = "20130711.1939";
+ version = "20130711.1239";
src = fetchFromGitHub {
owner = "pjones";
repo = "bufshow";
@@ -5412,7 +5507,7 @@
sha256 = "1plh77xzpbhgmjdagm5rhqx6nkhc0g39ir0b6s5yh003wmx6r1hh";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/bufshow";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/543a734795eed11aa47a8e1348d14e362b341af0/recipes/bufshow";
sha256 = "027cd0jzb8yxm66q1bhyi75f2m9f2pq3aswgav1d18na3ybwg65h";
name = "bufshow";
};
@@ -5425,7 +5520,7 @@
bug-reference-github = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "bug-reference-github";
- version = "20131202.2203";
+ version = "20131202.1503";
src = fetchFromGitHub {
owner = "arnested";
repo = "bug-reference-github";
@@ -5433,7 +5528,7 @@
sha256 = "0zr1raf0q5wi3vr66kglxcfxswlm8g2l501adm8c27clvqizpnrr";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/bug-reference-github";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/5dfce86371692dddef78a6c1d772138b487b82cb/recipes/bug-reference-github";
sha256 = "18yzxwanbrxsab6ba75z1196x0m6dapdhbvy6df5b5x5viz99cf6";
name = "bug-reference-github";
};
@@ -5446,7 +5541,7 @@
bundler = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, inf-ruby, lib, melpaBuild }:
melpaBuild {
pname = "bundler";
- version = "20160121.1224";
+ version = "20160121.524";
src = fetchFromGitHub {
owner = "tobiassvn";
repo = "bundler.el";
@@ -5454,7 +5549,7 @@
sha256 = "0gr4v6fmg0im17f6i3pw6h8l401n5l5lzxz0hgi8lrisvx73iqa5";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/bundler";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/ade7d0f0f0e553b48634e60ecaf7b91d0776d5f0/recipes/bundler";
sha256 = "0i5ybc6i8ackxpaa75kwrg44zdq3jkvy48c42vaaafpddjwjnsy4";
name = "bundler";
};
@@ -5467,7 +5562,7 @@
bury-successful-compilation = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "bury-successful-compilation";
- version = "20150329.128";
+ version = "20150328.1928";
src = fetchFromGitHub {
owner = "EricCrosson";
repo = "bury-successful-compilation";
@@ -5475,7 +5570,7 @@
sha256 = "0mirb3yvs4aq6n53lx690k06zllyzr29ms0888v5svjirxjazvh8";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/bury-successful-compilation";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/f66e2e23c7a1fa0ce6fa8a0e814242b7c46c299c/recipes/bury-successful-compilation";
sha256 = "1gkq4r1573m6m57fp7x69k7kcpqchpcqfcz3792v0wxr22zhkwr3";
name = "bury-successful-compilation";
};
@@ -5488,7 +5583,7 @@
buster-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "buster-mode";
- version = "20140928.1413";
+ version = "20140928.713";
src = fetchFromGitHub {
owner = "magnars";
repo = "buster-mode";
@@ -5496,7 +5591,7 @@
sha256 = "1viq7cb41r8klr8i38c5zjrhdnww31gh4j51xdgy4v2lc3z321zi";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/buster-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/8b528544841995045fb1f8344aaaa38946bb3915/recipes/buster-mode";
sha256 = "1qndhchc8y27x49znhnc4rny1ynfcplr64rczrlbj53qmkxn5am7";
name = "buster-mode";
};
@@ -5509,7 +5604,7 @@
buster-snippets = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, yasnippet }:
melpaBuild {
pname = "buster-snippets";
- version = "20151125.1110";
+ version = "20151125.410";
src = fetchFromGitHub {
owner = "magnars";
repo = "buster-snippets.el";
@@ -5517,7 +5612,7 @@
sha256 = "11djqlw4qf3qs2rwiz7dn5q2zw5i8sykwdf4hg4awsgv8g0bbxn6";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/buster-snippets";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/67dabf33096113e68fe282309246094711751e1f/recipes/buster-snippets";
sha256 = "0k36c2k7wwix10rgmjxipc77fkn9jahjyvl191af6w41wla47x4x";
name = "buster-snippets";
};
@@ -5530,7 +5625,7 @@
busybee-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "busybee-theme";
- version = "20130920.1842";
+ version = "20130920.1142";
src = fetchFromGitHub {
owner = "mswift42";
repo = "busybee-theme";
@@ -5538,7 +5633,7 @@
sha256 = "11z987frzswnsym8g3l0s9wwdly1zn5inl2l558m6kcvfy7g59cx";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/busybee-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/36e2089b998d98575aa6dd3cc79fb7f6847f7aa3/recipes/busybee-theme";
sha256 = "0w0z5x2fbnalv404av3mapfkqbfgyk81a1mzvngll8x0pirbyi10";
name = "busybee-theme";
};
@@ -5551,7 +5646,7 @@
butler = callPackage ({ deferred, emacs, fetchFromGitHub, fetchurl, json ? null, lib, melpaBuild }:
melpaBuild {
pname = "butler";
- version = "20150812.208";
+ version = "20150811.1908";
src = fetchFromGitHub {
owner = "AshtonKem";
repo = "Butler";
@@ -5559,7 +5654,7 @@
sha256 = "0pp604r2gzzdpfajw920607pklwflk842difdyl4hy9w87fgc0jg";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/butler";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/c86e3f5083e59568afac69eed9aa8c1a0bd76e2e/recipes/butler";
sha256 = "1jv74l9jy55qpwf5np9nlj6a1wqsm3xirm7wm89d1h2mbsfcr0mq";
name = "butler";
};
@@ -5572,7 +5667,7 @@
buttercup = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "buttercup";
- version = "20160514.934";
+ version = "20160514.234";
src = fetchFromGitHub {
owner = "jorgenschaefer";
repo = "emacs-buttercup";
@@ -5580,7 +5675,7 @@
sha256 = "16r3qfva20blfxh54l4p85m2x4fq7hwj71rlblp5ipicna7zs4dn";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/buttercup";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/d4b187cb5b3cc5b546bfa6b94b6792e6363242d1/recipes/buttercup";
sha256 = "1grrrdk5pl9l1jvnwzl8g0102gipvxb5qn6k2nmv28jpl57v8dkb";
name = "buttercup";
};
@@ -5593,7 +5688,7 @@
button-lock = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "button-lock";
- version = "20150223.1454";
+ version = "20150223.754";
src = fetchFromGitHub {
owner = "rolandwalker";
repo = "button-lock";
@@ -5601,7 +5696,7 @@
sha256 = "06qjvybf65ffrcnhhbqs333lg51fawaxnva3jvdg7zbrsv4m9acl";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/button-lock";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/83459421dd2eb3d60ec668c3d5bb38d99ee64aff/recipes/button-lock";
sha256 = "1arrdmb3nm570hgs18y9sz3z9v0wlkr3vwa2zgfnc15lmf0y34mp";
name = "button-lock";
};
@@ -5614,7 +5709,7 @@
c-c-combo = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "c-c-combo";
- version = "20151224.355";
+ version = "20151223.2055";
src = fetchFromGitHub {
owner = "CestDiego";
repo = "c-c-combo.el";
@@ -5622,7 +5717,7 @@
sha256 = "040mcq2cwzbrf96f9mghb4314cd8xwp7ki2ix9fxpmbwiy323ld5";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/c-c-combo";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/da105eab0e7a5a3a1fc562973d99cbbbe9019b5f/recipes/c-c-combo";
sha256 = "09rvh6n2hqls7qki5dc34s2hmcmlvdsbgzcxgglhcmrhwx5w4vxn";
name = "c-c-combo";
};
@@ -5635,7 +5730,7 @@
c-eldoc = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "c-eldoc";
- version = "20150904.1032";
+ version = "20150904.332";
src = fetchFromGitHub {
owner = "nflath";
repo = "c-eldoc";
@@ -5643,7 +5738,7 @@
sha256 = "0mlm5f66541namqn04vx6csf14mxhsiknbm36yqdnp1lxb7knv7a";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/c-eldoc";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/cae2ac3513e371a256be0f1a7468e38e686c2487/recipes/c-eldoc";
sha256 = "13grkww14w39y2x6mrbfa9nzljsnl5l7il8dnj6sjdyv0hz9x8vm";
name = "c-eldoc";
};
@@ -5656,7 +5751,7 @@
c0-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "c0-mode";
- version = "20151110.1952";
+ version = "20151110.1252";
src = fetchFromGitHub {
owner = "catern";
repo = "c0-mode";
@@ -5664,7 +5759,7 @@
sha256 = "10k90r4ckkkdjn9pqcbfyp6ynvrd5k0ngqcn5d0v1qvkn6jifxjx";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/c0-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/268115452d9c22a6f2627cec1eb122b47e85b88c/recipes/c0-mode";
sha256 = "0s3h4b3lpz4jsk222yyfdxh780dvykhaqgyv6r3ambz95vrmmpl4";
name = "c0-mode";
};
@@ -5677,7 +5772,7 @@
cabledolphin = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, seq }:
melpaBuild {
pname = "cabledolphin";
- version = "20160204.1038";
+ version = "20160204.338";
src = fetchFromGitHub {
owner = "legoscia";
repo = "cabledolphin";
@@ -5685,7 +5780,7 @@
sha256 = "1h395hvia7r76zlgr10qdr9q2159qyrs89znhkp2czikwm8kjiqk";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/cabledolphin";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/0c8bd2715aec4793abc37d6899adabd568955a08/recipes/cabledolphin";
sha256 = "04slrx0vkcm66q59158limn0cpxn18ghlqyx7z8nrn7frrc03z03";
name = "cabledolphin";
};
@@ -5698,7 +5793,7 @@
cache = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "cache";
- version = "20111020.100";
+ version = "20111019.1800";
src = fetchFromGitHub {
owner = "nflath";
repo = "cache";
@@ -5706,7 +5801,7 @@
sha256 = "1hp6dk84vvgkmj5lzghvqlpq3axwzgx9c7gly2yx6497fgf9jlby";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/cache";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/096d45e6fee9ec514b853d946bf0ce77a5c33ebc/recipes/cache";
sha256 = "0lzj0h23g6alqcmd20ack53p72g9i09dp9x0bp3rdw5izcfkvhh3";
name = "cache";
};
@@ -5719,7 +5814,7 @@
cacoo = callPackage ({ concurrent, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "cacoo";
- version = "20120320.59";
+ version = "20120319.1859";
src = fetchFromGitHub {
owner = "kiwanami";
repo = "emacs-cacoo";
@@ -5727,7 +5822,7 @@
sha256 = "07kzhyqr8ycjvkknijqhsfr26zd5jc8wxm9sl8bp6pzn4jbs1dmx";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/cacoo";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/2bd55f5c29876c2483001cd9deaca68cab5054b9/recipes/cacoo";
sha256 = "0kri4vi6dpsf0zk24psm16f3aa27cq5b54ga7zygmr02csq24a6z";
name = "cacoo";
};
@@ -5740,7 +5835,7 @@
cake = callPackage ({ anything, cake-inflector, fetchFromGitHub, fetchurl, historyf, lib, melpaBuild }:
melpaBuild {
pname = "cake";
- version = "20140604.631";
+ version = "20140603.2331";
src = fetchFromGitHub {
owner = "k1LoW";
repo = "emacs-cake";
@@ -5748,7 +5843,7 @@
sha256 = "0bvrwzjx93qyx97qqw0imvnkkx4w91yk99rnhcmk029zj1fy0kzg";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/cake";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/86ed5054ee2392a0e384443c945a5d4824238e95/recipes/cake";
sha256 = "06qlqrazz2jr08g44q73hx9vpp6xnjvkpd6ky108g0xc5p9q2hcr";
name = "cake";
};
@@ -5761,7 +5856,7 @@
cake-inflector = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, s }:
melpaBuild {
pname = "cake-inflector";
- version = "20140415.1058";
+ version = "20140415.358";
src = fetchFromGitHub {
owner = "k1LoW";
repo = "emacs-cake-inflector";
@@ -5769,7 +5864,7 @@
sha256 = "0xq10jkbk3crdhbh4lab39xhfw6vvcqz3if5q3yy4gzhx7zp94i4";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/cake-inflector";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/77c46238b632047160d6dfac9b257f57b0c4283b/recipes/cake-inflector";
sha256 = "04mrqcm1igb638skaq2b3nr5yzxnck2vwhln61rnh7lkfxq7wbwf";
name = "cake-inflector";
};
@@ -5782,7 +5877,7 @@
cake2 = callPackage ({ anything, cake-inflector, dash, f, fetchFromGitHub, fetchurl, historyf, ht, json ? null, lib, melpaBuild, s }:
melpaBuild {
pname = "cake2";
- version = "20140626.1442";
+ version = "20140626.742";
src = fetchFromGitHub {
owner = "k1LoW";
repo = "emacs-cake2";
@@ -5790,7 +5885,7 @@
sha256 = "15w21r0gqblbn9wlvb4wlm3706wf01r38mp465snjzi839f6sazb";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/cake2";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/18e38d9cdb9f1a8cc05545c52c3a76265a9aa2ab/recipes/cake2";
sha256 = "03q8vqqjlhahgnyy976c46x52splwdjpmb9ngrj5c2z7d8n9145x";
name = "cake2";
};
@@ -5803,7 +5898,7 @@
cal-china-x = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "cal-china-x";
- version = "20160102.1024";
+ version = "20160102.324";
src = fetchFromGitHub {
owner = "xwl";
repo = "cal-china-x";
@@ -5811,7 +5906,7 @@
sha256 = "03hi0ggq81nm1kd0mcf8fwnya4axzd80vfdjdbhgpxbkvnxldzpv";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/cal-china-x";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/c1098d34012fa72f8c8c30d5f0f495fdbe1d3d65/recipes/cal-china-x";
sha256 = "06mh2p14m2axci8vy1hr7jpy53jj215z0djyn8h7zpr0k62ajhka";
name = "cal-china-x";
};
@@ -5824,7 +5919,7 @@
calfw = callPackage ({ fetchFromGitHub, fetchurl, google-maps, lib, melpaBuild }:
melpaBuild {
pname = "calfw";
- version = "20160303.358";
+ version = "20160302.2058";
src = fetchFromGitHub {
owner = "kiwanami";
repo = "emacs-calfw";
@@ -5832,7 +5927,7 @@
sha256 = "0rhasr818qijd2pcgifi0j3q4fkbiw2ck1nivajk7m810p53bxbj";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/calfw";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/1d1aaab9844413a5fff992509935b399b5154c3d/recipes/calfw";
sha256 = "1lyb0jzpx19mx50d8xjv9sx201518vkvskxbglykaqpjm9ik2ai8";
name = "calfw";
};
@@ -5845,7 +5940,7 @@
calfw-gcal = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "calfw-gcal";
- version = "20120111.1100";
+ version = "20120111.400";
src = fetchFromGitHub {
owner = "myuhe";
repo = "calfw-gcal.el";
@@ -5853,7 +5948,7 @@
sha256 = "14n5rci4bkbl7037xvkd69gfxnjlgvd2j1xzciqcgz92f06ir3xi";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/calfw-gcal";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/d9791feacdf46836d22ee907394b7242387804b9/recipes/calfw-gcal";
sha256 = "182p56wiycrm2cjzmlqabksyshpk7nga68jf80vjjmaavp5xqsq8";
name = "calfw-gcal";
};
@@ -5866,7 +5961,7 @@
calmer-forest-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "calmer-forest-theme";
- version = "20130926.710";
+ version = "20130926.10";
src = fetchFromGitHub {
owner = "caldwell";
repo = "calmer-forest-theme";
@@ -5874,7 +5969,7 @@
sha256 = "0n6y4z3qg04qnlsrjysf8ldxl2f2bk7n8crijydwabyy672qxd9h";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/calmer-forest-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/edb51491e575ef64a705cd0b972de07993f185cf/recipes/calmer-forest-theme";
sha256 = "0riz5n8fzvxdnzgg650xqc2zwc4xvhwjlrrzls5h0pl5adaxz96p";
name = "calmer-forest-theme";
};
@@ -5887,7 +5982,7 @@
camcorder = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, names }:
melpaBuild {
pname = "camcorder";
- version = "20160405.634";
+ version = "20160404.2334";
src = fetchFromGitHub {
owner = "Malabarba";
repo = "camcorder.el";
@@ -5895,7 +5990,7 @@
sha256 = "0am8asrzjs3iwak9c86fxb4zwgx5smbb9ywp0zn4y7j37blygswj";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/camcorder";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/1e6aed365c42987d64d0cd9a8a6178339b1b39e8/recipes/camcorder";
sha256 = "1kbnpz3kn8ycpy8nlp8bsnnd1k1h7m02h7w5f7raw97sk4cnpvbi";
name = "camcorder";
};
@@ -5907,14 +6002,14 @@
}) {};
caml = callPackage ({ fetchsvn, fetchurl, lib, melpaBuild }: melpaBuild {
pname = "caml";
- version = "20150911.758";
+ version = "20151009.1045";
src = fetchsvn {
url = "http://caml.inria.fr/svn/ocaml/trunk/emacs/";
- rev = "16550";
+ rev = "16551";
sha256 = "16qw82m87i1fcnsccqcvr9l6p2cy0jdhljsgaivq0q10hdmbgqdw";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/caml";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/55c90eb51ac6a69383c8b63987235d325f43fdb0/recipes/caml";
sha256 = "0kxrn9s1h2l05akcdcj6fd3g6x5wbi511mf14g9glcn8azyfs698";
name = "caml";
};
@@ -5927,7 +6022,7 @@
capture = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "capture";
- version = "20130828.1844";
+ version = "20130828.1144";
src = fetchFromGitHub {
owner = "pashinin";
repo = "capture.el";
@@ -5935,7 +6030,7 @@
sha256 = "08cp45snhyir5w8gyp6xws1q7c54pz06q099l0m3zmwn9277g68z";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/capture";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/bdfe43be6c5f77845e82745534a1b1a9eb190466/recipes/capture";
sha256 = "1hxrvyq8my5886q7wj5w3mhyja7d6cf19gyclap492ci7kmrkdk2";
name = "capture";
};
@@ -5948,7 +6043,7 @@
cargo = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, rust-mode }:
melpaBuild {
pname = "cargo";
- version = "20160525.1419";
+ version = "20160525.719";
src = fetchFromGitHub {
owner = "kwrooijen";
repo = "cargo.el";
@@ -5956,7 +6051,7 @@
sha256 = "030glbfdybjnkpraa37x6i34hpm1pjqssxf2dgwbp0l0phvfbv5z";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/cargo";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/e997b356b009b3d2ab467fe49b79d728a8cfe24b/recipes/cargo";
sha256 = "06zq657cxfk5l4867qqsvhskcqc9wswyl030wj27a43idj8n41jx";
name = "cargo";
};
@@ -5969,7 +6064,7 @@
caroline-theme = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "caroline-theme";
- version = "20160318.620";
+ version = "20160318.20";
src = fetchFromGitHub {
owner = "xjackk";
repo = "caroline-theme";
@@ -5977,7 +6072,7 @@
sha256 = "055w1spba0q9rqqg4rjds0iakr9d8xg66959xahxq8268mq5446n";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/caroline-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/f1a6003eae15ed12e8d6e5e74316f03201cf8373/recipes/caroline-theme";
sha256 = "07flxggnf0lb1fnvprac1daplgx4bi5fnnkgfc58wnw805s12k32";
name = "caroline-theme";
};
@@ -5990,7 +6085,7 @@
caseformat = callPackage ({ cl-lib ? null, dash, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, s }:
melpaBuild {
pname = "caseformat";
- version = "20160115.1715";
+ version = "20160115.1015";
src = fetchFromGitHub {
owner = "HKey";
repo = "caseformat";
@@ -5998,7 +6093,7 @@
sha256 = "1cp9i69npvyn72fqv0w8q1hlkcawkhbah4jblc341ycxwxb48mkl";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/caseformat";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/ba158fbeebcda6b6122b18c97ab8042b1c0a0bc0/recipes/caseformat";
sha256 = "1qwyr74jbx4jpfcw8sccg47q1vdg094rr06m111gsz2yaj9m0gfk";
name = "caseformat";
};
@@ -6011,7 +6106,7 @@
cask = callPackage ({ cl-lib ? null, dash, epl, f, fetchFromGitHub, fetchurl, lib, melpaBuild, package-build, s, shut-up }:
melpaBuild {
pname = "cask";
- version = "20151123.1428";
+ version = "20151123.728";
src = fetchFromGitHub {
owner = "cask";
repo = "cask";
@@ -6019,7 +6114,7 @@
sha256 = "1xhnh9zjlsycwx4fa83pn70zvrv538a7lmlgmq9vmn8i6jrwj63g";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/cask";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/b86c666ee9b0620390a250dddd42b17cbec2409f/recipes/cask";
sha256 = "11nr6my3vlb1xiyai7qwii3nszda2mnkhkjlbh3d0699h0yw7dk5";
name = "cask";
};
@@ -6032,7 +6127,7 @@
cask-mode = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "cask-mode";
- version = "20160410.1649";
+ version = "20160410.949";
src = fetchFromGitHub {
owner = "Wilfred";
repo = "cask-mode";
@@ -6040,7 +6135,7 @@
sha256 = "0gywc2mzdzq3ny0jjffa3151vi7zb9i8ddy5d63x4yhicf5sxlh1";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/cask-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/2d8bc1afaf69b4f29ba1bb0243c25574bc1197cc/recipes/cask-mode";
sha256 = "0fs9zyihipr3klnh3w22h43qz0wnxplm62x4kx7pm1chq9bc9kz6";
name = "cask-mode";
};
@@ -6053,7 +6148,7 @@
cask-package-toolset = callPackage ({ ansi, cl-lib ? null, commander, dash, emacs, f, fetchFromGitHub, fetchurl, lib, melpaBuild, s, shut-up }:
melpaBuild {
pname = "cask-package-toolset";
- version = "20160102.1037";
+ version = "20160102.337";
src = fetchFromGitHub {
owner = "AdrieanKhisbe";
repo = "cask-package-toolset.el";
@@ -6061,7 +6156,7 @@
sha256 = "1m40s9q00l06fz525m3zrvwd6s60lggdqls5k5njkn671aa3h71s";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/cask-package-toolset";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/ed71e45389626e700b93b29d5e2659b6706274d8/recipes/cask-package-toolset";
sha256 = "13ix093c0a58rjqj7zfp3914xj3hvj276gb2d8zhvrx9vvs1345g";
name = "cask-package-toolset";
};
@@ -6074,7 +6169,7 @@
caskxy = callPackage ({ fetchFromGitHub, fetchurl, lib, log4e, melpaBuild, yaxception }:
melpaBuild {
pname = "caskxy";
- version = "20140513.1739";
+ version = "20140513.1039";
src = fetchFromGitHub {
owner = "aki2o";
repo = "caskxy";
@@ -6082,7 +6177,7 @@
sha256 = "15sq5vrkhb7c5j6ny6wy4bkyl5pggch4l7zw46an29rzni3pffr3";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/caskxy";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/1d61aea505e4913879f68081497e85542e9fd786/recipes/caskxy";
sha256 = "0x4s3c8m75zxsvqpgfc5xwll0489zzdnngmnq048z9gkgcd7pd2s";
name = "caskxy";
};
@@ -6095,15 +6190,15 @@
cbm = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "cbm";
- version = "20160131.1806";
+ version = "20160628.1548";
src = fetchFromGitHub {
owner = "akermu";
repo = "cbm.el";
- rev = "2f319b3ea6d434f9f9f9ace53a0ca968f3787a4c";
- sha256 = "125d5i7ycdn2hgffc1l3jqcfzvk70m1ciywj4h53qakkl15r9m38";
+ rev = "3c7f33d26336776f94877974f5f7e1470ea1cbdd";
+ sha256 = "0rrgi765x9p9wa14p2b5jhsk86cmiicx2a239jkxm00w3sdn7rn8";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/cbm";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/f28dbc97dc23cdb0b4c74f8805775c787635871e/recipes/cbm";
sha256 = "02ch0gdw610c8dfxxjxs7ijsc9lzbhklj7hqgwfwksnyc36zcjmn";
name = "cbm";
};
@@ -6116,7 +6211,7 @@
ccc = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "ccc";
- version = "20151205.1443";
+ version = "20151205.743";
src = fetchFromGitHub {
owner = "skk-dev";
repo = "ddskk";
@@ -6124,7 +6219,7 @@
sha256 = "1mqz83yqgad7p5ssjil10w0bw0vm642xp18ms4id8pzcbxz8ygsv";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ccc";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/7375cab750a67ede1a021b6a4371b678a7b991b0/recipes/ccc";
sha256 = "0fckhmz4svcg059v4acbn13yf3ijs09fxmq1axc1b9bm3xxig2cq";
name = "ccc";
};
@@ -6137,7 +6232,7 @@
cd-compile = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "cd-compile";
- version = "20141108.2057";
+ version = "20141108.1357";
src = fetchFromGitHub {
owner = "jamienicol";
repo = "emacs-cd-compile";
@@ -6145,7 +6240,7 @@
sha256 = "1a93cim1w96aaj81clhjv25r7v9bwqm9a818mn8lk4aj1bmhgc4c";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/cd-compile";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/bca4c9e8b071497ac50a85741bf46be6eaae2135/recipes/cd-compile";
sha256 = "1a24rv1jbb883vwhjkw6qxv3h3qy039iqkhkx3jkq1ydidr9f0hv";
name = "cd-compile";
};
@@ -6158,7 +6253,7 @@
cdb = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "cdb";
- version = "20151205.1443";
+ version = "20151205.743";
src = fetchFromGitHub {
owner = "skk-dev";
repo = "ddskk";
@@ -6166,7 +6261,7 @@
sha256 = "1mqz83yqgad7p5ssjil10w0bw0vm642xp18ms4id8pzcbxz8ygsv";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/cdb";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/b48fe069ecd95ea0f9768ecad969e0838344e45d/recipes/cdb";
sha256 = "1gx34062h25gqsl3j1fjlklha19snvmfaw068q6bv6x9r92niqnf";
name = "cdb";
};
@@ -6179,7 +6274,7 @@
cdlatex = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "cdlatex";
- version = "20140707.1326";
+ version = "20140707.626";
src = fetchFromGitHub {
owner = "cdominik";
repo = "cdlatex";
@@ -6187,7 +6282,7 @@
sha256 = "1jj9vmhc4s3ych08bjm1c2xwi81z1p20rj7bvxrgvb5aga2ghi9d";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/cdlatex";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/193956c26050e15ddd7fb6579a053262d1de1e30/recipes/cdlatex";
sha256 = "1jsfmzl13fykbg7l4wv9si7z11ai5lzvkndzbxh9cyqlvznq0m64";
name = "cdlatex";
};
@@ -6200,7 +6295,7 @@
cdnjs = callPackage ({ cl-lib ? null, dash, deferred, f, fetchFromGitHub, fetchurl, lib, melpaBuild, pkg-info }:
melpaBuild {
pname = "cdnjs";
- version = "20140217.2212";
+ version = "20140217.1512";
src = fetchFromGitHub {
owner = "yasuyk";
repo = "cdnjs.el";
@@ -6208,7 +6303,7 @@
sha256 = "0aspci0zg8waa3l234l0f8fjfzm67z2gydfdwwpxksz49sm2s1jk";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/cdnjs";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/66e4ce4e2c7e4aaac9dc0ce476c4759b000ff5d6/recipes/cdnjs";
sha256 = "1clm86n643z1prxrlxlg59jg43l9wwm34x5d88bj6yvix8g6wkb7";
name = "cdnjs";
};
@@ -6221,7 +6316,7 @@
cedit = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "cedit";
- version = "20141231.1714";
+ version = "20141231.1014";
src = fetchFromGitHub {
owner = "zk-phi";
repo = "cedit";
@@ -6229,7 +6324,7 @@
sha256 = "1f8gdj3p54q3410c66716y3l7i7nnkmq6hqz0dg1a1sc6jwdij3v";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/cedit";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/0de4796054f0c616849904bacf05c74c7d2cdcf6/recipes/cedit";
sha256 = "169sy7a1bgczwfxkkzjiggb7vdjxhrx7i3a39g6zv9f1zs6byk6m";
name = "cedit";
};
@@ -6242,7 +6337,7 @@
celery = callPackage ({ dash-functional, deferred, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, s }:
melpaBuild {
pname = "celery";
- version = "20150812.1047";
+ version = "20150812.347";
src = fetchFromGitHub {
owner = "ardumont";
repo = "emacs-celery";
@@ -6250,7 +6345,7 @@
sha256 = "0974bxy85rcxia6dkfryas2g46nanjdf8fv90adbc7kyj07xsf7c";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/celery";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/4b896b2b89d990a7ce2f4bf4ce0aee0d126f3e55/recipes/celery";
sha256 = "0m3hmvp6xz2m7z1kbb0ii0j3c95zi19652gfixq5a5x23kz8y59h";
name = "celery";
};
@@ -6263,13 +6358,13 @@
centered-cursor-mode = callPackage ({ fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "centered-cursor-mode";
- version = "20151001.1534";
+ version = "20151001.834";
src = fetchurl {
url = "https://www.emacswiki.org/emacs/download/centered-cursor-mode.el";
sha256 = "15psyizjz8wf9wfxwwcdmg1bxf8jbv0qy40rskz7si7vxin8hhxl";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/centered-cursor-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/dcb9f72c7ecc30f5391e4f83c7bb173af04978e5/recipes/centered-cursor-mode";
sha256 = "0a5mymnkwjvpra8iffxjwa5fq3kq4vc8fw7pr7gmrwq8ml7il5zl";
name = "centered-cursor-mode";
};
@@ -6282,7 +6377,7 @@
centered-window-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, s }:
melpaBuild {
pname = "centered-window-mode";
- version = "20160210.1147";
+ version = "20160210.447";
src = fetchFromGitHub {
owner = "anler";
repo = "centered-window-mode";
@@ -6290,7 +6385,7 @@
sha256 = "1i5ipll7jlrxqb0kcwq0rlrpfaxsyp663bwjdnhj84c50wlv052f";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/centered-window-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/7fabdb05de9b8ec18a3a566f99688b50443b6b44/recipes/centered-window-mode";
sha256 = "08pmk3rqgbk5fzhxx1kd8rp2k5r5vd2jc9k2phrqg75pf89h3zf4";
name = "centered-window-mode";
};
@@ -6303,7 +6398,7 @@
centimacro = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "centimacro";
- version = "20140306.1527";
+ version = "20140306.827";
src = fetchFromGitHub {
owner = "abo-abo";
repo = "centimacro";
@@ -6311,7 +6406,7 @@
sha256 = "0zqrpaq9c3lm12jxnvysh8f3m3193k22zaj0ycscdqd1jpq4wcgh";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/centimacro";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/de048d6e5d11a42d92de1938fd74fd37146a5a89/recipes/centimacro";
sha256 = "1qbyfi6s4hdp5sv394w3sib8g2kx06i06q8gh6hdv5pis5kq9fx6";
name = "centimacro";
};
@@ -6324,7 +6419,7 @@
cerbere = callPackage ({ f, fetchFromGitHub, fetchurl, lib, melpaBuild, pkg-info, s }:
melpaBuild {
pname = "cerbere";
- version = "20140418.1615";
+ version = "20140418.915";
src = fetchFromGitHub {
owner = "nlamirault";
repo = "cerbere";
@@ -6332,7 +6427,7 @@
sha256 = "17jg5d5afh9zpnjx8wkys8bjllxq99j0yhz8j3fvkskisvhkz1im";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/cerbere";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/4145e270a2113f30f8bb4d0f6c335f1c76f77b1c/recipes/cerbere";
sha256 = "1g3svmh5dlh5mvyag3hmiy90dfkk6f7ppd9qpwckxqyll9vl7r06";
name = "cerbere";
};
@@ -6345,15 +6440,15 @@
cfengine-code-style = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "cfengine-code-style";
- version = "20131209.1311";
+ version = "20131209.611";
src = fetchFromGitHub {
owner = "cfengine";
repo = "core";
- rev = "613159b4a6fe10c400f33f5b887c508216570f12";
- sha256 = "1iphq7kysksf2bldy22q3vdr1z4jqj22maba0i00r725y2wpswzk";
+ rev = "7187b1f7e5f89ad14fc87f1172953f9121cf6d63";
+ sha256 = "13zfjzxzhxqbz5zy5dnbd3l2nii9p5qwj9g2phmagsq80ygqmsgj";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/cfengine-code-style";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/c737839aeda583e61257ad40157e24df7f918b0f/recipes/cfengine-code-style";
sha256 = "1ny8xvdnz740qmw9m81xnwd0gh0a516arpvl3nfimglaai5bfc9a";
name = "cfengine-code-style";
};
@@ -6366,7 +6461,7 @@
cff = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "cff";
- version = "20160118.2118";
+ version = "20160118.1418";
src = fetchFromGitHub {
owner = "fourier";
repo = "cff";
@@ -6374,7 +6469,7 @@
sha256 = "019vqjmq6hb2f5lddqy0ya5q0fd47xix29cashlchz0r034rc32r";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/cff";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/c4e056132be11481aa26e89d5af1cd03925f92d1/recipes/cff";
sha256 = "04b2ck1jkhsrka6dbyn6rpsmmc2bn13kpyhzibd781hj73d93jgc";
name = "cff";
};
@@ -6386,14 +6481,14 @@
}) {};
cg = callPackage ({ fetchsvn, fetchurl, lib, melpaBuild }: melpaBuild {
pname = "cg";
- version = "20160414.1609";
+ version = "20160414.909";
src = fetchsvn {
url = "http://beta.visl.sdu.dk/svn/visl/tools/vislcg3/trunk/emacs";
- rev = "11624";
+ rev = "11670";
sha256 = "1ninfjra12s9agrzb115wrcphkb38flacnjgw1czw6sdqjjxcnp4";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/cg";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/a275ee794b0aa30b1348bb3a984114eef8dfc808/recipes/cg";
sha256 = "0ra6mxf8l9fjn1vszjj71fs6f6l08hwypka8zsb3si96fzb6sgjh";
name = "cg";
};
@@ -6406,7 +6501,7 @@
change-inner = callPackage ({ expand-region, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "change-inner";
- version = "20150707.1744";
+ version = "20150707.1044";
src = fetchFromGitHub {
owner = "magnars";
repo = "change-inner.el";
@@ -6414,7 +6509,7 @@
sha256 = "1m9sq93bwajbld3lnlzkjbsby5zlm9sxjzqynryyvsb9zr1d0a9z";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/change-inner";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/cbe7e12067af7e5287c714df6677d438f7f30c36/recipes/change-inner";
sha256 = "0r693056wykg4bs7inbfzfniyawmb91igk6kjjpq3njk0v84y1sj";
name = "change-inner";
};
@@ -6427,7 +6522,7 @@
chapel-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "chapel-mode";
- version = "20160504.1008";
+ version = "20160504.308";
src = fetchFromGitHub {
owner = "russel";
repo = "Emacs-Chapel-Mode";
@@ -6435,7 +6530,7 @@
sha256 = "0r3yja2ak3z62lav2s8vimmjyi4rd5s82fbs8r6p2k0shm6lj7hz";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/chapel-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/ff32db72ad55a7191b5105192480e17535c7edde/recipes/chapel-mode";
sha256 = "0hmnsv8xf85fc4jqkaqz5j3sf56hgib4jp530vvyc2dl2sps6vzz";
name = "chapel-mode";
};
@@ -6448,7 +6543,7 @@
char-menu = callPackage ({ avy-menu, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "char-menu";
- version = "20160204.715";
+ version = "20160204.15";
src = fetchFromGitHub {
owner = "mrkkrp";
repo = "char-menu";
@@ -6456,7 +6551,7 @@
sha256 = "0jdjf8mg0as90hb01kgwgcbng4cqaq4h9gd2v5pfl250c1mdq13g";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/char-menu";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/f6676747e853045b3b19e7fc9524c793c6a08303/recipes/char-menu";
sha256 = "11jkwghrmmvpv7piznkpa0wilwjdsps9rix3950pfabhlllw268l";
name = "char-menu";
};
@@ -6469,13 +6564,13 @@
character-fold-plus = callPackage ({ fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "character-fold-plus";
- version = "20160228.3";
+ version = "20160227.1703";
src = fetchurl {
url = "https://www.emacswiki.org/emacs/download/character-fold+.el";
sha256 = "0xvgxjyl6s6hds7m9brzly6vxj06m47hxkw5h2riscq6l4nwc9vz";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/character-fold+";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/0bb32513eaaafded547058e3de84fc87710d2cf0/recipes/character-fold+";
sha256 = "01ibdwd7vap9m64w0bhyknxa3iank3wfss49gsgg4xbbxibyrjh3";
name = "character-fold-plus";
};
@@ -6488,15 +6583,15 @@
charmap = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "charmap";
- version = "20160309.1046";
+ version = "20160309.346";
src = fetchFromGitHub {
owner = "lateau";
repo = "charmap";
- rev = "e0477f08c56c93c420e01452bba64b0da732f309";
- sha256 = "05k19q7iihvhi0gflmkpsg5q3ydkdlvf0xh7kjk4lx9yvi0am7m2";
+ rev = "bd4b3e466d7a9433cf35167e3a68ec74fe631bb2";
+ sha256 = "0vqsfk83lg3gvcv62jsgxxwz7icpkpswgg30hmcq0qfg0dfwwcl9";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/charmap";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/11c549fca81c4276054f614d86d17fa7af4ab32e/recipes/charmap";
sha256 = "1j7762d2i17ysn9ys8j7wfv989avmax8iylml2hc26mwbpyfpm84";
name = "charmap";
};
@@ -6509,7 +6604,7 @@
chatwork = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "chatwork";
- version = "20150808.448";
+ version = "20150807.2148";
src = fetchFromGitHub {
owner = "ataka";
repo = "chatwork";
@@ -6517,7 +6612,7 @@
sha256 = "1r2s3fszblk5wa6v3hnbzsri550gi5qsmp2w1spvmf1726n900cb";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/chatwork";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/77ae72e62b8771e890525c063522e7091ca8f674/recipes/chatwork";
sha256 = "0p71swcpfqbx2zmp5nh57f0m30cn68g3019005wa5x4fg7dx746p";
name = "chatwork";
};
@@ -6530,7 +6625,7 @@
cheatsheet = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "cheatsheet";
- version = "20151203.1051";
+ version = "20151203.351";
src = fetchFromGitHub {
owner = "darksmile";
repo = "cheatsheet";
@@ -6538,7 +6633,7 @@
sha256 = "15kam5hf2f4nwp29nvxqm5bs8nyhqf5m44fdb21qljgbmjdlh38y";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/cheatsheet";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/0d2cd657fcadb2dd3fd12864fe94a3465f8c9bd7/recipes/cheatsheet";
sha256 = "11z3svlzvmhdy0pkxbx9qz9bnq056cgkbfyw9z34aq1yxazi2cpq";
name = "cheatsheet";
};
@@ -6551,7 +6646,7 @@
checkbox = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "checkbox";
- version = "20141117.158";
+ version = "20141116.1858";
src = fetchFromGitHub {
owner = "camdez";
repo = "checkbox.el";
@@ -6559,7 +6654,7 @@
sha256 = "0660ix17ksxy5a5v8yqy7adr9d4bs6p1mnkc6lpyw96k4pn62h45";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/checkbox";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/81c4a9d10238836865716f5ea45f8e0e625a87c6/recipes/checkbox";
sha256 = "17gw6w1m6bs3sfx8nqa8nzdq26m8w85a0fca5qw3bmd18bcmknqa";
name = "checkbox";
};
@@ -6572,15 +6667,15 @@
chee = callPackage ({ dash, f, fetchFromGitHub, fetchurl, lib, melpaBuild, s }:
melpaBuild {
pname = "chee";
- version = "20160531.2236";
+ version = "20160611.1915";
src = fetchFromGitHub {
owner = "eikek";
repo = "chee";
- rev = "625868451e1cd6cc8cad6bda20c879e59b714542";
- sha256 = "080zh5qz6smw6ynmigi559b9na3ln3bvbn3q7596wmzranpqwbkg";
+ rev = "697833178bb5f19a74d42df8ca50436e22dd0cec";
+ sha256 = "1hnwrzhq17yw38njngmb1jv3yrx9j83a3xcagzm3dsnbpw833yiw";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/chee";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/9f4a3775720924e5a292819511a8ea42efe1a7dc/recipes/chee";
sha256 = "1njldlp9bnwq7izmdlz5a97kfgxxnycv43djrvx4b01j4v2yz4zv";
name = "chee";
};
@@ -6593,7 +6688,7 @@
cheerilee = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, xelb }:
melpaBuild {
pname = "cheerilee";
- version = "20160313.1935";
+ version = "20160313.1335";
src = fetchFromGitHub {
owner = "Vannil";
repo = "cheerilee.el";
@@ -6601,7 +6696,7 @@
sha256 = "1jdlp5cnsiza55vx4kxacqgk7yqg9fvd9swhwdxkczadb2d5l9p1";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/cheerilee";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/da435df8d78b7c8d4834e00e35c69248a7043c0a/recipes/cheerilee";
sha256 = "15igjlnq35cg9nslyqa63i1inqipx3y8g7zg4r26m69k25simqrv";
name = "cheerilee";
};
@@ -6614,7 +6709,7 @@
chef-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "chef-mode";
- version = "20111121.1600";
+ version = "20111121.900";
src = fetchFromGitHub {
owner = "mpasternacki";
repo = "chef-mode";
@@ -6622,7 +6717,7 @@
sha256 = "1mnskri5r1lyzzcag60x7amn00613jyl7by7hd4sqm2a7zd4r5aa";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/chef-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/4044056af824d552a2852ef1f2e7166899f56d8c/recipes/chef-mode";
sha256 = "1pz82s82d4z3vkm8mpmwdxb9pd11kq09g23mg461lzqxjjw734rr";
name = "chef-mode";
};
@@ -6635,7 +6730,7 @@
cherry-blossom-theme = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "cherry-blossom-theme";
- version = "20150622.542";
+ version = "20150621.2242";
src = fetchFromGitHub {
owner = "inlinestyle";
repo = "emacs-cherry-blossom-theme";
@@ -6643,7 +6738,7 @@
sha256 = "0m97xr6lddy2jdmd4bl4kbp2568p4n110yfa9k7fqc20ihq8jkyd";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/cherry-blossom-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/401ae22f11f7ee808eb696a4c1f869cd824702c0/recipes/cherry-blossom-theme";
sha256 = "1i3kafj3m7iij5mr0vhg45zdnkl9pg9ndrq0b0i3k3mw7d5siq7w";
name = "cherry-blossom-theme";
};
@@ -6656,7 +6751,7 @@
chicken-scheme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "chicken-scheme";
- version = "20141116.2039";
+ version = "20141116.1339";
src = fetchFromGitHub {
owner = "dleslie";
repo = "chicken-scheme.el";
@@ -6664,7 +6759,7 @@
sha256 = "0j61lvr99viaharg4553whcppp7lxhimkk5lps0izz9mnd8y2wm5";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/chicken-scheme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/03f4992471185bf41720ff6fc725fd5fa1291a41/recipes/chicken-scheme";
sha256 = "0ns49p7nsifpi7wrzr02ljrr0p6hxanrg54zaixakvjkxwcgfabr";
name = "chicken-scheme";
};
@@ -6677,7 +6772,7 @@
chinese-conv = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "chinese-conv";
- version = "20160218.2215";
+ version = "20160218.1515";
src = fetchFromGitHub {
owner = "gucong";
repo = "emacs-chinese-conv";
@@ -6685,7 +6780,7 @@
sha256 = "1vfyb8gfrvfrvaaw0p7c6xji2kz6cqm6km2cmjixw0qjikxxlkv1";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/chinese-conv";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/a798158829f8fd84dd3e5e3ec5987d98ff54e641/recipes/chinese-conv";
sha256 = "1lqpq7pg0nqqqj29f8is6c724vl75wscmm1v08j480pfks3l8cnr";
name = "chinese-conv";
};
@@ -6698,7 +6793,7 @@
chinese-fonts-setup = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "chinese-fonts-setup";
- version = "20160602.806";
+ version = "20160602.106";
src = fetchFromGitHub {
owner = "tumashu";
repo = "chinese-fonts-setup";
@@ -6706,7 +6801,7 @@
sha256 = "0hsyjlfvpj7hv08fwq41gp636sng3k5fi6gmxwi3wzxqxfhq7h4y";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/chinese-fonts-setup";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/c536882e613e83a4a2baf86479bfb3efb86d916a/recipes/chinese-fonts-setup";
sha256 = "141ri6a6mnxf7fn17gw48kxk8pvl3khdxkb4pw8brxwrr9rx0xd5";
name = "chinese-fonts-setup";
};
@@ -6716,31 +6811,73 @@
license = lib.licenses.free;
};
}) {};
- chinese-pyim = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild, popup, pos-tip }:
+ chinese-pyim = callPackage ({ async, chinese-pyim-basedict, cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild, popup, pos-tip }:
melpaBuild {
pname = "chinese-pyim";
- version = "20160603.16";
+ version = "20160629.648";
src = fetchFromGitHub {
owner = "tumashu";
repo = "chinese-pyim";
- rev = "092a8d4a07209114d2ba85f708fd0460797f6938";
- sha256 = "12p3yg3j60r745k8mh79f1ncaqmfwq59gkwagkvgkck3snb6x9xh";
+ rev = "915f77912f0f8cfe064c6872cae5c0709e4e094e";
+ sha256 = "004xnn6j4jc607h5qcl9jr0dqvhvqvgm77wrbdmdxpwd6hwp2sf4";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/chinese-pyim";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/157a264533124ba05c161aa93a32c7209f002fba/recipes/chinese-pyim";
sha256 = "0zdx5zhgj1ly89pl48vigjzd8g74fxnxcd9bxrqykcn7y5qvim8l";
name = "chinese-pyim";
};
- packageRequires = [ cl-lib popup pos-tip ];
+ packageRequires = [ async chinese-pyim-basedict cl-lib popup pos-tip ];
meta = {
homepage = "https://melpa.org/#/chinese-pyim";
license = lib.licenses.free;
};
}) {};
+ chinese-pyim-basedict = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
+ melpaBuild {
+ pname = "chinese-pyim-basedict";
+ version = "20160627.658";
+ src = fetchFromGitHub {
+ owner = "tumashu";
+ repo = "chinese-pyim-basedict";
+ rev = "f13b6d20629a0b691ead626cca249b227622fa83";
+ sha256 = "1ddld5jkhqarm31p6qjdvdha36k6yqaz3jzg3lyzd0nkavcmdq57";
+ };
+ recipeFile = fetchurl {
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/e2315ffe7d13928eddaf217a5f67a3e0dd5e62a1/recipes/chinese-pyim-basedict";
+ sha256 = "1qmr71lnpn06mcbb6gfr3dh78pav0sk9mld956cvnkg82vg7nmpv";
+ name = "chinese-pyim-basedict";
+ };
+ packageRequires = [];
+ meta = {
+ homepage = "https://melpa.org/#/chinese-pyim-basedict";
+ license = lib.licenses.free;
+ };
+ }) {};
+ chinese-pyim-greatdict = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
+ melpaBuild {
+ pname = "chinese-pyim-greatdict";
+ version = "20160619.2309";
+ src = fetchFromGitHub {
+ owner = "tumashu";
+ repo = "chinese-pyim-greatdict";
+ rev = "11cf5145710349e9d928eb9197bebb426025fd58";
+ sha256 = "1pza690b31ynyj31f1gp7y2d29ri3swcblpzd2pcpj3ynmnbsy3f";
+ };
+ recipeFile = fetchurl {
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/03234f7a1abe7423c5a9bcb4c100957c8eece351/recipes/chinese-pyim-greatdict";
+ sha256 = "1xqr2fcsb45khavqx06ry2sm8db790zlggk61civbdyafvlz8ikc";
+ name = "chinese-pyim-greatdict";
+ };
+ packageRequires = [];
+ meta = {
+ homepage = "https://melpa.org/#/chinese-pyim-greatdict";
+ license = lib.licenses.free;
+ };
+ }) {};
chinese-remote-input = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "chinese-remote-input";
- version = "20150111.603";
+ version = "20150110.2303";
src = fetchFromGitHub {
owner = "tumashu";
repo = "chinese-remote-input";
@@ -6748,7 +6885,7 @@
sha256 = "06k13wk659qw40aczq3i9gj0nyz6vb9z1nwsz7c1bgjbl2lh6hcv";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/chinese-remote-input";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/b639a9d3b258afe6637055e75a2939f2df18366a/recipes/chinese-remote-input";
sha256 = "0nnccm6w9i0qsgiif22hi1asr0xqdivk8fgg76mp26a2fv8d3dag";
name = "chinese-remote-input";
};
@@ -6761,7 +6898,7 @@
chinese-wbim = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "chinese-wbim";
- version = "20150624.550";
+ version = "20150623.2250";
src = fetchFromGitHub {
owner = "zilongshanren";
repo = "chinese-wbim";
@@ -6769,7 +6906,7 @@
sha256 = "0cx1g6drkr8gyqqdxjf7j4wprxcbq30gam2racgnvdicgij0apwg";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/chinese-wbim";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/3b6b1d100ddf29d6936569d61bf4be19a24d002d/recipes/chinese-wbim";
sha256 = "1pax3kpmvg170mpvfrjbpj9czq0xykmfbany2f7vbn96jb5xfmsb";
name = "chinese-wbim";
};
@@ -6782,7 +6919,7 @@
chinese-word-at-point = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "chinese-word-at-point";
- version = "20150619.338";
+ version = "20150618.2038";
src = fetchFromGitHub {
owner = "xuchunyang";
repo = "chinese-word-at-point.el";
@@ -6790,7 +6927,7 @@
sha256 = "1jsy43avingxxccs0zw2qm5ysx8g76xhhh1mnyypxskl9m60qb4j";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/chinese-word-at-point";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/c9b7785eca577218feade982c979694389f37ec3/recipes/chinese-word-at-point";
sha256 = "0pjs4ckncv84qrdj0pyibrbiy86f1gmjla9n2cgh10xbc7j9y0c4";
name = "chinese-word-at-point";
};
@@ -6803,7 +6940,7 @@
chinese-yasdcv = callPackage ({ chinese-pyim, cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "chinese-yasdcv";
- version = "20150702.1516";
+ version = "20150702.816";
src = fetchFromGitHub {
owner = "tumashu";
repo = "chinese-yasdcv";
@@ -6811,7 +6948,7 @@
sha256 = "14yzmyzkf846yjrwnqrbzmvyhfav39qa5fr8jnb7lyz8rm7y9pnq";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/chinese-yasdcv";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/b6d727c30d2ec0f885a927a16a442fe220a740d5/recipes/chinese-yasdcv";
sha256 = "1y2qywldf8b8b0km1lcf74p0w6rd8gr86qcj7ikwhhbvd19dfglm";
name = "chinese-yasdcv";
};
@@ -6823,13 +6960,13 @@
}) {};
chm-view = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild {
pname = "chm-view";
- version = "20110616.1919";
+ version = "20110616.1219";
src = fetchurl {
url = "https://www.emacswiki.org/emacs/download/chm-view.el";
sha256 = "1r274pf0xrcdml4sy2nhhp3v5pr3y3s4lvk45hd3pmw1i4pw2fd8";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/chm-view";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/8688cd57fca1974403c0e36d6289845059adac5c/recipes/chm-view";
sha256 = "1acz0fvl3inn7g4himq680yf64bgm7n61hsv2zpm1k6smrdl78nz";
name = "chm-view";
};
@@ -6842,7 +6979,7 @@
chronos = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "chronos";
- version = "20150602.1729";
+ version = "20150602.1029";
src = fetchFromGitHub {
owner = "dxknight";
repo = "chronos";
@@ -6850,7 +6987,7 @@
sha256 = "1mqdz3rvx0jm80fgzw3s3lqn448kqrlrifdwcg36cqq4qmkpalq4";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/chronos";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/53648c5699fc03e50774270f9560c727e2c22873/recipes/chronos";
sha256 = "1fwpll0mk6pc37qagbq3b3z32d2qwz993nxp9pjw4qbmlnq6sy9d";
name = "chronos";
};
@@ -6863,7 +7000,7 @@
chruby = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "chruby";
- version = "20151204.1330";
+ version = "20151204.630";
src = fetchFromGitHub {
owner = "plexus";
repo = "chruby.el";
@@ -6871,7 +7008,7 @@
sha256 = "0gx0bd7j71rlniq64vw8k59yzl070mdia05ry18br8kpsbk3bhrl";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/chruby";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/1989a3c6fa4cd7aaf6b0b202f197eb7db51936b9/recipes/chruby";
sha256 = "0pk6vdvmifiq52n452lbrkklxa69c40bfyzra9qhrghxr2q5v3mk";
name = "chruby";
};
@@ -6884,15 +7021,15 @@
cider = callPackage ({ clojure-mode, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, pkg-info, queue, seq, spinner }:
melpaBuild {
pname = "cider";
- version = "20160602.1709";
+ version = "20160629.1146";
src = fetchFromGitHub {
owner = "clojure-emacs";
repo = "cider";
- rev = "dd07f59cbfbe49caaa9c9058a9b32ead4ca7d7ab";
- sha256 = "0pwv93bp982z95shn0s0vifi24gmj88yz4swmrfy07a3p9nfq4xk";
+ rev = "ce55e3648baf64db63f7113c4fc6c5ef349cf84c";
+ sha256 = "01d9f6wiznc929297dvny4w23fris0ym0149pwl0yk7fn9cgl4zb";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/cider";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/55a937aed818dbe41530037da315f705205f189b/recipes/cider";
sha256 = "1a6hb728a3ir18c2dn9zfd3jn79fi5xjn5gqr7ljy6qb063xd4qx";
name = "cider";
};
@@ -6905,7 +7042,7 @@
cider-decompile = callPackage ({ cider, fetchFromGitHub, fetchurl, javap-mode, lib, melpaBuild }:
melpaBuild {
pname = "cider-decompile";
- version = "20151122.637";
+ version = "20151121.2337";
src = fetchFromGitHub {
owner = "clojure-emacs";
repo = "cider-decompile";
@@ -6913,7 +7050,7 @@
sha256 = "1w4y65s3m2irga4iqfqqkcmvl6ss24zmaxqzbfib8jmi84r4lpac";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/cider-decompile";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/0b7f7f23bb15922ce7a7dad1ae23093db72aa10c/recipes/cider-decompile";
sha256 = "0jhsm31zcfwkbpsdh1lvmjm1fv2m7y849930sjvf5nxv3ffhx3b4";
name = "cider-decompile";
};
@@ -6926,7 +7063,7 @@
cider-eval-sexp-fu = callPackage ({ emacs, eval-sexp-fu, fetchFromGitHub, fetchurl, highlight, lib, melpaBuild }:
melpaBuild {
pname = "cider-eval-sexp-fu";
- version = "20160412.828";
+ version = "20160412.128";
src = fetchFromGitHub {
owner = "clojure-emacs";
repo = "cider-eval-sexp-fu";
@@ -6934,7 +7071,7 @@
sha256 = "0g8yzfpaz1glxd0dxrd19bvk469pdjkr4b11xifcvamxa2slryij";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/cider-eval-sexp-fu";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/947f4d106d70f95ca8aac124ab0d90b2975208df/recipes/cider-eval-sexp-fu";
sha256 = "1n4sgv042qd9560pllabysx0c5snly6i22bk126y8f8rn0zj58iq";
name = "cider-eval-sexp-fu";
};
@@ -6947,7 +7084,7 @@
cider-profile = callPackage ({ cider, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "cider-profile";
- version = "20141120.1525";
+ version = "20141120.825";
src = fetchFromGitHub {
owner = "thunknyc";
repo = "nrepl-profile";
@@ -6955,7 +7092,7 @@
sha256 = "0lgq4p7rs4prqfqd83v1l36xxacrd65jsfzbp7q62b2pjqikpgk0";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/cider-profile";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/440708bbf501e7b3d0aff1b9432ac71b5f9f8eab/recipes/cider-profile";
sha256 = "14jc98h4r9rb7pxfb60ps4ss8p0bm66wdl6n8z1357hk93h9kmfs";
name = "cider-profile";
};
@@ -6968,7 +7105,7 @@
cider-spy = callPackage ({ cider, cl-lib ? null, dash, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, noflet }:
melpaBuild {
pname = "cider-spy";
- version = "20160313.1540";
+ version = "20160313.940";
src = fetchFromGitHub {
owner = "jonpither";
repo = "cider-spy";
@@ -6976,7 +7113,7 @@
sha256 = "1x96f5wc916dcwb75a34b6x1mas20gdgy34c7rg59n91ydn1mfaf";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/cider-spy";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/a4a31dfc9cfe8ca4e72b7060e1db8c3864299e5b/recipes/cider-spy";
sha256 = "0478jlg76h0mrjwk2b1kdj16s1q1b03b7ygacai45jh89bc025fh";
name = "cider-spy";
};
@@ -6989,15 +7126,15 @@
cil-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "cil-mode";
- version = "20150223.1150";
+ version = "20160622.930";
src = fetchFromGitHub {
owner = "ForNeVeR";
repo = "cil-mode";
- rev = "fcd2e407aeefab9ae465b072eea33dc115506fff";
- sha256 = "1w0ya0446rqsg1j59fd1mp4wavv2f3h1k3mw9svm5glymdirw4d1";
+ rev = "a78a88ca9a66a82f069329a96e34b67478ae2d9b";
+ sha256 = "06p6hz6jrnvnlbxdr1pjgf5wh4n34kf6al4589qg1s88r2lf86bl";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/cil-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/ccbf4a7c9df3c85207c7160ee68ecc4ba4f3801a/recipes/cil-mode";
sha256 = "1h18r086bqspyn5n252yzw8x2zgyaqzdd8pbcf5gqlh1w8kapq4y";
name = "cil-mode";
};
@@ -7010,7 +7147,7 @@
cinspect = callPackage ({ cl-lib ? null, deferred, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, python-environment }:
melpaBuild {
pname = "cinspect";
- version = "20150716.433";
+ version = "20150715.2133";
src = fetchFromGitHub {
owner = "inlinestyle";
repo = "cinspect-mode";
@@ -7018,7 +7155,7 @@
sha256 = "190n4kdcqdwglhnawnj9mqjarmcaqylxipc07whmrii0jv279kjw";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/cinspect";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/1e5b5bdbfeb59ed8e98e50d0cc773d78c72d1699/recipes/cinspect";
sha256 = "0djh61mrfgcm3767ll1l5apw6646j4fdcaripksrmvn5aqfn8rjj";
name = "cinspect";
};
@@ -7031,15 +7168,15 @@
circe = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "circe";
- version = "20160527.1522";
+ version = "20160608.1515";
src = fetchFromGitHub {
owner = "jorgenschaefer";
repo = "circe";
- rev = "9a4f3c9a554f99de0eb9e5f2b3e545b3e6390918";
- sha256 = "008fz7829mvjlid93hvs5xwwvigh5lnq2fxf2w9ghnw9lygkv5bq";
+ rev = "0564dfae13590d183889950724a7ef2e8df5b1df";
+ sha256 = "1nwdbm9dnybghcv2rjw9c8783k5r060cmxzklsn9by4l7i1x9k2r";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/circe";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/a2b295656d53fddc76cacc86b239e5648e49e3a4/recipes/circe";
sha256 = "1f54d8490gfx0r0cdvgmcjdxqpni43msy0k2mgqd1qz88a4b5l07";
name = "circe";
};
@@ -7049,10 +7186,31 @@
license = lib.licenses.free;
};
}) {};
+ circe-notifications = callPackage ({ alert, circe, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
+ melpaBuild {
+ pname = "circe-notifications";
+ version = "20160605.1004";
+ src = fetchFromGitHub {
+ owner = "eqyiel";
+ repo = "circe-notifications";
+ rev = "32c0a2b3acf4bdf22dc45528def5d78ea77cebf6";
+ sha256 = "0ahk9w0nxmh8c27s63iizvk1yddf1bpz62b61niwi8nn6g6fx6m2";
+ };
+ recipeFile = fetchurl {
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/76c0408423c4e0728789de7b356b2971d6c446c7/recipes/circe-notifications";
+ sha256 = "06y525x5yc0xgbw0cf16mc72ca9bv8j8z4gpgznbad2qp7psf53c";
+ name = "circe-notifications";
+ };
+ packageRequires = [ alert circe emacs ];
+ meta = {
+ homepage = "https://melpa.org/#/circe-notifications";
+ license = lib.licenses.free;
+ };
+ }) {};
cl-format = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "cl-format";
- version = "20160413.245";
+ version = "20160412.1945";
src = fetchFromGitHub {
owner = "alvinfrancis";
repo = "cl-format";
@@ -7060,7 +7218,7 @@
sha256 = "108s96viral3s62a77jfgvjam08hdk97frfmxjg3xpp2ifccjs7h";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/cl-format";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/7a12bd6769ce7a5745c2da06dcd57ed3ba2ed891/recipes/cl-format";
sha256 = "1259ykj6z6m6gaqhkmj5f3q9vyk7idpvlvlma5likpknxj5f444v";
name = "cl-format";
};
@@ -7073,7 +7231,7 @@
cl-lib-highlight = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "cl-lib-highlight";
- version = "20140127.2212";
+ version = "20140127.1512";
src = fetchFromGitHub {
owner = "skeeto";
repo = "cl-lib-highlight";
@@ -7081,7 +7239,7 @@
sha256 = "1mc8kayw8fmvpl0z09v6i68s2lharlwpzff0cvcsfn0an2imj2d0";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/cl-lib-highlight";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/696c79669478b0d1c9769cc6f0fe581ee056cf32/recipes/cl-lib-highlight";
sha256 = "13qdrvpxq928p27b1xdcbsscyhqk042rwfa17037gp9h02fd42j8";
name = "cl-lib-highlight";
};
@@ -7094,14 +7252,14 @@
clang-format = callPackage ({ cl-lib ? null, fetchsvn, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "clang-format";
- version = "20151116.1338";
+ version = "20151116.638";
src = fetchsvn {
url = "http://llvm.org/svn/llvm-project/cfe/trunk/tools/clang-format";
- rev = "271788";
- sha256 = "1miz9ycxk0vvvnfi0hn0jl3sipvsyibc7j4cf59l4drz34zi8y5x";
+ rev = "274468";
+ sha256 = "1nx3lbjl2kykxdjry36hq4mc7kbh3dp0i1dc6pr3lgpc0w8hg55z";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/clang-format";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/69e56114948419a27f06204f6fe5326cc250ae28/recipes/clang-format";
sha256 = "19qaihb0lqnym2in4465lv8scw6qba6fdn8rcbkpsq09hpzikbah";
name = "clang-format";
};
@@ -7114,7 +7272,7 @@
clean-aindent-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "clean-aindent-mode";
- version = "20150817.529";
+ version = "20150816.2229";
src = fetchFromGitHub {
owner = "pmarinov";
repo = "clean-aindent-mode";
@@ -7122,7 +7280,7 @@
sha256 = "1h6k6kzim1zb87y1kzpqjzk3ip9bmfxyg54kdh2sfp4xy0g5h3p0";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/clean-aindent-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/ee9dac7c10e652f026643620418dfea9237a0d23/recipes/clean-aindent-mode";
sha256 = "1whzbs2gg2ar24kw29ffv94dgvrlfy2v4zdn0g7ksjjmmdr8ahh4";
name = "clean-aindent-mode";
};
@@ -7135,7 +7293,7 @@
clean-buffers = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "clean-buffers";
- version = "20160530.59";
+ version = "20160529.1759";
src = fetchFromGitHub {
owner = "lujun9972";
repo = "clean-buffers";
@@ -7143,7 +7301,7 @@
sha256 = "1h7kmj53fqwfzam3ywz3yn4abl2n94v0lxnyv7x4qzwi2ggizc3l";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/clean-buffers";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/7fcabd17d7de9af443198ac9c2996bfbd94324de/recipes/clean-buffers";
sha256 = "025sxrqxm24yg1wpfncrjw1nm91h0h7jy2xd5g20xqlinqqvdihj";
name = "clean-buffers";
};
@@ -7156,7 +7314,7 @@
clear-text = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "clear-text";
- version = "20160406.2243";
+ version = "20160406.1543";
src = fetchFromGitHub {
owner = "xuchunyang";
repo = "clear-text.el";
@@ -7164,7 +7322,7 @@
sha256 = "0y5z2pfhzpv67w2lnw1q06mflww90sfcilj89kqx2jhhrnrnn2ka";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/clear-text";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/d2ae86a3001587ba753fcd0ca5137cb65d38910d/recipes/clear-text";
sha256 = "1cx2lbcbhd024pq9njan7xrlvj3k4c3wdsvgbz5qyna0k06ix8dv";
name = "clear-text";
};
@@ -7177,7 +7335,7 @@
clevercss = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "clevercss";
- version = "20131229.255";
+ version = "20131228.1955";
src = fetchFromGitHub {
owner = "jschaf";
repo = "CleverCSS-Mode";
@@ -7185,7 +7343,7 @@
sha256 = "19q6zbnl9fg4cwgi56d7p4qp6y3g0fdyihinpakby49xv2n2k8dx";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/clevercss";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/ec88232feb9d0a04278d5f615bb0ee0833ecb8ca/recipes/clevercss";
sha256 = "189f2l4za1j9ds0bhxrzyp7da9p6svh5dx2vnzf4vql7qhjk3gf0";
name = "clevercss";
};
@@ -7198,7 +7356,7 @@
click-mode = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "click-mode";
- version = "20160331.2348";
+ version = "20160331.1648";
src = fetchFromGitHub {
owner = "bmalehorn";
repo = "click-mode";
@@ -7206,7 +7364,7 @@
sha256 = "0hbdk1xdh753g59dgyqjj6wgjkf3crsd6pzaq7p5ifbfhrph0qjl";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/click-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/1859bb26e3efd66394d7d9f4d2296cbeeaf5ba4d/recipes/click-mode";
sha256 = "1p5dz4a74w5zxdlw17h5z9dglapia4p29880liw3bif2c7dzkg0r";
name = "click-mode";
};
@@ -7219,7 +7377,7 @@
cliphist = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, popup }:
melpaBuild {
pname = "cliphist";
- version = "20160503.412";
+ version = "20160502.2112";
src = fetchFromGitHub {
owner = "redguardtoo";
repo = "cliphist";
@@ -7227,7 +7385,7 @@
sha256 = "0h856l6rslawf3vg37xhsaw5w56r9qlwzbqapg751qg0v7wf0860";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/cliphist";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/82d86dae4ad8efc8ef342883c164c56e43079171/recipes/cliphist";
sha256 = "0mg6pznijba3kvp3r57pi54v6mgih2vfwj2kg6qmcy1abrc0xq29";
name = "cliphist";
};
@@ -7240,7 +7398,7 @@
clipmon = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "clipmon";
- version = "20160128.1904";
+ version = "20160128.1204";
src = fetchFromGitHub {
owner = "bburns";
repo = "clipmon";
@@ -7248,7 +7406,7 @@
sha256 = "07a55q97j2vsqpha0akri2kq90v1l97mc1mgr97pq39gc1bbc5d3";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/clipmon";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/4dc92d73705ebb61ff8218f3483dd2da51ce8d32/recipes/clipmon";
sha256 = "1gvy1722px4fh88jyb8xx7k1dgyjgq7zjadr5fghdir42l0byw7i";
name = "clipmon";
};
@@ -7261,7 +7419,7 @@
clippy = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, pos-tip }:
melpaBuild {
pname = "clippy";
- version = "20140417.1314";
+ version = "20140417.614";
src = fetchFromGitHub {
owner = "Fuco1";
repo = "clippy.el";
@@ -7269,7 +7427,7 @@
sha256 = "0msmigzip7hpjxwkz0khhlc2lj9wgb2919i4k0kv8ppi9j2f9hjc";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/clippy";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/e3743596c4b6387351684b1bf00f17275b8e59e8/recipes/clippy";
sha256 = "0nqmc8f2qrsp25vzc66xw6b232n7fyw6g06mwn2cdpm3d2pgb7rg";
name = "clippy";
};
@@ -7282,7 +7440,7 @@
clips-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "clips-mode";
- version = "20131012.2301";
+ version = "20131012.1601";
src = fetchFromGitHub {
owner = "grettke";
repo = "clips-mode";
@@ -7290,7 +7448,7 @@
sha256 = "0i6sj5rs4b9v8aqq9l6wr15080qb101hdxspx6innhijhajgmssd";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/clips-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/d28484bf5e9ad72778ad63f73deeea1eb1263236/recipes/clips-mode";
sha256 = "083wrhjn04rg8vr6j0ziffdbdhbfn63wzl4q7yzpkf8qckh6mxhf";
name = "clips-mode";
};
@@ -7303,15 +7461,15 @@
clj-refactor = callPackage ({ cider, clojure-mode, dash, edn, emacs, fetchFromGitHub, fetchurl, hydra, inflections, lib, melpaBuild, multiple-cursors, paredit, s, yasnippet }:
melpaBuild {
pname = "clj-refactor";
- version = "20160524.1046";
+ version = "20160621.1102";
src = fetchFromGitHub {
owner = "clojure-emacs";
repo = "clj-refactor.el";
- rev = "c40fa3241bc06504731a77019c677772558e69d9";
- sha256 = "1yl1vldc2zsmc1hlslgvb9xr87fa0kya2f9phmmc96yqanvmh69g";
+ rev = "51b8b0b0d02ee279dfa0b6a7bf083406fffe1d3d";
+ sha256 = "09z78z78m2ncw8n1wvqiwrwdpha358xi1kphiy3q8mp7p10zfnsh";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/clj-refactor";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/3a2db268e55d10f7d1d5a5f02d35b2c27b12b78e/recipes/clj-refactor";
sha256 = "1qvds6dylazvrzz1ji2z2ldw72pa2nxqacb9d04gasmkqc32ipvz";
name = "clj-refactor";
};
@@ -7336,7 +7494,7 @@
cljr-helm = callPackage ({ clj-refactor, fetchFromGitHub, fetchurl, helm, lib, melpaBuild }:
melpaBuild {
pname = "cljr-helm";
- version = "20150425.2207";
+ version = "20150425.1507";
src = fetchFromGitHub {
owner = "philjackson";
repo = "cljr-helm";
@@ -7344,7 +7502,7 @@
sha256 = "0ydv2prnw1j3m5nk23fqn4iv202kjswr8z0ip4zacdm8bl0q25ln";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/cljr-helm";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/d99b67e295ef59916211bf22b57b4d093e3d53ab/recipes/cljr-helm";
sha256 = "108a1xgnc6qy088vs41j3npwk25a5vny0xx4r3yh76jsmpdpcgnc";
name = "cljr-helm";
};
@@ -7357,7 +7515,7 @@
cljsbuild-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "cljsbuild-mode";
- version = "20160402.1900";
+ version = "20160402.1200";
src = fetchFromGitHub {
owner = "kototama";
repo = "cljsbuild-mode";
@@ -7365,7 +7523,7 @@
sha256 = "0flnfivz6w3pkham3g08m3xzy3jg1rzvxfa00vkr7ll8iyv4ypqc";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/cljsbuild-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/d801a2e0ba5ae7c65b5d312fbf41261278a8b1ba/recipes/cljsbuild-mode";
sha256 = "0qvb990dgq4v75lwnd661wxszbdbhlgxpsyv4zaj6h10gp1vi214";
name = "cljsbuild-mode";
};
@@ -7378,7 +7536,7 @@
clmemo = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "clmemo";
- version = "20160326.1723";
+ version = "20160326.1123";
src = fetchFromGitHub {
owner = "ataka";
repo = "clmemo";
@@ -7386,7 +7544,7 @@
sha256 = "152qf7i5bf7xvr35gyawl8abkh7v5dsz957zxslrbbnc8bb1k6bz";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/clmemo";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/e98b438990dc0dbda264fb4bf7a3237a2661baab/recipes/clmemo";
sha256 = "03qa79ip0gqinj1kk898lcvixk98hf6gknz0yc2fnqcrm642k2vs";
name = "clmemo";
};
@@ -7399,7 +7557,7 @@
cloc = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "cloc";
- version = "20151007.1101";
+ version = "20151007.401";
src = fetchFromGitHub {
owner = "cosmicexplorer";
repo = "cloc-emacs";
@@ -7407,7 +7565,7 @@
sha256 = "1rflc00yrbb7xzfh8c54ajf4qnhsp3mq07gkr257gjyrwsdw762v";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/cloc";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/0dd7a641efd13aa0bd7509d8a5b0a28e3a0493c8/recipes/cloc";
sha256 = "1ny5wixa9x4fq5jvhs01jmyvwkfvwwi9aamrcqsl42s9sx6ygz7a";
name = "cloc";
};
@@ -7420,7 +7578,7 @@
clocker = callPackage ({ dash, fetchFromGitHub, fetchurl, lib, melpaBuild, projectile }:
melpaBuild {
pname = "clocker";
- version = "20160126.5";
+ version = "20160125.1705";
src = fetchFromGitHub {
owner = "roman";
repo = "clocker.el";
@@ -7428,7 +7586,7 @@
sha256 = "0hz6a7gj0zfsdaifkhwf965c96rkjc3kivvqlf50zllsw0ysbnn0";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/clocker";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/dadd3f5abad2e1f7863c4d654ff065f641395f64/recipes/clocker";
sha256 = "0cckrk40k1labiqjh7ghzpx5zi136xz70j3ipp117x52qf24k10k";
name = "clocker";
};
@@ -7441,7 +7599,7 @@
clojars = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, request-deferred }:
melpaBuild {
pname = "clojars";
- version = "20160519.635";
+ version = "20160518.2335";
src = fetchFromGitHub {
owner = "joshuamiller";
repo = "clojars.el";
@@ -7449,7 +7607,7 @@
sha256 = "15hnjxc7xczidn3fl88zkb8868r0v1892pvhgzpwkh3biailfq5h";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/clojars";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/7f766319c3e18a41017684ea503b0382e96ab31b/recipes/clojars";
sha256 = "1skvd29347hwapgdqznbzwfcp2nf077qkdzknxc8ylmqa32yf5w1";
name = "clojars";
};
@@ -7462,7 +7620,7 @@
clojure-cheatsheet = callPackage ({ cider, fetchFromGitHub, fetchurl, helm, lib, melpaBuild }:
melpaBuild {
pname = "clojure-cheatsheet";
- version = "20160320.1115";
+ version = "20160320.515";
src = fetchFromGitHub {
owner = "clojure-emacs";
repo = "clojure-cheatsheet";
@@ -7470,7 +7628,7 @@
sha256 = "0943fh8309mvg73paf97i2mfkrnl04x11gy8iz73c9622bkkmpcb";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/clojure-cheatsheet";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/0569da79bd8145df334965c5d4364a50b6b548fa/recipes/clojure-cheatsheet";
sha256 = "05sw3bkdcadslpsk64ds0ciavmdgqk7fr5q3z505vvafmszfnaqv";
name = "clojure-cheatsheet";
};
@@ -7483,15 +7641,15 @@
clojure-mode = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "clojure-mode";
- version = "20160521.2009";
+ version = "20160627.120";
src = fetchFromGitHub {
owner = "clojure-emacs";
repo = "clojure-mode";
- rev = "173b67dcc4a547844361ab93265c3b529e6fb6b2";
- sha256 = "10czk5fnq4blksl9m8c5b2mp8wkicsjrifdfig9yn3gnpg4rmwbq";
+ rev = "f24c5369341a71ace3a2fd85fbbdaafd9c5d3c43";
+ sha256 = "1w8igclqgy2z9298q0jg2a2h8xcgwgdr00fmwz1yxhwwd3qy68jj";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/clojure-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/5e3cd2e6ee52692dc7b2a04245137130a9f521c7/recipes/clojure-mode";
sha256 = "11n0rjhs1mmlzdqy711g432an5ybdka5xj0ipsk8dx6xcyab70np";
name = "clojure-mode";
};
@@ -7504,15 +7662,15 @@
clojure-mode-extra-font-locking = callPackage ({ clojure-mode, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "clojure-mode-extra-font-locking";
- version = "20160307.1314";
+ version = "20160307.614";
src = fetchFromGitHub {
owner = "clojure-emacs";
repo = "clojure-mode";
- rev = "173b67dcc4a547844361ab93265c3b529e6fb6b2";
- sha256 = "10czk5fnq4blksl9m8c5b2mp8wkicsjrifdfig9yn3gnpg4rmwbq";
+ rev = "f24c5369341a71ace3a2fd85fbbdaafd9c5d3c43";
+ sha256 = "1w8igclqgy2z9298q0jg2a2h8xcgwgdr00fmwz1yxhwwd3qy68jj";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/clojure-mode-extra-font-locking";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/5e3cd2e6ee52692dc7b2a04245137130a9f521c7/recipes/clojure-mode-extra-font-locking";
sha256 = "00nff9mkj61i76dj21x87vhz0bbkzgvkx1ypkxcv6yf3pfhq7r8n";
name = "clojure-mode-extra-font-locking";
};
@@ -7525,15 +7683,15 @@
clojure-quick-repls = callPackage ({ cider, dash, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "clojure-quick-repls";
- version = "20150814.936";
+ version = "20150814.236";
src = fetchFromGitHub {
owner = "symfrog";
repo = "clojure-quick-repls";
- rev = "b543c6c35bb1bacb278f92a6e0f4d2128c0c3db9";
- sha256 = "1vgahik2q2sn6vqm9wg5b9jc74mkbc1md8pl69apz4cg397kjkzr";
+ rev = "730311dd3ac4e0aceb0204f818b422017873467f";
+ sha256 = "1qxhgqldvzzbpr3cxkj3a1zhpjck04pcqli9nnnb75hawi7vi8si";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/clojure-quick-repls";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/e618430057eb3ac235ab4a44767524919c870036/recipes/clojure-quick-repls";
sha256 = "10glzyd4y3918pwp048pc1y7y7fa34fkqckn1nbys841dbssmay0";
name = "clojure-quick-repls";
};
@@ -7546,7 +7704,7 @@
clojure-snippets = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, yasnippet }:
melpaBuild {
pname = "clojure-snippets";
- version = "20160305.1502";
+ version = "20160305.802";
src = fetchFromGitHub {
owner = "mpenet";
repo = "clojure-snippets";
@@ -7554,7 +7712,7 @@
sha256 = "08sswxmrb94an95cjxxcppn3f8gvy99jdr4cbwlwk2yswdrxdlg0";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/clojure-snippets";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/4898fc6746b30b0d0453b3b56d02479bfb0f70b9/recipes/clojure-snippets";
sha256 = "15622mdd6b3fpwp22d32p78yap08pyscs2vc83sv1xz4338i0lij";
name = "clojure-snippets";
};
@@ -7567,7 +7725,7 @@
clomacs = callPackage ({ cider, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "clomacs";
- version = "20160513.1053";
+ version = "20160513.353";
src = fetchFromGitHub {
owner = "clojure-emacs";
repo = "clomacs";
@@ -7575,7 +7733,7 @@
sha256 = "0wc2zv4xirw3whpgrdhw156mz0m6had3nwk1xm1zswzblkgv754w";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/clomacs";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/345f9797e87e3f5f957c167a5e3d33d1e31b50a3/recipes/clomacs";
sha256 = "1vfjzrzp58ap75i0dh5bwnlkb8qbpfmrd3fg9n6aaibvvd2m3hyh";
name = "clomacs";
};
@@ -7588,7 +7746,7 @@
closql = callPackage ({ emacs, emacsql-sqlite, fetchFromGitLab, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "closql";
- version = "20160416.416";
+ version = "20160415.2116";
src = fetchFromGitLab {
owner = "tarsius";
repo = "closql";
@@ -7596,7 +7754,7 @@
sha256 = "1p251vyh8fc6xzaf0v7yvf4wkrvcfjdb3qr88ll4xcb61gj3vi3a";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/closql";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/c97468a71910ba6709792c060c1fb714004e24da/recipes/closql";
sha256 = "0a8fqw8n03x9mygvzb95m8mmfqp3j8hynwafvryjsl0np0695b6l";
name = "closql";
};
@@ -7609,7 +7767,7 @@
closure-lint-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "closure-lint-mode";
- version = "20101118.2224";
+ version = "20101118.1524";
src = fetchFromGitHub {
owner = "r0man";
repo = "closure-lint-mode";
@@ -7617,7 +7775,7 @@
sha256 = "0v0wdq0b5jz4x0d7dl3ilgf3aqp2hk375db366ij6gxwd0b9i3na";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/closure-lint-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/a6da3640b72496e2b32e6ed21aa39df87af9f7f3/recipes/closure-lint-mode";
sha256 = "1xmi1gjgayd5xbm3xx721xv57ns3x56r8ps94zpwyf2znpdchqfy";
name = "closure-lint-mode";
};
@@ -7630,7 +7788,7 @@
cloud-to-butt-erc = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "cloud-to-butt-erc";
- version = "20130628.108";
+ version = "20130627.1808";
src = fetchFromGitHub {
owner = "leathekd";
repo = "cloud-to-butt-erc";
@@ -7638,7 +7796,7 @@
sha256 = "07kvnb6p35swkyj92c4wymsqq4r2885wdpqhv7nhicvi6n658kpf";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/cloud-to-butt-erc";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/b12354152cce6e9a281dc26018c763b6f93e3cee/recipes/cloud-to-butt-erc";
sha256 = "061mmw39dq8sqzi2589lf7svy15n2iyiwbfiram48r2yhma5dd0f";
name = "cloud-to-butt-erc";
};
@@ -7651,7 +7809,7 @@
clues-theme = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "clues-theme";
- version = "20140923.556";
+ version = "20140922.2256";
src = fetchFromGitHub {
owner = "jasonm23";
repo = "emacs-clues-theme";
@@ -7659,7 +7817,7 @@
sha256 = "0fnl3b62clg9llcs2l511sxp4yishan4pqk45sqp8ih4rdzvy7ar";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/clues-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/bf43125306df445ac829c2edb98dd608bc1407de/recipes/clues-theme";
sha256 = "12g7373js5a2fa0m396k9kjhxvx3qws7n1r435nr9zgwaw7xvciy";
name = "clues-theme";
};
@@ -7672,7 +7830,7 @@
cm-mode = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "cm-mode";
- version = "20160310.1729";
+ version = "20160310.1029";
src = fetchFromGitHub {
owner = "joostkremers";
repo = "criticmarkup-emacs";
@@ -7680,7 +7838,7 @@
sha256 = "1rwln3ms71fys3rdv3sx8w706aqn874im3kqcfrkxz86wiazm2d5";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/cm-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/42dda804ec0c7338c39c57eec6ba479609a38555/recipes/cm-mode";
sha256 = "1rgfpxbnp8wiq9j8aywm2n07rxzkhqljigwynrkyvrnsgxlq2a9x";
name = "cm-mode";
};
@@ -7693,7 +7851,7 @@
cmake-font-lock = callPackage ({ cmake-mode, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "cmake-font-lock";
- version = "20150828.2227";
+ version = "20150828.1527";
src = fetchFromGitHub {
owner = "Lindydancer";
repo = "cmake-font-lock";
@@ -7701,7 +7859,7 @@
sha256 = "030kg3m546gcm6cf1k928ld51znsfrzhlpm005dvqap3gkcrg4sf";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/cmake-font-lock";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/383a7f191c10916ad40284fba94f967765ffeb7e/recipes/cmake-font-lock";
sha256 = "0ws4kd94m8fh55d7whsf3rj9qrxjp1wsgxh0valsjxyp2ck9zrz0";
name = "cmake-font-lock";
};
@@ -7714,15 +7872,15 @@
cmake-ide = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, levenshtein, lib, melpaBuild, seq }:
melpaBuild {
pname = "cmake-ide";
- version = "20160531.918";
+ version = "20160701.1337";
src = fetchFromGitHub {
owner = "atilaneves";
repo = "cmake-ide";
- rev = "e693fd876cc9063c45485cd0fbf6de0a188533a9";
- sha256 = "1d2qlx7fqhiwnxlf5sy4331brcv9m1g29pwcylpw627b7jp0xhm0";
+ rev = "a2e476ad42e61075cae9beb35fb83e3c1bf8619e";
+ sha256 = "0n169i4y2c450bk5r284bakjk3hsg74pply5fqxvdm6p5p1z2vr1";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/cmake-ide";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/17e8a8a5205d222950dc8e9245549a48894b864a/recipes/cmake-ide";
sha256 = "0xvy7l80zw67jgvk1rkhwzjvsqjqckmd8zj6s67rgbm56z6ypmcg";
name = "cmake-ide";
};
@@ -7735,15 +7893,15 @@
cmake-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "cmake-mode";
- version = "20160510.2040";
+ version = "20160510.1340";
src = fetchFromGitHub {
owner = "Kitware";
repo = "CMake";
- rev = "6a22a7cf71c0f564a150717a31651f9730c808fc";
- sha256 = "1rdparszanp9c4041d3q9naaa2mghqsqqr42lm8l3k4fvzbjrmia";
+ rev = "a24cd6525ad656901b663f4d7bc0990db4c8c8ec";
+ sha256 = "105jax6crchfclf5ys5smccia0rzvwy5bsyb9ldv7x6y1lwlhv1n";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/cmake-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/598723893ae4bc2e60f527a072efe6ed9d4e2488/recipes/cmake-mode";
sha256 = "0zbn8syb5lw5xp1qcy3qcl75zfiyik30xvqyl38gdqddm9h7qmz7";
name = "cmake-mode";
};
@@ -7756,7 +7914,7 @@
cmake-project = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "cmake-project";
- version = "20150720.2259";
+ version = "20150720.1559";
src = fetchFromGitHub {
owner = "alamaison";
repo = "emacs-cmake-project";
@@ -7764,7 +7922,7 @@
sha256 = "0fyzi8xac80wnhnwwm1j6yxpvpg1n4diq2lcl3qkj8klvk5gpxr6";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/cmake-project";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/0857c4db1027981ea73bc32bcaa15e5df53edea3/recipes/cmake-project";
sha256 = "13n6j9ljvzjzkknbm9zkhxljcn12avl39gxqq95hah44dr11rns3";
name = "cmake-project";
};
@@ -7776,13 +7934,13 @@
}) {};
cmds-menu = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild {
pname = "cmds-menu";
- version = "20151231.2130";
+ version = "20151231.1430";
src = fetchurl {
url = "https://www.emacswiki.org/emacs/download/cmds-menu.el";
sha256 = "13r8pjxknsfd6ywzlgcy4bm7fvr768ba34k6b7y365y3c1asz6y3";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/cmds-menu";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/de6366e4b3e72a5e68b960d6bf4bab2683ad6800/recipes/cmds-menu";
sha256 = "12s75y9d75cxqgg3hj0s4w0d10zy8y230b5gy09685ab5lcajfks";
name = "cmds-menu";
};
@@ -7795,7 +7953,7 @@
cmm-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "cmm-mode";
- version = "20150225.846";
+ version = "20150225.146";
src = fetchFromGitHub {
owner = "bgamari";
repo = "cmm-mode";
@@ -7803,7 +7961,7 @@
sha256 = "0xdcw329d2gssx86iajwrgpr7yv69b9nflmzjgb4jvg4pskj4pgx";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/cmm-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/07579854200302cf69e120648f4983961e628f7d/recipes/cmm-mode";
sha256 = "184b8x19cnvx8z4dr9alv62wchzc7vr7crzz8jiyqw9d544zs50h";
name = "cmm-mode";
};
@@ -7816,7 +7974,7 @@
cn-outline = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "cn-outline";
- version = "20100321.1714";
+ version = "20100321.1114";
src = fetchFromGitHub {
owner = "mori-dev";
repo = "cn-outline";
@@ -7824,7 +7982,7 @@
sha256 = "1635k51ppivq6v2702fihq8dvi33445smds9zhqm0drnpv9rv5cr";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/cn-outline";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/bf843cbcfc5806d9089000f08c72433dc8c12e17/recipes/cn-outline";
sha256 = "0cw1rr56hdngvhmx59j76hvkfzgybasn0fwhd6vwm709jqiiiwiz";
name = "cn-outline";
};
@@ -7837,7 +7995,7 @@
cobra-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "cobra-mode";
- version = "20140116.2216";
+ version = "20140116.1516";
src = fetchFromGitHub {
owner = "Nekroze";
repo = "cobra-mode";
@@ -7845,7 +8003,7 @@
sha256 = "1sx8grp3j7zcma3nb7zj6kijkdqx166vw1qgmm29hvx48bys6vlp";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/cobra-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/e986942c391f50fb633097f2f31969a8aeecb99e/recipes/cobra-mode";
sha256 = "11jscpbclxlq2xqy2nsfa4y575bp8h0kpkp8cfjqb05lm5ybcp89";
name = "cobra-mode";
};
@@ -7858,7 +8016,7 @@
code-library = callPackage ({ fetchFromGitHub, fetchurl, gist, lib, melpaBuild }:
melpaBuild {
pname = "code-library";
- version = "20160426.1418";
+ version = "20160426.718";
src = fetchFromGitHub {
owner = "lujun9972";
repo = "code-library";
@@ -7866,7 +8024,7 @@
sha256 = "0gc56pdyzcnv3q1a82c79i8w58q9r6ccfix9s1s6msjxzxkznap5";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/code-library";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/197bdc508c4fd9712125553a108ca6c9fedcaefc/recipes/code-library";
sha256 = "0gi8lz2q0vis4nyziykq15jp3m3vykfwycbk6amhf1ybkn9k3ywj";
name = "code-library";
};
@@ -7879,7 +8037,7 @@
codebug = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "codebug";
- version = "20140929.2337";
+ version = "20140929.1637";
src = fetchFromGitHub {
owner = "shano";
repo = "emacs-codebug";
@@ -7887,7 +8045,7 @@
sha256 = "11v671c4338bsizbmm7ypp4x9s5hiwyddsg2ig6h157gfv2597pp";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/codebug";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/35cd654bd7b390518eb5ddca8842bdfcc9e9e6f1/recipes/codebug";
sha256 = "1cb2wvawp3wqslhgbmbw9xwcqgwfscqg0jfgqzi3nr42mjp9zgqj";
name = "codebug";
};
@@ -7900,7 +8058,7 @@
codesearch = callPackage ({ dash, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "codesearch";
- version = "20160111.1555";
+ version = "20160111.855";
src = fetchFromGitHub {
owner = "abingham";
repo = "codesearch.el";
@@ -7908,7 +8066,7 @@
sha256 = "0ch3naqp3ji0q4blpjfr1xbzgzxhw10h08y2akik96kk1pnkwism";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/codesearch";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/5aee771432c63fe2f0ec719ef000f2c5971947b5/recipes/codesearch";
sha256 = "0z7zvain9n0rm6bvrh3j7z275l32fmp46p4b33mizqd1y86w89nx";
name = "codesearch";
};
@@ -7921,7 +8079,7 @@
codic = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "codic";
- version = "20150926.1327";
+ version = "20150926.627";
src = fetchFromGitHub {
owner = "syohex";
repo = "emacs-codic";
@@ -7929,7 +8087,7 @@
sha256 = "14jcxrs3b02pbppvdsabr7c74i3c6d1lmd6l1p9dj8gv413pghsz";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/codic";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/acc9b816796b9f142c53f90593952b43c962d2d8/recipes/codic";
sha256 = "0fq2qfqhkd6injgl66vcpd61j67shl9xj260aj6cgb2nriq0jxgn";
name = "codic";
};
@@ -7942,7 +8100,7 @@
coffee-fof = callPackage ({ coffee-mode, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "coffee-fof";
- version = "20131012.1430";
+ version = "20131012.730";
src = fetchFromGitHub {
owner = "yasuyk";
repo = "coffee-fof";
@@ -7950,7 +8108,7 @@
sha256 = "010v886ak0rbbhqwxwj6m0mkgh19s232igy7wwbv07l2pdqszf3p";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/coffee-fof";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/9024e5a71c992509a1dea5f673a31b806d5e175e/recipes/coffee-fof";
sha256 = "02cqza46qp8y69jd33cg4nmcgvrpwz23vyxqnmzwwvlmnbky96yc";
name = "coffee-fof";
};
@@ -7963,7 +8121,7 @@
coffee-mode = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "coffee-mode";
- version = "20160520.1046";
+ version = "20160520.346";
src = fetchFromGitHub {
owner = "defunkt";
repo = "coffee-mode";
@@ -7971,7 +8129,7 @@
sha256 = "10l7as2z903y5bgqb4zr203rx254l62wrn9zx9863p7vzw1yhbpd";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/coffee-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/cae2ac3513e371a256be0f1a7468e38e686c2487/recipes/coffee-mode";
sha256 = "1px50hs0x30psa5ljndpcc22c0qwcaxslpjf28cfgxinawnp74g1";
name = "coffee-mode";
};
@@ -7984,13 +8142,13 @@
col-highlight = callPackage ({ fetchurl, lib, melpaBuild, vline }:
melpaBuild {
pname = "col-highlight";
- version = "20151231.2133";
+ version = "20151231.1433";
src = fetchurl {
url = "https://www.emacswiki.org/emacs/download/col-highlight.el";
sha256 = "1fpkymmgv58b734d2rr7cfj2j2if1qkwgrpk3yp2ibw2n2567y0s";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/col-highlight";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/2a16dca0068d9d4f25ad6b699ec8cb8da6ba17e5/recipes/col-highlight";
sha256 = "1kycjdlrg7a5x37b0pzqhg56yn7kaisryrk303qx1084kwq9464i";
name = "col-highlight";
};
@@ -8003,7 +8161,7 @@
colemak-evil = callPackage ({ evil, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "colemak-evil";
- version = "20140509.112";
+ version = "20140508.1812";
src = fetchFromGitHub {
owner = "patbl";
repo = "colemak-evil";
@@ -8011,7 +8169,7 @@
sha256 = "0jjj1miwc7hw2fbb1fnmfnydim81djswla8iy4waam9014yraqci";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/colemak-evil";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/0f0750a3f9537782ee61d6e56c51ce7b86def12e/recipes/colemak-evil";
sha256 = "1bfzs5px1k6g3cnwjdaq2m78bbnfy3lxhjzkcch7zdv3nyacwl5z";
name = "colemak-evil";
};
@@ -8024,7 +8182,7 @@
colonoscopy-theme = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "colonoscopy-theme";
- version = "20141116.801";
+ version = "20141116.101";
src = fetchFromGitHub {
owner = "emacsfodder";
repo = "emacs-colonoscopy-theme";
@@ -8032,7 +8190,7 @@
sha256 = "1k3sd07ffgpfhzg7d9mb1gc3n02zsvilxc30bgiycbjrbjgqq0i6";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/colonoscopy-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/641d1959bd31598fcdacd39a3d1bb077dcccfa5c/recipes/colonoscopy-theme";
sha256 = "0x9bfr4j0sp41jkgnyjlaxnnjjrc102x6sznn6cgcmqk5qhswl4q";
name = "colonoscopy-theme";
};
@@ -8045,7 +8203,7 @@
color-identifiers-mode = callPackage ({ dash, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "color-identifiers-mode";
- version = "20160519.2046";
+ version = "20160519.1346";
src = fetchFromGitHub {
owner = "ankurdave";
repo = "color-identifiers-mode";
@@ -8053,7 +8211,7 @@
sha256 = "1zwgyp65jivds9zvbp5k5q3gazffh3w0mvs739ddq93lkf165rwh";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/color-identifiers-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/5c735755e414fdf169aca5ec6f742533d21472e0/recipes/color-identifiers-mode";
sha256 = "1hxp8lzn7kfckn5ngxic6qiz3nbynilqlxhlq9k1n1llfg216gfq";
name = "color-identifiers-mode";
};
@@ -8066,7 +8224,7 @@
color-moccur = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "color-moccur";
- version = "20141223.135";
+ version = "20141222.1835";
src = fetchFromGitHub {
owner = "myuhe";
repo = "color-moccur.el";
@@ -8074,7 +8232,7 @@
sha256 = "1p1f30qz4nd5a8ym2iwrgp6vhws0dls2qlc0apblj9nj3b0ziv0x";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/color-moccur";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/19105272fd8def5c7b22bfe5eeed5212e6ccae9c/recipes/color-moccur";
sha256 = "17b9walfc5c9qfdvl9pcwb2gjikc3wxk1d3v878ckypmxd38vciq";
name = "color-moccur";
};
@@ -8087,14 +8245,14 @@
color-theme = callPackage ({ fetchbzr, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "color-theme";
- version = "20080305.934";
+ version = "20080305.234";
src = fetchbzr {
url = "http://bzr.savannah.gnu.org/r/color-theme/trunk";
rev = "57";
sha256 = "17bidzq9kiz250gal1fn9mg8gf8l749nz69z0awpc4x2222wxxiz";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/color-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/d49f86519b1340420a5ee587de77a3a6fa5791c3/recipes/color-theme";
sha256 = "1p4bjh8a9f6ixmwwnyjb520myk3bww1v9w6427za07v68m9cdh79";
name = "color-theme";
};
@@ -8107,7 +8265,7 @@
color-theme-approximate = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "color-theme-approximate";
- version = "20140228.536";
+ version = "20140227.2236";
src = fetchFromGitHub {
owner = "tungd";
repo = "color-theme-approximate";
@@ -8115,7 +8273,7 @@
sha256 = "1b0ymwszqsjcihcbfp7s4fjam983ixh3yb7sdc0rmqlyric1zwxq";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/color-theme-approximate";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/f10631b740eea56e7209d7e84f0da8613274ef1d/recipes/color-theme-approximate";
sha256 = "1wdnia9q42x7vky3ks555iic5s50g4mx7ss5ppaljvgxvbxyxqh1";
name = "color-theme-approximate";
};
@@ -8128,7 +8286,7 @@
color-theme-buffer-local = callPackage ({ color-theme, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "color-theme-buffer-local";
- version = "20151013.128";
+ version = "20151012.1828";
src = fetchFromGitHub {
owner = "vic";
repo = "color-theme-buffer-local";
@@ -8136,7 +8294,7 @@
sha256 = "0gvc9jy34a8wvzwjpmqhshbx2kpk6ckmdrdj5v00iya7c4afnckx";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/color-theme-buffer-local";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/e43060d80b3345ef4e8df9f5a9d66af8a44a9c41/recipes/color-theme-buffer-local";
sha256 = "1448rffyzn5k5mr31hwd28wlj7if7rp5sjlqcsvbxd2mnbgkgjz0";
name = "color-theme-buffer-local";
};
@@ -8149,7 +8307,7 @@
color-theme-modern = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "color-theme-modern";
- version = "20160412.346";
+ version = "20160411.2046";
src = fetchFromGitHub {
owner = "emacs-jp";
repo = "replace-colorthemes";
@@ -8157,7 +8315,7 @@
sha256 = "0apvqrva3f7valjrxpslln8460kpr82z4zazj3lg3j82k102zla9";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/color-theme-modern";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/2db82e101916d8709b711034da5ca6e4072e1077/recipes/color-theme-modern";
sha256 = "0f662ham430fgxpqw96zcl1whcm28cv710g6wvg4fma60sblaxcm";
name = "color-theme-modern";
};
@@ -8170,7 +8328,7 @@
color-theme-sanityinc-solarized = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "color-theme-sanityinc-solarized";
- version = "20160430.403";
+ version = "20160429.2103";
src = fetchFromGitHub {
owner = "purcell";
repo = "color-theme-sanityinc-solarized";
@@ -8178,7 +8336,7 @@
sha256 = "0cw1al8dan7vglkm33wkznvmyma903ckd95l1ns6qmf1d55lnpig";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/color-theme-sanityinc-solarized";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/cae2ac3513e371a256be0f1a7468e38e686c2487/recipes/color-theme-sanityinc-solarized";
sha256 = "0xg79hgb893f1nqx6q4q6hp4w6rvgp1aah1v2r3scg2jk057qxkf";
name = "color-theme-sanityinc-solarized";
};
@@ -8191,15 +8349,15 @@
color-theme-sanityinc-tomorrow = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "color-theme-sanityinc-tomorrow";
- version = "20160601.1314";
+ version = "20160601.614";
src = fetchFromGitHub {
owner = "purcell";
repo = "color-theme-sanityinc-tomorrow";
- rev = "58128341c05b1d7183e659c0a4c9b32d5905b05e";
- sha256 = "00clabn9sckvrj0lnpmc5iarqzl34048b3w1qmmlhkgzc0qb4isx";
+ rev = "67efc9c4363a171498bd9fc44361c4f8e23031b1";
+ sha256 = "1cnr8rkyibba1y3lf4fhldh429nnfx14s5qnx839ybzffk666mgq";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/color-theme-sanityinc-tomorrow";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/cae2ac3513e371a256be0f1a7468e38e686c2487/recipes/color-theme-sanityinc-tomorrow";
sha256 = "1k8iwjc7iidq5sxybs47rnswa6c5dwqfdzfw7w0by2h1id2z6nqd";
name = "color-theme-sanityinc-tomorrow";
};
@@ -8212,15 +8370,15 @@
color-theme-solarized = callPackage ({ color-theme, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "color-theme-solarized";
- version = "20160219.1824";
+ version = "20160626.943";
src = fetchFromGitHub {
owner = "sellout";
repo = "emacs-color-theme-solarized";
- rev = "890e5a3dd19b8c0d44de7e3a089bc6f1322fbb1e";
- sha256 = "1yn0wacicf218212d9qgn67pf16i7x6bih67zdfcplq4i9lqbpg3";
+ rev = "797229d0d3c9a2233fd8c69c0c2d9948be1d0685";
+ sha256 = "1mx4948qdbwg93261bxr0k5cjx05ws7c3cmhrv6znvjzp6gqxlcl";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/color-theme-solarized";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/17096b452740bf6b7afa38e62df8e623494aa6b2/recipes/color-theme-solarized";
sha256 = "011rzq38ffmq7f2nzwrq96wwz67p82p1f0p5nib4nwqa47xlx7kf";
name = "color-theme-solarized";
};
@@ -8233,7 +8391,7 @@
colorsarenice-theme = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "colorsarenice-theme";
- version = "20150421.2236";
+ version = "20150421.1536";
src = fetchFromGitHub {
owner = "Fanael";
repo = "colorsarenice-theme";
@@ -8241,7 +8399,7 @@
sha256 = "18hzm7yzwlfjlbkx46rgdl31p9xyfqnxlvg8337h2bicpks7kjia";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/colorsarenice-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/3ac373bc7d1c4d3e49523d587d279968995e164c/recipes/colorsarenice-theme";
sha256 = "09zlglldjbjr97clwyzyz7c0k8hswclnk2zbkm03nnn9n9yyg2qi";
name = "colorsarenice-theme";
};
@@ -8254,7 +8412,7 @@
column-enforce-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "column-enforce-mode";
- version = "20140902.1849";
+ version = "20140902.1149";
src = fetchFromGitHub {
owner = "jordonbiondo";
repo = "column-enforce-mode";
@@ -8262,7 +8420,7 @@
sha256 = "0ay4wrnyrdp4v3vjxr99hy8fpq6zsyh246c0gbp7bh63l5fx8nwr";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/column-enforce-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/91bebef8e97665a5d076c557d559367911a25ea2/recipes/column-enforce-mode";
sha256 = "1qh7kwr65spbbnzvq744gkksx50x04zs0nwn5ly60swc05d05lcg";
name = "column-enforce-mode";
};
@@ -8274,13 +8432,13 @@
}) {};
column-marker = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild {
pname = "column-marker";
- version = "20121128.943";
+ version = "20121128.243";
src = fetchurl {
url = "https://www.emacswiki.org/emacs/download/column-marker.el";
sha256 = "05bv198zhqw5hqq6cr11mhz02dpca74hhp1ycwq369m0yb2naxy9";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/column-marker";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/5f629b6b44fae3191f58e007c39b75bbb880d517/recipes/column-marker";
sha256 = "1xgfsiw46aib2vb9bbjlgnhcgfnlfhdcxd0cl0jqj4fjfxzbz0bq";
name = "column-marker";
};
@@ -8293,7 +8451,7 @@
command-log-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "command-log-mode";
- version = "20160413.647";
+ version = "20160412.2347";
src = fetchFromGitHub {
owner = "lewang";
repo = "command-log-mode";
@@ -8301,7 +8459,7 @@
sha256 = "06hll2frlx4sg9fj13a7ipq9y24isbjkjm6034xswhak40m7g1ii";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/command-log-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/8426ca3c543178018f7feae6f0076af67a898483/recipes/command-log-mode";
sha256 = "11jq6055bvpwvrm0b8cgab25wa2mcyylpz4j56h1nqj7cnhb6ppj";
name = "command-log-mode";
};
@@ -8314,7 +8472,7 @@
command-queue = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "command-queue";
- version = "20160328.1925";
+ version = "20160328.1225";
src = fetchFromGitHub {
owner = "Yuki-Inoue";
repo = "command-queue";
@@ -8322,7 +8480,7 @@
sha256 = "0216hzdl4h1jssw5g2y95z4yx7abqsaxpk1s78r35w5cnx7kplrc";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/command-queue";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/8fd6a70036e88039c850d280fbac782d04790a5f/recipes/command-queue";
sha256 = "1jaywdg8vcf1v6ayy1zd5mjs0x3s96845ig9ssb08397lfqasx1k";
name = "command-queue";
};
@@ -8335,7 +8493,7 @@
commander = callPackage ({ cl-lib ? null, dash, f, fetchFromGitHub, fetchurl, lib, melpaBuild, s }:
melpaBuild {
pname = "commander";
- version = "20140120.1952";
+ version = "20140120.1252";
src = fetchFromGitHub {
owner = "rejeep";
repo = "commander.el";
@@ -8343,7 +8501,7 @@
sha256 = "06y7ika4781gkh94ygdaz7a760s7ahrma6af6n7cqhgjyikz7lg1";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/commander";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/8b308e05dd85856addbc04a9438f5026803cebd7/recipes/commander";
sha256 = "17y0hg6a90hflgwn24ww23qmvc1alzivpipca8zvpf0nih4fl393";
name = "commander";
};
@@ -8356,7 +8514,7 @@
comment-dwim-2 = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "comment-dwim-2";
- version = "20150826.49";
+ version = "20150825.1749";
src = fetchFromGitHub {
owner = "remyferre";
repo = "comment-dwim-2";
@@ -8364,7 +8522,7 @@
sha256 = "0kzlv2my0cc7d3nki2rlm32nmb2nyjb38inmvlf13z0m2kybg2ps";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/comment-dwim-2";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/4ac6ac97875117013515a36c9a4452fbd6c0d74c/recipes/comment-dwim-2";
sha256 = "1w9w2a72ygsj5w47vjqcljajmmbz0mi8dhz5gjnpwxjwsr6fn6lj";
name = "comment-dwim-2";
};
@@ -8377,7 +8535,7 @@
commenter = callPackage ({ emacs, fetchFromGitHub, fetchurl, let-alist, lib, melpaBuild }:
melpaBuild {
pname = "commenter";
- version = "20160219.1727";
+ version = "20160219.1027";
src = fetchFromGitHub {
owner = "yuutayamada";
repo = "commenter";
@@ -8385,7 +8543,7 @@
sha256 = "1jwd3whag39qhzhbsfivzdlcr6vj37dv5ychkhmilw8v6dfdnpdb";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/commenter";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/437afab17b22c0c559617afa06923b5bc73a3ae8/recipes/commenter";
sha256 = "01bm8jbj6xw23nls4fps6zwjkgvcsjhmn3l3ncqd764kwhxdx8q3";
name = "commenter";
};
@@ -8398,7 +8556,7 @@
commify = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, s }:
melpaBuild {
pname = "commify";
- version = "20151110.1038";
+ version = "20151110.338";
src = fetchFromGitHub {
owner = "ddoherty03";
repo = "commify";
@@ -8406,7 +8564,7 @@
sha256 = "04bma9sdn7h8fjz62wlcwayzhr7lvzhidh48wc5rk195zlbgagwa";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/commify";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/fec4b048e1dc78a07acce7d2e6527b9f417d06d5/recipes/commify";
sha256 = "1jc6iqa4hna3277hx13scfcqzkr43yv6gndbxv7qf4ydi01ysd0m";
name = "commify";
};
@@ -8419,7 +8577,7 @@
common-lisp-snippets = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, yasnippet }:
melpaBuild {
pname = "common-lisp-snippets";
- version = "20160531.1803";
+ version = "20160531.1103";
src = fetchFromGitHub {
owner = "mrkkrp";
repo = "common-lisp-snippets";
@@ -8427,7 +8585,7 @@
sha256 = "0iz5fgcp542hx26q6vmycfrfxyn58yjkdjr6zfn3mzhmxssaf1rc";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/common-lisp-snippets";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/48d0166ccd3dcdd3df4719349778c6c5ab6872ca/recipes/common-lisp-snippets";
sha256 = "0ig8cz00cbfx0jckqk1xhsvm18ivl2mjvcn65s941nblsywfvxjl";
name = "common-lisp-snippets";
};
@@ -8440,15 +8598,15 @@
company = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "company";
- version = "20160523.335";
+ version = "20160626.2103";
src = fetchFromGitHub {
owner = "company-mode";
repo = "company-mode";
- rev = "2d9bf1e9ce40c7670a39fce8ee7d0ffe1ff2fbc7";
- sha256 = "083z3ssf76bw53bimai9ziaj2g3pl2mzjc40varkyqz02jz2m2mw";
+ rev = "d3032e237e7b4f732ccc351908d2e5280919af67";
+ sha256 = "1fykd5gmi4h81pkm8faavfli2h0k627qqjs0c1i0056cchhivgi5";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/company";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/96e7b4184497d0d0db532947f2801398b72432e4/recipes/company";
sha256 = "0v4x038ly970lkzb0n8fbqssfqwx1p46xldr7nss32jiqvavr4m4";
name = "company";
};
@@ -8461,7 +8619,7 @@
company-anaconda = callPackage ({ anaconda-mode, cl-lib ? null, company, dash, fetchFromGitHub, fetchurl, lib, melpaBuild, s }:
melpaBuild {
pname = "company-anaconda";
- version = "20160509.1317";
+ version = "20160509.617";
src = fetchFromGitHub {
owner = "proofit404";
repo = "company-anaconda";
@@ -8469,7 +8627,7 @@
sha256 = "1vkh0angvi9aqfbn2n1f2kq9myq0zw0dk19hqb5x6gxxd5s8l7hb";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/company-anaconda";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/0eb23a75c8b57b4af1737c0508f03e66430e6076/recipes/company-anaconda";
sha256 = "1s7y47ghy7q35qpfqavh4p9wr91i6r579mdbpvv6h5by856yn4gl";
name = "company-anaconda";
};
@@ -8482,7 +8640,7 @@
company-ansible = callPackage ({ company, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "company-ansible";
- version = "20150901.1150";
+ version = "20150901.450";
src = fetchFromGitHub {
owner = "krzysztof-magosa";
repo = "company-ansible";
@@ -8490,7 +8648,7 @@
sha256 = "06gh33qzglv40r62dsapzhxwparw8ciblv80g7h6y6ilyazwcidn";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/company-ansible";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/7b44cd4bd9f9a7c942ca3f3bd88b2ce61ffff130/recipes/company-ansible";
sha256 = "084l9dr2hvm00952y4m3jhchzxjhcd61sfn5ywj9b9a1d4sr110d";
name = "company-ansible";
};
@@ -8503,7 +8661,7 @@
company-arduino = callPackage ({ arduino-mode, cl-lib ? null, company, company-c-headers, company-irony, emacs, fetchFromGitHub, fetchurl, irony, lib, melpaBuild }:
melpaBuild {
pname = "company-arduino";
- version = "20160306.1839";
+ version = "20160306.1139";
src = fetchFromGitHub {
owner = "yuutayamada";
repo = "company-arduino";
@@ -8511,7 +8669,7 @@
sha256 = "08766m35s0r2fyv32y0h3sns9d5jykbgg24d2z8czklnc8hay7jc";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/company-arduino";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/45350f816c4f5249792d29f97ef91f8c0685b983/recipes/company-arduino";
sha256 = "1bch447lllikip1xd90kdgssgc67sl04a70fxqkqlrc1bs6gkkws";
name = "company-arduino";
};
@@ -8532,7 +8690,7 @@
company-auctex = callPackage ({ auctex, company, fetchFromGitHub, fetchurl, lib, melpaBuild, yasnippet }:
melpaBuild {
pname = "company-auctex";
- version = "20151102.1543";
+ version = "20151102.843";
src = fetchFromGitHub {
owner = "alexeyr";
repo = "company-auctex";
@@ -8540,7 +8698,7 @@
sha256 = "0mkyg9y1rhl6hdzhr51psnvy2q0zw4y29m9p0ivb7s643k3fjjp5";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/company-auctex";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/189e1a60894db0787a4468b120fbab84be1b5d59/recipes/company-auctex";
sha256 = "1jia80sqmm83kzjcf1h1d9iz2k4k9albzvfka5hx6hpa4h8nm5q4";
name = "company-auctex";
};
@@ -8553,7 +8711,7 @@
company-c-headers = callPackage ({ company, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "company-c-headers";
- version = "20150801.1801";
+ version = "20150801.1101";
src = fetchFromGitHub {
owner = "randomphrase";
repo = "company-c-headers";
@@ -8561,7 +8719,7 @@
sha256 = "0jh2j260x1smlm4362dvgfpfpba7kg6hqvszjirc6mpm74zdcnp8";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/company-c-headers";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/d97b5c53967e0ff767b3654c52622f4b5ddf1985/recipes/company-c-headers";
sha256 = "1715vnjr5cjiq8gjcd3idnpnijg5cg3sw3f8gr5x2ixcrip1hx3a";
name = "company-c-headers";
};
@@ -8574,7 +8732,7 @@
company-cabal = callPackage ({ cl-lib ? null, company, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "company-cabal";
- version = "20151216.1620";
+ version = "20151216.920";
src = fetchFromGitHub {
owner = "iquiw";
repo = "company-cabal";
@@ -8582,7 +8740,7 @@
sha256 = "0ll9dxzsgrpy4psz3dqhzny990lfccn63swcyfvl8mnqgwbrq8k0";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/company-cabal";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/ee888b1ba57b6af3a3330607898810cd248862db/recipes/company-cabal";
sha256 = "0pbjidj88c9qri6xw8023yqwnczad5ig224cbsz6vsmdla2nlxra";
name = "company-cabal";
};
@@ -8595,15 +8753,15 @@
company-coq = callPackage ({ cl-lib ? null, company, company-math, dash, fetchFromGitHub, fetchurl, lib, melpaBuild, yasnippet }:
melpaBuild {
pname = "company-coq";
- version = "20160316.1914";
+ version = "20160623.1811";
src = fetchFromGitHub {
owner = "cpitclaudel";
repo = "company-coq";
- rev = "43d96b0148661e52b982728765b99bbcbda6974b";
- sha256 = "0lnb3qf1xhb0nbqy6ry0bkz2xrzfgkvavb7a3cbllawyz5idhfg5";
+ rev = "851ceb63957d88ea8ecd517526c512cab79f8160";
+ sha256 = "0cqdhvxwy1dg26fgx5xvwalbl79sxmmmaic9ycqwwwsi5fihx7r9";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/company-coq";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/7f89e3097c654774981953ef125679fec0b5b7c9/recipes/company-coq";
sha256 = "1iagm07ckf60kg4i8m4n0gfmv0brqc4dcn7lkcz229r3f4kyqksa";
name = "company-coq";
};
@@ -8616,15 +8774,15 @@
company-dcd = callPackage ({ cl-lib ? null, company, fetchFromGitHub, fetchurl, flycheck-dmd-dub, helm, lib, melpaBuild, popwin, yasnippet }:
melpaBuild {
pname = "company-dcd";
- version = "20160407.548";
+ version = "20160617.746";
src = fetchFromGitHub {
owner = "tsukimizake";
repo = "company-dcd";
- rev = "8448d1871bcd799d31b6db0cafdfb0a157980195";
- sha256 = "0jkshkh44cgahpz2d7lrwfyl4kmhinivlbp08yn4zz6hpcvz87x9";
+ rev = "37b2f7d32b8f580890ff508067eb1bac921bf40b";
+ sha256 = "1c0amrabq7czd3rs4gpgas0lb3i4mjz6j6lfxz63lmlsjwh43j4m";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/company-dcd";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/ad5be8c53911271fba03a88da7e9d518c6508ffe/recipes/company-dcd";
sha256 = "03849k4jzs23iglk9ghcq6283c9asffcq4dznypcjax7y4x113vd";
name = "company-dcd";
};
@@ -8644,7 +8802,7 @@
company-dict = callPackage ({ company, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, parent-mode }:
melpaBuild {
pname = "company-dict";
- version = "20160528.953";
+ version = "20160528.253";
src = fetchFromGitHub {
owner = "hlissner";
repo = "emacs-company-dict";
@@ -8652,7 +8810,7 @@
sha256 = "16ai8ljp0i75kby1knj7ldysd8s6kd6drmlh9ygyddxbi2i35x61";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/company-dict";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/212c077def5b4933c6001056132181e1a5850a7c/recipes/company-dict";
sha256 = "1377b40f1j4rmw7lnhy1zsm6r234ds5zsn02v1ajm3bzrpkkmin0";
name = "company-dict";
};
@@ -8665,7 +8823,7 @@
company-edbi = callPackage ({ cl-lib ? null, company, edbi, fetchFromGitHub, fetchurl, lib, melpaBuild, s }:
melpaBuild {
pname = "company-edbi";
- version = "20160221.2023";
+ version = "20160221.1323";
src = fetchFromGitHub {
owner = "proofit404";
repo = "company-edbi";
@@ -8673,7 +8831,7 @@
sha256 = "0n2hvrfbybsp57w6m9mm7ywjq30fwwx9bzc2rllfr06d2ms7naai";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/company-edbi";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/5d881ff0927d5bd7f8192f58927ceabb9bad4beb/recipes/company-edbi";
sha256 = "067ff1xdyqy4qzgk5pmqf4kksfjk1glkrslcj3rk4zmhcalwrfrm";
name = "company-edbi";
};
@@ -8686,7 +8844,7 @@
company-emoji = callPackage ({ cl-lib ? null, company, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "company-emoji";
- version = "20160401.141";
+ version = "20160331.1841";
src = fetchFromGitHub {
owner = "dunn";
repo = "company-emoji";
@@ -8694,7 +8852,7 @@
sha256 = "1ipknikwyd6h2w72s5sn32mfql4p2cmgv868n13r3wg42c619blq";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/company-emoji";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/5733dccdffe97911a30352fbcda2900c33d79810/recipes/company-emoji";
sha256 = "1mflqqw9gnfcqjb6g8ivdfl7s4mdyjg7j0457hamgyvgvpxsh8x3";
name = "company-emoji";
};
@@ -8707,7 +8865,7 @@
company-flx = callPackage ({ company, emacs, fetchFromGitHub, fetchurl, flx, lib, melpaBuild }:
melpaBuild {
pname = "company-flx";
- version = "20160424.213";
+ version = "20160423.1913";
src = fetchFromGitHub {
owner = "PythonNut";
repo = "company-flx";
@@ -8715,7 +8873,7 @@
sha256 = "1di3nndif2gkzwvs8bvqg994z422ql308lh47hbjdjnqm182mwy7";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/company-flx";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/f27d718ee67f8c91b208a35adbbcdac67bbb89ce/recipes/company-flx";
sha256 = "1r4jcfzrhdpclblfrmi4qbl8dnhc2d7d4c1425xnslg7bhwd2vxn";
name = "company-flx";
};
@@ -8728,7 +8886,7 @@
company-ghc = callPackage ({ cl-lib ? null, company, emacs, fetchFromGitHub, fetchurl, ghc, lib, melpaBuild }:
melpaBuild {
pname = "company-ghc";
- version = "20160315.1510";
+ version = "20160315.910";
src = fetchFromGitHub {
owner = "iquiw";
repo = "company-ghc";
@@ -8736,7 +8894,7 @@
sha256 = "1mc7y4j772x54n2wc2dskb5wjc46r7sg2jwyvmnj44cyaasxqmck";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/company-ghc";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/28f6a983444f796c81df7e5ee94d74c480b21298/recipes/company-ghc";
sha256 = "07adykza4dqs64bk8vjmgryr54khxmcy28hms5z8i1qpsk9vmvnn";
name = "company-ghc";
};
@@ -8749,7 +8907,7 @@
company-ghci = callPackage ({ company, fetchFromGitHub, fetchurl, haskell-mode, lib, melpaBuild }:
melpaBuild {
pname = "company-ghci";
- version = "20160311.300";
+ version = "20160310.2000";
src = fetchFromGitHub {
owner = "juiko";
repo = "company-ghci";
@@ -8757,7 +8915,7 @@
sha256 = "02gq083lpbszy8pf7s5j61bjlm0hacv4md4g17n0q6448rix9yny";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/company-ghci";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/a226f04b009780ebdf106534916869610d6f7264/recipes/company-ghci";
sha256 = "0h9hqfb8fm90h87bi3myl84nppbbminhnvv6jqg62qi9k6snn1iq";
name = "company-ghci";
};
@@ -8770,15 +8928,15 @@
company-go = callPackage ({ company, fetchFromGitHub, fetchurl, go-mode, lib, melpaBuild }:
melpaBuild {
pname = "company-go";
- version = "20160306.2255";
+ version = "20160306.1555";
src = fetchFromGitHub {
owner = "nsf";
repo = "gocode";
- rev = "15ca134d752c32e5eb27e2597cd2ee48f3a87639";
- sha256 = "120bdalz29b5lvl0iqg00da194ihrwwbbib8gjga8w5gnnscm6nx";
+ rev = "f535dc686130fcc7b942c504ce5903222a205ca3";
+ sha256 = "0d9xxrzd9vlfx6wpi48sypqi1czld0nc2bd39ac7zv115qv23nfh";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/company-go";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/04867a574773e8794335a2664d4f5e8b243f3ec9/recipes/company-go";
sha256 = "1ncy5wlg3ywr17zrxb1d1bap4gdvwr35w9a8b0crz5h3l3y4cp29";
name = "company-go";
};
@@ -8791,7 +8949,7 @@
company-inf-ruby = callPackage ({ company, emacs, fetchFromGitHub, fetchurl, inf-ruby, lib, melpaBuild }:
melpaBuild {
pname = "company-inf-ruby";
- version = "20140805.2254";
+ version = "20140805.1554";
src = fetchFromGitHub {
owner = "company-mode";
repo = "company-inf-ruby";
@@ -8799,7 +8957,7 @@
sha256 = "0fnv4rvvs9rqzrs86g23jcrpg0rcgk25299hm6jm08ia0kjjby1m";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/company-inf-ruby";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/ec0f597ceed00c68faa030ff0bc5676c513919f1/recipes/company-inf-ruby";
sha256 = "0cb1w0sxgb5jf0p2a5s2i4d511lsjjhyaqkqlwjz8nk4w14n0zxm";
name = "company-inf-ruby";
};
@@ -8812,15 +8970,15 @@
company-irony = callPackage ({ cl-lib ? null, company, emacs, fetchFromGitHub, fetchurl, irony, lib, melpaBuild }:
melpaBuild {
pname = "company-irony";
- version = "20160321.2203";
+ version = "20160613.1320";
src = fetchFromGitHub {
owner = "Sarcasm";
repo = "company-irony";
- rev = "c51b3997f0a847d971917a4401277bf283250021";
- sha256 = "15xv59c6pwdysr9hqvaj7jgsa9pnicy7cnn9dq53zngjh3f5mf83";
+ rev = "0eff012c6389d66668751454c08c7547017fe546";
+ sha256 = "0mmdh4f6v4jwxd1wdzj8z8m54cmc55n7mf9lv0gaccw5aid8cfza";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/company-irony";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/d2b6a8d57b192325dcd30fddc9ff8dd1516ad680/recipes/company-irony";
sha256 = "15adamk1b9y1i6k06i5ahf1wn70cgwlhgk0x6fk8pl5izg05z1km";
name = "company-irony";
};
@@ -8833,7 +8991,7 @@
company-irony-c-headers = callPackage ({ cl-lib ? null, company, fetchFromGitHub, fetchurl, irony, lib, melpaBuild }:
melpaBuild {
pname = "company-irony-c-headers";
- version = "20151018.1109";
+ version = "20151018.409";
src = fetchFromGitHub {
owner = "hotpxl";
repo = "company-irony-c-headers";
@@ -8841,7 +8999,7 @@
sha256 = "1x2dfjmy86icyv2g1y5bjlr87w8rixqdcndkwm1sba6ha277wp9i";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/company-irony-c-headers";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/9f9f62d8ef438a9ba4872bd7731768eddc5905de/recipes/company-irony-c-headers";
sha256 = "0kiag5ggmc2f5c3gd8nn40x16i686jpdrfrflgrz2aih8p3g6af8";
name = "company-irony-c-headers";
};
@@ -8854,7 +9012,7 @@
company-jedi = callPackage ({ cl-lib ? null, company, emacs, fetchFromGitHub, fetchurl, jedi-core, lib, melpaBuild }:
melpaBuild {
pname = "company-jedi";
- version = "20151217.421";
+ version = "20151216.2121";
src = fetchFromGitHub {
owner = "syohex";
repo = "emacs-company-jedi";
@@ -8862,7 +9020,7 @@
sha256 = "0bpqswcc6a65wms0pdk9rsad9jiigmx2l1jaqr8bz4va945qdlhg";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/company-jedi";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/bded1840a39fbf1e014c01276eb2f9c5a4fc218f/recipes/company-jedi";
sha256 = "1krrgrjq967c3j02y0i345yx6w4crisnj1k3bhih6j849fvy3fvj";
name = "company-jedi";
};
@@ -8875,7 +9033,7 @@
company-lua = callPackage ({ company, f, fetchFromGitHub, fetchurl, lib, lua-mode, melpaBuild, s }:
melpaBuild {
pname = "company-lua";
- version = "20160514.2320";
+ version = "20160514.1620";
src = fetchFromGitHub {
owner = "ptrv";
repo = "company-lua";
@@ -8883,7 +9041,7 @@
sha256 = "1fwb333p4yv02msx67p0n4bgzwa73d2zh78mwx79jani32m730ci";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/company-lua";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/c8191ab2aaa72041be46091e363d216cf1b73fde/recipes/company-lua";
sha256 = "13sm7ya2ndqxwdjarhxbmg7fvr3413c7p3n6yf1i4rabbliqsf2c";
name = "company-lua";
};
@@ -8896,7 +9054,7 @@
company-math = callPackage ({ company, fetchFromGitHub, fetchurl, lib, math-symbol-lists, melpaBuild }:
melpaBuild {
pname = "company-math";
- version = "20160229.1632";
+ version = "20160229.932";
src = fetchFromGitHub {
owner = "vspinu";
repo = "company-math";
@@ -8904,7 +9062,7 @@
sha256 = "1xsk02ymgj0gfblz2f6pzwh96crgx4m524ia6m95kcxrd7y63004";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/company-math";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/fadff01600d57f5b9ea9c0c47ed109e058114998/recipes/company-math";
sha256 = "0chig8k8l65bnd0a6734fiy0ikl20k9v2wlndh3ckz5a8h963g87";
name = "company-math";
};
@@ -8917,7 +9075,7 @@
company-nand2tetris = callPackage ({ cl-lib ? null, company, fetchFromGitHub, fetchurl, lib, melpaBuild, names, nand2tetris }:
melpaBuild {
pname = "company-nand2tetris";
- version = "20151027.2236";
+ version = "20151027.1636";
src = fetchFromGitHub {
owner = "CestDiego";
repo = "nand2tetris.el";
@@ -8925,7 +9083,7 @@
sha256 = "003zgkpzz9q0bkkw6psks0vbfikzikfm42myqk14xn7330vgcxz7";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/company-nand2tetris";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/90421372b3f60b59762279ac805c61a984606d11/recipes/company-nand2tetris";
sha256 = "1g2i33jjh7kbpzk835kbnqicf0w4cq5rqv934bqzz5kavj9cg886";
name = "company-nand2tetris";
};
@@ -8938,15 +9096,15 @@
company-ngram = callPackage ({ cl-lib ? null, company, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "company-ngram";
- version = "20160530.755";
+ version = "20160702.1133";
src = fetchFromGitHub {
owner = "kshramt";
repo = "company-ngram";
- rev = "15418f2551e1449ba3c1e74d7bb5260688961028";
- sha256 = "172aah6vnwsij6h8c668l0jrncmd9wszbf55bv3snnw80wnqikmr";
+ rev = "664da0e1f8a3c0eaff325a2a5856710984d73b4d";
+ sha256 = "0rj7vgjyibllnf3416lcqjy6zggphslghaz4c8jmqmjdkgl57529";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/company-ngram";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/937e6a23782450525c4a90392c414173481e101b/recipes/company-ngram";
sha256 = "1y9k9s8c248m91xld4f5l75j4swml333rpwq590bsx7mrsq131xx";
name = "company-ngram";
};
@@ -8959,7 +9117,7 @@
company-nixos-options = callPackage ({ cl-lib ? null, company, fetchFromGitHub, fetchurl, lib, melpaBuild, nixos-options }:
melpaBuild {
pname = "company-nixos-options";
- version = "20160215.957";
+ version = "20160215.257";
src = fetchFromGitHub {
owner = "travisbhartwell";
repo = "nix-emacs";
@@ -8967,7 +9125,7 @@
sha256 = "1r2qbd19kkqf70gq04jfpsrap75qcy359k3ian9rhapi8cj0n23w";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/company-nixos-options";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/6846c7d86e70a9dd8300b89b61435aa7e146be96/recipes/company-nixos-options";
sha256 = "1yrqqdadmf7qfxpqp8wwb325zjnwwjmn2hhnl7i3j0ckg6hqyqf0";
name = "company-nixos-options";
};
@@ -8977,10 +9135,31 @@
license = lib.licenses.free;
};
}) {};
+ company-php = callPackage ({ ac-php-core, cl-lib ? null, company, fetchFromGitHub, fetchurl, lib, melpaBuild }:
+ melpaBuild {
+ pname = "company-php";
+ version = "20160628.622";
+ src = fetchFromGitHub {
+ owner = "xcwen";
+ repo = "ac-php";
+ rev = "eacdc1b1c97322c786c0fb330b0dde3f7b40682e";
+ sha256 = "1kh5h55kf1lypysq585jd56jqcsga27658fnm1jwxylcgh8pi5sw";
+ };
+ recipeFile = fetchurl {
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/ac283f1b65c3ba6278e9d3236e5a19734e42b123/recipes/company-php";
+ sha256 = "1gnhklfkg17vxfx7fw65lr4nr07jx71y84mhs9zszwcr9p840hh5";
+ name = "company-php";
+ };
+ packageRequires = [ ac-php-core cl-lib company ];
+ meta = {
+ homepage = "https://melpa.org/#/company-php";
+ license = lib.licenses.free;
+ };
+ }) {};
company-qml = callPackage ({ company, fetchFromGitHub, fetchurl, lib, melpaBuild, qml-mode }:
melpaBuild {
pname = "company-qml";
- version = "20160213.12";
+ version = "20160212.1712";
src = fetchFromGitHub {
owner = "cute-jumper";
repo = "company-qml";
@@ -8988,7 +9167,7 @@
sha256 = "0sl59b9wwnpz6p2kxsc87b3q28vvfxg7pwk67c51q8qyrl0c1klv";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/company-qml";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/5b53477eaba4ef62f8317c9454e15ac015442fed/recipes/company-qml";
sha256 = "0sva7i93dam8mc2z3cp785vmgcg7cphrpkwyvqyqhq8w51qg8mxx";
name = "company-qml";
};
@@ -9001,7 +9180,7 @@
company-quickhelp = callPackage ({ company, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, pos-tip }:
melpaBuild {
pname = "company-quickhelp";
- version = "20160211.1618";
+ version = "20160211.918";
src = fetchFromGitHub {
owner = "expez";
repo = "company-quickhelp";
@@ -9009,7 +9188,7 @@
sha256 = "1b2v84ss5k43nnbsnvabgvb19ardsacbs1prn2h9i1k2d5mb8icw";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/company-quickhelp";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/022cc4fee54bb0194822947c70058145e2980b94/recipes/company-quickhelp";
sha256 = "042bwv0wd4hksbm528zb7pbllzk83p8qjq5f8z46p84c8mmxfp9g";
name = "company-quickhelp";
};
@@ -9019,22 +9198,22 @@
license = lib.licenses.free;
};
}) {};
- company-racer = callPackage ({ cl-lib ? null, company, deferred, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
+ company-racer = callPackage ({ cl-lib ? null, company, dash, deferred, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "company-racer";
- version = "20150629.433";
+ version = "20160613.1357";
src = fetchFromGitHub {
owner = "emacs-pe";
repo = "company-racer";
- rev = "c31f7cab8c2f9c376ff0bd48e56dbc30a32e4b00";
- sha256 = "1lk3fqsgbi6mg4hrpc9gy4hbfp9snyj4yvc0zh8iqqw5nx12dab4";
+ rev = "a81ac30dfc6beb6384994f366fcbc0dcb43fde01";
+ sha256 = "0yaaic78hq94hy8zrwm1l4dhmj1rn0n9p4a0fdp3mp46vwa8jz52";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/company-racer";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/c4671a674dbc1620a41e0ff99508892a25eec2ad/recipes/company-racer";
sha256 = "0zc8dzvsjz5qsrwhv7x9f7djzvb9awacc3pgjirsv8f8sp7p3am4";
name = "company-racer";
};
- packageRequires = [ cl-lib company deferred emacs ];
+ packageRequires = [ cl-lib company dash deferred emacs ];
meta = {
homepage = "https://melpa.org/#/company-racer";
license = lib.licenses.free;
@@ -9043,7 +9222,7 @@
company-restclient = callPackage ({ cl-lib ? null, company, emacs, fetchFromGitHub, fetchurl, know-your-http-well, lib, melpaBuild, restclient }:
melpaBuild {
pname = "company-restclient";
- version = "20151202.1301";
+ version = "20151202.601";
src = fetchFromGitHub {
owner = "iquiw";
repo = "company-restclient";
@@ -9051,7 +9230,7 @@
sha256 = "04829y7510zxjww9pq8afvnzwyyv30c0b3a71mxwf6ympfxb9rx5";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/company-restclient";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/3dd063bc3789772fdcc6a8555817588962e60825/recipes/company-restclient";
sha256 = "1md0n4k4wmbh9rmbwqh3kg2fj0c34rzqfd56jsq8lcdg14k0kdcb";
name = "company-restclient";
};
@@ -9070,7 +9249,7 @@
company-shell = callPackage ({ cl-lib ? null, company, dash, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "company-shell";
- version = "20160528.1407";
+ version = "20160528.707";
src = fetchFromGitHub {
owner = "Alexander-Miller";
repo = "company-shell";
@@ -9078,7 +9257,7 @@
sha256 = "0dfqc506zyljsl5xasvdq7ym5pfhd3r17kvz84mzgg34r1fd4b8d";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/company-shell";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/bbaa05d158f3806b9f79a2c826763166dbee56ca/recipes/company-shell";
sha256 = "0my9jghf3s4idkgrpki8mj1lm5ichfvznb09lfwf07fjhg0q1apz";
name = "company-shell";
};
@@ -9091,15 +9270,15 @@
company-sourcekit = callPackage ({ company, dash, dash-functional, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, sourcekit }:
melpaBuild {
pname = "company-sourcekit";
- version = "20160511.517";
+ version = "20160605.131";
src = fetchFromGitHub {
owner = "nathankot";
repo = "company-sourcekit";
- rev = "fa537304a0a6f90944d797ce58bc067603b6f987";
+ rev = "0c3ccf910e108b4a69d10b56853959a6cc352018";
sha256 = "0b0qs398kqy6jsq22hahmfrlb6v8v3bcdgi3z2kamczb0a5k0zhf";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/company-sourcekit";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/45969cd5cd936ea61fbef4722843b0b0092d7b72/recipes/company-sourcekit";
sha256 = "0hr5j1ginf43h4qf3fvsh3z53z0c7w5a9lhrvdwmlzj396qhqmzs";
name = "company-sourcekit";
};
@@ -9112,7 +9291,7 @@
company-tern = callPackage ({ cl-lib ? null, company, dash, dash-functional, fetchFromGitHub, fetchurl, lib, melpaBuild, s, tern }:
melpaBuild {
pname = "company-tern";
- version = "20160510.1551";
+ version = "20160510.851";
src = fetchFromGitHub {
owner = "proofit404";
repo = "company-tern";
@@ -9120,7 +9299,7 @@
sha256 = "0pdzr7sqpja3cr2mydx9b4813r1g9jilpin7n13sjbqyk8108xc6";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/company-tern";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/acc9b816796b9f142c53f90593952b43c962d2d8/recipes/company-tern";
sha256 = "17pw4jx3f1hymj6sc0ri18jz9ngggj4a41kxx14fnmmm8adqn6wh";
name = "company-tern";
};
@@ -9133,7 +9312,7 @@
company-try-hard = callPackage ({ company, dash, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "company-try-hard";
- version = "20150903.6";
+ version = "20150902.1706";
src = fetchFromGitHub {
owner = "Wilfred";
repo = "company-try-hard";
@@ -9141,7 +9320,7 @@
sha256 = "1isnk2i64kppsr23nr6qm5kwxxwcp4xazjwvm2chyzl4vbvp03p2";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/company-try-hard";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/d65c26aee15a27cbf27fa81110b607bf38099079/recipes/company-try-hard";
sha256 = "1rwn521dc8kxh43vcd3rf0h8jc53d4gmid3szj2msi0da1sk0mmj";
name = "company-try-hard";
};
@@ -9154,7 +9333,7 @@
company-web = callPackage ({ cl-lib ? null, company, dash, fetchFromGitHub, fetchurl, lib, melpaBuild, web-completion-data }:
melpaBuild {
pname = "company-web";
- version = "20160502.1558";
+ version = "20160502.858";
src = fetchFromGitHub {
owner = "osv";
repo = "company-web";
@@ -9162,7 +9341,7 @@
sha256 = "0pjxahrhvz7l45whqlgm6n4mvqqxc8zs1dv33p3b498hyb83f52j";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/company-web";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/2cda69dc7d45087fa9a3e0460d2b12a1dce1a7b3/recipes/company-web";
sha256 = "0dj0m6wcc8cyvblp9b5b3am95gc18j9y4va44hvljxv1h7l5hhvy";
name = "company-web";
};
@@ -9175,7 +9354,7 @@
company-ycm = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, ycm }:
melpaBuild {
pname = "company-ycm";
- version = "20140904.2017";
+ version = "20140904.1317";
src = fetchFromGitHub {
owner = "neuromage";
repo = "ycm.el";
@@ -9183,7 +9362,7 @@
sha256 = "0znchya89zzk30mwl4qfm0q9sfa5m3jspapb892ydj0mck5n4nyj";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/company-ycm";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/44e168f757cb51249db2deb9f781eff99cf6fb7c/recipes/company-ycm";
sha256 = "1q4d63c7nr3g7q0smd55pp636vqa9lf1pkwjn9iq265369npvina";
name = "company-ycm";
};
@@ -9196,15 +9375,15 @@
company-ycmd = callPackage ({ company, dash, deferred, fetchFromGitHub, fetchurl, let-alist, lib, melpaBuild, s, ycmd }:
melpaBuild {
pname = "company-ycmd";
- version = "20160504.802";
+ version = "20160624.1023";
src = fetchFromGitHub {
owner = "abingham";
repo = "emacs-ycmd";
- rev = "69ef8e615ae64b49e6955adfafd12037df01cd9f";
- sha256 = "18v546yq65sf75a46k7slqh5dz12ifh30linm0m9gv65yrjpv02j";
+ rev = "a9cb3a6893cff7059058f25f06e75d38584084f1";
+ sha256 = "03vfg56qmj68y702c94p914fqrx68szykj8nm12d26p0rjnky2b8";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/company-ycmd";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/1138c8cc239183a2435ce8c1a6df5163e5fed2ea/recipes/company-ycmd";
sha256 = "0fqmkb0q8ai605jzn2kwd585b2alwxbmnb3yqnn9fgkcvyc9f0pk";
name = "company-ycmd";
};
@@ -9217,7 +9396,7 @@
composable = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "composable";
- version = "20160519.1957";
+ version = "20160519.1257";
src = fetchFromGitHub {
owner = "paldepind";
repo = "composable.el";
@@ -9225,7 +9404,7 @@
sha256 = "0phqphcgygy2amwy6lm96mxxhwac03p177lyklksy71gwlr3zxb5";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/composable";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/1fc0f076198e4be46a33a26eea9f2d273dda12b8/recipes/composable";
sha256 = "1fs4pczjn9sv12sladf6zbkz0cmzxr0jaqkiwryydal1l5nqqxcy";
name = "composable";
};
@@ -9238,7 +9417,7 @@
concurrent = callPackage ({ deferred, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "concurrent";
- version = "20160110.546";
+ version = "20160109.2246";
src = fetchFromGitHub {
owner = "kiwanami";
repo = "emacs-deferred";
@@ -9246,7 +9425,7 @@
sha256 = "1br4yys803x3ng4vzhhvblhkqabs46lx8a3ajycqy555q20zqzrf";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/concurrent";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/8bc29a8d518ce7a584277089bd4654f52ac0f358/recipes/concurrent";
sha256 = "09wjw69bqrr3424h0mpb2kr5ixh96syjjsqrcyd7z2lsas5ldpnf";
name = "concurrent";
};
@@ -9259,7 +9438,7 @@
config-parser = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "config-parser";
- version = "20160426.1419";
+ version = "20160426.719";
src = fetchFromGitHub {
owner = "lujun9972";
repo = "el-config-parser";
@@ -9267,7 +9446,7 @@
sha256 = "09vq7hcsw4027whn3xrnfz9hkgkakva619hyz0zfgpvppqah9n1p";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/config-parser";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/8fc040eebe72b278e3bd69212b207446cf4a5f06/recipes/config-parser";
sha256 = "0wncg1v4wccb9j16rcmwz8fcmrscj7knfisq0r4qqx3skrmpccah";
name = "config-parser";
};
@@ -9280,14 +9459,14 @@
confluence = callPackage ({ fetchsvn, fetchurl, lib, melpaBuild, xml-rpc }:
melpaBuild {
pname = "confluence";
- version = "20130808.2250";
+ version = "20151020.2028";
src = fetchsvn {
url = "https://svn.code.sf.net/p/confluence-el/code/trunk/";
rev = "173";
sha256 = "18859zi60s2y79add998vxh084znbdxxq31m12flg7makxlamyh7";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/confluence";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/cf9110cd142ece0a8d63815bf00a89574b947bb4/recipes/confluence";
sha256 = "0hplpqaxjg34pf75p9sf97wlbq4rz9f8qvn4cfpjxf16if078ls3";
name = "confluence";
};
@@ -9300,7 +9479,7 @@
conkeror-minor-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "conkeror-minor-mode";
- version = "20150114.1704";
+ version = "20150114.1004";
src = fetchFromGitHub {
owner = "Malabarba";
repo = "conkeror-minor-mode";
@@ -9308,7 +9487,7 @@
sha256 = "0sz3qx1bn0lwjhka2l6wfl4b5486ji9dklgjs7fdlkg3dgpp1ahx";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/conkeror-minor-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/1e6aed365c42987d64d0cd9a8a6178339b1b39e8/recipes/conkeror-minor-mode";
sha256 = "1ch108f20k7xbf79azsp31hh4wmw7iycsxddcszgxkbm7pj11933";
name = "conkeror-minor-mode";
};
@@ -9321,7 +9500,7 @@
connection = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "connection";
- version = "20140718.529";
+ version = "20140717.2229";
src = fetchFromGitHub {
owner = "myrkr";
repo = "dictionary-el";
@@ -9329,7 +9508,7 @@
sha256 = "0gz03hji6mcrzvxd74qim63g159sc8ggb6hq3x42x5l01g980fbm";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/connection";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/5b08ed7b90e3283e177eff57cb02b12a093dc258/recipes/connection";
sha256 = "1y68d2kay8p5vapailxhrc5dl7b8k8nkvp7pa54md3fsivwp1d0q";
name = "connection";
};
@@ -9342,7 +9521,7 @@
contextual = callPackage ({ cl-lib ? null, dash, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "contextual";
- version = "20160131.1937";
+ version = "20160131.1237";
src = fetchFromGitHub {
owner = "lshift-de";
repo = "contextual";
@@ -9350,7 +9529,7 @@
sha256 = "0ykc3lzdypf543dgm7jpi70z08kz9hwhn2gvp06ylb22id8b3fai";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/contextual";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/44e5b799e411b8e2d89c8e9aeb4720126ac908b7/recipes/contextual";
sha256 = "0vribs0fa1xf5kwkmvzjwhiawni0p3v56c5l4dkz8d7wn2g6wfdx";
name = "contextual";
};
@@ -9363,15 +9542,15 @@
control-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "control-mode";
- version = "20140218.1507";
+ version = "20160624.1210";
src = fetchFromGitHub {
owner = "stephendavidmarsh";
repo = "control-mode";
- rev = "52c43d198f423eb00e5de6e44f2f3dd70893a6bc";
- sha256 = "1qsq543rb0z2fq716a2khs8zqyh13npzmbj58f00s8b3w3andpbh";
+ rev = "72d6179b60adc438aada74083b2bf4264b575de3";
+ sha256 = "0pqdh9bx2j9kla57sn349m90azk02wajapmazdm26cjdc2npw7jh";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/control-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/acc9b816796b9f142c53f90593952b43c962d2d8/recipes/control-mode";
sha256 = "1biq4p2w8rqcbvr09gxbchjqlaixjf1fzv7xv8lpv81dlhi7dgz6";
name = "control-mode";
};
@@ -9381,10 +9560,52 @@
license = lib.licenses.free;
};
}) {};
+ copyit = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
+ melpaBuild {
+ pname = "copyit";
+ version = "20160607.1205";
+ src = fetchFromGitHub {
+ owner = "zonuexe";
+ repo = "emacs-copyit";
+ rev = "c973d3650208a033aaf845989d023f9c6e572ddd";
+ sha256 = "1fwndjbzwhl4dzrw5jxbq66yggxkl81ga3cnnl7rm3s63pkb6l3w";
+ };
+ recipeFile = fetchurl {
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/69bd50fd1f3865d48cec9fe2680d260d746248e5/recipes/copyit";
+ sha256 = "1m28irqixzl44c683dxvc5x6l3qcqlpy6jzk6629paqkdi5mx1c0";
+ name = "copyit";
+ };
+ packageRequires = [ cl-lib emacs ];
+ meta = {
+ homepage = "https://melpa.org/#/copyit";
+ license = lib.licenses.free;
+ };
+ }) {};
+ copyit-pandoc = callPackage ({ copyit, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, pandoc }:
+ melpaBuild {
+ pname = "copyit-pandoc";
+ version = "20160624.1528";
+ src = fetchFromGitHub {
+ owner = "zonuexe";
+ repo = "emacs-copyit";
+ rev = "c973d3650208a033aaf845989d023f9c6e572ddd";
+ sha256 = "1fwndjbzwhl4dzrw5jxbq66yggxkl81ga3cnnl7rm3s63pkb6l3w";
+ };
+ recipeFile = fetchurl {
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/69bd50fd1f3865d48cec9fe2680d260d746248e5/recipes/copyit-pandoc";
+ sha256 = "03v448gh6glq126r95w4y6s2p08jgjhkc6zgsplx0v9d5f2mwaqk";
+ name = "copyit-pandoc";
+ };
+ packageRequires = [ copyit emacs pandoc ];
+ meta = {
+ homepage = "https://melpa.org/#/copyit-pandoc";
+ license = lib.licenses.free;
+ };
+ }) {};
corral = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "corral";
- version = "20160502.901";
+ version = "20160502.201";
src = fetchFromGitHub {
owner = "nivekuil";
repo = "corral";
@@ -9392,7 +9613,7 @@
sha256 = "00055gzv032xxzqm1hffipljy8fzgsm58cbv8dzajh035jvdgpv7";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/corral";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/7b0d7e326f0401de0488b77d39af7bd7b8e8fdd4/recipes/corral";
sha256 = "1drccqk4qzkgvkgkzlrrfd1dcgj8ziqriijrjihrzjgjsbpzv6da";
name = "corral";
};
@@ -9405,15 +9626,15 @@
counsel = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, swiper }:
melpaBuild {
pname = "counsel";
- version = "20160603.1812";
+ version = "20160703.1055";
src = fetchFromGitHub {
owner = "abo-abo";
repo = "swiper";
- rev = "c960de51ce4e868daedb91e523ff6267a3113c3a";
- sha256 = "0zlcfyw7wi5djg54bzxnyqnqsf5pa2c3v96bas76n08k9fazk9m8";
+ rev = "aaad35472a5b74dfaeca93aa0de2327cf06ffe3d";
+ sha256 = "1f570vxp5gp28wpxq92050n6vx0lvz8288x4sp8pfpizz9dyxd9p";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/counsel";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/06c50f32b8d603db0d70e77907e36862cd66b811/recipes/counsel";
sha256 = "0y8cb2q4mqvzan5n8ws5pjpm7bkjcghg5q19mzc3gqrq9vrvyzi6";
name = "counsel";
};
@@ -9426,7 +9647,7 @@
counsel-dash = callPackage ({ counsel, dash, dash-functional, emacs, fetchFromGitHub, fetchurl, helm-dash, lib, melpaBuild }:
melpaBuild {
pname = "counsel-dash";
- version = "20160524.852";
+ version = "20160524.152";
src = fetchFromGitHub {
owner = "nathankot";
repo = "counsel-dash";
@@ -9434,7 +9655,7 @@
sha256 = "15caglb1pvnrsgc17sfdfahkilrqba5r61118ny5fa3vgk9cbwcq";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/counsel-dash";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/0f8af4d854f972bfed3d2122b4c089f72d8b5f2a/recipes/counsel-dash";
sha256 = "0pzh8ww1p2jb859gdjr5ypya3rwhiyg3c79xhx8filxrqxgjv5fk";
name = "counsel-dash";
};
@@ -9447,7 +9668,7 @@
counsel-osx-app = callPackage ({ emacs, fetchFromGitHub, fetchurl, ivy, lib, melpaBuild }:
melpaBuild {
pname = "counsel-osx-app";
- version = "20160525.1205";
+ version = "20160525.505";
src = fetchFromGitHub {
owner = "d12frosted";
repo = "counsel-osx-app";
@@ -9455,7 +9676,7 @@
sha256 = "1h25wy945n173rv629d3q9s9q6yl72nnfr6xg27jjbnzf6v2i8lv";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/counsel-osx-app";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/926d0ab3d62d7114d6997944521b66ab969f6830/recipes/counsel-osx-app";
sha256 = "0zc74szalyazbvi0lh3zy08kb8kzlwcwnc8d1sj5n23ymvvs5nn3";
name = "counsel-osx-app";
};
@@ -9468,7 +9689,7 @@
counsel-projectile = callPackage ({ counsel, fetchFromGitHub, fetchurl, lib, melpaBuild, projectile }:
melpaBuild {
pname = "counsel-projectile";
- version = "20160507.1922";
+ version = "20160507.1222";
src = fetchFromGitHub {
owner = "ericdanan";
repo = "counsel-projectile";
@@ -9476,7 +9697,7 @@
sha256 = "1jzqhbw6mid7p5s88lwk1vjb12fmmxc3zfkhdkvxiglmanqghq6f";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/counsel-projectile";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/389f16f886a385b02f466540f042a16eea8ba792/recipes/counsel-projectile";
sha256 = "1gshphxaa902kq878rnizn3k1zycakwqkciz92z3xxb3bdyy0hnl";
name = "counsel-projectile";
};
@@ -9489,7 +9710,7 @@
coverage = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild, ov }:
melpaBuild {
pname = "coverage";
- version = "20160222.1014";
+ version = "20160222.314";
src = fetchFromGitHub {
owner = "trezona-lecomte";
repo = "coverage";
@@ -9497,7 +9718,7 @@
sha256 = "0glnvr10lwi17g44653qqswn9vnyh5r2nmpaa0y6lvfb952zn0k0";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/coverage";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/cd70e138534551dd12ba4d165ba56fbd1e033241/recipes/coverage";
sha256 = "0ja7wsx2sj0h01sk1l3c0aidbs1ld4gj3kiwq6brs7r018sz45pm";
name = "coverage";
};
@@ -9510,7 +9731,7 @@
coverlay = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "coverlay";
- version = "20160507.1855";
+ version = "20160507.1155";
src = fetchFromGitHub {
owner = "twada";
repo = "coverlay.el";
@@ -9518,7 +9739,7 @@
sha256 = "1q6cx6kq68xxqcx7zd9l4szy038i5ifjb82fxs3sn5fv00q0j9vd";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/coverlay";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/b2f92804e67fac780a0be850fcd0d0e93992ea7a/recipes/coverlay";
sha256 = "0p5k9254r3i247h6ll6kjsgw3naiff5lgfkmb2wkc870lzggq0m4";
name = "coverlay";
};
@@ -9531,7 +9752,7 @@
cp5022x = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "cp5022x";
- version = "20120324.35";
+ version = "20120323.1835";
src = fetchFromGitHub {
owner = "awasira";
repo = "cp5022x.el";
@@ -9539,7 +9760,7 @@
sha256 = "1z67x4a0aricd9q6i2w33k74alddl6w0rijjhzyxwml7ibhbvphz";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/cp5022x";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/761fcb0ff07d9746d68e9946c8b46e50c67cd1d8/recipes/cp5022x";
sha256 = "0v1jhkix01l299m67jag43rnps68m19zy83vvdglxa8dj3naz5dl";
name = "cp5022x";
};
@@ -9552,7 +9773,7 @@
cpputils-cmake = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "cpputils-cmake";
- version = "20160515.1003";
+ version = "20160515.303";
src = fetchFromGitHub {
owner = "redguardtoo";
repo = "cpputils-cmake";
@@ -9560,7 +9781,7 @@
sha256 = "1rk0bwdvfrp24z69flh7jg3c8vgvwk6vciixmmmldnrlwhpnbh6i";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/cpputils-cmake";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/9b84a159e97f7161d0705da5dd5e8c34ae5cb848/recipes/cpputils-cmake";
sha256 = "0fswmmmrjv897n51nidmn8gs8yp00595g35vwjafsq6rzfg58j60";
name = "cpputils-cmake";
};
@@ -9573,7 +9794,7 @@
cql-mode = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "cql-mode";
- version = "20160414.243";
+ version = "20160413.1943";
src = fetchFromGitHub {
owner = "Yuki-Inoue";
repo = "cql-mode";
@@ -9581,7 +9802,7 @@
sha256 = "18nxsd1axd3m70p7cw4ifcj33z9v5w25v6g09q38maixymlad962";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/cql-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/1084dd0ec0f2e8fe6fa8e97b322833c14e8e59d1/recipes/cql-mode";
sha256 = "0wdal8w0i73xjak2g0wazs54z957f4lj4n8qdmzpcylzpl1lqd88";
name = "cql-mode";
};
@@ -9594,7 +9815,7 @@
crab = callPackage ({ fetchFromGitHub, fetchurl, json ? null, lib, melpaBuild, websocket }:
melpaBuild {
pname = "crab";
- version = "20150127.637";
+ version = "20150126.2337";
src = fetchFromGitHub {
owner = "puffnfresh";
repo = "crab-emacs";
@@ -9602,7 +9823,7 @@
sha256 = "0y37fx4ghx8a74cp7ci6p5yfpji8g42hlah2xcwfnyw0qlpqfbnl";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/crab";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/25f80586fb88ab5f0eb71d657d602d9faa1169ec/recipes/crab";
sha256 = "1jz26bw2h7ahcb7y2qhpqrlfald244c92m6pvfrb0jg0z384i6aj";
name = "crab";
};
@@ -9615,7 +9836,7 @@
crappy-jsp-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "crappy-jsp-mode";
- version = "20140311.1031";
+ version = "20140311.431";
src = fetchFromGitHub {
owner = "magnars";
repo = "crappy-jsp-mode";
@@ -9623,7 +9844,7 @@
sha256 = "12g6l6xlbs9h24q5lk8yjgk91xqd7r3v7r6czy10r09cmfjmkxbb";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/crappy-jsp-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/8b528544841995045fb1f8344aaaa38946bb3915/recipes/crappy-jsp-mode";
sha256 = "00wj61maib77qldzq06l9v0pbvp9jih75w1xw0ry9mij0r6ca8ii";
name = "crappy-jsp-mode";
};
@@ -9636,7 +9857,7 @@
creds = callPackage ({ dash, fetchFromGitHub, fetchurl, lib, melpaBuild, s }:
melpaBuild {
pname = "creds";
- version = "20140510.1906";
+ version = "20140510.1206";
src = fetchFromGitHub {
owner = "ardumont";
repo = "emacs-creds";
@@ -9644,7 +9865,7 @@
sha256 = "0l4bvk3m355b25d7pdnhczn3fckbq0rg2l4r0a0d94004ksvylqa";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/creds";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/81b032049ccc3837e8693f010b39716912f76bba/recipes/creds";
sha256 = "0n11xxaf93bbc9ih25wj09zzw4sj32wb99qig4zcy8bpkl5y3llk";
name = "creds";
};
@@ -9657,7 +9878,7 @@
creole = callPackage ({ fetchFromGitHub, fetchurl, kv, lib, melpaBuild, noflet }:
melpaBuild {
pname = "creole";
- version = "20140924.1700";
+ version = "20140924.1000";
src = fetchFromGitHub {
owner = "nicferrier";
repo = "elwikicreole";
@@ -9665,7 +9886,7 @@
sha256 = "18c4jfjnhb7asdhwj41g06cp9rz5xd7bbx2s1xvk6gahay27rlrv";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/creole";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/c97649d365b8e206fb6b88a47e8f1eb8e0bd2450/recipes/creole";
sha256 = "1pqgm7m2gzkn65v3qic71c38qiira29cwx11l96qph8h8sf47zw5";
name = "creole";
};
@@ -9678,7 +9899,7 @@
creole-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "creole-mode";
- version = "20130722.250";
+ version = "20130721.1950";
src = fetchFromGitHub {
owner = "nicferrier";
repo = "creole-mode";
@@ -9686,7 +9907,7 @@
sha256 = "0japww5x89vd1ahjm2bc3biz6wxv94vvqq5fyyzkqsblgk5bys0h";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/creole-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/f04f93ab9482dbabfdbe3f0c8186c62a9a80c8b3/recipes/creole-mode";
sha256 = "1lj9a0bgn7lmc2wyjzzvmpaz1f1spj02l51ki2wydjbfhxq61k0s";
name = "creole-mode";
};
@@ -9699,15 +9920,15 @@
cricbuzz = callPackage ({ enlive, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "cricbuzz";
- version = "20160601.2239";
+ version = "20160703.358";
src = fetchFromGitHub {
owner = "lepisma";
repo = "cricbuzz.el";
- rev = "6f80f90a8916216b4c98d13f3605f50b5f6e64af";
- sha256 = "12qs9z1cnwhmks7x7fhymg21hbpjwgbdfz20pz2jgrl48hm6mmk5";
+ rev = "7c0c495312c18bc6c8db9ddad94efbd4b6328a9b";
+ sha256 = "0jvr6ya40qq9q064k2gzkrqw00xffjmslfjxa2xz2vi25m6jyv92";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/cricbuzz";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/906b144e01aed96d62efbc34a8af2973135f6194/recipes/cricbuzz";
sha256 = "1ad2afyn3xny3rgb8yy6w87f33idlrmis1vx0b6s8ppafv9z74j0";
name = "cricbuzz";
};
@@ -9720,7 +9941,7 @@
crm-custom = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "crm-custom";
- version = "20160117.106";
+ version = "20160116.1806";
src = fetchFromGitHub {
owner = "DarwinAwardWinner";
repo = "crm-custom";
@@ -9728,7 +9949,7 @@
sha256 = "1kl6blr4dlz40gfc845071nhfms4fm59284ja2177bhghy3wmw6r";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/crm-custom";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/5e0752ba601a8d518d3c7fb54fd008602e7dc19f/recipes/crm-custom";
sha256 = "14w15skxr44p9ilhpswlgdbqfw8jghxi69l37yk4m449m7g9694c";
name = "crm-custom";
};
@@ -9741,7 +9962,7 @@
crontab-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "crontab-mode";
- version = "20090510.2255";
+ version = "20090510.1555";
src = fetchFromGitHub {
owner = "emacsorphanage";
repo = "crontab-mode";
@@ -9749,7 +9970,7 @@
sha256 = "1r9dhk8h8lq18vi0hjai8y4z42yjxg18786mcr2qs5m3q1ampf9d";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/crontab-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/5f2a50f62475639af011c99c6cc38928b74b3b0a/recipes/crontab-mode";
sha256 = "16qc2isvf6cgl5ihdbwmvv0gbhns4mkhd5lxkl6f8f6h0za054ci";
name = "crontab-mode";
};
@@ -9762,13 +9983,13 @@
crosshairs = callPackage ({ col-highlight, fetchurl, hl-line-plus, lib, melpaBuild, vline }:
melpaBuild {
pname = "crosshairs";
- version = "20151231.2138";
+ version = "20151231.1438";
src = fetchurl {
url = "https://www.emacswiki.org/emacs/download/crosshairs.el";
sha256 = "120hxk82i0r4qan4hfk9ldmw5a8bzv7p683lrnlcx9gyxgkia3am";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/crosshairs";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/b4144c2fd45877effd8005abf64019aed651148a/recipes/crosshairs";
sha256 = "1gf73li6q5rg1dimzihxq0rdxiqzbl2w78r1qzc9mxw3qj7azxqp";
name = "crosshairs";
};
@@ -9781,7 +10002,7 @@
crux = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, seq }:
melpaBuild {
pname = "crux";
- version = "20160531.654";
+ version = "20160530.2354";
src = fetchFromGitHub {
owner = "bbatsov";
repo = "crux";
@@ -9789,7 +10010,7 @@
sha256 = "0809pb8626i6z1dics3i1cs30p4qd8bzqcgr20lx9k3yq2abq2k7";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/crux";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/575e3442a925500a5806e0b900208c1e6bfd11ae/recipes/crux";
sha256 = "10lim1sngqbdqqwyq6ksqjjqpkm97aj1jk550sgwj28338lnw73c";
name = "crux";
};
@@ -9802,7 +10023,7 @@
cryptol-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "cryptol-mode";
- version = "20140426.1904";
+ version = "20140426.1204";
src = fetchFromGitHub {
owner = "thoughtpolice";
repo = "cryptol-mode";
@@ -9810,7 +10031,7 @@
sha256 = "00wgbcw09xn9xi52swi4wyi9dj9p9hyin7i431xi6zkhxysw4q7w";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/cryptol-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/de12333bb429d84b2c214ac7ebb0219f67838f4f/recipes/cryptol-mode";
sha256 = "08iq69gqmps8cckybhj9065b8a2a49p0rpzgx883qxnypsmjfmf2";
name = "cryptol-mode";
};
@@ -9823,7 +10044,7 @@
cryptsy-public-api = callPackage ({ fetchFromGitHub, fetchurl, json ? null, lib, melpaBuild }:
melpaBuild {
pname = "cryptsy-public-api";
- version = "20141008.1428";
+ version = "20141008.728";
src = fetchFromGitHub {
owner = "Sodaware";
repo = "cryptsy-public-api.el";
@@ -9831,7 +10052,7 @@
sha256 = "0ry0087g1br3397js7a9iy6k2x6p0dgqlggxx9gaqhms7pmpq14b";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/cryptsy-public-api";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/7fabdb05de9b8ec18a3a566f99688b50443b6b44/recipes/cryptsy-public-api";
sha256 = "1331nrx57136k09a7p6imv0k9g6w8ibpwn5xmv33dxc22hsmc41j";
name = "cryptsy-public-api";
};
@@ -9844,15 +10065,15 @@
csharp-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "csharp-mode";
- version = "20160604.909";
+ version = "20160615.1319";
src = fetchFromGitHub {
owner = "josteink";
repo = "csharp-mode";
- rev = "fe3ca7e036b5df57f5387ab897a10d41d32e3961";
- sha256 = "1rk9891nzq9biqsgfr7ykj3dm5yv7lpjhkgzk3sg384h8lix214w";
+ rev = "33fb05c1049e9d3b6db4aa72e27b9b7335b4dbe1";
+ sha256 = "0i4ql5i6php60jvga0a7qbgwpi0bmq30g35k76b1mgd760wn81xx";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/csharp-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/736716bbcfd9c9fb1d10ce290cb4f66fe1c68f44/recipes/csharp-mode";
sha256 = "17j84qrprq492dsn103dji8mvh29mbdlqlpsszbgfdgnpvfr1rv0";
name = "csharp-mode";
};
@@ -9865,7 +10086,7 @@
css-comb = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "css-comb";
- version = "20160416.759";
+ version = "20160416.59";
src = fetchFromGitHub {
owner = "channikhabra";
repo = "css-comb.el";
@@ -9873,7 +10094,7 @@
sha256 = "0nvl6y90p9crk12j7aw0cqdjhli7xbrx3hqckxsnvrnxy4zax7nk";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/css-comb";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/0afc24de7f847feaa128168d0fd8b2110242cca6/recipes/css-comb";
sha256 = "1axwrvbc3xl1ixhh72bii3hhbi9d96y6i1my1rpvwqyd6f7wb2cf";
name = "css-comb";
};
@@ -9886,7 +10107,7 @@
css-eldoc = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "css-eldoc";
- version = "20150125.423";
+ version = "20150124.2123";
src = fetchFromGitHub {
owner = "zenozeng";
repo = "css-eldoc";
@@ -9894,7 +10115,7 @@
sha256 = "1mgc6bd0dzrp1dq1yj8m2qxjnpysd8ppdk2yp96d3zd07zllw4rx";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/css-eldoc";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/0c3b5d83fcfb9d03301b95cf13e67549ce0f46e3/recipes/css-eldoc";
sha256 = "1f079q3ccrr4drk2hvn4xs4vbrd3hg87xqbk3r9mmjvkagd1v7rf";
name = "css-eldoc";
};
@@ -9907,7 +10128,7 @@
cssfmt = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "cssfmt";
- version = "20150819.628";
+ version = "20150818.2328";
src = fetchFromGitHub {
owner = "KeenS";
repo = "cssfmt.el";
@@ -9915,7 +10136,7 @@
sha256 = "0hyf4im7b8zka065daw7yxrb3670dpp8q92vd2gcsva1jla92h9y";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/cssfmt";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/2d95ca68c481061f5dc2614ae660a98d53837c46/recipes/cssfmt";
sha256 = "12yq4dhyv3p5gxnd2w193ilpj2d3gx5ns09w0z1zkg7ax3a4q4b8";
name = "cssfmt";
};
@@ -9928,7 +10149,7 @@
cssh = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "cssh";
- version = "20150810.1909";
+ version = "20150810.1209";
src = fetchFromGitHub {
owner = "dimitri";
repo = "cssh";
@@ -9936,7 +10157,7 @@
sha256 = "1xf2hy077frfz8qf91c0l0qppcjxzr4bsbb622bx6fidqkpa3a1a";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/cssh";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/da3fcf6252f83d80de8a3ec564244e6cd22391eb/recipes/cssh";
sha256 = "10yvvyzqr06jvijmzis9clb1slzp2mn80yclis8wvrmg4p8djljk";
name = "cssh";
};
@@ -9948,13 +10169,13 @@
}) {};
csv-nav = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild {
pname = "csv-nav";
- version = "20130407.2020";
+ version = "20130407.1320";
src = fetchurl {
url = "https://www.emacswiki.org/emacs/download/csv-nav.el";
sha256 = "15rfg3326xcs3zj3siy9rn7yff101vfch1srskdi2650c3l3krva";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/csv-nav";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/4327b4dd464ebb00c2acdd496274dedf912cdf92/recipes/csv-nav";
sha256 = "0626vsm2f5zc2wi5pyx4xrwcr4ai8w9a3l7gi9883smvayr619sj";
name = "csv-nav";
};
@@ -9967,7 +10188,7 @@
ctable = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "ctable";
- version = "20140305.159";
+ version = "20140304.1859";
src = fetchFromGitHub {
owner = "kiwanami";
repo = "emacs-ctable";
@@ -9975,7 +10196,7 @@
sha256 = "07vasdlai49qs0nsmq2cz1kcq1adqyarv8199imgwwcbh4vn7dqb";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ctable";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/8bc29a8d518ce7a584277089bd4654f52ac0f358/recipes/ctable";
sha256 = "040qmlgfvjc1f908n52m5ll2fizbrhjzbd0kgrsw37bvm3029rx1";
name = "ctable";
};
@@ -9987,14 +10208,14 @@
}) {};
ctags = callPackage ({ fetchhg, fetchurl, lib, melpaBuild }: melpaBuild {
pname = "ctags";
- version = "20110911.1204";
+ version = "20110911.504";
src = fetchhg {
url = "https://bitbucket.com/semente/ctags.el";
rev = "afb16c5b2530";
sha256 = "1xgrb4ivgz7gmingfafmclqqflxdvkarmfkqqv1zjk6yrjhlcvwf";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ctags";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/5b7972602399f9df9139cff177e38653bb0f43ed/recipes/ctags";
sha256 = "11fp8l99rj4fmi0vd3hkffgpfhk1l82ggglzb74jr3qfzv3dcn6y";
name = "ctags";
};
@@ -10007,7 +10228,7 @@
ctags-update = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "ctags-update";
- version = "20150428.514";
+ version = "20150427.2214";
src = fetchFromGitHub {
owner = "jixiuf";
repo = "helm-etags-plus";
@@ -10015,7 +10236,7 @@
sha256 = "1va394nls4yi77rgm0kz5r00xiidj6lwcabhqxisz08m3h8gfkh2";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ctags-update";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/23f6ae3d3c8e414031bf524ff75d9d6f8d8c3fe9/recipes/ctags-update";
sha256 = "1k43l667mvr2y33nblachdlvdqvn256gysc1iwv5zgv7gj9i65qf";
name = "ctags-update";
};
@@ -10028,7 +10249,7 @@
ctl-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "ctl-mode";
- version = "20151202.1106";
+ version = "20151202.406";
src = fetchFromGitHub {
owner = "yyr";
repo = "emacs-grads";
@@ -10036,7 +10257,7 @@
sha256 = "1d89gxyzv0z0nk7v1aa4qa0xfms2g2dsrr07cw0d99xsnyxfky31";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ctl-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/38d2279fd05bb48f0d0e2276c605cd92892d0196/recipes/ctl-mode";
sha256 = "0fydq779b0y6hmh8srfdimr5rl9mk3sj08rbvlljxv3kqv5ajczj";
name = "ctl-mode";
};
@@ -10049,7 +10270,7 @@
ctxmenu = callPackage ({ fetchFromGitHub, fetchurl, lib, log4e, melpaBuild, popup, yaxception }:
melpaBuild {
pname = "ctxmenu";
- version = "20140303.2242";
+ version = "20140303.1542";
src = fetchFromGitHub {
owner = "aki2o";
repo = "emacs-ctxmenu";
@@ -10057,7 +10278,7 @@
sha256 = "1jlr2miwqsg06hk2clvsrw9fa98m2n76qfq8qv5svrb8dpil04wb";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ctxmenu";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/6fc4f51bb6ce8fa9e37c0aeb51696b1980aece0c/recipes/ctxmenu";
sha256 = "03g9px858mg19wapqszwav3599slljdyam8bvn1ri85fpa5ydvdp";
name = "ctxmenu";
};
@@ -10070,7 +10291,7 @@
cucumber-goto-step = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, pcre2el }:
melpaBuild {
pname = "cucumber-goto-step";
- version = "20131210.619";
+ version = "20131209.2319";
src = fetchFromGitHub {
owner = "gstamp";
repo = "cucumber-goto-step";
@@ -10078,7 +10299,7 @@
sha256 = "184plai32sn0indvi1dma6ykz907zgnrdyxdw6f5mghwca96g5kx";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/cucumber-goto-step";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/d78d7abccfd9bcebf6888032639923327ad25309/recipes/cucumber-goto-step";
sha256 = "1ydsd455dvaw6a180b6570bfgg0kxn01sn6cb57smqj835am6gx8";
name = "cucumber-goto-step";
};
@@ -10091,7 +10312,7 @@
cuda-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "cuda-mode";
- version = "20151214.421";
+ version = "20151213.2121";
src = fetchFromGitHub {
owner = "chachi";
repo = "cuda-mode";
@@ -10099,7 +10320,7 @@
sha256 = "1ms0z5zplcbdwwdbgsjsbm32i57z9i2i8j9y3wm0pwzyz4zr36zy";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/cuda-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/d21cf17a4a9ae391e2e9cf9be3399095fa23ef55/recipes/cuda-mode";
sha256 = "0ip4vax93x72bjrh6prik6ddmrvszpsmgm0fxfz772rp24smc300";
name = "cuda-mode";
};
@@ -10111,13 +10332,13 @@
}) {};
cursor-chg = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild {
pname = "cursor-chg";
- version = "20151231.2140";
+ version = "20151231.1440";
src = fetchurl {
url = "https://www.emacswiki.org/emacs/download/cursor-chg.el";
sha256 = "1w0msh4mfhwglkwgb8ksqfdzbd1bvspllydnjzhc0yl3s7qrifbd";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/cursor-chg";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/871d02540951a217ea3d4aed9ce6b66a77223fbf/recipes/cursor-chg";
sha256 = "0d1ilall8c1y4w014wks9yx4fz743hvx5lc8jqxxlrq7pmqyqdxk";
name = "cursor-chg";
};
@@ -10130,7 +10351,7 @@
cursor-in-brackets = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "cursor-in-brackets";
- version = "20160603.1316";
+ version = "20160603.616";
src = fetchFromGitHub {
owner = "yascentur";
repo = "cursor-in-brackets-el";
@@ -10138,7 +10359,7 @@
sha256 = "06q46hmspgq1g3dkpim3fnz1gnzpqywwqcg5yism2lc6qj4zmanm";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/cursor-in-brackets";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/5862f7a24b3c213505277ad44a64d8dd402119eb/recipes/cursor-in-brackets";
sha256 = "1p4p0v7x4i4i2z56dw4xf1phckanrwjciifi0zqba36xd4zxgx8f";
name = "cursor-in-brackets";
};
@@ -10151,7 +10372,7 @@
cursor-test = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "cursor-test";
- version = "20131207.1832";
+ version = "20131207.1132";
src = fetchFromGitHub {
owner = "ainame";
repo = "cursor-test.el";
@@ -10159,7 +10380,7 @@
sha256 = "0wmnhizv4jfcl1w9za4ydxf6xwxgm5vwmn1zi5vn70zmv4d6r49l";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/cursor-test";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/6439f7561cfab4f6f3beb132d2a65e94b3deba9e/recipes/cursor-test";
sha256 = "1c1d5xq4alamlwyqxjx557aykz5dw87acp0lyglsrzzkdynbwlb1";
name = "cursor-test";
};
@@ -10171,13 +10392,13 @@
}) {};
cus-edit-plus = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild {
pname = "cus-edit-plus";
- version = "20160529.2337";
+ version = "20160529.1637";
src = fetchurl {
url = "https://www.emacswiki.org/emacs/download/cus-edit+.el";
sha256 = "0d62nv8i208ysi5cg906p9ribpnrn2jvzdcwm35km4i0q0bp6yg7";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/cus-edit+";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/57370fc617f4f10cc67e9d3c6dc113ff0a18cace/recipes/cus-edit+";
sha256 = "1kazcdfajcnrzvhsgsmwwx96rkry0dglprrc02hbd7ky1fppp4sz";
name = "cus-edit-plus";
};
@@ -10190,7 +10411,7 @@
cyberpunk-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "cyberpunk-theme";
- version = "20160122.212";
+ version = "20160121.1912";
src = fetchFromGitHub {
owner = "n3mo";
repo = "cyberpunk-theme.el";
@@ -10198,7 +10419,7 @@
sha256 = "1yhizh8j745hv5ancpvijds9dasvsr2scwjscksp2x3krnd26ssp";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/cyberpunk-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/4c632d1e501d48dab54432ab111ce589aa229125/recipes/cyberpunk-theme";
sha256 = "0l2bwb5afkkhrbh99v2gns1vil9s5911hbnlq5w35nmg1wvbmbc9";
name = "cyberpunk-theme";
};
@@ -10211,7 +10432,7 @@
cycbuf = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "cycbuf";
- version = "20131203.2137";
+ version = "20131203.1437";
src = fetchFromGitHub {
owner = "martinp26";
repo = "cycbuf";
@@ -10219,7 +10440,7 @@
sha256 = "1d5i8sm1xrsp4v4myidfyb40hm3wp7hgva7dizg9gbb7prmn1p5w";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/cycbuf";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/39f1919271df023898e60f5e7635928dc905083f/recipes/cycbuf";
sha256 = "0gyj48h5wgjawqq3j4hgk5a8d23nffmhd1q53kg7b9vfsda51hbw";
name = "cycbuf";
};
@@ -10232,7 +10453,7 @@
cycle-resize = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "cycle-resize";
- version = "20160521.1757";
+ version = "20160521.1057";
src = fetchFromGitHub {
owner = "pierre-lecocq";
repo = "cycle-resize";
@@ -10240,7 +10461,7 @@
sha256 = "1bmdjr99g50dzr4y1jxixfjhqmhrzblmpiyjhh5l5gqmdhammm4k";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/cycle-resize";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/8806af6662c8250c7533f643fe1c277ff0466651/recipes/cycle-resize";
sha256 = "0vp57plwqx4nf3pbv5g4frjriq8niiia9xc3bv6c3gzd4a0zm7xi";
name = "cycle-resize";
};
@@ -10253,7 +10474,7 @@
cycle-themes = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "cycle-themes";
- version = "20150403.509";
+ version = "20150402.2209";
src = fetchFromGitHub {
owner = "toroidal-code";
repo = "cycle-themes.el";
@@ -10261,7 +10482,7 @@
sha256 = "125s6vwbb9zpx6h3vrxnn7nr8pb45vhxd70ba2r3f87dlxah93am";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/cycle-themes";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/f24c358fd616a86f6594001deddee4d62dbb0bc6/recipes/cycle-themes";
sha256 = "1whp9q26sgyf59wygbrvdf9gc94bn4dmhr2f2qivpajx550fjfbc";
name = "cycle-themes";
};
@@ -10273,13 +10494,13 @@
}) {};
cygwin-mount = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild {
pname = "cygwin-mount";
- version = "20131111.2246";
+ version = "20131111.1546";
src = fetchurl {
url = "https://www.emacswiki.org/emacs/download/cygwin-mount.el";
sha256 = "09my4gj3qm9rdpk8lg6n6ki8ywj7kwzwd4hhgwascfnfi1hzwdvw";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/cygwin-mount";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/f94fb69a954275ee4098c96495b8566d6ce7cbb9/recipes/cygwin-mount";
sha256 = "0ik2c8ab9bsx58mgcv511p50h45cpv7455n4b0kri83sx9xf5abb";
name = "cygwin-mount";
};
@@ -10292,7 +10513,7 @@
cyphejor = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "cyphejor";
- version = "20160531.1805";
+ version = "20160531.1105";
src = fetchFromGitHub {
owner = "mrkkrp";
repo = "cyphejor";
@@ -10300,7 +10521,7 @@
sha256 = "04add8i0g4x5kzi1yd49i5viq9i2f5r5gzq33k05q6rimsp2ga02";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/cyphejor";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/ad7cacfa39d8f85e26372ef21898663aebb68e43/recipes/cyphejor";
sha256 = "18l5km4xm5j3vv19k3fxs8i3rg4qnhrvx7b62vmyfcqmpiasrh6g";
name = "cyphejor";
};
@@ -10313,7 +10534,7 @@
cypher-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "cypher-mode";
- version = "20151110.1242";
+ version = "20151110.542";
src = fetchFromGitHub {
owner = "fxbois";
repo = "cypher-mode";
@@ -10321,7 +10542,7 @@
sha256 = "0vbcq807jpjssabmyjcdkpp6nnx1288is2c6x79dkrviw2xxw3qf";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/cypher-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/ef558e7425adfe87202475babfbc1a679dc4cde5/recipes/cypher-mode";
sha256 = "174rfbm7yzkznkfjmh9bdnm5fgqv9bjwm85h39317pv1g8c3mgv0";
name = "cypher-mode";
};
@@ -10334,15 +10555,15 @@
cython-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "cython-mode";
- version = "20140705.2129";
+ version = "20140705.1429";
src = fetchFromGitHub {
owner = "cython";
repo = "cython";
- rev = "2f967a63d6ce9fbf9a1b66ea3d12b59011ab473f";
- sha256 = "04lgjp59a22jndsyvrnrnlaz78gyxzhc3jvgspmkbcdjajm4ljja";
+ rev = "6d7ddbcd790df6ab15036740c33f26b2d1ecb5d8";
+ sha256 = "1mz4fn9iirjfp8y0daaxskz3a6d0hzkm9lk3jqw8cin5gsal5zp8";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/cython-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/be9bfabe3f79153cb859efc7c3051db244a63879/recipes/cython-mode";
sha256 = "0asai1f1pncrfxx296fn6ky09hj1qam5j0dpxxkzhy0a34xz0k2i";
name = "cython-mode";
};
@@ -10355,7 +10576,7 @@
czech-holidays = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "czech-holidays";
- version = "20160113.1852";
+ version = "20160113.1152";
src = fetchFromGitHub {
owner = "hydandata";
repo = "czech-holidays";
@@ -10363,7 +10584,7 @@
sha256 = "1ck1a61m0kjynqwzbw9hnc7y2a6gd6l1430wm7mw3qqsq959qwm6";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/czech-holidays";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/7224fd77b3d8a37fac2fe0cf832e3487513afd8c/recipes/czech-holidays";
sha256 = "10c0zscbn7pr9xqdqksy4kh0cxjg9bhw8p4qzlk18fd4c8rhqn84";
name = "czech-holidays";
};
@@ -10376,7 +10597,7 @@
d-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "d-mode";
- version = "20160504.1855";
+ version = "20160504.1155";
src = fetchFromGitHub {
owner = "Emacs-D-Mode-Maintainers";
repo = "Emacs-D-Mode";
@@ -10384,7 +10605,7 @@
sha256 = "1568jqcrw3xks1pvvn6dyn6jiam26vmp5m53jf8q4165ic2lazi8";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/d-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/3c13e9ccc358743de660b1f0e89d6bb709c42bff/recipes/d-mode";
sha256 = "060k9ndjx0n5vlpzfxlv5zxnizx72d7y9vk7gz7gdvpm6w2ha0a2";
name = "d-mode";
};
@@ -10397,7 +10618,7 @@
dactyl-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "dactyl-mode";
- version = "20140906.1925";
+ version = "20140906.1225";
src = fetchFromGitHub {
owner = "luxbock";
repo = "dactyl-mode";
@@ -10405,7 +10626,7 @@
sha256 = "0fp40cyamchc9qq5vbpxgq3yp6vs8p3ncg46mjzr54psy3fc86dm";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/dactyl-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/72d503380511d2d6580b9522b6e0bd2d800bdebe/recipes/dactyl-mode";
sha256 = "0ppcabddcpwshfd04x42nbrbkagbyi1bg4vslysnlxn4kaxjs7pm";
name = "dactyl-mode";
};
@@ -10418,7 +10639,7 @@
dakrone-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "dakrone-theme";
- version = "20140212.545";
+ version = "20140211.2245";
src = fetchFromGitHub {
owner = "dakrone";
repo = "dakrone-theme";
@@ -10426,7 +10647,7 @@
sha256 = "0fd0h07m42q2h1ggsjra20kzv209rpb4apjv408h2dxqm8sy0jiy";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/dakrone-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/dcc07077b47d7c710c7f2d4919d791ed16ed5b26/recipes/dakrone-theme";
sha256 = "0ma4rfmgwd6k24jzn6pgk46b88jfix7mz0ib7c7r90h5vmpiq814";
name = "dakrone-theme";
};
@@ -10439,15 +10660,15 @@
danneskjold-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "danneskjold-theme";
- version = "20160409.1917";
+ version = "20160611.1327";
src = fetchFromGitHub {
owner = "rails-to-cosmos";
repo = "danneskjold-theme";
- rev = "fb851230b9c0b87216a0974d038328cd44ab6d33";
- sha256 = "1shysnf34qxd5rabad14a26m5id88g4wl4y4mwap53l2p3mcxq38";
+ rev = "7d2c58d60b797dba1c53b31a34459e6d21a65bf4";
+ sha256 = "1dfp2k5wh8g7jrmwlvwkmr9bp3s5kjb64g40iv1axy7dkn6ch6ci";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/danneskjold-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/557244a3b60c7cd3ca964ff843aa1e9d5a1e32ec/recipes/danneskjold-theme";
sha256 = "0cwab7qp293g92n9mjjz2vpg1pz2q3d40hfszf29rci89wsf3yxl";
name = "danneskjold-theme";
};
@@ -10460,7 +10681,7 @@
darcula-theme = callPackage ({ fetchFromGitLab, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "darcula-theme";
- version = "20160305.1121";
+ version = "20160305.421";
src = fetchFromGitLab {
owner = "fommil";
repo = "emacs-darcula-theme";
@@ -10468,7 +10689,7 @@
sha256 = "128a9iv1vrassmk4sy4cs4nj6lggr5v4rhjj04v1xssj5nn5flxf";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/darcula-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/23c8f10205187babb17e3abc3dc40eb1938e6640/recipes/darcula-theme";
sha256 = "1n9mpkdyf5jpxc5azfs38ccp9p0b5ii87sz4c7z4khs94y0gxqh3";
name = "darcula-theme";
};
@@ -10481,7 +10702,7 @@
dark-krystal-theme = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "dark-krystal-theme";
- version = "20141116.801";
+ version = "20141116.101";
src = fetchFromGitHub {
owner = "emacsfodder";
repo = "emacs-dark-krystal-theme";
@@ -10489,7 +10710,7 @@
sha256 = "07w5aycgaps904q8lk52d0g28wxq41c82xgl5mw2q56n3s5iixfx";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/dark-krystal-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/641d1959bd31598fcdacd39a3d1bb077dcccfa5c/recipes/dark-krystal-theme";
sha256 = "056aql35502sgvdpbgphpqdxzbjf4ay01rra6pm11c1dya8avv0j";
name = "dark-krystal-theme";
};
@@ -10502,7 +10723,7 @@
dark-mint-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "dark-mint-theme";
- version = "20160302.742";
+ version = "20160302.42";
src = fetchFromGitHub {
owner = "shaunvxc";
repo = "dark-mint-theme";
@@ -10510,7 +10731,7 @@
sha256 = "052k8mqxx8lkadxyz6rwa7l741rwbd1blk2ggpsj2s1g6p9l68a1";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/dark-mint-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/de74e734ae75df051475e60e79d4f5ad5bc128ae/recipes/dark-mint-theme";
sha256 = "0rljpwycarbn8rnac9vz7n23j69wmx35gn5dx77v0f0ws8ni4k9m";
name = "dark-mint-theme";
};
@@ -10523,7 +10744,7 @@
dark-souls = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "dark-souls";
- version = "20140314.1228";
+ version = "20140314.628";
src = fetchFromGitHub {
owner = "tomjakubowski";
repo = "dark-souls.el";
@@ -10531,7 +10752,7 @@
sha256 = "1w0y2j0j9n107dbk7ksr9bipshjfs9dk08qbs9m6h5aqh4hmwa4r";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/dark-souls";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/535577ce57bd772aca9f66e27485b0f58a7d35c5/recipes/dark-souls";
sha256 = "1ilsn657mpl7v8vkbzqf3gp0gmvy0dgynfsn8w4cb49qaiy337xc";
name = "dark-souls";
};
@@ -10544,7 +10765,7 @@
darkburn-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "darkburn-theme";
- version = "20151003.1000";
+ version = "20151003.300";
src = fetchFromGitHub {
owner = "gorauskas";
repo = "darkburn-theme";
@@ -10552,7 +10773,7 @@
sha256 = "19vrxfzhi0sqf7frzjx5z02d65r2jp1w2nhhf0527g7baid5hqvf";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/darkburn-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/a04dd517e02bc4b4a62d956aa901a727354202b0/recipes/darkburn-theme";
sha256 = "18hwdnwmkf640vcyx8d66i424wwazbzjq3k0w0xjmwsn2mpyhm9w";
name = "darkburn-theme";
};
@@ -10565,7 +10786,7 @@
darkmine-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "darkmine-theme";
- version = "20160406.824";
+ version = "20160406.124";
src = fetchFromGitHub {
owner = "pierre-lecocq";
repo = "darkmine-theme";
@@ -10573,7 +10794,7 @@
sha256 = "0d2g4iyp8gyfrcc1gkvl40p1shlw1sadswzhry0m1lgbyxiiklrz";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/darkmine-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/e527d1335f5fd2aba5b00255a7d69adbc20585ff/recipes/darkmine-theme";
sha256 = "06vzldyqlmfd11g8dqrqh5x244ikfa20qwpsmbgsiry3041k8iw5";
name = "darkmine-theme";
};
@@ -10586,7 +10807,7 @@
darkokai-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "darkokai-theme";
- version = "20160512.1716";
+ version = "20160512.1016";
src = fetchFromGitHub {
owner = "sjrmanning";
repo = "darkokai";
@@ -10594,7 +10815,7 @@
sha256 = "1603pk88mnzvwv75wdqk83s0wba4q2b7cmg5bwn2yncxmirmh3lq";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/darkokai-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/81387a5a70f7c42fbae16b52db765136795a37e1/recipes/darkokai-theme";
sha256 = "0jw71xl4ihkyq4m0w8c35x5hr8ic07wcabmvpwmvspnj8hkfccwf";
name = "darkokai-theme";
};
@@ -10607,7 +10828,7 @@
darktooth-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "darktooth-theme";
- version = "20160525.750";
+ version = "20160525.50";
src = fetchFromGitHub {
owner = "emacsfodder";
repo = "emacs-theme-darktooth";
@@ -10615,7 +10836,7 @@
sha256 = "0z1d15dgs4iymkh744bnqpq8b32d94244m4riq07lh4180wkdglq";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/darktooth-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/b7f62ac1566ced7332e83253f79078dc30cb7889/recipes/darktooth-theme";
sha256 = "1vss0mg1vz4wvsal1r0ya8lid2c18ig11ip5v9nc80b5slbixzvs";
name = "darktooth-theme";
};
@@ -10628,7 +10849,7 @@
dart-mode = callPackage ({ cl-lib ? null, dash, fetchFromGitHub, fetchurl, flycheck, lib, melpaBuild }:
melpaBuild {
pname = "dart-mode";
- version = "20160212.2021";
+ version = "20160212.1321";
src = fetchFromGitHub {
owner = "nex3";
repo = "dart-mode";
@@ -10636,7 +10857,7 @@
sha256 = "0ylzgaf4g0fh16rc061iaw3jrl2sjiwpr4x1ndk2bp0j14n7hqid";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/dart-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/7d9cb763cb8e929d9442be8d06e9af02de90714a/recipes/dart-mode";
sha256 = "0wxfh8v716dhrmx1klhpnsrlsj66llk8brmwryjg2h7c391sb5ff";
name = "dart-mode";
};
@@ -10649,15 +10870,15 @@
dash = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "dash";
- version = "20160510.2027";
+ version = "20160619.811";
src = fetchFromGitHub {
owner = "magnars";
repo = "dash.el";
- rev = "012b3bca9fef526bfe8aac73763e2c0b9622e1da";
- sha256 = "02zj2g9wcs213kbd21n40ha3dbjqyclyr26wbayqwqq9dpm5i8kf";
+ rev = "502be58722262c5b9d779848a168b0dc67ee7471";
+ sha256 = "1cmj1ppi5v0q56mnym3x0zirpwm1673fm04cvpqzpahgs4nki73l";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/dash";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/57eed8767c3e98614259c408dc0b5c54d3473883/recipes/dash";
sha256 = "0azm47900bk2frpjsgy108fr3p1jk4h9kmp4b5j5pibgsm26azgz";
name = "dash";
};
@@ -10670,7 +10891,7 @@
dash-at-point = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "dash-at-point";
- version = "20140626.935";
+ version = "20140626.235";
src = fetchFromGitHub {
owner = "stanaka";
repo = "dash-at-point";
@@ -10678,7 +10899,7 @@
sha256 = "0zd50sr51mmvndjb9qfc3sn502nhc939rhd454jbkmlrzqsxvphj";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/dash-at-point";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/0b2b0c544a76802df5ff3b1bf68a0418a653ea98/recipes/dash-at-point";
sha256 = "0x4nq42nbh2qgbg111lgbknc7w7m7lxd14mp9s8dcrpwsaxz960m";
name = "dash-at-point";
};
@@ -10691,15 +10912,15 @@
dash-functional = callPackage ({ dash, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "dash-functional";
- version = "20160601.1918";
+ version = "20160615.1551";
src = fetchFromGitHub {
owner = "magnars";
repo = "dash.el";
- rev = "012b3bca9fef526bfe8aac73763e2c0b9622e1da";
- sha256 = "02zj2g9wcs213kbd21n40ha3dbjqyclyr26wbayqwqq9dpm5i8kf";
+ rev = "502be58722262c5b9d779848a168b0dc67ee7471";
+ sha256 = "1cmj1ppi5v0q56mnym3x0zirpwm1673fm04cvpqzpahgs4nki73l";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/dash-functional";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/57eed8767c3e98614259c408dc0b5c54d3473883/recipes/dash-functional";
sha256 = "0hx36hs12mf4nmskaaqrqpcgwrfjdqj6qcxn6bwb0s5m2jf9hs8p";
name = "dash-functional";
};
@@ -10712,7 +10933,7 @@
date-at-point = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "date-at-point";
- version = "20150108.1318";
+ version = "20150108.618";
src = fetchFromGitHub {
owner = "alezost";
repo = "date-at-point.el";
@@ -10720,7 +10941,7 @@
sha256 = "0l4z9rjla4xvm2hmp07xil69q1cg0v8iff0ya41svaqr944qf7hf";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/date-at-point";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/a6dbeddd236f312fac1d5542dfd2edf81df8fad2/recipes/date-at-point";
sha256 = "0r26df6px6q5jlxj29nhl3qbp6kzy9hs5vd72kpiirgn4wlmagp0";
name = "date-at-point";
};
@@ -10733,7 +10954,7 @@
date-field = callPackage ({ dash, fetchFromGitHub, fetchurl, lib, log4e, melpaBuild, yaxception }:
melpaBuild {
pname = "date-field";
- version = "20141129.205";
+ version = "20141128.1905";
src = fetchFromGitHub {
owner = "aki2o";
repo = "emacs-date-field";
@@ -10741,7 +10962,7 @@
sha256 = "1lmwnj2fnvijj9qp4rjggl7c4x91vnpb47rqaam6m2wmr5wbrx3w";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/date-field";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/fe790729a67d2210cbccefce43805daa20db647d/recipes/date-field";
sha256 = "0fmw13sa4ajs1xkrkdpcjpbp0jl9d81cgvwh93myg8yjjn7wbmvk";
name = "date-field";
};
@@ -10754,7 +10975,7 @@
datetime = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "datetime";
- version = "20160521.2203";
+ version = "20160521.1503";
src = fetchFromGitHub {
owner = "doublep";
repo = "datetime";
@@ -10762,7 +10983,7 @@
sha256 = "0dz65zw7zi4kjldxs3syjxnss8kaf7hx0v6a22jplcsy35iai6xn";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/datetime";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/fff9f0748b0ef76130b24e85ed109325256f956e/recipes/datetime";
sha256 = "0mnkckibymc5dswmzd1glggna2fspk06ld71m7aaz6j78nfrm850";
name = "datetime";
};
@@ -10775,15 +10996,15 @@
datetime-format = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "datetime-format";
- version = "20160520.1222";
+ version = "20160612.1215";
src = fetchFromGitHub {
owner = "zonuexe";
repo = "emacs-datetime";
- rev = "3a1871613facc928ff250ed8f12fbc7073e46b75";
- sha256 = "0pabb260d3vcr57jqqxqk90vp2qnm63sky37rgvhv508zix2hbva";
+ rev = "e6427538b547cbe02e1bd6ed4b765c73620bdae8";
+ sha256 = "1573z8wq5m8qzbzmnsz2fmbwrj9c0ava0jjfchzmwm2b3jyvqh5r";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/datetime-format";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/e01f4589dbd8849638d4fc9bd765876987267439/recipes/datetime-format";
sha256 = "0v9jp54qxzj2scbmr35xi6bz16q8bq6hmyxdglb3a4qbf4zgvwpi";
name = "datetime-format";
};
@@ -10796,7 +11017,7 @@
datomic-snippets = callPackage ({ dash, fetchFromGitHub, fetchurl, lib, melpaBuild, s, yasnippet }:
melpaBuild {
pname = "datomic-snippets";
- version = "20130707.2215";
+ version = "20130707.1515";
src = fetchFromGitHub {
owner = "magnars";
repo = "datomic-snippets";
@@ -10804,7 +11025,7 @@
sha256 = "0ry7magy9x63xv2apjbpgszp0slch92g23gqwl4rd564qafajmf0";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/datomic-snippets";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/4da8ec133ec5e1204966c1b12c9bc0ca1b50d643/recipes/datomic-snippets";
sha256 = "0lax0pj4k9c9n0gmrvil240pc9p25535q3n5m8nb2ar4sli8dn8r";
name = "datomic-snippets";
};
@@ -10817,7 +11038,7 @@
dayone = callPackage ({ fetchFromGitHub, fetchurl, ht, lib, melpaBuild, mustache, uuid }:
melpaBuild {
pname = "dayone";
- version = "20160105.1340";
+ version = "20160105.640";
src = fetchFromGitHub {
owner = "mori-dev";
repo = "emacs-dayone";
@@ -10825,7 +11046,7 @@
sha256 = "1j0mk8vyr6sniliq0ix77jldx8vzl73nd5yhh82klzgyymal58ms";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/dayone";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/a7c34ae046b75994cf04d16642bf28d4645d1821/recipes/dayone";
sha256 = "0hi09dj00h6g5r84jxglwkgbijhfxknx4mq5gcl5jzjis5affk8l";
name = "dayone";
};
@@ -10838,7 +11059,7 @@
db = callPackage ({ fetchFromGitHub, fetchurl, kv, lib, melpaBuild }:
melpaBuild {
pname = "db";
- version = "20140421.2311";
+ version = "20140421.1611";
src = fetchFromGitHub {
owner = "nicferrier";
repo = "emacs-db";
@@ -10846,7 +11067,7 @@
sha256 = "0syv4kr319d34yqi4q61b8jh5yy22wvd148x1m3pc511znh2ry5k";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/db";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/79ac40439b65c217e1caaa7175d26556b6a6c889/recipes/db";
sha256 = "05jhga9n6gh1bmj8gda14sb703gn7jgjlvy55mlr5kdb2z3rqw1n";
name = "db";
};
@@ -10859,7 +11080,7 @@
db-pg = callPackage ({ db, fetchFromGitHub, fetchurl, lib, melpaBuild, pg }:
melpaBuild {
pname = "db-pg";
- version = "20130131.2002";
+ version = "20130131.1302";
src = fetchFromGitHub {
owner = "nicferrier";
repo = "emacs-db-pg";
@@ -10867,7 +11088,7 @@
sha256 = "15r0qwjkl33p8kh2k5kxz9wnbkv1k470b1h0i6svvljkx9ynk68a";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/db-pg";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/c4eb90ea7b8ed5c529c74c3faeaf3eac3955eb31/recipes/db-pg";
sha256 = "06nfibw01ijv7nr0m142y80jbbpg9kk1dh19s5wq7i6fqf7g08xg";
name = "db-pg";
};
@@ -10880,7 +11101,7 @@
ddskk = callPackage ({ ccc, cdb, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "ddskk";
- version = "20160315.1508";
+ version = "20160315.908";
src = fetchFromGitHub {
owner = "skk-dev";
repo = "ddskk";
@@ -10888,7 +11109,7 @@
sha256 = "1mqz83yqgad7p5ssjil10w0bw0vm642xp18ms4id8pzcbxz8ygsv";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ddskk";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/6eccccb79881eaa04af3ed6395cd2ab981d9c894/recipes/ddskk";
sha256 = "01pb00p126q7swsl12yjrhghln2wgaj65jhjr0k7dkk64x4psyc9";
name = "ddskk";
};
@@ -10901,7 +11122,7 @@
debpaste = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, xml-rpc }:
melpaBuild {
pname = "debpaste";
- version = "20160114.47";
+ version = "20160113.1747";
src = fetchFromGitHub {
owner = "alezost";
repo = "debpaste.el";
@@ -10909,7 +11130,7 @@
sha256 = "1darxggvyv100cfb7imyzvgif8a09pnky62pf3bl2612hhvaijfb";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/debpaste";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/13098bae76a3386689a9bf9c12f25b9a9b15145c/recipes/debpaste";
sha256 = "1vgirfy4vdqkhllnnmcplhwmzqqwca3la5jfvvansykqriwbq9lw";
name = "debpaste";
};
@@ -10922,7 +11143,7 @@
debug-print = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "debug-print";
- version = "20140126.119";
+ version = "20140125.1819";
src = fetchFromGitHub {
owner = "kenoss";
repo = "debug-print";
@@ -10930,7 +11151,7 @@
sha256 = "1n99nrp42slmyp5228d1nz174bysjn122jgs8fn1x0qxywg7jyxp";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/debug-print";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/aaaaa43f6ce7db654b651969797978164143b269/recipes/debug-print";
sha256 = "01dsqq2qdsbxny6j9dhvg770493awxjhk1m85c14ysgh6sl199rm";
name = "debug-print";
};
@@ -10943,7 +11164,7 @@
decide = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "decide";
- version = "20160314.2048";
+ version = "20160314.1448";
src = fetchFromGitHub {
owner = "lifelike";
repo = "decide-mode";
@@ -10951,7 +11172,7 @@
sha256 = "05n57djagbkm8im4168d5d2fr2ibfnckya7qzrca1f9rmm0ah15j";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/decide";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/6adcd300e2ac2c718989cf855fd7b3eef654df00/recipes/decide";
sha256 = "1gjkays48lhrifi9jwja5n2dpxjbl7f9rmka1nsqg9vf7s59vhhc";
name = "decide";
};
@@ -10964,15 +11185,15 @@
decl = callPackage ({ cl-lib ? null, dash, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "decl";
- version = "20160101.523";
+ version = "20160609.147";
src = fetchFromGitHub {
owner = "preetpalS";
repo = "decl.el";
- rev = "95cea9e09f3ee09a174ef72df025692b6e8a296d";
- sha256 = "01bafkc99g9vi45y95mi3sqin2lsfw885z63f7llpqvnfav86n4y";
+ rev = "84a8c4d78e83629fb3100abf5408bd108e4cfcef";
+ sha256 = "0s0zk2hy8mi46rz949i241qsiy0s4aywzb3j0ch69jf3i6qdxh59";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/decl";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/8c2ecd46180643a0c493e05ec86fe50bc1e55146/recipes/decl";
sha256 = "0wdhmp226wmrjvjgpbz8ihvhxxv3rrxh97sdqm3mgsav3n071n6k";
name = "decl";
};
@@ -10985,7 +11206,7 @@
dedicated = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "dedicated";
- version = "20090428.2131";
+ version = "20090428.1431";
src = fetchFromGitHub {
owner = "emacsorphanage";
repo = "dedicated";
@@ -10993,7 +11214,7 @@
sha256 = "0pba9s0h37sxyqh733vi6k5raa4cs7aradipf3826inw36jcw414";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/dedicated";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/5f2a50f62475639af011c99c6cc38928b74b3b0a/recipes/dedicated";
sha256 = "1ka8n02r3nd2ksbid23g2qd6707c7xsjx7lbbdi6pcmwam5mglw9";
name = "dedicated";
};
@@ -11006,7 +11227,7 @@
dedukti-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "dedukti-mode";
- version = "20160329.1902";
+ version = "20160329.1202";
src = fetchFromGitHub {
owner = "rafoo";
repo = "dedukti-mode";
@@ -11014,7 +11235,7 @@
sha256 = "1lnvr1rxgf1i0dh1gqlkghz6r4lm1llpv3vhky313220ibxrpsvm";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/dedukti-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/767a685fbe8ae86177e90a17dac3815d41d74df4/recipes/dedukti-mode";
sha256 = "17adfmrhfks5f45ddr6ygjq870ac50vfzc5872ycv414zg0w4sa9";
name = "dedukti-mode";
};
@@ -11027,7 +11248,7 @@
default-text-scale = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "default-text-scale";
- version = "20150227.1856";
+ version = "20150227.1156";
src = fetchFromGitHub {
owner = "purcell";
repo = "default-text-scale";
@@ -11035,7 +11256,7 @@
sha256 = "1ysv1q7n7k2l4x8x7hlzmxmawyxl5lx627sbdv3phkvjh5zccsm8";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/default-text-scale";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/db5e0b70e2d9c80aa41ae2c397f822789c2d3cc2/recipes/default-text-scale";
sha256 = "18r90ic38fnlsbg4gi3r962vban398x2bf3rqhrc6z4jk4aiv3mi";
name = "default-text-scale";
};
@@ -11048,7 +11269,7 @@
deferred = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "deferred";
- version = "20160110.546";
+ version = "20160109.2246";
src = fetchFromGitHub {
owner = "kiwanami";
repo = "emacs-deferred";
@@ -11056,7 +11277,7 @@
sha256 = "1br4yys803x3ng4vzhhvblhkqabs46lx8a3ajycqy555q20zqzrf";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/deferred";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/0e9a114d85f630648d05a7b552370fa8413da0c2/recipes/deferred";
sha256 = "0axbvxrdjgxk4d1bd9ar4r5nnacsi8r0d6649x7mnhqk12940mnr";
name = "deferred";
};
@@ -11069,7 +11290,7 @@
define-word = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "define-word";
- version = "20150709.2123";
+ version = "20150709.1423";
src = fetchFromGitHub {
owner = "abo-abo";
repo = "define-word";
@@ -11077,7 +11298,7 @@
sha256 = "02i621yq2ih0zp7mna8iykj41prv77hvcadz7rx8c942zyvjzxqd";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/define-word";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/e318b30d8b2b89981f4b89d78e5a46e77d3de412/recipes/define-word";
sha256 = "035fdfwnxw0mir1dyvrimygx2gafcgnvlcsmwmry1rsfh39n5b9a";
name = "define-word";
};
@@ -11090,7 +11311,7 @@
defproject = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "defproject";
- version = "20151201.2319";
+ version = "20151201.1619";
src = fetchFromGitHub {
owner = "kotfic";
repo = "defproject";
@@ -11098,7 +11319,7 @@
sha256 = "07jzr571q02l0lg5d40rnmzg16hmybi1nkjgslmvlx46z3c4xvyr";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/defproject";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/86465b351e668d6c19a6fc8e1b1a4aa7904cd139/recipes/defproject";
sha256 = "1gld2fkssrjh4smpp54017549d6aw3n1zisp5s4kkb6cmszwj5gm";
name = "defproject";
};
@@ -11110,14 +11331,14 @@
}) {};
deft = callPackage ({ fetchgit, fetchurl, lib, melpaBuild }: melpaBuild {
pname = "deft";
- version = "20160602.1639";
+ version = "20160610.1939";
src = fetchgit {
url = "git://jblevins.org/git/deft.git";
- rev = "a040f0490285410273f00e38fc7a26f0e9a9f109";
- sha256 = "01vfxkmjbvm8nck4rapxvz6ws2kw42ll9347pn4lmp3y3pann0q9";
+ rev = "59173ba0c048ead287dd1171a5a52ce53fd9a0cb";
+ sha256 = "12h6miqn3nmyhf7r5cm57fh9japv79mm6gyvlb3p0qw1zzlwnlcg";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/deft";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/4327b4dd464ebb00c2acdd496274dedf912cdf92/recipes/deft";
sha256 = "1c9kps0lw97nl567ynlzk4w719a86a18q697rcmrbrg5imdx4y5p";
name = "deft";
};
@@ -11129,13 +11350,13 @@
}) {};
delight = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild {
pname = "delight";
- version = "20160306.51";
+ version = "20160305.1751";
src = fetchurl {
url = "https://www.emacswiki.org/emacs/download/delight.el";
sha256 = "0lqg23mpzcbcfkn84wm8i1bma73wpyh3m5f0zjrrzbwpgsmw8fqd";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/delight";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/d8de1d5d7a862b32cc29bfa92fa4563b24704c64/recipes/delight";
sha256 = "1d9m5k18k73vhidwd50mcbq7mlvwdn4sb9ih8r5gri9a9whi2nkj";
name = "delight";
};
@@ -11148,7 +11369,7 @@
delim-kill = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "delim-kill";
- version = "20100517.820";
+ version = "20100517.120";
src = fetchFromGitHub {
owner = "thomas11";
repo = "delim-kill";
@@ -11156,7 +11377,7 @@
sha256 = "06a20sd8nc273azrgha40l1fbqvv9qmxsmkjiqbf6dcf1blkwjyf";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/delim-kill";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/cae2ac3513e371a256be0f1a7468e38e686c2487/recipes/delim-kill";
sha256 = "1pplc456771hi52ap1p87y7pabxlvm6raszcxjvnxff3xzw56pig";
name = "delim-kill";
};
@@ -11169,7 +11390,7 @@
demangle-mode = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "demangle-mode";
- version = "20151109.2153";
+ version = "20151109.1453";
src = fetchFromGitHub {
owner = "liblit";
repo = "demangle-mode";
@@ -11177,7 +11398,7 @@
sha256 = "13jfhc9gavvb9dxmgi3k7ivp5iwh4yw4m11r2s8wpwn6p056bmfl";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/demangle-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/6ced9f4ffb051a8474d3f72695156416cf2dd8be/recipes/demangle-mode";
sha256 = "0ky0bb6rc99vrdli4lhs656qjndnla9b7inc2ji9l4n1zki5qxzk";
name = "demangle-mode";
};
@@ -11190,7 +11411,7 @@
demo-it = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "demo-it";
- version = "20160525.1546";
+ version = "20160525.846";
src = fetchFromGitHub {
owner = "howardabrams";
repo = "demo-it";
@@ -11198,7 +11419,7 @@
sha256 = "12sdba2c2zh91cmv4p2naq9b2y6l7ygizb88l4m9g0jsvwx6brvs";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/demo-it";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/1dec5877db00c29d81d76be0ee2504399bad9cc4/recipes/demo-it";
sha256 = "063v115xy9mcga4qv16v538k12rn9maz92khzwa35wx56bwz4gg7";
name = "demo-it";
};
@@ -11211,7 +11432,7 @@
describe-number = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, yabin }:
melpaBuild {
pname = "describe-number";
- version = "20151101.155";
+ version = "20151031.1955";
src = fetchFromGitHub {
owner = "netromdk";
repo = "describe-number";
@@ -11219,7 +11440,7 @@
sha256 = "13fasbhdjwc4jh3cy25gm5sbbg56hq8la271098qpx6dhqm2wycq";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/describe-number";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/d5ed9063f7e9f540bc90c1df4e3604d4af9bcfe5/recipes/describe-number";
sha256 = "0gvriailni2ppz69g0bwnb1ik1ghjkj341k45vllz30j0frp9iji";
name = "describe-number";
};
@@ -11232,7 +11453,7 @@
desktop-plus = callPackage ({ dash, emacs, f, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "desktop-plus";
- version = "20160330.1512";
+ version = "20160330.812";
src = fetchFromGitHub {
owner = "ffevotte";
repo = "desktop-plus";
@@ -11240,7 +11461,7 @@
sha256 = "10f5dkrwfd6a1ab98j2kywkh1h01pnanvj2i7fv9a9vxnmiywrcf";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/desktop+";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/0b009b42c73490d56d4613dcf5a57447fb4ccab4/recipes/desktop+";
sha256 = "0w7i6k4814hwb19l7ly9yq59674xiw57ylrwxq7yprwx52sgs2r8";
name = "desktop-plus";
};
@@ -11253,7 +11474,7 @@
desktop-registry = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "desktop-registry";
- version = "20140119.2243";
+ version = "20140119.1543";
src = fetchFromGitHub {
owner = "ryuslash";
repo = "desktop-registry";
@@ -11261,7 +11482,7 @@
sha256 = "11qvhbz7149vqh61fgqqn4inw0ic6ib9lz2xgr9m54pdw9a901mp";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/desktop-registry";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/0fda2b54a0ff0b6fc3bd6d20cfcbbf63cae5380f/recipes/desktop-registry";
sha256 = "1sfj0w6hlrx37js63fn1v5xc9ngmahv07g42z68717md6w3c8g0v";
name = "desktop-registry";
};
@@ -11274,15 +11495,15 @@
devdocs = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "devdocs";
- version = "20160412.2108";
+ version = "20160607.740";
src = fetchFromGitHub {
owner = "xuchunyang";
repo = "devdocs.el";
- rev = "502ccc623b58c75ebefc10e41b8c635fc5d0baf9";
- sha256 = "0m4gw6jsdj8pq6wxvvczwvp8pcjnz57ybnb9zib4bq1cajny42zg";
+ rev = "1bff4bd406fc71199d9dcac503269f7aa8fcebe6";
+ sha256 = "0qxy4i9438jmbxbj980civ8csh507gri3q3bszg3s1wv966k69rz";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/devdocs";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/a54ff5faeefabf484ef175433cfc2b8317993f74/recipes/devdocs";
sha256 = "04a1yspk3dwx0lzyg03lrbvig4g6sqmavzwicshdyr7q1bny7ikn";
name = "devdocs";
};
@@ -11295,14 +11516,14 @@
dic-lookup-w3m = callPackage ({ fetchsvn, fetchurl, lib, melpaBuild, stem, w3m }:
melpaBuild {
pname = "dic-lookup-w3m";
- version = "20160427.1301";
+ version = "20160607.150";
src = fetchsvn {
url = "http://svn.osdn.jp/svnroot/dic-lookup-w3m/";
- rev = "84";
- sha256 = "0mv3vs91c73ybf7x9lwlfiv05cb8w42d86zzqzraivswljz2qfhk";
+ rev = "86";
+ sha256 = "1lks8wxwbri177p8ybkz5nakqpy24wqzpb3smqz04gr9ny07iagv";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/dic-lookup-w3m";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/6627b66fff02513ee467ed0f4436fb5cd400a81d/recipes/dic-lookup-w3m";
sha256 = "0zc0phym431bjqg0r8n5xsa98m52xnbhpqlh0jcvcy02nbmdc584";
name = "dic-lookup-w3m";
};
@@ -11315,7 +11536,7 @@
dictcc = callPackage ({ cl-lib ? null, dash, emacs, fetchFromGitHub, fetchurl, helm, lib, melpaBuild, s }:
melpaBuild {
pname = "dictcc";
- version = "20151221.1257";
+ version = "20151221.557";
src = fetchFromGitHub {
owner = "cqql";
repo = "dictcc.el";
@@ -11323,7 +11544,7 @@
sha256 = "0b8yg03h5arfl5rlzlg2a6q7nhx452mdyngizjzxlvkmrqnlra4v";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/dictcc";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/5e867df96915a0c4f22fdccd4e2096878895bda6/recipes/dictcc";
sha256 = "0x1y742hb3dm7xmh5810dlqki38kybw68rmg9adcchm2rn86jqlm";
name = "dictcc";
};
@@ -11336,7 +11557,7 @@
dictionary = callPackage ({ connection, fetchFromGitHub, fetchurl, lib, link, melpaBuild }:
melpaBuild {
pname = "dictionary";
- version = "20140718.529";
+ version = "20140717.2229";
src = fetchFromGitHub {
owner = "myrkr";
repo = "dictionary-el";
@@ -11344,7 +11565,7 @@
sha256 = "0gz03hji6mcrzvxd74qim63g159sc8ggb6hq3x42x5l01g980fbm";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/dictionary";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/5b08ed7b90e3283e177eff57cb02b12a093dc258/recipes/dictionary";
sha256 = "0zr9sm5rmr0frxdr0za72wiffip9391fn9dm5y5x0aj1z4c1n28w";
name = "dictionary";
};
@@ -11357,15 +11578,15 @@
diff-hl = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "diff-hl";
- version = "20160518.131";
+ version = "20160622.2016";
src = fetchFromGitHub {
owner = "dgutov";
repo = "diff-hl";
- rev = "4925dde3996db902398b771b568072373e337fa4";
- sha256 = "1rlgyw1c0xz0vw10pq2wnczl5r2qhm5fcilmysvlfcq0nxcsd80q";
+ rev = "e93367512080e540dc5dd126dfcb38b4a5e9415b";
+ sha256 = "03pvh213w0sgyvv0xrkj43bs53p2xfr7162yhzdh24qwa8dd23qv";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/diff-hl";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/cf8fc25abd2fb91ec6a6ba951d89a19ca4f5571f/recipes/diff-hl";
sha256 = "0kw0v9xcqidhf26qzrqwdlav2zhq32xx91k7akd2536jpji5pbn6";
name = "diff-hl";
};
@@ -11378,7 +11599,7 @@
diffscuss-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "diffscuss-mode";
- version = "20141015.157";
+ version = "20141014.1857";
src = fetchFromGitHub {
owner = "hut8labs";
repo = "diffscuss";
@@ -11386,7 +11607,7 @@
sha256 = "14ccak3cmv36pd085188lypal9gd3flyikcrxn0wi6hn60w2dgvr";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/diffscuss-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/17f89560f98f11810205ba58841cd5566766b436/recipes/diffscuss-mode";
sha256 = "06jd7wh4yzryz0yjwa4a0xddz7srl5mif8ff1wvcpxsb66m2zbvh";
name = "diffscuss-mode";
};
@@ -11399,7 +11620,7 @@
diffview = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "diffview";
- version = "20150929.711";
+ version = "20150929.11";
src = fetchFromGitHub {
owner = "mgalgs";
repo = "diffview-mode";
@@ -11407,7 +11628,7 @@
sha256 = "0diw887x4q7kbgdvxbbnxdw51z33kqwxw3v9m45fczxbywyi4cxf";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/diffview";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/0ea5dd4c9c114618ac20f565c878f509ce8d9872/recipes/diffview";
sha256 = "0vlzmykvxjwjww313brl1nr13kz41jypsk0s3l8q3rbsnkpfic5k";
name = "diffview";
};
@@ -11420,7 +11641,7 @@
digistar-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "digistar-mode";
- version = "20160218.2055";
+ version = "20160218.1355";
src = fetchFromGitHub {
owner = "retroj";
repo = "digistar-mode";
@@ -11428,7 +11649,7 @@
sha256 = "0qxdfv1p0140fqcxh677hhxwpx1fihvwhvh76pysn4q4pcfr6ldr";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/digistar-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/851fa17152b664df99b80a654e5c055bb5227181/recipes/digistar-mode";
sha256 = "0khzxlrm09h31i1nqz6rnzhrdssb3kppc4klpxza612l306fih0s";
name = "digistar-mode";
};
@@ -11441,7 +11662,7 @@
dim = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "dim";
- version = "20151226.1015";
+ version = "20151226.315";
src = fetchFromGitHub {
owner = "alezost";
repo = "dim.el";
@@ -11449,7 +11670,7 @@
sha256 = "17jfmgyras32w9xr8fldqj924bijgng4bjg9fy6ckwb3mgihyil8";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/dim";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/3a740ab40cab3a1890f56df808f41a2d541aa77c/recipes/dim";
sha256 = "0gsyily47g3g55qmhp1wzfz319l1pkgjz4lbigafjzlzqxyclz52";
name = "dim";
};
@@ -11462,7 +11683,7 @@
dim-autoload = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "dim-autoload";
- version = "20160521.1628";
+ version = "20160521.928";
src = fetchFromGitHub {
owner = "tarsius";
repo = "dim-autoload";
@@ -11470,7 +11691,7 @@
sha256 = "0jn3hwnqg455fz85m79mbwsiv93ps4sfr1fcfjfwj3qhhbhq7d82";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/dim-autoload";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/66b1a81dfd09a2859ae996d5d8e3d704857a340f/recipes/dim-autoload";
sha256 = "0lhzzjrgfvbqnzwhjywrk3skdb7x10xdq7d21q6kdk3h5r0np9f9";
name = "dim-autoload";
};
@@ -11483,7 +11704,7 @@
diminish = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "diminish";
- version = "20151215.1815";
+ version = "20151215.1115";
src = fetchFromGitHub {
owner = "myrjola";
repo = "diminish.el";
@@ -11491,7 +11712,7 @@
sha256 = "04vfc5zgcjp0pax5zk1x98ivx5g349c5g3748lb9pgsijqaprgg4";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/diminish";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/1bfb4acb381cada46458cf60eae9b88d007294d5/recipes/diminish";
sha256 = "1h6a31jllypk47akjflz89xk6h47na96pim17d6g4rpqcafc2k43";
name = "diminish";
};
@@ -11504,7 +11725,7 @@
dionysos = callPackage ({ alert, cl-lib ? null, dash, fetchFromGitHub, fetchurl, lib, libmpdee, melpaBuild, pkg-info, s }:
melpaBuild {
pname = "dionysos";
- version = "20151013.1003";
+ version = "20151013.303";
src = fetchFromGitHub {
owner = "nlamirault";
repo = "dionysos";
@@ -11512,7 +11733,7 @@
sha256 = "1ldqxdwy6r0fd2vh0ckkhgpincvybghavi8c7vvyd24j91i57y2f";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/dionysos";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/890445eca3c555acd2639a6f509c8e83b687f2bd/recipes/dionysos";
sha256 = "1wjgj74dnlwd79gc3l7ymbx75jka8rw9smzbb10dsfppw3rrzfmz";
name = "dionysos";
};
@@ -11525,7 +11746,7 @@
dircmp = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "dircmp";
- version = "20141204.1856";
+ version = "20141204.1156";
src = fetchFromGitHub {
owner = "matthewlmcclure";
repo = "dircmp-mode";
@@ -11533,7 +11754,7 @@
sha256 = "0mcsfsybpsxhzkd2m9bzc0np49azm6qf5x4x9h9lbxc8vfgh4z8s";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/dircmp";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/b146db5977003cb48bc37317f3df19b8a8c7fc30/recipes/dircmp";
sha256 = "0cnj7b0s8vc83sh9sai1cldw54krk5qbz1qmlvvd1whryf2pc95c";
name = "dircmp";
};
@@ -11546,7 +11767,7 @@
dired-atool = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "dired-atool";
- version = "20160208.1333";
+ version = "20160208.633";
src = fetchFromGitHub {
owner = "HKey";
repo = "dired-atool";
@@ -11554,7 +11775,7 @@
sha256 = "06m2p5sf47ykhkl958x4k0j0rxzrq0wfwf86mvnarlgc1215dbaf";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/dired-atool";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/dired-atool";
sha256 = "0qljx6fmz1hal9r2smjyc957wcvcpg16vp5mv65ip6d26k5qsj0w";
name = "dired-atool";
};
@@ -11567,7 +11788,7 @@
dired-avfs = callPackage ({ dash, dired-hacks-utils, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "dired-avfs";
- version = "20160526.2236";
+ version = "20160526.1536";
src = fetchFromGitHub {
owner = "Fuco1";
repo = "dired-hacks";
@@ -11575,7 +11796,7 @@
sha256 = "1hrfm139c1g1pkpclx491qj9rjlms7g873wds7n4dqiq2mlm1rp7";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/dired-avfs";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/568e524b7bdf91b31655bdbb30fe9481d7a0ffbf/recipes/dired-avfs";
sha256 = "1q42pvrpmd525887iicd3m5gw4w2a78xb72v7fjfl30ay1kir4bm";
name = "dired-avfs";
};
@@ -11587,13 +11808,13 @@
}) {};
dired-details = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild {
pname = "dired-details";
- version = "20130824.1358";
+ version = "20130824.658";
src = fetchurl {
url = "https://www.emacswiki.org/emacs/download/dired-details.el";
sha256 = "1ddrhj1kw0wl7jbs9jn067vfffsvqhz4izfw9f7ihxz34fdl2iza";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/dired-details";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/8ed2327efe099420e53e7275eefeef74842068e8/recipes/dired-details";
sha256 = "1390vl3i4qbnl7lbia98wznhf6x887d24f8p7146fpqjsiwbm5ck";
name = "dired-details";
};
@@ -11606,13 +11827,13 @@
dired-details-plus = callPackage ({ dired-details, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "dired-details-plus";
- version = "20151231.2150";
+ version = "20151231.1450";
src = fetchurl {
url = "https://www.emacswiki.org/emacs/download/dired-details+.el";
sha256 = "07z4h5l8763ks6b6m8dcmq78jiyq4xvan1mb0z8fbasmi1bsrya4";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/dired-details+";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/0b6a13a5dfd977979d3185139000e7a639d32ec4/recipes/dired-details+";
sha256 = "1gzr3z4nyzip299z08mignhigxr7drak7rv9z6gmdjrika9a29lx";
name = "dired-details-plus";
};
@@ -11625,7 +11846,7 @@
dired-dups = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "dired-dups";
- version = "20130527.2325";
+ version = "20130527.1625";
src = fetchFromGitHub {
owner = "vapniks";
repo = "dired-dups";
@@ -11633,7 +11854,7 @@
sha256 = "1lcmpzwj43gix2q56bh2gw3gfqh8vl5j3mqr8s7v3k0aw816j0ni";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/dired-dups";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/6d01ad74959e17b5708ba9fa6a4958d4cda4e232/recipes/dired-dups";
sha256 = "05s02gw8b339yvsr7vvka1r2140y7mbjzs8px4kn4acgb5y7rk71";
name = "dired-dups";
};
@@ -11646,7 +11867,7 @@
dired-efap = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "dired-efap";
- version = "20140122.1756";
+ version = "20140122.1056";
src = fetchFromGitHub {
owner = "juan-leon";
repo = "dired-efap";
@@ -11654,7 +11875,7 @@
sha256 = "0jj9da880b4zwxba140fldai1x9p2sxc6hdf3wz6lnbvz1pyn1mv";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/dired-efap";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/5669ca2adc48f3349eb59276850e6174e37f9de7/recipes/dired-efap";
sha256 = "01j5v6584qi8ia7zmk03kx3i3kmm6hn6ycfgqlh5va6lp2h9sr00";
name = "dired-efap";
};
@@ -11667,7 +11888,7 @@
dired-fdclone = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "dired-fdclone";
- version = "20150417.1032";
+ version = "20150417.332";
src = fetchFromGitHub {
owner = "knu";
repo = "dired-fdclone.el";
@@ -11675,7 +11896,7 @@
sha256 = "1lnqjkbzryv655n16xj1c5bxck2jb5ccy8yckz1wp5yikkr06ba8";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/dired-fdclone";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/8a0ddc10b11772d72a473e8d24ab4641bf4239a4/recipes/dired-fdclone";
sha256 = "11aikq2q3m9h4zpgl24f8npvpwd98jgh8ygjwy2x5q8as8i89vf9";
name = "dired-fdclone";
};
@@ -11688,7 +11909,7 @@
dired-filetype-face = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "dired-filetype-face";
- version = "20160217.947";
+ version = "20160217.247";
src = fetchFromGitHub {
owner = "jixiuf";
repo = "dired-filetype-face";
@@ -11696,7 +11917,7 @@
sha256 = "06hxcxgivxds42qilraqa6q1mlrhkn21w2adb1dg70p8qyrjqfk6";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/dired-filetype-face";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/4e6c8015af3d5f013272308a97e089a4e3ca847d/recipes/dired-filetype-face";
sha256 = "1g9wzkkqmlkxlxwx43446q9mlam035zwq0wzpf7m6394rw2xlwx6";
name = "dired-filetype-face";
};
@@ -11709,7 +11930,7 @@
dired-filter = callPackage ({ cl-lib ? null, dash, dired-hacks-utils, f, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "dired-filter";
- version = "20160526.2236";
+ version = "20160526.1536";
src = fetchFromGitHub {
owner = "Fuco1";
repo = "dired-hacks";
@@ -11717,7 +11938,7 @@
sha256 = "1hrfm139c1g1pkpclx491qj9rjlms7g873wds7n4dqiq2mlm1rp7";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/dired-filter";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/568e524b7bdf91b31655bdbb30fe9481d7a0ffbf/recipes/dired-filter";
sha256 = "1mw94210i57wrqfyif6rh689xbwbpv1qp6bgc0j7z6g4xypvd52p";
name = "dired-filter";
};
@@ -11730,7 +11951,7 @@
dired-hacks-utils = callPackage ({ dash, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "dired-hacks-utils";
- version = "20160527.2336";
+ version = "20160527.1636";
src = fetchFromGitHub {
owner = "Fuco1";
repo = "dired-hacks";
@@ -11738,7 +11959,7 @@
sha256 = "1hrfm139c1g1pkpclx491qj9rjlms7g873wds7n4dqiq2mlm1rp7";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/dired-hacks-utils";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/568e524b7bdf91b31655bdbb30fe9481d7a0ffbf/recipes/dired-hacks-utils";
sha256 = "1vgl0wqf7gc2nbiqjn0rkrdlnxfm3wrgspx5b3cixv2n8rqx8kyi";
name = "dired-hacks-utils";
};
@@ -11751,7 +11972,7 @@
dired-imenu = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "dired-imenu";
- version = "20140109.1710";
+ version = "20140109.1010";
src = fetchFromGitHub {
owner = "DamienCassou";
repo = "dired-imenu";
@@ -11759,7 +11980,7 @@
sha256 = "088h9yn6wndq4pq6f7q4iz17f9f4ci29z9nh595idljp3vwr7qid";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/dired-imenu";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/e346de86b7f7fd5dad548f0936cde54ac11e3f79/recipes/dired-imenu";
sha256 = "09yix4fkr03jq6j2rmvyg6gkmcnraw49a8m9649r3m525qdnhxs1";
name = "dired-imenu";
};
@@ -11772,7 +11993,7 @@
dired-k = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "dired-k";
- version = "20160331.413";
+ version = "20160330.2113";
src = fetchFromGitHub {
owner = "syohex";
repo = "emacs-dired-k";
@@ -11780,7 +12001,7 @@
sha256 = "1bg7msz672rp2l490l3wm99i18b30r6033yfkrq6ia742nagn040";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/dired-k";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/7f8a828b2fbfa11c4b74192d9d0cfa0ad34b3da7/recipes/dired-k";
sha256 = "0lghdmy9qcjykscfxvfrz8cpp87qc0vfd03vw8nfpvwcs2sd28i8";
name = "dired-k";
};
@@ -11793,7 +12014,7 @@
dired-narrow = callPackage ({ dash, dired-hacks-utils, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "dired-narrow";
- version = "20160130.1745";
+ version = "20160130.1045";
src = fetchFromGitHub {
owner = "Fuco1";
repo = "dired-hacks";
@@ -11801,7 +12022,7 @@
sha256 = "1hrfm139c1g1pkpclx491qj9rjlms7g873wds7n4dqiq2mlm1rp7";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/dired-narrow";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/8994330f90a925df17ae425ccdc87865df8e19cd/recipes/dired-narrow";
sha256 = "1rgqiscbizalh78jwc53zbj599dd13a6vzdgf75vzllc1w7jsg6d";
name = "dired-narrow";
};
@@ -11814,7 +12035,7 @@
dired-open = callPackage ({ dash, dired-hacks-utils, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "dired-open";
- version = "20160205.2113";
+ version = "20160205.1413";
src = fetchFromGitHub {
owner = "Fuco1";
repo = "dired-hacks";
@@ -11822,7 +12043,7 @@
sha256 = "1hrfm139c1g1pkpclx491qj9rjlms7g873wds7n4dqiq2mlm1rp7";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/dired-open";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/568e524b7bdf91b31655bdbb30fe9481d7a0ffbf/recipes/dired-open";
sha256 = "0a4ksz2jkva4gvhprywjc1fzrbf95xdk8gn25nv1h1c1ckhr91qx";
name = "dired-open";
};
@@ -11834,13 +12055,13 @@
}) {};
dired-plus = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild {
pname = "dired-plus";
- version = "20160528.1648";
+ version = "20160528.948";
src = fetchurl {
url = "https://www.emacswiki.org/emacs/download/dired+.el";
sha256 = "0wi2ph2ixsk6cjw81yxlqxl9ar0wh3k0yfwijr254yn9rl4vibxc";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/dired+";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/4327b4dd464ebb00c2acdd496274dedf912cdf92/recipes/dired+";
sha256 = "1dmp6wcynran03nsa0fd26b9q0zj9wp8ngaafx1i1ybwn2gx32g5";
name = "dired-plus";
};
@@ -11853,15 +12074,15 @@
dired-quick-sort = callPackage ({ fetchFromGitLab, fetchurl, hydra, lib, melpaBuild }:
melpaBuild {
pname = "dired-quick-sort";
- version = "20160524.1238";
+ version = "20160524.538";
src = fetchFromGitLab {
owner = "xuhdev";
repo = "dired-quick-sort";
- rev = "d6417677c471f3d19c60c64e8079753e698c6f72";
- sha256 = "14mbvqb692bc5q04qb1i7z2bjrgrfny71j2laq6pr3cvf1w8lj7r";
+ rev = "f819be0bc67d8e8593fbbf71f1117b3e4fa33c27";
+ sha256 = "12xcck2hypw13r522naghmfjpykld11ahyz9rqfz6qh8dnv2j234";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/dired-quick-sort";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/4d278178128deb03a7b1d2e586dc38da2c7af857/recipes/dired-quick-sort";
sha256 = "01vrk3wqq2zmcblyp9abi2lvrzr2a5ca8r8gjjnr5223037ppl3l";
name = "dired-quick-sort";
};
@@ -11874,7 +12095,7 @@
dired-rainbow = callPackage ({ dash, dired-hacks-utils, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "dired-rainbow";
- version = "20141214.1443";
+ version = "20141214.743";
src = fetchFromGitHub {
owner = "Fuco1";
repo = "dired-hacks";
@@ -11882,7 +12103,7 @@
sha256 = "1hrfm139c1g1pkpclx491qj9rjlms7g873wds7n4dqiq2mlm1rp7";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/dired-rainbow";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/568e524b7bdf91b31655bdbb30fe9481d7a0ffbf/recipes/dired-rainbow";
sha256 = "1b9yh8p2x1dg7dyqhjhnqqiiymyl6bwsam65j0lpvbdx8r4iw882";
name = "dired-rainbow";
};
@@ -11895,7 +12116,7 @@
dired-ranger = callPackage ({ dash, dired-hacks-utils, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "dired-ranger";
- version = "20160528.1931";
+ version = "20160528.1231";
src = fetchFromGitHub {
owner = "Fuco1";
repo = "dired-hacks";
@@ -11903,7 +12124,7 @@
sha256 = "1hrfm139c1g1pkpclx491qj9rjlms7g873wds7n4dqiq2mlm1rp7";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/dired-ranger";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/c03f6f8c779c8784f52adb20b266404cb537113a/recipes/dired-ranger";
sha256 = "19lbbzqflqda5b0alqfzdhpbgqssghqb4n4viq8x4l1fac8mby6h";
name = "dired-ranger";
};
@@ -11916,7 +12137,7 @@
dired-single = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "dired-single";
- version = "20151231.258";
+ version = "20151230.1958";
src = fetchFromGitHub {
owner = "crocket";
repo = "dired-single";
@@ -11924,7 +12145,7 @@
sha256 = "01xvaqckyr31ywsn1fp9sz9wq4h4dd1hgghfqypc9s4akrxmgnf2";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/dired-single";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/41669decbb7ad5c4dbe152a863f16d87e7bba493/recipes/dired-single";
sha256 = "13h8dsn7bkz8ji2rrb7vyrqb2znxarpiynqi65mfli7dn5k086vf";
name = "dired-single";
};
@@ -11936,13 +12157,13 @@
}) {};
dired-sort = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild {
pname = "dired-sort";
- version = "20090209.538";
+ version = "20090208.2238";
src = fetchurl {
url = "https://www.emacswiki.org/emacs/download/dired-sort.el";
sha256 = "1dpxkxxfs14sdm3hwxv0j26lq0qzx4gryw42vrcdi680aj24962z";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/dired-sort";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/f1e4cd8274cdec74a9867060f72ec2025ed0150d/recipes/dired-sort";
sha256 = "1dzy2601yikmmbfqivf9s5xi4vd1f5g3c53f8rc74kfnxr1qn59x";
name = "dired-sort";
};
@@ -11954,13 +12175,13 @@
}) {};
dired-sort-menu = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild {
pname = "dired-sort-menu";
- version = "20130824.1407";
+ version = "20130824.707";
src = fetchurl {
url = "https://www.emacswiki.org/emacs/download/dired-sort-menu.el";
sha256 = "1i42r7j1c8677qf79ig33bia24d2yvcj26y92migfvrlbi03w4qi";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/dired-sort-menu";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/a5d15f875b0080b12ce45cf696c581f6bbf061ba/recipes/dired-sort-menu";
sha256 = "0n7zh8s3vdw3pcax8wkas9rykf917wn2dzikdlyrl5bbil9ijblb";
name = "dired-sort-menu";
};
@@ -11973,13 +12194,13 @@
dired-sort-menu-plus = callPackage ({ dired-sort-menu, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "dired-sort-menu-plus";
- version = "20151231.2151";
+ version = "20151231.1451";
src = fetchurl {
url = "https://www.emacswiki.org/emacs/download/dired-sort-menu+.el";
sha256 = "1hjci4zfzig04ji1jravxg9n67rdr4wyhmxmahbrzq9kjnql510i";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/dired-sort-menu+";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/a5d15f875b0080b12ce45cf696c581f6bbf061ba/recipes/dired-sort-menu+";
sha256 = "19ah8qgbfdvyhfszdr6hlw8l01lbdb84vf5snldw8qh3x6lw8cfq";
name = "dired-sort-menu-plus";
};
@@ -11992,7 +12213,7 @@
dired-subtree = callPackage ({ dash, dired-hacks-utils, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "dired-subtree";
- version = "20150908.1933";
+ version = "20150908.1233";
src = fetchFromGitHub {
owner = "Fuco1";
repo = "dired-hacks";
@@ -12000,7 +12221,7 @@
sha256 = "1hrfm139c1g1pkpclx491qj9rjlms7g873wds7n4dqiq2mlm1rp7";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/dired-subtree";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/d6a947ac9476f10b95a3c153ec784d2a8330dd4c/recipes/dired-subtree";
sha256 = "1vqcnkh3g6dwi2hwfkb534q0j19pkqzqk3yb7ah8ck4z4ln4ppfk";
name = "dired-subtree";
};
@@ -12013,7 +12234,7 @@
dired-toggle = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "dired-toggle";
- version = "20140907.2249";
+ version = "20140907.1549";
src = fetchFromGitHub {
owner = "fasheng";
repo = "dired-toggle";
@@ -12021,7 +12242,7 @@
sha256 = "1yx20h16hc1b04knsqhrxni0j8qgwnq7i5b0dlggq3dakcvqfxma";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/dired-toggle";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/17ae4c5ff42e0c48e53d93c88853f649f59034e6/recipes/dired-toggle";
sha256 = "18v571kp440n5g1d7pj86rr8dgbbm324f9vblkdbdvn13c5dczf5";
name = "dired-toggle";
};
@@ -12034,7 +12255,7 @@
dired-toggle-sudo = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "dired-toggle-sudo";
- version = "20151109.1106";
+ version = "20151109.406";
src = fetchFromGitHub {
owner = "renard";
repo = "dired-toggle-sudo";
@@ -12042,7 +12263,7 @@
sha256 = "0ajj8d6k5in2hclcrqckinfh80ylddplva0ryfbkzsjkfq167cv2";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/dired-toggle-sudo";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/5cdee2d52c0c53566fdd77a5d42edf365764acff/recipes/dired-toggle-sudo";
sha256 = "0fy05af9aq9791ij4j9pscdk5j44pbg0kmhpqli41qiazjw7v2va";
name = "dired-toggle-sudo";
};
@@ -12055,7 +12276,7 @@
diredful = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "diredful";
- version = "20160529.2217";
+ version = "20160529.1517";
src = fetchFromGitHub {
owner = "thamer";
repo = "diredful";
@@ -12063,7 +12284,7 @@
sha256 = "1h2hnm8r3anfbk5x7d2dnv38bdllsbwaam6ivpbgzn12r23wrsr2";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/diredful";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/76f3d178e7c3982b53c7ee0096c839397534d732/recipes/diredful";
sha256 = "0y8x6q1yfsk0srxsh4g5nbsms1g9pk9d103jx7cfdac79mcigw7x";
name = "diredful";
};
@@ -12076,7 +12297,7 @@
direx = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "direx";
- version = "20151024.106";
+ version = "20151023.1806";
src = fetchFromGitHub {
owner = "m2ym";
repo = "direx-el";
@@ -12084,7 +12305,7 @@
sha256 = "0mis3m6lg3vlvp8qm8iajprgx3pm3gcbhdszsm9mvrcgkahdjqnr";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/direx";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/a4b0903466d63b1c87abc002b0e064e36a8cddd3/recipes/direx";
sha256 = "1x3rnrhhyrrvgry9n7kc0734la1zp4gc4bpy50f2qpfd452jwqdm";
name = "direx";
};
@@ -12097,7 +12318,7 @@
direx-grep = callPackage ({ direx, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "direx-grep";
- version = "20140515.1706";
+ version = "20140515.1006";
src = fetchFromGitHub {
owner = "aki2o";
repo = "direx-grep";
@@ -12105,7 +12326,7 @@
sha256 = "0swdh0qynpijsv6a2d308i42hfa0jwqsnmf4sm8vrhaf3vv25f5h";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/direx-grep";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/6a88a29090a0d6c636f4aeb5214433db66367d9e/recipes/direx-grep";
sha256 = "0y2wrzq06prm55akwgaqjg56znknyvbayav13asirqzg258skvm2";
name = "direx-grep";
};
@@ -12118,13 +12339,13 @@
dirtree = callPackage ({ fetchurl, lib, melpaBuild, tree-mode, windata }:
melpaBuild {
pname = "dirtree";
- version = "20140129.932";
+ version = "20140129.232";
src = fetchurl {
url = "https://www.emacswiki.org/emacs/download/dirtree.el";
sha256 = "1q03q4j0wkbg9p2nzf1kb7l517b21mskp2v52i95jbxh09igbjjx";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/dirtree";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/343a34103fd435e01bb64e90536cc1e4da4e83c4/recipes/dirtree";
sha256 = "0wfz9ks5iha2n0rya9yjmrb6f9lhp620iaqi92lw9smm7w83zj29";
name = "dirtree";
};
@@ -12137,7 +12358,7 @@
dirtree-prosjekt = callPackage ({ dirtree, fetchFromGitHub, fetchurl, lib, melpaBuild, prosjekt }:
melpaBuild {
pname = "dirtree-prosjekt";
- version = "20140129.1004";
+ version = "20140129.304";
src = fetchFromGitHub {
owner = "abingham";
repo = "prosjekt";
@@ -12145,7 +12366,7 @@
sha256 = "1m8zvrv5aws7b0dffk8y6b5mncdk2c4k90mx69jys10fs0gc5hb3";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/dirtree-prosjekt";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/6d359ec827573dd8c871c4f23df5d1737f1830e7/recipes/dirtree-prosjekt";
sha256 = "0pyb6c0gvc16z5rc5h0kpl8021hz2hzv86cmjsd20gbhz7imrqwk";
name = "dirtree-prosjekt";
};
@@ -12155,10 +12376,31 @@
license = lib.licenses.free;
};
}) {};
+ disable-mouse = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
+ melpaBuild {
+ pname = "disable-mouse";
+ version = "20160630.2103";
+ src = fetchFromGitHub {
+ owner = "purcell";
+ repo = "disable-mouse";
+ rev = "3b8681b099eb0c3af6078fa0e479d0d0ce6686ad";
+ sha256 = "0k65jddjd0xbm91fzjll8j69qd4ql9qz47x2mdhb2xc344kdwp9x";
+ };
+ recipeFile = fetchurl {
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/dbbc396373212fdf731e135cde391f27708ff015/recipes/disable-mouse";
+ sha256 = "0c0ps39s6wg3grspvgck0cwxnas73nfaahfa87l0mmgsrsvas5m7";
+ name = "disable-mouse";
+ };
+ packageRequires = [];
+ meta = {
+ homepage = "https://melpa.org/#/disable-mouse";
+ license = lib.licenses.free;
+ };
+ }) {};
disaster = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "disaster";
- version = "20130509.1955";
+ version = "20130509.1255";
src = fetchFromGitHub {
owner = "jart";
repo = "disaster";
@@ -12166,7 +12408,7 @@
sha256 = "1srlz63pncxndh1kmb6dl5sxaanspxa444wg998dld3dkdflwavq";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/disaster";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/a4654b3646b96f967e2c75440e664a417cd0f517/recipes/disaster";
sha256 = "1ad8q81n0s13cwmm216wqx3s92195pda1amc4wxvpb3lq7dbd3yn";
name = "disaster";
};
@@ -12179,7 +12421,7 @@
discover = callPackage ({ fetchFromGitHub, fetchurl, lib, makey, melpaBuild }:
melpaBuild {
pname = "discover";
- version = "20140103.2239";
+ version = "20140103.1539";
src = fetchFromGitHub {
owner = "mickeynp";
repo = "discover.el";
@@ -12187,7 +12429,7 @@
sha256 = "0f7h2rhh37lrs6xclj182li6s1fawv5m8w3hgy6qgm06dam45lka";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/discover";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/688e32e98758aa6fd31218e98608bd54a76c3e83/recipes/discover";
sha256 = "1hf57p90jn1zzhjl63zv9ascbgkcbr0p0zmd3fvzpjsw84235dga";
name = "discover";
};
@@ -12200,7 +12442,7 @@
discover-clj-refactor = callPackage ({ clj-refactor, discover, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "discover-clj-refactor";
- version = "20150328.1559";
+ version = "20150328.959";
src = fetchFromGitHub {
owner = "maio";
repo = "discover-clj-refactor.el";
@@ -12208,7 +12450,7 @@
sha256 = "0l2g58f55p8zmzv2q2hf163ggm9p0wk8hg93wlkyldrgyb94dgf4";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/discover-clj-refactor";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/3311371cadf00b00bfbece4e4b2f96c226f0e27d/recipes/discover-clj-refactor";
sha256 = "08bz60fxcgzab77690mmv0f7wdxcpygmasazcss427k37z9ysm7r";
name = "discover-clj-refactor";
};
@@ -12221,7 +12463,7 @@
discover-js2-refactor = callPackage ({ discover, fetchFromGitHub, fetchurl, js2-refactor, lib, melpaBuild }:
melpaBuild {
pname = "discover-js2-refactor";
- version = "20140129.1652";
+ version = "20140129.952";
src = fetchFromGitHub {
owner = "NicolasPetton";
repo = "discover-js2-refactor";
@@ -12229,7 +12471,7 @@
sha256 = "1vnbn4asz3lifscvy4shzisl6r0gkgq0qsa3kpgif3853wcd2rvn";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/discover-js2-refactor";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/b84129a8a90f8f66a513c11c299e0acb5f3fbd3a/recipes/discover-js2-refactor";
sha256 = "139zq66cpcn4dnidf22h7x88p812ywrrz4c3c62w3915b75f71ki";
name = "discover-js2-refactor";
};
@@ -12242,7 +12484,7 @@
discover-my-major = callPackage ({ fetchFromGitHub, fetchurl, lib, makey, melpaBuild }:
melpaBuild {
pname = "discover-my-major";
- version = "20160108.1941";
+ version = "20160108.1241";
src = fetchFromGitHub {
owner = "steckerhalter";
repo = "discover-my-major";
@@ -12250,7 +12492,7 @@
sha256 = "0b73nc4jkf9bggnlp0l34jfcgx91vxbpavz6bpnf5rjvm0v1bil9";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/discover-my-major";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/274185fa94a3442c56593f3c8b99bdc6b9bd4994/recipes/discover-my-major";
sha256 = "0ch2y4grdjp7pvw2kxqnqdl7jd3q609n3pm3r0gn6k0xmcw85fgg";
name = "discover-my-major";
};
@@ -12262,13 +12504,13 @@
}) {};
disk = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild {
pname = "disk";
- version = "20081128.1606";
+ version = "20081128.906";
src = fetchurl {
url = "https://www.emacswiki.org/emacs/download/disk.el";
sha256 = "1c0pgqvl1z2f5hprszln53pn2v2pqy110r3wx3g84v71w6378bbv";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/disk";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/edcafb4c459cf51fecc7c43a3e4dcbe377d68b46/recipes/disk";
sha256 = "0bij9gr4zv6jmc6dwsy3lb06vsxvmyzl8xrm8wzasxisk1qd2l6n";
name = "disk";
};
@@ -12281,7 +12523,7 @@
dispass = callPackage ({ dash, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "dispass";
- version = "20140202.1631";
+ version = "20140202.931";
src = fetchFromGitHub {
owner = "ryuslash";
repo = "dispass.el";
@@ -12289,7 +12531,7 @@
sha256 = "075gj81rnhrvv061wnldixpfmlsyfbnvacnk107z6f9v3m2m3vl1";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/dispass";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/84d19999b8387e8b71215675cf1c15873314d90e/recipes/dispass";
sha256 = "08c1s4zgl4rha10mva48cfkxzrqnpdhy03pxq51ihw94v6vxzg3z";
name = "dispass";
};
@@ -12302,7 +12544,7 @@
display-theme = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "display-theme";
- version = "20140115.1656";
+ version = "20140115.956";
src = fetchFromGitHub {
owner = "kawabata";
repo = "emacs-display-theme";
@@ -12310,7 +12552,7 @@
sha256 = "0r560bpgw5p2pfcgkgcrlpp1bprv1f23dl4y5fjk06dg93fgaysa";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/display-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/4dd76f49f1c10656ea0004a654d73666e1d188db/recipes/display-theme";
sha256 = "07nqscmfa6iykll1m6gyiqca1g5ncx3rx468iyf2ahygpvqvnbxa";
name = "display-theme";
};
@@ -12323,7 +12565,7 @@
distinguished-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "distinguished-theme";
- version = "20151216.2115";
+ version = "20151216.1415";
src = fetchFromGitHub {
owner = "Lokaltog";
repo = "distinguished-theme";
@@ -12331,7 +12573,7 @@
sha256 = "03d8zb2is7n2y2z0k6j37cijjc3ndgasxsm9gqyq7drlq9bqwzsm";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/distinguished-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/8d969e91bbba522a31d6ae7a81c7783034c15b9b/recipes/distinguished-theme";
sha256 = "0h03aqgijrmisbgqga42zlb5yz4x3jn9jgr29rq8canyhayr3rk4";
name = "distinguished-theme";
};
@@ -12344,7 +12586,7 @@
dix = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "dix";
- version = "20160602.2226";
+ version = "20160602.1526";
src = fetchFromGitHub {
owner = "unhammer";
repo = "dix";
@@ -12352,7 +12594,7 @@
sha256 = "1pvd4gf4w4jb0j6n84ak844i6dk064y2pvnm5x0z5q70c2fn9170";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/dix";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/149eeba213b82aa0bcda1073aaf1aa02c2593f91/recipes/dix";
sha256 = "0c5fmknpy6kwlz7nx0csbbia1maz0szj7yha1p7wq28s3a5426xq";
name = "dix";
};
@@ -12365,7 +12607,7 @@
dix-evil = callPackage ({ dix, evil, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "dix-evil";
- version = "20160601.1324";
+ version = "20160601.624";
src = fetchFromGitHub {
owner = "unhammer";
repo = "dix";
@@ -12373,7 +12615,7 @@
sha256 = "1pvd4gf4w4jb0j6n84ak844i6dk064y2pvnm5x0z5q70c2fn9170";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/dix-evil";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/d9dcceb57231bf2082154cab394064a59d84d3a5/recipes/dix-evil";
sha256 = "1jscaksnl5qmpqgkjkv6sx56llz0w4p5h7j73c4a1hld94gwklh3";
name = "dix-evil";
};
@@ -12386,7 +12628,7 @@
dizzee = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "dizzee";
- version = "20111009.1516";
+ version = "20111009.816";
src = fetchFromGitHub {
owner = "davidmiller";
repo = "dizzee";
@@ -12394,7 +12636,7 @@
sha256 = "120zgp38nz4ssid6bv0zy5rnf2claa5s880incgljqyl0vmj9nq5";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/dizzee";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/3f56de1465d1b19dbefff62d3a1f2c4ee86ac0c4/recipes/dizzee";
sha256 = "1axydags80jkyhpzp3m4gyplwr9k3a13w6vmrrzcv161nln7jhhs";
name = "dizzee";
};
@@ -12407,7 +12649,7 @@
django-manage = callPackage ({ fetchFromGitHub, fetchurl, hydra, lib, melpaBuild }:
melpaBuild {
pname = "django-manage";
- version = "20151025.730";
+ version = "20151025.130";
src = fetchFromGitHub {
owner = "gopar";
repo = "django-manage";
@@ -12415,7 +12657,7 @@
sha256 = "15i25zh54b2fqji0qmkg502051ymccih6pgqnzq02c43dpnsqhqv";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/django-manage";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/66f88d30a1ab9b7f9281a2b5939c7ab2711b966a/recipes/django-manage";
sha256 = "0j95g7fps28xhlrikkg61xgpbpf52xb56swmns2qdib6x1xzd6rh";
name = "django-manage";
};
@@ -12428,7 +12670,7 @@
django-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "django-mode";
- version = "20150207.1417";
+ version = "20150207.717";
src = fetchFromGitHub {
owner = "myfreeweb";
repo = "django-mode";
@@ -12436,7 +12678,7 @@
sha256 = "0dw0m77w7kdwxxh53b4k15jjkpfl5vha17hw9dn29ap77pf820va";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/django-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/bdc46811612ff96cb1e09552b9f095d68528dcb3/recipes/django-mode";
sha256 = "1rdkzqvicjpfh9k66m31ky6jshx9fqw7pza7add36bk6xg8lbara";
name = "django-mode";
};
@@ -12449,7 +12691,7 @@
django-snippets = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, yasnippet }:
melpaBuild {
pname = "django-snippets";
- version = "20131229.1711";
+ version = "20131229.1011";
src = fetchFromGitHub {
owner = "myfreeweb";
repo = "django-mode";
@@ -12457,7 +12699,7 @@
sha256 = "0dw0m77w7kdwxxh53b4k15jjkpfl5vha17hw9dn29ap77pf820va";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/django-snippets";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/bdc46811612ff96cb1e09552b9f095d68528dcb3/recipes/django-snippets";
sha256 = "1qs9fw104kidbr5zbxc1q71yy033nq3wxh98vvzk4z4fppnd29sw";
name = "django-snippets";
};
@@ -12470,7 +12712,7 @@
django-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "django-theme";
- version = "20131022.1102";
+ version = "20131022.402";
src = fetchFromGitHub {
owner = "andrzejsliwa";
repo = "django-theme.el";
@@ -12478,7 +12720,7 @@
sha256 = "1azf4p6salga7269l0kf13bqlxf9idp0ys8mm20qpyjpj79p5g9w";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/django-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/4ede3b4fb214b915a8230e7f220ffe71c73ad7c4/recipes/django-theme";
sha256 = "1rydl857zfpbvd7aziz6h7n3rrh584z2cbfxlss3wgfclzmbyhgf";
name = "django-theme";
};
@@ -12491,7 +12733,7 @@
dkdo = callPackage ({ dkmisc, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "dkdo";
- version = "20131110.1219";
+ version = "20131110.519";
src = fetchFromGitHub {
owner = "davidkeegan";
repo = "dkdo";
@@ -12499,7 +12741,7 @@
sha256 = "1nbvdnw9g3zbbb0n2sn2kxfzs5wichhl9qid3qjp8dsiq1wpv459";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/dkdo";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/2d4f75f6f6349b81ddbaaf35fb5d7ddeb4cde622/recipes/dkdo";
sha256 = "0p7ybgldjs046jrkkbpli1iicfmblpxfz9lql8m8sz7lpjn7h300";
name = "dkdo";
};
@@ -12512,7 +12754,7 @@
dklrt = callPackage ({ dkmisc, emacs, fetchFromGitHub, fetchurl, ledger-mode, lib, melpaBuild }:
melpaBuild {
pname = "dklrt";
- version = "20131110.1441";
+ version = "20131110.741";
src = fetchFromGitHub {
owner = "davidkeegan";
repo = "dklrt";
@@ -12520,7 +12762,7 @@
sha256 = "063nnln5m42qf190vr2z0ibacyn7n0xkxm3v5vaa4gxdvdwzhshs";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/dklrt";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/71f980fdb2180df2429c898e1507dd3b989a5a2c/recipes/dklrt";
sha256 = "11ss5x9sxgxp1wx2r1m0vsp5z5qm8m4ww20ybr6bqjw0a1gax561";
name = "dklrt";
};
@@ -12533,7 +12775,7 @@
dkmisc = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "dkmisc";
- version = "20131110.1215";
+ version = "20131110.515";
src = fetchFromGitHub {
owner = "davidkeegan";
repo = "dkmisc";
@@ -12541,7 +12783,7 @@
sha256 = "1nz71g8pb19aqjcb4s94hhn6j30cc04q05kmwvcbxpjb11qqrv49";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/dkmisc";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/71f980fdb2180df2429c898e1507dd3b989a5a2c/recipes/dkmisc";
sha256 = "0nnbl272hldcmhyj47r463yvj7b06rjdkpkl5xk0gw9ikyja7w0z";
name = "dkmisc";
};
@@ -12554,7 +12796,7 @@
dmenu = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "dmenu";
- version = "20160228.1527";
+ version = "20160228.827";
src = fetchFromGitHub {
owner = "lujun9972";
repo = "el-dmenu";
@@ -12562,7 +12804,7 @@
sha256 = "1xx4ccr3mfxay2j3wgd93qw5dpjasaq9mkmmjww3ibpf86ahf7l3";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/dmenu";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/98bcdd71a160b9c04f83cc5b939031c9e7b5eb59/recipes/dmenu";
sha256 = "1w1pgaj2yasfhsd1ibvrwy11ykq8v17h913g298h3ycsvqv8gic0";
name = "dmenu";
};
@@ -12575,7 +12817,7 @@
dna-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "dna-mode";
- version = "20130821.2005";
+ version = "20130821.1305";
src = fetchFromGitHub {
owner = "jhgorrell";
repo = "dna-mode-el";
@@ -12583,7 +12825,7 @@
sha256 = "0z28j7x7wgkc1cg1q1kz1lhdx1v1n6s88ixgkm8hn458h9bfnr3n";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/dna-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/d32848d2de20cc71669b88699acaa0d306f009f5/recipes/dna-mode";
sha256 = "0ak3g152q3xxkiz1a4pl5y2vgbigbbmbc95fggirbcrh52zkzgk9";
name = "dna-mode";
};
@@ -12596,7 +12838,7 @@
docbook-snippets = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, yasnippet }:
melpaBuild {
pname = "docbook-snippets";
- version = "20150714.1825";
+ version = "20150714.1125";
src = fetchFromGitHub {
owner = "jhradilek";
repo = "emacs-docbook-snippets";
@@ -12604,7 +12846,7 @@
sha256 = "1nbm3wzd12rsrhnwlcc6b72b1ala328mfpcp5bwlfcdshw6mfcrq";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/docbook-snippets";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/07b832b72773ab41f9cbdefabd30dc1aa29d04c5/recipes/docbook-snippets";
sha256 = "1ipqfylgiw9iyjc1nckbay890clfkhda81nr00cq06sjmm71iniq";
name = "docbook-snippets";
};
@@ -12617,7 +12859,7 @@
docean = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, request }:
melpaBuild {
pname = "docean";
- version = "20150927.2018";
+ version = "20150927.1318";
src = fetchFromGitHub {
owner = "emacs-pe";
repo = "docean.el";
@@ -12625,7 +12867,7 @@
sha256 = "055kr0qknjgnjs7dn6gdmahrdbs8piwldbz7vg1hgq3b046x8lky";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/docean";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/d4827fa337d7d25f2aaf67aca3081fbdaeacbcbf/recipes/docean";
sha256 = "1mqmn2i9axnv5vnkg9gwfdjpzr6gxx4ia9mcdpm200ix297dg7x9";
name = "docean";
};
@@ -12638,15 +12880,15 @@
docker = callPackage ({ dash, docker-tramp, emacs, fetchFromGitHub, fetchurl, lib, magit-popup, melpaBuild, s, tablist }:
melpaBuild {
pname = "docker";
- version = "20160529.1752";
+ version = "20160630.517";
src = fetchFromGitHub {
owner = "Silex";
repo = "docker.el";
- rev = "16cf3786952ead6289f24f465085fb06b1cd0b34";
- sha256 = "1x23sv11gsqfxk7dfcfxah7h3k5wjg41lqq1g9yyrkxmqnlgy7p7";
+ rev = "0a37066fb020400c47a5d344a09b3f6288c284d1";
+ sha256 = "1dk5y2wq05p70snvqsd5hx3r3bcy64n4bk1swpj2axwpi6j0a06s";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/docker";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/6c74bf8a41c17bc733636f9e7c05f3858d17936b/recipes/docker";
sha256 = "10x05vli7lg1w3fdbkrl34y4mwbhp2c7nqdwnbdy53i81jisw2lk";
name = "docker";
};
@@ -12659,7 +12901,7 @@
docker-api = callPackage ({ dash, fetchFromGitHub, fetchurl, lib, melpaBuild, request, s }:
melpaBuild {
pname = "docker-api";
- version = "20160525.920";
+ version = "20160525.220";
src = fetchFromGitHub {
owner = "Silex";
repo = "docker-api.el";
@@ -12667,7 +12909,7 @@
sha256 = "0phmpranrgdi2gi89nxr1ii9xbr7h2ccpx1mkpnfxnjlzkdzq2fb";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/docker-api";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/3924914124370fc028a7b1ecdc154a53e73037a7/recipes/docker-api";
sha256 = "1giqiapm4hf4dhfm3x69qqpir3jg7qz3parhbx88xxqrd1z18my0";
name = "docker-api";
};
@@ -12680,7 +12922,7 @@
docker-tramp = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "docker-tramp";
- version = "20160114.452";
+ version = "20160113.2152";
src = fetchFromGitHub {
owner = "emacs-pe";
repo = "docker-tramp.el";
@@ -12688,7 +12930,7 @@
sha256 = "0bvnvs17cbisymiqp96q4y2w2jqy5hd0zyk6rv7mihr9p97ak9kv";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/docker-tramp";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/6c74bf8a41c17bc733636f9e7c05f3858d17936b/recipes/docker-tramp";
sha256 = "19kky80qm68n2izpjfyiy4gjywav7ljcmp101kmziklpqdldgh1w";
name = "docker-tramp";
};
@@ -12701,7 +12943,7 @@
dockerfile-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "dockerfile-mode";
- version = "20160128.1851";
+ version = "20160128.1151";
src = fetchFromGitHub {
owner = "spotify";
repo = "dockerfile-mode";
@@ -12709,7 +12951,7 @@
sha256 = "0vx7lv54v4bznn4mik4i6idb9dl7fpp3gw7nyhymbkr6hx884haw";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/dockerfile-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/1406f5a24115d29e3b140c360a51b977a369e4f9/recipes/dockerfile-mode";
sha256 = "1dxvzn35a9qd3x8pjvrvb2g71yf84404g6vz81y0p353rf2zknpa";
name = "dockerfile-mode";
};
@@ -12722,7 +12964,7 @@
dokuwiki-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "dokuwiki-mode";
- version = "20160129.907";
+ version = "20160129.207";
src = fetchFromGitHub {
owner = "kai2nenobu";
repo = "emacs-dokuwiki-mode";
@@ -12730,7 +12972,7 @@
sha256 = "1qfmq8l4jqyrhfplsr1zd8bg9qqqwbh3mhipqzja0px0knjpqj85";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/dokuwiki-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/7fabdb05de9b8ec18a3a566f99688b50443b6b44/recipes/dokuwiki-mode";
sha256 = "1jc3sn61mipkhgr91wp74s673jk2w5991p54jlw05qqpf5gmxd7v";
name = "dokuwiki-mode";
};
@@ -12743,7 +12985,7 @@
dollaro = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, s }:
melpaBuild {
pname = "dollaro";
- version = "20151123.1402";
+ version = "20151123.702";
src = fetchFromGitHub {
owner = "laynor";
repo = "dollaro";
@@ -12751,7 +12993,7 @@
sha256 = "1xyqsnymgdd8ic3az2lgwv7s7vld6d4pcycb234bxm4in9fixgdj";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/dollaro";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/b8195000cffa1913060266b17801eb7c1e472a83/recipes/dollaro";
sha256 = "06kaqzb0nh8sndhk7p5n4acn5nc27dyxw3ldgcbp81wj6ipii26h";
name = "dollaro";
};
@@ -12764,7 +13006,7 @@
doom = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "doom";
- version = "20160121.1622";
+ version = "20160121.922";
src = fetchFromGitHub {
owner = "emacsorphanage";
repo = "doom";
@@ -12772,7 +13014,7 @@
sha256 = "04h1hlsc83w4dppw9m44jq7mkcpy0bblvnzrhvsh06pibjywdd73";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/doom";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/7e41ed64142be89a62fddeceee5e39603a18525c/recipes/doom";
sha256 = "098q77lix7kwpmarv26yndyk1yy1h4k3l9kaf3g7sg6ji6k7d3wl";
name = "doom";
};
@@ -12784,13 +13026,13 @@
}) {};
doremi = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild {
pname = "doremi";
- version = "20151231.2155";
+ version = "20151231.1455";
src = fetchurl {
url = "https://www.emacswiki.org/emacs/download/doremi.el";
sha256 = "0201clwq9nbl8336lddcbwah8d6xipr7q8135yq79szfxq2bdg6v";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/doremi";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/a5d15f875b0080b12ce45cf696c581f6bbf061ba/recipes/doremi";
sha256 = "11i4cdxgrspx44p44zz5py89ypji5li6p5w77wy0b07i8a5gq2gb";
name = "doremi";
};
@@ -12803,13 +13045,13 @@
doremi-cmd = callPackage ({ doremi, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "doremi-cmd";
- version = "20160513.212";
+ version = "20160512.1912";
src = fetchurl {
url = "https://www.emacswiki.org/emacs/download/doremi-cmd.el";
sha256 = "1ay8rkcyydjqi1081vphb8iw3w2zc73m5bg1dz2mkxhksqwchqvj";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/doremi-cmd";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/a5d15f875b0080b12ce45cf696c581f6bbf061ba/recipes/doremi-cmd";
sha256 = "1qzspirn1abqps0dn5z8w6ymffc6b02dyki5hr8v74wfs8fhzx05";
name = "doremi-cmd";
};
@@ -12822,13 +13064,13 @@
doremi-frm = callPackage ({ doremi, faces-plus, fetchurl, frame-fns, hexrgb, lib, melpaBuild }:
melpaBuild {
pname = "doremi-frm";
- version = "20151231.2153";
+ version = "20151231.1453";
src = fetchurl {
url = "https://www.emacswiki.org/emacs/download/doremi-frm.el";
sha256 = "0v7ycmddh1ds64m1y5yai5nh34bd32q3wcm5y2pdzhj6jk7nj5wz";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/doremi-frm";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/a5d15f875b0080b12ce45cf696c581f6bbf061ba/recipes/doremi-frm";
sha256 = "1rj3p665q32acsxxwygv1j5nbmjqrhi0b4glzrk88xki4lyz0ihz";
name = "doremi-frm";
};
@@ -12840,13 +13082,13 @@
}) {};
doremi-mac = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild {
pname = "doremi-mac";
- version = "20151231.2154";
+ version = "20151231.1454";
src = fetchurl {
url = "https://www.emacswiki.org/emacs/download/doremi-mac.el";
sha256 = "157kvlb4dqiyk1h7b4p0dhrr6crdakwnrxydyl6yh51w2hdnnigw";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/doremi-mac";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/a5d15f875b0080b12ce45cf696c581f6bbf061ba/recipes/doremi-mac";
sha256 = "0n9fffgxnpqc7cch7aci5kxbwzk36iljdz2r8gcp5y5n1p7aamls";
name = "doremi-mac";
};
@@ -12858,13 +13100,13 @@
}) {};
dos = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild {
pname = "dos";
- version = "20140808.2335";
+ version = "20140808.1635";
src = fetchurl {
url = "https://www.emacswiki.org/emacs/download/dos.el";
sha256 = "0sfmcd1rq6wih9q7d9vkcfrw6gf7309mm7491jx091ij8m4p8ypp";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/dos";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/6c536abcb5a544e22bb339effa5bf39df96c12b9/recipes/dos";
sha256 = "0cpijbqpci96s0d6rwqz5bbi9b0zkan1bg8vdgib1f87r7g980nc";
name = "dos";
};
@@ -12876,13 +13118,13 @@
}) {};
dot-mode = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild {
pname = "dot-mode";
- version = "20151029.1455";
+ version = "20151029.855";
src = fetchurl {
url = "https://www.emacswiki.org/emacs/download/dot-mode.el";
sha256 = "0xhbzq3yvfvvvl6mfihrzkd3pn5p5yxvbcyf2jhsppk7lscifsgk";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/dot-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/fa20f7845ebf84c09ba34dbffe58dee5438d7c49/recipes/dot-mode";
sha256 = "1fik32635caq3r5f9k62qbj2dkwczz2z1v28mc7bcj7jv2p93nvh";
name = "dot-mode";
};
@@ -12895,7 +13137,7 @@
download-region = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "download-region";
- version = "20160430.2016";
+ version = "20160430.1316";
src = fetchFromGitHub {
owner = "zk-phi";
repo = "download-region";
@@ -12903,7 +13145,7 @@
sha256 = "0v52djg39b6k2snizd9x0qc009ws5y0ywqsfwhqgcbs5ymzh7dsc";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/download-region";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/7801d9fac121f213609a802fe9d88bdc5364d1f3/recipes/download-region";
sha256 = "1mrl2x6j708nchyh9y5avbf2cq10kpnhfj553l6akarvl5n5pvkl";
name = "download-region";
};
@@ -12916,7 +13158,7 @@
downplay-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "downplay-mode";
- version = "20151125.2109";
+ version = "20151125.1409";
src = fetchFromGitHub {
owner = "tobias";
repo = "downplay-mode";
@@ -12924,7 +13166,7 @@
sha256 = "0s7swvfd7h8r0n3cjmkps6ary9vwg61jylfm4qrkp3idsz6is548";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/downplay-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50d67ea3c4d92b4093373d5e4ff07b7d5a3dc537/recipes/downplay-mode";
sha256 = "1v6nga101ljzza8qj3lkmkzzl0vvzj4lsh1m69698s8prnczxr9b";
name = "downplay-mode";
};
@@ -12937,7 +13179,7 @@
dpaste = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "dpaste";
- version = "20160303.2212";
+ version = "20160303.1512";
src = fetchFromGitHub {
owner = "gregnewman";
repo = "dpaste.el";
@@ -12945,7 +13187,7 @@
sha256 = "03n3k6a40lw9m1ycf62g6vll4gr2kr2509vjp1dkfq722xwrw7zk";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/dpaste";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/21061b3a61a0e5e3f99b2fa2a52e620d639dcc82/recipes/dpaste";
sha256 = "17mrdkldv4gfwm6ggc047l4a69xg2fy9f9mjbphkjl0p5nr6b4kz";
name = "dpaste";
};
@@ -12958,7 +13200,7 @@
dpaste_de = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, web }:
melpaBuild {
pname = "dpaste_de";
- version = "20131015.1425";
+ version = "20131015.725";
src = fetchFromGitHub {
owner = "theju";
repo = "dpaste_de.el";
@@ -12966,7 +13208,7 @@
sha256 = "1avpg0cgzk8d6g1q0ryx41lkcdgkm0mkzr5xr32xm28dzrfmgd4z";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/dpaste_de";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/2c7b89dc6ab23e4a6e70765b7fcb4885387ce65f/recipes/dpaste_de";
sha256 = "0dql9qsl5gj51i3l2grl7nhw0ign8h4xa4jnhwn196j71c0rdwwp";
name = "dpaste_de";
};
@@ -12979,16 +13221,16 @@
dracula-theme = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "dracula-theme";
- version = "20160508.357";
+ version = "20160623.219";
src = fetchFromGitHub {
- owner = "zenorocha";
- repo = "dracula-theme";
- rev = "8405de6a31526c56906bd90efd61055641c0b0f5";
- sha256 = "04j83f238bpm815r3h9l6qwyfgak53d83kdn2ma048kb3wmbh817";
+ owner = "dracula";
+ repo = "emacs";
+ rev = "366fb365ded1c84f3712d4ba0b32dbdf9650921d";
+ sha256 = "05z0nsz0ddabh1ij33jwk4x1hahh38l733xagh9ayls4yx2r7paf";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/dracula-theme";
- sha256 = "0ayv00wvajia8kbfrqkrkpb3qp3k70qcnqkav7am16p5kbvzp10r";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/d63cb8906726f106e65f7d9895b49a38ffebf8d5/recipes/dracula-theme";
+ sha256 = "1px162v7h7136rasafq875yzw0h8n6wvzbyh73c3w093kd30bmh8";
name = "dracula-theme";
};
packageRequires = [ emacs ];
@@ -13000,7 +13242,7 @@
draft-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "draft-mode";
- version = "20140609.1656";
+ version = "20140609.956";
src = fetchFromGitHub {
owner = "gaudecker";
repo = "draft-mode";
@@ -13008,7 +13250,7 @@
sha256 = "0z3w58zplm5ks195zfsaq8kwbc944p3kbzs702jgz02wcrm4c28y";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/draft-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/d5ee50f467025fb8b9a3b4577fc471a2b2ee191a/recipes/draft-mode";
sha256 = "1wg9cx39f4dhrykb4zx4fh0x5cfrh5aicwwfh1h3yzpc4zlr7xfh";
name = "draft-mode";
};
@@ -13021,7 +13263,7 @@
drag-stuff = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "drag-stuff";
- version = "20160520.2059";
+ version = "20160520.1359";
src = fetchFromGitHub {
owner = "rejeep";
repo = "drag-stuff.el";
@@ -13029,7 +13271,7 @@
sha256 = "0vcc1pfxsjbrslh4k6d14xv4k8pvkg09kikwf7ipis12l62df6i4";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/drag-stuff";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/7fabdb05de9b8ec18a3a566f99688b50443b6b44/recipes/drag-stuff";
sha256 = "1q67q20gfhixzkmddhzp6fd8z2qfpsmyyvymmaffjcscnjaz21w4";
name = "drag-stuff";
};
@@ -13042,7 +13284,7 @@
drawille = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "drawille";
- version = "20160418.2038";
+ version = "20160418.1338";
src = fetchFromGitHub {
owner = "sshbio";
repo = "drawille";
@@ -13050,7 +13292,7 @@
sha256 = "1z3akh0ywzihr0ghk6f8x9z38mwqy3zg29p0q69h4i6yzhxpdmxa";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/drawille";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/e0920232421bf177f2ab8595fab7e203f40b1a34/recipes/drawille";
sha256 = "01rl21hbj3hwy072yr27jl6iql331v131d3mr9zifg9v6f3jqbil";
name = "drawille";
};
@@ -13063,7 +13305,7 @@
drill-instructor-AZIK-force = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, popup }:
melpaBuild {
pname = "drill-instructor-AZIK-force";
- version = "20151123.614";
+ version = "20151122.2314";
src = fetchFromGitHub {
owner = "myuhe";
repo = "drill-instructor-AZIK-force.el";
@@ -13071,7 +13313,7 @@
sha256 = "0lzq0mkhhj3s5yrcbs576qxkd8h0m2ikc4iplk97ddpzh4nz4127";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/drill-instructor-AZIK-force";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/fb5ee8a113b98e8df8368c5e17c6d762decf8f5b/recipes/drill-instructor-AZIK-force";
sha256 = "1bb698r11m58csd2rm17fmiw691p25npphzqgjiiqbn4vx35ja7f";
name = "drill-instructor-AZIK-force";
};
@@ -13084,7 +13326,7 @@
dropbox = callPackage ({ fetchFromGitHub, fetchurl, json ? null, lib, melpaBuild, oauth }:
melpaBuild {
pname = "dropbox";
- version = "20130514.37";
+ version = "20130513.1737";
src = fetchFromGitHub {
owner = "pavpanchekha";
repo = "dropbox.el";
@@ -13092,7 +13334,7 @@
sha256 = "1s4cz5s0mw733ak9ps62fs150y3psqmb6v5s6s88jjfsi0r03c0s";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/dropbox";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/afc3754da223a33f3f06c199951b098acd18e5f5/recipes/dropbox";
sha256 = "0ak6g2d2sq026ml6cmn6v1qz7sczkplgv2j9zq9zgzafihyyzs5f";
name = "dropbox";
};
@@ -13104,13 +13346,13 @@
}) {};
dropdown-list = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild {
pname = "dropdown-list";
- version = "20120329.1836";
+ version = "20120329.1136";
src = fetchurl {
url = "https://www.emacswiki.org/emacs/download/dropdown-list.el";
sha256 = "1szy46sk3nvlbb3yzk1s983281kkf507xr3fkclkki3d3x31n08a";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/dropdown-list";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/364c9db68f34fc617a706eb1d7b4304ef4a88714/recipes/dropdown-list";
sha256 = "14i9w897gnb3mvnkbzhzij04bgr551r8km310mbrmzzag54w077z";
name = "dropdown-list";
};
@@ -13123,7 +13365,7 @@
drupal-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, php-mode }:
melpaBuild {
pname = "drupal-mode";
- version = "20160420.2158";
+ version = "20160420.1458";
src = fetchFromGitHub {
owner = "arnested";
repo = "drupal-mode";
@@ -13131,7 +13373,7 @@
sha256 = "1hbm3zdmd28fjl8fky0kq4gs2bxsrn2zxk9rd1wa2wky43ycnd35";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/drupal-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/13e16af340868048eb1f51f9865dfc707e57abe8/recipes/drupal-mode";
sha256 = "14jvk4phq3wcff3yvhygix0c9cpbphh0dvm961i93jpsx7g9awgn";
name = "drupal-mode";
};
@@ -13144,7 +13386,7 @@
drupal-spell = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "drupal-spell";
- version = "20130520.1855";
+ version = "20130520.1155";
src = fetchFromGitHub {
owner = "arnested";
repo = "drupal-spell";
@@ -13152,7 +13394,7 @@
sha256 = "156cscpavrp695lp8pgjg5jnq3b8n9c2h8qg8w89dd4vfkc3iikd";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/drupal-spell";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/bb859d9755bde3fd852bc7d08f2fab2429ba31b3/recipes/drupal-spell";
sha256 = "117rr2bfnc99g3qsr127grxwaqp54cxjaj3nl2nr6z78nja0fij3";
name = "drupal-spell";
};
@@ -13164,14 +13406,14 @@
}) {};
dsvn = callPackage ({ fetchsvn, fetchurl, lib, melpaBuild }: melpaBuild {
pname = "dsvn";
- version = "20130120.2157";
+ version = "20130120.1457";
src = fetchsvn {
url = "http://svn.apache.org/repos/asf/subversion/trunk/contrib/client-side/emacs/";
- rev = "1746801";
+ rev = "1751166";
sha256 = "016dxpzm1zba8rag7czynlk58hys4xab4mz1nkry5bfihknpzcrq";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/dsvn";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/a6da3640b72496e2b32e6ed21aa39df87af9f7f3/recipes/dsvn";
sha256 = "12cviq6v08anif762a5qav3l8ircp81kmnl9q4yl6bkh9zxv7vy6";
name = "dsvn";
};
@@ -13184,7 +13426,7 @@
dtrace-script-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "dtrace-script-mode";
- version = "20150214.723";
+ version = "20150214.23";
src = fetchFromGitHub {
owner = "dotemacs";
repo = "dtrace-script-mode";
@@ -13192,7 +13434,7 @@
sha256 = "1blfx3r2xd3idbfjrx44ma3x1d83xp67il2s2bmdwa8qz92z99lf";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/dtrace-script-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/a5af0cec2b49ccc6807939162184cc40558a8716/recipes/dtrace-script-mode";
sha256 = "0v29rzlyccrc37052w2qmvjaii84jihhp736l807b0hjjfryras4";
name = "dtrace-script-mode";
};
@@ -13205,15 +13447,15 @@
dtrt-indent = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "dtrt-indent";
- version = "20160523.2218";
+ version = "20160620.529";
src = fetchFromGitHub {
owner = "jscheid";
repo = "dtrt-indent";
- rev = "24ac7b39a9b920a6b622ba91f6dc4e2ce2627dc8";
- sha256 = "1gxz2alc95k638nxvxifrard34y2a797m9f274gqp7xqy9ps464d";
+ rev = "a54871bedadabede505b3913ee1039f5ab36cad2";
+ sha256 = "0ylch7q8lh2r10qzrb41bnrpnznvj5fjszazmxfcvj6ss8yrxjzi";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/dtrt-indent";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/61bcbcfa6c0f38a1d87f5b6913b8be6c50ef2994/recipes/dtrt-indent";
sha256 = "1npn2jngy1wq0jpwmg1hkn8lx6ncbqsi587jl38lyp2xwchshfk5";
name = "dtrt-indent";
};
@@ -13226,7 +13468,7 @@
dts-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "dts-mode";
- version = "20150404.104";
+ version = "20150403.1804";
src = fetchFromGitHub {
owner = "bgamari";
repo = "dts-mode";
@@ -13234,7 +13476,7 @@
sha256 = "0cafvhbpfqd8ajqg2757fs64kryrl2ckvbp5abldb4y8fa14pb9l";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/dts-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/864a7ec64c46a0357710bc80ad4880dd35b2fda1/recipes/dts-mode";
sha256 = "1k8cbiayajbzwkm0s0kyin0qpq9yhymidz0srs4hbvsnb6hvp234";
name = "dts-mode";
};
@@ -13247,7 +13489,7 @@
ducpel = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "ducpel";
- version = "20140419.716";
+ version = "20140419.16";
src = fetchFromGitHub {
owner = "alezost";
repo = "ducpel";
@@ -13255,7 +13497,7 @@
sha256 = "1ixb78dv66lmqlbv4zl5ysvv1xqafvqh1h5cfdv03jdkqlfk34jz";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ducpel";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/2d64adac965e1dac0f29dab9a587cd6ce9c3bb3a/recipes/ducpel";
sha256 = "1cqrkgg7n9bhjswnpl7yc6w6yjs4gfbliaqsimmf9z43wk2ml4pc";
name = "ducpel";
};
@@ -13268,15 +13510,15 @@
dumb-jump = callPackage ({ dash, emacs, f, fetchFromGitHub, fetchurl, lib, melpaBuild, popup, s }:
melpaBuild {
pname = "dumb-jump";
- version = "20160601.1948";
+ version = "20160610.47";
src = fetchFromGitHub {
owner = "jacktasia";
repo = "dumb-jump";
- rev = "590773bbfd3f5156d7d2231dcdb9554135fa10fe";
- sha256 = "0qcx245wbcyr3y7bflc2dmr4nr8nsfj6sr724ylsxa0ywzd8k7yl";
+ rev = "7e256808d82d22532030e4c53197426d3e082593";
+ sha256 = "1rqhb3xysb1n0q3gzsfwf2m5bishbaz2gvzx5a30dnxcxk7x5y8z";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/dumb-jump";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/2a60e7c166c2d68e4f719d293014a22139593dde/recipes/dumb-jump";
sha256 = "1pgbs2k1g8w7gr65w50fazrmcky6w37c9rvyxqfmh06yx90nj4kc";
name = "dumb-jump";
};
@@ -13289,7 +13531,7 @@
dummy-h-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "dummy-h-mode";
- version = "20160603.1317";
+ version = "20160603.617";
src = fetchFromGitHub {
owner = "yascentur";
repo = "dummy-h-mode-el";
@@ -13297,7 +13539,7 @@
sha256 = "1xkfwg1awb3ikb9i71xdbnbb94y3p2qd1fhnbx6kzfs0kmsiv5k9";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/dummy-h-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/0fda2b54a0ff0b6fc3bd6d20cfcbbf63cae5380f/recipes/dummy-h-mode";
sha256 = "10lzfzq7md6s28w2zzlhswn3d6765g4vqzyjn2q5ms8pd2i4b4in";
name = "dummy-h-mode";
};
@@ -13310,7 +13552,7 @@
dummyparens = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "dummyparens";
- version = "20141009.1224";
+ version = "20141009.524";
src = fetchFromGitHub {
owner = "snosov1";
repo = "dummyparens";
@@ -13318,7 +13560,7 @@
sha256 = "0g72nnz0j6dvllyxyrw20z1vg6p7sy46yy0fq017pa77sgqm0xzh";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/dummyparens";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/e1f6199a9afece4d6eb581dc8e513601d55a5833/recipes/dummyparens";
sha256 = "1yah8kpqkk9ygm73iy51fzwc8q5nw0xlwqir2qld1fc5y1lkb7dk";
name = "dummyparens";
};
@@ -13331,7 +13573,7 @@
duplicate-thing = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "duplicate-thing";
- version = "20120515.1848";
+ version = "20120515.1148";
src = fetchFromGitHub {
owner = "ongaeshi";
repo = "duplicate-thing";
@@ -13339,7 +13581,7 @@
sha256 = "1qaiwm8mf4656gc1pdj8ivgy4abkjsypr52pvf4nrdkkln9qzfli";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/duplicate-thing";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/be28db1bfbd663af5b5c24bad50372fddd341982/recipes/duplicate-thing";
sha256 = "1jx2b6h23dj561xhizzbpxp3av69ic8zdw4kkf0py1jm3gnrmlm4";
name = "duplicate-thing";
};
@@ -13352,14 +13594,14 @@
dyalog-mode = callPackage ({ cl-lib ? null, fetchhg, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "dyalog-mode";
- version = "20160315.1649";
+ version = "20160315.1049";
src = fetchhg {
url = "https://bitbucket.com/harsman/dyalog-mode";
rev = "4dac440334f0";
sha256 = "19aid1rqpqj0fvln98db5imfk1griqld55xsr9plm6kwrr174syq";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/dyalog-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/5b7972602399f9df9139cff177e38653bb0f43ed/recipes/dyalog-mode";
sha256 = "1y17nd2xd8b3mhaybws8dr7yanzwqij9gzfywisy65ckflm9kfyq";
name = "dyalog-mode";
};
@@ -13372,7 +13614,7 @@
dylan-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "dylan-mode";
- version = "20160406.14";
+ version = "20160405.1714";
src = fetchFromGitHub {
owner = "dylan-lang";
repo = "dylan-mode";
@@ -13380,7 +13622,7 @@
sha256 = "0fxdv594k6p4kv6nc598rw51sy4x10dvbyhzn3gni2linb3v1c5h";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/dylan-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/94481ba3ebba6a99f11efab5a33e8bc6ea2d857a/recipes/dylan-mode";
sha256 = "0kimvz8vmcvgxi0wvf7dqv6plj31xlksmvgip8h3bhyy7slxj3yy";
name = "dylan-mode";
};
@@ -13393,7 +13635,7 @@
dynamic-fonts = callPackage ({ fetchFromGitHub, fetchurl, font-utils, lib, melpaBuild, pcache, persistent-soft }:
melpaBuild {
pname = "dynamic-fonts";
- version = "20140731.1426";
+ version = "20140731.726";
src = fetchFromGitHub {
owner = "rolandwalker";
repo = "dynamic-fonts";
@@ -13401,7 +13643,7 @@
sha256 = "150dj1g49q9x9zx9wkymq30l5gc8c4mhsq91fm6q0yj6ip7hlfxh";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/dynamic-fonts";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/c9db386ab3910940addae6e925b2ac17e64e0f87/recipes/dynamic-fonts";
sha256 = "0a210ca41maa755lv1n7hhpxp0f7lfxrxbi0x34icbkfkmijhl6q";
name = "dynamic-fonts";
};
@@ -13414,7 +13656,7 @@
dynamic-ruler = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "dynamic-ruler";
- version = "20160602.1008";
+ version = "20160602.308";
src = fetchFromGitHub {
owner = "rocher";
repo = "dynamic-ruler";
@@ -13422,7 +13664,7 @@
sha256 = "09skp2d5likqjlrsfis3biqw59sjkgid5249fld9ahqm5f1wq296";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/dynamic-ruler";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/926c43867120db429807ff5aaacc8af65a1738c8/recipes/dynamic-ruler";
sha256 = "13jc3xbsyc3apkdfy0iafmsfvgqs0zfa5w8jxp7zj4dhb7pxpnmc";
name = "dynamic-ruler";
};
@@ -13435,7 +13677,7 @@
e2ansi = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "e2ansi";
- version = "20150221.13";
+ version = "20150220.1713";
src = fetchFromGitHub {
owner = "Lindydancer";
repo = "e2ansi";
@@ -13443,7 +13685,7 @@
sha256 = "0d18kdpw4zfbq4bkqh19cf42xlinxqa71lr2d994phaxqxqq195w";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/e2ansi";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/5e655a3fdfae80ea120cdb2ce84dd4fd36f9a71e/recipes/e2ansi";
sha256 = "0ns1sldipx5kyqpi0bw79kdmhi1ry5glwxfzfx8r01hbbkf0cc94";
name = "e2ansi";
};
@@ -13456,7 +13698,7 @@
e2wm = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, window-layout }:
melpaBuild {
pname = "e2wm";
- version = "20150609.223";
+ version = "20150608.1923";
src = fetchFromGitHub {
owner = "kiwanami";
repo = "emacs-window-manager";
@@ -13464,7 +13706,7 @@
sha256 = "1lx0c7s810x6prf7x1lnx412gll8nn8gqpmi56n319n406cxhnhw";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/e2wm";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/8da85815c39f58552a968ae68ee07c08c53b0f61/recipes/e2wm";
sha256 = "0dp360jr3fgxqywkp7g88cp02g37kw2hdsc0f70hjak9n3sy03la";
name = "e2wm";
};
@@ -13477,7 +13719,7 @@
e2wm-R = callPackage ({ e2wm, ess, fetchFromGitHub, fetchurl, inlineR, lib, melpaBuild }:
melpaBuild {
pname = "e2wm-R";
- version = "20151230.1026";
+ version = "20151230.326";
src = fetchFromGitHub {
owner = "myuhe";
repo = "e2wm-R.el";
@@ -13485,7 +13727,7 @@
sha256 = "1g77gf24abwcvf7z52vs762s6jp978pnvza8zmzwkwfvp1mkx233";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/e2wm-R";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/9a3ba9843bdf275815b149e4c4b0a947bbc5e614/recipes/e2wm-R";
sha256 = "09v4fz178lch4d6m801ipclfxm2qrap5601aysnzyvc2apvyr3sh";
name = "e2wm-R";
};
@@ -13498,7 +13740,7 @@
e2wm-bookmark = callPackage ({ e2wm, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "e2wm-bookmark";
- version = "20151123.621";
+ version = "20151122.2321";
src = fetchFromGitHub {
owner = "myuhe";
repo = "e2wm-bookmark.el";
@@ -13506,7 +13748,7 @@
sha256 = "121vd44f42bxqvdjswmjlghf1jalbs974b6cip2i049k1n08xgh0";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/e2wm-bookmark";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/45488849da42ac775e532f30f588bfabb7af3cae/recipes/e2wm-bookmark";
sha256 = "1myaqxzrgff5gxcn3zn1bsmyf5122ql1mwr05wamd450lq8nmbw5";
name = "e2wm-bookmark";
};
@@ -13519,7 +13761,7 @@
e2wm-direx = callPackage ({ direx, e2wm, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "e2wm-direx";
- version = "20140816.113";
+ version = "20140815.1813";
src = fetchFromGitHub {
owner = "aki2o";
repo = "e2wm-direx";
@@ -13527,7 +13769,7 @@
sha256 = "09i7d2rc9zd4s3nqrhd3ggs1ykdpxf0pyhxixxw2xy0q6nbswjia";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/e2wm-direx";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/8320cf626050cf455c97ef22e7a8ccfb253e3243/recipes/e2wm-direx";
sha256 = "0nv8aciq0swxi9ahwc2pvk9c7i3rmlp7vrzqcan58ml0i3nm17wg";
name = "e2wm-direx";
};
@@ -13540,7 +13782,7 @@
e2wm-pkgex4pl = callPackage ({ e2wm, fetchFromGitHub, fetchurl, lib, melpaBuild, plsense-direx }:
melpaBuild {
pname = "e2wm-pkgex4pl";
- version = "20140525.1247";
+ version = "20140525.547";
src = fetchFromGitHub {
owner = "aki2o";
repo = "e2wm-pkgex4pl";
@@ -13548,7 +13790,7 @@
sha256 = "1vrlfzy1wynm7x4m7pl8vim7ykqd6qkcilwz7sjc1lbckz11ig0d";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/e2wm-pkgex4pl";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/8f84b421cb1673d2a9fe820cee11dc4a6e72adad/recipes/e2wm-pkgex4pl";
sha256 = "0hgdbqfw3015fr929m36kfiqqzsid6afs3222iqq0apg7gfj7jil";
name = "e2wm-pkgex4pl";
};
@@ -13561,7 +13803,7 @@
e2wm-svg-clock = callPackage ({ e2wm, fetchFromGitHub, fetchurl, lib, melpaBuild, svg-clock }:
melpaBuild {
pname = "e2wm-svg-clock";
- version = "20150106.1406";
+ version = "20150106.706";
src = fetchFromGitHub {
owner = "myuhe";
repo = "e2wm-svg-clock.el";
@@ -13569,7 +13811,7 @@
sha256 = "0h1fnlpvy2mqfxjv64znghmiadh9qimj9q9a60cxhyc0bq0prz6f";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/e2wm-svg-clock";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/784f5598910ecf208a68fa97448e148a8ebefa32/recipes/e2wm-svg-clock";
sha256 = "0q02lksrbn43s8d9rzpglqybalglpi6qi9lix0cllag6i7fzcbms";
name = "e2wm-svg-clock";
};
@@ -13582,7 +13824,7 @@
e2wm-sww = callPackage ({ e2wm, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "e2wm-sww";
- version = "20140524.1058";
+ version = "20140524.358";
src = fetchFromGitHub {
owner = "aki2o";
repo = "e2wm-sww";
@@ -13590,7 +13832,7 @@
sha256 = "0mz43mwcgyc1c9p9b7nflnjxdxjm2nxbhl0scj6llzphikicr35g";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/e2wm-sww";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/cc873e8271e9f372e08da5d0e4b77c8ba0e3a8cb/recipes/e2wm-sww";
sha256 = "0x45j62cjivf9v7jp1b41yya3f9akp92md6cbv0v7bwz98g2vsk8";
name = "e2wm-sww";
};
@@ -13603,7 +13845,7 @@
e2wm-term = callPackage ({ e2wm, fetchFromGitHub, fetchurl, lib, log4e, melpaBuild, yaxception }:
melpaBuild {
pname = "e2wm-term";
- version = "20141009.1508";
+ version = "20141009.808";
src = fetchFromGitHub {
owner = "aki2o";
repo = "e2wm-term";
@@ -13611,7 +13853,7 @@
sha256 = "0qv3kh6q3q7vgfsd8x25x8agi3fp96dkpjnxdidkwk6k8h9n0jzw";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/e2wm-term";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/c9a800f5af893cb670cedb47e4a723c407be8429/recipes/e2wm-term";
sha256 = "0wrq06yap80a96l9l0hs7x7rng7sx6vi1hz778kknb6il4f2f45g";
name = "e2wm-term";
};
@@ -13624,7 +13866,7 @@
easy-after-load = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "easy-after-load";
- version = "20121225.349";
+ version = "20121224.2049";
src = fetchFromGitHub {
owner = "pd";
repo = "easy-after-load";
@@ -13632,7 +13874,7 @@
sha256 = "09ikwg5s42b50lfj0796pa2h32larkf5j6cy042dzh8c441vgih4";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/easy-after-load";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/2086675f58453a597c8bc904b2f6d56f4f4ca702/recipes/easy-after-load";
sha256 = "1mn4hpx82nifphzx71yw3rbixbgis8bhvl3iyxcgcd88n5hqwvys";
name = "easy-after-load";
};
@@ -13645,7 +13887,7 @@
easy-escape = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "easy-escape";
- version = "20150719.433";
+ version = "20150718.2133";
src = fetchFromGitHub {
owner = "cpitclaudel";
repo = "easy-escape";
@@ -13653,7 +13895,7 @@
sha256 = "1qn0givyh07w41sv5xayfzlwbpbq7p39wbhmwsgffgfqzzz5r2ys";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/easy-escape";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/c39e3b867fa3143e9dc7c2fefa57b5755f70b433/recipes/easy-escape";
sha256 = "1zspb79x6s151wwiian45j1nh0xps8y8yd98byyn5lbwbj2pp2gk";
name = "easy-escape";
};
@@ -13666,7 +13908,7 @@
easy-kill = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "easy-kill";
- version = "20151031.629";
+ version = "20151031.29";
src = fetchFromGitHub {
owner = "leoliu";
repo = "easy-kill";
@@ -13674,7 +13916,7 @@
sha256 = "0i2plbvaalapx3svryn5lrc68m0qj1xm0z577xxzq7i9z91nanq7";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/easy-kill";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/7d0a74c2a7d8859e9311bc8d71f5e6cf5a8063b6/recipes/easy-kill";
sha256 = "10jcv7a4vcnaj3wkabip2xwzcwlmvdlqkl409a9lnzfasxcpf32i";
name = "easy-kill";
};
@@ -13687,7 +13929,7 @@
easy-kill-extras = callPackage ({ easy-kill, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "easy-kill-extras";
- version = "20160419.419";
+ version = "20160418.2119";
src = fetchFromGitHub {
owner = "knu";
repo = "easy-kill-extras.el";
@@ -13695,7 +13937,7 @@
sha256 = "0mmhqid0x56m0p3b18a757147fy8km3p4kmi0y94kjq04a4ysg3k";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/easy-kill-extras";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/7b55d93f78fefde47a2bd4ebbfd93c028fab1f40/recipes/easy-kill-extras";
sha256 = "0xzlzv57nvrc142saydwfib51fyqcdzjccc1hj6xvgcdbwadlnjy";
name = "easy-kill-extras";
};
@@ -13708,7 +13950,7 @@
easy-lentic = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lentic, lib, melpaBuild }:
melpaBuild {
pname = "easy-lentic";
- version = "20160530.830";
+ version = "20160530.130";
src = fetchFromGitHub {
owner = "tumashu";
repo = "easy-lentic";
@@ -13716,7 +13958,7 @@
sha256 = "0sm54ngmpciqmik7y3zihyygw9g0lhphzdm4xx07wvxmhnlamxsa";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/easy-lentic";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/7e098e70214e85e1c583a4976f895941c13de75f/recipes/easy-lentic";
sha256 = "1j141lncgcgfpa42m505xndiy6lh848xymfvb3cz4d6h73421khg";
name = "easy-lentic";
};
@@ -13729,7 +13971,7 @@
easy-repeat = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "easy-repeat";
- version = "20150516.1048";
+ version = "20150516.348";
src = fetchFromGitHub {
owner = "xuchunyang";
repo = "easy-repeat.el";
@@ -13737,7 +13979,7 @@
sha256 = "18bm5ns1qrxq0rrz9sylshr62wkymh1m6b7ch2y74f8rcwdwjgnq";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/easy-repeat";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/f1f5e0d19043f6a24ab4069c9c850e96cbe61a8f/recipes/easy-repeat";
sha256 = "1vx57gpw0nbxh976s18va4ali1nqxqffhaxv1c5rhf4pwlk2fa06";
name = "easy-repeat";
};
@@ -13750,7 +13992,7 @@
ebal = callPackage ({ emacs, f, fetchFromGitHub, fetchurl, ido-completing-read-plus, lib, melpaBuild }:
melpaBuild {
pname = "ebal";
- version = "20160531.1806";
+ version = "20160531.1106";
src = fetchFromGitHub {
owner = "mrkkrp";
repo = "ebal";
@@ -13758,7 +14000,7 @@
sha256 = "0fbfdhz1fmxiy9hg038qqw7r3gvhvzyk68qaww0saja9zywx8hal";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ebal";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/629aa451162a0085488caad4052a56366b7ce392/recipes/ebal";
sha256 = "1kqnlp5n1aig1qbqdq9q50wgqkzd1l6h9wi1gv43cif8qa1kxhwg";
name = "ebal";
};
@@ -13771,7 +14013,7 @@
ebf = callPackage ({ cl-lib ? null, dash, dash-functional, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "ebf";
- version = "20160211.1858";
+ version = "20160211.1158";
src = fetchFromGitHub {
owner = "rexim";
repo = "ebf";
@@ -13779,7 +14021,7 @@
sha256 = "1pgn6fcg5cnbpk93hc2vw95sna07x0s1v2i6lq9bmij2msvar611";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ebf";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/22e2f6383f2a7a01778c0524af19a68af57796ae/recipes/ebf";
sha256 = "072w1hczzb4z0dadvqy8px9zfnfd2z0w8nwa7q2qm5njg30rrqpb";
name = "ebf";
};
@@ -13792,15 +14034,15 @@
ebib = callPackage ({ dash, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, parsebib }:
melpaBuild {
pname = "ebib";
- version = "20160604.953";
+ version = "20160627.1406";
src = fetchFromGitHub {
owner = "joostkremers";
repo = "ebib";
- rev = "4ce0088a2e9d5607c262a744333c2e76192edee4";
- sha256 = "09qbblp3gn6zyff7j1vawmqishcilh0b0r7070x2cxg213s36d8k";
+ rev = "e785008f9fe778685f657c28e10c48e7de5f7fd3";
+ sha256 = "0g7j3mr1jyjzlllbb6flvqrfkxflhkhh8hla3chp0kiz5csvrk4w";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ebib";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/4e39cd8e8b4f61c04fa967def6a653bb22f45f5b/recipes/ebib";
sha256 = "1kdqf5nk9l6mr3698nqngrkw5dicgf7d24krir5wrcfbrsqrfmid";
name = "ebib";
};
@@ -13813,7 +14055,7 @@
ebib-handy = callPackage ({ chinese-pyim, ebib, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "ebib-handy";
- version = "20160510.56";
+ version = "20160509.1756";
src = fetchFromGitHub {
owner = "tumashu";
repo = "ebib-handy";
@@ -13821,7 +14063,7 @@
sha256 = "0z89gggdgy2icnc6vwwbqbpnzbixxm6njgkz37zrrpwk23jsx1pb";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ebib-handy";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/8843caa0d80000c70d3b264854f50daac94e6962/recipes/ebib-handy";
sha256 = "069dq4sfw4jz4cd8mw611qzcz7jyj271qwv2l54fyi3pfvd68h17";
name = "ebib-handy";
};
@@ -13834,7 +14076,7 @@
ecb = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "ecb";
- version = "20140215.1014";
+ version = "20140215.314";
src = fetchFromGitHub {
owner = "alexott";
repo = "ecb";
@@ -13842,7 +14084,7 @@
sha256 = "1hs069m4m6vhb37ac2x6hzbp9mfmpd3zhp4m631lx8dlmx11rydz";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ecb";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/c0a4c225c05166572de4538f7ee9e4e0d088a409/recipes/ecb";
sha256 = "097hdskhfh255znrqamcssx4ns1sgkxchlbc7pjqwzpflsi0fx89";
name = "ecb";
};
@@ -13854,13 +14096,13 @@
}) {};
echo-bell = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild {
pname = "echo-bell";
- version = "20151231.2156";
+ version = "20151231.1456";
src = fetchurl {
url = "https://www.emacswiki.org/emacs/download/echo-bell.el";
sha256 = "0jk7pb2sr4qbxwcn4ipcjc9phl9zjmgg8sf91qj113112xx7vvxa";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/echo-bell";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/a81e339e9c7cf1ae5fe91ab4442164336a6fbf13/recipes/echo-bell";
sha256 = "0adhdfbcpmdhd9252rh0jik2z3v9bzf0brpzfvcjn5py2x6724ws";
name = "echo-bell";
};
@@ -13873,7 +14115,7 @@
eclipse-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "eclipse-theme";
- version = "20160430.1222";
+ version = "20160430.522";
src = fetchFromGitHub {
owner = "abo-abo";
repo = "eclipse-theme";
@@ -13881,7 +14123,7 @@
sha256 = "03yyagd37l9kgdnkqrkvrcgp5njyl4an0af7cfmcdnpyjghczf4d";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/eclipse-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/81fcf3536ead18a91400f6936b3f789b4b594b9c/recipes/eclipse-theme";
sha256 = "0mww0jysxqky1zkkhvhj7fn20w970n2w6501rdm5jwqfb58ivxfx";
name = "eclipse-theme";
};
@@ -13894,7 +14136,7 @@
ecukes = callPackage ({ ansi, commander, dash, espuds, f, fetchFromGitHub, fetchurl, lib, melpaBuild, s }:
melpaBuild {
pname = "ecukes";
- version = "20150717.1548";
+ version = "20150717.848";
src = fetchFromGitHub {
owner = "ecukes";
repo = "ecukes";
@@ -13902,7 +14144,7 @@
sha256 = "0h6vh719ai0cxyja6wpfi6m76d42vskj56wg666j0h6j0qw6h3i2";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ecukes";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/14cf66e6929db2a0f377612e786aaed9eb12b799/recipes/ecukes";
sha256 = "0ava8hrc7r1mzv6xgbrb84qak5xrf6fj8g9qr4i4g0cr7843nrw0";
name = "ecukes";
};
@@ -13915,7 +14157,7 @@
edbi = callPackage ({ concurrent, ctable, epc, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "edbi";
- version = "20160225.241";
+ version = "20160224.1941";
src = fetchFromGitHub {
owner = "kiwanami";
repo = "emacs-edbi";
@@ -13923,7 +14165,7 @@
sha256 = "0x0igyvdcm4863n7zndvcv6wgzwgn7324cbfjja6xd7r0k936zdy";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/edbi";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/238a11afa52d2c01d69eb16ffd7d07ccd6dff403/recipes/edbi";
sha256 = "0qq0j16n8lyvkqqlcsrq1m7r7f0in6b92d74mpx5c6siv6z2vxlr";
name = "edbi";
};
@@ -13936,7 +14178,7 @@
edbi-database-url = callPackage ({ edbi, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "edbi-database-url";
- version = "20160221.2023";
+ version = "20160221.1323";
src = fetchFromGitHub {
owner = "proofit404";
repo = "edbi-database-url";
@@ -13944,7 +14186,7 @@
sha256 = "0f59s0a7zpa3dny1k7x6zrymrnzba184smq8v1vvz8hkc0ym1j1v";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/edbi-database-url";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/e25bf3d65ef2fb09eb0802cfd3e3faee86a5cfdb/recipes/edbi-database-url";
sha256 = "018rxijmy0lvisy281d501ra9lnh5xi0wmvz5avbjpb0fi4q1zdn";
name = "edbi-database-url";
};
@@ -13957,7 +14199,7 @@
edbi-django = callPackage ({ edbi, emacs, f, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "edbi-django";
- version = "20160221.2023";
+ version = "20160221.1323";
src = fetchFromGitHub {
owner = "proofit404";
repo = "edbi-django";
@@ -13965,7 +14207,7 @@
sha256 = "1029b7p1lnyqkg0jm9an6s1l7la0kb38gx42g7212wbj71s3krga";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/edbi-django";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/345cafbf5358f8179bcbcb895cace75f289c02f1/recipes/edbi-django";
sha256 = "1s59hab35hwnspyklxbhi0js0sgdn0rc7y33dqjk0psjcikqymg1";
name = "edbi-django";
};
@@ -13978,7 +14220,7 @@
edbi-minor-mode = callPackage ({ edbi, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "edbi-minor-mode";
- version = "20160221.2023";
+ version = "20160221.1323";
src = fetchFromGitHub {
owner = "proofit404";
repo = "edbi-minor-mode";
@@ -13986,7 +14228,7 @@
sha256 = "176954d4agk4by5w8a5ky65iwjky1dqxxvz8vdf8fxj82r5k9fhh";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/edbi-minor-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/5fb878b60c7ecbb1e3a47aef1d9765061c510644/recipes/edbi-minor-mode";
sha256 = "0p7vdf9cp6i7mhjxj82670pfflf1kacalmakb7ssgigs1nsf3spi";
name = "edbi-minor-mode";
};
@@ -13999,7 +14241,7 @@
edbi-sqlite = callPackage ({ edbi, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "edbi-sqlite";
- version = "20160221.2023";
+ version = "20160221.1323";
src = fetchFromGitHub {
owner = "proofit404";
repo = "edbi-sqlite";
@@ -14007,7 +14249,7 @@
sha256 = "1vll81386fx90lq5sy4rlxcik6mvw7zx5cc51f0yaca9bkcckp51";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/edbi-sqlite";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/acc9b816796b9f142c53f90593952b43c962d2d8/recipes/edbi-sqlite";
sha256 = "1w53ypz3pdqaml3vq9j3f1w443n8s9hb2ys090kxvjqnb8x8v44y";
name = "edbi-sqlite";
};
@@ -14020,7 +14262,7 @@
ede-compdb = callPackage ({ cl-lib ? null, ede ? null, fetchFromGitHub, fetchurl, lib, melpaBuild, semantic ? null }:
melpaBuild {
pname = "ede-compdb";
- version = "20150920.2233";
+ version = "20150920.1533";
src = fetchFromGitHub {
owner = "randomphrase";
repo = "ede-compdb";
@@ -14028,7 +14270,7 @@
sha256 = "1cfjw9b1lm29s5cbh0qqmkchbq2382s71w4rpb0gyf603s0yg13m";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ede-compdb";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/3b70138b7d82aec2d60f4a7c0cd21e734a1fc52a/recipes/ede-compdb";
sha256 = "1ypi7rxbgg2qck1b571hcw5m4ipllb48g6sindpdf180kbfbfpn7";
name = "ede-compdb";
};
@@ -14041,7 +14283,7 @@
edebug-x = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "edebug-x";
- version = "20130616.825";
+ version = "20130616.125";
src = fetchFromGitHub {
owner = "ScottyB";
repo = "edebug-x";
@@ -14049,7 +14291,7 @@
sha256 = "1zgiifi1k2d9g8sarfpjzamk8g1yx4ilgn60mqhy2pznp30b5qb2";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/edebug-x";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/204e40cd450f4223598be1f385f08ec82b44f70c/recipes/edebug-x";
sha256 = "0mzrip6y346mix4ny1xj8rkji1w531ix24k3cczmlmm4hm7l29ql";
name = "edebug-x";
};
@@ -14062,7 +14304,7 @@
edit-at-point = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "edit-at-point";
- version = "20150716.1524";
+ version = "20150716.824";
src = fetchFromGitHub {
owner = "enoson";
repo = "edit-at-point.el";
@@ -14070,7 +14312,7 @@
sha256 = "0crwdgng377sy1zbq7kqkz24v697mlzgdsvkdp1m8r7ympikkj6w";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/edit-at-point";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/1737276c05491b53bf0c71e3aefe1480b3b99535/recipes/edit-at-point";
sha256 = "0sn5a644zm165li44yffcpcai8bhl3yfvqcljghlwaa0w45sc9im";
name = "edit-at-point";
};
@@ -14083,7 +14325,7 @@
edit-color-stamp = callPackage ({ cl-lib ? null, es-lib, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "edit-color-stamp";
- version = "20130529.1933";
+ version = "20130529.1233";
src = fetchFromGitHub {
owner = "sabof";
repo = "edit-color-stamp";
@@ -14091,7 +14333,7 @@
sha256 = "0vk954f44m2bq7qb122pzlb8fibrisx47ihvn3h96m8nmx0fv32r";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/edit-color-stamp";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/2ad2ea105b895cb958ce0ab2bf2fad2b40d41b2f/recipes/edit-color-stamp";
sha256 = "1f8v8w3w7vb8jv29w06mplah8yfcs5qfjz2w4irv0rg7dwzy3zk8";
name = "edit-color-stamp";
};
@@ -14104,7 +14346,7 @@
edit-indirect = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "edit-indirect";
- version = "20160528.1551";
+ version = "20160528.851";
src = fetchFromGitHub {
owner = "Fanael";
repo = "edit-indirect";
@@ -14112,7 +14354,7 @@
sha256 = "145knahvvxbm8qmcdb69ilrg14w7130vav2pqjd7anr1l8n2i6gz";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/edit-indirect";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/acc9b816796b9f142c53f90593952b43c962d2d8/recipes/edit-indirect";
sha256 = "0q5jjmrvx5kaajllmhaxihsab2kr1vmcsfqrhxdhw3x3nf41s439";
name = "edit-indirect";
};
@@ -14125,7 +14367,7 @@
edit-list = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "edit-list";
- version = "20100930.1643";
+ version = "20100930.943";
src = fetchFromGitHub {
owner = "emacsmirror";
repo = "edit-list";
@@ -14133,7 +14375,7 @@
sha256 = "0981hy1n50yizc3k06vbxqrpfml817a67kab1hkgkw5v6ymm1hc9";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/edit-list";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/6c8aa348ce5289a8b1238f186affac1d544af755/recipes/edit-list";
sha256 = "0mi12jfgx06i0yr8k5nk80xryqszjv0xykdnri505862rb90xakv";
name = "edit-list";
};
@@ -14146,7 +14388,7 @@
edit-server = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "edit-server";
- version = "20141231.2258";
+ version = "20141231.1558";
src = fetchFromGitHub {
owner = "stsquad";
repo = "emacs_chrome";
@@ -14154,7 +14396,7 @@
sha256 = "0ssmhwg4wfh5cxgqv8bl55449204h4zi863m7jhvas4c9zq005kd";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/edit-server";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/d98d69008b5ca8b92fa7a6045b9d1af86f269386/recipes/edit-server";
sha256 = "0ffxcgmnz0f2c1i3vfwm8vlm6jyd7ibf4kq5z8c6n50zkwfdmns0";
name = "edit-server";
};
@@ -14167,7 +14409,7 @@
edit-server-htmlize = callPackage ({ edit-server, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "edit-server-htmlize";
- version = "20130329.2348";
+ version = "20130329.1748";
src = fetchFromGitHub {
owner = "frobtech";
repo = "edit-server-htmlize";
@@ -14175,7 +14417,7 @@
sha256 = "174xq45xc632zrb916aw7q4bch96pbi6zgy3dk77qla3ky9cfpl3";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/edit-server-htmlize";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/219b037401a81ce70bd2106dabffa16d8b0c7cef/recipes/edit-server-htmlize";
sha256 = "007lv3698a88wxan7kplz2117azxxpzzgshin9c1aabg059hszlj";
name = "edit-server-htmlize";
};
@@ -14188,15 +14430,15 @@
editorconfig = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "editorconfig";
- version = "20160531.1040";
+ version = "20160623.2245";
src = fetchFromGitHub {
owner = "editorconfig";
repo = "editorconfig-emacs";
- rev = "58961f515e6cfcc6fc4f4c2c3e415260a2ab8027";
- sha256 = "0nf8m9mnm2q0vanwngwrx9m5qjrng22fk9jg6sws340z4059m1ak";
+ rev = "a32fd81182be981a558ff9d0db46e3ca30050b59";
+ sha256 = "0bhadyxv34ywiyjx69vf1pgc04fiyarsrvhci559fyy2b6lql6k5";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/editorconfig";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50d4f2ed288ef38153a7eab44c036e4f075b51d0/recipes/editorconfig";
sha256 = "0zv96m07ml8i3k7zm7sdci4hn611n3ypna7zppfkwbdyr7d5k2gc";
name = "editorconfig";
};
@@ -14206,10 +14448,31 @@
license = lib.licenses.free;
};
}) {};
+ editorconfig-custom-majormode = callPackage ({ editorconfig, fetchFromGitHub, fetchurl, lib, melpaBuild }:
+ melpaBuild {
+ pname = "editorconfig-custom-majormode";
+ version = "20160623.643";
+ src = fetchFromGitHub {
+ owner = "10sr";
+ repo = "editorconfig-custom-majormode-el";
+ rev = "2e3cbaff36f072a4b32064c2db0c7b999b87b535";
+ sha256 = "0pmafnpzzgzpsxjzi57l59sss9pjpvmblpd6qrl1dzgp096idki0";
+ };
+ recipeFile = fetchurl {
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/fcd47bf4630442ad1a941ad432cef64c7746aa71/recipes/editorconfig-custom-majormode";
+ sha256 = "0ykvjg3gwxky6w5cm0y5s63q9820b7d25fy9plw8sarxwy2a5lxy";
+ name = "editorconfig-custom-majormode";
+ };
+ packageRequires = [ editorconfig ];
+ meta = {
+ homepage = "https://melpa.org/#/editorconfig-custom-majormode";
+ license = lib.licenses.free;
+ };
+ }) {};
edn = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, peg }:
melpaBuild {
pname = "edn";
- version = "20160215.1319";
+ version = "20160215.619";
src = fetchFromGitHub {
owner = "expez";
repo = "edn.el";
@@ -14217,7 +14480,7 @@
sha256 = "1xp2hjhn52k6l1g6ypva6dsklpawni7gvjafbz6404f9dyxflh7l";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/edn";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/305dd770d9db86d5ee602e6bd571b7c4f6c4ddbe/recipes/edn";
sha256 = "00cy8axhy2p3zalzl8k2083l5a7s3aswb9qfk9wsmf678m8pqwqg";
name = "edn";
};
@@ -14230,7 +14493,7 @@
edts = callPackage ({ auto-complete, auto-highlight-symbol, dash, eproject, erlang, f, fetchFromGitHub, fetchurl, lib, melpaBuild, popup, s }:
melpaBuild {
pname = "edts";
- version = "20160430.1531";
+ version = "20160430.831";
src = fetchFromGitHub {
owner = "tjarvstrand";
repo = "edts";
@@ -14238,7 +14501,7 @@
sha256 = "0dn2p80pifkc5pjqqx6xhr53mjp5y0hb48imhwybf9mwbgpz16va";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/edts";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/782db7fba2713bfa17d9305ae15b0a9e1985445b/recipes/edts";
sha256 = "0f0rbd0mqqwn743qmr1g5mmi1sbmlcglclww8jxvbvb61jq8vspr";
name = "edts";
};
@@ -14260,7 +14523,7 @@
efire = callPackage ({ circe, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "efire";
- version = "20151009.2231";
+ version = "20151009.1531";
src = fetchFromGitHub {
owner = "capitaomorte";
repo = "efire";
@@ -14268,7 +14531,7 @@
sha256 = "1c2iyv392ap35nss4j901h33d3lx9lmq5v43flf2rid1766pam6v";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/efire";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/39dc592e92f0377a354d1b17f42172409a836484/recipes/efire";
sha256 = "1c8vdc58i0k7vvanwhckfc31226d3rb5xq77lh9ydgnd4i97gq2w";
name = "efire";
};
@@ -14281,7 +14544,7 @@
egg = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "egg";
- version = "20160331.547";
+ version = "20160330.2247";
src = fetchFromGitHub {
owner = "byplayer";
repo = "egg";
@@ -14289,7 +14552,7 @@
sha256 = "1qrblglkafwzfds8x5wp4yrn1gq8iz823iilxcp9mwycbw57ajw8";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/egg";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/a1c97870c2641d73685f07a12f010530cc186544/recipes/egg";
sha256 = "144g1fvs2cmn3px0a98nvxl5cz70kx30v936k5ppyi8gvbj0md5i";
name = "egg";
};
@@ -14302,15 +14565,15 @@
egison-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "egison-mode";
- version = "20160603.1003";
+ version = "20160603.303";
src = fetchFromGitHub {
owner = "egisatoshi";
repo = "egison3";
- rev = "6181c9e4e9e564b0bd2c3c2c77a868d24a9e3195";
- sha256 = "1akmng2vip60wlv6grby8aqrn99y3xx8bbj58cd3x4n4ayfa5ax7";
+ rev = "930d067a212046ad2d9d374f31196b6ffe2ec2a9";
+ sha256 = "0lnxp2ffzkcrxvj4y1mpqq6qqxgikg5hah49x16r6n75s35sfidk";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/egison-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/f543dd136e2af6c36b12073ea75b3c4d4bc79769/recipes/egison-mode";
sha256 = "0x11fhv8kkx34h831k2q70y5qfz7wnfia4ka5mbmps7mpr68zcwi";
name = "egison-mode";
};
@@ -14323,7 +14586,7 @@
ego = callPackage ({ dash, emacs, fetchFromGitHub, fetchurl, ht, htmlize, lib, melpaBuild, mustache, org, simple-httpd }:
melpaBuild {
pname = "ego";
- version = "20160602.733";
+ version = "20160602.33";
src = fetchFromGitHub {
owner = "emacs-china";
repo = "EGO";
@@ -14331,7 +14594,7 @@
sha256 = "1m53zv74lqzdy78jix0a33ih2pqkmrfriwlgsgvb12lb281bfnsa";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ego";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/0090a628a5d566a887cac0d24b080ee6bafe4612/recipes/ego";
sha256 = "02s840chz3v4gdyq01b5i5w2vxl94001jk9j1nsp5b8xm10w985j";
name = "ego";
};
@@ -14343,14 +14606,14 @@
}) {};
eide = callPackage ({ fetchgit, fetchurl, lib, melpaBuild }: melpaBuild {
pname = "eide";
- version = "20160210.2138";
+ version = "20160210.1438";
src = fetchgit {
url = "git://git.tuxfamily.org/gitroot/eide/emacs-ide.git";
rev = "9d7fb8c50568ece04bb0382caca42d3ab68fbb01";
sha256 = "1qiafvx6bhliqaysyc4qv2ps44qsmls75ysjbgmzw5rndc8hf0r0";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/eide";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/d384f185f76039b06a1b5b12c792b346c6d47a22/recipes/eide";
sha256 = "16cf32n2l4wy1px7fm6x4vxx7pbqdp7zh2jn3bymg0b40i2321sz";
name = "eide";
};
@@ -14363,7 +14626,7 @@
eimp = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "eimp";
- version = "20120826.2239";
+ version = "20120826.1539";
src = fetchFromGitHub {
owner = "nicferrier";
repo = "eimp";
@@ -14371,7 +14634,7 @@
sha256 = "154d57yafxbcf39r89n5j43c86rp2fki3lw3gwy7ww2g6qkclcra";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/eimp";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/0fda2b54a0ff0b6fc3bd6d20cfcbbf63cae5380f/recipes/eimp";
sha256 = "00g77bg49m38cjfbh17ccnmksz05qx7yvgl6i4i4hysbr2d8pgxd";
name = "eimp";
};
@@ -14384,7 +14647,7 @@
ein = callPackage ({ cl-generic, fetchFromGitHub, fetchurl, lib, melpaBuild, request, websocket }:
melpaBuild {
pname = "ein";
- version = "20160422.1529";
+ version = "20160422.829";
src = fetchFromGitHub {
owner = "millejoh";
repo = "emacs-ipython-notebook";
@@ -14392,7 +14655,7 @@
sha256 = "1b20cz9grxyjpbmc91csfygkg6rnclj39cc6pnlxxy6ikcn5xywn";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ein";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/3201516c0158c47d0226ef9c5d324d29ac7b088b/recipes/ein";
sha256 = "1nksj1cpf4d9brr3rb80bgp2x05qdq9xmlp8mwbic1s27mw80bpp";
name = "ein";
};
@@ -14405,7 +14668,7 @@
ein-mumamo = callPackage ({ ein, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "ein-mumamo";
- version = "20150302.128";
+ version = "20150301.1828";
src = fetchFromGitHub {
owner = "millejoh";
repo = "ein-mumamo";
@@ -14413,7 +14676,7 @@
sha256 = "1w0b3giy9ca35pp2ni4afnqas64a2vriilab7jiw9anp3ryh6570";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ein-mumamo";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/bd8fcf7f6332f94dc37697f9412c8043da8d4f76/recipes/ein-mumamo";
sha256 = "029sk90xz9fhv2s56f5hp0aks1d6ybz517009vv4892bbzkpjv1w";
name = "ein-mumamo";
};
@@ -14426,7 +14689,7 @@
eink-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "eink-theme";
- version = "20160522.803";
+ version = "20160522.103";
src = fetchFromGitHub {
owner = "maio";
repo = "eink-emacs";
@@ -14434,7 +14697,7 @@
sha256 = "1ll3d8ylwbznmlq0wl6nvf6sgb9y2hkkpybv17ymg016j5xbngkm";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/eink-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/a1349c3f93ab60983f77c28f97048fa258b612a6/recipes/eink-theme";
sha256 = "0z437cpf1b8bqyi7bv0w0dnc52q4f5g17530lwdcxjkr38s9b1zn";
name = "eink-theme";
};
@@ -14447,7 +14710,7 @@
ejc-sql = callPackage ({ auto-complete, clomacs, dash, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "ejc-sql";
- version = "20160603.1642";
+ version = "20160603.942";
src = fetchFromGitHub {
owner = "kostafey";
repo = "ejc-sql";
@@ -14455,7 +14718,7 @@
sha256 = "0v7amrmzrmj3myikd0a3g30cmkjri84paxxi4qzldwshj1pwypn4";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ejc-sql";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/8f2cd74717269ef7f10362077a91546723a72104/recipes/ejc-sql";
sha256 = "0v9mmwc2gm58nky81q7fibj93zi7zbxq1jzjw55dg6cb6qb87vnx";
name = "ejc-sql";
};
@@ -14468,7 +14731,7 @@
el-autoyas = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "el-autoyas";
- version = "20120918.1517";
+ version = "20120918.817";
src = fetchFromGitHub {
owner = "mattfidler";
repo = "el-autoyas.el";
@@ -14476,7 +14739,7 @@
sha256 = "0dbp2zz993cm7mrd58c4iflbzqwg50wzgn2cpwfivk14w1mznh4n";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/el-autoyas";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/cc4845343dbb8f8294394f6850788e4f1fe6b99b/recipes/el-autoyas";
sha256 = "0hh5j79f3z82nmb3kqry8k8lgc1qswk6ni3g9jg60pasc3wkbh6c";
name = "el-autoyas";
};
@@ -14489,15 +14752,15 @@
el-get = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "el-get";
- version = "20160520.146";
+ version = "20160628.1819";
src = fetchFromGitHub {
owner = "dimitri";
repo = "el-get";
- rev = "32d9903ea77f6d63fae45a14ab97f69333d7e5fc";
- sha256 = "1dyc8qqyj54xg6wdybysgwpyvqpsjnd87nrqfzfb49mw470wf37r";
+ rev = "78e8d27fc2b556e53451e64291f4a1c5fe5bcce0";
+ sha256 = "0p8np1girlvs1w1jnab49s94220q1863j6xbpbsx9ndlybbnamza";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/el-get";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/1c61197a2b616d6d3c6b652248cb166196846b44/recipes/el-get";
sha256 = "1438v2sw5n67q404c93y2py226v469nagqwp4w9l6yyy40h4myhz";
name = "el-get";
};
@@ -14510,7 +14773,7 @@
el-init = callPackage ({ anaphora, cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "el-init";
- version = "20150728.1120";
+ version = "20150728.420";
src = fetchFromGitHub {
owner = "HKey";
repo = "el-init";
@@ -14518,7 +14781,7 @@
sha256 = "0qk5jk0n7ga2cxqnm69rsy5cjjn5b4l4yqgaafvmmrrp70p8drmi";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/el-init";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/f0c18cc62ffaaf839284ed7b261cc6f375fab813/recipes/el-init";
sha256 = "121n6z8p9kzi7axp4i2kyi621gw20635w4j81i1bryblaqrv5kl5";
name = "el-init";
};
@@ -14531,7 +14794,7 @@
el-init-viewer = callPackage ({ anaphora, cl-lib ? null, ctable, dash, el-init, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "el-init-viewer";
- version = "20150303.928";
+ version = "20150303.228";
src = fetchFromGitHub {
owner = "HKey";
repo = "el-init-viewer";
@@ -14539,7 +14802,7 @@
sha256 = "0flf0pa3xwrdhfkshyr6nqrm957sgx9jkganbasqavbq1dvlw6lj";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/el-init-viewer";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/f90e6be757783352c4a7732177ff2e2c0a066247/recipes/el-init-viewer";
sha256 = "0kkmsml9xf2n8nlrcicfg2l78s3dlhd6ssx0s62v77v4wdpl297m";
name = "el-init-viewer";
};
@@ -14552,7 +14815,7 @@
el-mock = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "el-mock";
- version = "20150906.1221";
+ version = "20150906.521";
src = fetchFromGitHub {
owner = "rejeep";
repo = "el-mock.el";
@@ -14560,7 +14823,7 @@
sha256 = "1jiq2hpym3wpk80zsl4lffpv4kgkykc2zp08sb01wa7pl8d1knmm";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/el-mock";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/b1989beb927657c0ff7e79fe448f62ac58c11be7/recipes/el-mock";
sha256 = "07m7w7n202nijnxidy0j0r4nbcvlnbkm9b0n8qb2bwi3d4cfp77l";
name = "el-mock";
};
@@ -14573,15 +14836,15 @@
el-pocket = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, web }:
melpaBuild {
pname = "el-pocket";
- version = "20150203.28";
+ version = "20160528.1151";
src = fetchFromGitHub {
owner = "pterygota";
repo = "el-pocket";
- rev = "e79b5a4c7762be4ea88f43f17203d44a5c8ad310";
- sha256 = "1iykhicc1ic1r6h4vj3701rm0vfy41b16w3d98amf8jjypv54wv7";
+ rev = "eb356e013c71903f2e946631ff58a1d0c2372389";
+ sha256 = "01dqksnz0nbfmp10sd3wwv1gffs60rk5v9rf2j3q2z13qsh8l2yy";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/el-pocket";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/c3b8857bc84888a3f8566fab6288966e07d4201f/recipes/el-pocket";
sha256 = "0fgylpfixsx5l1nrgz6n1c2ayf52p60f9q290hmkn36siyx5hixw";
name = "el-pocket";
};
@@ -14594,7 +14857,7 @@
el-spec = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "el-spec";
- version = "20121018.904";
+ version = "20121018.204";
src = fetchFromGitHub {
owner = "uk-ar";
repo = "el-spec";
@@ -14602,7 +14865,7 @@
sha256 = "1lsq7980pwcwlg7z37hrig8ddm9nyvaqrlczv1w0vy631vc5z2az";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/el-spec";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/407e344bf4e4b3885ebb7df02ebb37feee5e2515/recipes/el-spec";
sha256 = "017syizs8qw5phwvpzzffzdnj6rh9q4n7s51qjvj8qfb3088igkh";
name = "el-spec";
};
@@ -14615,7 +14878,7 @@
el-spice = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, thingatpt-plus }:
melpaBuild {
pname = "el-spice";
- version = "20140805.2038";
+ version = "20140805.1338";
src = fetchFromGitHub {
owner = "vedang";
repo = "el-spice";
@@ -14623,7 +14886,7 @@
sha256 = "1sba405h1sy5vxg4ki631p4979gyaqv8wnwbgca5jp2pm8l3viri";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/el-spice";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/4666eee9f6837d6d9dba77e04aa4c8c4a93b47b5/recipes/el-spice";
sha256 = "0i0l3y9w1q9pf5zhvmsq4h427imix67jgcfwq21b6j82dzg5l4hg";
name = "el-spice";
};
@@ -14636,7 +14899,7 @@
el-sprunge = callPackage ({ emacs, fetchFromGitHub, fetchurl, htmlize, lib, melpaBuild, web-server }:
melpaBuild {
pname = "el-sprunge";
- version = "20140107.239";
+ version = "20140106.1939";
src = fetchFromGitHub {
owner = "eschulte";
repo = "el-sprunge";
@@ -14644,7 +14907,7 @@
sha256 = "04k1fz0ypmfzgwamncp2vz0lq54bq6y7c8k9nm39csp2564vmbbc";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/el-sprunge";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/547209532faf45b35b55350783ccee532ce2bcbb/recipes/el-sprunge";
sha256 = "0rb1cr7zrfl1s5prxy3xwdqgnm8ddw33pcvk049km2qbccb08v6a";
name = "el-sprunge";
};
@@ -14657,7 +14920,7 @@
el-spy = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "el-spy";
- version = "20131226.2108";
+ version = "20131226.1408";
src = fetchFromGitHub {
owner = "uk-ar";
repo = "el-spy";
@@ -14665,7 +14928,7 @@
sha256 = "016l3inzb7dby0w58najj2pvymwk6gllsxvqj2fkz3599i36p1pn";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/el-spy";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/7a90318a38c35e648152ec5fb2dd86c432af9553/recipes/el-spy";
sha256 = "1bgv4mgsnkmjdyay7lhkqdszvnwpjy4dxxw11kq45w866ba8645n";
name = "el-spy";
};
@@ -14677,13 +14940,13 @@
}) {};
el-swank-fuzzy = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild {
pname = "el-swank-fuzzy";
- version = "20130824.1357";
+ version = "20130824.657";
src = fetchurl {
url = "https://www.emacswiki.org/emacs/download/el-swank-fuzzy.el";
sha256 = "1g2jhm9m5qcj6a231n5ch6b8bqwzq3kj275nd4s89p89v1252qhn";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/el-swank-fuzzy";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/2aecf6d476c7898478e6e5dcfc77d91935f07039/recipes/el-swank-fuzzy";
sha256 = "1m7y4c0r1w8ndmr1wgc2llrbfawbbxnvcvgjpsckb3704s87yxr1";
name = "el-swank-fuzzy";
};
@@ -14696,15 +14959,15 @@
el-x = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "el-x";
- version = "20140111.2301";
+ version = "20140111.1601";
src = fetchFromGitHub {
owner = "sigma";
repo = "el-x";
- rev = "e96541c1f32e0a3aca4ad0a0eb382bd898250163";
- sha256 = "1i6j44ssxm1xdg0mf91nh1lnprwsaxsx8vsrf720nan7mfr283h5";
+ rev = "417851972dd967ab82a772256c3d9c1b343e7f82";
+ sha256 = "0vm40044b4r132py9l12d8d1nwp4553xj8a4w2wfrg651wkwp3g8";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/el-x";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/0346f6349cf39a0414cd055b06d8ed193f4972d4/recipes/el-x";
sha256 = "1721d9mljlcbdwb5b9934q7a48y30x6706pp4bjvgys0r64dml5g";
name = "el-x";
};
@@ -14717,7 +14980,7 @@
el2markdown = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "el2markdown";
- version = "20150516.2238";
+ version = "20150516.1538";
src = fetchFromGitHub {
owner = "Lindydancer";
repo = "el2markdown";
@@ -14725,7 +14988,7 @@
sha256 = "03xlxx57z1id9mr7afkvf77m2f9rrknrm1380p51vka84v2hl3mh";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/el2markdown";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/914e845a0869680f84611a415373c9a166c93794/recipes/el2markdown";
sha256 = "1a52qm0jrcvvpb01blr5l7apaxqn4bvhkgha53cr48rdkmmq318g";
name = "el2markdown";
};
@@ -14738,7 +15001,7 @@
elang = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, names }:
melpaBuild {
pname = "elang";
- version = "20160104.1556";
+ version = "20160104.856";
src = fetchFromGitHub {
owner = "vkazanov";
repo = "elang";
@@ -14746,7 +15009,7 @@
sha256 = "1wikmzl9gi72h6fxawj0h20828n4vypw9rrv35kqnl4gfrdmxzkk";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/elang";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/1cb66c2a6272a804d7a81fc506643e80f11da306/recipes/elang";
sha256 = "0frhn3hm8351qzljicpzars28af1fghgv45717ml79rwb4vi6yiy";
name = "elang";
};
@@ -14759,7 +15022,7 @@
eldoc-eval = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "eldoc-eval";
- version = "20150512.1406";
+ version = "20150512.706";
src = fetchFromGitHub {
owner = "thierryvolpiatto";
repo = "eldoc-eval";
@@ -14767,7 +15030,7 @@
sha256 = "0vppa9xihn8777rphiw1aqp96xn16vgjwff1dwvp8z861silp8ar";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/eldoc-eval";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/63ba2004d3db4c5a71676dca82ad880328cf6073/recipes/eldoc-eval";
sha256 = "0z4scgi2xgrgd47aqqmyv1ww8alh43s0qny5qmh3f1nnppz3nd7c";
name = "eldoc-eval";
};
@@ -14779,13 +15042,13 @@
}) {};
eldoc-extension = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild {
pname = "eldoc-extension";
- version = "20140306.1545";
+ version = "20140306.845";
src = fetchurl {
url = "https://www.emacswiki.org/emacs/download/eldoc-extension.el";
sha256 = "13ncpp3hrwk0h030c5nnm2zfiingilr5b876jsf2wxmylg57nbch";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/eldoc-extension";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/2c59866b554def3f6cef997cc23254a560f3eb33/recipes/eldoc-extension";
sha256 = "0azkdx4ncjhb7qyhyg1a5pxgqqf2z1wq9iz802j0nxxnjzh9ny24";
name = "eldoc-extension";
};
@@ -14798,7 +15061,7 @@
electric-case = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "electric-case";
- version = "20150417.1312";
+ version = "20150417.612";
src = fetchFromGitHub {
owner = "zk-phi";
repo = "electric-case";
@@ -14806,7 +15069,7 @@
sha256 = "0s4y1319sr4xc0k6h2zhzzxsx2kc3pc2m6saah18y4kip0hjyhr8";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/electric-case";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/1d2561bee760f11fd95ae6b1c97708d38e9203b1/recipes/electric-case";
sha256 = "11mab7799kxs3w47srmds5prmwh6ldxzial9kqbqy33vybpkprmd";
name = "electric-case";
};
@@ -14819,7 +15082,7 @@
electric-operator = callPackage ({ dash, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, names }:
melpaBuild {
pname = "electric-operator";
- version = "20160511.831";
+ version = "20160511.131";
src = fetchFromGitHub {
owner = "davidshepherd7";
repo = "electric-operator";
@@ -14827,7 +15090,7 @@
sha256 = "1fq80j0gq3x03jqdpb6lr748mbx7sj7r54lq2m3qpnxp15p2v360";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/electric-operator";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/906cdf8647524bb76f644373cf8b65397d9053a5/recipes/electric-operator";
sha256 = "043bkpvvk42lmkll5jnz4q8i0m44y4wdxvkz6hiqhqcp1rv03nw2";
name = "electric-operator";
};
@@ -14840,7 +15103,7 @@
electric-spacing = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "electric-spacing";
- version = "20151209.1636";
+ version = "20151209.936";
src = fetchFromGitHub {
owner = "xwl";
repo = "electric-spacing";
@@ -14848,7 +15111,7 @@
sha256 = "0q1pb01h48wdbjgi04a6ck2jn7yfh92wpq1vka5pg54wv2k9b5fn";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/electric-spacing";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/a78c0044f8b7a0df1af1aba407be4d7865c98c59/recipes/electric-spacing";
sha256 = "0fcsz9wmibqp6ci0pa5r4gzlrsyj5klajxpgfksa0nfj3dc94cvg";
name = "electric-spacing";
};
@@ -14861,7 +15124,7 @@
elein = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "elein";
- version = "20120120.1216";
+ version = "20120120.516";
src = fetchFromGitHub {
owner = "remvee";
repo = "elein";
@@ -14869,7 +15132,7 @@
sha256 = "1ijrhm9vrzh5wl1rr9ayl11dwm05bh1i43fnbz3ga58l6whgkfpw";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/elein";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/a6da3640b72496e2b32e6ed21aa39df87af9f7f3/recipes/elein";
sha256 = "0af263zq4xxaxhpypn769q8h1dla0ygpnd6l8xc13zlni6jjwdsg";
name = "elein";
};
@@ -14882,15 +15145,15 @@
elfeed = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "elfeed";
- version = "20160525.1416";
+ version = "20160703.1210";
src = fetchFromGitHub {
owner = "skeeto";
repo = "elfeed";
- rev = "f34b5c34766868c6ebe3408155086dcf54062e2b";
- sha256 = "0zqrh8ycrk7768mj0d5b9dkz72559a36yhddb6idhik1v4q836sw";
+ rev = "32183b7ad53df863133531df1230aa26a35db5f4";
+ sha256 = "1qrfiycnll4d2f5gxla8v635jdqw96dbdnzqfsdb25lmdm0lha6p";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/elfeed";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/407ae027fcec444622c2a822074b95996df9e6af/recipes/elfeed";
sha256 = "1psga7fcjk2b8xjg10fndp9l0ib72l5ggf43gxp62i4lxixzv8f9";
name = "elfeed";
};
@@ -14903,7 +15166,7 @@
elfeed-goodies = callPackage ({ ace-jump-mode, cl-lib ? null, elfeed, fetchFromGitHub, fetchurl, lib, melpaBuild, noflet, popwin, powerline }:
melpaBuild {
pname = "elfeed-goodies";
- version = "20160317.1224";
+ version = "20160317.624";
src = fetchFromGitHub {
owner = "algernon";
repo = "elfeed-goodies";
@@ -14911,7 +15174,7 @@
sha256 = "10dbf292l1pd6a4jchdlvpp4yf2kxmf2j6zqigh4wlg125px1drk";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/elfeed-goodies";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/e6ebb8d23961fd9bfe101f7917caa3b405493f31/recipes/elfeed-goodies";
sha256 = "0zpk6nx757hasgzcww90fzkcdn078my33p7yax7xslvi4msm37bi";
name = "elfeed-goodies";
};
@@ -14931,7 +15194,7 @@
elfeed-org = callPackage ({ dash, elfeed, fetchFromGitHub, fetchurl, lib, melpaBuild, org, s }:
melpaBuild {
pname = "elfeed-org";
- version = "20151003.1231";
+ version = "20151003.531";
src = fetchFromGitHub {
owner = "remyhonig";
repo = "elfeed-org";
@@ -14939,7 +15202,7 @@
sha256 = "0cp8sbhym83db88ii7gyab6iqxppinjlrkzb9627gq7xgb5mqj5j";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/elfeed-org";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/5874b83e31cb760698032106fff75c8ded1d8e82/recipes/elfeed-org";
sha256 = "0xf2r5ca3gnx2cv9f8rr4s1hds2ggqsbllvfr229gznkcqjnglik";
name = "elfeed-org";
};
@@ -14952,15 +15215,15 @@
elfeed-web = callPackage ({ elfeed, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, simple-httpd }:
melpaBuild {
pname = "elfeed-web";
- version = "20160525.1416";
+ version = "20160525.716";
src = fetchFromGitHub {
owner = "skeeto";
repo = "elfeed";
- rev = "f34b5c34766868c6ebe3408155086dcf54062e2b";
- sha256 = "0zqrh8ycrk7768mj0d5b9dkz72559a36yhddb6idhik1v4q836sw";
+ rev = "32183b7ad53df863133531df1230aa26a35db5f4";
+ sha256 = "1qrfiycnll4d2f5gxla8v635jdqw96dbdnzqfsdb25lmdm0lha6p";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/elfeed-web";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/62459d16ee44d5fcf170c0ebc981ca2c7d4672f2/recipes/elfeed-web";
sha256 = "14ydwvjjc6wbhkj4g4xdh0c3nh4asqsz8ln7my5vjib881vmaq1n";
name = "elfeed-web";
};
@@ -14973,7 +15236,7 @@
elhome = callPackage ({ fetchFromGitHub, fetchurl, initsplit, lib, melpaBuild }:
melpaBuild {
pname = "elhome";
- version = "20131202.2008";
+ version = "20131202.1308";
src = fetchFromGitHub {
owner = "demyanrogozhin";
repo = "elhome";
@@ -14981,7 +15244,7 @@
sha256 = "0rdhnnyn0xsmnshnf289kxk974r57i6nx0vii1w36j6p6q0b7f9h";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/elhome";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/527cc08a3424f87fe2e99119b931530840ad07ba/recipes/elhome";
sha256 = "1k7936wxgslr29511dz9az38i9vi35rcxk68gzv35v9lpj89lalh";
name = "elhome";
};
@@ -14994,7 +15257,7 @@
elisp-depend = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "elisp-depend";
- version = "20120428.2204";
+ version = "20120428.1504";
src = fetchFromGitHub {
owner = "tehom";
repo = "elisp-depend";
@@ -15002,7 +15265,7 @@
sha256 = "1a73zdh4jkx8f74cq802b5j4bx8k1z7cbsp10lz40lmwwxbl3czq";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/elisp-depend";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/0fda2b54a0ff0b6fc3bd6d20cfcbbf63cae5380f/recipes/elisp-depend";
sha256 = "1x3acgkpd9a8xxjg5zjw0d4nv4q9xx30ipr6v3544mn16sv4ab7c";
name = "elisp-depend";
};
@@ -15015,7 +15278,7 @@
elisp-format = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "elisp-format";
- version = "20160508.1152";
+ version = "20160508.452";
src = fetchFromGitHub {
owner = "Yuki-Inoue";
repo = "elisp-format";
@@ -15023,7 +15286,7 @@
sha256 = "17l2xsixx3p93dmx9jsg0a3xqdg19nwp1di2pymlg41pw0kdf3x3";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/elisp-format";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/ff353f4228529c51577f7104cdf52c677be8a500/recipes/elisp-format";
sha256 = "1l0596y4yjn3jdyy6pgws1pgz6i12fxfy27566lmxklbxp8sxgy8";
name = "elisp-format";
};
@@ -15036,7 +15299,7 @@
elisp-lint = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "elisp-lint";
- version = "20150501.58";
+ version = "20150430.1758";
src = fetchFromGitHub {
owner = "nschum";
repo = "elisp-lint";
@@ -15044,7 +15307,7 @@
sha256 = "1ci6nyk1vvb3wgxzarbf6448i9rjb74zzrhcmls634gfxbryxdyy";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/elisp-lint";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/3744ee1bbde7ec8cecf2796d6ee875c327eb698c/recipes/elisp-lint";
sha256 = "102hrxdw72bm11a29i15g09lv7jlnd7vkv7292fm3mcxf5f4hkw9";
name = "elisp-lint";
};
@@ -15054,31 +15317,10 @@
license = lib.licenses.free;
};
}) {};
- elisp-sandbox = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
- melpaBuild {
- pname = "elisp-sandbox";
- version = "20131116.1342";
- src = fetchFromGitHub {
- owner = "joelmccracken";
- repo = "elisp-sandbox";
- rev = "523aed6110ad09a42306eb3b9dde33f955520c20";
- sha256 = "168ljhscqyvp24lw70ylv4a3c0y51sx4f66lfahbs7zpjvwf25x0";
- };
- recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/c367c756a02e161a2f6ce6c422802c9f74102a07/recipes/elisp-sandbox";
- sha256 = "1bazm1cf9ghh9b7jzqqgyfcalnrfg7vmxqbn4fiy2c76gbzlr2bp";
- name = "elisp-sandbox";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/elisp-sandbox";
- license = lib.licenses.free;
- };
- }) {};
elisp-slime-nav = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "elisp-slime-nav";
- version = "20160128.2009";
+ version = "20160128.1309";
src = fetchFromGitHub {
owner = "purcell";
repo = "elisp-slime-nav";
@@ -15086,7 +15328,7 @@
sha256 = "11vyy0bvzbs1h1kggikrvhd658j7c730w0pdp6qkm60rigvfi1ih";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/elisp-slime-nav";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/cae2ac3513e371a256be0f1a7468e38e686c2487/recipes/elisp-slime-nav";
sha256 = "009zgp68i4naprpjr8lcp06lh3i5ickn0nh0lgvrqs0niprnzh8c";
name = "elisp-slime-nav";
};
@@ -15099,15 +15341,15 @@
elixir-mode = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, pkg-info }:
melpaBuild {
pname = "elixir-mode";
- version = "20160601.931";
+ version = "20160607.259";
src = fetchFromGitHub {
owner = "elixir-lang";
repo = "emacs-elixir";
- rev = "fe313d3ba80a2ea847f2e1ed45bd11a589c5cc8c";
- sha256 = "0d4m3q3kh6wsk4rwwgknxddmvqhdd0b367xyj9qkwra4wsbaapa2";
+ rev = "8e77a8410cb0d7e05530d46d17569ad20baf8e49";
+ sha256 = "02a4i20vz9bc65d4m63pvpc2y5lkvjg1q8rd9g3l3mlkdqkf34bg";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/elixir-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/6374ced0de38d83bf99147f702f30706615480ed/recipes/elixir-mode";
sha256 = "1dba3jfg210i2rw8qy866396xn2xjgmbcyl006d6fibpr3j4lxaf";
name = "elixir-mode";
};
@@ -15120,7 +15362,7 @@
elixir-yasnippets = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, yasnippet }:
melpaBuild {
pname = "elixir-yasnippets";
- version = "20150417.1439";
+ version = "20150417.739";
src = fetchFromGitHub {
owner = "hisea";
repo = "elixir-yasnippets";
@@ -15128,7 +15370,7 @@
sha256 = "1sdq4372i19wdxpdp3347a1rf5zf5w6sa0da6lr511m7ri0lj6hd";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/elixir-yasnippets";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/6c37a13d56e9a0a4e7e2c11349ed87610a0f6b2c/recipes/elixir-yasnippets";
sha256 = "0vmkcd88wfafv31lyw0983p4qjj387qf258q7py1ij47fcmfp579";
name = "elixir-yasnippets";
};
@@ -15141,15 +15383,15 @@
elm-mode = callPackage ({ emacs, f, fetchFromGitHub, fetchurl, let-alist, lib, melpaBuild, s }:
melpaBuild {
pname = "elm-mode";
- version = "20160604.1114";
+ version = "20160605.401";
src = fetchFromGitHub {
owner = "jcollard";
repo = "elm-mode";
- rev = "5e2e70436d4e5be6725a43b1f09eb68db7400f02";
- sha256 = "0wzxk4p9rxgv2k3z5k5zyi46mfvax658j7p29q2ii5hyj9imcjka";
+ rev = "3112ff7964b596022de94c12b4676c6ca7a69c80";
+ sha256 = "1n6gp3c4b3ryprw7hxd7447gkgjafxnlbfg75mjm96vfgxkb7abx";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/elm-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/5d1a4d786b137f61ed3a1dd4ec236d0db120e571/recipes/elm-mode";
sha256 = "1gw9szkyr1spcx7qijddhxlm36h0hmfd53b4yzp1336yx44mlnd1";
name = "elm-mode";
};
@@ -15162,7 +15404,7 @@
elm-yasnippets = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, yasnippet }:
melpaBuild {
pname = "elm-yasnippets";
- version = "20160401.724";
+ version = "20160401.24";
src = fetchFromGitHub {
owner = "abingham";
repo = "elm-yasnippets";
@@ -15170,7 +15412,7 @@
sha256 = "1zb5yra6znkr7yaq6wqlmlr054wkv9cy1dih8h4j2gp2wnfwg968";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/elm-yasnippets";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/340664dd1c57b539de191dd6faa9eb8ed9ae6914/recipes/elm-yasnippets";
sha256 = "0nnr0sxkxviw2i7b5s8jgvsv7lgqxqvirmvmband84q9gxlz24zb";
name = "elm-yasnippets";
};
@@ -15183,7 +15425,7 @@
elmacro = callPackage ({ dash, fetchFromGitHub, fetchurl, lib, melpaBuild, s }:
melpaBuild {
pname = "elmacro";
- version = "20160224.1831";
+ version = "20160224.1131";
src = fetchFromGitHub {
owner = "Silex";
repo = "elmacro";
@@ -15191,7 +15433,7 @@
sha256 = "085ab50q3jdy3vh22lz2p5ivcjlhfki3zzfsp1n0939myw6vqcsm";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/elmacro";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/566cc5bc0f71c5a4191ad93b917dc268f6e1a2da/recipes/elmacro";
sha256 = "0644rgwawivrq1shsjx1x2p53z7jgr6bxqgn2smzql8pp6azy7xz";
name = "elmacro";
};
@@ -15204,7 +15446,7 @@
elmine = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, s }:
melpaBuild {
pname = "elmine";
- version = "20151121.1323";
+ version = "20151121.623";
src = fetchFromGitHub {
owner = "leoc";
repo = "elmine";
@@ -15212,7 +15454,7 @@
sha256 = "1463y4zc6yabd30k6806yw0am18fjv0bkxm56p2siqrwn9pbsh8k";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/elmine";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/29c24259817bf4b7caf51f1cfc163e6b7c63504b/recipes/elmine";
sha256 = "1gi94dyz9x50swkvryd4vj36rqgz4s58nrb4h4vwwviiiqmc8fvz";
name = "elmine";
};
@@ -15225,7 +15467,7 @@
elnode = callPackage ({ creole, dash, db, fakir, fetchFromGitHub, fetchurl, kv, lib, melpaBuild, noflet, s, web }:
melpaBuild {
pname = "elnode";
- version = "20140204.6";
+ version = "20140203.1706";
src = fetchFromGitHub {
owner = "nicferrier";
repo = "elnode";
@@ -15233,7 +15475,7 @@
sha256 = "0p3cj5vgka388i4dk9r7bx8pv8mywnfij9ahgqak5jlsddflh8hw";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/elnode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/c9a76a6498c2a0b0d471d3df7ae3d510d027f08c/recipes/elnode";
sha256 = "0piy5gy9a7c8s10b99fmdyh6glhvjvdyrz0x2bv30h7wplx5szi6";
name = "elnode";
};
@@ -15246,7 +15488,7 @@
elog = callPackage ({ eieio ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "elog";
- version = "20160426.1422";
+ version = "20160426.722";
src = fetchFromGitHub {
owner = "lujun9972";
repo = "elog";
@@ -15254,7 +15496,7 @@
sha256 = "0z3g7jddsjf4hmhwvi8mhd90255ylaix0ysljscqsixacknzcjm9";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/elog";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/4f3d560bf56b1b4e7540dc5ae16258895c106f1f/recipes/elog";
sha256 = "0hixsi60nf0khm9xmya3saf95ahn1gydp0l5wxawsc491qwg4vqd";
name = "elog";
};
@@ -15267,7 +15509,7 @@
elogcat = callPackage ({ dash, fetchFromGitHub, fetchurl, lib, melpaBuild, s }:
melpaBuild {
pname = "elogcat";
- version = "20151121.141";
+ version = "20151120.1841";
src = fetchFromGitHub {
owner = "youngker";
repo = "elogcat.el";
@@ -15275,7 +15517,7 @@
sha256 = "1jcr8bxffvnfs0ym6zkgs79hd6a0m81r4x4jr3v5l9zwxw04sy15";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/elogcat";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/4855c75dc22a7089cf9e4fa80dbe0ccd2830fe83/recipes/elogcat";
sha256 = "0sqdqlpg4firswr742nrb6b8sz3bpijf6pbxvandq3ddpm0rx9ia";
name = "elogcat";
};
@@ -15288,7 +15530,7 @@
elpa-audit = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "elpa-audit";
- version = "20141023.1531";
+ version = "20141023.831";
src = fetchFromGitHub {
owner = "purcell";
repo = "elpa-audit";
@@ -15296,7 +15538,7 @@
sha256 = "1dadf24x6v1vk57bp6w0g2dysigy5cqjzwldc8dn129f4pfrhipy";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/elpa-audit";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/c351c97e5b2c0595c82d65a7075176f9ebe44638/recipes/elpa-audit";
sha256 = "0l8har14zrlh9kdkh9vlmkmzg49vb0r8j1wnznryaidalvk84a52";
name = "elpa-audit";
};
@@ -15306,10 +15548,31 @@
license = lib.licenses.free;
};
}) {};
+ elpa-clone = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }:
+ melpaBuild {
+ pname = "elpa-clone";
+ version = "20160701.1129";
+ src = fetchFromGitHub {
+ owner = "dochang";
+ repo = "elpa-clone";
+ rev = "ee3249cb47658caa170d6a6ef14ef74f0d97bc10";
+ sha256 = "0fvadc5fdnpph163w67bn4pc8k856lyhlr1pnmjhpnnmzrrs36ch";
+ };
+ recipeFile = fetchurl {
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/11861edd9c7f9deebd44fd1f8ef648e7a04caf2b/recipes/elpa-clone";
+ sha256 = "172gpmpwf75y41n3v05l47w34x83vy63bqk97fd8a6b4dkj91lqa";
+ name = "elpa-clone";
+ };
+ packageRequires = [ cl-lib ];
+ meta = {
+ homepage = "https://melpa.org/#/elpa-clone";
+ license = lib.licenses.free;
+ };
+ }) {};
elpa-mirror = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "elpa-mirror";
- version = "20160512.704";
+ version = "20160512.4";
src = fetchFromGitHub {
owner = "redguardtoo";
repo = "elpa-mirror";
@@ -15317,7 +15580,7 @@
sha256 = "1l1wnnmz62crr2gzpf0gzqp2pwmd50xp9knpswwz7l482gvfbzl7";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/elpa-mirror";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/d64ce7042c45f29fb394be25ce415912182bac8b/recipes/elpa-mirror";
sha256 = "1jnviav2ybr13cgllg26kfjrwrl25adggnqiiwyjwgbbzxfycah8";
name = "elpa-mirror";
};
@@ -15330,15 +15593,15 @@
elpy = callPackage ({ company, fetchFromGitHub, fetchurl, find-file-in-project, highlight-indentation, lib, melpaBuild, pyvenv, yasnippet }:
melpaBuild {
pname = "elpy";
- version = "20160528.2110";
+ version = "20160613.1205";
src = fetchFromGitHub {
owner = "jorgenschaefer";
repo = "elpy";
- rev = "625434c8bd13335f165ac56017895543185c9d4a";
- sha256 = "0q70z5hif78s3syv6ny55phz8w794fwxkjwizbmiy4kn5y7lf3q7";
+ rev = "c0a92332bb0c0e784d226c1fe3ade9d8b924ddbb";
+ sha256 = "1f7qrks9ldq247ibih8qdp377fhzl5mlx2z5qm4wk53wydp643nm";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/elpy";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/a36daf2b034653cd73ee2db2bc30df2a5be6f3d1/recipes/elpy";
sha256 = "0n802bh7jj9zgz84xjrxvy33jl6s3hj5dqxafyfr87fank97hb6d";
name = "elpy";
};
@@ -15357,15 +15620,15 @@
elscreen = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "elscreen";
- version = "20151026.200";
+ version = "20160613.451";
src = fetchFromGitHub {
owner = "knu";
repo = "elscreen";
- rev = "249653a4a4b47c9b6306c2c29fa3753bc7342e61";
- sha256 = "055kam18k4ni1zw3310cpsvdnrp62d579r30lq67ig2lq3yxzc1m";
+ rev = "35c68a7503179fa618639e1c90b43bec9812a988";
+ sha256 = "0gvhnhcchrzlj0kbi48rzmqx2nz68d5lyp7f8jk0lbbbdrdv36ka";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/elscreen";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/e6140694c1dea0a573586d23d1f63d46c9b22936/recipes/elscreen";
sha256 = "1mlqbw14ilk6d3ba38kfw50pnlhb9f6sm5hy9dw58gp59siark5s";
name = "elscreen";
};
@@ -15378,7 +15641,7 @@
elscreen-buffer-group = callPackage ({ cl-lib ? null, elscreen, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "elscreen-buffer-group";
- version = "20160105.1703";
+ version = "20160105.1003";
src = fetchFromGitHub {
owner = "jeffgran";
repo = "elscreen-buffer-group";
@@ -15386,7 +15649,7 @@
sha256 = "0bbashrqpyhs282w5i15rzravvj0fjnydbh9vfnfnfnk8a9sssxz";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/elscreen-buffer-group";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/9c6fedb7b6ef58089da4b35ad115f699b4b24ff2/recipes/elscreen-buffer-group";
sha256 = "1clmhpk9zp6hsgz6a4jpmbrr9fr6k8b324s0x61n5yi4yzgdmc0v";
name = "elscreen-buffer-group";
};
@@ -15399,7 +15662,7 @@
elscreen-mew = callPackage ({ elscreen, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "elscreen-mew";
- version = "20160504.2035";
+ version = "20160504.1335";
src = fetchFromGitHub {
owner = "masutaka";
repo = "elscreen-mew";
@@ -15407,7 +15670,7 @@
sha256 = "14hwl5jzmm43qa4jbpsyswbz4hk1l2iwqh3ank6502bz58877k6c";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/elscreen-mew";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/47404ea3cfb591b780ca7e31095951a708b0a6b7/recipes/elscreen-mew";
sha256 = "06g4wcfjs036nn64ac0zsvr08cfmak2hyj83y7a0r35yxr1853w4";
name = "elscreen-mew";
};
@@ -15420,7 +15683,7 @@
elscreen-multi-term = callPackage ({ elscreen, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, multi-term }:
melpaBuild {
pname = "elscreen-multi-term";
- version = "20151022.433";
+ version = "20151021.2133";
src = fetchFromGitHub {
owner = "wamei";
repo = "elscreen-multi-term";
@@ -15428,7 +15691,7 @@
sha256 = "1cninrbgxzg0gykkpjx0i8pk2yc7sgr2kliqd35lgcxz2q4jlr51";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/elscreen-multi-term";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/7a24477cf83df7da931fa33c622ef720839529d2/recipes/elscreen-multi-term";
sha256 = "1zwrzblkag1d18xz450b7khsdssvsxyl1x6a682vy0dkn1y5qh1n";
name = "elscreen-multi-term";
};
@@ -15441,7 +15704,7 @@
elscreen-persist = callPackage ({ elscreen, fetchFromGitHub, fetchurl, lib, melpaBuild, revive }:
melpaBuild {
pname = "elscreen-persist";
- version = "20160506.329";
+ version = "20160505.2029";
src = fetchFromGitHub {
owner = "robario";
repo = "elscreen-persist";
@@ -15449,7 +15712,7 @@
sha256 = "0p0zphl3ylrbs3mz12y40hphslxd1hlszk1pqi151xrfgc2r0pp8";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/elscreen-persist";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/c30ec71dcc29d1d0fd6c54de512c8c4636a7e0a6/recipes/elscreen-persist";
sha256 = "1rjfvpsx0y5l9b76wa1ilj5lx39jd0m78nb1a4bqn81z0rkfpl4k";
name = "elscreen-persist";
};
@@ -15462,7 +15725,7 @@
elscreen-separate-buffer-list = callPackage ({ elscreen, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "elscreen-separate-buffer-list";
- version = "20150522.845";
+ version = "20150522.145";
src = fetchFromGitHub {
owner = "wamei";
repo = "elscreen-separate-buffer-list";
@@ -15470,7 +15733,7 @@
sha256 = "1w34nnl4zalxzmyfbc81qd82m7qp3zvz608dx6hfi44pjz0dp36f";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/elscreen-separate-buffer-list";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/9f5e5c8e2cd45a25e47c74bef59b9114aa7685eb/recipes/elscreen-separate-buffer-list";
sha256 = "1d8kc137cd8i3wglir1rlvk7w8mrdhd3xvcihi2f2f2g5nh2n5jk";
name = "elscreen-separate-buffer-list";
};
@@ -15483,7 +15746,7 @@
elwm = callPackage ({ dash, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "elwm";
- version = "20150817.1207";
+ version = "20150817.507";
src = fetchFromGitHub {
owner = "Fuco1";
repo = "elwm";
@@ -15491,7 +15754,7 @@
sha256 = "1k7npf93xbmrsq607x8zlgrpzqvplgia3ixz5w1lr1jlv1m2m8x2";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/elwm";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/0eb45a6141b797243973695be4c0582c9ad6965d/recipes/elwm";
sha256 = "0rf663ih3lfg4n4pj4dpp133967zha5m1wr46riaxpha7xr59al9";
name = "elwm";
};
@@ -15504,7 +15767,7 @@
elx = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "elx";
- version = "20160523.1428";
+ version = "20160523.728";
src = fetchFromGitHub {
owner = "tarsius";
repo = "elx";
@@ -15512,7 +15775,7 @@
sha256 = "07k8kq444ki7pxbz3vnrwqgycm9hfcdxgsnvf7qihqvzs2y1qm3d";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/elx";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/91430562ecea439af020e96405ec3f21d768cf9f/recipes/elx";
sha256 = "02nq66c0sds61k2p8cn2l0p2l8ysb38ibr038qn41l9hg1dq065x";
name = "elx";
};
@@ -15525,15 +15788,15 @@
emacs-eclim = callPackage ({ cl-lib ? null, dash, fetchFromGitHub, fetchurl, json ? null, lib, melpaBuild, popup, s }:
melpaBuild {
pname = "emacs-eclim";
- version = "20160411.1817";
+ version = "20160617.112";
src = fetchFromGitHub {
owner = "emacs-eclim";
repo = "emacs-eclim";
- rev = "b6daef5acf3e8cece565f410853ec4eebb4f8925";
- sha256 = "1fj84r3r0kdprjy2sbzxgx7icfn6fbhvylbzfcv4wq5g7qbn45sz";
+ rev = "2f59bfb333928c219855ceaf011791380d1b9a7a";
+ sha256 = "1ran9pg836433d4dqhf5j5zr26s8sbxld8xigjapyri9m2bhy9sn";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/emacs-eclim";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753/recipes/emacs-eclim";
sha256 = "1l55jhz5mb3bqw90cbf4jhcqgwj962br706qhm2wn5i2a1mg8xlv";
name = "emacs-eclim";
};
@@ -15546,7 +15809,7 @@
emacs-setup = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "emacs-setup";
- version = "20120727.1626";
+ version = "20120727.926";
src = fetchFromGitHub {
owner = "echosa";
repo = "emacs-setup";
@@ -15554,7 +15817,7 @@
sha256 = "15l3ab11vcmzqibkd6h5zqw5a83k8dmgcp4n26px29c0gv6bkpy8";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/emacs-setup";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/abb7101b2d48af56af09d1dc85c540300dba7b3c/recipes/emacs-setup";
sha256 = "1x4rh8vx6fsb2d6dz2g9j6jamin1vmpppwy3yzbl1dnf7w4hx4kh";
name = "emacs-setup";
};
@@ -15567,7 +15830,7 @@
emacsagist = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "emacsagist";
- version = "20140331.2030";
+ version = "20140331.1330";
src = fetchFromGitHub {
owner = "echosa";
repo = "emacsagist";
@@ -15575,7 +15838,7 @@
sha256 = "0ciqxyahlzaxq854jm25zbrbmrhcaj5csdhxa0az9crwha8wkmw2";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/emacsagist";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/07612d46faebb28e1eeb8ddae2ac20e2dc0175f6/recipes/emacsagist";
sha256 = "1cyz7nf0zxa21979jf5kdmkgwiyd17vsmpcmrw1af37ly27l8l64";
name = "emacsagist";
};
@@ -15588,7 +15851,7 @@
emacsc = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "emacsc";
- version = "20150807.1157";
+ version = "20150807.457";
src = fetchFromGitHub {
owner = "knu";
repo = "emacsc";
@@ -15596,7 +15859,7 @@
sha256 = "1rqr08gj07hw37mqd0flmq4a10wn16vy7wg0msqq0ab2smwjhns7";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/emacsc";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/acc9b816796b9f142c53f90593952b43c962d2d8/recipes/emacsc";
sha256 = "1fbf9al3yds0il18jz6hbpj1fsjlpb1kgp450gb6r09lc46x77mk";
name = "emacsc";
};
@@ -15609,7 +15872,7 @@
emacsist-view = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "emacsist-view";
- version = "20160426.1423";
+ version = "20160426.723";
src = fetchFromGitHub {
owner = "lujun9972";
repo = "emacsist-view";
@@ -15617,7 +15880,7 @@
sha256 = "1vhs9725fyl2j65lk014qz76iv4hsvyim06361h4lai634hp7ck6";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/emacsist-view";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/d2157e14d68fa2875c6d5c40c20a39b9a2431c10/recipes/emacsist-view";
sha256 = "0lf280ppi3zksqvx81y8mm9479j26kd5wywfghhwk36kz410hk99";
name = "emacsist-view";
};
@@ -15630,7 +15893,7 @@
emacsql = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, finalize, lib, melpaBuild }:
melpaBuild {
pname = "emacsql";
- version = "20160424.1647";
+ version = "20160424.947";
src = fetchFromGitHub {
owner = "skeeto";
repo = "emacsql";
@@ -15638,7 +15901,7 @@
sha256 = "012x6cx3rbxysvsmbx56y295ijdlpgy8z7ggcfp0cq0khki67yva";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/emacsql";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/9cc47c05fb0d282531c9560252090586e9f6196e/recipes/emacsql";
sha256 = "1x4rn8dmgz871dhz878i2mqci576zccf9i2xmq2ishxgqm0hp8ax";
name = "emacsql";
};
@@ -15651,7 +15914,7 @@
emacsql-mysql = callPackage ({ cl-lib ? null, emacs, emacsql, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "emacsql-mysql";
- version = "20151004.1615";
+ version = "20151004.915";
src = fetchFromGitHub {
owner = "skeeto";
repo = "emacsql";
@@ -15659,7 +15922,7 @@
sha256 = "012x6cx3rbxysvsmbx56y295ijdlpgy8z7ggcfp0cq0khki67yva";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/emacsql-mysql";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/9cc47c05fb0d282531c9560252090586e9f6196e/recipes/emacsql-mysql";
sha256 = "1c20zhpdzfqjds6kcjhiq1m5ch53fsx6n1xk30i35kkg1wxaaqzy";
name = "emacsql-mysql";
};
@@ -15672,7 +15935,7 @@
emacsql-psql = callPackage ({ cl-lib ? null, emacs, emacsql, fetchFromGitHub, fetchurl, lib, melpaBuild, pg }:
melpaBuild {
pname = "emacsql-psql";
- version = "20151004.1615";
+ version = "20151004.915";
src = fetchFromGitHub {
owner = "skeeto";
repo = "emacsql";
@@ -15680,7 +15943,7 @@
sha256 = "012x6cx3rbxysvsmbx56y295ijdlpgy8z7ggcfp0cq0khki67yva";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/emacsql-psql";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/9cc47c05fb0d282531c9560252090586e9f6196e/recipes/emacsql-psql";
sha256 = "1aa1g9jyjmz6w0lmi2cf67926ad3xvs0qsg7lrccnllr9k0flly3";
name = "emacsql-psql";
};
@@ -15693,7 +15956,7 @@
emacsql-sqlite = callPackage ({ cl-lib ? null, emacs, emacsql, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "emacsql-sqlite";
- version = "20160311.2138";
+ version = "20160311.1438";
src = fetchFromGitHub {
owner = "skeeto";
repo = "emacsql";
@@ -15701,7 +15964,7 @@
sha256 = "012x6cx3rbxysvsmbx56y295ijdlpgy8z7ggcfp0cq0khki67yva";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/emacsql-sqlite";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/9cc47c05fb0d282531c9560252090586e9f6196e/recipes/emacsql-sqlite";
sha256 = "1vywq3ypcs61s60y7x0ac8rdm9yj43iwzxh8gk9zdyrcn9qpis0i";
name = "emacsql-sqlite";
};
@@ -15714,7 +15977,7 @@
emacsshot = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "emacsshot";
- version = "20160504.1032";
+ version = "20160504.332";
src = fetchFromGitHub {
owner = "marcowahl";
repo = "emacsshot";
@@ -15722,7 +15985,7 @@
sha256 = "08j10c699r8r8xynvlkm0vwlfza1fqz11zcfk2dsrakq3y9vb4ly";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/emacsshot";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/efdd85accc6053f92efcbfdb7ddc37b23a07a3b0/recipes/emacsshot";
sha256 = "08xqx017yfizdj8wz7nbh9i7qpar6398sri78abzf78inv828s9j";
name = "emacsshot";
};
@@ -15735,7 +15998,7 @@
emagician-fix-spell-memory = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "emagician-fix-spell-memory";
- version = "20141229.2334";
+ version = "20141229.1634";
src = fetchFromGitHub {
owner = "jonnay";
repo = "emagicians-starter-kit";
@@ -15743,7 +16006,7 @@
sha256 = "00iklf97mszrsdv20q55qhml1dscvmmalpfnlkwi9mabklyq3i6z";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/emagician-fix-spell-memory";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/f181a35e33c93f42b16961bd522825b017057fc5/recipes/emagician-fix-spell-memory";
sha256 = "0ffjrpiph21dn8bplklsz3hrsai25l67yyr7n8qjxlwlibwqzv6j";
name = "emagician-fix-spell-memory";
};
@@ -15756,7 +16019,7 @@
emamux = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "emamux";
- version = "20160602.1553";
+ version = "20160602.853";
src = fetchFromGitHub {
owner = "syohex";
repo = "emacs-emamux";
@@ -15764,7 +16027,7 @@
sha256 = "0y6f759vh1v7pficjsf3n5ks52x36y2khk123a7ppi0vp826z52r";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/emamux";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/6de1ed3dfccb9f7e7b8586e8334af472a4988840/recipes/emamux";
sha256 = "1pg0gzi8rn0yafssrsiqdyj5dbfy984srq1r4dpp8p3bi3n0fkfz";
name = "emamux";
};
@@ -15777,7 +16040,7 @@
emamux-ruby-test = callPackage ({ emamux, fetchFromGitHub, fetchurl, lib, melpaBuild, projectile }:
melpaBuild {
pname = "emamux-ruby-test";
- version = "20130812.1839";
+ version = "20130812.1139";
src = fetchFromGitHub {
owner = "syohex";
repo = "emamux-ruby-test";
@@ -15785,7 +16048,7 @@
sha256 = "1idsvilsvlxh72waalhl8vrsmh0vfvz56qcv56fc2c0pb1i90icn";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/emamux-ruby-test";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/f11759710881bdf5a77bd309acb03a6699cc7fd6/recipes/emamux-ruby-test";
sha256 = "1l1hp2dggjlc287qkfyj21w9lri4agh91g5x707qqq8nicdlv3xm";
name = "emamux-ruby-test";
};
@@ -15798,15 +16061,15 @@
ember-mode = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "ember-mode";
- version = "20151103.1121";
+ version = "20160609.739";
src = fetchFromGitHub {
owner = "madnificent";
repo = "ember-mode";
- rev = "e82d88eee1882ac104857ec42a4fed731a99c13e";
- sha256 = "0cv8y6hr719648yxr2fbgb1hyg36m60bsbd57f2vvvqvg87si4jz";
+ rev = "9ad372808ded188b8741e7e6864f88e170232be1";
+ sha256 = "0if1h4vcajkhjy56d5zili3i2bvgxhhkhhgf6l37bnnly243zr3q";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ember-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/9ac1eef4ad87b1b6b6d8e63d340ba03dc013425b/recipes/ember-mode";
sha256 = "0fwd34cim29dg802ibsfd120px9sj54d4wzp3ggmjjzwkl9ky7dx";
name = "ember-mode";
};
@@ -15819,7 +16082,7 @@
ember-yasnippets = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, yasnippet }:
melpaBuild {
pname = "ember-yasnippets";
- version = "20160526.1858";
+ version = "20160526.1158";
src = fetchFromGitHub {
owner = "ronco";
repo = "ember-yasnippets.el";
@@ -15827,7 +16090,7 @@
sha256 = "0g7hp1aq0zznbhd234dpbblnagn34fxdasc5v4lfhm5ykw5xyb5x";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ember-yasnippets";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/6c37a13d56e9a0a4e7e2c11349ed87610a0f6b2c/recipes/ember-yasnippets";
sha256 = "1jwkzcqcpy7ykdjhsqmg8ds6qyl4jglyjbgg7v301x068dsxkja6";
name = "ember-yasnippets";
};
@@ -15840,15 +16103,15 @@
embrace = callPackage ({ cl-lib ? null, expand-region, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "embrace";
- version = "20160514.413";
+ version = "20160513.2113";
src = fetchFromGitHub {
owner = "cute-jumper";
repo = "embrace.el";
- rev = "b0f8c6bd6176886ddedfcc236e3f8533eae84064";
- sha256 = "0arxgq1a75lhzc8f18aa32q2rxq4wxxacm6l7zxiqz98kl0gvfyi";
+ rev = "875601a077795e036b470bdacd292a97b075d8e7";
+ sha256 = "07phgsc7lv9326gdjg23q0lzw45vcpx4biw93r10v0ln6bg21mz8";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/embrace";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/e8f07e3b5ba4ec4b0b79fba5a2cca5a3986218b6/recipes/embrace";
sha256 = "1w9zp9n91703d6jd4adl2xk574wsr7fm2a9v32b1i9bi3hr0hdjc";
name = "embrace";
};
@@ -15861,7 +16124,7 @@
emmet-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "emmet-mode";
- version = "20160501.2051";
+ version = "20160501.1351";
src = fetchFromGitHub {
owner = "smihica";
repo = "emmet-mode";
@@ -15869,7 +16132,7 @@
sha256 = "1dh43fhkaqljnh1517kf8h3rjqaygj6wdhcbsy7mzcac0jrbfsfc";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/emmet-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/7fabdb05de9b8ec18a3a566f99688b50443b6b44/recipes/emmet-mode";
sha256 = "0wjv4hqddjvbdrmsxzav5rpwnm2n6lr86jzkrnav8f2kyzypdsnr";
name = "emmet-mode";
};
@@ -15881,14 +16144,14 @@
}) {};
emms = callPackage ({ fetchgit, fetchurl, lib, melpaBuild }: melpaBuild {
pname = "emms";
- version = "20160531.1823";
+ version = "20160624.1553";
src = fetchgit {
url = "git://git.sv.gnu.org/emms.git";
- rev = "bb8bb83cd83b02ba57e3283475d7fd2689ea5c33";
- sha256 = "1syy2y4rp0nqjdkq0lwnii20xkzv7iyryh2zlq6qg4pd6b2c73jb";
+ rev = "56373a1752582edbd0cb9881cf843d9f87cfcf56";
+ sha256 = "0qvxhhpfz69rfb12ipkisxd444cdjhql6d3g398jj6s0mrfxnszd";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/emms";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/205eeed002b0848809a4c5f8ad99d925b48799ec/recipes/emms";
sha256 = "0kzli8b0z5maizfwhlhph1f5w3v6pwxvs2dfs90l8c0h97m4yy2m";
name = "emms";
};
@@ -15901,7 +16164,7 @@
emms-info-mediainfo = callPackage ({ emms, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "emms-info-mediainfo";
- version = "20131223.1400";
+ version = "20131223.700";
src = fetchFromGitHub {
owner = "fgallina";
repo = "emms-info-mediainfo";
@@ -15909,7 +16172,7 @@
sha256 = "07qbbs2i05bqndr4dxb84z50wav8ffbc56f6saw6pdx6n0sw6n6n";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/emms-info-mediainfo";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/d08c28c6ff4caf14f0bf4b0f40f16660dac2d5d9/recipes/emms-info-mediainfo";
sha256 = "17x8vvfhx739hcj9j1nh6j4r6zqnwa5zq9zpi9b6lxc8979k3m4w";
name = "emms-info-mediainfo";
};
@@ -15922,7 +16185,7 @@
emms-mark-ext = callPackage ({ emms, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "emms-mark-ext";
- version = "20130529.527";
+ version = "20130528.2227";
src = fetchFromGitHub {
owner = "vapniks";
repo = "emms-mark-ext";
@@ -15930,7 +16193,7 @@
sha256 = "03a7sn8pl0pnr05rmrrbw4hjyi8vpjqbvkvh0fqnij913a6qc64l";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/emms-mark-ext";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/36b7292160d3dab1a684d09c848a6b0f68b31add/recipes/emms-mark-ext";
sha256 = "13h6hy8y0as0xfc1cg8balw63as81fzar32q9h4zhnndl3hc1081";
name = "emms-mark-ext";
};
@@ -15943,7 +16206,7 @@
emms-mode-line-cycle = callPackage ({ emacs, emms, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "emms-mode-line-cycle";
- version = "20160221.1220";
+ version = "20160221.520";
src = fetchFromGitHub {
owner = "momomo5717";
repo = "emms-mode-line-cycle";
@@ -15951,7 +16214,7 @@
sha256 = "0q80f0plch6k4lhs8c9qm3mfycfbp3kn5sjrk9zxgxwnn901y9mp";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/emms-mode-line-cycle";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/dab676acd774616a32a0373f30647f3cb4522afc/recipes/emms-mode-line-cycle";
sha256 = "1jdmfh1i9v84iy7bj2dbc3s2wfzkrby3pabd99gnqzd9gn1cn8ca";
name = "emms-mode-line-cycle";
};
@@ -15964,15 +16227,15 @@
emms-player-mpv = callPackage ({ emms, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "emms-player-mpv";
- version = "20160319.808";
+ version = "20160621.1300";
src = fetchFromGitHub {
owner = "dochang";
repo = "emms-player-mpv";
- rev = "69ebe6d9539769d4c4daa484693ec0d6f67a3cca";
- sha256 = "104iw4bl6y33diqs5ayrvdljkhb6f9g2m5p5kh8klgy7z1yjhp4p";
+ rev = "d8535614f340cd9f0ff7db3404439b58f028ca9e";
+ sha256 = "1k3jmmg3jy691b3vraaxv9qncfa3698g9kalb7fyrpmdvy1p2cc6";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/emms-player-mpv";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/9679cb8d4b3b9dce1e0bff16647ea3f3e02c4189/recipes/emms-player-mpv";
sha256 = "175rmqx3bgys4chw8ylyf9rk07sg0llwbs9ivrv2d3ayhcz1lg9y";
name = "emms-player-mpv";
};
@@ -15985,7 +16248,7 @@
emms-player-mpv-jp-radios = callPackage ({ cl-lib ? null, emacs, emms, emms-player-simple-mpv, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "emms-player-mpv-jp-radios";
- version = "20160501.1533";
+ version = "20160501.833";
src = fetchFromGitHub {
owner = "momomo5717";
repo = "emms-player-mpv-jp-radios";
@@ -15993,7 +16256,7 @@
sha256 = "1phjrisr9m6rpd40y6f8iiagrr7vpqc8ksgwymi8w11b1kmxhdja";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/emms-player-mpv-jp-radios";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/09ba6da5057061f055d4a3212d167f9666618d4f/recipes/emms-player-mpv-jp-radios";
sha256 = "0gdap5cv08pz370fl92v9lyvgkbbyjhp9wsc4kyjm4f4pwx9fybv";
name = "emms-player-mpv-jp-radios";
};
@@ -16006,7 +16269,7 @@
emms-player-simple-mpv = callPackage ({ cl-lib ? null, emacs, emms, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "emms-player-simple-mpv";
- version = "20151020.1501";
+ version = "20151020.801";
src = fetchFromGitHub {
owner = "momomo5717";
repo = "emms-player-simple-mpv";
@@ -16014,7 +16277,7 @@
sha256 = "0ajxyv7yx4ni8dizs7acpsxnmy3c9s0dx28vw9y1ym0bxkgfyzrf";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/emms-player-simple-mpv";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/f4eaa866ba6b0ad2b590fb15c30f81b9fdbef6dd/recipes/emms-player-simple-mpv";
sha256 = "15aljprjd74ha7wpzsmv3d873i6fy3x1jwhzm03hvw0sw18m25i1";
name = "emms-player-simple-mpv";
};
@@ -16027,7 +16290,7 @@
emms-soundcloud = callPackage ({ emms, fetchFromGitHub, fetchurl, json ? null, lib, melpaBuild }:
melpaBuild {
pname = "emms-soundcloud";
- version = "20131221.1245";
+ version = "20131221.545";
src = fetchFromGitHub {
owner = "osener";
repo = "emms-soundcloud";
@@ -16035,7 +16298,7 @@
sha256 = "0nx5bb5fjmaa1nhkbfnhd1aydqrq390x4rl1vfh11ilnf52wzzld";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/emms-soundcloud";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/19e423525255371cf479842885eca07e801f6d00/recipes/emms-soundcloud";
sha256 = "0nf1f719m4pvxn0mf4qyx8mzwhrhv6kchnrpiy9clx520y8x3dqi";
name = "emms-soundcloud";
};
@@ -16048,7 +16311,7 @@
emms-state = callPackage ({ emms, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "emms-state";
- version = "20160504.1005";
+ version = "20160504.305";
src = fetchFromGitHub {
owner = "alezost";
repo = "emms-state.el";
@@ -16056,7 +16319,7 @@
sha256 = "1kipxa9ax8zi9qqk19mknpg7nnlzgr734kh9bnklydipwnsy00pi";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/emms-state";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/8f2798e22c6ccbadf73e65d8a8d901e47f55cb83/recipes/emms-state";
sha256 = "080y02hxxqfn0a0dhq5vm0r020v2q3h1612a2zkq5fxi8ssvhp9i";
name = "emms-state";
};
@@ -16069,7 +16332,7 @@
emoji-cheat-sheet-plus = callPackage ({ emacs, fetchFromGitHub, fetchurl, helm, lib, melpaBuild }:
melpaBuild {
pname = "emoji-cheat-sheet-plus";
- version = "20150617.1531";
+ version = "20150617.831";
src = fetchFromGitHub {
owner = "syl20bnr";
repo = "emacs-emoji-cheat-sheet-plus";
@@ -16077,7 +16340,7 @@
sha256 = "1rk7am0xvpnv98yi7a62wlyh576md4n2ddj7nm201bjd4wdl2yxk";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/emoji-cheat-sheet-plus";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/ffbfae9577673ef8d50b55624f94288e315deba4/recipes/emoji-cheat-sheet-plus";
sha256 = "1ciwlbw0ihm0p5gnnl3safcj7dxwiy53bkj8cmw3i334al0gjnnv";
name = "emoji-cheat-sheet-plus";
};
@@ -16090,7 +16353,7 @@
emoji-display = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "emoji-display";
- version = "20140117.1113";
+ version = "20140117.413";
src = fetchFromGitHub {
owner = "ikazuhiro";
repo = "emoji-display";
@@ -16098,7 +16361,7 @@
sha256 = "0sh4q4sb4j58ryvvmlsx7scry9inzgv2ssa87vbyzpxq0435l229";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/emoji-display";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/2c34abbda5acbd52f4e79ce9f87f9ae0fa1e48d5/recipes/emoji-display";
sha256 = "04cf18z26d64l0sv8qkbxjixi2wbw23awd5fznvg1cs8ixss01j9";
name = "emoji-display";
};
@@ -16111,7 +16374,7 @@
emoji-fontset = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "emoji-fontset";
- version = "20151108.547";
+ version = "20151107.2247";
src = fetchFromGitHub {
owner = "zonuexe";
repo = "emoji-fontset.el";
@@ -16119,7 +16382,7 @@
sha256 = "0qi7p1grann3mhaq8kc0yc27cp9fm983g2gaqddljchn7lmgagrr";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/emoji-fontset";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/60df435eb82fcc9a8a02a0a271bb6a2d5a161bc4/recipes/emoji-fontset";
sha256 = "19affsvlm1rzrzdh1k6xsv79icdkzx4izxivrd2ia6y2wcg9wc5d";
name = "emoji-fontset";
};
@@ -16132,15 +16395,15 @@
emojify = callPackage ({ emacs, fetchFromGitHub, fetchurl, ht, lib, melpaBuild, seq }:
melpaBuild {
pname = "emojify";
- version = "20160316.1748";
+ version = "20160610.311";
src = fetchFromGitHub {
owner = "iqbalansari";
repo = "emacs-emojify";
- rev = "6016e30bf5f76993506e0a95338686d2364cd555";
- sha256 = "1zz6q5jf22nwb9qlyxxrz56gz7x5gcxh6q6d0ybf4bapk35g3v0q";
+ rev = "f33dcffb2cc9748710b6793331104ba5a8bb9db8";
+ sha256 = "11h8502f3nkl8gpl64kk5ixfxcmifi6bx8c99lg0l6z8yf2fpmwx";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/emojify";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/488d2751b5fd3bf00f5a6f0545530f44563b86d7/recipes/emojify";
sha256 = "1sgd32qm43hwby75a9q2pz1yfzj988i35d8p9f18zvbxypy7b2yp";
name = "emojify";
};
@@ -16153,7 +16416,7 @@
empos = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "empos";
- version = "20151011.2116";
+ version = "20151011.1416";
src = fetchFromGitHub {
owner = "dimalik";
repo = "empos";
@@ -16161,7 +16424,7 @@
sha256 = "0bm0cxnv7g2dzfvfhkyy16kzn6shvy9gzypiqyjj42ng54xmhs0n";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/empos";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/461f7849e7be986994dd1e7cf109b66e8c37c719/recipes/empos";
sha256 = "0wbrszl9rq4is0ymxq9lxpqzlfg93gljh6almjy0hp3cs7pkzyl4";
name = "empos";
};
@@ -16174,15 +16437,15 @@
emr = callPackage ({ cl-lib ? null, clang-format, dash, emacs, fetchFromGitHub, fetchurl, iedit, lib, list-utils, melpaBuild, paredit, popup, projectile, redshank, s }:
melpaBuild {
pname = "emr";
- version = "20160219.247";
+ version = "20160613.1630";
src = fetchFromGitHub {
owner = "chrisbarrett";
repo = "emacs-refactor";
- rev = "138157999d62372e60e966f67c8b85be53dabde1";
- sha256 = "1frcn6694q74is8qbvrjkcsw0q1wz56z4gl35n4v3wakr9wvdvd1";
+ rev = "27f324c5da2f7c5a13f1f5e970606cf45f24199f";
+ sha256 = "10pbs3wk40ahskz63gfjkqrsj86fy363w50bzlm5ipa82plwgic0";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/emr";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/2cd2ebec5bd6465bffed284130e1d534f52169a9/recipes/emr";
sha256 = "05vpfxg6lviclnms2zyrza8dc87m60mimlwd11ihvsbngi9gcw8x";
name = "emr";
};
@@ -16207,7 +16470,7 @@
enclose = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "enclose";
- version = "20121008.1814";
+ version = "20121008.1114";
src = fetchFromGitHub {
owner = "rejeep";
repo = "enclose.el";
@@ -16215,7 +16478,7 @@
sha256 = "0dz5xm05d7irh1j8iy08jk521p19cjai1kw68z2nngnyf1az7cim";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/enclose";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/7fabdb05de9b8ec18a3a566f99688b50443b6b44/recipes/enclose";
sha256 = "1bkrv3cwhbiydgfjhmyjr96cvsgr9zi8n0ir1akgamccm2ln73d6";
name = "enclose";
};
@@ -16228,7 +16491,7 @@
encourage-mode = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "encourage-mode";
- version = "20151128.1005";
+ version = "20151128.305";
src = fetchFromGitHub {
owner = "halbtuerke";
repo = "encourage-mode.el";
@@ -16236,7 +16499,7 @@
sha256 = "0k5ns40s5nskn0zialwq96qll1v5k50lfa5xh8hxbpcamsfym6h8";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/encourage-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/1e90146c03a3f85313e3d338c48547ccfb73f605/recipes/encourage-mode";
sha256 = "0fwn6w7s61c08z0d8z3awclqrhszia9is30gm2kx4hwr9dhhwh63";
name = "encourage-mode";
};
@@ -16249,7 +16512,7 @@
engine-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "engine-mode";
- version = "20150902.1935";
+ version = "20150902.1235";
src = fetchFromGitHub {
owner = "hrs";
repo = "engine-mode";
@@ -16257,7 +16520,7 @@
sha256 = "066pxfv4rpxgi7jxdyc0a3g5z9m1j66sbi5gh2l7m4rwhzkqchn9";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/engine-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/ea1b5dfb6628cf17e77369f25341835aad425f54/recipes/engine-mode";
sha256 = "1gg7i93163m7k7lr3pnal1svymnhzwrfpfcdc0798d7ybv26gg8c";
name = "engine-mode";
};
@@ -16270,7 +16533,7 @@
enh-ruby-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "enh-ruby-mode";
- version = "20151123.1041";
+ version = "20151123.341";
src = fetchFromGitHub {
owner = "zenspider";
repo = "enhanced-ruby-mode";
@@ -16278,7 +16541,7 @@
sha256 = "008wggl6xxk339njrgpj2fndbil7k9f3i2hg1mjwqk033j87nbz7";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/enh-ruby-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/cd1ac1ce69b77b11f34c4175611a852e7ec0806c/recipes/enh-ruby-mode";
sha256 = "0r486yajjf7vsaz92ypxpfmz2nsvw9giffpxb9szj7fcry3nfdns";
name = "enh-ruby-mode";
};
@@ -16291,7 +16554,7 @@
enlive = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "enlive";
- version = "20150824.1449";
+ version = "20150824.749";
src = fetchFromGitHub {
owner = "zweifisch";
repo = "enlive";
@@ -16299,7 +16562,7 @@
sha256 = "0vd7zy06nqb1ayjlnf2wl0bfv1cqv2qcb3cgy3zr9k9c4whcd8jh";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/enlive";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/388fa2580e687d9608b11cdc069841831b414b29/recipes/enlive";
sha256 = "1dyayk37zik12qfh8zbjmhsch64yqsx3acrlm7hcnavx465hmhnz";
name = "enlive";
};
@@ -16312,7 +16575,7 @@
eno = callPackage ({ dash, edit-at-point, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "eno";
- version = "20160110.1134";
+ version = "20160110.434";
src = fetchFromGitHub {
owner = "enoson";
repo = "eno.el";
@@ -16320,7 +16583,7 @@
sha256 = "1qimqrvk0myqfi2l3viigkx1ld90qpjgi1gs6xhw2g51r8x4i3in";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/eno";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/1cb55fa7c9bf6a7004011cb809b65bd430d83b31/recipes/eno";
sha256 = "0k4n4vw261v3bcxg7pqhxr99vh673l963yjridl0dp1663gcrfpk";
name = "eno";
};
@@ -16333,7 +16596,7 @@
enotify = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "enotify";
- version = "20130407.1548";
+ version = "20130407.848";
src = fetchFromGitHub {
owner = "laynor";
repo = "enotify";
@@ -16341,7 +16604,7 @@
sha256 = "0v5p97dvzrk3j59yjc6iny71j3fdw9bb8737wnnzm098ff42dfmd";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/enotify";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/f10631b740eea56e7209d7e84f0da8613274ef1d/recipes/enotify";
sha256 = "0mii6m6zw9y8njgzi79rcf1n251iw7qz3yqjjij3c19rk3zpm5qi";
name = "enotify";
};
@@ -16354,15 +16617,15 @@
ensime = callPackage ({ company, dash, fetchFromGitHub, fetchurl, lib, melpaBuild, popup, s, sbt-mode, scala-mode, yasnippet }:
melpaBuild {
pname = "ensime";
- version = "20160602.2003";
+ version = "20160702.1452";
src = fetchFromGitHub {
owner = "ensime";
repo = "ensime-emacs";
- rev = "caf2e8b7a57a604c1a2a4d999a1e963837a75bd3";
- sha256 = "1d90msjym36w8wzyvdrxfpl4n7a6qn37qajpj5dnv8zkqifl9fmh";
+ rev = "d4d2a25a32e26e43f001c98a02a44982264b9f06";
+ sha256 = "09kllav07j3r24xf5k5dd342v6kyqfd3y55r6v0asc6hihrj4rri";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ensime";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/502faab70af713f50dd8952be4f7a5131075e78e/recipes/ensime";
sha256 = "1d8y72l7bh93x9zdj3d3qjhrrzr804rgi6kjifyrin772dffjwby";
name = "ensime";
};
@@ -16383,7 +16646,7 @@
envdir = callPackage ({ dash, emacs, f, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "envdir";
- version = "20160221.2023";
+ version = "20160221.1323";
src = fetchFromGitHub {
owner = "proofit404";
repo = "envdir-mode";
@@ -16391,7 +16654,7 @@
sha256 = "1jyhr9gv3d0rxv5iks2g9x6xbxqv1bvf1fnih96h4pgsfxz8wrp6";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/envdir";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/79c1497f709f6d23e4886359e09ab0456ed61777/recipes/envdir";
sha256 = "085bfm4w7flrv8jvzdnzbdg3j5n29xfzbs1wlrr29mg9dja6s8g8";
name = "envdir";
};
@@ -16404,7 +16667,7 @@
eopengrok = callPackage ({ cl-lib ? null, dash, fetchFromGitHub, fetchurl, lib, magit, melpaBuild, s }:
melpaBuild {
pname = "eopengrok";
- version = "20160214.847";
+ version = "20160214.147";
src = fetchFromGitHub {
owner = "youngker";
repo = "eopengrok.el";
@@ -16412,7 +16675,7 @@
sha256 = "0pmawjfyihqygqz7y0nvyrs6jcvckqzkq9k6z6yanpvkd2x5g13x";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/eopengrok";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/2b87ea158a6fdbc6b4e40fd7c0f6814d135f8545/recipes/eopengrok";
sha256 = "0756x78113286hwk1i1m5s8xq04gh7zxb4fkmw58lg2ssff8q6av";
name = "eopengrok";
};
@@ -16425,7 +16688,7 @@
epc = callPackage ({ concurrent, ctable, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "epc";
- version = "20140610.734";
+ version = "20140610.34";
src = fetchFromGitHub {
owner = "kiwanami";
repo = "emacs-epc";
@@ -16433,7 +16696,7 @@
sha256 = "11z08y61xd00rlw5mcyrix8nx41mqs127wighhjsxsyzbfqydxdr";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/epc";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/8bc29a8d518ce7a584277089bd4654f52ac0f358/recipes/epc";
sha256 = "1l9rcx07pa4b9z5654gyw6b64c95lcigzg15amphwr56v2g3rbzx";
name = "epc";
};
@@ -16446,7 +16709,7 @@
epic = callPackage ({ fetchFromGitHub, fetchurl, htmlize, lib, melpaBuild }:
melpaBuild {
pname = "epic";
- version = "20150503.937";
+ version = "20150503.237";
src = fetchFromGitHub {
owner = "yoshinari-nomura";
repo = "epic";
@@ -16454,7 +16717,7 @@
sha256 = "18gfi1287skv5xvh12arkvxy2c4fism8bdk42wc5q3y21h8nsiim";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/epic";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/7c7162791d560846fe386746c00a9fe88c8007bb/recipes/epic";
sha256 = "0gfl8if83jbs0icz6gcjkwxvcz5v744k1kvqnbx3ga481kds9rqf";
name = "epic";
};
@@ -16467,7 +16730,7 @@
epkg = callPackage ({ closql, dash, emacs, fetchFromGitLab, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "epkg";
- version = "20160515.1709";
+ version = "20160515.1009";
src = fetchFromGitLab {
owner = "tarsius";
repo = "epkg";
@@ -16475,7 +16738,7 @@
sha256 = "18am0nc2kjxbnkls7dl9j47cynwiiafx8w6rqa4d9dyx7khl2rmp";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/epkg";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/c97468a71910ba6709792c060c1fb714004e24da/recipes/epkg";
sha256 = "0vc1g29rfmgd2ks4lbz4599rbgcax7rgdva53ahhvp6say8fy22q";
name = "epkg";
};
@@ -16488,7 +16751,7 @@
epl = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "epl";
- version = "20150517.1333";
+ version = "20150517.633";
src = fetchFromGitHub {
owner = "cask";
repo = "epl";
@@ -16496,7 +16759,7 @@
sha256 = "0s4k2grikhibd075435giv3bmba1mx71ndxlr0k1i0q0xawpyyb4";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/epl";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/9c6cf24e86d8865bd2e4b405466118de1894851f/recipes/epl";
sha256 = "0zr3r2hn9jaxscrl83hyixznb8l5dzfr6fsac76aa8x12xgsc5hn";
name = "epl";
};
@@ -16509,15 +16772,15 @@
epm = callPackage ({ emacs, epl, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "epm";
- version = "20160601.902";
+ version = "20160628.204";
src = fetchFromGitHub {
owner = "xuchunyang";
repo = "epm";
- rev = "2ee9a69d725a77ac4e57cc652ce4b4cfd1fef63a";
- sha256 = "1kjkb2cvpkbbcvlq64imnv5ispkf3yrj4f5acagd32jx7gcgxfj8";
+ rev = "82e342af7be59aa94bb0fb0e2a29a98c65cf2ef7";
+ sha256 = "06fyndwgkmylhan81rpnv8h729p70iqrmxgbmsdm5fjrdgzzs3a6";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/epm";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/e12e8ae2e8e8aff7cbd75a951dd328cb9ccf58b0/recipes/epm";
sha256 = "0k94qhzxjzw5d0c53jnyx1xfciwr9qib845awyjaybzzs34s8r08";
name = "epm";
};
@@ -16530,7 +16793,7 @@
epresent = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild, org }:
melpaBuild {
pname = "epresent";
- version = "20160411.401";
+ version = "20160410.2101";
src = fetchFromGitHub {
owner = "dakrone";
repo = "epresent";
@@ -16538,7 +16801,7 @@
sha256 = "1qa1nq63kax767gs53s75ihspirvh69l4xdm89mj57qvrbpz36z5";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/epresent";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/150487558ecda0520c637ffed1ffe2fbf2dc5811/recipes/epresent";
sha256 = "176d1nwsafi6fb0dnv35bfskp0xczyzf2939gi4bz69zh0161jg8";
name = "epresent";
};
@@ -16551,7 +16814,7 @@
eprime-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "eprime-mode";
- version = "20140513.2016";
+ version = "20140513.1316";
src = fetchFromGitHub {
owner = "AndrewHynes";
repo = "eprime-mode";
@@ -16559,7 +16822,7 @@
sha256 = "1wwg46xdb488wxvglwvsy08vznrnmdmmbcvm9vb60dy3gqjmz7cw";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/eprime-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/37b4f3dce033fa18d23202ca4c36bc85754d547d/recipes/eprime-mode";
sha256 = "0vswjcs24f3mdyw6ai7p21ab8pdn327lr2d6css0a5nrg539cn2g";
name = "eprime-mode";
};
@@ -16572,7 +16835,7 @@
eproject = callPackage ({ fetchFromGitHub, fetchurl, helm, lib, melpaBuild }:
melpaBuild {
pname = "eproject";
- version = "20151206.630";
+ version = "20151205.2330";
src = fetchFromGitHub {
owner = "jrockway";
repo = "eproject";
@@ -16580,7 +16843,7 @@
sha256 = "13ds5z2nvanx8cvxrzi0da6ixx7kw222z6mrlbs8cldqcmzm7xh2";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/eproject";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/d7e82668617a9b599f8994c720f3f123ba1e008a/recipes/eproject";
sha256 = "0kpg4r57khbyinc73v9kj32b9m3b4nb5014r5fkl5mzzpzmd85b4";
name = "eproject";
};
@@ -16593,7 +16856,7 @@
erc-colorize = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "erc-colorize";
- version = "20160108.1120";
+ version = "20160108.420";
src = fetchFromGitHub {
owner = "thisirs";
repo = "erc-colorize";
@@ -16601,7 +16864,7 @@
sha256 = "18r66yl52xm1gjbn0dm8z80gv4p3794pi91qa8i2sri4grbsyi5r";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/erc-colorize";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/e69214e89ec0e00b36609fce3efe22b5c1add1f9/recipes/erc-colorize";
sha256 = "1m941q7ql3yb71s71783nvz822bwhn1krmin18fvh0fbsbbnck2a";
name = "erc-colorize";
};
@@ -16614,7 +16877,7 @@
erc-crypt = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "erc-crypt";
- version = "20160324.239";
+ version = "20160323.2039";
src = fetchFromGitHub {
owner = "atomontage";
repo = "erc-crypt";
@@ -16622,7 +16885,7 @@
sha256 = "0yiv16k0b2399asghc7qv9c9pj6ih0rwc863dskr2isnpl39amra";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/erc-crypt";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/a1a71b46c0370d2ed25aa3f39983048a04576ad5/recipes/erc-crypt";
sha256 = "1mzzqcxjnll4d9r9n5z80zfb3ywkd8jx6b49g02vwf1iak9h7hv3";
name = "erc-crypt";
};
@@ -16635,14 +16898,14 @@
erc-hipchatify = callPackage ({ alert, emacs, fetchhg, fetchurl, lib, melpaBuild, request, s }:
melpaBuild {
pname = "erc-hipchatify";
- version = "20160504.2045";
+ version = "20160504.1345";
src = fetchhg {
url = "https://bitbucket.com/seanfarley/erc-hipchatify";
rev = "b237cf8118fd";
sha256 = "11a64rvhd88val6vg9l1d5j3zdjd0bbbwcqilj0wp6rbn57xy0w8";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/erc-hipchatify";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/b60e01e7064ce486fdac3d1b39fd4a1296b0dac5/recipes/erc-hipchatify";
sha256 = "1a4gl05i757vvap0rzrfwms7mhw80sa84gvbwafrvj3x11rja24x";
name = "erc-hipchatify";
};
@@ -16655,7 +16918,7 @@
erc-hl-nicks = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "erc-hl-nicks";
- version = "20160202.2050";
+ version = "20160202.1350";
src = fetchFromGitHub {
owner = "leathekd";
repo = "erc-hl-nicks";
@@ -16663,7 +16926,7 @@
sha256 = "1k0g3bwp3w0dd6zwdv6k2wpqs2krjayilrzsr1hli649ljcx55d7";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/erc-hl-nicks";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/321ae5999351637a2cd97ec1bf4668d68f569ee4/recipes/erc-hl-nicks";
sha256 = "1lhw77n2nrjnb5yhnpm6yhbcp022xxjcmdgqf21z9rd0igss9mja";
name = "erc-hl-nicks";
};
@@ -16676,7 +16939,7 @@
erc-image = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "erc-image";
- version = "20150914.1214";
+ version = "20150914.514";
src = fetchFromGitHub {
owner = "kidd";
repo = "erc-image.el";
@@ -16684,7 +16947,7 @@
sha256 = "03r13x2hxy4hk0n0ri5wld8rp8frx4j3mig6mn2v25k0cr52689f";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/erc-image";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/69c923ab029eb0c638104f38d2c9766992ca101c/recipes/erc-image";
sha256 = "1cgzygkysjyrsdr6jwqkxlnisxccsvh4kxgn19rk4n61ms7bafvf";
name = "erc-image";
};
@@ -16697,7 +16960,7 @@
erc-social-graph = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "erc-social-graph";
- version = "20150508.1404";
+ version = "20150508.704";
src = fetchFromGitHub {
owner = "vibhavp";
repo = "erc-social-graph";
@@ -16705,7 +16968,7 @@
sha256 = "0k3gp4c74g5awk7v9lzb6py3dvf59nggh6dw7530cswxb6kg2psa";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/erc-social-graph";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/9f347636c417aaf91728e56fd32313854fde3684/recipes/erc-social-graph";
sha256 = "07arn3k89cqxab5x5lczv8bpgrbirmlw9p6c37fgrl3df6f46h4h";
name = "erc-social-graph";
};
@@ -16718,7 +16981,7 @@
erc-terminal-notifier = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "erc-terminal-notifier";
- version = "20140115.1124";
+ version = "20140115.424";
src = fetchFromGitHub {
owner = "julienXX";
repo = "erc-terminal-notifier.el";
@@ -16726,7 +16989,7 @@
sha256 = "0cfqbqskh260zfq1lx1s8jz2351w2ij9m73rqim16fy7zr0s0670";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/erc-terminal-notifier";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/f2ba978b1ba63fac3b7f1e9776ddc3b054455ac4/recipes/erc-terminal-notifier";
sha256 = "0vrxkg62qr3ki8n9mdn02sdni5fkj79fpkn0drx0a4kqp0nrrj7c";
name = "erc-terminal-notifier";
};
@@ -16739,7 +17002,7 @@
erc-track-score = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "erc-track-score";
- version = "20130328.1315";
+ version = "20130328.715";
src = fetchFromGitHub {
owner = "jd";
repo = "erc-track-score.el";
@@ -16747,7 +17010,7 @@
sha256 = "0n107d77z04ahypa7hn2165kkb6490v4vkzdm5zwm4lfhvlmp0x2";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/erc-track-score";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/671afe0ff3889ae8c4b2d7b8617a3a25c16f3f0f/recipes/erc-track-score";
sha256 = "19wjwah2n8ri6gyrsbzxnrvxwr5cj48sxrar1226n9miqvgj5whx";
name = "erc-track-score";
};
@@ -16760,7 +17023,7 @@
erc-tweet = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "erc-tweet";
- version = "20150920.1458";
+ version = "20150920.758";
src = fetchFromGitHub {
owner = "kidd";
repo = "erc-tweet.el";
@@ -16768,7 +17031,7 @@
sha256 = "118q4zj9dh5xnimcsi229j5pflhcd8qz0p212kc4p9dmyrx2iw0n";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/erc-tweet";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/c846b4bad6836f53261d64ceac910b6cbd9021a1/recipes/erc-tweet";
sha256 = "0bazwq21mah4qrzwaji6w13m91l6v9dqh9svxrd13ij8yycr184b";
name = "erc-tweet";
};
@@ -16781,7 +17044,7 @@
erc-twitch = callPackage ({ erc ? null, fetchFromGitHub, fetchurl, json ? null, lib, melpaBuild }:
melpaBuild {
pname = "erc-twitch";
- version = "20160522.1759";
+ version = "20160522.1059";
src = fetchFromGitHub {
owner = "vibhavp";
repo = "erc-twitch";
@@ -16789,7 +17052,7 @@
sha256 = "094pzznjiv33lbjjg7yfjngc5hrphjj5j2l6jjy7fd62vh4m9jxk";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/erc-twitch";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/46f8640b24bade45cc729eeb370adf959f99526f/recipes/erc-twitch";
sha256 = "08vlwcxrzc2ndm52112z1r0qnz6jlmjhiwq2j3j59fbw82ys61ia";
name = "erc-twitch";
};
@@ -16802,7 +17065,7 @@
erc-view-log = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "erc-view-log";
- version = "20140227.2139";
+ version = "20140227.1439";
src = fetchFromGitHub {
owner = "Niluge-KiWi";
repo = "erc-view-log";
@@ -16810,7 +17073,7 @@
sha256 = "0bzi2sh2fhrz49j5y53h6jgf41av6rx78smb3bbk6m74is8vim2y";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/erc-view-log";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/0c0176d8e26014f7b62d14ac3adffa21a84b5741/recipes/erc-view-log";
sha256 = "1k6fawblz0d7kz1y7sa3q43s7ci28jsmzkp9vnl1nf55p9xvv4cf";
name = "erc-view-log";
};
@@ -16823,7 +17086,7 @@
erc-youtube = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "erc-youtube";
- version = "20150603.2336";
+ version = "20150603.1636";
src = fetchFromGitHub {
owner = "kidd";
repo = "erc-youtube.el";
@@ -16831,7 +17094,7 @@
sha256 = "0kh4amx3l3a14qaiyvjyak1jbybs6n49mdvzjrd1i2vd1y74zj5w";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/erc-youtube";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/a80ee9617a30a8ad1d457a0b0c7f35e6ec1c0bb2/recipes/erc-youtube";
sha256 = "12ylxkskkgfv5x7vlkib963ichb3rlmdzkf4zh8a39cgl8wsmacx";
name = "erc-youtube";
};
@@ -16844,7 +17107,7 @@
erc-yt = callPackage ({ dash, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "erc-yt";
- version = "20150426.1449";
+ version = "20150426.749";
src = fetchFromGitHub {
owner = "yhvh";
repo = "erc-yt";
@@ -16852,7 +17115,7 @@
sha256 = "1dlw34kaslyvnsrahf4rm76r2b7qqqn589i4mmhr23prl8xbz9z9";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/erc-yt";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/ece0a6185a36d52971c35a35f5aa76ddafec3ced/recipes/erc-yt";
sha256 = "0yrwvahv4l2s1aavy6y6mjlrw8l11i00a249825ab5yaxrkzz7xc";
name = "erc-yt";
};
@@ -16865,7 +17128,7 @@
ercn = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "ercn";
- version = "20150523.1703";
+ version = "20150523.1003";
src = fetchFromGitHub {
owner = "leathekd";
repo = "ercn";
@@ -16873,7 +17136,7 @@
sha256 = "0xw3d9fz4kmn1myrsy44ki4bgg0aclv41wldl6r9nhvkrnri41cv";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ercn";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/a12f264653d79224adeb5d0ae76518dc408ff1e9/recipes/ercn";
sha256 = "0yvis02bypw6v1zv7i326y8s6j0id558n0bdri52hr5pw85imnlp";
name = "ercn";
};
@@ -16886,7 +17149,7 @@
eredis = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "eredis";
- version = "20120809.507";
+ version = "20120808.2207";
src = fetchFromGitHub {
owner = "justinhj";
repo = "eredis";
@@ -16894,7 +17157,7 @@
sha256 = "0cdyhklmsv0xfcq97c3wqh8scs6910jzvvp04w0jxlayd1dbzx49";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/eredis";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/63f06713d06911f836fe2a4bf199b0794ac89cf0/recipes/eredis";
sha256 = "087lln2izn5bv7bprmbaciivf17vv4pz2cjl91hy2f0sww6nsiw8";
name = "eredis";
};
@@ -16907,7 +17170,7 @@
erefactor = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "erefactor";
- version = "20160121.1059";
+ version = "20160121.359";
src = fetchFromGitHub {
owner = "mhayashi1120";
repo = "Emacs-erefactor";
@@ -16915,7 +17178,7 @@
sha256 = "1v8x6qmhywfxs7crzv7hfl5n4zq5y3ar40l873946l4wyk0wclng";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/erefactor";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/18063e16a6f556b1871e1a5b74e353a85a794e63/recipes/erefactor";
sha256 = "0ma9sbrq4n8y5w7vvbhhgmw25aiykbq5yhxzm0knj32bgpviprw7";
name = "erefactor";
};
@@ -16928,15 +17191,15 @@
ergoemacs-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "ergoemacs-mode";
- version = "20160527.659";
+ version = "20160628.805";
src = fetchFromGitHub {
owner = "ergoemacs";
repo = "ergoemacs-mode";
- rev = "879fec91dbc61e4cde599874463cd301ce41dd7d";
- sha256 = "1f793x1xmf5p9cbaixdkk9qq3cxiz618nb5g2gpsv8mm71x88172";
+ rev = "7c9379256eaaf4a463071562586ea3739de4f84a";
+ sha256 = "0j4w3wgky601bl0dadl505fbyxa32v48jv3q63rl3ws6h8xh2611";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ergoemacs-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/02920517987c7fc698de9952cbb09dfd41517c40/recipes/ergoemacs-mode";
sha256 = "0h99m0n3q41lw5fm33pc1405lrxyc8rzghnc6c7j4a6gr1d82s62";
name = "ergoemacs-mode";
};
@@ -16949,7 +17212,7 @@
ergoemacs-status = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, mode-icons, powerline }:
melpaBuild {
pname = "ergoemacs-status";
- version = "20160318.638";
+ version = "20160318.38";
src = fetchFromGitHub {
owner = "ergoemacs";
repo = "ergoemacs-status";
@@ -16957,7 +17220,7 @@
sha256 = "06pdwrhflpi5rkigqnr5h3jzv3dm1p9nydpvql9w33ixm6qhjj71";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ergoemacs-status";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/f4af9606cfe09cdd294fae6b4b1f477f7861fdb7/recipes/ergoemacs-status";
sha256 = "065pw31s8dmqpag7zj40iv6dbl0qln7c65gcyp7pz9agg9rp6vbb";
name = "ergoemacs-status";
};
@@ -16970,15 +17233,15 @@
erlang = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "erlang";
- version = "20151013.1057";
+ version = "20160615.833";
src = fetchFromGitHub {
owner = "erlang";
repo = "otp";
- rev = "523e048754f5086a6cc4fd9a250e1b495fc5b9b8";
- sha256 = "1ss9jl5zasn7y7xk395igbbmaa2vw5pwhc120hs7hp07qqyqgyh0";
+ rev = "1697cdea341e7d54e754e5f85e091c8bb68fb6c7";
+ sha256 = "0v44iz2bl1rndvgrqmfj8yd9xxdpg0irg8shqhdbbjdjkmbmw876";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/erlang";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/04867a574773e8794335a2664d4f5e8b243f3ec9/recipes/erlang";
sha256 = "1gmrdkfanivb9l5lmkl0853snlhl62w34537r82w11z2fbk9lxhc";
name = "erlang";
};
@@ -16991,7 +17254,7 @@
ert-async = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "ert-async";
- version = "20151011.1559";
+ version = "20151011.859";
src = fetchFromGitHub {
owner = "rejeep";
repo = "ert-async.el";
@@ -16999,7 +17262,7 @@
sha256 = "0hn9i405nfhjd1h9vnwj43nxbbz00khrwkjq0acfyxjaz1shfac9";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ert-async";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/2ec669e3fc73b0b499b84cec87d0f8621274732e/recipes/ert-async";
sha256 = "004798ckri5j72j0xvzkyciss1iz4lw9gya2749hkjxlamg14cn5";
name = "ert-async";
};
@@ -17011,13 +17274,13 @@
}) {};
ert-expectations = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild {
pname = "ert-expectations";
- version = "20130824.1400";
+ version = "20130824.700";
src = fetchurl {
url = "https://www.emacswiki.org/emacs/download/ert-expectations.el";
sha256 = "0cwy3ilsid90abzzjb7ha2blq9kmv3gfp3icwwfcz6qczgirq6g7";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ert-expectations";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/55809f1a04061a26665d2995975aba429815c19e/recipes/ert-expectations";
sha256 = "094lkf1h83rc0dkvdv8923xjrzj5pnpnsb4izk8n5n7g0rbz1l9w";
name = "ert-expectations";
};
@@ -17030,14 +17293,14 @@
ert-junit = callPackage ({ ert ? null, fetchgit, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "ert-junit";
- version = "20140831.21";
+ version = "20140830.1721";
src = fetchgit {
url = "https://bitbucket.org/olanilsson/ert-junit";
- rev = "c303c04da7a3ba4d2c46b00b79b67ff7ec57cc6d";
- sha256 = "0ipcpsymbpicg0b0v1gbv0hkjwg8pq5d5rj1lfx1cbf3adkxvpzf";
+ rev = "aaffe0bba23fe7271741779ff642b7b0deadf22f";
+ sha256 = "0klccgh38y9q1kc2kyahbhwh0x8gjlxmx692rwaf9gp0g7ddpyl3";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ert-junit";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/27c627eacab54896a1363dbabc56250a65343dd8/recipes/ert-junit";
sha256 = "0bv22mhh1ahbjwi6s1csxkh11dmy0srabkddjd33l4havykxlg6g";
name = "ert-junit";
};
@@ -17050,7 +17313,7 @@
ert-modeline = callPackage ({ dash, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, projectile, s }:
melpaBuild {
pname = "ert-modeline";
- version = "20140115.1115";
+ version = "20140115.415";
src = fetchFromGitHub {
owner = "chrisbarrett";
repo = "ert-modeline";
@@ -17058,7 +17321,7 @@
sha256 = "08yfq3qzscxvzyxvyvdqpkrm787278yhkdd9prbvrgjj80p8n7vq";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ert-modeline";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/3b3a301889d6eea2470017519b080519efbe1bec/recipes/ert-modeline";
sha256 = "06pc50q9ggin20cbfafxd53x35ac3kh85dap0nbws7514f473m7b";
name = "ert-modeline";
};
@@ -17071,7 +17334,7 @@
ert-runner = callPackage ({ ansi, commander, dash, f, fetchFromGitHub, fetchurl, lib, melpaBuild, s, shut-up }:
melpaBuild {
pname = "ert-runner";
- version = "20160330.806";
+ version = "20160330.106";
src = fetchFromGitHub {
owner = "rejeep";
repo = "ert-runner.el";
@@ -17079,7 +17342,7 @@
sha256 = "0cjdpk0v07yzxbxqhxlgrk0nh9cj31yx6dd90d9f7jd4bxyzkzbb";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ert-runner";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/0a1acc68f296e80b6ed99a1783e9f67be54ffac9/recipes/ert-runner";
sha256 = "0fnb8rmjr5lvc3dq0fnyxhws8ync1lj5xp8ycs63z4ax6gmdqr48";
name = "ert-runner";
};
@@ -17092,7 +17355,7 @@
es-lib = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "es-lib";
- version = "20141111.1930";
+ version = "20141111.1230";
src = fetchFromGitHub {
owner = "sabof";
repo = "es-lib";
@@ -17100,7 +17363,7 @@
sha256 = "0jq4yp80wiphlpsc0429rg8n50g8l4lf78q0l3nywz2p93smjy9b";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/es-lib";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/f10631b740eea56e7209d7e84f0da8613274ef1d/recipes/es-lib";
sha256 = "0mwvgf5385qsp91zsdw75ipif1h90xy277xdmrpwixsxd7abbn0n";
name = "es-lib";
};
@@ -17113,7 +17376,7 @@
es-mode = callPackage ({ cl-lib ? null, dash, fetchFromGitHub, fetchurl, lib, melpaBuild, spark }:
melpaBuild {
pname = "es-mode";
- version = "20160516.2150";
+ version = "20160516.1450";
src = fetchFromGitHub {
owner = "dakrone";
repo = "es-mode";
@@ -17121,7 +17384,7 @@
sha256 = "04lll5sscbpqcq3sv5gsfky5qcj6asqql7fw1bp6g12qqf9r02nd";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/es-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/85445b59329bfd81a3fd913d7d6fe7784c31744c/recipes/es-mode";
sha256 = "1541c7d8gbi4mgxwk886hgsxhq7bfx8is7hjjg80sfn40z6kdwcp";
name = "es-mode";
};
@@ -17134,7 +17397,7 @@
es-windows = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "es-windows";
- version = "20140211.1004";
+ version = "20140211.304";
src = fetchFromGitHub {
owner = "sabof";
repo = "es-windows";
@@ -17142,7 +17405,7 @@
sha256 = "14rsifcx2kwdmwq9zh41fkb848l0f4igp5v9pk3x4jd2yw9gay7m";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/es-windows";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/944d4cd54e040d2a58e1778cb282727deee83f92/recipes/es-windows";
sha256 = "112ngkan0hv3y7m71479f46x5gwdmf0vhbqrzs5kcjwlacqlrahx";
name = "es-windows";
};
@@ -17155,7 +17418,7 @@
esa = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "esa";
- version = "20160501.840";
+ version = "20160501.140";
src = fetchFromGitHub {
owner = "nabinno";
repo = "esa.el";
@@ -17163,7 +17426,7 @@
sha256 = "1rxfqj46zg3xgg7miflgsb187xa9fpwcvrbkqj41g8lvmycdnm0a";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/esa";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/f40e277af4001d367099360d4342d9c1ab925f59/recipes/esa";
sha256 = "1kbsv4xsp7p9v0g22had0dr7w5zsr24bgi2xzryy76699pxq4h6c";
name = "esa";
};
@@ -17176,7 +17439,7 @@
escreen = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "escreen";
- version = "20091203.1913";
+ version = "20091203.1213";
src = fetchFromGitHub {
owner = "emacsmirror";
repo = "escreen";
@@ -17184,7 +17447,7 @@
sha256 = "0id7820vjbprlpprj4fyhylkjvx00b87mw4n7jnxn1gczvjgafmc";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/escreen";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/c64c21a42fd8436bd60e490980ad4ed824b212d1/recipes/escreen";
sha256 = "0yis27362jc63jkzdndz1wpysmf1b51rrbv3swvi6b36da5i6b54";
name = "escreen";
};
@@ -17197,7 +17460,7 @@
esh-buf-stack = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "esh-buf-stack";
- version = "20140107.1118";
+ version = "20140107.418";
src = fetchFromGitHub {
owner = "tom-tan";
repo = "esh-buf-stack";
@@ -17205,7 +17468,7 @@
sha256 = "1k8k9hl9m4vjqdw3x9wg04cy2lb9x64mq0mm0i3i6w59zrsnkn4q";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/esh-buf-stack";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/61e8f75aa0d5446c61aadc7ac22371e44a3761b8/recipes/esh-buf-stack";
sha256 = "0zmwlsm98m9vbjk9mldfj2nf6cip7mlvb71j33ddix76yqggp4qg";
name = "esh-buf-stack";
};
@@ -17218,7 +17481,7 @@
esh-help = callPackage ({ dash, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "esh-help";
- version = "20140107.1122";
+ version = "20140107.422";
src = fetchFromGitHub {
owner = "tom-tan";
repo = "esh-help";
@@ -17226,7 +17489,7 @@
sha256 = "1yfvdx763xxhxf2r6kjjjyafaxrj1lpgrz1sgbhzkyj6nspmm9ms";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/esh-help";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/ab94c66d1ed7cfdbc437ee239984ba70408fd28a/recipes/esh-help";
sha256 = "1k925wmn8jy9rxxsxxawasxq6r4yzwl116digdx314gd3i04sh3w";
name = "esh-help";
};
@@ -17239,7 +17502,7 @@
eshell-autojump = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "eshell-autojump";
- version = "20150927.924";
+ version = "20150927.224";
src = fetchFromGitHub {
owner = "coldnew";
repo = "eshell-autojump";
@@ -17247,7 +17510,7 @@
sha256 = "13crzgkx1lham1nfsg6hj2zg875majvnig0v4ydg691zk1qi4hc2";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/eshell-autojump";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/68bd1a8ec9d17eff2d23e15b3686f7c0b8723126/recipes/eshell-autojump";
sha256 = "09l2680hknmdbwr4cncv1v4b0adik0c3sm5i9m3qbwyyxm8m41i5";
name = "eshell-autojump";
};
@@ -17260,7 +17523,7 @@
eshell-did-you-mean = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "eshell-did-you-mean";
- version = "20150915.2152";
+ version = "20150915.1452";
src = fetchFromGitHub {
owner = "xuchunyang";
repo = "eshell-did-you-mean";
@@ -17268,7 +17531,7 @@
sha256 = "0v0wshck5n4hspcv1zk1g2nm6xiigcjp16lx0dc8wzkl6ymljvbg";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/eshell-did-you-mean";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/a7649eca21a21ddbbc7131f29cbbd91a00a84060/recipes/eshell-did-you-mean";
sha256 = "1z1wpn3sj1gi5nn0a71wg0i3av0dijnk79dc32zh3qlh500kz8mz";
name = "eshell-did-you-mean";
};
@@ -17281,7 +17544,7 @@
eshell-fringe-status = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "eshell-fringe-status";
- version = "20160224.1316";
+ version = "20160224.616";
src = fetchFromGitHub {
owner = "ryuslash";
repo = "eshell-fringe-status";
@@ -17289,7 +17552,7 @@
sha256 = "10c31a1ypa6yd957r1jiasx0ql2z9ykbn31l51y1xwrp00mq3yls";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/eshell-fringe-status";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/9efd9fefab5d449b9f70d9f548aadfea52d66bc0/recipes/eshell-fringe-status";
sha256 = "1vavidnijxzhr4v39q4bxi645vsfcj6vp0wnlhznpxagshr950lg";
name = "eshell-fringe-status";
};
@@ -17302,7 +17565,7 @@
eshell-git-prompt = callPackage ({ cl-lib ? null, dash, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, s }:
melpaBuild {
pname = "eshell-git-prompt";
- version = "20160509.1038";
+ version = "20160509.338";
src = fetchFromGitHub {
owner = "xuchunyang";
repo = "eshell-git-prompt";
@@ -17310,7 +17573,7 @@
sha256 = "00gaq8vz8vnhh0j2i66mp763hm3dfxkxz3j782nsfml81sngkww0";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/eshell-git-prompt";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/5272280b19579c302ba41b53c77e42bc5e8ccbda/recipes/eshell-git-prompt";
sha256 = "0a8pyppqvnavvb8rwsjxagb76hra9zhs5gwa0ylyznmql83f8w8s";
name = "eshell-git-prompt";
};
@@ -17323,15 +17586,15 @@
eshell-prompt-extras = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "eshell-prompt-extras";
- version = "20160418.1730";
+ version = "20160418.1030";
src = fetchFromGitHub {
owner = "hiddenlotus";
repo = "eshell-prompt-extras";
- rev = "4ebc7952c8892ba60bd37dc59481934d80e12ebb";
- sha256 = "0lhmqnqrcnwnir0kqhkhnda6dyn7ggcidmk6lf24p57n3sf33pww";
+ rev = "5f1b9be555e39e76d85ad6ce037c9e396e5b1339";
+ sha256 = "0g3d2b4cyvzxi54d1nd2irn4sa7rydy8b0fcqqx71sppm59fs50s";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/eshell-prompt-extras";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/7fabdb05de9b8ec18a3a566f99688b50443b6b44/recipes/eshell-prompt-extras";
sha256 = "0kh4lvjkayjdz5lqvdqmdcblxizxk9kwmigjwa68kx8z6ngmfwa5";
name = "eshell-prompt-extras";
};
@@ -17344,7 +17607,7 @@
eshell-z = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "eshell-z";
- version = "20151111.546";
+ version = "20151110.2246";
src = fetchFromGitHub {
owner = "xuchunyang";
repo = "eshell-z";
@@ -17352,7 +17615,7 @@
sha256 = "0znk2wmvk7b5mi727cawbddvzx74dlm1lwsxgkiylx2qp299ark0";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/eshell-z";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/8079cecaa59ad2ef22812960838123effc46a9b3/recipes/eshell-z";
sha256 = "14ixazj0nscyqsdv7brqnfr0q8llir1pwb91yhl9jdqypmadpm6d";
name = "eshell-z";
};
@@ -17365,7 +17628,7 @@
espresso-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "espresso-theme";
- version = "20130301.848";
+ version = "20130301.148";
src = fetchFromGitHub {
owner = "dgutov";
repo = "espresso-theme";
@@ -17373,7 +17636,7 @@
sha256 = "0ir7j4dgy0fq9ybixaqs52kiqk73p9v6prgqzjs8nyicjrpmnpyq";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/espresso-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/27c929ec2eac0459c7018019702599e09ac908fd/recipes/espresso-theme";
sha256 = "1bsff8fnq5z0f6cwg6wprz8qi3ivsqxpxx6v6fxfammn74qqyvb5";
name = "espresso-theme";
};
@@ -17386,7 +17649,7 @@
espuds = callPackage ({ dash, f, fetchFromGitHub, fetchurl, lib, melpaBuild, s }:
melpaBuild {
pname = "espuds";
- version = "20151114.1659";
+ version = "20151114.959";
src = fetchFromGitHub {
owner = "ecukes";
repo = "espuds";
@@ -17394,7 +17657,7 @@
sha256 = "16r4j27j9yfdiy841w9q5ykkc6n3wrm7hvfacagb32mydk821ijg";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/espuds";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/14cf66e6929db2a0f377612e786aaed9eb12b799/recipes/espuds";
sha256 = "16yzw9l64ahf5v92jzb7vyb4zqxxplq6qh0y9rkfmvm59s4nhk6c";
name = "espuds";
};
@@ -17407,7 +17670,7 @@
esqlite = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, pcsv }:
melpaBuild {
pname = "esqlite";
- version = "20151206.1306";
+ version = "20151206.606";
src = fetchFromGitHub {
owner = "mhayashi1120";
repo = "Emacs-esqlite";
@@ -17415,7 +17678,7 @@
sha256 = "05f8n24yvzm3zjvc1523ib44wv76ms5sn6mv8s1wrjsl190av0rn";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/esqlite";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/bbec16cd1682ac15a81304f351f9c4e6b3b70fa9/recipes/esqlite";
sha256 = "1dny5qjzl9gaj90ihzbhliwk0n0x7jz333hzf6gaw7wsjmx91wlh";
name = "esqlite";
};
@@ -17428,7 +17691,7 @@
esqlite-helm = callPackage ({ esqlite, fetchFromGitHub, fetchurl, helm, lib, melpaBuild }:
melpaBuild {
pname = "esqlite-helm";
- version = "20151116.950";
+ version = "20151116.250";
src = fetchFromGitHub {
owner = "mhayashi1120";
repo = "Emacs-esqlite";
@@ -17436,7 +17699,7 @@
sha256 = "05f8n24yvzm3zjvc1523ib44wv76ms5sn6mv8s1wrjsl190av0rn";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/esqlite-helm";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/bbec16cd1682ac15a81304f351f9c4e6b3b70fa9/recipes/esqlite-helm";
sha256 = "00y2nwyx13xlny40afczr31lvbpnw1cgmj5wc3iycyznizg5kvhq";
name = "esqlite-helm";
};
@@ -17449,15 +17712,15 @@
ess = callPackage ({ fetchFromGitHub, fetchurl, julia-mode, lib, melpaBuild }:
melpaBuild {
pname = "ess";
- version = "20160602.1103";
+ version = "20160703.931";
src = fetchFromGitHub {
owner = "emacs-ess";
repo = "ESS";
- rev = "2130dda2f8bb56e603c9a823b0d754e1a4444080";
- sha256 = "1xxasavqvymw339h12g3swyjq8v4if7jfaxky51h1rqskgx7xy7x";
+ rev = "eae9e8fc9d8aa02c5831eb357969e66caa8c1e39";
+ sha256 = "1zrpsd1h4fhdk714i3dm0sk7aj9m227xkkyrx4whqajisv19azal";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ess";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/12997b9e2407d782b3d2fcd2843f7c8b22442c0a/recipes/ess";
sha256 = "02kz4fjxr0vrj5mg13cq758nzykizq4dmsijraxv46snvh337v5i";
name = "ess";
};
@@ -17470,7 +17733,7 @@
ess-R-data-view = callPackage ({ ctable, ess, fetchFromGitHub, fetchurl, lib, melpaBuild, popup }:
melpaBuild {
pname = "ess-R-data-view";
- version = "20130509.1358";
+ version = "20130509.658";
src = fetchFromGitHub {
owner = "myuhe";
repo = "ess-R-data-view.el";
@@ -17478,7 +17741,7 @@
sha256 = "1ya2ay52gkrd31pmw45ban8kkxgnzhhwkzkypwdhjfccq3ys835x";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ess-R-data-view";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/492c90bd0ee97c0b895efa0c5e647b2becc6db11/recipes/ess-R-data-view";
sha256 = "0r2fzwayf3yb7fqk6f31x4xfqiiczwik8qw4rrvkqx2h3s1kz7i0";
name = "ess-R-data-view";
};
@@ -17491,7 +17754,7 @@
ess-R-object-popup = callPackage ({ ess, fetchFromGitHub, fetchurl, lib, melpaBuild, popup }:
melpaBuild {
pname = "ess-R-object-popup";
- version = "20130302.1236";
+ version = "20130302.536";
src = fetchFromGitHub {
owner = "myuhe";
repo = "ess-R-object-popup.el";
@@ -17499,7 +17762,7 @@
sha256 = "0q8pbaa6wahli6fh0kng5zmnypsxi1fr2bzs2mfk3h8vf4nikpv0";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ess-R-object-popup";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/8783caab9019623ade5c369a4713eba996507bd0/recipes/ess-R-object-popup";
sha256 = "1dxwgahfki6d6ywh85ifk3kq6f2a1114kkd8xcv4lcpzqykp93zj";
name = "ess-R-object-popup";
};
@@ -17512,7 +17775,7 @@
ess-smart-equals = callPackage ({ emacs, ess, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "ess-smart-equals";
- version = "20150202.701";
+ version = "20150202.1";
src = fetchFromGitHub {
owner = "genovese";
repo = "ess-smart-equals";
@@ -17520,7 +17783,7 @@
sha256 = "0ici253mllqyzcbhxrazfj2kl50brr8qid99fk9nlyfgh516ms1x";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ess-smart-equals";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/4403cf87e05311d7fe0360f35f9634b9fdfc6f81/recipes/ess-smart-equals";
sha256 = "0mfmxmsqr2byj56psx4h08cjc2j3aac3xqr04yd47k2mlivnyrxp";
name = "ess-smart-equals";
};
@@ -17533,7 +17796,7 @@
ess-smart-underscore = callPackage ({ ess, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "ess-smart-underscore";
- version = "20131230.351";
+ version = "20131229.2051";
src = fetchFromGitHub {
owner = "mattfidler";
repo = "ess-smart-underscore.el";
@@ -17541,7 +17804,7 @@
sha256 = "01xa98q0pqsf4gyl6ixlpjjdqazqsxg1sf7a3j2wbh7196ps61v5";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ess-smart-underscore";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/b4d6166f5c80cf37c79256402fa633ad2274d065/recipes/ess-smart-underscore";
sha256 = "01pki1xa8zpgvldcbjwg6vmslj7ddf44hsx976xipc95vrdk15r2";
name = "ess-smart-underscore";
};
@@ -17554,7 +17817,7 @@
ess-view = callPackage ({ ess, f, fetchFromGitHub, fetchurl, lib, melpaBuild, s }:
melpaBuild {
pname = "ess-view";
- version = "20160309.2215";
+ version = "20160309.1515";
src = fetchFromGitHub {
owner = "GioBo";
repo = "ess-view";
@@ -17562,7 +17825,7 @@
sha256 = "1fdg8a4nsyjhwqsslawfvij77g3fp9klpas7m8vwjsjpc85iwh3x";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ess-view";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/96960a8799138187b748a47ac007dc25d739fe10/recipes/ess-view";
sha256 = "1zx5sbxmbs6ya349ic7yvnx56v3km2cb27p8kan5ygisnwwq2wc4";
name = "ess-view";
};
@@ -17575,7 +17838,7 @@
esup = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "esup";
- version = "20151227.1850";
+ version = "20151227.1150";
src = fetchFromGitHub {
owner = "jschaf";
repo = "esup";
@@ -17583,7 +17846,7 @@
sha256 = "034rs6mmc5f6y8ply2a90b5s4pi4qx9m49wsxc9v0zwa9i5skmx1";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/esup";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/b9d2948a42da5d4864404d2d11a924a4f235fc3b/recipes/esup";
sha256 = "0cv3zc2zzm38ki3kxq58g9sp4gsk3dffa398wky6z83a3zc02zs0";
name = "esup";
};
@@ -17596,7 +17859,7 @@
esxml = callPackage ({ fetchFromGitHub, fetchurl, kv, lib, melpaBuild }:
melpaBuild {
pname = "esxml";
- version = "20151013.2028";
+ version = "20151013.1328";
src = fetchFromGitHub {
owner = "tali713";
repo = "esxml";
@@ -17604,7 +17867,7 @@
sha256 = "0mrfkq3jcsjfccqir02yijl24hllc347b02y7gk3b2yn0b676dv3";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/esxml";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/fd4381bbb725cb4a17d741f604698b38c95da475/recipes/esxml";
sha256 = "0nn074abkxz7p4w59l1za586p5ya392xhl3sx92yys8a3194n6hz";
name = "esxml";
};
@@ -17617,7 +17880,7 @@
etable = callPackage ({ dash, emacs, fetchFromGitHub, fetchurl, interval-list, lib, melpaBuild }:
melpaBuild {
pname = "etable";
- version = "20150327.1816";
+ version = "20150327.1216";
src = fetchFromGitHub {
owner = "Fuco1";
repo = "ETable";
@@ -17625,7 +17888,7 @@
sha256 = "1k361bbwd9z17qlycymb1x7scidvgvrh9bdp06rhwfh9j3slrbxy";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/etable";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/afee0fed80f4fa444116b12653c034d760f5f1fb/recipes/etable";
sha256 = "0m4h24mmhp680wfhb90im228mrcyxapzyi4kla8xdmss83gc0c32";
name = "etable";
};
@@ -17637,13 +17900,13 @@
}) {};
etags-select = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild {
pname = "etags-select";
- version = "20130824.1400";
+ version = "20130824.700";
src = fetchurl {
url = "https://www.emacswiki.org/emacs/download/etags-select.el";
sha256 = "0gmlmxlwfsfk5axn3x5cfvqy9bx26ynpbg50mdxiljk7wzqs5dyb";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/etags-select";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/5875d00419666388acbcb8a4f392308e7576da0b/recipes/etags-select";
sha256 = "0j6mxj10n7jf087l7j86s3a8si5hzpwmvrpqisfvlnvn6a0rdy7h";
name = "etags-select";
};
@@ -17655,13 +17918,13 @@
}) {};
etags-table = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild {
pname = "etags-table";
- version = "20130824.1357";
+ version = "20130824.657";
src = fetchurl {
url = "https://www.emacswiki.org/emacs/download/etags-table.el";
sha256 = "0apm8as606bbkpa7i1hkwcbajzsmsyxn6cwfk9dkkll5bh4vglqf";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/etags-table";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/c3efc1791df5658ca5bba4907f2a22c2cabfd3c8/recipes/etags-table";
sha256 = "1jzij9jknab42jmx358g7f1c0d8lsp9baxbk3xsy7w4nl0l53d84";
name = "etags-table";
};
@@ -17674,7 +17937,7 @@
ethan-wspace = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "ethan-wspace";
- version = "20160317.1720";
+ version = "20160317.1120";
src = fetchFromGitHub {
owner = "glasserc";
repo = "ethan-wspace";
@@ -17682,7 +17945,7 @@
sha256 = "1xqc4lqzirpmr21w766g8vmcvvsq8b3hv9i7r27i5x1g0j4jabja";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ethan-wspace";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/9454f3a58e3416fa60d8411b0db19c408935408f/recipes/ethan-wspace";
sha256 = "0k4kqkf5c6ysyhh1vpi9v4220yxm5ir3ippq2gmvvhnk77pg6hws";
name = "ethan-wspace";
};
@@ -17695,7 +17958,7 @@
euslisp-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "euslisp-mode";
- version = "20160524.1647";
+ version = "20160524.947";
src = fetchFromGitHub {
owner = "iory";
repo = "euslisp-mode";
@@ -17703,7 +17966,7 @@
sha256 = "1zrf652ipy701s6n5k1aga0l97ws66imhk7dj6ii9qf4587byy7z";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/euslisp-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/b09a7c4b73203d75c5260f1d08845236cbbeae46/recipes/euslisp-mode";
sha256 = "0m04a8k2z7inhfpqz68hv56h352ikcd39fg65dqvj79md05yila9";
name = "euslisp-mode";
};
@@ -17716,7 +17979,7 @@
eval-in-repl = callPackage ({ ace-window, dash, fetchFromGitHub, fetchurl, lib, melpaBuild, paredit }:
melpaBuild {
pname = "eval-in-repl";
- version = "20160419.343";
+ version = "20160418.2043";
src = fetchFromGitHub {
owner = "kaz-yos";
repo = "eval-in-repl";
@@ -17724,7 +17987,7 @@
sha256 = "07jlrngmnfp1jp30hx9vk42h065c74dz92b38sa18swzfmhwd4y5";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/eval-in-repl";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/0bee5fb7a7874dd20babd1de7f216c5bda3e0115/recipes/eval-in-repl";
sha256 = "10h5vy9wdiqf9dgk1d1bsvp93y8sfcxghzg8zbhhn7m5cqg2wh63";
name = "eval-in-repl";
};
@@ -17737,7 +18000,7 @@
eval-sexp-fu = callPackage ({ fetchFromGitHub, fetchurl, highlight, lib, melpaBuild }:
melpaBuild {
pname = "eval-sexp-fu";
- version = "20131230.2251";
+ version = "20131230.1551";
src = fetchFromGitHub {
owner = "hchbaw";
repo = "eval-sexp-fu.el";
@@ -17745,7 +18008,7 @@
sha256 = "1syqakdyg3ydnq9gvkjf2rw9rz3kyhzp7avhy6dvyy65pv2ndyc2";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/eval-sexp-fu";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/4b1a896521cac1f54f7571ad5837ff215d01044d/recipes/eval-sexp-fu";
sha256 = "17cazf81z4cszflnfp66zyq2cclw5sp9539pxskdf267cf7r0ycs";
name = "eval-sexp-fu";
};
@@ -17758,7 +18021,7 @@
evalator = callPackage ({ fetchFromGitHub, fetchurl, helm-core, lib, melpaBuild }:
melpaBuild {
pname = "evalator";
- version = "20160213.228";
+ version = "20160212.1928";
src = fetchFromGitHub {
owner = "seanirby";
repo = "evalator";
@@ -17766,7 +18029,7 @@
sha256 = "1llxxdprs8yw2hqj4dhrkrrzmkl25h7p4rcaa2cw544fmg3kvlz1";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/evalator";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/544a503d72c0a501f9ca854cd11181a7783294a3/recipes/evalator";
sha256 = "0k6alxwg89gc4v5m2bxmzmj7l6kywhbh4036xgz19q28xnlbr9xk";
name = "evalator";
};
@@ -17779,7 +18042,7 @@
evalator-clojure = callPackage ({ cider, evalator, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "evalator-clojure";
- version = "20160208.2248";
+ version = "20160208.1548";
src = fetchFromGitHub {
owner = "seanirby";
repo = "evalator-clojure";
@@ -17787,7 +18050,7 @@
sha256 = "1q5s1ffmfh5dby92853xm8kjhgjfd5vbvcg1xbf8lswc1i41k7n7";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/evalator-clojure";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/5f57089f3e5c8342092128d44451b338af8a769f/recipes/evalator-clojure";
sha256 = "10mxlgirnsq3z7l1izrf2v1l1yr4sbdjsaszz7llqv6l80y4bji3";
name = "evalator-clojure";
};
@@ -17800,14 +18063,14 @@
evil = callPackage ({ fetchhg, fetchurl, goto-chg, lib, melpaBuild, undo-tree }:
melpaBuild {
pname = "evil";
- version = "20160525.2048";
+ version = "20160620.53";
src = fetchhg {
url = "https://bitbucket.com/lyro/evil";
- rev = "136e0e5a8fc4";
- sha256 = "1f5kdaj0gh3kcqlsxly8kiq2a9k75j6nwnvjwwxl6c8n6rljly3a";
+ rev = "3f1515976813";
+ sha256 = "1wjw3pg44axqa72mvpifsqch96pg722x16cvnhlq2i8a6y42fms5";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/evil";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/5b7972602399f9df9139cff177e38653bb0f43ed/recipes/evil";
sha256 = "09qrhy7l229w0qk3ba1i2xg4vqz8525v8scrbm031lqp30jp54hc";
name = "evil";
};
@@ -17820,7 +18083,7 @@
evil-anzu = callPackage ({ anzu, evil, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "evil-anzu";
- version = "20150125.109";
+ version = "20150124.1809";
src = fetchFromGitHub {
owner = "syohex";
repo = "emacs-evil-anzu";
@@ -17828,7 +18091,7 @@
sha256 = "0cnj91lwpmk4c8nf3xi80yvv6anvkg8h1kbzbp16glkgmy6jpmy8";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/evil-anzu";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/06b0609b56016d938b28d56d9eeb6305116b38af/recipes/evil-anzu";
sha256 = "19cmc61l370mm4h2m6jw5pdcsvj4wcv9zpa8z7k1fjg57mwmmn70";
name = "evil-anzu";
};
@@ -17841,7 +18104,7 @@
evil-args = callPackage ({ evil, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "evil-args";
- version = "20140329.2229";
+ version = "20140329.1629";
src = fetchFromGitHub {
owner = "wcsmith";
repo = "evil-args";
@@ -17849,7 +18112,7 @@
sha256 = "1nh7wa4ynr7ln42x32znzqsmh7ijzy5ymd7rszf49l8677alvazq";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/evil-args";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/0976c82a22f1a8701b9da0b8ba4753ed48191376/recipes/evil-args";
sha256 = "1bwdvf1i3jc77bw2as1wr1djm8z3a7wms60694xkyqh0m909hs2w";
name = "evil-args";
};
@@ -17862,7 +18125,7 @@
evil-avy = callPackage ({ avy, cl-lib ? null, emacs, evil, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "evil-avy";
- version = "20150908.948";
+ version = "20150908.248";
src = fetchFromGitHub {
owner = "louy2";
repo = "evil-avy";
@@ -17870,7 +18133,7 @@
sha256 = "1q6znbnshk45mdglx519qlbfhb7g47qsm245i93ka4djsjy55j9l";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/evil-avy";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/f86bccc9f2190cfa5487cf8e9c9b7938774533ed/recipes/evil-avy";
sha256 = "1hc96dd78yxgr8cs9sk9y1i5h1qnyk110vlb3wnlxv1hwn92qvrd";
name = "evil-avy";
};
@@ -17883,15 +18146,15 @@
evil-cleverparens = callPackage ({ dash, emacs, evil, fetchFromGitHub, fetchurl, lib, melpaBuild, paredit, smartparens }:
melpaBuild {
pname = "evil-cleverparens";
- version = "20160513.604";
+ version = "20160611.1104";
src = fetchFromGitHub {
owner = "luxbock";
repo = "evil-cleverparens";
- rev = "345c0917a3e07ac54fcd57337c9a8f08be861085";
- sha256 = "1cqkx9wx3cmskybxl2h35wfpykba8f4ap70wn1mch2rc56j27l0a";
+ rev = "82c920ba04accfd31fa292e11c454d5112b4fd51";
+ sha256 = "0ajy5kp2asrg070vzyzgyqs9jnzglm7lvx8fqvgdhpmhzzfckhbi";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/evil-cleverparens";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/e3b3637d6527b16ea0d606fd87b01004be446b09/recipes/evil-cleverparens";
sha256 = "10zkyaxy52ixh26hzm9v1y0gakcn5sdwz4ny8v1vcmjqjphnk799";
name = "evil-cleverparens";
};
@@ -17901,10 +18164,31 @@
license = lib.licenses.free;
};
}) {};
+ evil-colemak-basics = callPackage ({ emacs, evil, fetchFromGitHub, fetchurl, lib, melpaBuild }:
+ melpaBuild {
+ pname = "evil-colemak-basics";
+ version = "20160625.1159";
+ src = fetchFromGitHub {
+ owner = "wbolster";
+ repo = "evil-colemak-basics";
+ rev = "77dc58134233a2e044d0a2d4a5abc46c28470850";
+ sha256 = "1k7gmivs5dpk672hjxkkpjlxzxd69133rkdchrhjk95nz0sdzq0b";
+ };
+ recipeFile = fetchurl {
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/945417d19faf492fb678aee3ba692d14e7518d85/recipes/evil-colemak-basics";
+ sha256 = "1sbbli0hdmpc23f3g5n95svqfdg3rlvf71plyvpv1a6va9jhi83k";
+ name = "evil-colemak-basics";
+ };
+ packageRequires = [ emacs evil ];
+ meta = {
+ homepage = "https://melpa.org/#/evil-colemak-basics";
+ license = lib.licenses.free;
+ };
+ }) {};
evil-commentary = callPackage ({ evil, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "evil-commentary";
- version = "20160221.2130";
+ version = "20160221.1430";
src = fetchFromGitHub {
owner = "linktohack";
repo = "evil-commentary";
@@ -17912,7 +18196,7 @@
sha256 = "183fdg7rmnnbps0knnj2kmhf1hxk0q91wbqx1flhciq6wq4rilni";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/evil-commentary";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/fe5b05152c919d49ddd920b1bd5ffc351141fa0d/recipes/evil-commentary";
sha256 = "151iiimmkpn58pl9zn40qssfahbrqy83axyl9dcd6kx2ywv5gcxz";
name = "evil-commentary";
};
@@ -17925,7 +18209,7 @@
evil-dvorak = callPackage ({ evil, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "evil-dvorak";
- version = "20160416.2041";
+ version = "20160416.1341";
src = fetchFromGitHub {
owner = "jbranso";
repo = "evil-dvorak";
@@ -17933,7 +18217,7 @@
sha256 = "15rnxhqc56g4ydr8drvcgzvjp8blxsarm86dqc36rym7g5gnxr20";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/evil-dvorak";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/69abca9985339c59ee0e2334cabf3c99e1ba1349/recipes/evil-dvorak";
sha256 = "1iq9wzcb625vs942khja39db1js8r46vrdiqcm47yfji98g39gsn";
name = "evil-dvorak";
};
@@ -17946,15 +18230,15 @@
evil-easymotion = callPackage ({ avy, cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "evil-easymotion";
- version = "20160510.1909";
+ version = "20160617.2040";
src = fetchFromGitHub {
owner = "PythonNut";
repo = "evil-easymotion";
- rev = "1facf7e57e80fe3b2bb18e7da97ca8197a931b08";
- sha256 = "1rdhfsqrkzhbybb49365hx2nxfw7bsnpzh12fqfzq92vcn5441lq";
+ rev = "8515834580f948021d0e9389f42c6e9f04ccb17a";
+ sha256 = "09xvx3y6r04rbwq590cypi91zj3lga1ay95l2q71p2m2yanqgi50";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/evil-easymotion";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/e67955ead0b9d69acab40d66d4e0b821229d635c/recipes/evil-easymotion";
sha256 = "0zixgdhc228y6yqr044cbyls0pihzacqsgvybhhar916p4h8izgv";
name = "evil-easymotion";
};
@@ -17967,7 +18251,7 @@
evil-ediff = callPackage ({ evil, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "evil-ediff";
- version = "20160202.2141";
+ version = "20160202.1441";
src = fetchFromGitHub {
owner = "justbur";
repo = "evil-ediff";
@@ -17975,7 +18259,7 @@
sha256 = "16pz48gdpl68azaqwyixh10y1x9xzi1lnhq2v0nrd0y6bfcqcvc7";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/evil-ediff";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/45eb1339792849b80a3ec94b96a88dd36262df2b/recipes/evil-ediff";
sha256 = "1xwl2511byb00ybfnm6q6mbkgzarrq8bfv5rbip67zqbw2qgmb6i";
name = "evil-ediff";
};
@@ -17988,7 +18272,7 @@
evil-embrace = callPackage ({ emacs, embrace, evil-surround, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "evil-embrace";
- version = "20160519.2029";
+ version = "20160519.1329";
src = fetchFromGitHub {
owner = "cute-jumper";
repo = "evil-embrace.el";
@@ -17996,7 +18280,7 @@
sha256 = "1cplq9s3fw8nadcipjrix46jfcjbgg3xhz6d226wcqgmg90aclfn";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/evil-embrace";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/d4886f068766514deab5673b4366d6bdd311e3b6/recipes/evil-embrace";
sha256 = "10cfkksh3llyfk26x36b7ri0x6a6hrcv275pxk7ckhs1pyhb14y7";
name = "evil-embrace";
};
@@ -18009,15 +18293,15 @@
evil-escape = callPackage ({ cl-lib ? null, emacs, evil, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "evil-escape";
- version = "20160313.2005";
+ version = "20160607.1215";
src = fetchFromGitHub {
owner = "syl20bnr";
repo = "evil-escape";
- rev = "58ec625a94c3a7f1d8f45fae29f26e890a190062";
- sha256 = "0v30yfkyy21nl45f9c05rbkbpfivf173bn2470r1b9vxgx6gcj8g";
+ rev = "09e0622e167c89cd4dfa4e2037aaff0aceee52ad";
+ sha256 = "0lk1wsv7k53774mn6ggrm28i9mxzg0xqv8hj372ka66v6ahlb34f";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/evil-escape";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/770fc6dd82c4d30f98e973958044e4d47b8fd127/recipes/evil-escape";
sha256 = "0rlwnnshcvsb5kn7db5qy39s89qmqlllvg2z8cnxyri8bsssks4k";
name = "evil-escape";
};
@@ -18030,7 +18314,7 @@
evil-exchange = callPackage ({ cl-lib ? null, evil, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "evil-exchange";
- version = "20160408.618";
+ version = "20160407.2318";
src = fetchFromGitHub {
owner = "Dewdrops";
repo = "evil-exchange";
@@ -18038,7 +18322,7 @@
sha256 = "0avaw5pgyv75nhbinjjpy30pgkwfq79fx2k9z034f1x76ls9s683";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/evil-exchange";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/9b06397c032d24a8da4074ad97cdb30d0c468e20/recipes/evil-exchange";
sha256 = "1mvw7w23yfbfmhzj6wimslbryb0gppryw24ac0wh4fzl9rdcma4r";
name = "evil-exchange";
};
@@ -18051,7 +18335,7 @@
evil-extra-operator = callPackage ({ evil, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "evil-extra-operator";
- version = "20160407.822";
+ version = "20160407.122";
src = fetchFromGitHub {
owner = "Dewdrops";
repo = "evil-extra-operator";
@@ -18059,7 +18343,7 @@
sha256 = "10vwyrg833imja3ak9fx0zackdjwlcncl7wm9dym3kjs6qf2rvv0";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/evil-extra-operator";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/fc0b157c3adf8a2899c4dd2ce98e8a81e4f403a3/recipes/evil-extra-operator";
sha256 = "066apin0yrjx7zr007p2h9p2nq58lz7qikzjzg0spqkb8vy7vkc5";
name = "evil-extra-operator";
};
@@ -18072,7 +18356,7 @@
evil-find-char-pinyin = callPackage ({ evil, fetchFromGitHub, fetchurl, lib, melpaBuild, pinyinlib }:
melpaBuild {
pname = "evil-find-char-pinyin";
- version = "20160514.2241";
+ version = "20160514.1541";
src = fetchFromGitHub {
owner = "cute-jumper";
repo = "evil-find-char-pinyin";
@@ -18080,7 +18364,7 @@
sha256 = "1bsy2bynzxr1ibyidv2r21xnfnxbzr0xh5m3h05s5igbmajxr12d";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/evil-find-char-pinyin";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/8755d2fca519f23f11c5cbb53443a2ad4340220e/recipes/evil-find-char-pinyin";
sha256 = "0n52ijdf5hy7mn0rab4493zs2nrf7r1qkmvf0algqaj7bfjscs79";
name = "evil-find-char-pinyin";
};
@@ -18093,7 +18377,7 @@
evil-god-state = callPackage ({ evil, fetchFromGitHub, fetchurl, god-mode, lib, melpaBuild }:
melpaBuild {
pname = "evil-god-state";
- version = "20141117.355";
+ version = "20141116.2055";
src = fetchFromGitHub {
owner = "gridaphobe";
repo = "evil-god-state";
@@ -18101,7 +18385,7 @@
sha256 = "1cv24qnxxf6n1grf4n5969v8y9xll5zb9mbfdnq9iavdvhnndk2h";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/evil-god-state";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/46b8586e9a821efb67539155f783a32867084bfa/recipes/evil-god-state";
sha256 = "1g547d58zf11qw0zz3fk5kmrzmfx1rhawyh5d2h8bll8hwygnrxf";
name = "evil-god-state";
};
@@ -18114,7 +18398,7 @@
evil-iedit-state = callPackage ({ evil, fetchFromGitHub, fetchurl, iedit, lib, melpaBuild }:
melpaBuild {
pname = "evil-iedit-state";
- version = "20160313.1956";
+ version = "20160313.1356";
src = fetchFromGitHub {
owner = "syl20bnr";
repo = "evil-iedit-state";
@@ -18122,7 +18406,7 @@
sha256 = "0r9gif2sgf84z8qniz6chr32av9g2i38rlyms81m8ssghf0j86ss";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/evil-iedit-state";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/b0b6b7d09c023cfe34da65fa1eb8f3fdbe7b1290/recipes/evil-iedit-state";
sha256 = "1dihyh7vqcp7kvfic613k7v33czr93hz04d635awrsyzgy8savhl";
name = "evil-iedit-state";
};
@@ -18135,7 +18419,7 @@
evil-indent-plus = callPackage ({ cl-lib ? null, evil, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "evil-indent-plus";
- version = "20151109.2006";
+ version = "20151109.1306";
src = fetchFromGitHub {
owner = "TheBB";
repo = "evil-indent-plus";
@@ -18143,7 +18427,7 @@
sha256 = "1g6r1ydscwjvmhh1zg4q3nap4avk8lb9msdqrh7dff6pla0r2qs6";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/evil-indent-plus";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/992ea3d372fa3569ad9f838aa2818eaee8b8033a/recipes/evil-indent-plus";
sha256 = "15vnvch0qsaram22d44k617bqhr9rrf8qc86sf20yvdyy3gi5j12";
name = "evil-indent-plus";
};
@@ -18156,7 +18440,7 @@
evil-indent-textobject = callPackage ({ evil, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "evil-indent-textobject";
- version = "20130901.19";
+ version = "20130831.1719";
src = fetchFromGitHub {
owner = "cofi";
repo = "evil-indent-textobject";
@@ -18164,7 +18448,7 @@
sha256 = "0nghisnc49ivh56mddfdlcbqv3y2vqzjvkpgwv3zp80ga6ghvdmz";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/evil-indent-textobject";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/63cfc9c2962780dd5d27da670d5540a0441e7ca2/recipes/evil-indent-textobject";
sha256 = "172a3krid5lrx1w9xcifkhjnvlxg1nbz4w102d99d0grr9465r09";
name = "evil-indent-textobject";
};
@@ -18177,7 +18461,7 @@
evil-leader = callPackage ({ evil, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "evil-leader";
- version = "20140606.1443";
+ version = "20140606.743";
src = fetchFromGitHub {
owner = "cofi";
repo = "evil-leader";
@@ -18185,7 +18469,7 @@
sha256 = "10xrlimsxk09z9cw6rxdz8qvvn1i0vhc1gdicwxri0j10p0hacl3";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/evil-leader";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/cae2ac3513e371a256be0f1a7468e38e686c2487/recipes/evil-leader";
sha256 = "154s2nb170hzksmc87wnzlwg3ic3w3ravgsfvwkyfi2q285vmra6";
name = "evil-leader";
};
@@ -18198,7 +18482,7 @@
evil-lisp-state = callPackage ({ bind-map, evil, fetchFromGitHub, fetchurl, lib, melpaBuild, smartparens }:
melpaBuild {
pname = "evil-lisp-state";
- version = "20160404.448";
+ version = "20160403.2148";
src = fetchFromGitHub {
owner = "syl20bnr";
repo = "evil-lisp-state";
@@ -18206,7 +18490,7 @@
sha256 = "1n6r8xs670r5qp4b5f72nr9g8nlqcrx1v7yqqlbkgv8gns8n5xgh";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/evil-lisp-state";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/4ef683cb1707a481e26dc89b5491ec18e5b20ad1/recipes/evil-lisp-state";
sha256 = "117irac05fs73n7sgja3zd7yh4nz9h0gw5b1b57lfkav6y3ndgcy";
name = "evil-lisp-state";
};
@@ -18219,7 +18503,7 @@
evil-lispy = callPackage ({ evil, fetchFromGitHub, fetchurl, hydra, lib, lispy, melpaBuild }:
melpaBuild {
pname = "evil-lispy";
- version = "20160522.2006";
+ version = "20160522.1306";
src = fetchFromGitHub {
owner = "sp3ctum";
repo = "evil-lispy";
@@ -18227,7 +18511,7 @@
sha256 = "1ylj4mblill964ffbkg8mqy8gxhr8krjgnl9gzp8icr0izb9hj14";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/evil-lispy";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/377d43f3717b8e17c3adce886aaf3e579383ec64/recipes/evil-lispy";
sha256 = "17z830b0x6lhmqkk07hfbrg63c7q7mpn4zz1ppjd1smv4mcqzyld";
name = "evil-lispy";
};
@@ -18240,7 +18524,7 @@
evil-magit = callPackage ({ evil, fetchFromGitHub, fetchurl, lib, magit, melpaBuild }:
melpaBuild {
pname = "evil-magit";
- version = "20160420.1315";
+ version = "20160420.615";
src = fetchFromGitHub {
owner = "justbur";
repo = "evil-magit";
@@ -18248,7 +18532,7 @@
sha256 = "17dc48qc8sicmqngy8kpw7r0qm1gnzsal1106d4lx4z7d8lyhpvz";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/evil-magit";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/cfc6cc3581323c81d5f347895aaddfdc71001f22/recipes/evil-magit";
sha256 = "10mhq6mzpklk5sj28lvd478dv9k84s81ax5jkwwxj26mqdw1ybg6";
name = "evil-magit";
};
@@ -18261,7 +18545,7 @@
evil-mark-replace = callPackage ({ evil, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "evil-mark-replace";
- version = "20150424.918";
+ version = "20150424.218";
src = fetchFromGitHub {
owner = "redguardtoo";
repo = "evil-mark-replace";
@@ -18269,7 +18553,7 @@
sha256 = "01hccc49xxb6lnzr0lwkkwndbk4sv0jyyz3khbcxsgkpzjiydihv";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/evil-mark-replace";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/089accfa2646fc4f265cb8e9b9a05dcf5aa4c4f6/recipes/evil-mark-replace";
sha256 = "03cq43vlv1b53w4kw7mjvk026i8rzhhryfb27ddn6ipgc6xh68a0";
name = "evil-mark-replace";
};
@@ -18282,15 +18566,15 @@
evil-matchit = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "evil-matchit";
- version = "20160413.1525";
+ version = "20160627.1951";
src = fetchFromGitHub {
owner = "redguardtoo";
repo = "evil-matchit";
- rev = "6346825fd89ee115fab974746fdba338adee856c";
- sha256 = "0x6rc98g7hvvmlgq31n7qanylrld6dzvg6n8qgzp4s544l0dwfw6";
+ rev = "080639aed39265f8f9f7e2ef8d3a6292939dffe2";
+ sha256 = "0zd0cy65zyz6nb6vmcwjj8nq1nkifynsg12ys2mplsx33ijg7546";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/evil-matchit";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/aeab4a998bffbc784e8fb23927d348540baf9951/recipes/evil-matchit";
sha256 = "01z69n20qs4gngd28ry4kn825cax5km9hn96i87yrvq7nfa64swq";
name = "evil-matchit";
};
@@ -18303,15 +18587,15 @@
evil-mc = callPackage ({ cl-lib ? null, emacs, evil, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "evil-mc";
- version = "20160507.707";
+ version = "20160630.38";
src = fetchFromGitHub {
owner = "gabesoft";
repo = "evil-mc";
- rev = "4abe04bf7007dbba444301483fe55d5861261404";
- sha256 = "1ayfrl0bk8i6mqaq4hwgd0wbigiw6ndsi3c2q6znahhcbdfzjjmq";
+ rev = "d700b1a5b4278af730048fb30641411ca20fdd0c";
+ sha256 = "0z8yk5d3xw4i2lzd9kd9i5f7190k6x5vnicz310gcp9alhakfhwx";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/evil-mc";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/96770d778a03ab012fb82a3a0122983db6f9b0c4/recipes/evil-mc";
sha256 = "0cq4xg6svb5gz4ra607wy768as2igla4h1xcrfnxldknk476fqqs";
name = "evil-mc";
};
@@ -18324,15 +18608,15 @@
evil-mu4e = callPackage ({ dash, emacs, evil, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "evil-mu4e";
- version = "20160214.1222";
+ version = "20160611.1358";
src = fetchFromGitHub {
owner = "JorisE";
repo = "evil-mu4e";
- rev = "e52ffae4c19385575f4dbd2b7af3d0a0221b4efa";
- sha256 = "0zqmmv3if9zzq9fgjg8wj62pk1qn65nax9hsk9m7lx2ncdv8cph1";
+ rev = "5bd77b716d07881a0f78ea5808e10b218902b80b";
+ sha256 = "0zcypvihhmczmmakxm0c34l410197avdx1svrh634iy0gnv3lkb6";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/evil-mu4e";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/332f3f9c6dc106e58345abbc2d8fd99056d518c0/recipes/evil-mu4e";
sha256 = "1ks4vnga7dkz27a7gza5hakzbcsiqgkq1ysc0lcx7g82ihpmrrcq";
name = "evil-mu4e";
};
@@ -18345,7 +18629,7 @@
evil-multiedit = callPackage ({ cl-lib ? null, emacs, evil, fetchFromGitHub, fetchurl, iedit, lib, melpaBuild }:
melpaBuild {
pname = "evil-multiedit";
- version = "20160602.2113";
+ version = "20160602.1413";
src = fetchFromGitHub {
owner = "hlissner";
repo = "evil-multiedit";
@@ -18353,7 +18637,7 @@
sha256 = "171bq84dg86s33p73l6lji155c4as2dnjs7q3jyl8jhqsqf2cmyg";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/evil-multiedit";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/997f5a6999d1add57fae33ba8eb3e3bc60d7bb56/recipes/evil-multiedit";
sha256 = "0p02q9skqw2zhx7sfadqgs7vn518s72856962dam0xw4sqasplfp";
name = "evil-multiedit";
};
@@ -18366,7 +18650,7 @@
evil-nerd-commenter = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "evil-nerd-commenter";
- version = "20160524.1300";
+ version = "20160524.600";
src = fetchFromGitHub {
owner = "redguardtoo";
repo = "evil-nerd-commenter";
@@ -18374,7 +18658,7 @@
sha256 = "05lv08gj0659j16jf8x1pif3b885vnj0qg3md7n827la9k94sfml";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/evil-nerd-commenter";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/a3e1ff69e7cc95a5b5d628524ad836833f4ee736/recipes/evil-nerd-commenter";
sha256 = "1pa5gh065hqn5mhs47qvjllwdwwafl0clk555mb6w7svq58r6i8d";
name = "evil-nerd-commenter";
};
@@ -18387,7 +18671,7 @@
evil-numbers = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "evil-numbers";
- version = "20140606.1451";
+ version = "20140606.751";
src = fetchFromGitHub {
owner = "cofi";
repo = "evil-numbers";
@@ -18395,7 +18679,7 @@
sha256 = "1aq95hj8x13py0pwsnc6wvd8cc5yv5qin8ym9js42y5966vwj4np";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/evil-numbers";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/cae2ac3513e371a256be0f1a7468e38e686c2487/recipes/evil-numbers";
sha256 = "1lpmkklwjdf7ayhv99g9zh3l9hzrwm0hr0ijvbc7yz3n398zn1b2";
name = "evil-numbers";
};
@@ -18408,7 +18692,7 @@
evil-org = callPackage ({ evil, evil-leader, fetchFromGitHub, fetchurl, lib, melpaBuild, org }:
melpaBuild {
pname = "evil-org";
- version = "20151203.847";
+ version = "20151203.147";
src = fetchFromGitHub {
owner = "edwtjo";
repo = "evil-org-mode";
@@ -18416,7 +18700,7 @@
sha256 = "0pir7a3xxbcp5f3q9pi36rpdpi8pbx18afmh0r3501ynssyjfq53";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/evil-org";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/5ec54af16e3dadce43ece7da3acb1cf2eab5d14b/recipes/evil-org";
sha256 = "18w07fbafry3wb87f55kd8y0yra3s18a52f3m5kkdlcz5zwagi1c";
name = "evil-org";
};
@@ -18429,7 +18713,7 @@
evil-paredit = callPackage ({ evil, fetchFromGitHub, fetchurl, lib, melpaBuild, paredit }:
melpaBuild {
pname = "evil-paredit";
- version = "20150413.2248";
+ version = "20150413.1548";
src = fetchFromGitHub {
owner = "roman";
repo = "evil-paredit";
@@ -18437,7 +18721,7 @@
sha256 = "0b08y4spapl4g2292j3l4cr84gjlvm3rpma3gqld4yb1sxd7v78p";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/evil-paredit";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/88db86e1351410bcff6f3ed80681946afcec9959/recipes/evil-paredit";
sha256 = "0xvxxa3gjgsrv10a61y0591bn3gj8v1ff2wck8s0svwfl076gyfy";
name = "evil-paredit";
};
@@ -18450,7 +18734,7 @@
evil-quickscope = callPackage ({ evil, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "evil-quickscope";
- version = "20160202.2024";
+ version = "20160202.1324";
src = fetchFromGitHub {
owner = "blorbx";
repo = "evil-quickscope";
@@ -18458,7 +18742,7 @@
sha256 = "1ja9ggj70wf0nmma4xnc1zdzg2crq9h1cv3cj7cgwjmllflgkfq7";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/evil-quickscope";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/ec118caf243c74d243f533c9e12f7de0d6c43bc4/recipes/evil-quickscope";
sha256 = "0xym1mh4p68i00l1lshywf5fdg1vw3szxp3fk9fwfcg04z6vd489";
name = "evil-quickscope";
};
@@ -18471,15 +18755,15 @@
evil-rails = callPackage ({ evil, fetchFromGitHub, fetchurl, lib, melpaBuild, projectile-rails }:
melpaBuild {
pname = "evil-rails";
- version = "20150803.1346";
+ version = "20160621.1758";
src = fetchFromGitHub {
owner = "antono";
repo = "evil-rails";
- rev = "6a9375bf7f5823c8138e679249c4e2ce58f2e93a";
- sha256 = "12rdx5zjp5pck008cykpw200rr1y0b3lj2dpzf82llfyfaxzh7wi";
+ rev = "c8669783d8a40719b2604c58a4c06c248cab272f";
+ sha256 = "0a4msvyzp29dx666qylwim9nq4z9j5rlmp7vcdhzbmqbbp5zs0bc";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/evil-rails";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/ff526fe800b0535067431f1ae78c4a4b5594b23d/recipes/evil-rails";
sha256 = "0ah0nvzl30z19566kacyrsznsdm3cpij8n3bw3dfng7263rh60gj";
name = "evil-rails";
};
@@ -18492,7 +18776,7 @@
evil-rsi = callPackage ({ evil, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "evil-rsi";
- version = "20160221.2204";
+ version = "20160221.1504";
src = fetchFromGitHub {
owner = "linktohack";
repo = "evil-rsi";
@@ -18500,7 +18784,7 @@
sha256 = "1xz629qv1ss1fap397k48piawcwl8lrybraq5449bw1vvn1a4d9f";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/evil-rsi";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/24f438b47e8ede0ef84261424c122d2ac28b90cb/recipes/evil-rsi";
sha256 = "0mc39n72420n36kwyf9zpw1pgyih0aigfnmkbywb0yxgj7myc345";
name = "evil-rsi";
};
@@ -18513,7 +18797,7 @@
evil-search-highlight-persist = callPackage ({ fetchFromGitHub, fetchurl, highlight, lib, melpaBuild }:
melpaBuild {
pname = "evil-search-highlight-persist";
- version = "20151215.1138";
+ version = "20151215.438";
src = fetchFromGitHub {
owner = "juanjux";
repo = "evil-search-highlight-persist";
@@ -18521,7 +18805,7 @@
sha256 = "1jfi2k9dm0cc9bx8klppm965ydhdw17a2n664199vhxrap6g27yk";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/evil-search-highlight-persist";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/91361f95852910968b395423e16377c70189fc55/recipes/evil-search-highlight-persist";
sha256 = "0iia136js364iygi1mydyzwvizhic6w5z9pbwmhva4654pq8dzqy";
name = "evil-search-highlight-persist";
};
@@ -18534,7 +18818,7 @@
evil-smartparens = callPackage ({ emacs, evil, fetchFromGitHub, fetchurl, lib, melpaBuild, smartparens }:
melpaBuild {
pname = "evil-smartparens";
- version = "20160502.1055";
+ version = "20160502.355";
src = fetchFromGitHub {
owner = "expez";
repo = "evil-smartparens";
@@ -18542,7 +18826,7 @@
sha256 = "1jvyj2qc340vzw379ij9vkzfw5qningkv0n1mwzhzhb1dg8i1ciq";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/evil-smartparens";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/850898fbfc8e0aeb779e8feae56476d989110e79/recipes/evil-smartparens";
sha256 = "1viwrd6gfqmwhlil80pk68dikn3cjf9ddsy0z781z3qfx0j35qza";
name = "evil-smartparens";
};
@@ -18555,7 +18839,7 @@
evil-snipe = callPackage ({ cl-lib ? null, evil, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "evil-snipe";
- version = "20160413.1949";
+ version = "20160413.1249";
src = fetchFromGitHub {
owner = "hlissner";
repo = "evil-snipe";
@@ -18563,7 +18847,7 @@
sha256 = "15rhnrz2ppwyyhjj4y251654kvyw3yjzmkbslvszcp5y8a5m30pg";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/evil-snipe";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/6748f3febbe2f098761e967b4dc67791186d0aa7/recipes/evil-snipe";
sha256 = "0gcmpjw3iw7rjk86b2k6clfigp48vakfjd1a9n8qramhnc85rgkn";
name = "evil-snipe";
};
@@ -18576,7 +18860,7 @@
evil-space = callPackage ({ evil, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "evil-space";
- version = "20151208.1328";
+ version = "20151208.628";
src = fetchFromGitHub {
owner = "linktohack";
repo = "evil-space";
@@ -18584,7 +18868,7 @@
sha256 = "1x4nphjq8lvg8qsm1pj04mk9n59xc6jlxiv5s3bih1nl4xkssrxy";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/evil-space";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/4e5a4b9427038f90898ac0e237e71ba7152501f5/recipes/evil-space";
sha256 = "1asvh873r1xgffvz3nr653yn8h5ifaphnafp6wf1b1mja6as7f23";
name = "evil-space";
};
@@ -18597,7 +18881,7 @@
evil-surround = callPackage ({ evil, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "evil-surround";
- version = "20160502.204";
+ version = "20160501.1904";
src = fetchFromGitHub {
owner = "timcharper";
repo = "evil-surround";
@@ -18605,7 +18889,7 @@
sha256 = "1sl89qm3wgmsr1mld1nv18mz7fjc2wq11br6hkdf7qm733q68b7a";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/evil-surround";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/da8b46729f3bd9aa74c4f0ee2a9dc60804aa661c/recipes/evil-surround";
sha256 = "1bcjxw0yrk2bqj5ihl5r2c4id0m9wbnj7fpd0wwmw9444xvwp8ag";
name = "evil-surround";
};
@@ -18618,7 +18902,7 @@
evil-tabs = callPackage ({ elscreen, evil, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "evil-tabs";
- version = "20160217.1620";
+ version = "20160217.920";
src = fetchFromGitHub {
owner = "krisajenkins";
repo = "evil-tabs";
@@ -18626,7 +18910,7 @@
sha256 = "1qklx0j3fz3mp87v64yqbyyq5csfymbjfwvy2s4nk634wbnrra93";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/evil-tabs";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/61eea3ae1c89163736b806aa8ca4f44d17daaba3/recipes/evil-tabs";
sha256 = "0qgvpv5hcai8wmkv2fp6i2vdy7qp4gwidwpzz8j6vl9519x73s62";
name = "evil-tabs";
};
@@ -18639,7 +18923,7 @@
evil-terminal-cursor-changer = callPackage ({ evil, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "evil-terminal-cursor-changer";
- version = "20150828.451";
+ version = "20150827.2151";
src = fetchFromGitHub {
owner = "7696122";
repo = "evil-terminal-cursor-changer";
@@ -18647,7 +18931,7 @@
sha256 = "10aic2r1akk38hh761hr5vp9fjlh1m5nimag0nzdq5x9g9467cc8";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/evil-terminal-cursor-changer";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/148d324afb1891b239dfad680ad7b87b4611316b/recipes/evil-terminal-cursor-changer";
sha256 = "1300ch6f8mkz45na1hdffglhw0cdrrxmwnbd3g4m3sl5z4midian";
name = "evil-terminal-cursor-changer";
};
@@ -18660,7 +18944,7 @@
evil-textobj-anyblock = callPackage ({ cl-lib ? null, evil, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "evil-textobj-anyblock";
- version = "20151017.2317";
+ version = "20151017.1617";
src = fetchFromGitHub {
owner = "noctuid";
repo = "evil-textobj-anyblock";
@@ -18668,7 +18952,7 @@
sha256 = "1v4z2snllgg32cy8glv7xl0m9ib7rwi5ixgdydz1d0sx0z62jyhw";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/evil-textobj-anyblock";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/36b734960313d4cb484cebaac0f112781436631c/recipes/evil-textobj-anyblock";
sha256 = "03vk30s2wkcszcjxmh5ww39rihnag9cp678wdzq4bnqy0c6rnjwa";
name = "evil-textobj-anyblock";
};
@@ -18681,7 +18965,7 @@
evil-textobj-column = callPackage ({ emacs, evil, fetchFromGitHub, fetchurl, lib, melpaBuild, names }:
melpaBuild {
pname = "evil-textobj-column";
- version = "20151228.2244";
+ version = "20151228.1544";
src = fetchFromGitHub {
owner = "noctuid";
repo = "evil-textobj-column";
@@ -18689,7 +18973,7 @@
sha256 = "0nff90v6d97n2xizvfz126ksrf7ngd5rp0j7k7lhbv0v5zcqgxiv";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/evil-textobj-column";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/de7d6dc0d9c42a89be2959d015efa30960df2de7/recipes/evil-textobj-column";
sha256 = "13q3nawx05rn3k6kzq1889vxjznr454cib96pc9lmrq7h65lym2h";
name = "evil-textobj-column";
};
@@ -18702,7 +18986,7 @@
evil-tutor = callPackage ({ evil, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "evil-tutor";
- version = "20150103.750";
+ version = "20150103.50";
src = fetchFromGitHub {
owner = "syl20bnr";
repo = "evil-tutor";
@@ -18710,7 +18994,7 @@
sha256 = "00yfq8aflxvp2nnz7smgq0c5wlb7cips5irj8qs6193ixlkpffvx";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/evil-tutor";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/4b7bfffdc34e181893b8cf4d1cc091f6c3f91126/recipes/evil-tutor";
sha256 = "1hvc2w5ykrgh62n4sxqqqcdk5sd7nmh6xzv4mir5vf9y2dgqcvsn";
name = "evil-tutor";
};
@@ -18723,7 +19007,7 @@
evil-vimish-fold = callPackage ({ emacs, evil, fetchFromGitHub, fetchurl, lib, melpaBuild, vimish-fold }:
melpaBuild {
pname = "evil-vimish-fold";
- version = "20160430.1340";
+ version = "20160430.640";
src = fetchFromGitHub {
owner = "alexmurray";
repo = "evil-vimish-fold";
@@ -18731,7 +19015,7 @@
sha256 = "1z75wp4az5pykvn90vszfb9y8w675g1w288lx8ar9i2hyddsids4";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/evil-vimish-fold";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/fcd51e24f88ebbbd3fddfc7c6f3b667d5104cf2b/recipes/evil-vimish-fold";
sha256 = "01wp4h97hjyzbpd7iighjj26m79499wp5pn8m4pa7v59f6r3sdk6";
name = "evil-vimish-fold";
};
@@ -18744,7 +19028,7 @@
evil-visual-mark-mode = callPackage ({ dash, evil, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "evil-visual-mark-mode";
- version = "20150202.1900";
+ version = "20150202.1200";
src = fetchFromGitHub {
owner = "roman";
repo = "evil-visual-mark-mode";
@@ -18752,7 +19036,7 @@
sha256 = "07cmql8zsqz1qchq2mp3qybbay499dk1yglisig6jfddcmrbbggz";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/evil-visual-mark-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/293cdd3387f26e4c8f21582d75a194963ac9cff7/recipes/evil-visual-mark-mode";
sha256 = "1qgr2dfhfz6imnlznicl7lplajd1s8wny7mlxs1bkms3xjcjfi48";
name = "evil-visual-mark-mode";
};
@@ -18765,7 +19049,7 @@
evil-visualstar = callPackage ({ evil, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "evil-visualstar";
- version = "20160223.148";
+ version = "20160222.1848";
src = fetchFromGitHub {
owner = "bling";
repo = "evil-visualstar";
@@ -18773,7 +19057,7 @@
sha256 = "0mkbzw12fav945icibc2293m5haxqr3hzkyli2cf4ssk6yvn0x4c";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/evil-visualstar";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/578d33f3f8e68ef1b3ca3fb8af9b9ff77b649bd3/recipes/evil-visualstar";
sha256 = "135l9hjfbpn0a6p53picnpydi9qs5vrk2rfn64gxa5ag2apcyycy";
name = "evil-visualstar";
};
@@ -18786,7 +19070,7 @@
evm = callPackage ({ dash, f, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "evm";
- version = "20141007.1356";
+ version = "20141007.656";
src = fetchFromGitHub {
owner = "rejeep";
repo = "evm.el";
@@ -18794,7 +19078,7 @@
sha256 = "0739v0m9vj70a55z0canslyqgafzys815i7a0r6bxj2f9iwq6rhb";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/evm";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/bbcead697f745d197459f90ee05b172e35af2411/recipes/evm";
sha256 = "19l6cs5schbnph0pwhhj66gkxsswd4bmjpy79l9kxzpjf107wc03";
name = "evm";
};
@@ -18807,7 +19091,7 @@
ewmctrl = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "ewmctrl";
- version = "20150630.1038";
+ version = "20150630.338";
src = fetchFromGitHub {
owner = "flexibeast";
repo = "ewmctrl";
@@ -18815,7 +19099,7 @@
sha256 = "1frhcgkiys0pqrlcsi5zcl3ngblr38wrwfi6wzqk75x21rnwnbqv";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ewmctrl";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/b2a7679f0961b171bf23080e628ae80f50c446e4/recipes/ewmctrl";
sha256 = "1w60pb7szai1kh06jd3qvgpzq3z1ci4a77ysnpqjfk326s6zv7hl";
name = "ewmctrl";
};
@@ -18828,7 +19112,7 @@
eww-lnum = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "eww-lnum";
- version = "20150102.1612";
+ version = "20150102.912";
src = fetchFromGitHub {
owner = "m00natic";
repo = "eww-lnum";
@@ -18836,7 +19120,7 @@
sha256 = "1i6zf17rwa390c33cbspz81dz86vwlphyhjjsia4gp205nfk3s20";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/eww-lnum";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/62ffcf48bdb2df2bc9e6dd767c4ed9d605a5c839/recipes/eww-lnum";
sha256 = "1y745z4wa90snizq2g0amdwwgjafd6hkrayn93ca50f1wghdbk79";
name = "eww-lnum";
};
@@ -18849,7 +19133,7 @@
exec-path-from-shell = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "exec-path-from-shell";
- version = "20160113.746";
+ version = "20160113.46";
src = fetchFromGitHub {
owner = "purcell";
repo = "exec-path-from-shell";
@@ -18857,7 +19141,7 @@
sha256 = "0xxk0cr28g7vw8cwsnwrdrc8xqr50g6m9h0v43mx2iws9pn9dd47";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/exec-path-from-shell";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/3d8545191031bece15cf1706d81ad1d064f2a4bd/recipes/exec-path-from-shell";
sha256 = "1j6f52qs1m43878ikl6nplgb72pdbxfznkfn66wyzcfiz2hrvvm9";
name = "exec-path-from-shell";
};
@@ -18870,7 +19154,7 @@
expand-line = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "expand-line";
- version = "20151006.407";
+ version = "20151005.2107";
src = fetchFromGitHub {
owner = "cheunghy";
repo = "expand-line";
@@ -18878,7 +19162,7 @@
sha256 = "0wz4h5hrr5ci0w8pynd2nr1b2zl5hl4pa8gc16mcabik5927rf7z";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/expand-line";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/1c3fa6b17a8c6b08b0d77bdff0f91b7af34f4279/recipes/expand-line";
sha256 = "07nfgp6jlrb9wxqy835j79i4g88714zndidkda84z16qn2y901a9";
name = "expand-line";
};
@@ -18891,7 +19175,7 @@
expand-region = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "expand-region";
- version = "20150902.1458";
+ version = "20150902.758";
src = fetchFromGitHub {
owner = "magnars";
repo = "expand-region.el";
@@ -18899,7 +19183,7 @@
sha256 = "0qqqv0pp25xg1zh72i6fsb7l9vi14nd96rx0qdj1f3pdwfidqms1";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/expand-region";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/cae2ac3513e371a256be0f1a7468e38e686c2487/recipes/expand-region";
sha256 = "1c7f1nqsqdc75h22fxxnyg0m4yxj6l23sirk3c71fqj14paxqnwg";
name = "expand-region";
};
@@ -18912,7 +19196,7 @@
express = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, string-utils }:
melpaBuild {
pname = "express";
- version = "20140508.2241";
+ version = "20140508.1541";
src = fetchFromGitHub {
owner = "rolandwalker";
repo = "express";
@@ -18920,7 +19204,7 @@
sha256 = "0ah8zayipwp760909llb9whcdvmbsdgkg0x5y4qlcicm1r9kwcc7";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/express";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/9a97f5f81af13c49f5bea31455d7da0bf2c12e4f/recipes/express";
sha256 = "0lhisy4ds96bwpc7k8w9ws1zi1qh0d36nhxsp36bqzfi09ig0nb9";
name = "express";
};
@@ -18933,15 +19217,15 @@
extempore-mode = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "extempore-mode";
- version = "20160323.734";
+ version = "20160620.2013";
src = fetchFromGitHub {
owner = "extemporelang";
repo = "extempore-emacs-mode";
- rev = "462989a184a182264b4b0e6b449264d0dcf4a913";
- sha256 = "0sx3kywaqb8sgywqgcx9gllz8zm53pr5vp82vlv7aj5h93lxhxzh";
+ rev = "ce052da4899ea85ee33792a344359fdd19bc653b";
+ sha256 = "163in2pbvqyknsm3la5zqinlw018crx0f0cvr9caal86v5gx65cr";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/extempore-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/7bd3e57171f5283604e9375613a7a94416ee99a7/recipes/extempore-mode";
sha256 = "1z8nzpcj27s74kxfjz7wyr3848jpd6mbyjkssd06ri5p694j9php";
name = "extempore-mode";
};
@@ -18954,7 +19238,7 @@
extend-dnd = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "extend-dnd";
- version = "20151122.1950";
+ version = "20151122.1250";
src = fetchFromGitHub {
owner = "mattfidler";
repo = "extend-dnd";
@@ -18962,7 +19246,7 @@
sha256 = "15dwl1rb3186k328a83dz9xmslc0px60ah16fifvmr3migis9hwz";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/extend-dnd";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/f2d866ca12cb997b7fad878808c0966f3413b73d/recipes/extend-dnd";
sha256 = "0rknpvp8yw051pg3blvmjpp3c9a82jw7f10mq67ggbz98w227417";
name = "extend-dnd";
};
@@ -18975,7 +19259,7 @@
exwm-x = callPackage ({ cl-lib ? null, dmenu, exwm, fetchFromGitHub, fetchurl, lib, melpaBuild, start-menu, switch-window }:
melpaBuild {
pname = "exwm-x";
- version = "20160307.955";
+ version = "20160307.255";
src = fetchFromGitHub {
owner = "tumashu";
repo = "exwm-x";
@@ -18983,7 +19267,7 @@
sha256 = "1i9lklzg7fyi4rl0vv1lidx0shlhih0474bbjsvc74p19p5cmlrq";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/exwm-x";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/a0e6e23bcffdcd1e17c70599c563609050e5de40/recipes/exwm-x";
sha256 = "1d9q57vz63sk3h1g5gvp9xnmqkpa73wppmiy2bv8mxk11whl6xa3";
name = "exwm-x";
};
@@ -18996,15 +19280,15 @@
eyebrowse = callPackage ({ dash, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "eyebrowse";
- version = "20160102.2349";
+ version = "20160625.401";
src = fetchFromGitHub {
owner = "wasamasa";
repo = "eyebrowse";
- rev = "cd25e8785077480f1a948731cb38de512ebe7843";
- sha256 = "0w2g7rpw26j65j4r23w6j8nw3arw73l601kyy6qv9p9bkk1yc072";
+ rev = "375b80cdf48ae2d8336d4693e9b3f7a21c1ff162";
+ sha256 = "098brigngz8w267q6z2lby7gpwzdz5m5554f3xbmkx6apny7wiax";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/eyebrowse";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/90d052bfc0b94cf177e33b2ffc01a45d254fc1b1/recipes/eyebrowse";
sha256 = "09fkzm8z8nkr4s9fbmfcjc80h50051f48v6n14l76xicglr5p861";
name = "eyebrowse";
};
@@ -19017,13 +19301,13 @@
eyedropper = callPackage ({ fetchurl, hexrgb, lib, melpaBuild }:
melpaBuild {
pname = "eyedropper";
- version = "20151231.2201";
+ version = "20151231.1501";
src = fetchurl {
url = "https://www.emacswiki.org/emacs/download/eyedropper.el";
sha256 = "1fg3j0jlww2rqc6k2nq95hcg6i26nqdp043h7kyjcwrgqbjfsigl";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/eyedropper";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/a5d15f875b0080b12ce45cf696c581f6bbf061ba/recipes/eyedropper";
sha256 = "07kdn90vm2nbdprw9hwdgi4py6gqzmrad09y1fwqdy49hrvbwdzk";
name = "eyedropper";
};
@@ -19036,7 +19320,7 @@
eyuml = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, request, s }:
melpaBuild {
pname = "eyuml";
- version = "20141028.2327";
+ version = "20141028.1727";
src = fetchFromGitHub {
owner = "antham";
repo = "eyuml";
@@ -19044,7 +19328,7 @@
sha256 = "1rgzydxv7c455vj1jm44vvs6xc4qgivqqb0g6zh5x4wdcpgdi2g9";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/eyuml";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/b09a8d723e357da67441e65047759ccfa9cb7ef6/recipes/eyuml";
sha256 = "0ada2gcl8bw9nn0fz8g9lbqy8a8w1554q03fzd7lv8qla33ri3wx";
name = "eyuml";
};
@@ -19057,7 +19341,7 @@
ez-query-replace = callPackage ({ dash, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "ez-query-replace";
- version = "20140810.1417";
+ version = "20140810.717";
src = fetchFromGitHub {
owner = "Wilfred";
repo = "ez-query-replace.el";
@@ -19065,7 +19349,7 @@
sha256 = "15qa09x206s7rxmk35rslqniydh6hdb3n2kbspm5zrndcmsqz4zi";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ez-query-replace";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/c40808c7687ace84e4c59bf8c25332c94b6fdd76/recipes/ez-query-replace";
sha256 = "1h9ijr1qagwp9vvikh7ajby0dqgfypjgc45s7d93zb9jrg2n5cgx";
name = "ez-query-replace";
};
@@ -19078,7 +19362,7 @@
f = callPackage ({ dash, fetchFromGitHub, fetchurl, lib, melpaBuild, s }:
melpaBuild {
pname = "f";
- version = "20160426.1427";
+ version = "20160426.727";
src = fetchFromGitHub {
owner = "rejeep";
repo = "f.el";
@@ -19086,7 +19370,7 @@
sha256 = "0v6y897ibs589gry7xrs1vj14h9qd6riach6r27xf7386ji5hb6s";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/f";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/22ddcf536af597b688d8edb70b3636ed6c265bf5/recipes/f";
sha256 = "0s7fqav0dc9g4y5kqjjyqjs90gi34cahaxyx2s0kf9fwcgn23ja2";
name = "f";
};
@@ -19096,10 +19380,31 @@
license = lib.licenses.free;
};
}) {};
+ f3 = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, helm, lib, melpaBuild }:
+ melpaBuild {
+ pname = "f3";
+ version = "20160628.1801";
+ src = fetchFromGitHub {
+ owner = "cosmicexplorer";
+ repo = "f3";
+ rev = "114fec094c4ea063724c05404a2ece53f510b3e3";
+ sha256 = "0fh69qhvdks1hclwhr9nv6bgbsjwdk0mwqhw3dmlv2jb5yip308m";
+ };
+ recipeFile = fetchurl {
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/5b40de62a82d6895a37ff795d56f7d0f783461e6/recipes/f3";
+ sha256 = "099wibgp9k6sgglaqigic5ay6qg7aqijnis5crwjl7b81ddqp610";
+ name = "f3";
+ };
+ packageRequires = [ cl-lib emacs helm ];
+ meta = {
+ homepage = "https://melpa.org/#/f3";
+ license = lib.licenses.free;
+ };
+ }) {};
fabric = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "fabric";
- version = "20141024.1222";
+ version = "20141024.522";
src = fetchFromGitHub {
owner = "nlamirault";
repo = "fabric.el";
@@ -19107,7 +19412,7 @@
sha256 = "0crhkdbxz1ldbrvppi95g005ni5zg99z1271rkrnk5i6cvc4hlq5";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/fabric";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/83939d2a4d5874244a4916eee9ae6b327af18b5d/recipes/fabric";
sha256 = "1mkblsakdhvi10b67bv3j0jsf7hr8lf9sibmprvx8smqsih7l88m";
name = "fabric";
};
@@ -19119,13 +19424,13 @@
}) {};
face-remap-plus = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild {
pname = "face-remap-plus";
- version = "20151231.2202";
+ version = "20151231.1502";
src = fetchurl {
url = "https://www.emacswiki.org/emacs/download/face-remap+.el";
sha256 = "0yr3fqpn9pj6y8bsb6g7hkg75sl703pzngn8gp0sgs3v90c180l5";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/face-remap+";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/a5d15f875b0080b12ce45cf696c581f6bbf061ba/recipes/face-remap+";
sha256 = "0vq6xjrv3qic89pxzi6mx1s08k4ba27g8wqm1ap4fxh3l14wkg0y";
name = "face-remap-plus";
};
@@ -19137,13 +19442,13 @@
}) {};
facemenu-plus = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild {
pname = "facemenu-plus";
- version = "20151231.2205";
+ version = "20151231.1505";
src = fetchurl {
url = "https://www.emacswiki.org/emacs/download/facemenu+.el";
sha256 = "1kayc4hsalvqnn577y3f97w9kz94c53vcxwx01s0k34ffav919c2";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/facemenu+";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/a5d15f875b0080b12ce45cf696c581f6bbf061ba/recipes/facemenu+";
sha256 = "0lbggalgkj59wj67z95949jmppmqrzrp63mdhw42r2x0fz1ir0iv";
name = "facemenu-plus";
};
@@ -19155,13 +19460,13 @@
}) {};
faces-plus = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild {
pname = "faces-plus";
- version = "20151231.2205";
+ version = "20151231.1505";
src = fetchurl {
url = "https://www.emacswiki.org/emacs/download/faces+.el";
sha256 = "0sqrymmr583cgqmv4bs6rjms5ij5cm8vvxjrfc9alacwyz5f7w8m";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/faces+";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/a5d15f875b0080b12ce45cf696c581f6bbf061ba/recipes/faces+";
sha256 = "0k3m434f3d3061pvir0dnykmv6r9jswl7pzybzja3afiy591hh92";
name = "faces-plus";
};
@@ -19174,7 +19479,7 @@
faceup = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "faceup";
- version = "20150215.2248";
+ version = "20150215.1548";
src = fetchFromGitHub {
owner = "Lindydancer";
repo = "faceup";
@@ -19182,7 +19487,7 @@
sha256 = "0sjmjydapfnv979dx8dwiz67wffamiaf41s4skkwa0wn2h4p6wja";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/faceup";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/a10bf2928b93c3908e89ca8ad9649bb468ebca05/recipes/faceup";
sha256 = "0l41xp38iji55dv20lk7r187ywcz8s1g2jmwbjwkspzmcf763xvx";
name = "faceup";
};
@@ -19195,7 +19500,7 @@
factlog = callPackage ({ deferred, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "factlog";
- version = "20130210.240";
+ version = "20130209.1940";
src = fetchFromGitHub {
owner = "tkf";
repo = "factlog";
@@ -19203,7 +19508,7 @@
sha256 = "19zm9my7fl1r3q48axjv2f8x9hcjk6qah4y4r92b90bzfmcdc30y";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/factlog";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/9075a42edee1ac7de0812d2eefcba5681859eb6e/recipes/factlog";
sha256 = "163482vfpa52b5ya5xps4qnclbaql1x0q54gqdwwmm04as8qbfz7";
name = "factlog";
};
@@ -19216,7 +19521,7 @@
faff-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "faff-theme";
- version = "20160424.1752";
+ version = "20160424.1052";
src = fetchFromGitHub {
owner = "WJCFerguson";
repo = "emacs-faff-theme";
@@ -19224,7 +19529,7 @@
sha256 = "1iv9xnpylw2mw18993yy5s9bkxs1rjrn4q92b1wvrx1n51kcw2ny";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/faff-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/0b35c169fe56a5612ff5a4242140f617fdcae14f/recipes/faff-theme";
sha256 = "1dmwbkp94zsddy0brs3mkdjr09n69maw2mrdfhriqcdk56qpwp4g";
name = "faff-theme";
};
@@ -19237,7 +19542,7 @@
fakespace = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "fakespace";
- version = "20120818.206";
+ version = "20120817.1906";
src = fetchFromGitHub {
owner = "skeeto";
repo = "elisp-fakespace";
@@ -19245,7 +19550,7 @@
sha256 = "11fm0h9rily5731s137mgv8rdbfqi99s6f36bgr0arwbq3f2j3fs";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/fakespace";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/778dbe1fd1d2ecebb499ad66bc950e586f231c52/recipes/fakespace";
sha256 = "09dsmrqax4wfcw8fd5jf07bjxm5dizpc2qvjkqwg74j2n352wv27";
name = "fakespace";
};
@@ -19258,7 +19563,7 @@
fakir = callPackage ({ dash, fetchFromGitHub, fetchurl, kv, lib, melpaBuild, noflet }:
melpaBuild {
pname = "fakir";
- version = "20140729.1852";
+ version = "20140729.1152";
src = fetchFromGitHub {
owner = "nicferrier";
repo = "emacs-fakir";
@@ -19266,7 +19571,7 @@
sha256 = "1w5apzbzr1jd983b0rzsy9ldb0z0zcq6mpyb5r8czl5wd4vvj69h";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/fakir";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/d0a8abd5fd77a14b957f53b5bc8474403cc1e18f/recipes/fakir";
sha256 = "07bicglgpm6qkcsxwj6rswhx4hgh27rfg8s1cki7g8qcvk2f7b25";
name = "fakir";
};
@@ -19279,7 +19584,7 @@
fancy-battery = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "fancy-battery";
- version = "20150101.1304";
+ version = "20150101.604";
src = fetchFromGitHub {
owner = "lunaryorn";
repo = "fancy-battery.el";
@@ -19287,7 +19592,7 @@
sha256 = "0m7rjzl9js2gjfcaqp2n5pn5ykpqnv8qfv35l5m5kpfigsi9cbb0";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/fancy-battery";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/eae3af4145c534992d1c1ee5bb6420651c7c5d82/recipes/fancy-battery";
sha256 = "03rkfdkrzyal9abdiv8c73w10sm974hxf3xg5015hibfi6kzg8ii";
name = "fancy-battery";
};
@@ -19300,7 +19605,7 @@
fancy-narrow = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "fancy-narrow";
- version = "20160124.1303";
+ version = "20160124.603";
src = fetchFromGitHub {
owner = "Malabarba";
repo = "fancy-narrow";
@@ -19308,7 +19613,7 @@
sha256 = "0825hyz8b2biil0pd2bgjxqd2zm3gw9si7br5hnh51qasbaw9hid";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/fancy-narrow";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/1e6aed365c42987d64d0cd9a8a6178339b1b39e8/recipes/fancy-narrow";
sha256 = "15i86jz6rdpva1az7gqp1wbm8kispcfc8h6v9fqsbag9sbzvgcyv";
name = "fancy-narrow";
};
@@ -19321,7 +19626,7 @@
farmhouse-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "farmhouse-theme";
- version = "20150507.627";
+ version = "20150506.2327";
src = fetchFromGitHub {
owner = "mattly";
repo = "emacs-farmhouse-theme";
@@ -19329,7 +19634,7 @@
sha256 = "08lgfa2k42qpcs4999b77ycsg76zb56qbcxbsvmg0pcwjwa1ambz";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/farmhouse-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/3b0d427db8ab66d2fe323366b0837595b3b59afa/recipes/farmhouse-theme";
sha256 = "0hbqdrw6x25b331qhbg3yaaa45c2b896wknsjm0a1kg142klq229";
name = "farmhouse-theme";
};
@@ -19342,7 +19647,7 @@
fasd = callPackage ({ fetchFromGitHub, fetchurl, grizzl, lib, melpaBuild }:
melpaBuild {
pname = "fasd";
- version = "20151208.816";
+ version = "20151208.116";
src = fetchFromGitHub {
owner = "steckerhalter";
repo = "emacs-fasd";
@@ -19350,7 +19655,7 @@
sha256 = "0m2qn3rd16s7ahyw6f9a4jb73sdc8bqp6d03p450yzcn36lw78z5";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/fasd";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/8f0fefb25f03677080c9adeeb48046d6ea163053/recipes/fasd";
sha256 = "0i49z50bpi7fx0dm5jywlndnq9hb0dm5a906k4017w8y7sfpfl6c";
name = "fasd";
};
@@ -19363,15 +19668,15 @@
fastdef = callPackage ({ fetchFromGitHub, fetchurl, ivy, lib, melpaBuild, w3m }:
melpaBuild {
pname = "fastdef";
- version = "20160517.1420";
+ version = "20160623.1833";
src = fetchFromGitHub {
owner = "redguardtoo";
repo = "fastdef";
- rev = "602808385974db7a8e57b2980b3adc1bc61e4aec";
- sha256 = "0kidb2kwjyrz93yy9gnwwsb60xx3k6npni2gj8q38w50lql5ja2l";
+ rev = "cb57bfdfbecfcadb513fd0c4490b74a709e1d22e";
+ sha256 = "0gbsjan8hc5mca5xzdf4ycv83cjkk920nxqad4vhb24fpmbckinb";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/fastdef";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/f6effb2fbccc71e8a44c53138e3c21f10dc55fbc/recipes/fastdef";
sha256 = "1cf4slxhcp2z7h9k3l31h06nnqsyb4smwnj55ivil2lm0fa0vlzj";
name = "fastdef";
};
@@ -19384,7 +19689,7 @@
fastnav = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "fastnav";
- version = "20120211.1557";
+ version = "20120211.857";
src = fetchFromGitHub {
owner = "gleber";
repo = "fastnav.el";
@@ -19392,7 +19697,7 @@
sha256 = "0y95lrdqd9i2kbb266s1wdiim4m8vrn3br19d8s55ib6xlywf8cx";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/fastnav";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/d2a7dce6617bf4ed250dba150e6787bf48891c64/recipes/fastnav";
sha256 = "08hg256w8k9f5nzgpyl1jykbf28vmvv09kkhzs0s2zhwbl2158a5";
name = "fastnav";
};
@@ -19405,7 +19710,7 @@
faust-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "faust-mode";
- version = "20160119.1820";
+ version = "20160119.1120";
src = fetchFromGitHub {
owner = "magnetophon";
repo = "emacs-faust-mode";
@@ -19413,7 +19718,7 @@
sha256 = "0m9nzl0z3gc6fjpfqklwrsxlcgbbyydls004a39wfppyz0wr94fy";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/faust-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/31f4177ce35313e0f40e9ef0e5a1043ecd181573/recipes/faust-mode";
sha256 = "1lfn4q1wcc3vzazv2yzcnpvnmq6bqcczq8lpkz7w8yj8i5kpjvsc";
name = "faust-mode";
};
@@ -19426,15 +19731,15 @@
fcitx = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "fcitx";
- version = "20160518.1854";
+ version = "20160608.1319";
src = fetchFromGitHub {
owner = "cute-jumper";
repo = "fcitx.el";
- rev = "7747865f0af9320439066ae53d82a951f1b5cd77";
- sha256 = "1qrmzlvc7bbq0ayv9l7wp32vg22c2w27y7nr0k79qk4p6kn1pnn6";
+ rev = "77f1e187b9cecb6975bedcfe91c8c81f1b133686";
+ sha256 = "0n0v9jwswcc16cigyffvy3m9y7qqrs8qzjs11sq3d420zrv16b39";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/fcitx";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/e8c40f09d9397b3ca32a7ed37203f490497dc984/recipes/fcitx";
sha256 = "0a8wd588c26p3czfp5hn2n46f2vwyg5v301sv0y07b55b1i3ynmx";
name = "fcitx";
};
@@ -19447,7 +19752,7 @@
fcopy = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "fcopy";
- version = "20150304.1503";
+ version = "20150304.803";
src = fetchFromGitHub {
owner = "ataka";
repo = "fcopy";
@@ -19455,7 +19760,7 @@
sha256 = "0c56j8ip2fyma9yvwaanz89jyzgi9k11xwwkflzlzc4smnvgfibr";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/fcopy";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/f9afd35b7c7075bef9ed878b7122ff9783fdd9fd/recipes/fcopy";
sha256 = "13337ymf8vlbk8c4jpj6paqi06xdmk39yf72s40kmfrbvgmi8qy1";
name = "fcopy";
};
@@ -19468,7 +19773,7 @@
feature-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "feature-mode";
- version = "20141121.1930";
+ version = "20141121.1230";
src = fetchFromGitHub {
owner = "michaelklishin";
repo = "cucumber.el";
@@ -19476,7 +19781,7 @@
sha256 = "0ylm4zcf82f5rl4lps5p6p8dc3i5p2v7w93caadgzv5qbl400h5d";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/feature-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/0a70991695f9ff305f12cfa45e0a597f4a782ba3/recipes/feature-mode";
sha256 = "0ryinmpqb3c91qcna6gbijcmqv3skxdc947dlr5s1w623z9nxgqg";
name = "feature-mode";
};
@@ -19489,7 +19794,7 @@
fetch = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "fetch";
- version = "20131201.830";
+ version = "20131201.130";
src = fetchFromGitHub {
owner = "crshd";
repo = "fetch.el";
@@ -19497,7 +19802,7 @@
sha256 = "0pjw9fb3n08yd38680ifdn2wlnw2k6q97lzhqb2259mywsycyqy8";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/fetch";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/7e808952551936dd8eaf0158d6ca929d10712dc5/recipes/fetch";
sha256 = "1jqc6pspgcrdzm7ij46r1q6vpjq7il5dy2xyxwn2c1ky5a80paby";
name = "fetch";
};
@@ -19510,7 +19815,7 @@
fic-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "fic-mode";
- version = "20160209.1911";
+ version = "20160209.1211";
src = fetchFromGitHub {
owner = "lewang";
repo = "fic-mode";
@@ -19518,7 +19823,7 @@
sha256 = "06xd5rvn037g1kjdw7aa1n71i1mpnp4qz3a7wcmzbls0amhhnx1m";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/fic-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/0fda2b54a0ff0b6fc3bd6d20cfcbbf63cae5380f/recipes/fic-mode";
sha256 = "0yy1zw0b0s93qkzyq0n17gzn33ma5h56mh40ysz6adwsi68af84c";
name = "fic-mode";
};
@@ -19531,7 +19836,7 @@
fifo-class = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "fifo-class";
- version = "20160425.758";
+ version = "20160425.58";
src = fetchFromGitHub {
owner = "mola-T";
repo = "fifo-class";
@@ -19539,7 +19844,7 @@
sha256 = "0dkng4zkd5xdyvqy67bnfp4z6w8byx66bssq1zl7bhga45vihfjg";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/fifo-class";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/1b4fa87f7d5592bc264805760d191df2a3539cf1/recipes/fifo-class";
sha256 = "0yyjrvdjiq5166vrys13c3dqy5807a3x99597iw5v6mcxg37jg3h";
name = "fifo-class";
};
@@ -19551,14 +19856,14 @@
}) {};
figlet = callPackage ({ fetchhg, fetchurl, lib, melpaBuild }: melpaBuild {
pname = "figlet";
- version = "20160218.2337";
+ version = "20160218.1637";
src = fetchhg {
url = "https://bitbucket.com/jpkotta/figlet";
rev = "70ca269d706e";
sha256 = "1c18b1h154sdxkksqwk8snyk8n43bwzgavi75l8mnz8dnl1ciaxs";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/figlet";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/5b7972602399f9df9139cff177e38653bb0f43ed/recipes/figlet";
sha256 = "1m7hw56awdbvgzdnjysb3wqkhkjqy68jxsxh9f7fx266wjqhp6yj";
name = "figlet";
};
@@ -19570,13 +19875,13 @@
}) {};
files-plus = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild {
pname = "files-plus";
- version = "20151231.2207";
+ version = "20151231.1507";
src = fetchurl {
url = "https://www.emacswiki.org/emacs/download/files+.el";
sha256 = "0s79b5jj3jfl3aih6r3fa0zix40arysk6mz4fijapd8ybaflz25n";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/files+";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/a5d15f875b0080b12ce45cf696c581f6bbf061ba/recipes/files+";
sha256 = "1m1pxf6knrnyc9ygmyr27gm709ydxf0kkh1xrfcza6n476frmwr8";
name = "files-plus";
};
@@ -19588,13 +19893,13 @@
}) {};
filesets-plus = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild {
pname = "filesets-plus";
- version = "20151231.2208";
+ version = "20151231.1508";
src = fetchurl {
url = "https://www.emacswiki.org/emacs/download/filesets+.el";
sha256 = "020rpjrjp2gh4w6mrphrvk27kdizfqbjsw2sxraf8jz0dibg9gfg";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/filesets+";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/a5d15f875b0080b12ce45cf696c581f6bbf061ba/recipes/filesets+";
sha256 = "06n8pw8c65bmrkxda2akvv57ndfijgbp95l40j7sjg8bjp385spn";
name = "filesets-plus";
};
@@ -19607,7 +19912,7 @@
fill-column-indicator = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "fill-column-indicator";
- version = "20151030.2033";
+ version = "20151030.1433";
src = fetchFromGitHub {
owner = "alpaker";
repo = "Fill-Column-Indicator";
@@ -19615,7 +19920,7 @@
sha256 = "0gbqspqn4y7f2fwqq8210b6k5q22c0zr7b4ws8qgz9swav8g3vrq";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/fill-column-indicator";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/4ea0c00a7784621fcca0391a9c8ea85e9dd43852/recipes/fill-column-indicator";
sha256 = "0w8cmijv7ihij9yyncz6lixb6awzzl7n9qpjj2bks1d5rx46blma";
name = "fill-column-indicator";
};
@@ -19628,7 +19933,7 @@
fillcode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "fillcode";
- version = "20150812.1841";
+ version = "20150812.1141";
src = fetchFromGitHub {
owner = "snarfed";
repo = "fillcode";
@@ -19636,7 +19941,7 @@
sha256 = "1x9wmxbcmd6qgdyzrl978nczfqrgyk6xz3rnh5hffbapy1v1rw47";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/fillcode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/85eb403503aa83799a6072bfe21bf66c8177ca73/recipes/fillcode";
sha256 = "0bfsw55vjhx88jpy6npnzfwinvggivbvkk7fa3iwzq19005fkag2";
name = "fillcode";
};
@@ -19649,7 +19954,7 @@
finalize = callPackage ({ cl-lib ? null, eieio ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "finalize";
- version = "20140127.1946";
+ version = "20140127.1246";
src = fetchFromGitHub {
owner = "skeeto";
repo = "elisp-finalize";
@@ -19657,7 +19962,7 @@
sha256 = "0f76cgh97z0rbbg2bp217nqmxfimzkvw85k9mx8bj78i9s2cdmwa";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/finalize";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/1b55869b5183644de02687d2e56f9b68854ccda3/recipes/finalize";
sha256 = "1n0w4kdzc4hv4pprv13lr88gh46slpxdvsc162nqm5mrqp9giqqq";
name = "finalize";
};
@@ -19670,7 +19975,7 @@
find-by-pinyin-dired = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "find-by-pinyin-dired";
- version = "20150202.1116";
+ version = "20150202.416";
src = fetchFromGitHub {
owner = "redguardtoo";
repo = "find-by-pinyin-dired";
@@ -19678,7 +19983,7 @@
sha256 = "18a4ydp30ycx5w80j3xgghclzmzbvrkl2awxixy4aj68nmljk480";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/find-by-pinyin-dired";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/0aa68b4603bf4071d7d12b40de0138ecab1989d7/recipes/find-by-pinyin-dired";
sha256 = "150hvih3mdd1dqffgdcv3nn4qhy86s4lhjkfq0cfzgngfwif8qqq";
name = "find-by-pinyin-dired";
};
@@ -19690,13 +19995,13 @@
}) {};
find-dired-plus = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild {
pname = "find-dired-plus";
- version = "20160515.1850";
+ version = "20160515.1150";
src = fetchurl {
url = "https://www.emacswiki.org/emacs/download/find-dired+.el";
sha256 = "0a2wgdrj6yxvpmzqiqpgzj3gbf04fvbhrfa3213hiah1k9l066m5";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/find-dired+";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/0c8f884334b7eb83647146e7e8be028935ba12ce/recipes/find-dired+";
sha256 = "06a6lwx61xindlchh3ps8khhxc6sr7i9d7i60rjw1h07nxmh0fli";
name = "find-dired-plus";
};
@@ -19706,22 +20011,22 @@
license = lib.licenses.free;
};
}) {};
- find-file-in-project = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, swiper }:
+ find-file-in-project = callPackage ({ emacs, fetchFromGitHub, fetchurl, ivy, lib, melpaBuild }:
melpaBuild {
pname = "find-file-in-project";
- version = "20160516.754";
+ version = "20160625.819";
src = fetchFromGitHub {
owner = "technomancy";
repo = "find-file-in-project";
- rev = "faaab6ebf0c3dd2d32c8021320d481e7eaffb6f8";
- sha256 = "0n1vpnh4afzb67k0s0jxlynv01m2lqczsfscpcvbmvxa22fnlal9";
+ rev = "c6e19de997c51f4b0463961702101287ac4510b9";
+ sha256 = "1gci8q5s9ry9rh555bm9aq3sqkgr1l7ln1ksqf7ipsmgbnip40x9";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/find-file-in-project";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/cae2ac3513e371a256be0f1a7468e38e686c2487/recipes/find-file-in-project";
sha256 = "0aznnv82xhnilc9j4cdmcgh6ksv7bhjjm3pa76hynnyrfn7kq7wy";
name = "find-file-in-project";
};
- packageRequires = [ emacs swiper ];
+ packageRequires = [ emacs ivy ];
meta = {
homepage = "https://melpa.org/#/find-file-in-project";
license = lib.licenses.free;
@@ -19730,7 +20035,7 @@
find-file-in-repository = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "find-file-in-repository";
- version = "20151113.1419";
+ version = "20151113.719";
src = fetchFromGitHub {
owner = "hoffstaetter";
repo = "find-file-in-repository";
@@ -19738,7 +20043,7 @@
sha256 = "090m5647dpc8r8fwi3mszvc8kp0420ma5sv0lmqr2fpxyn9ybkjh";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/find-file-in-repository";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/58705ac6201b73851ce4ce9ebeb0e65463765961/recipes/find-file-in-repository";
sha256 = "0q1ym06w2yn3nzpj018dj6h68f7rmkxczyl061mirjp8z9c6a9q6";
name = "find-file-in-repository";
};
@@ -19751,7 +20056,7 @@
find-temp-file = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "find-temp-file";
- version = "20160108.1113";
+ version = "20160108.413";
src = fetchFromGitHub {
owner = "thisirs";
repo = "find-temp-file";
@@ -19759,7 +20064,7 @@
sha256 = "1d6zn3qsg4lpk13cvn5r1w88dnhfydnhwf59x6cb4sy5q1ihk0g3";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/find-temp-file";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/c01efd0cb3e3bab4661a358c084b645dc7e31736/recipes/find-temp-file";
sha256 = "0c98zm94958rb9kdvqr3pad744nh63y3vy3lshfm0lsg85k9j62p";
name = "find-temp-file";
};
@@ -19772,7 +20077,7 @@
find-things-fast = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "find-things-fast";
- version = "20150520.26";
+ version = "20150519.1726";
src = fetchFromGitHub {
owner = "eglaysher";
repo = "find-things-fast";
@@ -19780,7 +20085,7 @@
sha256 = "1r6cs7p43pi6n2inbrv9q924m679izxwxqgyr4sjjj3lg6an4cnx";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/find-things-fast";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/3b63336dd150e791f3139d675af735b60054eb2b/recipes/find-things-fast";
sha256 = "1fs3wf61lzm1hxh5sx8pr74g7g9np3npdwg7xmk81b5f2jx2vy6m";
name = "find-things-fast";
};
@@ -19792,13 +20097,13 @@
}) {};
finder-plus = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild {
pname = "finder-plus";
- version = "20151231.2213";
+ version = "20151231.1513";
src = fetchurl {
url = "https://www.emacswiki.org/emacs/download/finder+.el";
sha256 = "0x3f9qygp26c4yw32cgyy35bb4f1fq0fg7q8s9vs777skyl3rvp4";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/finder+";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/a5d15f875b0080b12ce45cf696c581f6bbf061ba/recipes/finder+";
sha256 = "1ichxghp2vzx01n129fmjm6iwx4b98ay3xk1ja1i8vzyd2p0z8vh";
name = "finder-plus";
};
@@ -19810,13 +20115,13 @@
}) {};
findr = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild {
pname = "findr";
- version = "20130824.1407";
+ version = "20130824.707";
src = fetchurl {
url = "https://www.emacswiki.org/emacs/download/findr.el";
sha256 = "0a04mgya59w468jv2bmkqlayzgh0r8sdz0qg3n70wn9rhdcwnl9q";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/findr";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/66bba94ec4168441c8e43253c7e1cfd82b613431/recipes/findr";
sha256 = "0pxyfnn3f70gknxv09mfkjixqkzn77rdbql703wsslrj2v1l7bfq";
name = "findr";
};
@@ -19829,7 +20134,7 @@
fingers = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "fingers";
- version = "20150810.216";
+ version = "20150809.1916";
src = fetchFromGitHub {
owner = "fgeller";
repo = "fingers.el";
@@ -19837,7 +20142,7 @@
sha256 = "1vjgcxyzv2p74igr3y0z6hk7bj6yqwjawx90xvvmp9z7m91d4yrg";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/fingers";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/f2afd4983d1a5820daafb31e96d54b214a79849f/recipes/fingers";
sha256 = "1r8fy6q6isjxz9mvaa8in4imdghzla3gg1l93dfm1v2rlr7bhzbg";
name = "fingers";
};
@@ -19850,7 +20155,7 @@
fiplr = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, grizzl, lib, melpaBuild }:
melpaBuild {
pname = "fiplr";
- version = "20140724.845";
+ version = "20140724.145";
src = fetchFromGitHub {
owner = "grizzl";
repo = "fiplr";
@@ -19858,7 +20163,7 @@
sha256 = "14yy7kr2iv549xaf5gkav48lk2hzmvipwbs0rzljzw60il6k05hk";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/fiplr";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/7fabdb05de9b8ec18a3a566f99688b50443b6b44/recipes/fiplr";
sha256 = "1a4w0yqdkz477lfyin4lb9k9qkfpx4350kfxmrqx6dj3aadkikca";
name = "fiplr";
};
@@ -19871,7 +20176,7 @@
firebelly-theme = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "firebelly-theme";
- version = "20140410.1055";
+ version = "20140410.355";
src = fetchFromGitHub {
owner = "startling";
repo = "firebelly";
@@ -19879,7 +20184,7 @@
sha256 = "02ajday0lnk37dnzf4747ha3w0azisq35fmdhq322hx0hfb1c66x";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/firebelly-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/6c8f2b5ab0e75dccb9efb998cdc240303dc4a279/recipes/firebelly-theme";
sha256 = "0lns846l70wcrzqb6p5cy5hpd0szh4gvjxd4xq4zsb0z5nfz97jr";
name = "firebelly-theme";
};
@@ -19892,7 +20197,7 @@
firecode-theme = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "firecode-theme";
- version = "20141116.802";
+ version = "20141116.102";
src = fetchFromGitHub {
owner = "emacsfodder";
repo = "emacs-firecode-theme";
@@ -19900,7 +20205,7 @@
sha256 = "0v8liv6aq10f8dxbl3d4rph1qk891dlxm9wqdc6w8aj318750hfm";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/firecode-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/641d1959bd31598fcdacd39a3d1bb077dcccfa5c/recipes/firecode-theme";
sha256 = "10lxd93lkrvz8884dv4sh6fzzg355j7ab4p5dpvwry79rhs7f739";
name = "firecode-theme";
};
@@ -19913,7 +20218,7 @@
firefox-controller = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild, moz, popwin }:
melpaBuild {
pname = "firefox-controller";
- version = "20160320.1947";
+ version = "20160320.1347";
src = fetchFromGitHub {
owner = "cute-jumper";
repo = "emacs-firefox-controller";
@@ -19921,7 +20226,7 @@
sha256 = "0icgl88pwizwzkdqsxbwhnc6pdyqsfd7wgjnkvg3206i7hcqwpsp";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/firefox-controller";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/70a69c20f8dcf73c878f2172dcc9f1796fdc0408/recipes/firefox-controller";
sha256 = "03y96b3l75w9al8ylijnlb8pcfkwddyfnh8xwig1b6k08zxfgal6";
name = "firefox-controller";
};
@@ -19934,7 +20239,7 @@
fireplace = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "fireplace";
- version = "20160101.1947";
+ version = "20160101.1247";
src = fetchFromGitHub {
owner = "johanvts";
repo = "emacs-fireplace";
@@ -19942,7 +20247,7 @@
sha256 = "1smg4mqc5qdwzk5mp2hfm6l4s7k408x46xfl7fl45csb18islmrp";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/fireplace";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/4c1ac52c1cfe7ccf46092c2d299ebbffdc1b7609/recipes/fireplace";
sha256 = "1apcypznq23fc7xgy4xy1c5hvfvjx1xhyq3aaq1lf59v99zchciw";
name = "fireplace";
};
@@ -19955,7 +20260,7 @@
firestarter = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "firestarter";
- version = "20160318.2142";
+ version = "20160318.1542";
src = fetchFromGitHub {
owner = "wasamasa";
repo = "firestarter";
@@ -19963,7 +20268,7 @@
sha256 = "0ssx3qjv600n8x83g34smphiyywgl97dh4wx8kzm9pp42jnp29cj";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/firestarter";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/5b046eb3b63220b937e1b70f633cb5424dc782a1/recipes/firestarter";
sha256 = "1cpx664hyrdnpb1jps1x6lm7idwlfjblkfygj48cjz9pzd6ld5mp";
name = "firestarter";
};
@@ -19976,7 +20281,7 @@
fish-mode = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "fish-mode";
- version = "20160430.557";
+ version = "20160429.2257";
src = fetchFromGitHub {
owner = "wwwjfy";
repo = "emacs-fish";
@@ -19984,7 +20289,7 @@
sha256 = "0z0ji88mdp3xm5lg3drkd56gpl4qy61mxh11i09rqiwmiw0lp1vm";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/fish-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/efac97c0f54a3300251020c4626056526c18b441/recipes/fish-mode";
sha256 = "0l6k06bs0qdhj3h8vf5fv8c3rbhiqfwszrpb0v2cgnb6xhwzmq14";
name = "fish-mode";
};
@@ -19996,13 +20301,13 @@
}) {};
fit-frame = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild {
pname = "fit-frame";
- version = "20151231.2214";
+ version = "20151231.1514";
src = fetchurl {
url = "https://www.emacswiki.org/emacs/download/fit-frame.el";
sha256 = "082c6yyb1269va6k602hxpdf7ylfxz8gq8swqzwf07qaas0b5qxd";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/fit-frame";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/e13c77f822db3c9eaeb3fd5fa95cc2dbe5133f2c/recipes/fit-frame";
sha256 = "1xcq4n9gj0npjjl98vqacms0a0wnzw62a9iplyf7bgj7n77pgkjb";
name = "fit-frame";
};
@@ -20015,7 +20320,7 @@
fix-input = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "fix-input";
- version = "20160123.619";
+ version = "20160122.2319";
src = fetchFromGitHub {
owner = "mrkkrp";
repo = "fix-input";
@@ -20023,7 +20328,7 @@
sha256 = "1hw3fvj2xq96di4xfs852vy1268hi3a4n10pzrnwnrn0mqy0hn30";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/fix-input";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/7d31f907997d1d07ec794a4f09824f43818f035c/recipes/fix-input";
sha256 = "03xpr7rlv0xq1d9126j1fk0c2j7ssf366n0yc8yzm9vq32n9pp4p";
name = "fix-input";
};
@@ -20036,7 +20341,7 @@
fix-word = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "fix-word";
- version = "20150716.1502";
+ version = "20150716.802";
src = fetchFromGitHub {
owner = "mrkkrp";
repo = "fix-word";
@@ -20044,7 +20349,7 @@
sha256 = "02ixv7ckf419sy0r596fkc7f81bfwk410jl23z6cvdh3j64q12l6";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/fix-word";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/22636390e8a15c09293a1506a901286dd72e565f/recipes/fix-word";
sha256 = "0a8w09cx8p5pkkd4533nd199axkhdhs2a7blp7syfn40bkscx6xc";
name = "fix-word";
};
@@ -20057,7 +20362,7 @@
fixmee = callPackage ({ back-button, button-lock, fetchFromGitHub, fetchurl, lib, melpaBuild, nav-flash, smartrep, string-utils, tabulated-list ? null }:
melpaBuild {
pname = "fixmee";
- version = "20150223.1455";
+ version = "20150223.755";
src = fetchFromGitHub {
owner = "rolandwalker";
repo = "fixmee";
@@ -20065,7 +20370,7 @@
sha256 = "1x4k8890pzdcizzl0p6v96ylrx5xid9ykgrmggx0b3y0gx0vhwic";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/fixmee";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/f5d06db82e237e6c6babd92a1fd2b58c29662e4f/recipes/fixmee";
sha256 = "0wnp6h8f547fsi1lkk4ajny7g21dnr76qfhxl82n0l5h1ps4w8mp";
name = "fixmee";
};
@@ -20085,7 +20390,7 @@
flappymacs = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "flappymacs";
- version = "20140715.1801";
+ version = "20140715.1101";
src = fetchFromGitHub {
owner = "taksatou";
repo = "flappymacs";
@@ -20093,7 +20398,7 @@
sha256 = "07hv6l80ka10qszm16fpan8sas4b0qvl5s6qixxlz02fm7m0s7m5";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/flappymacs";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/d7ebba36b9acf27e515a71b6b2bf92aeecc78cee/recipes/flappymacs";
sha256 = "0dcpl5n7wwsk62ddgfrkq5dkm91569y4i4f0yqa61pdmzhgllx7d";
name = "flappymacs";
};
@@ -20106,7 +20411,7 @@
flash-region = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "flash-region";
- version = "20130923.2017";
+ version = "20130923.1317";
src = fetchFromGitHub {
owner = "Fuco1";
repo = "flash-region";
@@ -20114,7 +20419,7 @@
sha256 = "0z77lm6jv2w5z551pwarcx6xg9kx8fgms9dlskngfvnzbqkldj1f";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/flash-region";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/bf26329a30ec6e39b052e5815d3f113c05e72f84/recipes/flash-region";
sha256 = "1rgg7j34ka0nj1yjl688asim07bbz4aavh67kly6dzzwndr0nw8c";
name = "flash-region";
};
@@ -20127,7 +20432,7 @@
flatland-black-theme = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "flatland-black-theme";
- version = "20141116.730";
+ version = "20141116.30";
src = fetchFromGitHub {
owner = "emacsfodder";
repo = "emacs-flatland-black-theme";
@@ -20135,7 +20440,7 @@
sha256 = "0ib6r6q4wbkkxdwgqsd25nx7ccxhk16lqkvwikign80j9n11g7s1";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/flatland-black-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/641d1959bd31598fcdacd39a3d1bb077dcccfa5c/recipes/flatland-black-theme";
sha256 = "0cl2qbry56nb4prbsczffx8h35x91pgicw5pld0ndw3pxid9h2da";
name = "flatland-black-theme";
};
@@ -20148,7 +20453,7 @@
flatland-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "flatland-theme";
- version = "20140805.1205";
+ version = "20140805.505";
src = fetchFromGitHub {
owner = "gchp";
repo = "flatland-emacs";
@@ -20156,7 +20461,7 @@
sha256 = "0cl8m1i1aaw4zmkrkhfchhp0gxhpvhcmpjglsisjni47y5mydypf";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/flatland-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/0a081fd0c5598fdf5bc0ab92f4d009f32132a29e/recipes/flatland-theme";
sha256 = "14drqwcp9nv269aqm34d426a7gx1a7kr9ygnqa2c8ia1fsizybl3";
name = "flatland-theme";
};
@@ -20169,15 +20474,15 @@
flatui-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "flatui-theme";
- version = "20150531.1043";
+ version = "20160618.2027";
src = fetchFromGitHub {
owner = "john2x";
repo = "flatui-theme.el";
- rev = "80d1967ea73c10aa8aa10620c2b343010e9ce5b9";
- sha256 = "0j8pklgd2sk01glgkr24b5n5521425vws8zwdi4sxcv74922j5zr";
+ rev = "9c15db5526c15c8dba55023f5698372b19c2a780";
+ sha256 = "0ybgpnbq3b0ml3lzgkispn667acpjww7z6cr7hgwg3j1zrqpwi75";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/flatui-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/96dc9a8b1f6e5cdd46fc94fc2979f2a1787f4d21/recipes/flatui-theme";
sha256 = "0s88xihw44ks4b07wcb9swr52f3l1ls0jn629mxvfkv4a6hn7rmz";
name = "flatui-theme";
};
@@ -20190,7 +20495,7 @@
flex-autopair = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "flex-autopair";
- version = "20120809.1418";
+ version = "20120809.718";
src = fetchFromGitHub {
owner = "uk-ar";
repo = "flex-autopair";
@@ -20198,7 +20503,7 @@
sha256 = "187ah7yhmr3ckw23bf4fivx8v79yj0zmilrkjj7k6l198w8wmvql";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/flex-autopair";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/2d8ffa6a578b4bc22b7146ab80769ce7ddee5eac/recipes/flex-autopair";
sha256 = "0hphrqwryp3c0wwyf2f16hj8nc7jlg2dkvljgm2rdvmh2kgj3007";
name = "flex-autopair";
};
@@ -20211,14 +20516,14 @@
flex-isearch = callPackage ({ fetchhg, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "flex-isearch";
- version = "20130509.3";
+ version = "20130508.1703";
src = fetchhg {
url = "https://bitbucket.com/jpkotta/flex-isearch";
rev = "bb9c3502057d";
sha256 = "02z1w8z9fqdshyyf03c26zjwhmmclb02caw3b6nhhk4w1rkbh6is";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/flex-isearch";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/5b7972602399f9df9139cff177e38653bb0f43ed/recipes/flex-isearch";
sha256 = "1msgrimi2a0xm5h23p78jflh00bl5bx44xpc3sc9pspznjv1d0k3";
name = "flex-isearch";
};
@@ -20231,7 +20536,7 @@
flim = callPackage ({ apel, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "flim";
- version = "20160312.37";
+ version = "20160311.1737";
src = fetchFromGitHub {
owner = "wanderlust";
repo = "flim";
@@ -20239,7 +20544,7 @@
sha256 = "10sayqyf5jwmz7h9gpp4657v6v8vmcd8ahzbshwwqbakjqwnn08c";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/flim";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/94faf56ff9bf94f51ef5253e4c4244faec5eecfd/recipes/flim";
sha256 = "1gkaq549svflx8qyqrk0ccb52b7wp17wmd5jgzkw1109bpc4k6jc";
name = "flim";
};
@@ -20251,13 +20556,13 @@
}) {};
fliptext = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild {
pname = "fliptext";
- version = "20131114.318";
+ version = "20131113.2018";
src = fetchurl {
url = "https://www.emacswiki.org/emacs/download/fliptext.el";
sha256 = "1viigj04kla20dk46xm913jzqrmx05rpjrpghnc0ylbqppqdwzpw";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/fliptext";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/093046dfb39148d56681e9c8be8cccff23dd19cb/recipes/fliptext";
sha256 = "0cmyan9hckjsv5wk1mvjzif9nrc07frhzkhhl6pkgm0j0f1q30ji";
name = "fliptext";
};
@@ -20270,15 +20575,15 @@
floobits = callPackage ({ fetchFromGitHub, fetchurl, highlight, json ? null, lib, melpaBuild }:
melpaBuild {
pname = "floobits";
- version = "20160518.52";
+ version = "20160621.1522";
src = fetchFromGitHub {
owner = "Floobits";
repo = "floobits-emacs";
- rev = "052cce8506b5cbb8f0281442af8624d5847c7157";
- sha256 = "0acgyxl4kpfld6h6j54415ac8crk7byfs5lcysil9s5l3qrxjl3h";
+ rev = "6fea6eb2a1841d163acdeb5d9d59e51a5d7f61c4";
+ sha256 = "1n6x8n3fzxfwgpkvvnbxv6w3b08zzmx95pwv9yhqxl5b4pwyl31i";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/floobits";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/95c859e8440049579630b4c2bcc31e7eaa13b1f1/recipes/floobits";
sha256 = "1jpk0q4mkf9ag1rqyai993nz5ngzfvxq9n9avmaaq59gkk9cjraf";
name = "floobits";
};
@@ -20291,7 +20596,7 @@
flx = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "flx";
- version = "20151030.1912";
+ version = "20151030.1312";
src = fetchFromGitHub {
owner = "lewang";
repo = "flx";
@@ -20299,7 +20604,7 @@
sha256 = "0csflhd69vz3wwq5j7872xx2l62hwiz1f5nggl5nz7h7v9anjx3r";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/flx";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/63bdf3ae2f861e333a8f9c5997f5cc52869d3b3a/recipes/flx";
sha256 = "04plfhrnw7jx2jaxhbhw4ypydfcb8v0x2m5hyacvrli1mca2iyf9";
name = "flx";
};
@@ -20312,7 +20617,7 @@
flx-ido = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, flx, lib, melpaBuild }:
melpaBuild {
pname = "flx-ido";
- version = "20151030.1912";
+ version = "20151030.1312";
src = fetchFromGitHub {
owner = "lewang";
repo = "flx";
@@ -20320,7 +20625,7 @@
sha256 = "0csflhd69vz3wwq5j7872xx2l62hwiz1f5nggl5nz7h7v9anjx3r";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/flx-ido";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/63bdf3ae2f861e333a8f9c5997f5cc52869d3b3a/recipes/flx-ido";
sha256 = "00wcwbvfjbcx8kyap7rl1b6nsgqdwjzlpv6al2cdpdd19rm1vgdc";
name = "flx-ido";
};
@@ -20333,7 +20638,7 @@
flx-isearch = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, flx, lib, melpaBuild }:
melpaBuild {
pname = "flx-isearch";
- version = "20160105.2117";
+ version = "20160105.1417";
src = fetchFromGitHub {
owner = "PythonNut";
repo = "flx-isearch";
@@ -20341,7 +20646,7 @@
sha256 = "1cmjw1zrb1nq9nx0d634ajli1di8x48k6s88zi2s2q0mbi28lzz1";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/flx-isearch";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/2cd1438cc0821b8ae1d01e2a3bc8f07ca8a79134/recipes/flx-isearch";
sha256 = "14cshv5xb57ch5g3m3hfhawnnabdnbacp4kx40d0pw6jxw677gqd";
name = "flx-isearch";
};
@@ -20354,15 +20659,15 @@
flycheck = callPackage ({ dash, emacs, fetchFromGitHub, fetchurl, let-alist, lib, melpaBuild, pkg-info, seq }:
melpaBuild {
pname = "flycheck";
- version = "20160604.1054";
+ version = "20160622.1152";
src = fetchFromGitHub {
owner = "flycheck";
repo = "flycheck";
- rev = "c794314868af3180c3f3f5d4312d952f5291f0b8";
- sha256 = "0ph9liakhpnrxy11ckb3w9p6d5q9xmmd3yiilqxlzzg1974z7gjm";
+ rev = "d6864b7478c355fdd11f56688b7cc98539206e29";
+ sha256 = "1i8cngnfgmkk6xw9d1nh89zpnhwi0577ayaiynv4r0bw5g7r48mk";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/flycheck";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/649f9c3576e81409ae396606798035173cc6669f/recipes/flycheck";
sha256 = "045k214dq8bmrai13da6gwdz97a2i998gggxqswqs4g52l1h6hvr";
name = "flycheck";
};
@@ -20375,7 +20680,7 @@
flycheck-apertium = callPackage ({ fetchFromGitHub, fetchurl, flycheck, lib, melpaBuild }:
melpaBuild {
pname = "flycheck-apertium";
- version = "20160406.1518";
+ version = "20160406.818";
src = fetchFromGitHub {
owner = "unhammer";
repo = "flycheck-apertium";
@@ -20383,7 +20688,7 @@
sha256 = "14idjjz6fhmq806mmncmqnr9bvcjks6spin8z6jb0gqcg1dbhm06";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/flycheck-apertium";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/7f6cec0d312f0e86e17829e6fd8f87acabc0174f/recipes/flycheck-apertium";
sha256 = "1cc15sljqs6gvb3wiw7n1wkd714qkvfpw6l1kg4lfx9r4jalcvw7";
name = "flycheck-apertium";
};
@@ -20396,7 +20701,7 @@
flycheck-ats2 = callPackage ({ emacs, fetchFromGitHub, fetchurl, flycheck, lib, melpaBuild }:
melpaBuild {
pname = "flycheck-ats2";
- version = "20151130.1507";
+ version = "20151130.807";
src = fetchFromGitHub {
owner = "drvink";
repo = "flycheck-ats2";
@@ -20404,7 +20709,7 @@
sha256 = "0fh5z68gnggm0qjb8ncmfngv195lbp1dxz9jbmdi418d47mlba9c";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/flycheck-ats2";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/2d3605bdc402e6b13f53910eafb7f1428a5f749f/recipes/flycheck-ats2";
sha256 = "0xm7zzz6hs5qnqkmv7hwxpvp3jjca57agx71sj0m12v0h53gbzhr";
name = "flycheck-ats2";
};
@@ -20414,10 +20719,31 @@
license = lib.licenses.free;
};
}) {};
+ flycheck-bashate = callPackage ({ emacs, fetchFromGitHub, fetchurl, flycheck, lib, melpaBuild }:
+ melpaBuild {
+ pname = "flycheck-bashate";
+ version = "20160629.2340";
+ src = fetchFromGitHub {
+ owner = "alexmurray";
+ repo = "flycheck-bashate";
+ rev = "d9780b73ee698d6bc001e617b187845cafa3292a";
+ sha256 = "1qhvrkhpjs214mc5f6gygwf5hx5gb2jcs46a4b34mqq29rn0j9kc";
+ };
+ recipeFile = fetchurl {
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/54fd062e4ad012d846260c96801d3415756ce981/recipes/flycheck-bashate";
+ sha256 = "1c8hf4893zb74g61afr02wqhmdaswxr3nwsnzzwmb8nrrygvfa8j";
+ name = "flycheck-bashate";
+ };
+ packageRequires = [ emacs flycheck ];
+ meta = {
+ homepage = "https://melpa.org/#/flycheck-bashate";
+ license = lib.licenses.free;
+ };
+ }) {};
flycheck-cask = callPackage ({ dash, emacs, fetchFromGitHub, fetchurl, flycheck, lib, melpaBuild }:
melpaBuild {
pname = "flycheck-cask";
- version = "20150920.1353";
+ version = "20150920.653";
src = fetchFromGitHub {
owner = "flycheck";
repo = "flycheck-cask";
@@ -20425,7 +20751,7 @@
sha256 = "0klnhq0zfn5zbkwl7y9kja7x49n1w6r1qbphk7a7v9svgm3h9s7n";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/flycheck-cask";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/43224eef52bb316102fea524ba87b0e9e43dc6e6/recipes/flycheck-cask";
sha256 = "1lq559nyhkpnagncj68h84i3cq85vhdikr534kj018n2zcilsyw7";
name = "flycheck-cask";
};
@@ -20438,7 +20764,7 @@
flycheck-checkbashisms = callPackage ({ emacs, fetchFromGitHub, fetchurl, flycheck, lib, melpaBuild }:
melpaBuild {
pname = "flycheck-checkbashisms";
- version = "20160224.1806";
+ version = "20160224.1106";
src = fetchFromGitHub {
owner = "Gnouc";
repo = "flycheck-checkbashisms";
@@ -20446,7 +20772,7 @@
sha256 = "1s2zq97d7ryif6rlbvriz36dh23wmwi67v4q6krl77dfzcs705b3";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/flycheck-checkbashisms";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/f5678ea5aef4dc8a517d6d9381a64f182645d344/recipes/flycheck-checkbashisms";
sha256 = "1rq0ymlr1dl39v0sfyjmdv4pq3q9116cz9wvgpvfgalq8759q5sz";
name = "flycheck-checkbashisms";
};
@@ -20459,7 +20785,7 @@
flycheck-clangcheck = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, flycheck, lib, melpaBuild, seq }:
melpaBuild {
pname = "flycheck-clangcheck";
- version = "20150712.910";
+ version = "20150712.210";
src = fetchFromGitHub {
owner = "kumar8600";
repo = "flycheck-clangcheck";
@@ -20467,7 +20793,7 @@
sha256 = "1ckzs32wzqpnw89rrw3l7i4gbyn25wagbadsc4mcrixml5nf0mck";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/flycheck-clangcheck";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/b42dd133e4fd5579dd1c6cdcbf733571bc890899/recipes/flycheck-clangcheck";
sha256 = "1316cj3ynl80j39ha0371ss7cqw5hcr3m8944pdacdzbmp2sak2m";
name = "flycheck-clangcheck";
};
@@ -20480,15 +20806,15 @@
flycheck-clojure = callPackage ({ cider, emacs, fetchFromGitHub, fetchurl, flycheck, let-alist, lib, melpaBuild }:
melpaBuild {
pname = "flycheck-clojure";
- version = "20160319.1558";
+ version = "20160319.958";
src = fetchFromGitHub {
owner = "clojure-emacs";
repo = "squiggly-clojure";
- rev = "c432f07dc8ba548043f3b02ecf0f23020e87ef04";
- sha256 = "04qyylw868mn7wvml8l23vxgca9pwq1hrv6xlcd3xqgn7102n3w2";
+ rev = "fc0f1473c85b5287c8a62c1eee86894c98fbb84c";
+ sha256 = "0dqnv7l82h09janakq2b3ncz3jj99418pb91w0gabvfylww3pm21";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/flycheck-clojure";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/c9c642a234f93ed4cf5edcf27a552a8916984946/recipes/flycheck-clojure";
sha256 = "1b20gcs6fvq9pm4nl2qwsf34sg6wxngdql921q2pyh5n1xsxhm28";
name = "flycheck-clojure";
};
@@ -20501,7 +20827,7 @@
flycheck-color-mode-line = callPackage ({ dash, emacs, fetchFromGitHub, fetchurl, flycheck, lib, melpaBuild }:
melpaBuild {
pname = "flycheck-color-mode-line";
- version = "20131126.638";
+ version = "20131125.2338";
src = fetchFromGitHub {
owner = "flycheck";
repo = "flycheck-color-mode-line";
@@ -20509,7 +20835,7 @@
sha256 = "11xc08xld758xx9myqjsiqz8vk3gh4d9c4yswswvky6mrx34c0y5";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/flycheck-color-mode-line";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/02b5b60b74581ff0d1815155223e0c6e94a851a1/recipes/flycheck-color-mode-line";
sha256 = "0hw19nsh5h2l8qbp7brqmml2fhs8a0x850vlvq3qfd7z248gvhrq";
name = "flycheck-color-mode-line";
};
@@ -20522,7 +20848,7 @@
flycheck-css-colorguard = callPackage ({ emacs, fetchFromGitHub, fetchurl, flycheck, lib, melpaBuild }:
melpaBuild {
pname = "flycheck-css-colorguard";
- version = "20151122.1047";
+ version = "20151122.347";
src = fetchFromGitHub {
owner = "Simplify";
repo = "flycheck-css-colorguard";
@@ -20530,7 +20856,7 @@
sha256 = "073vkjgcyqp8frsi05s6x8ml3ar6hwjmn2c7ryfab5b35kp9gmdi";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/flycheck-css-colorguard";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/7f413cc5c2080091491a986f69402b305abe4a7f/recipes/flycheck-css-colorguard";
sha256 = "1n56j5nicac94jl7kp8fbqxmd115vbhzklzgfz5jbib2ab8y60jc";
name = "flycheck-css-colorguard";
};
@@ -20543,7 +20869,7 @@
flycheck-cstyle = callPackage ({ emacs, fetchFromGitHub, fetchurl, flycheck, lib, melpaBuild }:
melpaBuild {
pname = "flycheck-cstyle";
- version = "20160321.8";
+ version = "20160320.1808";
src = fetchFromGitHub {
owner = "alexmurray";
repo = "flycheck-cstyle";
@@ -20551,7 +20877,7 @@
sha256 = "1fric65r33bgn2h1s1m3pxnm3d1gk2z4pwnj72in6p7glj3kg24w";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/flycheck-cstyle";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/5970f4f0967dc3a10dc9554a8f5f06b703872878/recipes/flycheck-cstyle";
sha256 = "0p3lzpcgwk4nkq1w0iq40njz8ll2h3vi9z5fbvv1ar4r80fqd909";
name = "flycheck-cstyle";
};
@@ -20564,7 +20890,7 @@
flycheck-cython = callPackage ({ fetchFromGitHub, fetchurl, flycheck, lib, melpaBuild }:
melpaBuild {
pname = "flycheck-cython";
- version = "20160327.2128";
+ version = "20160327.1428";
src = fetchFromGitHub {
owner = "lbolla";
repo = "emacs-flycheck-cython";
@@ -20572,7 +20898,7 @@
sha256 = "0994346iyp7143476i3y6pc5m1n6z7g1r6n1rldivsj0qr4gjh01";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/flycheck-cython";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/2d963eb1b8f8f863b37a96803b00d395e9d85e94/recipes/flycheck-cython";
sha256 = "1mbrwhpbs8in11mp79cnl4bd3m33qdgrvnbvi1mqvrsvz1ay28g4";
name = "flycheck-cython";
};
@@ -20585,7 +20911,7 @@
flycheck-d-unittest = callPackage ({ dash, fetchFromGitHub, fetchurl, flycheck, lib, melpaBuild }:
melpaBuild {
pname = "flycheck-d-unittest";
- version = "20160522.617";
+ version = "20160521.2317";
src = fetchFromGitHub {
owner = "flycheck";
repo = "flycheck-d-unittest";
@@ -20593,7 +20919,7 @@
sha256 = "0lrxyrvdkj88qh78jmamrnji770vjsr6h01agl7hvd4n2xvlxcym";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/flycheck-d-unittest";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/b86c666ee9b0620390a250dddd42b17cbec2409f/recipes/flycheck-d-unittest";
sha256 = "0n4m4f0zqcx966582af1nqff5sla7jcr0wrmgzzxnn97yjrlnzk2";
name = "flycheck-d-unittest";
};
@@ -20606,7 +20932,7 @@
flycheck-dedukti = callPackage ({ dedukti-mode, fetchFromGitHub, fetchurl, flycheck, lib, melpaBuild }:
melpaBuild {
pname = "flycheck-dedukti";
- version = "20150106.1551";
+ version = "20150106.851";
src = fetchFromGitHub {
owner = "rafoo";
repo = "flycheck-dedukti";
@@ -20614,7 +20940,7 @@
sha256 = "1hw875dirz041vzw1pxjpk5lr1zmrp2kp9m6pazs9j19d686hyn6";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/flycheck-dedukti";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/732832e88a65a8866fa3872ff5f29eb8a26438f2/recipes/flycheck-dedukti";
sha256 = "00nc18w4nsi6vicpbqqpr4xcdh48g95vnay3kirb2xp5hc2rw3x8";
name = "flycheck-dedukti";
};
@@ -20627,7 +20953,7 @@
flycheck-dialyzer = callPackage ({ fetchFromGitHub, fetchurl, flycheck, lib, melpaBuild }:
melpaBuild {
pname = "flycheck-dialyzer";
- version = "20160326.1530";
+ version = "20160326.930";
src = fetchFromGitHub {
owner = "lbolla";
repo = "emacs-flycheck-dialyzer";
@@ -20635,7 +20961,7 @@
sha256 = "1i5wm2r6rck6864a60mm6kv31vgvqnq49hi9apvhyywfn6sycwkf";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/flycheck-dialyzer";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/bc84fb9fabfac4c008fe0eecb0b59933bfbf95c6/recipes/flycheck-dialyzer";
sha256 = "0bn81yzijmnfg5xcnvcvxvqxz995iaafhgbfckgcal974s229kd2";
name = "flycheck-dialyzer";
};
@@ -20648,15 +20974,15 @@
flycheck-dmd-dub = callPackage ({ f, fetchFromGitHub, fetchurl, flycheck, lib, melpaBuild }:
melpaBuild {
pname = "flycheck-dmd-dub";
- version = "20160601.1909";
+ version = "20160609.214";
src = fetchFromGitHub {
owner = "atilaneves";
repo = "flycheck-dmd-dub";
- rev = "6d5c97d1632ede73d32b3c1541e32d31bddd23cb";
- sha256 = "1x4x3h27xalvzvzhjr5cz2jzhc4x0v1jggpdp23bdkwdpra80fgs";
+ rev = "030ebb45e7eef9e2bb41ccf3b9557ef2207c29b1";
+ sha256 = "1z4z53n8hivshyv15mn31d0hr6qs09xwlxm118a78zfd167xckwj";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/flycheck-dmd-dub";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/a812594901c1099283bdf51fbea1aa077cfc588d/recipes/flycheck-dmd-dub";
sha256 = "0pg3sf7h6xqv65yqclhlb7fx1mp2w0m3qk4vji6m438kxy6fhzqm";
name = "flycheck-dmd-dub";
};
@@ -20669,15 +20995,15 @@
flycheck-elixir = callPackage ({ fetchFromGitHub, fetchurl, flycheck, lib, melpaBuild }:
melpaBuild {
pname = "flycheck-elixir";
- version = "20160404.931";
+ version = "20160629.259";
src = fetchFromGitHub {
owner = "lbolla";
repo = "emacs-flycheck-elixir";
- rev = "96683d19c41b29933be69b2fb7100e2b85ac90fc";
- sha256 = "1aa7x25a70ldbm6rl0s1wa1ncd6p6z1a7f75lk5a3274ghq8jv8p";
+ rev = "05cbad6657dc02f527be061e1709a53abb46bd8f";
+ sha256 = "0pnm1v1m535r27br6h00ijiljjybkipvrvlrj1p9mbhwvvvmmwp6";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/flycheck-elixir";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/da2ab73ab1426f71ea2b2bea2b418941856b3454/recipes/flycheck-elixir";
sha256 = "0f78fai6q15smh9rvsliv8r0hh3kpwn1lz37yvqkkbx9vl7rlwld";
name = "flycheck-elixir";
};
@@ -20690,15 +21016,15 @@
flycheck-elm = callPackage ({ emacs, fetchFromGitHub, fetchurl, flycheck, lib, melpaBuild }:
melpaBuild {
pname = "flycheck-elm";
- version = "20151204.1624";
+ version = "20160612.1006";
src = fetchFromGitHub {
owner = "bsermons";
repo = "flycheck-elm";
- rev = "d1395ce80dcad5ed8931b4901471a8980fd3f2b8";
- sha256 = "08dlm3g2d8rl53hq0b4z7gp8529almlkyf69d3c8f9didmlhizk7";
+ rev = "21e777036afb6b8c61e53eef8241ef0367614b0d";
+ sha256 = "1qblbcx9lfi77i9zd8q7qpqcpkv11zvf146j3r41b20scpqnxvh9";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/flycheck-elm";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/78bdcdaa660beda29acecb51761b95d8664d28ac/recipes/flycheck-elm";
sha256 = "06dpv19wgbw48gbf701c77vw1dkpddx8056wpim3zbvwwfwk8ra4";
name = "flycheck-elm";
};
@@ -20711,15 +21037,15 @@
flycheck-flow = callPackage ({ fetchFromGitHub, fetchurl, flycheck, lib, melpaBuild }:
melpaBuild {
pname = "flycheck-flow";
- version = "20151218.1304";
+ version = "20160627.258";
src = fetchFromGitHub {
owner = "lbolla";
repo = "emacs-flycheck-flow";
- rev = "6a6307a3998531279feab742321192cfc0c6e90a";
- sha256 = "0lk7da7axn9fm0kzlzx10ir014rsdsycffi8jcy4biqllw6yi4dx";
+ rev = "9d0787c0ea6b17362c8255a3c8859ca76efd2242";
+ sha256 = "1j7dbjkhnswsifnv27qnfms5kgkb5mak0r02wj8vqfsvpg4fpcm2";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/flycheck-flow";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/4d18fb21d8ef9b33aa84bc26f5918e636c5771e5/recipes/flycheck-flow";
sha256 = "0p4vvk09vjgk98dwzr2qzldvij3v6af56pradssi6sm3shbqhkk3";
name = "flycheck-flow";
};
@@ -20732,7 +21058,7 @@
flycheck-ghcmod = callPackage ({ dash, fetchFromGitHub, fetchurl, flycheck, lib, melpaBuild }:
melpaBuild {
pname = "flycheck-ghcmod";
- version = "20150114.732";
+ version = "20150114.32";
src = fetchFromGitHub {
owner = "scturtle";
repo = "flycheck-ghcmod";
@@ -20740,7 +21066,7 @@
sha256 = "0q1m1f3vhw1wy0pa3njy55z28psznbw2xwmwk2v1p5c86n74ns8d";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/flycheck-ghcmod";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/b6ed620e038f361c41115430a1fc119a04cf4f20/recipes/flycheck-ghcmod";
sha256 = "0mqxg622lqnkb52a0wff7h8b0k6mm1k7fhkfi95fi5sahclja0rp";
name = "flycheck-ghcmod";
};
@@ -20753,7 +21079,7 @@
flycheck-gometalinter = callPackage ({ emacs, fetchFromGitHub, fetchurl, flycheck, lib, melpaBuild }:
melpaBuild {
pname = "flycheck-gometalinter";
- version = "20160302.405";
+ version = "20160301.2105";
src = fetchFromGitHub {
owner = "favadi";
repo = "flycheck-gometalinter";
@@ -20761,7 +21087,7 @@
sha256 = "0frgyj57mrggq5ib6xi71696m97ch0bw6cc208d2qbnb55sf4fgb";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/flycheck-gometalinter";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/8bfe9f2d030c04fb292297eb9226072bfea2ac64/recipes/flycheck-gometalinter";
sha256 = "1bnvj5kwgbh0dv989rsjcvmcij1ahwcz0vpr6a8f2p6wwvksw1h2";
name = "flycheck-gometalinter";
};
@@ -20774,7 +21100,7 @@
flycheck-google-cpplint = callPackage ({ fetchFromGitHub, fetchurl, flycheck, lib, melpaBuild }:
melpaBuild {
pname = "flycheck-google-cpplint";
- version = "20140806.1825";
+ version = "20140806.1125";
src = fetchFromGitHub {
owner = "flycheck";
repo = "flycheck-google-cpplint";
@@ -20782,7 +21108,7 @@
sha256 = "0l6sg83f6z8x2alnblpv03rj442sbnkkkcbf8i0agjmx3713a5yx";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/flycheck-google-cpplint";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/b12055ef47479de776e9a1d59a0c4d2422e824cf/recipes/flycheck-google-cpplint";
sha256 = "0llrvg6mhcsj5aascsndhbv99122zj32agxk1w6s8xn8ksk2i90b";
name = "flycheck-google-cpplint";
};
@@ -20795,7 +21121,7 @@
flycheck-haskell = callPackage ({ dash, emacs, fetchFromGitHub, fetchurl, flycheck, haskell-mode, let-alist, lib, melpaBuild, seq }:
melpaBuild {
pname = "flycheck-haskell";
- version = "20160524.1017";
+ version = "20160524.317";
src = fetchFromGitHub {
owner = "flycheck";
repo = "flycheck-haskell";
@@ -20803,7 +21129,7 @@
sha256 = "05a5hyl6avf09drq6wva8mmxbag41dqixaz6azifywa8p63w1mlk";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/flycheck-haskell";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/6ca601613788ae830655e148a222625035195f55/recipes/flycheck-haskell";
sha256 = "12lgirz3j6n5ns2ikq4n41z0d33qp1lb5lfz1q11qvpbpn9d0jn7";
name = "flycheck-haskell";
};
@@ -20816,7 +21142,7 @@
flycheck-hdevtools = callPackage ({ dash, fetchFromGitHub, fetchurl, flycheck, lib, melpaBuild }:
melpaBuild {
pname = "flycheck-hdevtools";
- version = "20160110.314";
+ version = "20160109.2014";
src = fetchFromGitHub {
owner = "flycheck";
repo = "flycheck-hdevtools";
@@ -20824,7 +21150,7 @@
sha256 = "1x61q0fqr1jbqs9kk59f565a02qjxh1gnp1aigys0yz6qnshvzbb";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/flycheck-hdevtools";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/9e210eb2405cc85dd1d03e9119d2249178950398/recipes/flycheck-hdevtools";
sha256 = "0ahvai1q4x59ryiyccvqvjisgqbaiahx4gk8ssaxhblhj0sqga93";
name = "flycheck-hdevtools";
};
@@ -20837,7 +21163,7 @@
flycheck-irony = callPackage ({ emacs, fetchFromGitHub, fetchurl, flycheck, irony, lib, melpaBuild }:
melpaBuild {
pname = "flycheck-irony";
- version = "20160317.2336";
+ version = "20160317.1736";
src = fetchFromGitHub {
owner = "Sarcasm";
repo = "flycheck-irony";
@@ -20845,7 +21171,7 @@
sha256 = "0qa5a8wzvzxwqql92ibc9s43k8sj3vwn7skz9hfr8av0skkhx996";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/flycheck-irony";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/1e367afce9a792c168ef1e7e20cc5903f7b570d8/recipes/flycheck-irony";
sha256 = "0qk814m5s7mjba659llml0gy1g3045w8l1g73w2pnm1pbpqdfn3z";
name = "flycheck-irony";
};
@@ -20858,7 +21184,7 @@
flycheck-ledger = callPackage ({ fetchFromGitHub, fetchurl, flycheck, lib, melpaBuild }:
melpaBuild {
pname = "flycheck-ledger";
- version = "20140605.2046";
+ version = "20140605.1346";
src = fetchFromGitHub {
owner = "purcell";
repo = "flycheck-ledger";
@@ -20866,7 +21192,7 @@
sha256 = "15cgqbl6n3nyqiizgs2zvcvfs6bcnjk3bj81lhhwrzizbjvap3rv";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/flycheck-ledger";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/dc715e6849aa5d6017e2478514c4a0d84c7ddbe5/recipes/flycheck-ledger";
sha256 = "0807pd2km4r60wgd6jakscbx63ab22d9kvf1cml0ad8wynsap7jl";
name = "flycheck-ledger";
};
@@ -20879,7 +21205,7 @@
flycheck-mercury = callPackage ({ dash, fetchFromGitHub, fetchurl, flycheck, lib, melpaBuild, s }:
melpaBuild {
pname = "flycheck-mercury";
- version = "20151123.834";
+ version = "20151123.134";
src = fetchFromGitHub {
owner = "flycheck";
repo = "flycheck-mercury";
@@ -20887,7 +21213,7 @@
sha256 = "0isqa6ybdd4166h3rdcg0b8pcxn00v8dav58xwfcj92nhzvs0qca";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/flycheck-mercury";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/a775d12d9b9b6f27a44aeffbbb18de46a9e1b532/recipes/flycheck-mercury";
sha256 = "1z2y6933f05yv9y2aapmn876jnsydh642zqid3j88bb9kqi67x0h";
name = "flycheck-mercury";
};
@@ -20897,10 +21223,31 @@
license = lib.licenses.free;
};
}) {};
+ flycheck-mix = callPackage ({ elixir-mode, fetchFromGitHub, fetchurl, flycheck, lib, melpaBuild }:
+ melpaBuild {
+ pname = "flycheck-mix";
+ version = "20160606.1529";
+ src = fetchFromGitHub {
+ owner = "tomekowal";
+ repo = "flycheck-mix";
+ rev = "c565ebb12a48fcd49cc65656d79295c3288fcb84";
+ sha256 = "1yncail979sfljmib7b1m9aw376xd4b76apz4d50hj83lrfy169c";
+ };
+ recipeFile = fetchurl {
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/fd2a4d71b7f4c0082b687a23fd367d55186625a9/recipes/flycheck-mix";
+ sha256 = "1wp8lp45lc519w3xsws2c91jlbfmc0pc8764kxsifk74akwcizfl";
+ name = "flycheck-mix";
+ };
+ packageRequires = [ elixir-mode flycheck ];
+ meta = {
+ homepage = "https://melpa.org/#/flycheck-mix";
+ license = lib.licenses.free;
+ };
+ }) {};
flycheck-mypy = callPackage ({ fetchFromGitHub, fetchurl, flycheck, lib, melpaBuild }:
melpaBuild {
pname = "flycheck-mypy";
- version = "20160220.2332";
+ version = "20160220.1632";
src = fetchFromGitHub {
owner = "lbolla";
repo = "emacs-flycheck-mypy";
@@ -20908,7 +21255,7 @@
sha256 = "01r2ycbayhsxh3dq4d3qky5s0gcv3fjlp8j08y8dgyl406pkzhdz";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/flycheck-mypy";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/b1f5ad8263ee33b8950ff68e39dca5b1f1748c1b/recipes/flycheck-mypy";
sha256 = "1w418jm6x3vcg2x31nzc8a3b8asx6gznl6m76ip8w98riz7vy02f";
name = "flycheck-mypy";
};
@@ -20921,7 +21268,7 @@
flycheck-nim = callPackage ({ dash, fetchFromGitHub, fetchurl, flycheck, lib, melpaBuild }:
melpaBuild {
pname = "flycheck-nim";
- version = "20150912.147";
+ version = "20150911.1847";
src = fetchFromGitHub {
owner = "ALSchwalm";
repo = "flycheck-nim";
@@ -20929,7 +21276,7 @@
sha256 = "06hs41l41hm08dv93wldd98hmnd3jqbg58pj5ymn15kgdsy1rirg";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/flycheck-nim";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/68747db46761f28aa2fdf13494d7cecc334cb604/recipes/flycheck-nim";
sha256 = "0w6f6998rqx8a3i4xhga7mrmvhxrm690wkqwfzspidid2z7v71az";
name = "flycheck-nim";
};
@@ -20942,7 +21289,7 @@
flycheck-ocaml = callPackage ({ emacs, fetchFromGitHub, fetchurl, flycheck, let-alist, lib, melpaBuild, merlin }:
melpaBuild {
pname = "flycheck-ocaml";
- version = "20151103.1112";
+ version = "20151103.412";
src = fetchFromGitHub {
owner = "flycheck";
repo = "flycheck-ocaml";
@@ -20950,7 +21297,7 @@
sha256 = "0fm8w7126vf04n76qhh33rzybvl1n7va2whbqzafbvmv2nny3v94";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/flycheck-ocaml";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/8ce9283eb1285953a2578eb7c4d280b4d98c801f/recipes/flycheck-ocaml";
sha256 = "1cv2bb66aql2kj1y1gsl4xji8yrzrq6rd8hxxs5vpfsk47052lf7";
name = "flycheck-ocaml";
};
@@ -20963,7 +21310,7 @@
flycheck-package = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, flycheck, lib, melpaBuild }:
melpaBuild {
pname = "flycheck-package";
- version = "20160502.1035";
+ version = "20160502.335";
src = fetchFromGitHub {
owner = "purcell";
repo = "flycheck-package";
@@ -20971,7 +21318,7 @@
sha256 = "1x5lk6fdai5jvq4hlcgb88ljjncwkq1lkqs8d3wkqwyc3kh3rwjg";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/flycheck-package";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/d17ec69c9f192625e74dfadf03b11d0d7dc575e7/recipes/flycheck-package";
sha256 = "0068kpia17rsgjdmzsjnw0n6x5z9jvfxggxlzkszvwsx73mvcs2d";
name = "flycheck-package";
};
@@ -20984,7 +21331,7 @@
flycheck-perl6 = callPackage ({ emacs, fetchFromGitHub, fetchurl, flycheck, lib, melpaBuild }:
melpaBuild {
pname = "flycheck-perl6";
- version = "20150415.332";
+ version = "20150414.2032";
src = fetchFromGitHub {
owner = "hinrik";
repo = "flycheck-perl6";
@@ -20992,7 +21339,7 @@
sha256 = "0ffas4alqhijvm8wl1p5nqjhnxki8gs6b5bxb4nsqwnma8qmlcx3";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/flycheck-perl6";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/2f6ecdb2ce6bc74a27dca01ab4942778e986ac8f/recipes/flycheck-perl6";
sha256 = "0czc0fqx7g543afzkbjyz4bhxfl4s3v5swn9xrkayv8cgk8acvp4";
name = "flycheck-perl6";
};
@@ -21005,15 +21352,15 @@
flycheck-pkg-config = callPackage ({ cl-lib ? null, dash, fetchFromGitHub, fetchurl, lib, melpaBuild, s }:
melpaBuild {
pname = "flycheck-pkg-config";
- version = "20160501.11";
+ version = "20160610.1535";
src = fetchFromGitHub {
owner = "Wilfred";
repo = "flycheck-pkg-config";
- rev = "ea79cac9ae66f003f15497f68b0411ab45edc86a";
- sha256 = "1fnk59mk4qrkaaig3nv2w45add82agjfm82a9rf0128znfipf02p";
+ rev = "6884b0636f4bfe5648d5f4e3db288b7643d91111";
+ sha256 = "1b3b240hlr5jkfzbj814hiblp32r6bahqs1zjcj045pb7cg2cxxm";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/flycheck-pkg-config";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/5b2e88f2f126c9ff8b4261d6adb4c0d8d3049f33/recipes/flycheck-pkg-config";
sha256 = "0w7h4fa4mv8377sdbkilqcw4b9qda98c1k01nxic7a8i3iyq02d6";
name = "flycheck-pkg-config";
};
@@ -21026,7 +21373,7 @@
flycheck-pony = callPackage ({ fetchFromGitHub, fetchurl, flycheck, lib, melpaBuild }:
melpaBuild {
pname = "flycheck-pony";
- version = "20160501.2317";
+ version = "20160501.1617";
src = fetchFromGitHub {
owner = "SeanTAllen";
repo = "flycheck-pony";
@@ -21034,7 +21381,7 @@
sha256 = "06wij2g3prj5qzd8csc6v0phww7prdsf8hqmli6kil954lyxxaxl";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/flycheck-pony";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/e2bcb82f4ddb92243058c9ab1a67d4f7ef87b155/recipes/flycheck-pony";
sha256 = "18w1d7y3jsmsc4wg0909p72cnvbxzsmnirmrahhwgsb963fij5qk";
name = "flycheck-pony";
};
@@ -21047,7 +21394,7 @@
flycheck-pos-tip = callPackage ({ dash, fetchFromGitHub, fetchurl, flycheck, lib, melpaBuild, pos-tip }:
melpaBuild {
pname = "flycheck-pos-tip";
- version = "20160323.929";
+ version = "20160323.329";
src = fetchFromGitHub {
owner = "flycheck";
repo = "flycheck-pos-tip";
@@ -21055,7 +21402,7 @@
sha256 = "0wca22jp0alknmllfl22j89aasiwms6ipqyv1pnvbrgmrbzcmlp7";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/flycheck-pos-tip";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/698843f75e17b9e6160487c0153f9d6b4af288f6/recipes/flycheck-pos-tip";
sha256 = "09i2jmwj8b915fhyczwdb1j7c551ggbva33avis77ga1s9v3nsf9";
name = "flycheck-pos-tip";
};
@@ -21068,7 +21415,7 @@
flycheck-protobuf = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, protobuf-mode }:
melpaBuild {
pname = "flycheck-protobuf";
- version = "20160211.1600";
+ version = "20160211.900";
src = fetchFromGitHub {
owner = "edvorg";
repo = "flycheck-protobuf";
@@ -21076,7 +21423,7 @@
sha256 = "1adcijysw4v8rrxzswi8zhd6w99iaqq7asps0jp21gr9nqci8vdj";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/flycheck-protobuf";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/8f8d8e4d849400823d738c198665d46fa24d7661/recipes/flycheck-protobuf";
sha256 = "0cn5b9pr9i9hrix7dbrylwb2812al8ipbpqvlb9bm2f8hc9kgsmc";
name = "flycheck-protobuf";
};
@@ -21089,15 +21436,15 @@
flycheck-purescript = callPackage ({ dash, emacs, fetchFromGitHub, fetchurl, flycheck, let-alist, lib, melpaBuild, seq }:
melpaBuild {
pname = "flycheck-purescript";
- version = "20160513.445";
+ version = "20160613.1515";
src = fetchFromGitHub {
owner = "emacs-pe";
repo = "flycheck-purescript";
- rev = "8cb8f736d9f4b5f787f8017f9941772de945bf1f";
- sha256 = "10cjgbxxc26ykm0ww4b6ykjbx89c12mjrmqmny6riq92pfrnl4y3";
+ rev = "a7e911f6479c66832e52a619cd27cc26435887a4";
+ sha256 = "0d56x6wmb61ldf30pgyvl0kyfvgkjibdyy9r2281qfavgr0qszls";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/flycheck-purescript";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/a315aad238fa223058a495e1ca8c71da6447024c/recipes/flycheck-purescript";
sha256 = "05j1iscyg9khw0zq63676zrisragklxp48hmbc7vrbmbiy964lwd";
name = "flycheck-purescript";
};
@@ -21110,7 +21457,7 @@
flycheck-pyflakes = callPackage ({ fetchFromGitHub, fetchurl, flycheck, lib, melpaBuild }:
melpaBuild {
pname = "flycheck-pyflakes";
- version = "20140701.21";
+ version = "20140630.1721";
src = fetchFromGitHub {
owner = "Wilfred";
repo = "flycheck-pyflakes";
@@ -21118,7 +21465,7 @@
sha256 = "16albss527dq4ncpiy8p326fib038qc6wjbh985lw2p1f9babswa";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/flycheck-pyflakes";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/05e6f3041151006e44f91e5bcbaa7be3750fb403/recipes/flycheck-pyflakes";
sha256 = "186h5ky48i1xmjbvvhn1i0rzhsy8bgdv1d8f7rlr2z4brb52f9c1";
name = "flycheck-pyflakes";
};
@@ -21128,22 +21475,22 @@
license = lib.licenses.free;
};
}) {};
- flycheck-rust = callPackage ({ dash, emacs, fetchFromGitHub, fetchurl, flycheck, lib, melpaBuild, seq }:
+ flycheck-rust = callPackage ({ dash, emacs, fetchFromGitHub, fetchurl, flycheck, let-alist, lib, melpaBuild, seq }:
melpaBuild {
pname = "flycheck-rust";
- version = "20160511.2250";
+ version = "20160614.1330";
src = fetchFromGitHub {
owner = "flycheck";
repo = "flycheck-rust";
- rev = "a8f76ed51c97a4fef6bc558da18be744d18cd69e";
- sha256 = "136rwl2dm686v2a9s7wg5yppr0is1vx5q4mvah030m9xs9r66jkp";
+ rev = "cbcdf416d8e0aab8c6208cbb758c30a6d6063f9f";
+ sha256 = "1d8q99inzwf2vdzvyv19kps1hfscygmxhgink5hp5zpxc4hbpx09";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/flycheck-rust";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/68d8cdf3d225b13ebbbe5ce81a01366f33266aed/recipes/flycheck-rust";
sha256 = "1k0n0y6lbp71v4465dwq7864vp1qqyx7zjz0kssszcpx5gl1596w";
name = "flycheck-rust";
};
- packageRequires = [ dash emacs flycheck seq ];
+ packageRequires = [ dash emacs flycheck let-alist seq ];
meta = {
homepage = "https://melpa.org/#/flycheck-rust";
license = lib.licenses.free;
@@ -21152,7 +21499,7 @@
flycheck-stack = callPackage ({ fetchFromGitHub, fetchurl, flycheck, haskell-mode, lib, melpaBuild }:
melpaBuild {
pname = "flycheck-stack";
- version = "20160520.1144";
+ version = "20160520.444";
src = fetchFromGitHub {
owner = "chrisdone";
repo = "flycheck-stack";
@@ -21160,7 +21507,7 @@
sha256 = "139q43ldvymfxns8zv7gxasn3sg0rn4i9yz08wgk50psg5zq5mjr";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/flycheck-stack";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/b77f55989d11d1efacbad0fd3876dd27006f2679/recipes/flycheck-stack";
sha256 = "1r9zppqmp1i5i06jhkrgvwy1p3yc8kmcvgibricydqsij26lhpmf";
name = "flycheck-stack";
};
@@ -21173,7 +21520,7 @@
flycheck-status-emoji = callPackage ({ emacs, fetchFromGitHub, fetchurl, flycheck, let-alist, lib, melpaBuild }:
melpaBuild {
pname = "flycheck-status-emoji";
- version = "20160207.2351";
+ version = "20160207.1651";
src = fetchFromGitHub {
owner = "liblit";
repo = "flycheck-status-emoji";
@@ -21181,7 +21528,7 @@
sha256 = "0v7d0yijqn3mhgjwqiv1rsdhw2ay6ffbn8i45x0dlp960v7k2k8f";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/flycheck-status-emoji";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/5abd6aaa8d2bf55ae75cd217820763531f91958b/recipes/flycheck-status-emoji";
sha256 = "0p42424b1fsmfcjyl252vhblppmpjwd6br2yqh10fi60wmprvn2p";
name = "flycheck-status-emoji";
};
@@ -21194,15 +21541,15 @@
flycheck-tip = callPackage ({ emacs, fetchFromGitHub, fetchurl, flycheck, lib, melpaBuild, popup }:
melpaBuild {
pname = "flycheck-tip";
- version = "20160319.234";
+ version = "20160622.2106";
src = fetchFromGitHub {
owner = "yuutayamada";
repo = "flycheck-tip";
- rev = "302f19a3e8df71ddd30c74fa46836443395667b0";
- sha256 = "0lrgww53xzz2hnc8c83hqxczzfm1bvixfswhsav4i8aakk3idjxi";
+ rev = "2e8ec9818f25c57516c48612f8b0963df177123d";
+ sha256 = "0dblxsny6immyg9l1mraahqipbbybg3drny87gl5vsvqpd94g4px";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/flycheck-tip";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/024f1e588e94014734fa252ee7bdb00b4991ede9/recipes/flycheck-tip";
sha256 = "0zab1zknrnsw5xh5pwzzcpz7p40bbywkf9zx99sgsd6b5j1jz656";
name = "flycheck-tip";
};
@@ -21215,15 +21562,15 @@
flycheck-ycmd = callPackage ({ dash, emacs, fetchFromGitHub, fetchurl, flycheck, let-alist, lib, melpaBuild, ycmd }:
melpaBuild {
pname = "flycheck-ycmd";
- version = "20160320.1224";
+ version = "20160320.624";
src = fetchFromGitHub {
owner = "abingham";
repo = "emacs-ycmd";
- rev = "69ef8e615ae64b49e6955adfafd12037df01cd9f";
- sha256 = "18v546yq65sf75a46k7slqh5dz12ifh30linm0m9gv65yrjpv02j";
+ rev = "a9cb3a6893cff7059058f25f06e75d38584084f1";
+ sha256 = "03vfg56qmj68y702c94p914fqrx68szykj8nm12d26p0rjnky2b8";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/flycheck-ycmd";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/332e5585963c04112a55894fe7151c380930b17c/recipes/flycheck-ycmd";
sha256 = "0m99ssynrqxgzf32d35n17iqyh1lyc6948inxpnwgcb98rfamchv";
name = "flycheck-ycmd";
};
@@ -21236,7 +21583,7 @@
flymake-coffee = callPackage ({ fetchFromGitHub, fetchurl, flymake-easy, lib, melpaBuild }:
melpaBuild {
pname = "flymake-coffee";
- version = "20140809.1224";
+ version = "20140809.524";
src = fetchFromGitHub {
owner = "purcell";
repo = "flymake-coffee";
@@ -21244,7 +21591,7 @@
sha256 = "10i0rbvk6vyifgbgskdyspmw9q64x99fzi8i1h8bgv58xhfx6pm7";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/flymake-coffee";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/cae2ac3513e371a256be0f1a7468e38e686c2487/recipes/flymake-coffee";
sha256 = "1aig1d4fgjdg31vrg8k43z5hbqiydgfvxi45p1695s3kbdm8pr2d";
name = "flymake-coffee";
};
@@ -21257,7 +21604,7 @@
flymake-cppcheck = callPackage ({ fetchFromGitHub, fetchurl, flymake-easy, lib, melpaBuild }:
melpaBuild {
pname = "flymake-cppcheck";
- version = "20140415.1457";
+ version = "20140415.757";
src = fetchFromGitHub {
owner = "senda-akiha";
repo = "flymake-cppcheck";
@@ -21265,7 +21612,7 @@
sha256 = "1dlxn8hhz3gfrhvkwhlxjmby6zc0g8yy9n9j9dn8c4cbi2fhyx5m";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/flymake-cppcheck";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/2a83d56c6e150de5d4fdbd89f271f18e5304afd8/recipes/flymake-cppcheck";
sha256 = "11brzgq2zl32a8a2dgj2imsldjqaqvxwk2jypf4bmfwa3mkcqh3d";
name = "flymake-cppcheck";
};
@@ -21278,7 +21625,7 @@
flymake-css = callPackage ({ fetchFromGitHub, fetchurl, flymake-easy, lib, melpaBuild }:
melpaBuild {
pname = "flymake-css";
- version = "20121104.2004";
+ version = "20121104.1304";
src = fetchFromGitHub {
owner = "purcell";
repo = "flymake-css";
@@ -21286,7 +21633,7 @@
sha256 = "00cnz3snhs44aknq6wmf19hq9bzb5pj0hvfzz93l6n7ngd8vvpzy";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/flymake-css";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/cae2ac3513e371a256be0f1a7468e38e686c2487/recipes/flymake-css";
sha256 = "0kqm3wn9symqc9ivnh11gqgq8ql2bhpqvxfm86d8vwm082hd92c5";
name = "flymake-css";
};
@@ -21298,13 +21645,13 @@
}) {};
flymake-cursor = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild {
pname = "flymake-cursor";
- version = "20130822.1232";
+ version = "20130822.532";
src = fetchurl {
url = "https://www.emacswiki.org/emacs/download/flymake-cursor.el";
sha256 = "10cpzrd588ya52blghxss5zkn6x8hc7bx1h0qbcdlybbmkjgpkxr";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/flymake-cursor";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/4327b4dd464ebb00c2acdd496274dedf912cdf92/recipes/flymake-cursor";
sha256 = "1s065w0z3sfv3d348w4zhlw96xf3j28bcz14sl46963mj2dm90lr";
name = "flymake-cursor";
};
@@ -21317,7 +21664,7 @@
flymake-easy = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "flymake-easy";
- version = "20140818.955";
+ version = "20140818.255";
src = fetchFromGitHub {
owner = "purcell";
repo = "flymake-easy";
@@ -21325,7 +21672,7 @@
sha256 = "1mylcsklnv3q27q1gvf7wrila39rmxab1ypmvjh5p56d91y6pszc";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/flymake-easy";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/bd115612b61895f98b0659e9edc1e590967b6337/recipes/flymake-easy";
sha256 = "19p6s9fllgvs35v167xf624k5dn16l9fnvaqcj9ks162gl9vymn7";
name = "flymake-easy";
};
@@ -21338,7 +21685,7 @@
flymake-elixir = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "flymake-elixir";
- version = "20130810.1617";
+ version = "20130810.917";
src = fetchFromGitHub {
owner = "syl20bnr";
repo = "flymake-elixir";
@@ -21346,7 +21693,7 @@
sha256 = "04w6g4wixrpfidxbk2bwazhvf0cx3c2v2mxnycqqlqkg0m0sb0fn";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/flymake-elixir";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/05dae578f0dd6b5185f666431b3f36aad3aeffa1/recipes/flymake-elixir";
sha256 = "15r3m58hnc75l3j02xdr8yg25fbn2sbz1295ac44widzis82m792";
name = "flymake-elixir";
};
@@ -21359,7 +21706,7 @@
flymake-gjshint = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "flymake-gjshint";
- version = "20130327.1332";
+ version = "20130327.732";
src = fetchFromGitHub {
owner = "yasuyk";
repo = "flymake-gjshint-el";
@@ -21367,7 +21714,7 @@
sha256 = "14kbqyw4v1c51dx7pfgqbn8x4j8j3rgyyq2fa9klqzxpldcskl24";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/flymake-gjshint";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/b4673825b15519e9eb2204ade5cc045751771c52/recipes/flymake-gjshint";
sha256 = "19jcd5z4883z3fzlrdn4fzmsvn16f4hfnhgw4vbs5b0ma6a8ka44";
name = "flymake-gjshint";
};
@@ -21380,7 +21727,7 @@
flymake-go = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "flymake-go";
- version = "20150714.933";
+ version = "20150714.233";
src = fetchFromGitHub {
owner = "robert-zaremba";
repo = "flymake-go";
@@ -21388,7 +21735,7 @@
sha256 = "03gh0y988pksghmmvb5av2vnlbcsncafvn4nwihsis0bhys8k28q";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/flymake-go";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/b42b8b34388803439c249f16fdf14257ef182ed6/recipes/flymake-go";
sha256 = "030m67d8g60ljm7ny3jh4vwj3cshypsklgbjpcvh32y109ga1hy1";
name = "flymake-go";
};
@@ -21401,7 +21748,7 @@
flymake-google-cpplint = callPackage ({ fetchFromGitHub, fetchurl, flymake-easy, lib, melpaBuild }:
melpaBuild {
pname = "flymake-google-cpplint";
- version = "20140205.1425";
+ version = "20140205.725";
src = fetchFromGitHub {
owner = "senda-akiha";
repo = "flymake-google-cpplint";
@@ -21409,7 +21756,7 @@
sha256 = "0zldhlvxmk0xcjmj4ns48pp4h3bvijrzs1md69ya7m3dmsbayfrc";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/flymake-google-cpplint";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/01f8e5c2b63e80f0411860fde38bf694df3bfc8f/recipes/flymake-google-cpplint";
sha256 = "0q7v70xbprh03f1yabq216q4q82a58s2c1ykr6ig49cg1jdgzkf3";
name = "flymake-google-cpplint";
};
@@ -21422,7 +21769,7 @@
flymake-haml = callPackage ({ fetchFromGitHub, fetchurl, flymake-easy, lib, melpaBuild }:
melpaBuild {
pname = "flymake-haml";
- version = "20130324.1151";
+ version = "20130324.551";
src = fetchFromGitHub {
owner = "purcell";
repo = "flymake-haml";
@@ -21430,7 +21777,7 @@
sha256 = "08rcsg76qdq2l6z8q339yw770kv1q657ywqvq6a20pxxz2158a8l";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/flymake-haml";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/cae2ac3513e371a256be0f1a7468e38e686c2487/recipes/flymake-haml";
sha256 = "0dmdhh12h4xrx6mc0qrwavngk2sx0l4pfqkjjyavabsgcs9wlgp1";
name = "flymake-haml";
};
@@ -21443,7 +21790,7 @@
flymake-haskell-multi = callPackage ({ fetchFromGitHub, fetchurl, flymake-easy, lib, melpaBuild }:
melpaBuild {
pname = "flymake-haskell-multi";
- version = "20130620.1322";
+ version = "20130620.622";
src = fetchFromGitHub {
owner = "purcell";
repo = "flymake-haskell-multi";
@@ -21451,7 +21798,7 @@
sha256 = "0hwcgas83wwhk0szwgw7abf70400knb8dfabknwv0qrcsk4gqffd";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/flymake-haskell-multi";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/e879eca5eb11b2ae77ee2cb8d8150d85e9e93ebd/recipes/flymake-haskell-multi";
sha256 = "0cyzmmghwkkv6020s6n436lwymi6dr49i7gkci5n0hw5pdywcaij";
name = "flymake-haskell-multi";
};
@@ -21464,7 +21811,7 @@
flymake-hlint = callPackage ({ fetchFromGitHub, fetchurl, flymake-easy, lib, melpaBuild }:
melpaBuild {
pname = "flymake-hlint";
- version = "20130309.1045";
+ version = "20130309.345";
src = fetchFromGitHub {
owner = "purcell";
repo = "flymake-hlint";
@@ -21472,7 +21819,7 @@
sha256 = "003fdrgxlyhs595ndcdzhmdkcpsf9bpw53hrlrrrh07qlnqxwrvp";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/flymake-hlint";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/17820f32d46e845cc44b237d0bfd5c2d898721de/recipes/flymake-hlint";
sha256 = "0wq1ijhn3ypy31yk8jywl5hnz0r0vlhcxjyznzccwqbdc5vf7b2x";
name = "flymake-hlint";
};
@@ -21485,7 +21832,7 @@
flymake-jshint = callPackage ({ fetchFromGitHub, fetchurl, flymake-easy, lib, melpaBuild }:
melpaBuild {
pname = "flymake-jshint";
- version = "20140319.2300";
+ version = "20140319.1700";
src = fetchFromGitHub {
owner = "Wilfred";
repo = "flymake-jshint.el";
@@ -21493,7 +21840,7 @@
sha256 = "0ywm9fpb7d7ry2fly8719fa41q97yj9za3phqhv6j1chzaxvcv3a";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/flymake-jshint";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/144511ce3378b468751b1ee627b77a2d22fe8dfc/recipes/flymake-jshint";
sha256 = "0j4djylz6mrq14qmbm35k3gvvsw6i9qc4gd9ma4fykiqzkdjsg7j";
name = "flymake-jshint";
};
@@ -21506,7 +21853,7 @@
flymake-jslint = callPackage ({ fetchFromGitHub, fetchurl, flymake-easy, lib, melpaBuild }:
melpaBuild {
pname = "flymake-jslint";
- version = "20130613.1102";
+ version = "20130613.402";
src = fetchFromGitHub {
owner = "purcell";
repo = "flymake-jslint";
@@ -21514,7 +21861,7 @@
sha256 = "0y01albwwcnhj4pnpvcry0zw7z2g9py9q2p3sw5zhgw3g0v5p9ls";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/flymake-jslint";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/cae2ac3513e371a256be0f1a7468e38e686c2487/recipes/flymake-jslint";
sha256 = "1cq8fni4p0qhigx0qh34ypmcsbnilra1ixgnrn9mgg8x3cvcm4cm";
name = "flymake-jslint";
};
@@ -21527,7 +21874,7 @@
flymake-json = callPackage ({ fetchFromGitHub, fetchurl, flymake-easy, lib, melpaBuild }:
melpaBuild {
pname = "flymake-json";
- version = "20130424.857";
+ version = "20130424.157";
src = fetchFromGitHub {
owner = "purcell";
repo = "flymake-json";
@@ -21535,7 +21882,7 @@
sha256 = "1qn15pr7c07fmki484z5xpqyn8546qb5dr9gcp5n1172wnh2a534";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/flymake-json";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/acb0a4d29159aa6d74f754911f63152dac3425bd/recipes/flymake-json";
sha256 = "1p5kajiycpqy2id664bs0fb1mbf73a43qqfdi4c57n6j9x7fxp4d";
name = "flymake-json";
};
@@ -21548,7 +21895,7 @@
flymake-less = callPackage ({ fetchFromGitHub, fetchurl, flymake-easy, less-css-mode, lib, melpaBuild }:
melpaBuild {
pname = "flymake-less";
- version = "20151111.838";
+ version = "20151111.138";
src = fetchFromGitHub {
owner = "purcell";
repo = "flymake-less";
@@ -21556,7 +21903,7 @@
sha256 = "0ggi8a4j4glpsar0sqg8q06rscajjaziis5ann31wphx88rc5wd7";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/flymake-less";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/6d4eae8b7b7d81ebf4d85f38fc3a17b4bc918318/recipes/flymake-less";
sha256 = "05k5daphxy94164c73ia7f4l1gv2cmlw8xzs8xnddg7ly22gjhi0";
name = "flymake-less";
};
@@ -21569,7 +21916,7 @@
flymake-lua = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "flymake-lua";
- version = "20140310.1030";
+ version = "20140310.430";
src = fetchFromGitHub {
owner = "sroccaserra";
repo = "emacs";
@@ -21577,7 +21924,7 @@
sha256 = "1fz7kywp1y2nhp50b2v961wz604sw1gzqcid4k8igz9aii3ygxcv";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/flymake-lua";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/eece02633c870db4aacd7b0cd2b7f2424fa3f192/recipes/flymake-lua";
sha256 = "0pa66ymhazcfgd9jmxizq5w2sgj008hph42wsa9ljr2rina1gai6";
name = "flymake-lua";
};
@@ -21590,7 +21937,7 @@
flymake-perlcritic = callPackage ({ fetchFromGitHub, fetchurl, flymake ? null, lib, melpaBuild }:
melpaBuild {
pname = "flymake-perlcritic";
- version = "20120328.1014";
+ version = "20120328.314";
src = fetchFromGitHub {
owner = "illusori";
repo = "emacs-flymake-perlcritic";
@@ -21598,7 +21945,7 @@
sha256 = "1f4l2r4gp03s18255jawc7s5abpjjrw54937wzygmvzvqvmaiikj";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/flymake-perlcritic";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/ca7bf43ef8893bf04e9658390e306ef69e80a156/recipes/flymake-perlcritic";
sha256 = "0hibnh463wzhvpix7gygpgs04gi6salwjrsjc6d43lxlsn3y1im8";
name = "flymake-perlcritic";
};
@@ -21611,7 +21958,7 @@
flymake-php = callPackage ({ fetchFromGitHub, fetchurl, flymake-easy, lib, melpaBuild }:
melpaBuild {
pname = "flymake-php";
- version = "20121104.2002";
+ version = "20121104.1302";
src = fetchFromGitHub {
owner = "purcell";
repo = "flymake-php";
@@ -21619,7 +21966,7 @@
sha256 = "09mibjdji5mf3qvngspv1zmik1zd9jwp4mb4c1w4256202359sf4";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/flymake-php";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/cae2ac3513e371a256be0f1a7468e38e686c2487/recipes/flymake-php";
sha256 = "12ds2l5kvs7fz38syp4amasbjkpqd36rlpajnb3xxll0hbk6vffk";
name = "flymake-php";
};
@@ -21632,7 +21979,7 @@
flymake-phpcs = callPackage ({ fetchFromGitHub, fetchurl, flymake-easy, lib, melpaBuild }:
melpaBuild {
pname = "flymake-phpcs";
- version = "20140713.831";
+ version = "20140713.131";
src = fetchFromGitHub {
owner = "senda-akiha";
repo = "flymake-phpcs";
@@ -21640,7 +21987,7 @@
sha256 = "140rlp6m0aqibwa0bhv8w6l3giziybqdw7x271nq8f3r60ch13bi";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/flymake-phpcs";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/6e4d444198f593cfb03c7ca84f3e90db13ef5a01/recipes/flymake-phpcs";
sha256 = "0zzxi3c203fiw6jp1ar9bb9f28x2lg23bczgy8n5cicrq59jfsn9";
name = "flymake-phpcs";
};
@@ -21653,7 +22000,7 @@
flymake-puppet = callPackage ({ fetchFromGitHub, fetchurl, flymake-easy, lib, melpaBuild }:
melpaBuild {
pname = "flymake-puppet";
- version = "20141007.355";
+ version = "20141006.2055";
src = fetchFromGitHub {
owner = "benprew";
repo = "flymake-puppet";
@@ -21661,7 +22008,7 @@
sha256 = "1r3yjqxig2j7l50l787qsi96mkvjcgqll9vb4ci51j7b43d53c5m";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/flymake-puppet";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/302dbe34e7949da9c65e9c7bf2ab924db91b968f/recipes/flymake-puppet";
sha256 = "1izq6s33p74dy4wzfnjii8wjs723bm5ggl0w6hkvzgbmyjc01hxv";
name = "flymake-puppet";
};
@@ -21674,7 +22021,7 @@
flymake-python-pyflakes = callPackage ({ fetchFromGitHub, fetchurl, flymake-easy, lib, melpaBuild }:
melpaBuild {
pname = "flymake-python-pyflakes";
- version = "20131127.906";
+ version = "20131127.206";
src = fetchFromGitHub {
owner = "purcell";
repo = "flymake-python-pyflakes";
@@ -21682,7 +22029,7 @@
sha256 = "1aijapvpw4skfhfmz09v5kpaxay6b0bp77bbjkrvgyizsqdd39vp";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/flymake-python-pyflakes";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/49091c0eca4158b80269b6ff5f7f3fc8e981420b/recipes/flymake-python-pyflakes";
sha256 = "0asbjxv03zkbcjayanv13qzbv4z7b6fi0z1j6yv7fl6q9mgvm497";
name = "flymake-python-pyflakes";
};
@@ -21695,7 +22042,7 @@
flymake-ruby = callPackage ({ fetchFromGitHub, fetchurl, flymake-easy, lib, melpaBuild }:
melpaBuild {
pname = "flymake-ruby";
- version = "20121104.1959";
+ version = "20121104.1259";
src = fetchFromGitHub {
owner = "purcell";
repo = "flymake-ruby";
@@ -21703,7 +22050,7 @@
sha256 = "13yk9cncp3zw6d7zkgdpgprpw6wrirk2gxgjvkr15dwcyx1g3109";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/flymake-ruby";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/cae2ac3513e371a256be0f1a7468e38e686c2487/recipes/flymake-ruby";
sha256 = "1shr6d03vx85nmyxnysglzlc1pz0zy3n28nrcmxqgdm02g197bzr";
name = "flymake-ruby";
};
@@ -21716,7 +22063,7 @@
flymake-rust = callPackage ({ fetchFromGitHub, fetchurl, flymake-easy, lib, melpaBuild }:
melpaBuild {
pname = "flymake-rust";
- version = "20141005.52";
+ version = "20141004.1752";
src = fetchFromGitHub {
owner = "jxs";
repo = "flymake-rust";
@@ -21724,7 +22071,7 @@
sha256 = "1qxb3vhh83ikhmm89ms7irdip2l03hnjcq5ncmgywkaqkpslaacv";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/flymake-rust";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/7fabdb05de9b8ec18a3a566f99688b50443b6b44/recipes/flymake-rust";
sha256 = "0fgpkz1d4y2ywizwwrhqdqncdmhdnbgf3mcv3hjpa82x44yb7j32";
name = "flymake-rust";
};
@@ -21737,7 +22084,7 @@
flymake-sass = callPackage ({ fetchFromGitHub, fetchurl, flymake-easy, lib, melpaBuild }:
melpaBuild {
pname = "flymake-sass";
- version = "20140308.1225";
+ version = "20140308.525";
src = fetchFromGitHub {
owner = "purcell";
repo = "flymake-sass";
@@ -21745,7 +22092,7 @@
sha256 = "0rwjiplpqw3rrh76llnx2fn78f6avxsg0la5br46q1rgw4n8r1w1";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/flymake-sass";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/cae2ac3513e371a256be0f1a7468e38e686c2487/recipes/flymake-sass";
sha256 = "0sz6n5r9pdphgvvaljg9zdwj3dqayaxzxmb4s8x4b05c8yx3ba0d";
name = "flymake-sass";
};
@@ -21758,7 +22105,7 @@
flymake-shell = callPackage ({ fetchFromGitHub, fetchurl, flymake-easy, lib, melpaBuild }:
melpaBuild {
pname = "flymake-shell";
- version = "20121104.2000";
+ version = "20121104.1300";
src = fetchFromGitHub {
owner = "purcell";
repo = "flymake-shell";
@@ -21766,7 +22113,7 @@
sha256 = "0c2lz1p91yhprmlbmp0756d96yiy0w92zf0c9vlp0i9abvd0cvkc";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/flymake-shell";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/cae2ac3513e371a256be0f1a7468e38e686c2487/recipes/flymake-shell";
sha256 = "13ff4r0k29yqgx8ybxz7hh50cjsadcjb7pd0075s9xcrzia5x63i";
name = "flymake-shell";
};
@@ -21779,7 +22126,7 @@
flymake-solidity = callPackage ({ fetchFromGitHub, fetchurl, flymake-easy, lib, melpaBuild }:
melpaBuild {
pname = "flymake-solidity";
- version = "20160424.1620";
+ version = "20160424.920";
src = fetchFromGitHub {
owner = "kootenpv";
repo = "flymake-solidity";
@@ -21787,7 +22134,7 @@
sha256 = "1rq47qhp3jdrw1n22cnhvhcxqzbi6v9r94kgf3200vrfp435rvkn";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/flymake-solidity";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/3b13f57b77f6648336a049a8dda37757d4dafd90/recipes/flymake-solidity";
sha256 = "10d1g14y3l670lqgfdsnyxanzcjs2jpgnliih56n1xhcpyz551l3";
name = "flymake-solidity";
};
@@ -21800,7 +22147,7 @@
flymake-vala = callPackage ({ fetchFromGitHub, fetchurl, flymake-easy, lib, melpaBuild }:
melpaBuild {
pname = "flymake-vala";
- version = "20150326.631";
+ version = "20150326.31";
src = fetchFromGitHub {
owner = "daniellawrence";
repo = "flymake-vala";
@@ -21808,7 +22155,7 @@
sha256 = "0qpr0frcn3w0f6yz8vgavwbxvn6wb0qkfk653v4cfy57dvslr4wf";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/flymake-vala";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/f711074c4b1be9f123f63a366108bbe147df0ad5/recipes/flymake-vala";
sha256 = "0yp81phd96z594ckav796qrjm0wlkrfsl0rwpmgg840qn49w71vx";
name = "flymake-vala";
};
@@ -21821,7 +22168,7 @@
flymake-yaml = callPackage ({ fetchFromGitHub, fetchurl, flymake-easy, lib, melpaBuild }:
melpaBuild {
pname = "flymake-yaml";
- version = "20130423.1748";
+ version = "20130423.1048";
src = fetchFromGitHub {
owner = "yasuyk";
repo = "flymake-yaml";
@@ -21829,7 +22176,7 @@
sha256 = "0mdam39a85csi9b90wak9j3zkd25lj6x54affwkg3fym8yphmplm";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/flymake-yaml";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/888bcbcb24866abd990abd5b467461a1e1fc13fa/recipes/flymake-yaml";
sha256 = "17wghm797np4hlidf3wwb47w4klwc6qyk6ry1z05psl3nykws1g7";
name = "flymake-yaml";
};
@@ -21842,15 +22189,15 @@
flymd = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "flymd";
- version = "20160523.959";
+ version = "20160617.714";
src = fetchFromGitHub {
owner = "mola-T";
repo = "flymd";
- rev = "e49c9a5a03fe5dd6d281376868df2917c68481ca";
- sha256 = "0dnafc5pq7j2s9lvb86imsd4a6n62qq3bxq404fyl7pc38fyxr6s";
+ rev = "84d5a68bcfed4a295952c33ffcd11e880978d9d7";
+ sha256 = "0j2mmr9f0d3zkhb92zc820iw4vkz958rm3ca7l9k3gx37cc4sn2l";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/flymd";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/07e4121f4cfaf4c33828f84b6b06f9cf2b64a0a2/recipes/flymd";
sha256 = "16wq34xv7hswbxw5w9wnnsw2mhc9qzhmaa6aydhh32blcszhp4rk";
name = "flymd";
};
@@ -21863,7 +22210,7 @@
flyparens = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "flyparens";
- version = "20140723.2046";
+ version = "20140723.1346";
src = fetchFromGitHub {
owner = "jiyoo";
repo = "flyparens";
@@ -21871,7 +22218,7 @@
sha256 = "07hy1kyw4cbxydmhp4scsy3dcbk2s50rmdp8rch1vbcjk5lj4mvb";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/flyparens";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/8c4565ae5b84eb8733cb7fd28cf6a087fd1fedab/recipes/flyparens";
sha256 = "1mvbfq062qj8vmgzk6rymg3idlfc1makfp1scmjvpw98h30j2a0a";
name = "flyparens";
};
@@ -21884,16 +22231,16 @@
flyspell-correct = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "flyspell-correct";
- version = "20160602.1017";
+ version = "20160612.2345";
src = fetchFromGitHub {
owner = "d12frosted";
repo = "flyspell-correct";
- rev = "0ee248b35c9280c4f23aa4dcb1f2b4532a087e85";
- sha256 = "11cajkn29a10r96x1zil40y66z2zh4khkfwsv3vwi2ryzlfpgr1j";
+ rev = "a48256bcb016d4c8d6b964a4a86ce7f0c0f342d9";
+ sha256 = "0872kbgh6m7fc562w0yiragrh2zyb3pz3mdghyq7fc2vaa0a75kx";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/flyspell-correct";
- sha256 = "1bm1a9r9g5nsx544a263g26mxrmam7bx2m0a09ggzr6hpwp9sp2n";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/ef7b9302d8f804c77eb81fee7ed27f13cb1176f6/recipes/flyspell-correct";
+ sha256 = "0j7fp2r1463517716d070wmgwxyj8p59b4ybqh106lmpc5w1i9nj";
name = "flyspell-correct";
};
packageRequires = [];
@@ -21902,10 +22249,73 @@
license = lib.licenses.free;
};
}) {};
+ flyspell-correct-helm = callPackage ({ fetchFromGitHub, fetchurl, flyspell-correct, helm, lib, melpaBuild }:
+ melpaBuild {
+ pname = "flyspell-correct-helm";
+ version = "20160610.1051";
+ src = fetchFromGitHub {
+ owner = "d12frosted";
+ repo = "flyspell-correct";
+ rev = "a48256bcb016d4c8d6b964a4a86ce7f0c0f342d9";
+ sha256 = "0872kbgh6m7fc562w0yiragrh2zyb3pz3mdghyq7fc2vaa0a75kx";
+ };
+ recipeFile = fetchurl {
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/ef7b9302d8f804c77eb81fee7ed27f13cb1176f6/recipes/flyspell-correct-helm";
+ sha256 = "18s2bzszy6x31avqg7j2lsll2cf4asb8njwhmx4mm215agack976";
+ name = "flyspell-correct-helm";
+ };
+ packageRequires = [ flyspell-correct helm ];
+ meta = {
+ homepage = "https://melpa.org/#/flyspell-correct-helm";
+ license = lib.licenses.free;
+ };
+ }) {};
+ flyspell-correct-ivy = callPackage ({ fetchFromGitHub, fetchurl, flyspell-correct, ivy, lib, melpaBuild }:
+ melpaBuild {
+ pname = "flyspell-correct-ivy";
+ version = "20160610.1051";
+ src = fetchFromGitHub {
+ owner = "d12frosted";
+ repo = "flyspell-correct";
+ rev = "a48256bcb016d4c8d6b964a4a86ce7f0c0f342d9";
+ sha256 = "0872kbgh6m7fc562w0yiragrh2zyb3pz3mdghyq7fc2vaa0a75kx";
+ };
+ recipeFile = fetchurl {
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/ef7b9302d8f804c77eb81fee7ed27f13cb1176f6/recipes/flyspell-correct-ivy";
+ sha256 = "1n5iyab6bj761w6vxncyqvqzwh9k60pzq5f2n00ifrz74pqs537i";
+ name = "flyspell-correct-ivy";
+ };
+ packageRequires = [ flyspell-correct ivy ];
+ meta = {
+ homepage = "https://melpa.org/#/flyspell-correct-ivy";
+ license = lib.licenses.free;
+ };
+ }) {};
+ flyspell-correct-popup = callPackage ({ fetchFromGitHub, fetchurl, flyspell-correct, lib, melpaBuild, popup }:
+ melpaBuild {
+ pname = "flyspell-correct-popup";
+ version = "20160610.1051";
+ src = fetchFromGitHub {
+ owner = "d12frosted";
+ repo = "flyspell-correct";
+ rev = "a48256bcb016d4c8d6b964a4a86ce7f0c0f342d9";
+ sha256 = "0872kbgh6m7fc562w0yiragrh2zyb3pz3mdghyq7fc2vaa0a75kx";
+ };
+ recipeFile = fetchurl {
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/ef7b9302d8f804c77eb81fee7ed27f13cb1176f6/recipes/flyspell-correct-popup";
+ sha256 = "1fr8ajwldcl58i8xm31dz1mjwbi9f4q8s58x5jrqhqha0x4p4h9l";
+ name = "flyspell-correct-popup";
+ };
+ packageRequires = [ flyspell-correct popup ];
+ meta = {
+ homepage = "https://melpa.org/#/flyspell-correct-popup";
+ license = lib.licenses.free;
+ };
+ }) {};
flyspell-lazy = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "flyspell-lazy";
- version = "20141222.1552";
+ version = "20141222.852";
src = fetchFromGitHub {
owner = "rolandwalker";
repo = "flyspell-lazy";
@@ -21913,7 +22323,7 @@
sha256 = "1g09s57b773nm9xqslzbin5i2h18k55nx00s5nnkvx1qg0n0mzkm";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/flyspell-lazy";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/a082c2dc0458e3007a947923f5b97e88217199e8/recipes/flyspell-lazy";
sha256 = "0lzazrhsfh5m7n57dzx0v46d5mg87wpwwkjzf5j9gpv1mc1xfg1y";
name = "flyspell-lazy";
};
@@ -21926,7 +22336,7 @@
flyspell-popup = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, popup }:
melpaBuild {
pname = "flyspell-popup";
- version = "20150926.1703";
+ version = "20150926.1003";
src = fetchFromGitHub {
owner = "xuchunyang";
repo = "flyspell-popup";
@@ -21934,7 +22344,7 @@
sha256 = "1rdpggnw9mz3qr4kp5gh9nvwncivj446vdhpc04d4jgrl568bhqb";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/flyspell-popup";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/186d00724137c055b521a5f5c54acf71c4b16c32/recipes/flyspell-popup";
sha256 = "0wp15ra1ry6xpwal6mb53ixh3f0s4nps0rdyfli7hhaiwbr9bhql";
name = "flyspell-popup";
};
@@ -21947,7 +22357,7 @@
fm = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "fm";
- version = "20130127.118";
+ version = "20130126.1818";
src = fetchFromGitHub {
owner = "emacsmirror";
repo = "fm";
@@ -21955,7 +22365,7 @@
sha256 = "1fk4zsb4jliwz10sqz5bpqgj1p479mc506dmvy4zq3vqnpbypqvs";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/fm";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/e4a74b87c05b408433545a2236000ac081af36bf/recipes/fm";
sha256 = "118d8fbhlv6i2rsyfqdhi841p96j7q4fab5qdg95ip40wq02dg4f";
name = "fm";
};
@@ -21968,7 +22378,7 @@
fm-bookmarks = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "fm-bookmarks";
- version = "20151203.1503";
+ version = "20151203.803";
src = fetchFromGitHub {
owner = "kuanyui";
repo = "fm-bookmarks.el";
@@ -21976,7 +22386,7 @@
sha256 = "0984fhf1nlpdh9mh3gd2xak3v2rlv76qxppqvr6a4kl1dxwg37r3";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/fm-bookmarks";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/1ca020aff7f19cc150cd6968ae7c441372e240c2/recipes/fm-bookmarks";
sha256 = "12ami0k6rfwhrr6xgj0dls4mkk6dp0r9smwzhr4897dv0lw89bdj";
name = "fm-bookmarks";
};
@@ -21989,7 +22399,7 @@
focus = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "focus";
- version = "20160131.2318";
+ version = "20160131.1618";
src = fetchFromGitHub {
owner = "larstvei";
repo = "Focus";
@@ -21997,7 +22407,7 @@
sha256 = "0vqjyc00ba9wy2rn454hhy9rnnghljc1i8f3zrpkdmkqn5cg3336";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/focus";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/4e8f1217224514f9b048b7101c89e3b1a305821e/recipes/focus";
sha256 = "0jw26j8npyl3dgsrs7ap2djxmkafn2hl6gfqvi7v76bccs4jkyv8";
name = "focus";
};
@@ -22010,7 +22420,7 @@
focus-autosave-mode = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "focus-autosave-mode";
- version = "20160519.2316";
+ version = "20160519.1616";
src = fetchFromGitHub {
owner = "Vifon";
repo = "focus-autosave-mode.el";
@@ -22018,7 +22428,7 @@
sha256 = "1c1mh96kghp5d22assm9kzxlp0cy7bws9yrqwwgaw3d72cba40k3";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/focus-autosave-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/7fabdb05de9b8ec18a3a566f99688b50443b6b44/recipes/focus-autosave-mode";
sha256 = "10cd1x5b1w7apgxd2kq45lv0jlj7az4zmn2iz4iymf2r2hancrcd";
name = "focus-autosave-mode";
};
@@ -22031,7 +22441,7 @@
foggy-night-theme = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "foggy-night-theme";
- version = "20160209.1608";
+ version = "20160209.908";
src = fetchFromGitHub {
owner = "mswift42";
repo = "foggy-night-theme";
@@ -22039,7 +22449,7 @@
sha256 = "1mnak9k0hz99jq2p7gydxajzvx2vcql8yzwcm0v80a6xji2whl70";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/foggy-night-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/65b3f5959241e601fdf9469e407d153cebcbe24c/recipes/foggy-night-theme";
sha256 = "03x3dhkk81d2zh9nflq6wd7v3khpy9046v8qhq4i9dw6davvy9j4";
name = "foggy-night-theme";
};
@@ -22052,7 +22462,7 @@
fold-dwim = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "fold-dwim";
- version = "20140208.1737";
+ version = "20140208.1037";
src = fetchFromGitHub {
owner = "emacsmirror";
repo = "fold-dwim";
@@ -22060,7 +22470,7 @@
sha256 = "1yz1wis31asw6xa5maliyd1ck2q02xnnh7dc6swgj9cb4wi7k6i1";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/fold-dwim";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/ebbbc23a29b2040c587e2f60dbfb7a9b45058751/recipes/fold-dwim";
sha256 = "0c9yxx45zlhb1h4ldgkjv7bndwlagpyingaaqn9dcsxidrvp3p5x";
name = "fold-dwim";
};
@@ -22073,7 +22483,7 @@
fold-dwim-org = callPackage ({ fetchFromGitHub, fetchurl, fold-dwim, lib, melpaBuild }:
melpaBuild {
pname = "fold-dwim-org";
- version = "20131203.1451";
+ version = "20131203.751";
src = fetchFromGitHub {
owner = "mattfidler";
repo = "fold-dwim-org";
@@ -22081,7 +22491,7 @@
sha256 = "14jvbkahwvv4wb0s9vp8gqmlpv1d4269j5rsjxn79q5pawjzslxw";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/fold-dwim-org";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/97d22d9feaf521ce576b80d2933ecbc166c1dbe7/recipes/fold-dwim-org";
sha256 = "0812p351rzvqcfn00k92nfhlg3y772y4z4b9f0xqnpa935y6harn";
name = "fold-dwim-org";
};
@@ -22094,7 +22504,7 @@
fold-this = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "fold-this";
- version = "20150601.1242";
+ version = "20150601.542";
src = fetchFromGitHub {
owner = "magnars";
repo = "fold-this.el";
@@ -22102,7 +22512,7 @@
sha256 = "1cbabpyp66nl5j8yhyj2jih4mhaljxvjh9ij05clai71z4598ahn";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/fold-this";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/9853fcb99bd8717c77fa2b3bafb6e85d0d5d491c/recipes/fold-this";
sha256 = "1iri4a6ixw3q7qr803cj2ik7rvmww1b6ybj5q2pvkf1v25r8655d";
name = "fold-this";
};
@@ -22115,7 +22525,7 @@
folding = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "folding";
- version = "20140401.903";
+ version = "20140401.203";
src = fetchFromGitHub {
owner = "jaalto";
repo = "project-emacs--folding-mode";
@@ -22123,7 +22533,7 @@
sha256 = "1z2dkyzj1gq3gp9cc3lhi240f8f3yjpjnw520xszm0wvx1rp06ny";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/folding";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/1912296b7879019bea5ba8353d511496e3a9ca2d/recipes/folding";
sha256 = "0rb4f4llc4z502znmmc0hfi7n07lp01msx4y1iyqijvqzlq2i93y";
name = "folding";
};
@@ -22135,13 +22545,13 @@
}) {};
font-lock-plus = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild {
pname = "font-lock-plus";
- version = "20151231.2219";
+ version = "20151231.1519";
src = fetchurl {
url = "https://www.emacswiki.org/emacs/download/font-lock+.el";
sha256 = "04j9xybn9an3bm2p2aqmqnswxxg3gwq2mc96brkgxkr88h316d4q";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/font-lock+";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/a5d15f875b0080b12ce45cf696c581f6bbf061ba/recipes/font-lock+";
sha256 = "1wn99cb53ykds87lg9mrlfpalrmjj177nwskrnp9wglyqs65lk4g";
name = "font-lock-plus";
};
@@ -22154,7 +22564,7 @@
font-lock-studio = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "font-lock-studio";
- version = "20141202.158";
+ version = "20141201.1858";
src = fetchFromGitHub {
owner = "Lindydancer";
repo = "font-lock-studio";
@@ -22162,7 +22572,7 @@
sha256 = "04n32rgdz7m24jji8p0j42zmf2r60sdbbr4mkr6435fqyvmdd20k";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/font-lock-studio";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/f8046fef1ac09cac1113dd5d0a6e1bf8e0c77bb1/recipes/font-lock-studio";
sha256 = "0swwbfaypc78cg4ak24cc92kgxmr1x9vcpaw3jz4zgpm2wzbgmrq";
name = "font-lock-studio";
};
@@ -22175,7 +22585,7 @@
font-utils = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, pcache, persistent-soft }:
melpaBuild {
pname = "font-utils";
- version = "20150806.1951";
+ version = "20150806.1251";
src = fetchFromGitHub {
owner = "rolandwalker";
repo = "font-utils";
@@ -22183,7 +22593,7 @@
sha256 = "1k90w8v5rpswqb8fn1cc8sq5w12gf4sn6say5dhvqd63512b0055";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/font-utils";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/2af0a1644116e89c5a705ffe0885ffe3ee874eaf/recipes/font-utils";
sha256 = "0k33jdchjkj7j211a23kfp5axg74cfsrrq4axsb1pfp124swh2n5";
name = "font-utils";
};
@@ -22196,7 +22606,7 @@
fontawesome = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, helm-core, lib, melpaBuild }:
melpaBuild {
pname = "fontawesome";
- version = "20151202.1530";
+ version = "20151202.830";
src = fetchFromGitHub {
owner = "syohex";
repo = "emacs-fontawesome";
@@ -22204,7 +22614,7 @@
sha256 = "103xz042h8w6c85hn19cglfsa34syjh18asm41rjhr9krp15sdl1";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/fontawesome";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/93b92f10802ceffc353db3d220dccfd47ea7fa41/recipes/fontawesome";
sha256 = "07hn4s929xklc74j8s6pd61rxmxw3911dq47wql77vb5pijv6dr3";
name = "fontawesome";
};
@@ -22217,7 +22627,7 @@
forecast = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "forecast";
- version = "20160513.2059";
+ version = "20160513.1359";
src = fetchFromGitHub {
owner = "cadadr";
repo = "forecast.el";
@@ -22225,7 +22635,7 @@
sha256 = "1x4l24cbgc4apv9cfzf6phmj5pm32hfdgv37wpbh7ml8v3p8xm0w";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/forecast";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/e6ff6a4ee29b96bccb2e4bc0644f2bd2e51971ee/recipes/forecast";
sha256 = "0whag2n1120384w304g0w4bqr7svdxxncdhnz4rznfpxlgiw2rsc";
name = "forecast";
};
@@ -22238,7 +22648,7 @@
foreign-regexp = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "foreign-regexp";
- version = "20160318.1707";
+ version = "20160318.1107";
src = fetchFromGitHub {
owner = "k-talo";
repo = "foreign-regexp.el";
@@ -22246,7 +22656,7 @@
sha256 = "1459hy5kgp0dkzy1jab41aibixgmrk9lk6ysn1801spd8gwph371";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/foreign-regexp";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/d05514013948a520cf0dcaf1dc2ef2300dd55e98/recipes/foreign-regexp";
sha256 = "189cq8n759f28nx10fn3w4qbq7q49bb788kp9l70pj38jgnjn7n7";
name = "foreign-regexp";
};
@@ -22259,7 +22669,7 @@
foreman-mode = callPackage ({ dash, dash-functional, emacs, f, fetchFromGitHub, fetchurl, lib, melpaBuild, s }:
melpaBuild {
pname = "foreman-mode";
- version = "20160520.1637";
+ version = "20160520.937";
src = fetchFromGitHub {
owner = "zweifisch";
repo = "foreman-mode";
@@ -22267,7 +22677,7 @@
sha256 = "0pp68kqg2impar6rhlpifixx0lqgkcrj6ncjn5jlids6vfhq23nd";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/foreman-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/edeeb2b52ac70f8bdad38d3af62a7e434853c504/recipes/foreman-mode";
sha256 = "0p3kwbld05wf3dwcv0k6ynz727fiy0ik2srx4js9wvagy57x98kv";
name = "foreman-mode";
};
@@ -22277,10 +22687,31 @@
license = lib.licenses.free;
};
}) {};
+ forest-blue-theme = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
+ melpaBuild {
+ pname = "forest-blue-theme";
+ version = "20160627.342";
+ src = fetchFromGitHub {
+ owner = "olkinn";
+ repo = "forest-blue-emacs";
+ rev = "58096ce1a25615d2bae806c3775bae3e2775019d";
+ sha256 = "1qm74cfnc13wgv0c3657nd3xbgn492r24m5m2i0ipnpq49cddccf";
+ };
+ recipeFile = fetchurl {
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/49b8686c31f863dde58d56cddf0baa7757a0c453/recipes/forest-blue-theme";
+ sha256 = "1pcpwil883k4n5na7jpq7h8a8gw6mily1cj5n5rf25lqqnsz6fxa";
+ name = "forest-blue-theme";
+ };
+ packageRequires = [ emacs ];
+ meta = {
+ homepage = "https://melpa.org/#/forest-blue-theme";
+ license = lib.licenses.free;
+ };
+ }) {};
form-feed = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "form-feed";
- version = "20160102.2353";
+ version = "20160102.1653";
src = fetchFromGitHub {
owner = "wasamasa";
repo = "form-feed";
@@ -22288,7 +22719,7 @@
sha256 = "0nj056x87gcpdqkgx3li5syp6wbj58a1mw2aqa48zflbqwyvs03i";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/form-feed";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/468503d8103766e8196e977325e3bcb696219f6b/recipes/form-feed";
sha256 = "1abwjkzi3irw0jwpv3f584zc72my9n8iq8zp5s0354xk6iwrl1rh";
name = "form-feed";
};
@@ -22301,7 +22732,7 @@
format-sql = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "format-sql";
- version = "20150422.1533";
+ version = "20150422.833";
src = fetchFromGitHub {
owner = "paetzke";
repo = "format-sql.el";
@@ -22309,7 +22740,7 @@
sha256 = "0mikksamljps1czacgqavlnzzhgs8s3f8q4jza6v3csf8kgp5zd0";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/format-sql";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/085c03104aa5a809a112525547eec51100b6fb09/recipes/format-sql";
sha256 = "0684xqzs933vj9d3n3lv7afk4gii41kaqykbb05cribaswapsanj";
name = "format-sql";
};
@@ -22322,7 +22753,7 @@
fortpy = callPackage ({ auto-complete, epc, fetchFromGitHub, fetchurl, lib, melpaBuild, pos-tip, python-environment }:
melpaBuild {
pname = "fortpy";
- version = "20150715.2232";
+ version = "20150715.1532";
src = fetchFromGitHub {
owner = "rosenbrockc";
repo = "fortpy-el";
@@ -22330,7 +22761,7 @@
sha256 = "1nqx2igxmwswjcrnzdjpx5qcjr60zjy3q9cadq5disms17wdcr6y";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/fortpy";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/73b277e19f5f9f6605f3e9b7afac95152dac0599/recipes/fortpy";
sha256 = "1nn5vx1rspfsijwhilnjhiy0mjw154ds3lwxvkpwxpchygirlyxj";
name = "fortpy";
};
@@ -22343,7 +22774,7 @@
fortune-cookie = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "fortune-cookie";
- version = "20151111.735";
+ version = "20151111.35";
src = fetchFromGitHub {
owner = "andschwa";
repo = "fortune-cookie";
@@ -22351,7 +22782,7 @@
sha256 = "1kk04hl2y2svrs07w4pq9f4g7vs9qzy2qpw9prvi1gravmnfrzc4";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/fortune-cookie";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/ab0d56626c9bf847c693b4d9ddb08acee636054f/recipes/fortune-cookie";
sha256 = "0xg0zk7hnyhnbhqpxnzrgqs5yz0sy6wb0n9982qc0pa6jqnl9z78";
name = "fortune-cookie";
};
@@ -22364,15 +22795,15 @@
fountain-mode = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, s }:
melpaBuild {
pname = "fountain-mode";
- version = "20160221.1407";
+ version = "20160703.504";
src = fetchFromGitHub {
owner = "rnkn";
repo = "fountain-mode";
- rev = "4627868e70408b9608a47980d6cfda10024221d5";
- sha256 = "1zy45s1m1injwr4d1qvpnvfvv4nkkv9mricshxjannsjfbz09ra7";
+ rev = "12f61706711c18ccdbc7fbbc061fd29f702003f1";
+ sha256 = "1kfv7wn50yzrfg3sn65xfy069g7kvbihhdjl8yspwdryvh9b3bnq";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/fountain-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/913386ac8d5049d37154da3ab32bde408a226511/recipes/fountain-mode";
sha256 = "1i55gcjy8ycr1ww2fh1a2j0bchx1bsfs0zd6v4cv5zdgy7vw6840";
name = "fountain-mode";
};
@@ -22385,13 +22816,13 @@
frame-cmds = callPackage ({ fetchurl, frame-fns, lib, melpaBuild }:
melpaBuild {
pname = "frame-cmds";
- version = "20160124.1726";
+ version = "20160124.1026";
src = fetchurl {
url = "https://www.emacswiki.org/emacs/download/frame-cmds.el";
sha256 = "1867zmm3pyqz8p9ig44jf598z9jkyvbp04mfg6j6ys3hyqfkw942";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/frame-cmds";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/8b528544841995045fb1f8344aaaa38946bb3915/recipes/frame-cmds";
sha256 = "0xwzp6sgcb5ap76hpzm8g4kl08a8cgq7i2x9w64njyfink7frwc0";
name = "frame-cmds";
};
@@ -22403,13 +22834,13 @@
}) {};
frame-fns = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild {
pname = "frame-fns";
- version = "20151231.2222";
+ version = "20151231.1522";
src = fetchurl {
url = "https://www.emacswiki.org/emacs/download/frame-fns.el";
sha256 = "0lvlyxb62sgrm37hc21dn7qzlrq2yagiwpspa926q6dpzcsbam15";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/frame-fns";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/8b528544841995045fb1f8344aaaa38946bb3915/recipes/frame-fns";
sha256 = "1wq8wva9q1hdzkvjk582a3fgig0lpqz9ch1p2jd6p29kb1i15f5p";
name = "frame-fns";
};
@@ -22422,7 +22853,7 @@
frame-restore = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "frame-restore";
- version = "20140811.2309";
+ version = "20140811.1609";
src = fetchFromGitHub {
owner = "lunaryorn";
repo = "frame-restore.el";
@@ -22430,7 +22861,7 @@
sha256 = "0n6jhm1198c8slvdymsfjif0dfx3wlf8q4mm0yvpiln46shhwldx";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/frame-restore";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50ab397e8841f686e098caf6dae5dfafb0550581/recipes/frame-restore";
sha256 = "0b321iyf57nkrm6xv8d1aydivrdapdgng35zcnrg298ws2naysvm";
name = "frame-restore";
};
@@ -22443,7 +22874,7 @@
frame-tag = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "frame-tag";
- version = "20151121.818";
+ version = "20151121.118";
src = fetchFromGitHub {
owner = "liangzan";
repo = "frame-tag.el";
@@ -22451,7 +22882,7 @@
sha256 = "1vvkdgj8warl40kqmd0408q46dxy9qp2sclq4q92b6falry9qy30";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/frame-tag";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/e69899b53c158903b9b147754021acf1a6136eda/recipes/frame-tag";
sha256 = "1n13xcc3ny9j9h1h4vslpjl6k9mqksr73kgmqrmkq301p8zps94q";
name = "frame-tag";
};
@@ -22463,13 +22894,13 @@
}) {};
framemove = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild {
pname = "framemove";
- version = "20130328.1233";
+ version = "20130328.633";
src = fetchurl {
url = "https://www.emacswiki.org/emacs/download/framemove.el";
sha256 = "03ll68d0j0b55rfxymzcirdigkmxcy8556d0i67ghdzmcqfwily7";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/framemove";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/f075338369dbf0694205c1b2c35dc16821f6dc92/recipes/framemove";
sha256 = "10qf017j0zfnzmcs1i56pznhbvgw7mv4232p8znqaaxphgh6r0ar";
name = "framemove";
};
@@ -22482,7 +22913,7 @@
framesize = callPackage ({ fetchFromGitHub, fetchurl, key-chord, lib, melpaBuild }:
melpaBuild {
pname = "framesize";
- version = "20131017.2332";
+ version = "20131017.1632";
src = fetchFromGitHub {
owner = "nicferrier";
repo = "emacs-framesize";
@@ -22490,7 +22921,7 @@
sha256 = "11h9xw6jnw7dacyv1jch2a77xp7hfb93690m7hhazy6l87xmm4dk";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/framesize";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/c53062af16b26b6f64bd63fa62d7e9db264768f3/recipes/framesize";
sha256 = "1rwiwx3n7gkpfihbf6ndl1lxza4zi2rlj5av6lfp5qypbw9wddkf";
name = "framesize";
};
@@ -22503,7 +22934,7 @@
free-keys = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "free-keys";
- version = "20151202.1222";
+ version = "20151202.522";
src = fetchFromGitHub {
owner = "Fuco1";
repo = "free-keys";
@@ -22511,7 +22942,7 @@
sha256 = "12rmwf7gm9ib2c99jangygh2yswy41vxlp90rg0hvlhdfmbqa8p0";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/free-keys";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/55067e899ba618d4394ad9657322c92a667a0774/recipes/free-keys";
sha256 = "0j9cfgy2nkbska4lm5z32p804i9n8pdgn50bs5zzk1ilwd5vbalj";
name = "free-keys";
};
@@ -22524,7 +22955,7 @@
fringe-current-line = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "fringe-current-line";
- version = "20140111.511";
+ version = "20140110.2211";
src = fetchFromGitHub {
owner = "kyanagi";
repo = "fringe-current-line";
@@ -22532,7 +22963,7 @@
sha256 = "0zwlnzbi91hkfz1jgj9s9pxwi21s21cwp6psdm687wj2a3wy4231";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/fringe-current-line";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/eaaa6f7f2f753a7c8489415ae406c4169eda9fa8/recipes/fringe-current-line";
sha256 = "125yn0wbrrxrmdn7qfxj0f4538sb3xnqb3r2inz3gpblc1vxnqb8";
name = "fringe-current-line";
};
@@ -22545,7 +22976,7 @@
fringe-helper = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "fringe-helper";
- version = "20140620.2309";
+ version = "20140620.1609";
src = fetchFromGitHub {
owner = "nschum";
repo = "fringe-helper.el";
@@ -22553,7 +22984,7 @@
sha256 = "0ra9rc53l1gvkqank8apasl3r7wz2yfjrcvmfk3wpxhh24ppxv9d";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/fringe-helper";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/22a334294660e8625cfeeeb7108517e163d8e443/recipes/fringe-helper";
sha256 = "1vki5jd8jfrlrjcfd12gisgk12y20q3943i2qjgg4qvcj9k28cbv";
name = "fringe-helper";
};
@@ -22566,7 +22997,7 @@
fsharp-mode = callPackage ({ company, company-quickhelp, dash, fetchFromGitHub, fetchurl, lib, melpaBuild, popup, pos-tip, s }:
melpaBuild {
pname = "fsharp-mode";
- version = "20160427.1748";
+ version = "20160427.1048";
src = fetchFromGitHub {
owner = "rneatherway";
repo = "emacs-fsharp-mode-bin";
@@ -22574,7 +23005,7 @@
sha256 = "1d28kdh96izj05mfknhgyd8954kl2abjgjlinmx1bsa9flb9vgpb";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/fsharp-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/dc45611e2b629d8bc5f74555368f964420b79541/recipes/fsharp-mode";
sha256 = "07pkj30cawh0diqhrp3jkshgsd0i3y34rdnjb4af8mr7dsbsxb6z";
name = "fsharp-mode";
};
@@ -22587,15 +23018,15 @@
fstar-mode = callPackage ({ dash, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "fstar-mode";
- version = "20160215.1607";
+ version = "20160701.509";
src = fetchFromGitHub {
owner = "FStarLang";
repo = "fstar-mode.el";
- rev = "26a7f489cc553e93a50595f45f000bbca66573ee";
- sha256 = "0vw6z68b99llcj10jy7vbmirlx62j23rgzxgdngl7kj6rfg9llpy";
+ rev = "3f7c9b5caa4c137b24d7c9b899890738ab4093eb";
+ sha256 = "0pi7aim7spsdwa9spyncyl7wcf1bbpz3sr9z2cszywpiqjn2s2k5";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/fstar-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/e1198ee309675c391c479ce39efcdca23f548d2a/recipes/fstar-mode";
sha256 = "0kyzkghdkrnqqbd5b969pjyz9jxgq0j8hkmvlcwikl7ynnhm9lgy";
name = "fstar-mode";
};
@@ -22608,14 +23039,14 @@
fuel = callPackage ({ cl-lib ? null, emacs, fetchgit, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "fuel";
- version = "20160525.2300";
+ version = "20160702.851";
src = fetchgit {
url = "git://factorcode.org/git/factor.git";
- rev = "c7041fe96ec2db36dac7e1201270b970b854d2f3";
- sha256 = "175d9qqw1sgwkdhbhcmm5b1m5cd1hmg12h7llcycx161jkhl66zb";
+ rev = "5345e32b84ed1f84af0475c6ff2d693658e8029d";
+ sha256 = "12wvx6m00xgmw8xjildnk3c6nm1pw978czdhws8lqwc1ls7kcwp1";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/fuel";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/0c3633c23baa472560a489fc663a0302f082bcef/recipes/fuel";
sha256 = "0m24p2788r4xzm56hm9kmpzcskwh82vgbs3hqfb9xygpl4isp756";
name = "fuel";
};
@@ -22628,7 +23059,7 @@
full-ack = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "full-ack";
- version = "20140223.1832";
+ version = "20140223.1132";
src = fetchFromGitHub {
owner = "nschum";
repo = "full-ack";
@@ -22636,7 +23067,7 @@
sha256 = "0bjny4ryrs788myhiaf3ir99vadf2v4swa5gkz9i36a7j6wzpgk5";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/full-ack";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/cae2ac3513e371a256be0f1a7468e38e686c2487/recipes/full-ack";
sha256 = "09ikhyhpvkcl6yl6pa4abnw6i7yfsx5jkmzypib94w7khikvb309";
name = "full-ack";
};
@@ -22649,7 +23080,7 @@
fullframe = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "fullframe";
- version = "20160504.1649";
+ version = "20160504.949";
src = fetchFromGitHub {
owner = "tomterl";
repo = "fullframe";
@@ -22657,7 +23088,7 @@
sha256 = "0nhw708b5jjymbw3b7np11jlkzdrzq7qnnxdyl8nndsn1c3qcr0l";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/fullframe";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/13d1dc5c39543b65c6bb4150c3690211872c00dc/recipes/fullframe";
sha256 = "08sh8lmb6g8asv28fcb36ilcn0ka4fc6ka0pnslid0h4c32fxp2a";
name = "fullframe";
};
@@ -22670,15 +23101,15 @@
function-args = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, swiper }:
melpaBuild {
pname = "function-args";
- version = "20160206.1417";
+ version = "20160628.858";
src = fetchFromGitHub {
owner = "abo-abo";
repo = "function-args";
- rev = "33ed7e45027b6ce2e455467f7a1a05ca4abdd078";
- sha256 = "067fmk46wk6jpc01wylagw948sgs3ndrq18mp3x81pdv3dykzmr6";
+ rev = "8bd0b2b8c2bad6b5c5b1828a841d8255437c7920";
+ sha256 = "06j1hmd29wksmf4ggdmpz0xfjvvbw2blapwfjsccrs875czz3h90";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/function-args";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/80688d85a34b77783140ad2b8a47ef60c762b084/recipes/function-args";
sha256 = "13yfscr993pll5yg019v9dwy71g123a166w114n2m78h0rbnzdak";
name = "function-args";
};
@@ -22691,7 +23122,7 @@
furl = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "furl";
- version = "20150509.516";
+ version = "20150508.2216";
src = fetchFromGitHub {
owner = "nex3";
repo = "furl-el";
@@ -22699,7 +23130,7 @@
sha256 = "0wrmbvx0risdjkaxqmh4li6iwvg4635cdpjvw32k2wkdsyn2dlsb";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/furl";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/0fda2b54a0ff0b6fc3bd6d20cfcbbf63cae5380f/recipes/furl";
sha256 = "1z3yqx95qmvpi6vkkgcwvkmw96s24h8ssd5gc06988picw6vj76f";
name = "furl";
};
@@ -22712,7 +23143,7 @@
fuzzy = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "fuzzy";
- version = "20150730.537";
+ version = "20150729.2237";
src = fetchFromGitHub {
owner = "auto-complete";
repo = "fuzzy-el";
@@ -22720,7 +23151,7 @@
sha256 = "0rzp8c2164w775ggm2fs4j5dz33vqcah84ysp81majirwfql1niv";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/fuzzy";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/9e0197df173fbd7ec1e7e35c47476fcf2aaa483f/recipes/fuzzy";
sha256 = "1hwdh9bx4g4vzzyc20vdwxsii611za37kc9ik40kwjjk62qmll8h";
name = "fuzzy";
};
@@ -22732,13 +23163,13 @@
}) {};
fuzzy-format = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild {
pname = "fuzzy-format";
- version = "20130824.1400";
+ version = "20130824.700";
src = fetchurl {
url = "https://www.emacswiki.org/emacs/download/fuzzy-format.el";
sha256 = "1iv0x1cb12kknnxyq2gca7m3c3rg9s4cxz397sazkh1csrn0b2i7";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/fuzzy-format";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/154cb0a10c81ce4907029f0eddc51108961c65ae/recipes/fuzzy-format";
sha256 = "055b8710yxbi2sdqsqk6jqgnzky4nykv8jgqgwy8q2isgj6q98jb";
name = "fuzzy-format";
};
@@ -22750,13 +23181,13 @@
}) {};
fuzzy-match = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild {
pname = "fuzzy-match";
- version = "20151231.2223";
+ version = "20151231.1523";
src = fetchurl {
url = "https://www.emacswiki.org/emacs/download/fuzzy-match.el";
sha256 = "1q3gbv9xp2jxrf9vfarjqk9k805xc9z72zbaw7aqdxrj1bafxwnz";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/fuzzy-match";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/e00737be152e9082d0f0c9076cac7fcd08bd4e7b/recipes/fuzzy-match";
sha256 = "0mpy84f2zdyzmipzhs06b8rl2pxiypazf35ls1nc1yj8r16ijrds";
name = "fuzzy-match";
};
@@ -22769,7 +23200,7 @@
fvwm-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "fvwm-mode";
- version = "20160411.1338";
+ version = "20160411.638";
src = fetchFromGitHub {
owner = "theBlackDragon";
repo = "fvwm-mode";
@@ -22777,7 +23208,7 @@
sha256 = "03zmk4v259pqx7gkwqq95lccn78rwmh7iq5j0d5jj4jf9h39rr20";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/fvwm-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/ac39130f8a031d6fe7df4411a5f94f2cdf652449/recipes/fvwm-mode";
sha256 = "07y32cnp4qfhncp7s24gmlxljdrj5miicinfaf4gc7hihb4bkrkb";
name = "fvwm-mode";
};
@@ -22790,7 +23221,7 @@
fwb-cmds = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "fwb-cmds";
- version = "20160523.1435";
+ version = "20160523.735";
src = fetchFromGitHub {
owner = "tarsius";
repo = "fwb-cmds";
@@ -22798,7 +23229,7 @@
sha256 = "1c7h043lz10mw1hdsx9viksy6q79jipz2mm18y1inlbqhmg33n2b";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/fwb-cmds";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/fe40cdeb5e19628937820181479897acdad40200/recipes/fwb-cmds";
sha256 = "0wnjvi0v0l2h1mhwlsk2d8ggwh3nk7pks48l55gp18nmj00jxycx";
name = "fwb-cmds";
};
@@ -22811,7 +23242,7 @@
fxrd-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, s }:
melpaBuild {
pname = "fxrd-mode";
- version = "20160503.2245";
+ version = "20160503.1545";
src = fetchFromGitHub {
owner = "msherry";
repo = "fxrd-mode";
@@ -22819,7 +23250,7 @@
sha256 = "1m8zgwcfl0i3yizx01ikxjhhqm1nj74q35fs3d32z9fkk5h21m2d";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/fxrd-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/796eb6b2126ec616c0de6af6abb7598900557c12/recipes/fxrd-mode";
sha256 = "17zimg64lqc1yh9gnp5izshkvviz996aym7q6n9p61a4kqq37z4r";
name = "fxrd-mode";
};
@@ -22832,7 +23263,7 @@
fyure = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "fyure";
- version = "20130216.1414";
+ version = "20130216.714";
src = fetchFromGitHub {
owner = "mooz";
repo = "fyure";
@@ -22840,7 +23271,7 @@
sha256 = "08x5li0mshrlamr7vswy7xh358bqhh3pngjr4ckswfi0l2r5fjbd";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/fyure";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/27f4188f460060277ad2f5422bc2bde8e6fd3ff3/recipes/fyure";
sha256 = "0k5z2xqlrzp5lyvp2lr462x38kqdmqld845bvyvkfjd2k4yri71x";
name = "fyure";
};
@@ -22853,15 +23284,15 @@
fzf = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "fzf";
- version = "20151129.1533";
+ version = "20160614.2027";
src = fetchFromGitHub {
owner = "bling";
repo = "fzf.el";
- rev = "bfc157a682b53927af633fd919c2e03235ea6599";
- sha256 = "0rjn4z7ssl1jy0brvsci44mhpig3zkdbcj8gcylzznhz0qfk1ljj";
+ rev = "e1322aa9e8980f0c6f69933cbb61678f0e7ac4f9";
+ sha256 = "0zrb3qscdyxxgz458f9pj1rl1hi8k0adc8c2s2nlxv6a11p5l53w";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/fzf";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/1671e17c99ef1932c6a2e83fc4fa2e4eb6674bc8/recipes/fzf";
sha256 = "0jjzm1gq85fx1gmj6nqaijnjws9bm8hmk40ws3x7fmsp41qq5py0";
name = "fzf";
};
@@ -22874,7 +23305,7 @@
gams-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "gams-mode";
- version = "20160320.1028";
+ version = "20160320.428";
src = fetchFromGitHub {
owner = "ShiroTakeda";
repo = "gams-mode";
@@ -22882,7 +23313,7 @@
sha256 = "16x3fz2ljrmqhjy7w96fhp3j9ja2gib042c363yfrzwa7q5rxzd2";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/gams-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/c895a716636b00c2a158d33aab18f664a8601833/recipes/gams-mode";
sha256 = "0hx9mv4sqskz4nn7aks64hqd4vn3m7b34abzhy9bnmyw6d5zzfci";
name = "gams-mode";
};
@@ -22895,7 +23326,7 @@
gandalf-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "gandalf-theme";
- version = "20130809.1147";
+ version = "20130809.447";
src = fetchFromGitHub {
owner = "ptrv";
repo = "gandalf-theme-emacs";
@@ -22903,7 +23334,7 @@
sha256 = "0sn3y1ilbg532mg941qmzipvzq86q31x86ypaf0h0m4015r7l59v";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/gandalf-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/4354bbc1ec16783dd286d69fd6e4682ae63e28f9/recipes/gandalf-theme";
sha256 = "0wkmsg3pdw98gyp3q508wsqkzw821qsqi796ynm53zd7a4jfap4p";
name = "gandalf-theme";
};
@@ -22915,14 +23346,14 @@
}) {};
gap-mode = callPackage ({ fetchhg, fetchurl, lib, melpaBuild }: melpaBuild {
pname = "gap-mode";
- version = "20160204.1636";
+ version = "20160204.936";
src = fetchhg {
url = "https://bitbucket.com/gvol/gap-mode";
rev = "1de32f2ff384";
sha256 = "1jsw2mywc0y8sf7yl7y3i3l8vs3jv1srjf34lgb5xfz6p8wc5lc0";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/gap-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/5b7972602399f9df9139cff177e38653bb0f43ed/recipes/gap-mode";
sha256 = "07whab3gi4b8gsvy5ijmjnj700lw0rm3bnr1769byhnpi7qpqin2";
name = "gap-mode";
};
@@ -22935,7 +23366,7 @@
gather = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "gather";
- version = "20141230.1438";
+ version = "20141230.738";
src = fetchFromGitHub {
owner = "mhayashi1120";
repo = "Emacs-gather";
@@ -22943,7 +23374,7 @@
sha256 = "0j0dg7nl9kmanayvw0712x5c5x9h48qmqdsyi0pijvgmv8l5slg5";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/gather";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/595e40c7102294684badf86deb72d86bbc3c1426/recipes/gather";
sha256 = "1f0cqqp1a7w8g1pfvzxxb0hjrxq4m79a4n85dncqj2xhjxrkm0xk";
name = "gather";
};
@@ -22956,15 +23387,15 @@
geben = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "geben";
- version = "20160509.2329";
+ version = "20160620.134";
src = fetchFromGitHub {
owner = "ahungry";
repo = "geben";
- rev = "9cfbd4f004ea73489d2010991e2f5372d690d344";
- sha256 = "04s25rgyk8qqalynkgdafzg9c1c3jq6g9c4dq1nm579bmzkp3hhc";
+ rev = "75d15e7d6dfbe4583bc2c4a3c363b2b9f2534242";
+ sha256 = "1ql28cpnlakpnysb8nlphyiz46ahx7w9bs2fghnfvhaz33wjcr9y";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/geben";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/6f8648609e160f7dcefe4a963e8b00475f2fff78/recipes/geben";
sha256 = "1ai1qcx76m8xh80c8zixq9cqbhnqmj3jk3r7lj3ngbiwx4pnlnwf";
name = "geben";
};
@@ -22977,15 +23408,15 @@
geben-helm-projectile = callPackage ({ emacs, fetchFromGitHub, fetchurl, geben, helm-projectile, lib, melpaBuild }:
melpaBuild {
pname = "geben-helm-projectile";
- version = "20160430.748";
+ version = "20160610.1959";
src = fetchFromGitHub {
owner = "ahungry";
repo = "geben-helm-projectile";
- rev = "b2528b2c7c72047aee7956956d7cc5932bd97db8";
- sha256 = "1w2h059bfdxa18sk8xrk2cdssj1s1qdp7mb38plgvndgs6fccwn3";
+ rev = "14db489efcb20c5aa9102288c94cec3c5a87c35d";
+ sha256 = "1nd1jhy393vkn2g65zhygxkpgna0l8gkndxr8jb6qjkkapk58k8l";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/geben-helm-projectile";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/b7d28c45304a69e6ca78b3d00df2563171c027ee/recipes/geben-helm-projectile";
sha256 = "11zhapys6wx2cadflvjimsmilwvjpfd4ihwzzmap8shxpyllsq9r";
name = "geben-helm-projectile";
};
@@ -22998,7 +23429,7 @@
geeknote = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "geeknote";
- version = "20150223.1715";
+ version = "20150223.1015";
src = fetchFromGitHub {
owner = "avendael";
repo = "emacs-geeknote";
@@ -23006,7 +23437,7 @@
sha256 = "14v5gm931dcsfflhsvijr4ihx7cs6jymvnjzph3arvhvqwyqhwgq";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/geeknote";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/65c120f52e900b393b5ceefeca21b0670ca4a4cc/recipes/geeknote";
sha256 = "1ci82fj3layd95lqj2w40y87xps6bs7x05z8ai9m59k244g26m8v";
name = "geeknote";
};
@@ -23019,15 +23450,15 @@
geiser = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "geiser";
- version = "20160529.339";
+ version = "20160617.1154";
src = fetchFromGitHub {
owner = "jaor";
repo = "geiser";
- rev = "d8cb36651aa628075df494c0a1515d98d5a75adf";
- sha256 = "04a4zkj4l8xhf79rb9nprlpw7li795pg6awjs2k2zja4j15ins4p";
+ rev = "8c8583991007aa3a1831310be5d637104a918a43";
+ sha256 = "189j5hzh3ydp31bnazmj0flvx03c3h20gb18scin71j8rkaim0mk";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/geiser";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/b0fe32d24cedd5307b4cccfb08a7095d81d639a0/recipes/geiser";
sha256 = "067rrjvyn5sz60w9h7qn542d9iycm2q4ryvx3n6xlard0dky5596";
name = "geiser";
};
@@ -23040,15 +23471,15 @@
general = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "general";
- version = "20160603.218";
+ version = "20160621.1458";
src = fetchFromGitHub {
owner = "noctuid";
repo = "general.el";
- rev = "93045954e914779fc0cc81c9aa03cde5413acb6d";
- sha256 = "0km0wfp1sd575ymalzqbb9pg7l22lbyb88hgjy58595rrx6xlbqf";
+ rev = "6dd637debd7ef37925ec5e4bd2da4626b8c075b0";
+ sha256 = "1h6f46hlmim17zn2y2c5lqpn4nxzbprqiz5jl5dh3rr37l6qm4iz";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/general";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/d86383b443622d78f6d8ff7b8ac74c8d72879d26/recipes/general";
sha256 = "104ywsfylfymly64p1i3hsy9pnpz3dkpmcq1ygafnld8zjd08gpc";
name = "general";
};
@@ -23061,15 +23492,15 @@
general-close = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "general-close";
- version = "20160501.944";
+ version = "20160617.1301";
src = fetchFromGitHub {
owner = "emacs-berlin";
repo = "general-close";
- rev = "ff6ca92c18cd5292d2b270f862a44b1aaf1d37b7";
- sha256 = "024xshsl1wvjgnik3dc29g29a503rx46j8v9d6hfd597nf0qmz6p";
+ rev = "6d146e524db9bd4cfe5182595b94bc0b4c79e73b";
+ sha256 = "115basil5bwlqvdrvz2s43slzhdnq3v8b3rqs1wx4czv4wl6ha2b";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/general-close";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/641a48f5148df2a19476c9b3302934a604f5c283/recipes/general-close";
sha256 = "17v0aprfvxbygx5517a8hrl88qm5lb9k7523yd0ps5p9l5x96964";
name = "general-close";
};
@@ -23082,7 +23513,7 @@
genrnc = callPackage ({ concurrent, deferred, fetchFromGitHub, fetchurl, lib, log4e, melpaBuild, yaxception }:
melpaBuild {
pname = "genrnc";
- version = "20140612.1437";
+ version = "20140612.737";
src = fetchFromGitHub {
owner = "aki2o";
repo = "emacs-genrnc";
@@ -23090,7 +23521,7 @@
sha256 = "08cw1fa25kbhbq2sp1cpn90bz38i9hjfdj93xf6wvki55b52s0nn";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/genrnc";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/dd2d908ba5fa96d90643091573939e54d9165aaa/recipes/genrnc";
sha256 = "1nwbdscl0yh9j1n421can93m6s8j9dkyb3xmpampr6x528g6z0lm";
name = "genrnc";
};
@@ -23103,7 +23534,7 @@
german-holidays = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "german-holidays";
- version = "20151102.1643";
+ version = "20151102.943";
src = fetchFromGitHub {
owner = "rudolfochrist";
repo = "german-holidays";
@@ -23111,7 +23542,7 @@
sha256 = "0344w4sbd6wlgl13j163v0hzjw9nwhvpr5s7658xsdd90wp4i701";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/german-holidays";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/bf5b3807ff989b13f95e8d6fad2f26a42ff0643c/recipes/german-holidays";
sha256 = "0fgrxdgyl6va6axjc5l4sp90pyqaz5zha1g73xyhbxblshm5dwxn";
name = "german-holidays";
};
@@ -23124,7 +23555,7 @@
gerrit-download = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, magit, melpaBuild }:
melpaBuild {
pname = "gerrit-download";
- version = "20150714.1608";
+ version = "20150714.908";
src = fetchFromGitHub {
owner = "chmouel";
repo = "gerrit-download.el";
@@ -23132,7 +23563,7 @@
sha256 = "1ch8yp0mgk57x0pny9bvkknsqj27fd1rcmpm9s7qpryrwqkp1ix4";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/gerrit-download";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/18725e799efd1694ff2397b6c877f926ac5f4ce8/recipes/gerrit-download";
sha256 = "1rlz0iqgvr8yxnv5qmk29xs1jwf0g0ckzanlyldcxvs7n6mhkjjp";
name = "gerrit-download";
};
@@ -23145,7 +23576,7 @@
ggo-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "ggo-mode";
- version = "20130524.1343";
+ version = "20130524.643";
src = fetchFromGitHub {
owner = "mkjunker";
repo = "ggo-mode";
@@ -23153,7 +23584,7 @@
sha256 = "0bwjiq4a4f5pg0ngvc3lmkk7aki8n9zqfa1dym0lk4vy6yfhcbhp";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ggo-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/e055994c3c3042eab11f11ec916ad5b56689809f/recipes/ggo-mode";
sha256 = "1403x530n90jlfz3lq2vfiqx84cxsrhgs6hhmniq960cjj31q35p";
name = "ggo-mode";
};
@@ -23166,15 +23597,15 @@
ggtags = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "ggtags";
- version = "20151214.2244";
+ version = "20160617.2040";
src = fetchFromGitHub {
owner = "leoliu";
repo = "ggtags";
- rev = "d4fb6d40b71cad3fd5a2141b8456f27e2b2dc731";
- sha256 = "1qjh7av046ax4240iw40hv5fc0k23c36my9hili7fp4y2ak99l8n";
+ rev = "b4ee572a6b2e70d3db6ce11f73e6f87b73a13273";
+ sha256 = "07gbnymgc6lfv1vd37kqfm5bwg5zn5603fs2amrcc6jz3jyqfn0p";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ggtags";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/b158bb1bc2fbe3de61a6b21174eac7b1457edda2/recipes/ggtags";
sha256 = "1cmry4knxbx9257ivhfxsd09z07z3g3wjihi99nrwmhb9h4mpqyw";
name = "ggtags";
};
@@ -23187,15 +23618,15 @@
gh = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, logito, melpaBuild, pcache }:
melpaBuild {
pname = "gh";
- version = "20160223.311";
+ version = "20160626.1549";
src = fetchFromGitHub {
owner = "sigma";
repo = "gh.el";
- rev = "202cbd71f9b7fff1547589fab7e4fba2c79f0fc5";
- sha256 = "10iy5sfyqnz3mrl951j9skxp1s8zm6cqmsadgbxnl9fj3br3ygd1";
+ rev = "20eb3a57bc32e277eb37652f7bc8da600a007154";
+ sha256 = "1h9b7b3zi9c34fd6612sh1a328wvscf88368j8yy4hc7w1nwsbb0";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/gh";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/cae2ac3513e371a256be0f1a7468e38e686c2487/recipes/gh";
sha256 = "1141l8pas3m755yzby4zsan7p81nbnlch3kj1zh69qzjpgqp30c0";
name = "gh";
};
@@ -23208,7 +23639,7 @@
gh-md = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "gh-md";
- version = "20151207.1840";
+ version = "20151207.1140";
src = fetchFromGitHub {
owner = "emacs-pe";
repo = "gh-md.el";
@@ -23216,7 +23647,7 @@
sha256 = "0g3bjpnwgqczw6ddh4mv7pby0zyqzqgywjrjz2ib6hwmdqzyp1s0";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/gh-md";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/2794e59d5fea812ce5b376d3d9609f50f6bca40e/recipes/gh-md";
sha256 = "0b72fl1hj7gkqlqrr8hklq0w3ryqqqfn5qpb7a9i6q0vh98652xm";
name = "gh-md";
};
@@ -23229,7 +23660,7 @@
ghc = callPackage ({ fetchFromGitHub, fetchurl, haskell-mode, lib, melpaBuild }:
melpaBuild {
pname = "ghc";
- version = "20160108.1601";
+ version = "20160108.901";
src = fetchFromGitHub {
owner = "DanielG";
repo = "ghc-mod";
@@ -23237,7 +23668,7 @@
sha256 = "0zm8x7bclh5sdfgkj6jv6id2mjfvb8bb4iy1kmk83am076bj5ysh";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ghc";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/7fabdb05de9b8ec18a3a566f99688b50443b6b44/recipes/ghc";
sha256 = "02nc7a9khqpd4ca2snam8dq72m53q8x7v5awx56bjq31z6vcmav5";
name = "ghc";
};
@@ -23250,7 +23681,7 @@
ghc-imported-from = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "ghc-imported-from";
- version = "20141124.2032";
+ version = "20141124.1332";
src = fetchFromGitHub {
owner = "david-christiansen";
repo = "ghc-imported-from-el";
@@ -23258,7 +23689,7 @@
sha256 = "1ywwyc2kz1c1s26c412nmzh55cinh84cfiazyyi3jsy5zzwhrbhi";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ghc-imported-from";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/cfbd335054aff49d4a46f73bee881b7a00714d3c/recipes/ghc-imported-from";
sha256 = "10cxz4c341lknyz4ns63bri00mya39278xav12c73if03llsyzy5";
name = "ghc-imported-from";
};
@@ -23271,7 +23702,7 @@
ghci-completion = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "ghci-completion";
- version = "20151125.1357";
+ version = "20151125.657";
src = fetchFromGitHub {
owner = "manzyuk";
repo = "ghci-completion";
@@ -23279,7 +23710,7 @@
sha256 = "17fl3k2sqiavbv3bp6rnp3p89j6pnpkkp7wi26pzzk4675r5k45q";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ghci-completion";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/804aa2f9088dfc1b48b59aaa72a61f82fb5be971/recipes/ghci-completion";
sha256 = "1a6k47z5kmacj1s5479393jyj27bjx0911yaqfmmwg2hr0yz7vll";
name = "ghci-completion";
};
@@ -23292,7 +23723,7 @@
gherkin-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "gherkin-mode";
- version = "20140107.1704";
+ version = "20140107.1004";
src = fetchFromGitHub {
owner = "candera";
repo = "gherkin-mode";
@@ -23300,7 +23731,7 @@
sha256 = "0lcbyw6yrl6c8py5v2hqghcbsf9cbiplzil90al4lwqps7rw09a8";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/gherkin-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/82d80becedead8db441eed6f7856ca64d78815e2/recipes/gherkin-mode";
sha256 = "0dhrsz24hn0sdf22wpmzbkn66g4540vdkl03pc27kv21gwa9ixxv";
name = "gherkin-mode";
};
@@ -23313,7 +23744,7 @@
ghost-blog = callPackage ({ fetchFromGitHub, fetchurl, lib, markdown-mode, melpaBuild }:
melpaBuild {
pname = "ghost-blog";
- version = "20160526.1157";
+ version = "20160526.457";
src = fetchFromGitHub {
owner = "javaguirre";
repo = "ghost-blog-emacs";
@@ -23321,7 +23752,7 @@
sha256 = "1br27p8kqnj6gfii6xp37yd3rja876vhpcf784n98qhnkd7a63q1";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ghost-blog";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/9b589edfacb807fb17936e139499bdd9673dad94/recipes/ghost-blog";
sha256 = "1wqi7r5jr3n0mgax7lddq5h3jfkcq69vvj02a6078vzd2bfxg9ia";
name = "ghost-blog";
};
@@ -23334,7 +23765,7 @@
ghq = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "ghq";
- version = "20151130.1018";
+ version = "20151130.318";
src = fetchFromGitHub {
owner = "rcoedo";
repo = "emacs-ghq";
@@ -23342,7 +23773,7 @@
sha256 = "1aj5j0y244r1fbbbl0lzb53wnyhljw91kb4n3hi2gagm7zwp8jcf";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ghq";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/a9daa3b0039f6b296b8176523cffbbe27506bb02/recipes/ghq";
sha256 = "0prvywcgwdhx5pw66rv5kkfriahal2mli2ibam5np3z6bwcq4ngh";
name = "ghq";
};
@@ -23355,7 +23786,7 @@
gildas-mode = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, polymode }:
melpaBuild {
pname = "gildas-mode";
- version = "20150920.1";
+ version = "20150919.1701";
src = fetchFromGitHub {
owner = "smaret";
repo = "gildas-mode";
@@ -23363,7 +23794,7 @@
sha256 = "1na8pp1g940zi22jgqi6drsm12db0hyw99v493i5j1p2y67c4hxw";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/gildas-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/f43d3aec955d31023056baba971805f0ebbb6702/recipes/gildas-mode";
sha256 = "0bc3d8bnvg1w2chrr4rp9daq1x8p41qgklrniq0bbkr2h93cmkgv";
name = "gildas-mode";
};
@@ -23376,7 +23807,7 @@
gist = callPackage ({ emacs, fetchFromGitHub, fetchurl, gh, lib, melpaBuild }:
melpaBuild {
pname = "gist";
- version = "20160119.156";
+ version = "20160118.1856";
src = fetchFromGitHub {
owner = "defunkt";
repo = "gist.el";
@@ -23384,7 +23815,7 @@
sha256 = "18433gjhra0gqrwnxssd3njpxbvqhh64bds9rym1vq9l7w09z024";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/gist";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/cae2ac3513e371a256be0f1a7468e38e686c2487/recipes/gist";
sha256 = "053fl8aw0ram9wsabzvmlm5w2klwd2pgcn2w9r1yqfs4xqja5sd3";
name = "gist";
};
@@ -23397,7 +23828,7 @@
git = callPackage ({ dash, f, fetchFromGitHub, fetchurl, lib, melpaBuild, s }:
melpaBuild {
pname = "git";
- version = "20140128.1141";
+ version = "20140128.441";
src = fetchFromGitHub {
owner = "rejeep";
repo = "git.el";
@@ -23405,7 +23836,7 @@
sha256 = "0471xm0h6jkmxnrcqy5agq42i8immdb2qpnw7q7czrbsl521al8d";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/git";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/ce19d2716416295966716db47241a0e37b412ab5/recipes/git";
sha256 = "1nd2yvfgin13m368gjn7xah99glspnam4g4fh348x4makxcaw8w5";
name = "git";
};
@@ -23418,7 +23849,7 @@
git-annex = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "git-annex";
- version = "20160215.2011";
+ version = "20160215.1311";
src = fetchFromGitHub {
owner = "jwiegley";
repo = "git-annex-el";
@@ -23426,7 +23857,7 @@
sha256 = "0d2blcnyqd1br7zhwprdxpx2jphjhsb4jgaw9dr4gvv0xdb2sr87";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/git-annex";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/9c91e16bb9e92db9dc9be6a7af3944c3290d2f14/recipes/git-annex";
sha256 = "0194y24vq1w6m2cjgqgx9dqp99cq8y9licyry2zxa5brbrsxi94l";
name = "git-annex";
};
@@ -23439,7 +23870,7 @@
git-auto-commit-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "git-auto-commit-mode";
- version = "20150404.1651";
+ version = "20150404.951";
src = fetchFromGitHub {
owner = "ryuslash";
repo = "git-auto-commit-mode";
@@ -23447,7 +23878,7 @@
sha256 = "0psmr7749nzxln4b500sl3vrf24x3qijp12ir0i5z4x25k72hrlh";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/git-auto-commit-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/5660fb76ce93e5fe56227698d079c6994ef3305f/recipes/git-auto-commit-mode";
sha256 = "0nf4n63xnzcsizjk1yl8qvqj9wjdqy57kvn6r736xvsxwzd44xgl";
name = "git-auto-commit-mode";
};
@@ -23460,7 +23891,7 @@
git-blame = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "git-blame";
- version = "20110509.1826";
+ version = "20110509.1126";
src = fetchFromGitHub {
owner = "tsgates";
repo = "git-emacs";
@@ -23468,7 +23899,7 @@
sha256 = "0g839pzmipjlv32r0gh166jn3na5d0wh2w1sia2k4yx1w0ch1bsx";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/git-blame";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/ca7bf43ef8893bf04e9658390e306ef69e80a156/recipes/git-blame";
sha256 = "0glmnj77vya8ivjin4qja7lis67wyibzy9k6z8b54z7mqf9ikx06";
name = "git-blame";
};
@@ -23481,7 +23912,7 @@
git-command = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, term-run, with-editor }:
melpaBuild {
pname = "git-command";
- version = "20160111.1403";
+ version = "20160111.703";
src = fetchFromGitHub {
owner = "10sr";
repo = "git-command-el";
@@ -23489,7 +23920,7 @@
sha256 = "1irqmypgc4l1jlzj4g65ihpic3ffnnkcg1hlysj7qpip5nbflqgl";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/git-command";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/8a55d697bc95a7026c7788c13e4765e1b71075e3/recipes/git-command";
sha256 = "1hsxak63y6648n0jkzl5ajxg45w84qq8vljvjh0bmwfrbb67kwbg";
name = "git-command";
};
@@ -23502,15 +23933,15 @@
git-commit = callPackage ({ dash, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, with-editor }:
melpaBuild {
pname = "git-commit";
- version = "20160519.1850";
+ version = "20160519.1150";
src = fetchFromGitHub {
owner = "magit";
repo = "magit";
- rev = "7ceca0af16ab4a7c16298b11640fc331f17b29f2";
- sha256 = "0sdg30lcisrc1y2n6hjra3c7v6s7xjfbp8ay6mj3x7ynjqp7a65c";
+ rev = "5f57495f65fea169282b23233f87c4af07a60e4c";
+ sha256 = "0x5k1q4vajpb9658jl0ikjm94pq5gnk9y55px72kdmh9hm8nx5iq";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/git-commit";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/cec5af50ae7634cc566adfbfdf0f95c3e2951c0c/recipes/git-commit";
sha256 = "1i7122fydqga68cilgzir80xfq77hnrw75zrvn52mjymfli6aza2";
name = "git-commit";
};
@@ -23523,7 +23954,7 @@
git-commit-insert-issue = callPackage ({ fetchFromGitLab, fetchurl, github-issues, helm, lib, melpaBuild, projectile, s }:
melpaBuild {
pname = "git-commit-insert-issue";
- version = "20160122.1649";
+ version = "20160122.949";
src = fetchFromGitLab {
owner = "emacs-stuff";
repo = "git-commit-insert-issue";
@@ -23531,7 +23962,7 @@
sha256 = "1vdyrqg2w5q4xmazqqh2ymjnrp9p1x5172nllwryz43jvvxaw05s";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/git-commit-insert-issue";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/2356f63464e06c37514447c315c23735da22383a/recipes/git-commit-insert-issue";
sha256 = "0mhpszm2y178dxgjv3kh2n744hg2kd60h16zbgmjf4f8228xw8j3";
name = "git-commit-insert-issue";
};
@@ -23544,7 +23975,7 @@
git-dwim = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "git-dwim";
- version = "20100718.2336";
+ version = "20100718.1636";
src = fetchFromGitHub {
owner = "rubikitch";
repo = "emacs-git-dwim";
@@ -23552,7 +23983,7 @@
sha256 = "12k0bh0mrwlkrsfhc0pm9b1xvdks20smarsmvzg4zi5060ds1pzg";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/git-dwim";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/f8e4328cae9b4759a75da0b26ea8b68821bc71af/recipes/git-dwim";
sha256 = "0xcigah06ak5wdma4ddcix58q2v5hszncb65f272m4lc2racgsfl";
name = "git-dwim";
};
@@ -23565,15 +23996,15 @@
git-gutter = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "git-gutter";
- version = "20160521.155";
+ version = "20160702.554";
src = fetchFromGitHub {
owner = "syohex";
repo = "emacs-git-gutter";
- rev = "c40683e9c5931dd67f89ad9ef8625de28752f00c";
- sha256 = "1gr57n6chhbzazqxb0vwsddais14zpg9c5qpfn6igw0qzhkxn8x0";
+ rev = "1a4ee2c1971b2f17ede0298326a49593c4a35d27";
+ sha256 = "0k70afd98qsw0wm75gw584y1nm9hfpflqb85dg8s40isjxcrmbil";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/git-gutter";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/81f0f525680fea98e804f39dbde1dada887e8821/recipes/git-gutter";
sha256 = "19s344i95piixlzq4mjgmgjw7cy8af02z6hg89jjjdbxrfl4i2fg";
name = "git-gutter";
};
@@ -23586,7 +24017,7 @@
git-gutter-fringe = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, fringe-helper, git-gutter, lib, melpaBuild }:
melpaBuild {
pname = "git-gutter-fringe";
- version = "20160521.156";
+ version = "20160520.1856";
src = fetchFromGitHub {
owner = "syohex";
repo = "emacs-git-gutter-fringe";
@@ -23594,7 +24025,7 @@
sha256 = "18jpa5i99x0gqizs2qbqr8c1jlza8x9vpb6wg9zqd4np1p6q4lan";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/git-gutter-fringe";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/81f0f525680fea98e804f39dbde1dada887e8821/recipes/git-gutter-fringe";
sha256 = "10k07dzmkxsxzwc70vpv05rxjyps9494y6k7yhlv8d46x7xjyp0z";
name = "git-gutter-fringe";
};
@@ -23607,7 +24038,7 @@
git-gutter-fringe-plus = callPackage ({ fetchFromGitHub, fetchurl, fringe-helper, git-gutter-plus, lib, melpaBuild }:
melpaBuild {
pname = "git-gutter-fringe-plus";
- version = "20140729.1303";
+ version = "20140729.603";
src = fetchFromGitHub {
owner = "nonsequitur";
repo = "git-gutter-fringe-plus";
@@ -23615,7 +24046,7 @@
sha256 = "1rsj193zpblndki4khjjlwl2njxb329d42l75ki55msxifqrn4fi";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/git-gutter-fringe+";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/ad46c349d13f7d40db706b487319ede40b96b09c/recipes/git-gutter-fringe+";
sha256 = "1zkjb8p08cq2nqskn79rjszlhp9mrblplgamgi66yskz8qb1bgcc";
name = "git-gutter-fringe-plus";
};
@@ -23628,7 +24059,7 @@
git-gutter-plus = callPackage ({ dash, fetchFromGitHub, fetchurl, git-commit, lib, melpaBuild }:
melpaBuild {
pname = "git-gutter-plus";
- version = "20151204.1823";
+ version = "20151204.1123";
src = fetchFromGitHub {
owner = "nonsequitur";
repo = "git-gutter-plus";
@@ -23636,7 +24067,7 @@
sha256 = "0bhrrgdzzj8gwxjx7b2kibp1b6s0vgvykfg0n47iq49m6rqkgi5q";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/git-gutter+";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/b2db25d23c2a1a4f38867aac25d687a150e95c2b/recipes/git-gutter+";
sha256 = "1w78p5cz6kyl9kmndgvwnfrs80ha707s8952hycrihgfb6lixmp0";
name = "git-gutter-plus";
};
@@ -23649,7 +24080,7 @@
git-lens = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "git-lens";
- version = "20160204.737";
+ version = "20160204.37";
src = fetchFromGitHub {
owner = "pidu";
repo = "git-lens";
@@ -23657,7 +24088,7 @@
sha256 = "02p73q0kl9z44b9a2bhqg03mkqx6gf61n88qlwwg4420dxrf7sbc";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/git-lens";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/66fd7c0642e8e61b883d2030f88892d039380475/recipes/git-lens";
sha256 = "1vv3s89vk5ncinqh2f724z0qbbzp8g4y5y670ryy56w1l6v2acfb";
name = "git-lens";
};
@@ -23670,7 +24101,7 @@
git-link = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "git-link";
- version = "20160402.350";
+ version = "20160401.2050";
src = fetchFromGitHub {
owner = "sshaw";
repo = "git-link";
@@ -23678,7 +24109,7 @@
sha256 = "0a1kxdz05ly9wbzyxcb79xlmy11q38xplf5s8w8klmyajdn43g1j";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/git-link";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/1385443585e628e3d4efb3badb7611e9d653e0c9/recipes/git-link";
sha256 = "1vqabnmdw8pxd84c15ghh1rnglwb5i4zxicvpkg1ci8xalayn1c7";
name = "git-link";
};
@@ -23691,7 +24122,7 @@
git-messenger = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild, popup }:
melpaBuild {
pname = "git-messenger";
- version = "20160602.1610";
+ version = "20160602.910";
src = fetchFromGitHub {
owner = "syohex";
repo = "emacs-git-messenger";
@@ -23699,7 +24130,7 @@
sha256 = "05wm9hl1fi2dav6hx02j59vnljn5awbk3i32xvv8qlpkhv6fk4ld";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/git-messenger";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/e791293133f30e5d96c4b29e972f9016c06c476d/recipes/git-messenger";
sha256 = "1rnqsv389why13cy6462vyq12qc2zk58p01m3hsazp1gpfw2hfzn";
name = "git-messenger";
};
@@ -23712,7 +24143,7 @@
git-ps1-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "git-ps1-mode";
- version = "20151228.1002";
+ version = "20151228.302";
src = fetchFromGitHub {
owner = "10sr";
repo = "git-ps1-mode-el";
@@ -23720,7 +24151,7 @@
sha256 = "1v0jk35ynfg9hivw9gdz2snk73pac67xlfx7av8argdcss1bmyb0";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/git-ps1-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/ea177b5ea168828881bd8dcd29ef6b4cb81317f0/recipes/git-ps1-mode";
sha256 = "15gswi9s0m3hrsl1qqyjnjgbglsai95klbdp51h3pcq7zj22wkn6";
name = "git-ps1-mode";
};
@@ -23730,22 +24161,22 @@
license = lib.licenses.free;
};
}) {};
- git-timemachine = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
+ git-timemachine = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "git-timemachine";
- version = "20160323.2040";
+ version = "20160607.1428";
src = fetchFromGitHub {
owner = "pidu";
repo = "git-timemachine";
- rev = "2e1674b1b5f2fcc485e19bb259eb2e4ab51aa914";
- sha256 = "1iz5cy3fc7y56s4005syxnb1y3sn1q0s0nlpa01bnxksrfy5zahl";
+ rev = "96a72dc0f86e420629760915db99533f4301e759";
+ sha256 = "1718d20f87wypfsrxyihna7mqpy94fl44hhdw1l42v1iizk9157p";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/git-timemachine";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/41e95e41fc429b688f0852f58ec6ce80303b68ce/recipes/git-timemachine";
sha256 = "0nhl3g31r4a8j7rp5kbh17ixi16w32h80bc92vvjj3dlmk996nzq";
name = "git-timemachine";
};
- packageRequires = [];
+ packageRequires = [ emacs ];
meta = {
homepage = "https://melpa.org/#/git-timemachine";
license = lib.licenses.free;
@@ -23754,7 +24185,7 @@
git-wip-timemachine = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, s }:
melpaBuild {
pname = "git-wip-timemachine";
- version = "20150408.1206";
+ version = "20150408.506";
src = fetchFromGitHub {
owner = "itsjeyd";
repo = "git-wip-timemachine";
@@ -23762,7 +24193,7 @@
sha256 = "1ivnf4vsqk6c7iw1cid7q1hxp7047ajd1mpg0fl002d7m7ginhyl";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/git-wip-timemachine";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/81b5dd5765f52efdb88fdc14f48af641a18b3dcb/recipes/git-wip-timemachine";
sha256 = "02fi51k6l23cgnwjp507ylkiwb8azmnhc0fips68nwn9dghzp6dw";
name = "git-wip-timemachine";
};
@@ -23775,7 +24206,7 @@
gitattributes-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "gitattributes-mode";
- version = "20160319.1102";
+ version = "20160319.502";
src = fetchFromGitHub {
owner = "magit";
repo = "git-modes";
@@ -23783,7 +24214,7 @@
sha256 = "0ksqfr0l415ynhxpqpcb84bk2bapvczwnpikp45kmfqq91p61xfc";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/gitattributes-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/4b4e2ddd2a80875afc0fc654052e6cbff2f3777f/recipes/gitattributes-mode";
sha256 = "1gjs0pjh6ap0h54savamzx94lq6vqrg58jxqaq5n5qplrbg15a6x";
name = "gitattributes-mode";
};
@@ -23796,7 +24227,7 @@
gitconfig = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "gitconfig";
- version = "20130718.1135";
+ version = "20130718.435";
src = fetchFromGitHub {
owner = "tonini";
repo = "gitconfig.el";
@@ -23804,7 +24235,7 @@
sha256 = "184q3vsxa9rvhc1n57ms47r73f3zap25wswzi66rm6rmfi2k7678";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/gitconfig";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/318989b10a5bf5b961b3c607730377923c8fb05b/recipes/gitconfig";
sha256 = "126znl1c4vwgskj7ka9id8v2bdrdn5nkyx3mmc6cz9ylc27ainm7";
name = "gitconfig";
};
@@ -23817,7 +24248,7 @@
gitconfig-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "gitconfig-mode";
- version = "20160319.1102";
+ version = "20160319.502";
src = fetchFromGitHub {
owner = "magit";
repo = "git-modes";
@@ -23825,7 +24256,7 @@
sha256 = "0ksqfr0l415ynhxpqpcb84bk2bapvczwnpikp45kmfqq91p61xfc";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/gitconfig-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/44a37f59b87f59a587f6681e7aadfabf137c98d7/recipes/gitconfig-mode";
sha256 = "0hqky40kcgxdnghnf56gpi0xp7ik45ssia1x84v0mvfwqc50dgn1";
name = "gitconfig-mode";
};
@@ -23838,7 +24269,7 @@
github-browse-file = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "github-browse-file";
- version = "20160205.1527";
+ version = "20160205.827";
src = fetchFromGitHub {
owner = "osener";
repo = "github-browse-file";
@@ -23846,7 +24277,7 @@
sha256 = "0i3dkm0j4gh21b7r5vxr6dddql5rj7lg8xlaairvild0ccf3bhdl";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/github-browse-file";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/f8bca60348fc5e2ad55663e69b8690093cf861ca/recipes/github-browse-file";
sha256 = "03xvgxlw7wmfby898din7dfcg87ihahkhlav1n7qklw6qi7skjcr";
name = "github-browse-file";
};
@@ -23859,15 +24290,15 @@
github-clone = callPackage ({ emacs, fetchFromGitHub, fetchurl, gh, lib, magit, melpaBuild }:
melpaBuild {
pname = "github-clone";
- version = "20160114.1553";
+ version = "20160622.2210";
src = fetchFromGitHub {
owner = "dgtized";
repo = "github-clone.el";
- rev = "f51340358e957c46faab5278cbb83cd6c6eb38c6";
- sha256 = "000m6w2akx1z1lb32nvy6qzyggpcvlbdjh1i8419rzaidxf5gaxg";
+ rev = "467b40ca60a6c26257466ebc43c74414df7f19cc";
+ sha256 = "1gdx9sl509vn4bagqg8vi1wvj1h3ryfvd5ggs2mv9rry6x9dg823";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/github-clone";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/ba11d6a5cc2fbc76037687c842f90dc815a6468e/recipes/github-clone";
sha256 = "0ffrm4lmcj3d9kx3g2d5xbiih7hn4frs0prjrvcjq8acvsbc50q9";
name = "github-clone";
};
@@ -23877,22 +24308,22 @@
license = lib.licenses.free;
};
}) {};
- github-issues = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
+ github-issues = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "github-issues";
- version = "20120426.35";
+ version = "20160616.1341";
src = fetchFromGitHub {
owner = "inkel";
repo = "github-issues.el";
- rev = "ebe83ec18e7b874b05e7bc9c25b8cf0800ad20c1";
- sha256 = "065gpnllsk4x574fn9d6m4ajxl7mj5w2w5g9in421sp5r80fp9fv";
+ rev = "816f7712b0eb05bffec0add3507302862d2629c4";
+ sha256 = "1x6jbnx9lwgy64nl9lpp01xcj9cbx5fq435iwhiarjdsm4kvixb5";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/github-issues";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/f761e76236e9372d5fae6b5c5dcb1992c5d64d37/recipes/github-issues";
sha256 = "12c6yb3v7xwkzc51binfgl4jb3sm3al5nlrklbsxhn44alazsvb0";
name = "github-issues";
};
- packageRequires = [];
+ packageRequires = [ emacs ];
meta = {
homepage = "https://melpa.org/#/github-issues";
license = lib.licenses.free;
@@ -23901,15 +24332,15 @@
github-notifier = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "github-notifier";
- version = "20160505.702";
+ version = "20160702.2312";
src = fetchFromGitHub {
owner = "xuchunyang";
repo = "github-notifier.el";
- rev = "89b9a42e932beb91da012b20a1bf1567336bfef4";
- sha256 = "0n5mrd2la44r66bkqs0r3298qn5yybs80nwsy54pzlaz88v899bl";
+ rev = "7fa3e5fd519711bcc241af73abc72fd0b6c1b3a9";
+ sha256 = "0mi2yn6b1vhs4zdwqzyifi20bjy3ac0ycvza7ybvwanbkxb1kmfh";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/github-notifier";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/c09f4e7e8a84a241881d214e8359f8a50ab14ddf/recipes/github-notifier";
sha256 = "1jqc2wx1pvkca8syj97ds32404szm0wn12b7zpa98265sg3n64nw";
name = "github-notifier";
};
@@ -23919,10 +24350,31 @@
license = lib.licenses.free;
};
}) {};
+ github-search = callPackage ({ fetchFromGitHub, fetchurl, gh, lib, magit, melpaBuild }:
+ melpaBuild {
+ pname = "github-search";
+ version = "20160621.1856";
+ src = fetchFromGitHub {
+ owner = "IvanMalison";
+ repo = "github-search";
+ rev = "67b1ae88af4d061334e63a9336ca2ced322e172a";
+ sha256 = "1zx4hb88yf3j1h75j35qs69nmw58jvbiqz9k5kkgwrnadj1qkjvd";
+ };
+ recipeFile = fetchurl {
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/733a808400858513137e0e3d7d38b5b25e8ddc5a/recipes/github-search";
+ sha256 = "1pwrzbbwnq0il5494561fyvkr0vmm5jqlvpffgkk28c54vs7ms0b";
+ name = "github-search";
+ };
+ packageRequires = [ gh magit ];
+ meta = {
+ homepage = "https://melpa.org/#/github-search";
+ license = lib.licenses.free;
+ };
+ }) {};
gitignore-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "gitignore-mode";
- version = "20160319.1102";
+ version = "20160319.502";
src = fetchFromGitHub {
owner = "magit";
repo = "git-modes";
@@ -23930,7 +24382,7 @@
sha256 = "0ksqfr0l415ynhxpqpcb84bk2bapvczwnpikp45kmfqq91p61xfc";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/gitignore-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/44a37f59b87f59a587f6681e7aadfabf137c98d7/recipes/gitignore-mode";
sha256 = "1i98ribmnxr4hwphd95f9hcfm5wfwgdbcxw3g0w17ws7z0ir61mn";
name = "gitignore-mode";
};
@@ -23943,7 +24395,7 @@
gitlab = callPackage ({ dash, fetchFromGitHub, fetchurl, lib, melpaBuild, pkg-info, request, s }:
melpaBuild {
pname = "gitlab";
- version = "20160519.1203";
+ version = "20160519.503";
src = fetchFromGitHub {
owner = "nlamirault";
repo = "emacs-gitlab";
@@ -23951,7 +24403,7 @@
sha256 = "0ywjrgafpl4cnrykx9yysazr7hkd2pxk67h065f8z3mid6cgh1wa";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/gitlab";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/1d012991188956f6e06c37d504b0d06ab31487b9/recipes/gitlab";
sha256 = "0vxsqfnipgapnd2ijvdnkspk68dlnki3pkpkzg2h6hyazmzrsqnq";
name = "gitlab";
};
@@ -23964,15 +24416,15 @@
gitolite-clone = callPackage ({ dash, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, pcache, s }:
melpaBuild {
pname = "gitolite-clone";
- version = "20150819.1539";
+ version = "20160609.1855";
src = fetchFromGitHub {
owner = "IvanMalison";
repo = "gitolite-clone";
- rev = "36e8dbc2906b7bfce382db64211d982c9719ab59";
- sha256 = "1h66wywhl5ipryx0s0w1vxp3ydg57zpizjz61wvf6qd8zn07nhng";
+ rev = "d8a4c2875c984e51137c980b5773f42703602721";
+ sha256 = "11i9hxj76869w1z9xn7wq370v56hx5hm4d7msn4zgp64glpa66j9";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/gitolite-clone";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/888b0cc58375c3eefac94a34e67130ff95822aad/recipes/gitolite-clone";
sha256 = "1la1nrfns9j6wii6lriwwsd44cx3ksyhh09h8lf9dai6wp67kjac";
name = "gitolite-clone";
};
@@ -23985,7 +24437,7 @@
gitty = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "gitty";
- version = "20151121.848";
+ version = "20151121.148";
src = fetchFromGitHub {
owner = "jorgenschaefer";
repo = "gitty";
@@ -23993,7 +24445,7 @@
sha256 = "0y8msn22lzfwh7d417abay9by2zhs9zswhcj8a0l7ln2ksljl500";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/gitty";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/01d314eac1da048fe67eb907c42734f495462c20/recipes/gitty";
sha256 = "1z6w4vbn0aaajyqanc7h1m5ali7dbrnh4ngw87a2x2pkxarx6x16";
name = "gitty";
};
@@ -24006,7 +24458,7 @@
glsl-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "glsl-mode";
- version = "20160209.1733";
+ version = "20160209.1033";
src = fetchFromGitHub {
owner = "jimhourihan";
repo = "glsl-mode";
@@ -24014,7 +24466,7 @@
sha256 = "14ziljq34k585scwn606hqbkcvy8h1iylsc4h2n1grfmm8ilf0ws";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/glsl-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/c416822d54df436f29dcf9a5f26398685fdc17a2/recipes/glsl-mode";
sha256 = "0d05qb60k5f7wwpsp3amzghayfbwcha6rh8nrslhnklpjbg87aw5";
name = "glsl-mode";
};
@@ -24027,15 +24479,15 @@
gmail-message-mode = callPackage ({ fetchFromGitHub, fetchurl, ham-mode, lib, melpaBuild }:
melpaBuild {
pname = "gmail-message-mode";
- version = "20140815.1716";
+ version = "20160627.1347";
src = fetchFromGitHub {
owner = "Malabarba";
repo = "gmail-mode";
- rev = "2e0286e4a3c80889692f8da63a3b15d7a96abdea";
- sha256 = "0j3pay3gd1wdnpc853gy5j68hbavrwy6cc2bgmd12ag29xki3hcg";
+ rev = "ec36672a9dc93c09ebe2f77597b498d11883d008";
+ sha256 = "0xcdd3abcrqr7nabdmmh0kgfar64hhgnrhsiwg3q201cymhnv49p";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/gmail-message-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/1e6aed365c42987d64d0cd9a8a6178339b1b39e8/recipes/gmail-message-mode";
sha256 = "0py0i7b893ihb8l1hmk3jfl0xil450znadcd18q7svr3zl2m0gkk";
name = "gmail-message-mode";
};
@@ -24048,7 +24500,7 @@
gmail2bbdb = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "gmail2bbdb";
- version = "20150910.339";
+ version = "20150909.2039";
src = fetchFromGitHub {
owner = "redguardtoo";
repo = "gmail2bbdb";
@@ -24056,7 +24508,7 @@
sha256 = "01hhanijqlh741f9wh6xn88qvghwqnfj5j0rvys5mghssfspqs3z";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/gmail2bbdb";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/fb3c88b20a7614504165cd5fb459b0a9d5c73f60/recipes/gmail2bbdb";
sha256 = "03jhrk4vpjim3ybzjxy7s9r1cgjysj9vlc4criz5k0w7vqz3r28j";
name = "gmail2bbdb";
};
@@ -24069,7 +24521,7 @@
gmpl-mode = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "gmpl-mode";
- version = "20151116.2049";
+ version = "20151116.1349";
src = fetchFromGitHub {
owner = "cute-jumper";
repo = "gmpl-mode";
@@ -24077,7 +24529,7 @@
sha256 = "08d6j5wws2ngngf3p31ic0lrsrp9i9lkpr3nxgmiiadm617x8hv4";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/gmpl-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/c89a523f87db358c477e5840b0e043e9f253e640/recipes/gmpl-mode";
sha256 = "1f60xim8h85jmqpvgfg402ff8mjd66gla8fa0cwi7l18ijnjblpz";
name = "gmpl-mode";
};
@@ -24090,7 +24542,7 @@
gnome-calendar = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "gnome-calendar";
- version = "20140112.1259";
+ version = "20140112.559";
src = fetchFromGitHub {
owner = "NicolasPetton";
repo = "gnome-calendar.el";
@@ -24098,7 +24550,7 @@
sha256 = "160qm8xf0yghygb52p8cykhb5vpg9ww3gjprcdkcxplr4b230nnc";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/gnome-calendar";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/8e497668d65f0eabd15e39b7492adb395a5a8e75/recipes/gnome-calendar";
sha256 = "00clamlm5b42zqggxywdqrf6s2dnsxir5rpd8mjpyc502kqmsfn6";
name = "gnome-calendar";
};
@@ -24111,7 +24563,7 @@
gnomenm = callPackage ({ dash, fetchFromGitHub, fetchurl, kv, lib, melpaBuild, s }:
melpaBuild {
pname = "gnomenm";
- version = "20150316.2018";
+ version = "20150316.1418";
src = fetchFromGitHub {
owner = "nicferrier";
repo = "emacs-nm";
@@ -24119,7 +24571,7 @@
sha256 = "1svnvm9fqqx4mrk9jjn11pzqwk71w8kyyd9wwxam8gz22ykw5jb2";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/gnomenm";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/dd98221d3498528efb0f2d943102d32ebd7b34b3/recipes/gnomenm";
sha256 = "01vmr64j6hcvdbzg945c5a2g4fiidl18dsk4px7mdf85cv45kzqm";
name = "gnomenm";
};
@@ -24132,7 +24584,7 @@
gntp = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "gntp";
- version = "20141025.450";
+ version = "20141024.2150";
src = fetchFromGitHub {
owner = "tekai";
repo = "gntp.el";
@@ -24140,7 +24592,7 @@
sha256 = "1nvyjjjydrimpxy4cpg90si7sr8lmldbhlcm2mx8npklp9pn5y3a";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/gntp";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/c69a148d3b72d1be6ea10100a8e0cbbd918baa9c/recipes/gntp";
sha256 = "1ywj3p082g54dcpy8q4jnkqfr12npikx8yz14r0njxdlr0janh4f";
name = "gntp";
};
@@ -24153,15 +24605,15 @@
gnu-apl-mode = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "gnu-apl-mode";
- version = "20160506.640";
+ version = "20160621.2308";
src = fetchFromGitHub {
owner = "lokedhs";
repo = "gnu-apl-mode";
- rev = "3187c005aff5c3d8e217797991a91436cdf11a40";
- sha256 = "15v14ff1639i3i1rgjh72qgq7r70bdy9li28r3rsrjbaiizyrbs8";
+ rev = "1f454fa685c1868a47d6f56eefae90237f0fc3cd";
+ sha256 = "0qskd7aak3z1by8rhq651ss4n3gaqp7nx911hk889cz86p1f8gnm";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/gnu-apl-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/369a55301bba0c4f7ce27f6e141944a523beaa0f/recipes/gnu-apl-mode";
sha256 = "0971pzc14gw8f0b4lzvicxww1k3wc58gbr3fd0qvdra2jifk2is6";
name = "gnu-apl-mode";
};
@@ -24174,7 +24626,7 @@
gnuplot = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "gnuplot";
- version = "20141231.2237";
+ version = "20141231.1537";
src = fetchFromGitHub {
owner = "bruceravel";
repo = "gnuplot-mode";
@@ -24182,7 +24634,7 @@
sha256 = "1gm116479gdwc4hr3nyv1id692dcd1sx7w2a80pvmgr35ybccn7c";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/gnuplot";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/78be03893e4b0502ce999375e5630d32bda56ac1/recipes/gnuplot";
sha256 = "06c5gqf02fkra8c52xck1lqvf4yg45zfibyf9zqmnbwk7p2jxrds";
name = "gnuplot";
};
@@ -24195,7 +24647,7 @@
gnuplot-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "gnuplot-mode";
- version = "20151123.839";
+ version = "20151123.139";
src = fetchFromGitHub {
owner = "mkmcc";
repo = "gnuplot-mode";
@@ -24203,7 +24655,7 @@
sha256 = "1pss9a60dh6i277pkp8j5g1v5h7qlh11w2fki50qcp0zglyw1kaq";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/gnuplot-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/d801a2e0ba5ae7c65b5d312fbf41261278a8b1ba/recipes/gnuplot-mode";
sha256 = "1avpik06cmi4h6v6039c64b4zw1r1nsg3nrryl254gl881pysfxg";
name = "gnuplot-mode";
};
@@ -24216,7 +24668,7 @@
gnus-alias = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "gnus-alias";
- version = "20150316.142";
+ version = "20150315.1942";
src = fetchFromGitHub {
owner = "hexmode";
repo = "gnus-alias";
@@ -24224,7 +24676,7 @@
sha256 = "1i278npayv3kfxxd1ypi9n83q5l402sbc1zkm11pf8g006ifqsp4";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/gnus-alias";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/6176257e00ca09e79fdff03c6dd450af8eb83666/recipes/gnus-alias";
sha256 = "0mbq9v8fiqqyldpb66v9bc777mzxywaq2dabivabxjg6554s8chf";
name = "gnus-alias";
};
@@ -24237,7 +24689,7 @@
gnus-desktop-notify = callPackage ({ fetchFromGitHub, fetchurl, gnus ? null, lib, melpaBuild }:
melpaBuild {
pname = "gnus-desktop-notify";
- version = "20160210.1147";
+ version = "20160210.447";
src = fetchFromGitHub {
owner = "wavexx";
repo = "gnus-desktop-notify.el";
@@ -24245,7 +24697,7 @@
sha256 = "1zizmxjf55bkm9agmrym80h2mnyvpc9bamkjy2azs42fqgi9pqjn";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/gnus-desktop-notify";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/7fabdb05de9b8ec18a3a566f99688b50443b6b44/recipes/gnus-desktop-notify";
sha256 = "08k32vhdp6i8c03rp1k6b5jmvj5ijplj26mdblrgasklcqbdnlfs";
name = "gnus-desktop-notify";
};
@@ -24257,13 +24709,13 @@
}) {};
gnus-spotlight = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild {
pname = "gnus-spotlight";
- version = "20130901.1635";
+ version = "20130901.935";
src = fetchurl {
url = "https://www.emacswiki.org/emacs/download/gnus-spotlight.el";
sha256 = "1r6bck1hsvk39ccri1h128jj8zd0fh9bsrlp8ijb0v9f6x3cysw4";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/gnus-spotlight";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/004d48a59063163bfe5fbc5311330893d1b3b41c/recipes/gnus-spotlight";
sha256 = "065jcix6a4mxwq8wc8gkr0x9lxmn6hlvf0rqmhi8hb840km1syjx";
name = "gnus-spotlight";
};
@@ -24276,15 +24728,15 @@
gnus-summary-ext = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "gnus-summary-ext";
- version = "20160531.1824";
+ version = "20160606.619";
src = fetchFromGitHub {
owner = "vapniks";
repo = "gnus-summary-ext";
- rev = "189f60abba68b08b92924d5d0df74a5a8c492185";
- sha256 = "0xpmk931jak8323v67dfw7q0y5v031a2pinhmllnml8rbx7n6cbk";
+ rev = "39acdfbab230196a84250243c3a346abfdf62fe6";
+ sha256 = "0ajbj7zc9b5wamsb8bp8lmphz7xv95ix0vrr06viakf8j1kndgy9";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/gnus-summary-ext";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/5ca4a905b5f81991074c7d3e41d4422c7e6713d5/recipes/gnus-summary-ext";
sha256 = "0svyz8fy4k9ba6gpdymf4cf8zjjpgm71y48vlybxbv507xjm17qf";
name = "gnus-summary-ext";
};
@@ -24297,7 +24749,7 @@
gnus-x-gm-raw = callPackage ({ fetchFromGitHub, fetchurl, lib, log4e, melpaBuild, yaxception }:
melpaBuild {
pname = "gnus-x-gm-raw";
- version = "20140610.931";
+ version = "20140610.231";
src = fetchFromGitHub {
owner = "aki2o";
repo = "gnus-x-gm-raw";
@@ -24305,7 +24757,7 @@
sha256 = "1i3f67x2l9l5c5agspbkxr2mmh3rpq3009d8yzh6r1lih0b4hril";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/gnus-x-gm-raw";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/263b87e40e32421ae56a99971a7e1baca0484778/recipes/gnus-x-gm-raw";
sha256 = "1a5iccghzqmcndql2bppvr48535sf6jbvc83iypr1031z1b5k4wg";
name = "gnus-x-gm-raw";
};
@@ -24318,7 +24770,7 @@
go = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "go";
- version = "20160501.239";
+ version = "20160430.1939";
src = fetchFromGitHub {
owner = "eschulte";
repo = "el-go";
@@ -24326,7 +24778,7 @@
sha256 = "1i6x7larpqm5h4369pz07353lk0v6gyb5grk52xslmg8w14si52n";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/go";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/go";
sha256 = "1mk1j504xwi3xswc0lfr3czs9j6wcsbrw2halr46mraiy8lnbz6h";
name = "go";
};
@@ -24339,15 +24791,15 @@
go-autocomplete = callPackage ({ auto-complete, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "go-autocomplete";
- version = "20150904.440";
+ version = "20150903.2140";
src = fetchFromGitHub {
owner = "nsf";
repo = "gocode";
- rev = "15ca134d752c32e5eb27e2597cd2ee48f3a87639";
- sha256 = "120bdalz29b5lvl0iqg00da194ihrwwbbib8gjga8w5gnnscm6nx";
+ rev = "f535dc686130fcc7b942c504ce5903222a205ca3";
+ sha256 = "0d9xxrzd9vlfx6wpi48sypqi1czld0nc2bd39ac7zv115qv23nfh";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/go-autocomplete";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/04867a574773e8794335a2664d4f5e8b243f3ec9/recipes/go-autocomplete";
sha256 = "1ldsq81a167dk2r2mvzyp3v3j2mxc4l9p6b12i7pv8zrjlkhma5a";
name = "go-autocomplete";
};
@@ -24360,7 +24812,7 @@
go-complete = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, go-mode, lib, melpaBuild }:
melpaBuild {
pname = "go-complete";
- version = "20151015.1128";
+ version = "20151015.428";
src = fetchFromGitHub {
owner = "vibhavp";
repo = "go-complete";
@@ -24368,7 +24820,7 @@
sha256 = "0phy24cra8cza89xrqsx9xrwg98v9qwqx0fzgm1gwlf333zb3hha";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/go-complete";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/4df81abbf3b16f06fa327c1626bef1245ea77758/recipes/go-complete";
sha256 = "0dl0ibw145f84kd709r5i2kaw07z1sjzn3dmsiqn8dncspcf2vb4";
name = "go-complete";
};
@@ -24381,7 +24833,7 @@
go-direx = callPackage ({ cl-lib ? null, direx, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "go-direx";
- version = "20150316.243";
+ version = "20150315.2043";
src = fetchFromGitHub {
owner = "syohex";
repo = "emacs-go-direx";
@@ -24389,7 +24841,7 @@
sha256 = "09rxz40bkr0l75v3lmf8lcwqsgjiv5c8zjmwzy2d4syj4qv69c5y";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/go-direx";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/032c0c3cd04f36f1bc66bb7d9d789d354c620a09/recipes/go-direx";
sha256 = "0dq5d7fsld4hww8fl68c18qp6fl3781dqqwd98cg68bihw2wwni7";
name = "go-direx";
};
@@ -24402,7 +24854,7 @@
go-dlv = callPackage ({ fetchFromGitHub, fetchurl, go-mode, lib, melpaBuild }:
melpaBuild {
pname = "go-dlv";
- version = "20160517.2246";
+ version = "20160517.1546";
src = fetchFromGitHub {
owner = "benma";
repo = "go-dlv.el";
@@ -24410,7 +24862,7 @@
sha256 = "0pph99fl3bwws9vr1r8fs411frd04rfdhl87fy2a75cqcpxlhsj4";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/go-dlv";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/34756daa47548da1aaf58b324014829d041cddf6/recipes/go-dlv";
sha256 = "13mk7mg2xk7v65r1rs6rmvi4g5nvm8jqg3p9nhk62d46i7dzp61i";
name = "go-dlv";
};
@@ -24423,7 +24875,7 @@
go-eldoc = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, go-mode, lib, melpaBuild }:
melpaBuild {
pname = "go-eldoc";
- version = "20160307.1516";
+ version = "20160307.816";
src = fetchFromGitHub {
owner = "syohex";
repo = "emacs-go-eldoc";
@@ -24431,7 +24883,7 @@
sha256 = "1n5fnlfq9cy9rbn2hizqqsy0iryw5g2blaa7nd75ya03gxm10p8j";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/go-eldoc";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/6ce1190db06cc214746215dd27648eded5fe5140/recipes/go-eldoc";
sha256 = "1k115dirfqxdnb6hdzlw41xdy2dxp38g3vq5wlvslqggha7gzhkk";
name = "go-eldoc";
};
@@ -24444,7 +24896,7 @@
go-errcheck = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "go-errcheck";
- version = "20150828.2035";
+ version = "20150828.1335";
src = fetchFromGitHub {
owner = "dominikh";
repo = "go-errcheck.el";
@@ -24452,7 +24904,7 @@
sha256 = "1fm6xd3vsi8mqh0idddjpfxlsmz1ljmjppw3qkxl1vr0qz3598k3";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/go-errcheck";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/c874f608a55cafcc6e57ca2c80bdae6b1c2e47e9/recipes/go-errcheck";
sha256 = "11a75h32cd5h5xjv30x83k60s49k9fhgis31358q46y2gbvqp5bs";
name = "go-errcheck";
};
@@ -24465,7 +24917,7 @@
go-gopath = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "go-gopath";
- version = "20160311.948";
+ version = "20160311.248";
src = fetchFromGitHub {
owner = "iced";
repo = "go-gopath";
@@ -24473,7 +24925,7 @@
sha256 = "1hfyxf07m73jf8zca8dna3w828ypvx8a3p70f8nfr5mijy4q3i4c";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/go-gopath";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/1ca8d10b10b015c5bdafe1dbc8e53eb4c0d26d9c/recipes/go-gopath";
sha256 = "0jfy2r3axqpn2cnibp8f9vw36kmx0icixhj6zy43d9xa4znvdqal";
name = "go-gopath";
};
@@ -24486,14 +24938,14 @@
go-guru = callPackage ({ cl-lib ? null, fetchgit, fetchurl, go-mode, lib, melpaBuild }:
melpaBuild {
pname = "go-guru";
- version = "20160428.1621";
+ version = "20160428.921";
src = fetchgit {
url = "https://go.googlesource.com/tools";
- rev = "b41cbfc0fac050e3a416b4f51df202a101cd2aa5";
- sha256 = "1xyvj8bsgdnn8zhzw6w0zracr960six5rsipi89wj6zjh0z9ywxd";
+ rev = "527b253f588776e5f72a0a0d1e93195cd3f82707";
+ sha256 = "0qjiwqksf31rxwpibm6a3644yln5gbzfqhdyky41r5bh7fv9wrlq";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/go-guru";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/816a2511c54e451313c7ac9433d0860f95e68da6/recipes/go-guru";
sha256 = "0c62rvsfqcx2g02iwaga2zp1266w0zhkc73ihpi0iq7cd6nr4wn0";
name = "go-guru";
};
@@ -24506,15 +24958,15 @@
go-impl = callPackage ({ emacs, fetchFromGitHub, fetchurl, go-mode, lib, melpaBuild }:
melpaBuild {
pname = "go-impl";
- version = "20160523.649";
+ version = "20160626.356";
src = fetchFromGitHub {
owner = "syohex";
repo = "emacs-go-impl";
- rev = "eb80a75ea006c503c09b709e656f94fec24bfb09";
- sha256 = "01j67naqvajhg5ccb5yk4dz7hg6rrc6k9q6ppbm77c0aacjxcr39";
+ rev = "d4cd57e5d1769ffe3a8078572f0be73737184099";
+ sha256 = "059y2gkvvjhjbaw31zlylr0zmbafcjif01zjq13hvvghjqd6r89b";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/go-impl";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/aa1a0845cc1a6970018b397d13394aaa8147e5d0/recipes/go-impl";
sha256 = "09frwpwc080rfpwkb63yv47dyj741lrpyrp65sq2bn4sf03xw0cx";
name = "go-impl";
};
@@ -24527,7 +24979,7 @@
go-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "go-mode";
- version = "20160512.1010";
+ version = "20160512.310";
src = fetchFromGitHub {
owner = "dominikh";
repo = "go-mode.el";
@@ -24535,7 +24987,7 @@
sha256 = "0g0vjm125wmw5nd38r3d7gc2h4pg3a9yskcbk1mzg9vf6gbhr0hx";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/go-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/8a9d94efc1a0cedaaa0a1acd1227b2530efefca2/recipes/go-mode";
sha256 = "1852zjxandmq0cpbf7m56ar3rbdi7bx613gdgsf1bg8hsdvkgzfx";
name = "go-mode";
};
@@ -24548,15 +25000,15 @@
go-playground = callPackage ({ emacs, fetchFromGitHub, fetchurl, go-mode, gotest, lib, melpaBuild }:
melpaBuild {
pname = "go-playground";
- version = "20160426.2128";
+ version = "20160426.1428";
src = fetchFromGitHub {
owner = "grafov";
repo = "go-playground";
- rev = "39589e678aac43cee9ff435e5303a411e80054e9";
- sha256 = "16qpxi9d240rdqnqcnbnsqlh2gcy6c9hxwdpdy874akzw7942nc0";
+ rev = "c0acf75774d4e87a8454be610de1408e7c3a344b";
+ sha256 = "1zr8bhmihix8lwhz84qgbih9q9spvb4681c0n4s6x4qhk61231q3";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/go-playground";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/900aabb7bc2350698f8740d72a5fad69c9219c33/recipes/go-playground";
sha256 = "1rabwc80qwkafq833m6a199zfiwwmf0hha89721gc7i0myk9pac6";
name = "go-playground";
};
@@ -24569,7 +25021,7 @@
go-playground-cli = callPackage ({ cl-lib ? null, deferred, emacs, f, fetchFromGitHub, fetchurl, let-alist, lib, melpaBuild, names, request, s }:
melpaBuild {
pname = "go-playground-cli";
- version = "20160503.1114";
+ version = "20160503.414";
src = fetchFromGitHub {
owner = "kosh04";
repo = "emacs-go-playground";
@@ -24577,7 +25029,7 @@
sha256 = "1fcm65r1sy2fmcp2i7mwc7mxqiaf4aaxda4i2qrm8s25cxsffir7";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/go-playground-cli";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/3af0a72ee1222c133ccfd76f004a346fd6110eee/recipes/go-playground-cli";
sha256 = "00h89rh8d7lq1di77nv609xbzxmjmffq6mz3cmagylxncflg81jc";
name = "go-playground-cli";
};
@@ -24590,7 +25042,7 @@
go-projectile = callPackage ({ fetchFromGitHub, fetchurl, go-eldoc, go-guru, go-mode, go-rename, lib, melpaBuild, projectile }:
melpaBuild {
pname = "go-projectile";
- version = "20160419.117";
+ version = "20160418.1817";
src = fetchFromGitHub {
owner = "dougm";
repo = "go-projectile";
@@ -24598,7 +25050,7 @@
sha256 = "0010dgkk521pn4cwir5lvkxxzfzzw2nyz1cr5zx1h1ahxvhrzsqm";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/go-projectile";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/3559a179be2a5cda71ee0a5a18bead4b3a1a8138/recipes/go-projectile";
sha256 = "07diik27gr82n11a8k62v1jxq8rhi16f02ybk548f6cn7iqgp2ml";
name = "go-projectile";
};
@@ -24611,14 +25063,14 @@
go-rename = callPackage ({ fetchgit, fetchurl, go-mode, lib, melpaBuild }:
melpaBuild {
pname = "go-rename";
- version = "20160307.1644";
+ version = "20160307.944";
src = fetchgit {
url = "https://go.googlesource.com/tools";
- rev = "b41cbfc0fac050e3a416b4f51df202a101cd2aa5";
- sha256 = "1xyvj8bsgdnn8zhzw6w0zracr960six5rsipi89wj6zjh0z9ywxd";
+ rev = "527b253f588776e5f72a0a0d1e93195cd3f82707";
+ sha256 = "0qjiwqksf31rxwpibm6a3644yln5gbzfqhdyky41r5bh7fv9wrlq";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/go-rename";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/421911dd75eec0f857295b76d310b8282053b57f/recipes/go-rename";
sha256 = "1sc3iwxiydgs787a6pi778i0qzqv3bf498r47jwiw5b6mmib3fah";
name = "go-rename";
};
@@ -24631,7 +25083,7 @@
go-scratch = callPackage ({ emacs, fetchFromGitHub, fetchurl, go-mode, lib, melpaBuild }:
melpaBuild {
pname = "go-scratch";
- version = "20150810.640";
+ version = "20150809.2340";
src = fetchFromGitHub {
owner = "shosti";
repo = "go-scratch.el";
@@ -24639,7 +25091,7 @@
sha256 = "1a6vg2vwgnafb61pwrd837fwlq5gs80wawbzjsnykawnmcaag8pm";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/go-scratch";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/1713e6f02f8908b828ac2722a3185ea7cceb0609/recipes/go-scratch";
sha256 = "11ahvmxbh67wa39cymymxmcpkq0kcn5jz0rrvazjy2p1hx3x1ma5";
name = "go-scratch";
};
@@ -24652,7 +25104,7 @@
go-snippets = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, yasnippet }:
melpaBuild {
pname = "go-snippets";
- version = "20151122.757";
+ version = "20151122.57";
src = fetchFromGitHub {
owner = "toumorokoshi";
repo = "go-snippets";
@@ -24660,7 +25112,7 @@
sha256 = "0di6xwpl6pi0430q208gliz8dgrzwqnmp997q7xcczbkk8zfwn0n";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/go-snippets";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/ca9f3022e7f4d5391be394cd56f6db75c9cff3b6/recipes/go-snippets";
sha256 = "1wcbnfzxailv18spxyv4a0nwlqh9l7yf5vxg0qcjcp5ajd2w12kn";
name = "go-snippets";
};
@@ -24673,7 +25125,7 @@
go-stacktracer = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "go-stacktracer";
- version = "20150430.2342";
+ version = "20150430.1642";
src = fetchFromGitHub {
owner = "samertm";
repo = "go-stacktracer.el";
@@ -24681,7 +25133,7 @@
sha256 = "0n5nsyfwx2pdlwx6bl35wrfyady5dwraimv92f58mhc344ajd70y";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/go-stacktracer";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/401996c585d2ccf97add1bc420250d96188b651a/recipes/go-stacktracer";
sha256 = "1laz2ggqydnyr7b36ggb7sphlib79dhp7nszw42wssmv212v94cy";
name = "go-stacktracer";
};
@@ -24694,7 +25146,7 @@
god-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "god-mode";
- version = "20151005.1825";
+ version = "20151005.1125";
src = fetchFromGitHub {
owner = "chrisdone";
repo = "god-mode";
@@ -24702,7 +25154,7 @@
sha256 = "1am415k4xxcva6y3vbvyvknzc6bma49pq3p85zmpjsdmsp18qdix";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/god-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/2dff8dc08583048f9b7b4cb6d8f05a18dd4e8b42/recipes/god-mode";
sha256 = "01xx2byjh6vlckaxamm2x2qzicd9qc8h6amyjg0bxz3932a4llaa";
name = "god-mode";
};
@@ -24715,7 +25167,7 @@
gold-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, sws-mode }:
melpaBuild {
pname = "gold-mode";
- version = "20140607.406";
+ version = "20140606.2106";
src = fetchFromGitHub {
owner = "yuutayamada";
repo = "gold-mode-el";
@@ -24723,7 +25175,7 @@
sha256 = "1k4i9z9h4m0h0y92mncr96jir63q5h1bix5bpnlfxhxl5w8pvk1q";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/gold-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/6d1991b63067c581c7576df4b69b509ab5a44d5a/recipes/gold-mode";
sha256 = "1b67hd1fp6xcj65xxp5jcpdjspxsbzxy26v6lqg5kiy8knls57kf";
name = "gold-mode";
};
@@ -24736,7 +25188,7 @@
golden-ratio = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "golden-ratio";
- version = "20150819.1320";
+ version = "20150819.620";
src = fetchFromGitHub {
owner = "roman";
repo = "golden-ratio.el";
@@ -24744,7 +25196,7 @@
sha256 = "0wdw89n7ngxpcdigv8c01h4i84hsdh0y7xq6jdj1i6mnajl8gk92";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/golden-ratio";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/e87b2af052d0406431957d75aa3717899bdbc8ae/recipes/golden-ratio";
sha256 = "15fkrv0sgpzmnw2h4fp2gb83d8s42khkfq1h76l241njjayk1f81";
name = "golden-ratio";
};
@@ -24757,7 +25209,7 @@
golden-ratio-scroll-screen = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "golden-ratio-scroll-screen";
- version = "20151211.1130";
+ version = "20151211.430";
src = fetchFromGitHub {
owner = "jixiuf";
repo = "golden-ratio-scroll-screen";
@@ -24765,7 +25217,7 @@
sha256 = "18a7dv8yshspyq4bi30j0l4ap9qp696syfc29mgvly4xyqh9x4qm";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/golden-ratio-scroll-screen";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/af044c4a28149362347c2477f0d8d0f8d1dc8c0d/recipes/golden-ratio-scroll-screen";
sha256 = "1ygh104vr65s7frlkzyhrfi6shrbvp2b2j3ynj5dip253v85xki5";
name = "golden-ratio-scroll-screen";
};
@@ -24778,7 +25230,7 @@
golint = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "golint";
- version = "20150415.230";
+ version = "20150414.1930";
src = fetchFromGitHub {
owner = "golang";
repo = "lint";
@@ -24786,7 +25238,7 @@
sha256 = "024dllcmpg8lx78cqgq551i6f9w6qlykfcx8l7yazak9kjwhpwjg";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/golint";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/34f22d829257456abbc020c006b92da9c7a7860e/recipes/golint";
sha256 = "1q4y6mgll8wyp0c7zx810nzsm0k4wvz0wkly1fbja9z63sjzzxwb";
name = "golint";
};
@@ -24799,7 +25251,7 @@
gom-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "gom-mode";
- version = "20131008.453";
+ version = "20131007.2153";
src = fetchFromGitHub {
owner = "syohex";
repo = "emacs-gom-mode";
@@ -24807,7 +25259,7 @@
sha256 = "1anjzlg53kjdqfjcdahbxy8zk9hdha075c1f9nzrnnbbqvmirbbb";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/gom-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/0a1e5f505e048b36c12de36b23b779beeaefc45f/recipes/gom-mode";
sha256 = "07zr38gzqb3ds9mpf94c1vhl1rqd0cjh4g4j2bz86q16c0rnmp7m";
name = "gom-mode";
};
@@ -24820,7 +25272,7 @@
google = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "google";
- version = "20140416.1948";
+ version = "20140416.1248";
src = fetchFromGitHub {
owner = "hober";
repo = "google-el";
@@ -24828,7 +25280,7 @@
sha256 = "06p1dpnmg7lhdff1g7c04qq8f9srgkmnm42jlqy85k87j3p5ys2i";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/google";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/45237d37da807559498bb958184e05109f880070/recipes/google";
sha256 = "11a521cq5bj7afl7bqiilg0c81dy00lnhak7h3d9c9kwg7kfljiq";
name = "google";
};
@@ -24841,15 +25293,15 @@
google-c-style = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "google-c-style";
- version = "20140929.2018";
+ version = "20140929.1318";
src = fetchFromGitHub {
owner = "google";
repo = "styleguide";
- rev = "70d6b7d4b85f98ba58ae217a5a6f3bec6ecad188";
- sha256 = "1ardfwbdxxs2v1rip4vm4hjs2cjxrz8zxch98vv83pbir7561lhk";
+ rev = "01f0f704f7ff052f601a7fa39e7194f885176701";
+ sha256 = "15bglg6d8nlpdmmxa87ypq9i296z2f3w85md6yy7kys6ajz5x5bq";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/google-c-style";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/b4e7f5f641251e17add561991d3bcf1fde23467b/recipes/google-c-style";
sha256 = "10gsbg880jbvxs4291vi2ww30ird2f313lbgcb11lswivmhrmd1r";
name = "google-c-style";
};
@@ -24862,7 +25314,7 @@
google-contacts = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, oauth2 }:
melpaBuild {
pname = "google-contacts";
- version = "20160111.1111";
+ version = "20160111.411";
src = fetchFromGitHub {
owner = "jd";
repo = "google-contacts.el";
@@ -24870,7 +25322,7 @@
sha256 = "1h7nj570drp2l9x6475gwzcjrp75ms8dkixa7qsgszjdk58qyhnb";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/google-contacts";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/671afe0ff3889ae8c4b2d7b8617a3a25c16f3f0f/recipes/google-contacts";
sha256 = "0wgi244zy2am90alimgzazshk2z756bk1hchphssfa4j15n16jgn";
name = "google-contacts";
};
@@ -24883,7 +25335,7 @@
google-maps = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "google-maps";
- version = "20130412.1130";
+ version = "20130412.430";
src = fetchFromGitHub {
owner = "jd";
repo = "google-maps.el";
@@ -24891,7 +25343,7 @@
sha256 = "183igr5lp20zcqi7rc01fk76sfxdhksd74i11v16gdsifdkjimd0";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/google-maps";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/671afe0ff3889ae8c4b2d7b8617a3a25c16f3f0f/recipes/google-maps";
sha256 = "0a0wqs3cnlpar2dzdi6h14isw78vgqr2r6psmrzbdl00s4fcyxwx";
name = "google-maps";
};
@@ -24904,7 +25356,7 @@
google-this = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "google-this";
- version = "20160513.1912";
+ version = "20160513.1212";
src = fetchFromGitHub {
owner = "Malabarba";
repo = "emacs-google-this";
@@ -24912,7 +25364,7 @@
sha256 = "14dz9wjp8ym86a03pw5y1sd51zw83d6485hpq8mh8zm0j1fba0y0";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/google-this";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/1e6aed365c42987d64d0cd9a8a6178339b1b39e8/recipes/google-this";
sha256 = "0hg9y1b03aiamyn3mam3hyxmxy21wygxrnrww91zcbwlzgp4dd2c";
name = "google-this";
};
@@ -24925,7 +25377,7 @@
google-translate = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "google-translate";
- version = "20160514.25";
+ version = "20160513.1725";
src = fetchFromGitHub {
owner = "atykhonov";
repo = "google-translate";
@@ -24933,7 +25385,7 @@
sha256 = "1098cmcd8ihvk67l5y5h6w4yfii5cg79yakjjyjh24zwpj5l0gaf";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/google-translate";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/e3c275e59cbfe6e40f9cd4c470fc66544c9a6d21/recipes/google-translate";
sha256 = "1crgzdd32mk6hrawdypg496dwh51wzwfb5wqw4a2j5l8y958xf47";
name = "google-translate";
};
@@ -24946,7 +25398,7 @@
goose-theme = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "goose-theme";
- version = "20160401.733";
+ version = "20160401.33";
src = fetchFromGitHub {
owner = "thwg";
repo = "goose-theme";
@@ -24954,7 +25406,7 @@
sha256 = "1ms5f6imzw5klxi1mqqjxgb02iflvpam8cfxii3ljcr4fz093m4h";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/goose-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/5fa2ce32adbccdbc3f1b642585b430202e7ae274/recipes/goose-theme";
sha256 = "18kfz61mhf8pvp3z5cdvjklla9p840p1dazylrgjb1g5hdwqw0n9";
name = "goose-theme";
};
@@ -24967,7 +25419,7 @@
gore-mode = callPackage ({ fetchFromGitHub, fetchurl, go-mode, lib, melpaBuild }:
melpaBuild {
pname = "gore-mode";
- version = "20151123.2027";
+ version = "20151123.1327";
src = fetchFromGitHub {
owner = "sergey-pashaev";
repo = "gore-mode";
@@ -24975,7 +25427,7 @@
sha256 = "0l022aqpnb38q6kgdqpbxrc1r7fljwl7xq14yi5jb7qgzw2v43cz";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/gore-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/de09fcf14f778efe4247a93fb887b77050258f39/recipes/gore-mode";
sha256 = "0nljybh2pw8pbbajfsz57r11rs4bvzfxmwpbm5qrdn6dzzv65nq3";
name = "gore-mode";
};
@@ -24988,7 +25440,7 @@
gorepl-mode = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "gorepl-mode";
- version = "20151121.1322";
+ version = "20151121.622";
src = fetchFromGitHub {
owner = "manute";
repo = "gorepl-mode";
@@ -24996,7 +25448,7 @@
sha256 = "1abb78xxsggawl43hspl0cr0f7i1b3jd9r6xl1nl5jg97i4byg0b";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/gorepl-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/2ccb56a2aaabb1169cafc530c63e33d301e04c7a/recipes/gorepl-mode";
sha256 = "12h9r4kf9y2v601myhzzdw2c4jc5cb7s94r5dkzriq578digxphl";
name = "gorepl-mode";
};
@@ -25009,15 +25461,15 @@
gotest = callPackage ({ emacs, f, fetchFromGitHub, fetchurl, go-mode, lib, melpaBuild, s }:
melpaBuild {
pname = "gotest";
- version = "20160414.1025";
+ version = "20160627.221";
src = fetchFromGitHub {
owner = "nlamirault";
repo = "gotest.el";
- rev = "c7ead398b69ab25db695f5dab73ceaa0aba572fa";
- sha256 = "1idhnsl8vkq3v3nbvhkmxmvgqp97aycxvmkj7894mj9hvhib68l9";
+ rev = "74128f5c759318b5a25792a72924ea130db27e72";
+ sha256 = "0kasaiz3wi7gnl91byhfg2hczhv0r6i59cyh32m4abrmwagbk3xj";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/gotest";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/0670b42c0c998daa7bf01080757976ac3589ec06/recipes/gotest";
sha256 = "1kan3gykhci33jgg67jjiiz7rqlz5mpxp8sh6mb0n6kpfmgb4ly9";
name = "gotest";
};
@@ -25030,7 +25482,7 @@
gotham-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "gotham-theme";
- version = "20160517.1455";
+ version = "20160517.755";
src = fetchFromGitHub {
owner = "wasamasa";
repo = "gotham-theme";
@@ -25038,7 +25490,7 @@
sha256 = "1ch1acw23y37igy48wlb97q1l2dyjl1a0vazwwakwlmlcfg15l6d";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/gotham-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/4b388de872be397864a1217a330ba80437c287c0/recipes/gotham-theme";
sha256 = "0jars6rvf7hkyf71vq06mqki1r840i1dvv43dissqjg5i4lr79cl";
name = "gotham-theme";
};
@@ -25050,13 +25502,13 @@
}) {};
goto-chg = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild {
pname = "goto-chg";
- version = "20131228.1559";
+ version = "20131228.859";
src = fetchurl {
url = "https://www.emacswiki.org/emacs/download/goto-chg.el";
sha256 = "078d6p4br5vips7b9x4v6cy0wxf6m5ij9gpqd4g33bryn22gnpij";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/goto-chg";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/529897b0c076d9031e7ecd13c945d2104ce8c735/recipes/goto-chg";
sha256 = "0fs0fc1mksbb1266sywasl6pppdn1f9a4q9dwycl9zycr588yjyv";
name = "goto-chg";
};
@@ -25069,7 +25521,7 @@
goto-gem = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, s }:
melpaBuild {
pname = "goto-gem";
- version = "20140729.2045";
+ version = "20140729.1345";
src = fetchFromGitHub {
owner = "pidu";
repo = "goto-gem";
@@ -25077,7 +25529,7 @@
sha256 = "0j2hdxqfsifm0d8ilwcw7np6mvn4xm58xglzh42gigj2fxv87g99";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/goto-gem";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/5f576f6fab4ee466c54ce2c50569a447b6d617cc/recipes/goto-gem";
sha256 = "06vy9m01qccvahxr5xn0plzw9knl5ig7gi5q5r1smfx92bmzkg3a";
name = "goto-gem";
};
@@ -25090,7 +25542,7 @@
goto-last-change = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "goto-last-change";
- version = "20150109.1923";
+ version = "20150109.1223";
src = fetchFromGitHub {
owner = "camdez";
repo = "goto-last-change.el";
@@ -25098,7 +25550,7 @@
sha256 = "1f0zlvva7d7iza1v79yjp0bm7vd011q4cy14g1saryll32z115z5";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/goto-last-change";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/d68945f5845e5e44fb6c11726a56acd4dc56e101/recipes/goto-last-change";
sha256 = "1yl9p95ls04bkmf4d6az72pycp27bv7q7wxxzvj8sj97bgwvwajx";
name = "goto-last-change";
};
@@ -25111,15 +25563,15 @@
govc = callPackage ({ dash, emacs, fetchFromGitHub, fetchurl, json-mode, lib, magit-popup, melpaBuild, s }:
melpaBuild {
pname = "govc";
- version = "20160201.1846";
+ version = "20160201.1146";
src = fetchFromGitHub {
owner = "vmware";
repo = "govmomi";
- rev = "d39fd6858eeb5a8ac81a103063eaccd50c2b3e17";
- sha256 = "0mqhk6jaayjv5jnkkr0sd3nqk9f7asnk5ib6y488l9gs5nfvazrp";
+ rev = "c0c7ce63df7edd78e713257b924c89d9a2dac119";
+ sha256 = "1yj4iimwfv3d4m24ifmncc2z09dlmxjr1dhryh4afkpgj48x4lcv";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/govc";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/92d6391318021c63b06fe39b0ca38f667bb45ae9/recipes/govc";
sha256 = "1ivgaziv25wlzg6y4zh8x7mv97pnyhi7p8jpvgh5fg5lnqpzhl4v";
name = "govc";
};
@@ -25132,7 +25584,7 @@
govet = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "govet";
- version = "20150428.2059";
+ version = "20150428.1359";
src = fetchFromGitHub {
owner = "meshelton";
repo = "govet";
@@ -25140,7 +25592,7 @@
sha256 = "1fzf43my7qs4n37yh1jm6fyp76dfgknc5g4zin7x5b5lc63g0wxb";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/govet";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/7e4a5f5031c76056d8f1b64b27a39a512c7c59cd/recipes/govet";
sha256 = "1rpgngixf1xnnqf0l2vvh6y9q3395qyj9ln1rh0xz5lm7d4pq4hy";
name = "govet";
};
@@ -25153,7 +25605,7 @@
gplusify = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "gplusify";
- version = "20150312.2044";
+ version = "20150312.1444";
src = fetchFromGitHub {
owner = "jorgenschaefer";
repo = "gplusify";
@@ -25161,7 +25613,7 @@
sha256 = "1l43h008l7n6waclb2km32dy8aj7m5yavm1pkq38p9ppzayfxqq1";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/gplusify";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/2d7d6cf6cca5e6abd1e7b0835bd6aba4f156369d/recipes/gplusify";
sha256 = "0fgkcvppkq6pba1giddkfxp9z4c8v2cid9nb8a190b3g85wcwycr";
name = "gplusify";
};
@@ -25171,10 +25623,31 @@
license = lib.licenses.free;
};
}) {};
+ grab-mac-link = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
+ melpaBuild {
+ pname = "grab-mac-link";
+ version = "20160626.58";
+ src = fetchFromGitHub {
+ owner = "xuchunyang";
+ repo = "grab-mac-link.el";
+ rev = "e5a720d6aa173939c35cab836a31651b184c11e6";
+ sha256 = "0pas60sib23vv1gkprp10jzksgchl5caqj565akg358a0iay7ax4";
+ };
+ recipeFile = fetchurl {
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/e4cc8a72a9f161f024ed9415ad281dbea5f07a18/recipes/grab-mac-link";
+ sha256 = "1a4wyvx1mlgnd45nn99lwy3vaiwhi1nrphfln86pb6z939dxakj3";
+ name = "grab-mac-link";
+ };
+ packageRequires = [ emacs ];
+ meta = {
+ homepage = "https://melpa.org/#/grab-mac-link";
+ license = lib.licenses.free;
+ };
+ }) {};
gradle-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, s }:
melpaBuild {
pname = "gradle-mode";
- version = "20150313.2005";
+ version = "20150313.1405";
src = fetchFromGitHub {
owner = "jacobono";
repo = "emacs-gradle-mode";
@@ -25182,7 +25655,7 @@
sha256 = "0xs2278gamzg0710bm1fkhjh1p75m2l1jcl98ldhyjhvaf9d0ysc";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/gradle-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/771cc597daebf9b4aa308f8b350af91a515b44c9/recipes/gradle-mode";
sha256 = "0lx9qi93wmiy9pxjxqp68scbcb4bx88b6jiqk3y8jg5cajizh24g";
name = "gradle-mode";
};
@@ -25195,7 +25668,7 @@
grails = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "grails";
- version = "20160417.836";
+ version = "20160417.136";
src = fetchFromGitHub {
owner = "lifeisfoo";
repo = "emacs-grails";
@@ -25203,7 +25676,7 @@
sha256 = "1npsjniazaq20vz3kvwr8p30ivc6x24r9a16rfcwhr5wjx3nn91b";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/grails";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/be0196207245ea9d23fda09121d624db9ea6d83d/recipes/grails";
sha256 = "177y6xv35d2dhc3pdx5qhpywlmlqgfnjpzfm9yxc8l6q2rgs8irw";
name = "grails";
};
@@ -25216,7 +25689,7 @@
grails-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "grails-mode";
- version = "20160504.1111";
+ version = "20160504.411";
src = fetchFromGitHub {
owner = "Groovy-Emacs-Modes";
repo = "groovy-emacs-modes";
@@ -25224,7 +25697,7 @@
sha256 = "1dwj53z4422ks30cqr5rj6x91qf63sjzbmb06sz4ac5pdr1d66q6";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/grails-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/3fe318b4e51a280a55c01fa30455e4a180df8bd6/recipes/grails-mode";
sha256 = "1zdlmdkwyaj2zns3xwmqpil83j7857aj2070kvx8xza66dxcnlm4";
name = "grails-mode";
};
@@ -25237,7 +25710,7 @@
grails-projectile-mode = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, projectile }:
melpaBuild {
pname = "grails-projectile-mode";
- version = "20160327.1524";
+ version = "20160327.824";
src = fetchFromGitHub {
owner = "yveszoundi";
repo = "grails-projectile-mode";
@@ -25245,7 +25718,7 @@
sha256 = "0xnj0wp0na53l0y8fiaah50ij4r80j8a29hbjbcicska21p5w1s1";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/grails-projectile-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/35d49029c1f665ad40e543040d98d5a770bfea96/recipes/grails-projectile-mode";
sha256 = "0dy8v2mila7ccvb7j5jlfkhfjsjfk3bm3rcy84m0rgbqjai67amn";
name = "grails-projectile-mode";
};
@@ -25258,7 +25731,7 @@
grandshell-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "grandshell-theme";
- version = "20150404.1401";
+ version = "20150404.701";
src = fetchFromGitHub {
owner = "steckerhalter";
repo = "grandshell-theme";
@@ -25266,7 +25739,7 @@
sha256 = "0803j6r447br0nszzcy6pc65l53j871icyr91dd7x10xi7ygw0lj";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/grandshell-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/5b04b0024f5a0367e2998d35ca88c2613a8e3470/recipes/grandshell-theme";
sha256 = "1mnnjsw1kx40b6ws8wmk25fz9rq8rd70xia9cjpwdfkg7kh8xvsa";
name = "grandshell-theme";
};
@@ -25279,7 +25752,7 @@
graphene = callPackage ({ company, dash, exec-path-from-shell, fetchFromGitHub, fetchurl, flycheck, graphene-meta-theme, ido-ubiquitous, lib, melpaBuild, ppd-sr-speedbar, smartparens, smex, sr-speedbar, web-mode }:
melpaBuild {
pname = "graphene";
- version = "20151109.840";
+ version = "20151109.140";
src = fetchFromGitHub {
owner = "rdallasgray";
repo = "graphene";
@@ -25287,7 +25760,7 @@
sha256 = "1f34bhjxmbf2jjrkpdvqg2gwp83ka6d5vrxmsxdl3r57yc6rbrwa";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/graphene";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/0206d6adcb7855c2174c3cd506b71c21def1209b/recipes/graphene";
sha256 = "1wz3rvd8b7gx5d0k7yi4dd69ax5bybcm10vdc7xp4yn296lmyl9k";
name = "graphene";
};
@@ -25312,15 +25785,15 @@
graphene-meta-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "graphene-meta-theme";
- version = "20151108.1100";
+ version = "20160629.1411";
src = fetchFromGitHub {
owner = "rdallasgray";
repo = "graphene-meta-theme";
- rev = "5d848233ac91c1e3560160a4eba60944f5837d35";
- sha256 = "1bidfn4x5lb6dylhadyf05g4l2k7jg83mi058cmv76av1glawk17";
+ rev = "f76011f212cd4e932e3fca6e84588ac294e812a4";
+ sha256 = "0b8yvbcj904ziwx2a6dr6225jspxycgyphab4iwpbmvkv1fnicf6";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/graphene-meta-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/44af719ede73c9fe7787272d7868587ce8966e3d/recipes/graphene-meta-theme";
sha256 = "1cqdr93lccdpxkzgap3r3qc92dh8vqgdlnxvqkw7lrcbs31fvf3q";
name = "graphene-meta-theme";
};
@@ -25333,7 +25806,7 @@
graphviz-dot-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "graphviz-dot-mode";
- version = "20151127.1521";
+ version = "20151127.821";
src = fetchFromGitHub {
owner = "ppareit";
repo = "graphviz-dot-mode";
@@ -25341,7 +25814,7 @@
sha256 = "12r6a3hikzqcdbplmraa4p4w136c006yamylxfjf8580v15xngrf";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/graphviz-dot-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/6e2f1e66b33fd95142be4622c996911e38d56281/recipes/graphviz-dot-mode";
sha256 = "04rkynsrsk6w4sxn1pc0b9b6pij1p7yraywbrk7qvv05fv69kri2";
name = "graphviz-dot-mode";
};
@@ -25354,7 +25827,7 @@
grapnel = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "grapnel";
- version = "20131001.1734";
+ version = "20131001.1034";
src = fetchFromGitHub {
owner = "leathekd";
repo = "grapnel";
@@ -25362,7 +25835,7 @@
sha256 = "0nvl8mh7jxailisq31h5bi64s9b74ah1465wiwh18x502swr2s3c";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/grapnel";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/dd482e4b2c45921b81c5fb3dfce53acfec3c3093/recipes/grapnel";
sha256 = "019cdx1wdx8sc2ibqwgp1akgckzxxvrayyp2sv806gha0kn6yf6r";
name = "grapnel";
};
@@ -25375,14 +25848,14 @@
grass-mode = callPackage ({ cl-lib ? null, dash, fetchhg, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "grass-mode";
- version = "20160317.1414";
+ version = "20160317.814";
src = fetchhg {
url = "https://bitbucket.com/tws/grass-mode.el";
rev = "25414dff1fc5";
sha256 = "0mnwmsn078hz317xfz6c05r7narx3k8956v1ajz5myxx8xrcr24z";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/grass-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/5b7972602399f9df9139cff177e38653bb0f43ed/recipes/grass-mode";
sha256 = "1lq6bk4bwgcy4ra3d9rlca3fk87ydg7xnnqcqjg0pw4m9xnr3f7v";
name = "grass-mode";
};
@@ -25395,7 +25868,7 @@
green-phosphor-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "green-phosphor-theme";
- version = "20150515.1647";
+ version = "20150515.947";
src = fetchFromGitHub {
owner = "aalpern";
repo = "emacs-color-theme-green-phosphor";
@@ -25403,7 +25876,7 @@
sha256 = "0rgv96caigcjffg1983274p4ff1icx1xh5bj7rcd53hai5ag16mp";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/green-phosphor-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/c6770f5d800232c152833d32efb814005e65ffc6/recipes/green-phosphor-theme";
sha256 = "1p4l75lahmbjcx74ca5jcyc04828vlcahk7gzv5lr7z9mhvq6fbh";
name = "green-phosphor-theme";
};
@@ -25416,7 +25889,7 @@
gregorio-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "gregorio-mode";
- version = "20151026.1520";
+ version = "20151026.920";
src = fetchFromGitHub {
owner = "cajetanus";
repo = "gregorio-mode.el";
@@ -25424,7 +25897,7 @@
sha256 = "1670pxgmqflzw5d02mzsmqjf3gp0c4wf25z0crmaamyfmwdz9pag";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/gregorio-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/81317d4ad793d8a58770844ec9a526a2c695f94a/recipes/gregorio-mode";
sha256 = "0f226l67bqqc6m8wb97m7lkxvwrfbw74b1riasirca1anzjl8jfx";
name = "gregorio-mode";
};
@@ -25437,7 +25910,7 @@
grep-a-lot = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "grep-a-lot";
- version = "20131006.1547";
+ version = "20131006.847";
src = fetchFromGitHub {
owner = "ZungBang";
repo = "emacs-grep-a-lot";
@@ -25445,7 +25918,7 @@
sha256 = "1f8262mrlinzgnn4m49hbj1hm3c1mvzza24py4b37sasn49546lw";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/grep-a-lot";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/655332f33f308e4da09dfd27625cb30af29b95a7/recipes/grep-a-lot";
sha256 = "1513vnm5b587r15hcbnplgsfv7kv8g5fd0w4nwb6pq7myzv53ra1";
name = "grep-a-lot";
};
@@ -25457,13 +25930,13 @@
}) {};
grep-plus = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild {
pname = "grep-plus";
- version = "20160212.1525";
+ version = "20160212.825";
src = fetchurl {
url = "https://www.emacswiki.org/emacs/download/grep+.el";
sha256 = "08jl4xhh25znyc6cm7288x4b55pykrpcsyym78fdlrw3xxr77cxs";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/grep+";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/a5d15f875b0080b12ce45cf696c581f6bbf061ba/recipes/grep+";
sha256 = "1qj4f6d3l88bdcnq825pylnc76m22x2i15yxdhc2b6rv80df7zsx";
name = "grep-plus";
};
@@ -25476,7 +25949,7 @@
greymatters-theme = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "greymatters-theme";
- version = "20150621.1323";
+ version = "20150621.623";
src = fetchFromGitHub {
owner = "mswift42";
repo = "greymatters-theme";
@@ -25484,7 +25957,7 @@
sha256 = "14c09m9p6556rrf0qfad4zsv7qxa5flamzg6fa83cxh0qfg7wjbp";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/greymatters-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/d13621f3033b180d06852d90bd3ebe03276031f5/recipes/greymatters-theme";
sha256 = "10cxajyws5rwk62i4vk26c1ih0dq490kcfx7gijw38q3b5r1l8nr";
name = "greymatters-theme";
};
@@ -25496,14 +25969,14 @@
}) {};
grin = callPackage ({ fetchhg, fetchurl, lib, melpaBuild }: melpaBuild {
pname = "grin";
- version = "20110806.858";
+ version = "20110806.158";
src = fetchhg {
url = "https://bitbucket.com/dariusp686/emacs-grin";
rev = "f541aa22da52";
sha256 = "0rqpgc50z86j4waijfm6kw4zjmzqfii6nnvyix4rkd4y3ryny1x2";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/grin";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/5b7972602399f9df9139cff177e38653bb0f43ed/recipes/grin";
sha256 = "0mvzwmws5pi6hpzgkc43fjxs98ngkr0jvqbclza2jbbqawifzzbk";
name = "grin";
};
@@ -25516,7 +25989,7 @@
grizzl = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "grizzl";
- version = "20160131.851";
+ version = "20160131.151";
src = fetchFromGitHub {
owner = "grizzl";
repo = "grizzl";
@@ -25524,7 +25997,7 @@
sha256 = "1d2kwiq3zy8wdg5zig0q9rrdcs4xdv6zsgvgc21b3kv83daq1dsq";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/grizzl";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/7fabdb05de9b8ec18a3a566f99688b50443b6b44/recipes/grizzl";
sha256 = "0354xskqzxc38l14zxqs31hadwh27v9lyx67y3hnd94d8abr0qcb";
name = "grizzl";
};
@@ -25537,7 +26010,7 @@
groovy-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "groovy-mode";
- version = "20160504.1111";
+ version = "20160504.411";
src = fetchFromGitHub {
owner = "Groovy-Emacs-Modes";
repo = "groovy-emacs-modes";
@@ -25545,7 +26018,7 @@
sha256 = "1dwj53z4422ks30cqr5rj6x91qf63sjzbmb06sz4ac5pdr1d66q6";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/groovy-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/3fe318b4e51a280a55c01fa30455e4a180df8bd6/recipes/groovy-mode";
sha256 = "1pxw7rdn56klmr6kw21lhzh7zhp338gyf54ypsml64ibzr1x9kal";
name = "groovy-mode";
};
@@ -25558,7 +26031,7 @@
gruber-darker-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "gruber-darker-theme";
- version = "20160417.1330";
+ version = "20160417.630";
src = fetchFromGitHub {
owner = "rexim";
repo = "gruber-darker-theme";
@@ -25566,7 +26039,7 @@
sha256 = "0dn1iscy0vw2bcnh5s675wjnfk9f20i30b8slyffvpzbbi369pys";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/gruber-darker-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/87ade74553c04cb9dcfe16d03f263cc6f1fed046/recipes/gruber-darker-theme";
sha256 = "0vn4msixb77xj6p5mlfchjyyjhzah0lcmp0z82s8849zd194fxqi";
name = "gruber-darker-theme";
};
@@ -25579,7 +26052,7 @@
grunt = callPackage ({ ansi-color ? null, dash, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "grunt";
- version = "20160316.1628";
+ version = "20160316.1028";
src = fetchFromGitHub {
owner = "gempesaw";
repo = "grunt.el";
@@ -25587,7 +26060,7 @@
sha256 = "1xd6gv9bkqnj7j5mcnwvl1mxjmzvxqhp135hxj0ijc0ybdybacf7";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/grunt";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/acc9b816796b9f142c53f90593952b43c962d2d8/recipes/grunt";
sha256 = "1qdzqcrff9x97kyy0d4j636d5i751qja10liw8i0lf4lk6n0lywz";
name = "grunt";
};
@@ -25600,7 +26073,7 @@
gruvbox-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "gruvbox-theme";
- version = "20160514.1558";
+ version = "20160514.858";
src = fetchFromGitHub {
owner = "Greduan";
repo = "emacs-theme-gruvbox";
@@ -25608,7 +26081,7 @@
sha256 = "0xa7pnyp0iggaxsfic7gjnbib2c9175cg9d75bml760s18fvnciv";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/gruvbox-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/2bd48c87919f64ced9f3add4860751bb34cb5ecb/recipes/gruvbox-theme";
sha256 = "042mnwlmixygk2mf24ygk7rkv1rfavc5a36hs9x8b68jnf3khj32";
name = "gruvbox-theme";
};
@@ -25621,7 +26094,7 @@
gs-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "gs-mode";
- version = "20151202.1106";
+ version = "20151202.406";
src = fetchFromGitHub {
owner = "yyr";
repo = "emacs-grads";
@@ -25629,7 +26102,7 @@
sha256 = "1d89gxyzv0z0nk7v1aa4qa0xfms2g2dsrr07cw0d99xsnyxfky31";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/gs-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/bc1aa5335810e3d6572ebe9cd8949932b74d0f46/recipes/gs-mode";
sha256 = "02ldd92fv1k28nygl34i8gv0b0i1v5qd7nl1l17cf5f3akdwc6iq";
name = "gs-mode";
};
@@ -25642,15 +26115,15 @@
gscholar-bibtex = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "gscholar-bibtex";
- version = "20160526.601";
+ version = "20160701.1827";
src = fetchFromGitHub {
owner = "cute-jumper";
repo = "gscholar-bibtex";
- rev = "3d4dbce38d28abd5b3c2f6be8a60a5d45bff4b01";
- sha256 = "15x7zixm9h69qm26mzx6xza9mcdix968nikhfwsr0q5j4s75nlb5";
+ rev = "ed0053be2cedb54c4aeb7a48b51ef775be0689a3";
+ sha256 = "10d2qmwva41x9ykfy9csl5isi03q2a5c9nv3239mqyn8cxw9dxrb";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/gscholar-bibtex";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/9fa546d3dce59b07a623ee83e3befe139dc10481/recipes/gscholar-bibtex";
sha256 = "0d41gr9amf9vdn9pl9lamhp2swqllxslv9r3wsgzqvjl7zayd1az";
name = "gscholar-bibtex";
};
@@ -25663,7 +26136,7 @@
guide-key = callPackage ({ dash, fetchFromGitHub, fetchurl, lib, melpaBuild, popwin, s }:
melpaBuild {
pname = "guide-key";
- version = "20150108.735";
+ version = "20150108.35";
src = fetchFromGitHub {
owner = "kai2nenobu";
repo = "guide-key";
@@ -25671,7 +26144,7 @@
sha256 = "14sx5m6fpkm2q8ljkicl1yy1sw003k4rzz9hi7lm1nfqr2l4n6q0";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/guide-key";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/490b81308ae8132d8c3fd8c3951be88159719172/recipes/guide-key";
sha256 = "0zjrdvppcg8b2k6hfdj45rswc1ks9xgimcr2yvgpc8prrwk1yjsf";
name = "guide-key";
};
@@ -25684,7 +26157,7 @@
guide-key-tip = callPackage ({ fetchFromGitHub, fetchurl, guide-key, lib, melpaBuild, pos-tip }:
melpaBuild {
pname = "guide-key-tip";
- version = "20140407.320";
+ version = "20140406.2020";
src = fetchFromGitHub {
owner = "aki2o";
repo = "guide-key-tip";
@@ -25692,7 +26165,7 @@
sha256 = "1s6p4ysdbqx5fk68s317ckj5rjmpkwwb0324sbqqa6byhw3j0xyj";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/guide-key-tip";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/1f23db7563654ab58632d56e3b01d2f78276fc3e/recipes/guide-key-tip";
sha256 = "0h2vkkbxq361dkn6irm1v19qj7bkhxcjljiksd5wwlq5zsq6bd06";
name = "guide-key-tip";
};
@@ -25705,7 +26178,7 @@
guru-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "guru-mode";
- version = "20160416.421";
+ version = "20160415.2121";
src = fetchFromGitHub {
owner = "bbatsov";
repo = "guru-mode";
@@ -25713,7 +26186,7 @@
sha256 = "1jymhjjpn600svd5jbj42m3vnpaza838zby507ynbwc95nja29vs";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/guru-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/e60af6ccb902d8ef00cfecbb13cafebbe3b00d89/recipes/guru-mode";
sha256 = "0j25nxs3ndybq1ik36qyqdprmhav4ba8ny7v2z61s23id8hz3xjs";
name = "guru-mode";
};
@@ -25726,7 +26199,7 @@
gvpr-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "gvpr-mode";
- version = "20131208.1818";
+ version = "20131208.1118";
src = fetchFromGitHub {
owner = "rodw";
repo = "gvpr-lib";
@@ -25734,7 +26207,7 @@
sha256 = "0060qw4gr9fv6db20xf3spgl2fwg2iid5ckfjm3vj3ydyv62q13s";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/gvpr-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/ab25afcf4232082dc0e48706734f141a308912a7/recipes/gvpr-mode";
sha256 = "19p6f06qdjvh2vmgbabajvkfxpn13j899jrivw9mqyssz0cyvzgw";
name = "gvpr-mode";
};
@@ -25747,15 +26220,15 @@
hackernews = callPackage ({ fetchFromGitHub, fetchurl, json ? null, lib, melpaBuild }:
melpaBuild {
pname = "hackernews";
- version = "20160326.1525";
+ version = "20160627.1851";
src = fetchFromGitHub {
owner = "clarete";
repo = "hackernews.el";
- rev = "452e939211ebc0af7256a2f0e8cdad5c426694e6";
- sha256 = "1c49lfm5saafxks591qyy2nilymxz3aqlxpsmnad5d0kfhvjr47z";
+ rev = "d6857acce7032035ffb4ee23358712127b8dd5a5";
+ sha256 = "1xgx66dlhz4my1blnkddcwk6aan532fnvgli2dbbiy5ixn8aw1kc";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/hackernews";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/c43a342e47e5ede468bcf51a60d4dea3926f51bd/recipes/hackernews";
sha256 = "1x1jf5gkhmpiby5rmy0sziywh6c1f1n0p4f6dlz6ifbwns7har6a";
name = "hackernews";
};
@@ -25768,7 +26241,7 @@
ham-mode = callPackage ({ fetchFromGitHub, fetchurl, html-to-markdown, lib, markdown-mode, melpaBuild }:
melpaBuild {
pname = "ham-mode";
- version = "20150811.1506";
+ version = "20150811.806";
src = fetchFromGitHub {
owner = "Malabarba";
repo = "ham-mode";
@@ -25776,7 +26249,7 @@
sha256 = "0d3xmagl18pas19zbpg27j0lmdiry23df48z4vkjsrcllqg25v5g";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ham-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/1e6aed365c42987d64d0cd9a8a6178339b1b39e8/recipes/ham-mode";
sha256 = "000qrdby7d6zmp5066vs4gjlc9ik0ybrgcwzcbfgxb16w1g9xpmz";
name = "ham-mode";
};
@@ -25789,7 +26262,7 @@
hamburg-theme = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "hamburg-theme";
- version = "20160123.840";
+ version = "20160123.140";
src = fetchFromGitHub {
owner = "mswift42";
repo = "hamburg-theme";
@@ -25797,7 +26270,7 @@
sha256 = "1rnkzl51h263nck1bd0jyb7q58b54d764gcsh7wqxfgzs1jfr4am";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/hamburg-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/465ac6063c4f91652e59a8bbb493897109791728/recipes/hamburg-theme";
sha256 = "149ln7670kjyhdfj5j9akxch47dlff2hd58amla7j3297z1nhg4k";
name = "hamburg-theme";
};
@@ -25810,7 +26283,7 @@
haml-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, ruby-mode ? null }:
melpaBuild {
pname = "haml-mode";
- version = "20150509.511";
+ version = "20150508.2211";
src = fetchFromGitHub {
owner = "nex3";
repo = "haml-mode";
@@ -25818,7 +26291,7 @@
sha256 = "0fmcm4pcivigz9xhf7z9wsxz9pg1yfx9qv8na2dxj426bibk0a6w";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/haml-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/cae2ac3513e371a256be0f1a7468e38e686c2487/recipes/haml-mode";
sha256 = "0ih0m7zr6kgn6zd45zbp1jgs1ydc5i5gmq6l080wma83v5w1436f";
name = "haml-mode";
};
@@ -25831,7 +26304,7 @@
hamlet-mode = callPackage ({ cl-lib ? null, dash, fetchFromGitHub, fetchurl, lib, melpaBuild, s }:
melpaBuild {
pname = "hamlet-mode";
- version = "20131208.824";
+ version = "20131208.124";
src = fetchFromGitHub {
owner = "lightquake";
repo = "hamlet-mode";
@@ -25839,7 +26312,7 @@
sha256 = "1njrpb1s2v9skyfbgb28clrxyvyp8i4b8kwa68ynvq3vjb4fnws6";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/hamlet-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/40ad05c824c7f2ef8d8a6f5dfad6e7685dc70803/recipes/hamlet-mode";
sha256 = "0ils4w8ry1inlfj4931ypibj3n60xq6ah74hig62y4vrs4d47gyx";
name = "hamlet-mode";
};
@@ -25852,7 +26325,7 @@
handlebars-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "handlebars-mode";
- version = "20150211.1849";
+ version = "20150211.1149";
src = fetchFromGitHub {
owner = "danielevans";
repo = "handlebars-mode";
@@ -25860,7 +26333,7 @@
sha256 = "0w443knp6kvjm2m79cni5d17plyhbsl0a4kip7yrpv5nmg370q3p";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/handlebars-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/7c4f1e610cce403e86346b12b03892560dee3ccb/recipes/handlebars-mode";
sha256 = "11ahrm4n588v7ir2r7sp4dkbypl5nhnr22px849hdxjcrwal24vj";
name = "handlebars-mode";
};
@@ -25873,7 +26346,7 @@
handlebars-sgml-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "handlebars-sgml-mode";
- version = "20130624.133";
+ version = "20130623.1833";
src = fetchFromGitHub {
owner = "jacott";
repo = "handlebars-sgml-mode";
@@ -25881,7 +26354,7 @@
sha256 = "1z37di9vk1l35my8kl8jnyqlkr1rnp0iz13hpc0r065mib67v58k";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/handlebars-sgml-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/87aec68ed80545a61ad46b71e7bd9dbfc7634108/recipes/handlebars-sgml-mode";
sha256 = "10sxm7v94yxa92mqbwj3shqjs6f3zbxjvwgbvg9m2fh3b7xj617w";
name = "handlebars-sgml-mode";
};
@@ -25894,7 +26367,7 @@
handoff = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "handoff";
- version = "20150917.800";
+ version = "20150917.100";
src = fetchFromGitHub {
owner = "rejeep";
repo = "handoff.el";
@@ -25902,7 +26375,7 @@
sha256 = "0whn8rc98dhncgizzrb22nx6b6cm655q1cf2fpn6g3knq1c2471r";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/handoff";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/bbdb89413b3f5de680e3f9fa625039c73a377e97/recipes/handoff";
sha256 = "0iqqvygx50wi2vcbs6bfgqzhcz9a89zrwb7sg0ang9qrkiz5k36w";
name = "handoff";
};
@@ -25915,7 +26388,7 @@
hardcore-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "hardcore-mode";
- version = "20151114.801";
+ version = "20151114.101";
src = fetchFromGitHub {
owner = "magnars";
repo = "hardcore-mode.el";
@@ -25923,7 +26396,7 @@
sha256 = "124k803pgxc7fz325yy6jcyam69f5fk9kdwfgmnwwca9ablq4cfb";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/hardcore-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/b929b3343cd5925944665e4e09b4524bca873c95/recipes/hardcore-mode";
sha256 = "1bgi1acpw4z7i03d0i8mrd2hpjn6hyvkdsk0ks9q380yp9mqmiwd";
name = "hardcore-mode";
};
@@ -25936,7 +26409,7 @@
hardhat = callPackage ({ fetchFromGitHub, fetchurl, ignoramus, lib, melpaBuild }:
melpaBuild {
pname = "hardhat";
- version = "20160414.1613";
+ version = "20160414.913";
src = fetchFromGitHub {
owner = "rolandwalker";
repo = "hardhat";
@@ -25944,7 +26417,7 @@
sha256 = "0j9z46j777y3ljpai5czdlwl07f0irp4fsk4677n11ndyqm1amb5";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/hardhat";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/081aa3e1d50c2c9e5a9b9ce0716258a93279f605/recipes/hardhat";
sha256 = "16pdbpm647ag9cadmdm75nwwyzrqsd9y1b4zgkl3pg669mi5vl5z";
name = "hardhat";
};
@@ -25957,7 +26430,7 @@
harvest = callPackage ({ fetchFromGitHub, fetchurl, hydra, lib, melpaBuild, s, swiper }:
melpaBuild {
pname = "harvest";
- version = "20160405.1843";
+ version = "20160405.1143";
src = fetchFromGitHub {
owner = "kostajh";
repo = "harvest.el";
@@ -25965,7 +26438,7 @@
sha256 = "0vachg3zqnm47x4gpdy4lb453pkmi7gjps4vpw5mx6c96il3c1xp";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/harvest";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/b1dcfc8f0759792367ee49d2fe96e5bd7ca4105f/recipes/harvest";
sha256 = "1qfhfzjwlnqpbq4kfxvs97fa3xks8zi02fnwv0ik8wb1ppbb77qd";
name = "harvest";
};
@@ -25978,7 +26451,7 @@
haskell-emacs = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "haskell-emacs";
- version = "20160223.1250";
+ version = "20160223.550";
src = fetchFromGitHub {
owner = "knupfer";
repo = "haskell-emacs";
@@ -25986,7 +26459,7 @@
sha256 = "114qg91mb53ib7alnn1i9wjcr4psqps6ncpyqyklllmbdm0q660n";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/haskell-emacs";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/5daff329a96a6d10bca11d838bbc95d1c8bcfbd9/recipes/haskell-emacs";
sha256 = "1wkh7qws35c32hha0p9rpjz5pls2844920nh919lvp2wmq9l6jd6";
name = "haskell-emacs";
};
@@ -25999,7 +26472,7 @@
haskell-emacs-base = callPackage ({ fetchFromGitHub, fetchurl, haskell-emacs, lib, melpaBuild }:
melpaBuild {
pname = "haskell-emacs-base";
- version = "20150714.1759";
+ version = "20150714.1059";
src = fetchFromGitHub {
owner = "knupfer";
repo = "haskell-emacs";
@@ -26007,7 +26480,7 @@
sha256 = "114qg91mb53ib7alnn1i9wjcr4psqps6ncpyqyklllmbdm0q660n";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/haskell-emacs-base";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/5daff329a96a6d10bca11d838bbc95d1c8bcfbd9/recipes/haskell-emacs-base";
sha256 = "1fwkds6qyhbxxdgxfzmgd7dlcxr08ynrrg5jdp9r7f924pd536vb";
name = "haskell-emacs-base";
};
@@ -26020,7 +26493,7 @@
haskell-emacs-text = callPackage ({ fetchFromGitHub, fetchurl, haskell-emacs, lib, melpaBuild }:
melpaBuild {
pname = "haskell-emacs-text";
- version = "20150713.1616";
+ version = "20150713.916";
src = fetchFromGitHub {
owner = "knupfer";
repo = "haskell-emacs";
@@ -26028,7 +26501,7 @@
sha256 = "114qg91mb53ib7alnn1i9wjcr4psqps6ncpyqyklllmbdm0q660n";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/haskell-emacs-text";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/5daff329a96a6d10bca11d838bbc95d1c8bcfbd9/recipes/haskell-emacs-text";
sha256 = "1j18fhhra6lv32xrq8jc6l8i56fgn68da81wymcimpmpbp0hl5fy";
name = "haskell-emacs-text";
};
@@ -26041,15 +26514,15 @@
haskell-mode = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "haskell-mode";
- version = "20160603.547";
+ version = "20160622.1633";
src = fetchFromGitHub {
owner = "haskell";
repo = "haskell-mode";
- rev = "cd820dcfab6a09bb7cfe88b38d75b8a3a0bcdb9f";
- sha256 = "096hg88ld70zls94nnva038fr8rfw1mksal746hm47c1159nkn2i";
+ rev = "e7452b435def8fe411aecb08d7130f92bda2bb13";
+ sha256 = "1z9mgdk976hqpayc7zsnx53wqz23lkrc0avh5ljjkg9nlwyqbk6c";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/haskell-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/7f18b4dcbad4192b0153a316cff6533272898f1a/recipes/haskell-mode";
sha256 = "0wijvcpfdbl17iwzy47vf8brkj2djarfr8y28rw0wqvbs381zzwp";
name = "haskell-mode";
};
@@ -26062,7 +26535,7 @@
haskell-snippets = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, yasnippet }:
melpaBuild {
pname = "haskell-snippets";
- version = "20160121.2358";
+ version = "20160121.1658";
src = fetchFromGitHub {
owner = "haskell";
repo = "haskell-snippets";
@@ -26070,7 +26543,7 @@
sha256 = "1wha5f2zx5hr6y0wvpmkg7jnxcgbzx99gd70h96c3dqqqhqz6d2a";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/haskell-snippets";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/b5534e58ea66fd90ba4a69262f0b303c7fb85af4/recipes/haskell-snippets";
sha256 = "10bvv7q694fahcpm83v8lpqihg1gvfzrp1hdzwiffxydfvdbalh2";
name = "haskell-snippets";
};
@@ -26083,14 +26556,14 @@
haskell-tab-indent = callPackage ({ fetchgit, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "haskell-tab-indent";
- version = "20151205.2059";
+ version = "20151205.1359";
src = fetchgit {
url = "https://git.spwhitton.name/haskell-tab-indent";
rev = "150f52176242ba3bc4f58179cd2dbee4d89580f4";
sha256 = "0hfq8wpnyz5sqhkr53smw0k1wi7mb5k215xnvywkh5lhsq8cjhby";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/haskell-tab-indent";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/371f9f45e441cdf4e95557d1e9692619fab3024a/recipes/haskell-tab-indent";
sha256 = "0vdfmy56w5yi202nbd28v1bzj97v1wxnfnb5z3dh9687p2abgnr7";
name = "haskell-tab-indent";
};
@@ -26103,7 +26576,7 @@
haste = callPackage ({ fetchFromGitHub, fetchurl, json ? null, lib, melpaBuild }:
melpaBuild {
pname = "haste";
- version = "20141030.2134";
+ version = "20141030.1534";
src = fetchFromGitHub {
owner = "rlister";
repo = "emacs-haste-client";
@@ -26111,7 +26584,7 @@
sha256 = "1gmh455ahd9if11f8mrqbfky24c784bb4fgdl3pj8i0n5sl51i88";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/haste";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/4d9aa97450fdbd138f8293cfb31212a7c7f9eee8/recipes/haste";
sha256 = "0wz15p58g4mxvwbpy9k60gixs1g4jw7pay5pbxnlggc39x1py8nf";
name = "haste";
};
@@ -26124,14 +26597,14 @@
haxe-mode = callPackage ({ fetchhg, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "haxe-mode";
- version = "20131004.1042";
+ version = "20131004.342";
src = fetchhg {
url = "https://bitbucket.com/jpsecher/haxe-mode";
rev = "850f29d9f70e";
sha256 = "106a7kpjj4laxl7x8aqpv75ih54569b3bs2a1b8z4rghmikqc4aw";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/haxe-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/5b7972602399f9df9139cff177e38653bb0f43ed/recipes/haxe-mode";
sha256 = "032h0nxlsrk30bsqb02by842ycrw1qscpfprifjjkaiq08wigh1l";
name = "haxe-mode";
};
@@ -26144,15 +26617,15 @@
haxor-mode = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "haxor-mode";
- version = "20160529.2029";
+ version = "20160618.629";
src = fetchFromGitHub {
owner = "krzysztof-magosa";
repo = "haxor-mode";
- rev = "c4d0a28bf090966610257ac2ce98d53211de1ecb";
- sha256 = "0905vb0ars2qqml0m3ny88klxsa7jinan4bqxsd06plll2gl7ivw";
+ rev = "6fa25a8e6b6a59481bc0354c2fe1e0ed53cbdc91";
+ sha256 = "0pdfvqbz4wmjl15wi3k4h7myij8v63vmyiq8g9fai18f7ad2klp1";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/haxor-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/cd0352cac399eb2072dfb788deea9cc22d902964/recipes/haxor-mode";
sha256 = "1y4m058whdqnkkf9s6hzi0h6w0fc8ajfawhpjj0wqjam4adnfkq5";
name = "haxor-mode";
};
@@ -26165,7 +26638,7 @@
hayoo = callPackage ({ emacs, fetchFromGitHub, fetchurl, json ? null, lib, melpaBuild }:
melpaBuild {
pname = "hayoo";
- version = "20140831.1421";
+ version = "20140831.721";
src = fetchFromGitHub {
owner = "benma";
repo = "hayoo.el";
@@ -26173,7 +26646,7 @@
sha256 = "0pjxyhh8a02i54a9jsqr8p1mcqfl6k9b8gv9lnzb242gy4518y3l";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/hayoo";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/01c1b96a4d076323264b2762d2c5a61680e21cff/recipes/hayoo";
sha256 = "1rqvnv5nxlsyvsa5my1wpfm82sw21s7kfbg80vrjmxh0mwlyv4p9";
name = "hayoo";
};
@@ -26186,7 +26659,7 @@
hc-zenburn-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "hc-zenburn-theme";
- version = "20150928.1833";
+ version = "20150928.1133";
src = fetchFromGitHub {
owner = "edran";
repo = "hc-zenburn-emacs";
@@ -26194,7 +26667,7 @@
sha256 = "0rgcj47h7a67qkw6696pcm1a4g4ryx8nrz55s69fw86958fp08hk";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/hc-zenburn-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/01ccd40bd5fc2699a4756ebf503ac50f562cf600/recipes/hc-zenburn-theme";
sha256 = "0jcddk9ppgcizyyciabj3sgk1pmingl97knf9nmr0mi89h7n2g5y";
name = "hc-zenburn-theme";
};
@@ -26207,7 +26680,7 @@
hcl-mode = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "hcl-mode";
- version = "20160503.200";
+ version = "20160502.1900";
src = fetchFromGitHub {
owner = "syohex";
repo = "emacs-hcl-mode";
@@ -26215,7 +26688,7 @@
sha256 = "0hiw226gv73jh7s3jg4p1c15p4km4rs7i9ab4wgpkl5lg4vrz5i6";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/hcl-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/66b441525dc300b364d9be0358ae1e0fa2a8b4fe/recipes/hcl-mode";
sha256 = "1wrs9kj6ahsdnbn3fdaqhclq1ia6w4x726hjvl6pyk01sb0spnin";
name = "hcl-mode";
};
@@ -26227,13 +26700,13 @@
}) {};
header2 = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild {
pname = "header2";
- version = "20151231.2226";
+ version = "20151231.1526";
src = fetchurl {
url = "https://www.emacswiki.org/emacs/download/header2.el";
sha256 = "00j74cqdnaf5rl7w4wabm4z88cm20s152y0yxnv73z9pvqbknrmm";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/header2";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/d16829cb4dea98908735be13aa632bc13d308acb/recipes/header2";
sha256 = "1dg25krx3wxma2l5vb2ji7rpfp17qbrl62jyjpa52cjfsvyp6v06";
name = "header2";
};
@@ -26246,7 +26719,7 @@
headlong = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "headlong";
- version = "20150417.1726";
+ version = "20150417.1026";
src = fetchFromGitHub {
owner = "abo-abo";
repo = "headlong";
@@ -26254,7 +26727,7 @@
sha256 = "06hq6p6a4fzprbj4r885vsvzddlvx0wxqk5kik06v5bm7hjmnyrq";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/headlong";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/826e9a8221d9378dd3b9fcc16ce5f50fd6ed2dce/recipes/headlong";
sha256 = "042ybplkqjb30qf5cpbw5d91j1rdc71b789v277h036bri7hgxz6";
name = "headlong";
};
@@ -26267,15 +26740,15 @@
helm = callPackage ({ async, emacs, fetchFromGitHub, fetchurl, helm-core, lib, melpaBuild, popup }:
melpaBuild {
pname = "helm";
- version = "20160604.730";
+ version = "20160703.17";
src = fetchFromGitHub {
owner = "emacs-helm";
repo = "helm";
- rev = "c9cdcc316297c3e34ea214044af0b0f643adf239";
- sha256 = "1lsf5mq37xvfshx6lgzpbvv8378mbsr5rdlq6vrrb498x28nhiv4";
+ rev = "151ae12d7048934b58cf3ff0afe2262208dbd07d";
+ sha256 = "0flqigd4bh5pfnzrr3v69w64n8b8qvhfx3lfclmgdb2qy15srwsi";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/90ab37af6b0c85eac11c423bc8f0d93d6d8a9fd4/recipes/helm";
sha256 = "0xsf4rg7kn0m5wjlbwhd1mc38lg2822037dyd0h66h6x2gbs3fd9";
name = "helm";
};
@@ -26288,7 +26761,7 @@
helm-R = callPackage ({ ess, fetchFromGitHub, fetchurl, helm, lib, melpaBuild }:
melpaBuild {
pname = "helm-R";
- version = "20120820.214";
+ version = "20120819.1914";
src = fetchFromGitHub {
owner = "myuhe";
repo = "helm-R.el";
@@ -26296,7 +26769,7 @@
sha256 = "0nip0zrmn944wy0x2dc5ryr0m7a948rn2a8cbaajghs7a7zai4cr";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-R";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/ce6eb840368f8cbee66dc061478d5096b9dacb68/recipes/helm-R";
sha256 = "0zq9f2xhgap3ihnrlsrsaxaz0nx014k0820bfsq7lckwcnm0mng1";
name = "helm-R";
};
@@ -26309,7 +26782,7 @@
helm-ack = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, helm, lib, melpaBuild }:
melpaBuild {
pname = "helm-ack";
- version = "20141030.1326";
+ version = "20141030.726";
src = fetchFromGitHub {
owner = "syohex";
repo = "emacs-helm-ack";
@@ -26317,7 +26790,7 @@
sha256 = "04rvbafa77blps7x7cmlsciys8fgmvhfhq4v51pk8z5q3j1lrgc5";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-ack";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/258d447778525c26c65a5819ba1edc00e2bb65e5/recipes/helm-ack";
sha256 = "1a8sc5gd2g57dl9g18wyydfmihy74yniwhjr27h7vxylnf2g3pni";
name = "helm-ack";
};
@@ -26330,7 +26803,7 @@
helm-ad = callPackage ({ dash, fetchFromGitHub, fetchurl, helm, lib, melpaBuild }:
melpaBuild {
pname = "helm-ad";
- version = "20151209.1115";
+ version = "20151209.415";
src = fetchFromGitHub {
owner = "tnoda";
repo = "helm-ad";
@@ -26338,7 +26811,7 @@
sha256 = "0hxfgdn56c7qr64r59g9hvxxwa4mw0ad9c9m0z5cj85bsdd7rlx4";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-ad";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/b44ec4e059ab830a3708697fa95fada5f6a30a91/recipes/helm-ad";
sha256 = "0h2zjfj9hy7bkpmmjjs0a4a06asbw0yww8mw9rk2xi1gc2aqq4hi";
name = "helm-ad";
};
@@ -26351,15 +26824,15 @@
helm-ag = callPackage ({ emacs, fetchFromGitHub, fetchurl, helm, lib, melpaBuild }:
melpaBuild {
pname = "helm-ag";
- version = "20160527.1654";
+ version = "20160702.524";
src = fetchFromGitHub {
owner = "syohex";
repo = "emacs-helm-ag";
- rev = "a67c887b0128fd00ada27cc5e42cd5df77dc2cde";
- sha256 = "0hajmc2imlp1srx6jj0b9r9fb4ivqv48vxbhx5ddpcpww21ifxj1";
+ rev = "51de5568ca65baa9f1a3e22c8cad9d7dda4fb6c5";
+ sha256 = "04m9l63rzdg40c7x8rkrdxw1pcw4bqxf9npx6kx7rdy02393zb80";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-ag";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/81f0f525680fea98e804f39dbde1dada887e8821/recipes/helm-ag";
sha256 = "050qh5xqh8lwkgmz3jxm8gql5nd7bq8sp9q6mzm2z7367qy4qqyf";
name = "helm-ag";
};
@@ -26372,7 +26845,7 @@
helm-ag-r = callPackage ({ fetchFromGitHub, fetchurl, helm, lib, melpaBuild }:
melpaBuild {
pname = "helm-ag-r";
- version = "20131123.1631";
+ version = "20131123.931";
src = fetchFromGitHub {
owner = "yuutayamada";
repo = "helm-ag-r";
@@ -26380,7 +26853,7 @@
sha256 = "1rifdkhzvf7xd2npban0i8v3rjcji69063dw9rs1d32w4n7fzlfa";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-ag-r";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/6aa1cf029db913dafb561e4c8ccc1ca9099524de/recipes/helm-ag-r";
sha256 = "0ivh7f021lbmbaj6gs4y8m99s63js57w04q7cwx7v4i32cpas7r9";
name = "helm-ag-r";
};
@@ -26393,7 +26866,7 @@
helm-anything = callPackage ({ anything, fetchFromGitHub, fetchurl, helm, lib, melpaBuild }:
melpaBuild {
pname = "helm-anything";
- version = "20141126.1131";
+ version = "20141126.431";
src = fetchFromGitHub {
owner = "rubikitch";
repo = "helm-anything";
@@ -26401,7 +26874,7 @@
sha256 = "153zq1q3s3ihjh15wyci9qdic3pin8f1j1gq2qlzyhmy0njlvgjb";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-anything";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/0d844b790661258bc9b73985ad7a7da37ba339ab/recipes/helm-anything";
sha256 = "0yjlwsiahb7n4q3522d68xrdb8caad9gpnglz5php245yqy3n5vx";
name = "helm-anything";
};
@@ -26414,7 +26887,7 @@
helm-aws = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, helm, lib, melpaBuild, s }:
melpaBuild {
pname = "helm-aws";
- version = "20151124.1033";
+ version = "20151124.333";
src = fetchFromGitHub {
owner = "istib";
repo = "helm-aws";
@@ -26422,7 +26895,7 @@
sha256 = "1bnypr906gfc1fbyrqfsfilsl6wiacrnhr8flpa0gmdjhvmrw7af";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-aws";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/421182006b8af17dae8b5ad453cc11e2d990a053/recipes/helm-aws";
sha256 = "0sjgdjpznjxsf6nlv2ah45fw17j8j5apdphd1fp43rjv1lskkgc5";
name = "helm-aws";
};
@@ -26435,15 +26908,15 @@
helm-backup = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, helm, lib, melpaBuild, s }:
melpaBuild {
pname = "helm-backup";
- version = "20151213.1947";
+ version = "20151213.1247";
src = fetchFromGitHub {
owner = "antham";
repo = "helm-backup";
- rev = "184026b9fe454aab8e7730106b4ca494fe307769";
- sha256 = "0d6h4gbb69abxxgm85pdi5rsaf9h72yryg72ykd5633i1g4s8a76";
+ rev = "9f7075e81c4996c22bc9dd4fe48ad8e8acc55efb";
+ sha256 = "1zmv80iw1y6pj2c78227pc1hi85a986pkglzvjz8cb3c4rvd81ck";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-backup";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/5e6eba7b201e91211e43c39e501f6066f0afeb8b/recipes/helm-backup";
sha256 = "182jbm36yzayxi9y3vhpyn25ivrgay37sncqvah35vbw52lnjcn3";
name = "helm-backup";
};
@@ -26456,7 +26929,7 @@
helm-bibtex = callPackage ({ biblio, cl-lib ? null, dash, f, fetchFromGitHub, fetchurl, helm, lib, melpaBuild, parsebib, s }:
melpaBuild {
pname = "helm-bibtex";
- version = "20160423.100";
+ version = "20160422.1800";
src = fetchFromGitHub {
owner = "tmalsburg";
repo = "helm-bibtex";
@@ -26464,7 +26937,7 @@
sha256 = "1zrs1gk95mna1kipgrq8mfhk0gqimvsb4b583f900fh86019nn1l";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-bibtex";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/f4118a7721435240cf8489daa4dd39369208855b/recipes/helm-bibtex";
sha256 = "037pqgyyb2grg88yfxx1r8yp4lrgz2fyzz9fbbp34l8s6vk3cp4z";
name = "helm-bibtex";
};
@@ -26477,7 +26950,7 @@
helm-bibtexkey = callPackage ({ fetchFromGitHub, fetchurl, helm, lib, melpaBuild }:
melpaBuild {
pname = "helm-bibtexkey";
- version = "20140214.1604";
+ version = "20140214.904";
src = fetchFromGitHub {
owner = "kenbeese";
repo = "helm-bibtexkey";
@@ -26485,7 +26958,7 @@
sha256 = "10k7hjfz9jmfpbmsv20jy9vr6fqxx1yp8v115hprqvw057iifsl9";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-bibtexkey";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/d35a2e5cb5232d16d5c98168706d8b6426fcfb44/recipes/helm-bibtexkey";
sha256 = "00i7ni4r73mmxavhfcm0fd7jhx6gxvxx7prax1yxmhs46fpz8jwj";
name = "helm-bibtexkey";
};
@@ -26498,7 +26971,7 @@
helm-bind-key = callPackage ({ bind-key, fetchFromGitHub, fetchurl, helm, lib, melpaBuild }:
melpaBuild {
pname = "helm-bind-key";
- version = "20141109.615";
+ version = "20141108.2315";
src = fetchFromGitHub {
owner = "myuhe";
repo = "helm-bind-key.el";
@@ -26506,7 +26979,7 @@
sha256 = "1wmcy7q4ys2sf8ya5l4n7a6bq5m9d6m19amjfwkmkh4ajkwl041y";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-bind-key";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/9ae8bfd320cdef6c65da2a00439f8108d7ffa7ce/recipes/helm-bind-key";
sha256 = "1yfj6mmxc165in1i85ccanssch6bg19ib1fcm7sa4i4hv0mgwaid";
name = "helm-bind-key";
};
@@ -26519,7 +26992,7 @@
helm-bm = callPackage ({ bm, cl-lib ? null, fetchFromGitHub, fetchurl, helm, lib, melpaBuild, s }:
melpaBuild {
pname = "helm-bm";
- version = "20160321.1431";
+ version = "20160321.831";
src = fetchFromGitHub {
owner = "yasuyk";
repo = "helm-bm";
@@ -26527,7 +27000,7 @@
sha256 = "011k37p4vnzm1x8vyairllanvjfknskl20bdfv0glf64xgbdpfil";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-bm";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/115033d7b02d3ca42902195de933f62c5f927ae4/recipes/helm-bm";
sha256 = "1dnlcvn0zv4qv4ii4j0h9r8w6vhi3l0c5aa768kblh5r2rf4bjjh";
name = "helm-bm";
};
@@ -26540,7 +27013,7 @@
helm-bundle-show = callPackage ({ fetchFromGitHub, fetchurl, helm, lib, melpaBuild }:
melpaBuild {
pname = "helm-bundle-show";
- version = "20151221.1330";
+ version = "20151221.630";
src = fetchFromGitHub {
owner = "masutaka";
repo = "emacs-helm-bundle-show";
@@ -26548,7 +27021,7 @@
sha256 = "1j9xmlidipsfbz0kfxwz0c6hi9xsbk36h6i30wqdd0ls0zw5xm30";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-bundle-show";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/2f10f7387cca102696c38af1d8dc0fe5da5e366f/recipes/helm-bundle-show";
sha256 = "1af5g233kjf04m2fryizk51a1s2mcmj36zip5nyb8skcsfl4riq7";
name = "helm-bundle-show";
};
@@ -26561,7 +27034,7 @@
helm-c-moccur = callPackage ({ color-moccur, fetchFromGitHub, fetchurl, helm, lib, melpaBuild }:
melpaBuild {
pname = "helm-c-moccur";
- version = "20151230.1024";
+ version = "20151230.324";
src = fetchFromGitHub {
owner = "myuhe";
repo = "helm-c-moccur.el";
@@ -26569,7 +27042,7 @@
sha256 = "0w4svbg32y63v049plvk7djc1m2amjzrr1v979d9s6jbnnpzlb5c";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-c-moccur";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/462a43341a5811822928bcac331d617a38b52e8a/recipes/helm-c-moccur";
sha256 = "1i6a4jqjy9amlhdbj5d26wzagndfgszha09vs5qf4760vjl7kn4b";
name = "helm-c-moccur";
};
@@ -26582,7 +27055,7 @@
helm-c-yasnippet = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, helm, lib, melpaBuild, yasnippet }:
melpaBuild {
pname = "helm-c-yasnippet";
- version = "20151231.910";
+ version = "20151231.210";
src = fetchFromGitHub {
owner = "emacs-jp";
repo = "helm-c-yasnippet";
@@ -26590,7 +27063,7 @@
sha256 = "03c4w34r0q7xpz1ny8dya8f96rhjpc9r2c24n7vg9x6x4i2wl204";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-c-yasnippet";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/2fc20598a2cd22efb212ba43159c6728f0249e5e/recipes/helm-c-yasnippet";
sha256 = "0jwj4giv6lxb3h7vqqb2alkwq5kp0shy2nraik33956p4l8dfs90";
name = "helm-c-yasnippet";
};
@@ -26603,15 +27076,15 @@
helm-chrome = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, helm, lib, melpaBuild }:
melpaBuild {
pname = "helm-chrome";
- version = "20151223.258";
+ version = "20160623.1806";
src = fetchFromGitHub {
owner = "kawabata";
repo = "helm-chrome";
- rev = "4591cc760d3e721094c70b913b91138776f0e52e";
- sha256 = "0wkskm0d1mvh49l65xg6pgwd7yxy02llflkzx59ayqv4wjvsyayb";
+ rev = "6fa8bf1a263b12d5dc65e24376341e5989d8055d";
+ sha256 = "0lbqxsdd2fl1pfji71a4r812wpr2sb5bm0skyn4gym00m7qia2rr";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-chrome";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/7f6ca33fe8ec8a0af8fb166451050f5502838deb/recipes/helm-chrome";
sha256 = "0p3n2pna83mp4ym8x69lk4r3q4apbj5v2blg2mwcsd9zij153nxz";
name = "helm-chrome";
};
@@ -26624,7 +27097,7 @@
helm-chronos = callPackage ({ chronos, fetchFromGitHub, fetchurl, helm, lib, melpaBuild }:
melpaBuild {
pname = "helm-chronos";
- version = "20150528.2236";
+ version = "20150528.1536";
src = fetchFromGitHub {
owner = "dxknight";
repo = "helm-chronos";
@@ -26632,7 +27105,7 @@
sha256 = "1dmj4f8pris1i7wvfplp4dbnyfm403l6rplxfrfi0cd9afg7m68i";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-chronos";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/b6f5eef6ac62ed8d035f4dd272695655d00a4180/recipes/helm-chronos";
sha256 = "1a65b680741cx4cyyizyl2c3bss36x3j2m9sh9hjc87xrzarg0s3";
name = "helm-chronos";
};
@@ -26642,10 +27115,31 @@
license = lib.licenses.free;
};
}) {};
+ helm-cider = callPackage ({ cider, emacs, fetchFromGitHub, fetchurl, helm-core, lib, melpaBuild, seq }:
+ melpaBuild {
+ pname = "helm-cider";
+ version = "20160609.2205";
+ src = fetchFromGitHub {
+ owner = "clojure-emacs";
+ repo = "helm-cider";
+ rev = "509260b26b6c55c32895b63084479df89f76e1ed";
+ sha256 = "0jvlfmzsj1c8hgmaznyxki2812k4ghralvbjkfs9vwvqjjhcp8ls";
+ };
+ recipeFile = fetchurl {
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/31d3cd618f2ac88860d0b11335ff81b6e2973982/recipes/helm-cider";
+ sha256 = "1fvpq1xi3xhd8w1yasac87incv1w4av5a8vn0birw8pc7a6bxv4w";
+ name = "helm-cider";
+ };
+ packageRequires = [ cider emacs helm-core seq ];
+ meta = {
+ homepage = "https://melpa.org/#/helm-cider";
+ license = lib.licenses.free;
+ };
+ }) {};
helm-cider-history = callPackage ({ cider, fetchFromGitHub, fetchurl, helm, lib, melpaBuild }:
melpaBuild {
pname = "helm-cider-history";
- version = "20150719.2320";
+ version = "20150719.1620";
src = fetchFromGitHub {
owner = "Kungi";
repo = "helm-cider-history";
@@ -26653,7 +27147,7 @@
sha256 = "18j4ikb3q8ygdq74zqzm83wgb39x7w209n3186mm051n8lfmkaif";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-cider-history";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/31a9c900d57f2eeed4f0101af73f8a59c20e9a99/recipes/helm-cider-history";
sha256 = "12l8jyl743zqk8m2xzcz75y1ybdkbkvcbvfkn1k88k09s31kdq4h";
name = "helm-cider-history";
};
@@ -26666,7 +27160,7 @@
helm-circe = callPackage ({ circe, cl-lib ? null, emacs, fetchFromGitHub, fetchurl, helm, lib, melpaBuild }:
melpaBuild {
pname = "helm-circe";
- version = "20160207.752";
+ version = "20160207.52";
src = fetchFromGitHub {
owner = "lesharris";
repo = "helm-circe";
@@ -26674,7 +27168,7 @@
sha256 = "1gwg299s8ps0q97iw6p515gwn73rjk1icgl3j7cj1s143njjg122";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-circe";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/f98a21483682eee0950bdba3a93d178db2118e95/recipes/helm-circe";
sha256 = "12jfzg03573lih2aapvv5h2mi3pwqc9nrmv538ivjywix5117k3v";
name = "helm-circe";
};
@@ -26687,7 +27181,7 @@
helm-clojuredocs = callPackage ({ edn, fetchFromGitHub, fetchurl, helm, lib, melpaBuild }:
melpaBuild {
pname = "helm-clojuredocs";
- version = "20160405.923";
+ version = "20160405.223";
src = fetchFromGitHub {
owner = "mbuczko";
repo = "helm-clojuredocs";
@@ -26695,7 +27189,7 @@
sha256 = "015b8zxh91ljhqvn6z43gy08di54xcw9skw0i7frj3d7gk984qhl";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-clojuredocs";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/adb117e04c158b1c77a8c1174329477d7eaca838/recipes/helm-clojuredocs";
sha256 = "0yz0wlyay9286by8i30gs3ispswq8ayqlcnna1s7bgspjvb7scmk";
name = "helm-clojuredocs";
};
@@ -26708,7 +27202,7 @@
helm-cmd-t = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "helm-cmd-t";
- version = "20150823.2057";
+ version = "20150823.1357";
src = fetchFromGitHub {
owner = "emacs-helm";
repo = "helm-cmd-t";
@@ -26716,7 +27210,7 @@
sha256 = "10cp21v8vwgp8hv2rkdn9x8v2n8wqbphgslb561rlwc2rfpvzqvs";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-cmd-t";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/7fabdb05de9b8ec18a3a566f99688b50443b6b44/recipes/helm-cmd-t";
sha256 = "1w870ldq029wgicgv4cqm31zw2i8vkap3m9hsr9d0i3gv2virnc6";
name = "helm-cmd-t";
};
@@ -26729,7 +27223,7 @@
helm-codesearch = callPackage ({ cl-lib ? null, dash, fetchFromGitHub, fetchurl, helm, lib, melpaBuild, s }:
melpaBuild {
pname = "helm-codesearch";
- version = "20160123.1213";
+ version = "20160123.513";
src = fetchFromGitHub {
owner = "youngker";
repo = "helm-codesearch.el";
@@ -26737,7 +27231,7 @@
sha256 = "05nvbwz3inbmfj88am69sz032wsj8jkfpjk5drgfijw98il9blk9";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-codesearch";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/0a992824e46a4170e2f0915f7a507fcb8a9ef0a6/recipes/helm-codesearch";
sha256 = "1v21zwcyx73bc1lcfk60v8xim31bwdk4p06g9i4qag3cijdlli9q";
name = "helm-codesearch";
};
@@ -26750,7 +27244,7 @@
helm-commandlinefu = callPackage ({ emacs, fetchFromGitHub, fetchurl, helm, json ? null, let-alist, lib, melpaBuild }:
melpaBuild {
pname = "helm-commandlinefu";
- version = "20150611.745";
+ version = "20150611.45";
src = fetchFromGitHub {
owner = "xuchunyang";
repo = "helm-commandlinefu";
@@ -26758,7 +27252,7 @@
sha256 = "0fxrmvb64lav4aqs61z3a4d2mcp9s2nw7fvysyjn0r1291pkzk9j";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-commandlinefu";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/7eaf1e41ef2fa90b6bb6a80891ef1bf52ef1029b/recipes/helm-commandlinefu";
sha256 = "150nqib0sr4n35vdj1xrxcja8gkv3chzhdbgkjxqgkz2yq10xxnd";
name = "helm-commandlinefu";
};
@@ -26771,7 +27265,7 @@
helm-company = callPackage ({ company, fetchFromGitHub, fetchurl, helm, lib, melpaBuild }:
melpaBuild {
pname = "helm-company";
- version = "20160517.758";
+ version = "20160517.58";
src = fetchFromGitHub {
owner = "manuel-uberti";
repo = "helm-company";
@@ -26779,7 +27273,7 @@
sha256 = "0kbm8w1hxff0nb8pyjnq2l43ra1m0ywzjvvqs0lncji5zqirvp8l";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-company";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/78ff0a6cf493ff148406140f3e4902bfafd83e4a/recipes/helm-company";
sha256 = "1pbsg7zrz447siwd8pasw2hz5z21wa1xpqs5nrylhbghsk076ld3";
name = "helm-company";
};
@@ -26792,15 +27286,15 @@
helm-core = callPackage ({ async, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "helm-core";
- version = "20160601.2214";
+ version = "20160702.119";
src = fetchFromGitHub {
owner = "emacs-helm";
repo = "helm";
- rev = "c9cdcc316297c3e34ea214044af0b0f643adf239";
- sha256 = "1lsf5mq37xvfshx6lgzpbvv8378mbsr5rdlq6vrrb498x28nhiv4";
+ rev = "151ae12d7048934b58cf3ff0afe2262208dbd07d";
+ sha256 = "0flqigd4bh5pfnzrr3v69w64n8b8qvhfx3lfclmgdb2qy15srwsi";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-core";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/ef7a700c5665e6d72cb4cecf7fb5a2dd43ef9bf7/recipes/helm-core";
sha256 = "1dyv8rv1728vwsp6vfdq954sp878jbp3srbfxl9gsgjnv1l6vjda";
name = "helm-core";
};
@@ -26813,7 +27307,7 @@
helm-cscope = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, helm, lib, melpaBuild, xcscope }:
melpaBuild {
pname = "helm-cscope";
- version = "20150609.1549";
+ version = "20150609.849";
src = fetchFromGitHub {
owner = "alpha22jp";
repo = "helm-cscope.el";
@@ -26821,7 +27315,7 @@
sha256 = "0nhi8xhcf7qpsibpyy5v364xx7lqkhskzai7awkg0xcdq8b5090x";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-cscope";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/3d2e3460df1ec750053bc8402ad6eb822c10c697/recipes/helm-cscope";
sha256 = "13a76wc1ia4c0v701dxqc9ycbb43d5k09m5pfsvs8mccisfzk9y4";
name = "helm-cscope";
};
@@ -26834,7 +27328,7 @@
helm-css-scss = callPackage ({ emacs, fetchFromGitHub, fetchurl, helm, lib, melpaBuild }:
melpaBuild {
pname = "helm-css-scss";
- version = "20140627.225";
+ version = "20140626.1925";
src = fetchFromGitHub {
owner = "ShingoFukuyama";
repo = "helm-css-scss";
@@ -26842,7 +27336,7 @@
sha256 = "01a3pahpsxb7d15dkfgxypl7gzqb4dy4f36lmid1w77b9rhs6nph";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-css-scss";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/9b985973ff12135f893e6d2742223725c2143720/recipes/helm-css-scss";
sha256 = "0iflwl0rijbkx1b7i1s7984dw7sz1wa1cb74fqij0kcn76kal7ak";
name = "helm-css-scss";
};
@@ -26855,7 +27349,7 @@
helm-ctest = callPackage ({ dash, fetchFromGitHub, fetchurl, helm-core, lib, melpaBuild, s }:
melpaBuild {
pname = "helm-ctest";
- version = "20150823.1308";
+ version = "20150823.608";
src = fetchFromGitHub {
owner = "danlamanna";
repo = "helm-ctest";
@@ -26863,7 +27357,7 @@
sha256 = "18d96alik66nw3rkk7k8740b4rx2bnh3pwn27ahpgj5yf51wm0ry";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-ctest";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/03e17f3700cc531133990bc78ade09132f439664/recipes/helm-ctest";
sha256 = "1mphc9fsclbw19p5i1xf52qg6ljljbajvbcsl95hisrnvhg89vpm";
name = "helm-ctest";
};
@@ -26876,15 +27370,15 @@
helm-dash = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, helm, lib, melpaBuild }:
melpaBuild {
pname = "helm-dash";
- version = "20160417.208";
+ version = "20160613.338";
src = fetchFromGitHub {
owner = "areina";
repo = "helm-dash";
- rev = "238d60e329f58bee08b6fb800be56dc7201d560b";
- sha256 = "03h9p3z6n9mi6hld86i6wj01glx4p058iifygrph0vvzczisixcq";
+ rev = "fa6c0a68bfc0e14451adee391d96e785e950adfe";
+ sha256 = "0ds4kqxac1hhja06klwxjsn9xg1klj1svp8z5m7chvw8zl9x9hfj";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-dash";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/39c3ea21430473ef22d5ea9c8b2cf7ec9689883a/recipes/helm-dash";
sha256 = "1cnxssj2ilszq94v5cc4ixblar1nlilv9askqjp9gfnkj2z1n9cy";
name = "helm-dash";
};
@@ -26897,15 +27391,15 @@
helm-descbinds = callPackage ({ fetchFromGitHub, fetchurl, helm, lib, melpaBuild }:
melpaBuild {
pname = "helm-descbinds";
- version = "20160109.447";
+ version = "20160609.1112";
src = fetchFromGitHub {
owner = "emacs-helm";
repo = "helm-descbinds";
- rev = "3c344979f1df0d1a5cc913674e56c4d45c346134";
- sha256 = "0y0xxs67bzh6j68j3f4zxzrl2ij5g1qvvxqklw7nz305xliis29g";
+ rev = "b4ad76372a1b9f4415322d210b3888423247693d";
+ sha256 = "1qjhk1aag3arks0pgj3k2plr6k3cvb7i45apyczka6dvz8fmwj47";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-descbinds";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/447610a05422cd2f35399e43d98bf46410ff0408/recipes/helm-descbinds";
sha256 = "1890ss4pimjxskzzllf57fg07xbs8zqcrp6r8r6x989llrfvd1h7";
name = "helm-descbinds";
};
@@ -26918,7 +27412,7 @@
helm-describe-modes = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, helm, lib, melpaBuild }:
melpaBuild {
pname = "helm-describe-modes";
- version = "20160212.618";
+ version = "20160211.2318";
src = fetchFromGitHub {
owner = "emacs-helm";
repo = "helm-describe-modes";
@@ -26926,7 +27420,7 @@
sha256 = "0li9bi1lm5ldwfpvzahxp7hyfd94jr1kl43rprx0myxb016yk2p5";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-describe-modes";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/23f0b2025073850c477ba4646c3821b3c7de6c42/recipes/helm-describe-modes";
sha256 = "0ajy9kwspm8rzafl0df57fad5867s86yjqj29shznqb12r91lpqb";
name = "helm-describe-modes";
};
@@ -26939,7 +27433,7 @@
helm-dictionary = callPackage ({ fetchFromGitHub, fetchurl, helm, lib, melpaBuild }:
melpaBuild {
pname = "helm-dictionary";
- version = "20160601.1748";
+ version = "20160601.1048";
src = fetchFromGitHub {
owner = "emacs-helm";
repo = "helm-dictionary";
@@ -26947,7 +27441,7 @@
sha256 = "1pb7jnpddy00bmsh5lcr1hxlkfmn4xbi3s7vj47m1vn0wf3gcxpa";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-dictionary";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/b8cc457b06ce271f7c19729cde7728286bb85528/recipes/helm-dictionary";
sha256 = "1pak8qn0qvbzyclhzvr5ka3pl370i4kiykypfkwbfgvqqwczhl3n";
name = "helm-dictionary";
};
@@ -26960,7 +27454,7 @@
helm-dired-recent-dirs = callPackage ({ fetchFromGitHub, fetchurl, helm, lib, melpaBuild }:
melpaBuild {
pname = "helm-dired-recent-dirs";
- version = "20131228.1514";
+ version = "20131228.814";
src = fetchFromGitHub {
owner = "akisute3";
repo = "helm-dired-recent-dirs";
@@ -26968,7 +27462,7 @@
sha256 = "14sifdrfg8ydvi9mj8qm2bfphbffglxrkb5ky4q5b3j96bn8v110";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-dired-recent-dirs";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/b4e24a676ec0c5804b80c1497606b32c4f2cbe9d/recipes/helm-dired-recent-dirs";
sha256 = "0kh0n5674ksswjzi9gji2qmx8v8g0axx8xbi0m3zby9nwcpv4qzs";
name = "helm-dired-recent-dirs";
};
@@ -26981,7 +27475,7 @@
helm-dirset = callPackage ({ cl-lib ? null, f, fetchFromGitHub, fetchurl, helm, lib, melpaBuild, s }:
melpaBuild {
pname = "helm-dirset";
- version = "20151209.112";
+ version = "20151208.1812";
src = fetchFromGitHub {
owner = "k1LoW";
repo = "helm-dirset";
@@ -26989,7 +27483,7 @@
sha256 = "183vj5yi575aqkak19hl8k4mw38r0ki9p1fnpa8nny2srjyy34yb";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-dirset";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/527a46536f7cdc235c779d2a69cea4a5d5e06ce9/recipes/helm-dirset";
sha256 = "0vng52axp7r01s00cqbbclbm5bx1qbhmlrx9h9kj7smx1al4daml";
name = "helm-dirset";
};
@@ -27002,7 +27496,7 @@
helm-emmet = callPackage ({ emmet-mode, fetchFromGitHub, fetchurl, helm, lib, melpaBuild }:
melpaBuild {
pname = "helm-emmet";
- version = "20131014.829";
+ version = "20131014.129";
src = fetchFromGitHub {
owner = "yasuyk";
repo = "helm-emmet";
@@ -27010,7 +27504,7 @@
sha256 = "0c3mn5w98phsv7gsljyp5vxxmr2w6n3nczh5zm4hcpwsra3wh1v9";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-emmet";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/acbc5e9fab159ad2d63b10c0fa6ac18636bb2379/recipes/helm-emmet";
sha256 = "1dkn9qa3dv2im11lm19wfh5jwwwp42sv7jc0p6qg35rhzwdpfg03";
name = "helm-emmet";
};
@@ -27023,7 +27517,7 @@
helm-emms = callPackage ({ cl-lib ? null, emacs, emms, fetchFromGitHub, fetchurl, helm, lib, melpaBuild }:
melpaBuild {
pname = "helm-emms";
- version = "20151001.2228";
+ version = "20151001.1528";
src = fetchFromGitHub {
owner = "emacs-helm";
repo = "helm-emms";
@@ -27031,7 +27525,7 @@
sha256 = "0330s07b41nw9q32xhjdl7yw83p8ikj6b2qkir3y0jyx16gk10dl";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-emms";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/db836b671705607f6cd9bce8229884b1f29b4a76/recipes/helm-emms";
sha256 = "1vq7cxnacmhyczsa4s5h1nnzc08m66harfnxsqxyrdsnggv9hbf5";
name = "helm-emms";
};
@@ -27044,7 +27538,7 @@
helm-filesets = callPackage ({ fetchFromGitHub, fetchurl, filesets-plus, helm, lib, melpaBuild }:
melpaBuild {
pname = "helm-filesets";
- version = "20140929.2035";
+ version = "20140929.1335";
src = fetchFromGitHub {
owner = "gcla";
repo = "helm-filesets";
@@ -27052,7 +27546,7 @@
sha256 = "00yhmpv5xjlw1gwbcrznz83gkaby8zlqv74d3p7plca2cwjll1g9";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-filesets";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/71c0d98ede6119e838e3db146dea5c16d8ba8ed8/recipes/helm-filesets";
sha256 = "1yhhchksi0r4r5c5q1mggz2hykkvk93baq91b5hkaflqi30d1v8f";
name = "helm-filesets";
};
@@ -27065,7 +27559,7 @@
helm-firefox = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, helm, lib, melpaBuild }:
melpaBuild {
pname = "helm-firefox";
- version = "20160604.952";
+ version = "20160604.252";
src = fetchFromGitHub {
owner = "emacs-helm";
repo = "helm-firefox";
@@ -27073,7 +27567,7 @@
sha256 = "0xl2nakprgjf65haa0xn0jkh69skmbp3k6q1bamvqijgvra9waa0";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-firefox";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/257e452d37768d2f3a6e0a5ccd062d128b2bc867/recipes/helm-firefox";
sha256 = "0677nj0zsk11vvp3q3xl9nk8dhz3ki9yl3kfb57wgnmprp109wgs";
name = "helm-firefox";
};
@@ -27086,7 +27580,7 @@
helm-flx = callPackage ({ emacs, fetchFromGitHub, fetchurl, flx, helm, lib, melpaBuild }:
melpaBuild {
pname = "helm-flx";
- version = "20160228.152";
+ version = "20160227.1852";
src = fetchFromGitHub {
owner = "PythonNut";
repo = "helm-flx";
@@ -27094,7 +27588,7 @@
sha256 = "0mrck7qbqjqz5kpih3zb1yn2chjgv5ghrqc5cp80kmsmxasvk8zw";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-flx";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/f1418d260f34d698cec611978001c7fd1d1a8a89/recipes/helm-flx";
sha256 = "03vxr5f5m4s6k6rm0976w8h3s4c3b5mrdqgmkd281hmyh9q3cslq";
name = "helm-flx";
};
@@ -27107,7 +27601,7 @@
helm-flycheck = callPackage ({ dash, fetchFromGitHub, fetchurl, flycheck, helm, lib, melpaBuild }:
melpaBuild {
pname = "helm-flycheck";
- version = "20160319.717";
+ version = "20160319.117";
src = fetchFromGitHub {
owner = "yasuyk";
repo = "helm-flycheck";
@@ -27115,7 +27609,7 @@
sha256 = "062s08k8v657fpkqvdspv32awvj7dq929ks27w29k3kbzlqlrihp";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-flycheck";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/9cce1662d4ca7b7d868685084294d22ebf6c39e9/recipes/helm-flycheck";
sha256 = "038f9294qc0jnkzrrjxm97hyhwa4sca3wdsjbaya50cf0g4cmk7b";
name = "helm-flycheck";
};
@@ -27128,15 +27622,15 @@
helm-flymake = callPackage ({ fetchFromGitHub, fetchurl, helm, lib, melpaBuild }:
melpaBuild {
pname = "helm-flymake";
- version = "20130717.744";
+ version = "20160609.1902";
src = fetchFromGitHub {
owner = "tam17aki";
repo = "helm-flymake";
- rev = "afb1089d6a0dc9a63bc2aa1df19d80830cc33c6a";
- sha256 = "1liaid4l4x8sb133lj944gwwpqngsf8hzibdwyfdmsi4m4abh73h";
+ rev = "72cf18a1a1f843db9bb5d58301739ea9ccb1655b";
+ sha256 = "05wpclg4ibp0ida692m3s8nknx4aizfcdgxgfzlwczgdgw0922kn";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-flymake";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/d8547036dceaa466957f4c5a07eb0461f313b924/recipes/helm-flymake";
sha256 = "0h87yd56nhxpahrcpk6hin142hzv3sdr5bvz0injbv8a2lwnny3b";
name = "helm-flymake";
};
@@ -27146,22 +27640,22 @@
license = lib.licenses.free;
};
}) {};
- helm-flyspell = callPackage ({ fetchFromGitHub, fetchurl, helm, lib, melpaBuild }:
+ helm-flyspell = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "helm-flyspell";
- version = "20151026.1712";
+ version = "20160612.1840";
src = fetchFromGitHub {
owner = "pronobis";
repo = "helm-flyspell";
- rev = "a9ea896fd932fec15709b88ef8bf101dff261b2d";
- sha256 = "1k7invgzqrcm11plyvinqwf98yxibr8i4r9yw3csfsicc8b6if59";
+ rev = "2b0d8b4abda322507a5379e2befdf031bca851e0";
+ sha256 = "1z5f911w1b173bpnab8ni89s1zba8yfr2qhnrrdxlhgvynwn5jgg";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-flyspell";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/f8c5b91762d47a4d3024f1ed7f19666c6f2d5ce5/recipes/helm-flyspell";
sha256 = "1g6xry2y6396pg7rg8hc0l84z5r3j2df7dpd1jgffxa8xa3i661f";
name = "helm-flyspell";
};
- packageRequires = [ helm ];
+ packageRequires = [];
meta = {
homepage = "https://melpa.org/#/helm-flyspell";
license = lib.licenses.free;
@@ -27170,15 +27664,15 @@
helm-fuzzier = callPackage ({ emacs, fetchFromGitHub, fetchurl, helm, lib, melpaBuild }:
melpaBuild {
pname = "helm-fuzzier";
- version = "20160220.940";
+ version = "20160605.1645";
src = fetchFromGitHub {
owner = "EphramPerdition";
repo = "helm-fuzzier";
- rev = "f24c2e92b1dfcfa0c43b9030f8160cbe1c94decc";
- sha256 = "15am2dpva3fzj68sw9n4mpdxkw75l97l1k2j9vlvi2lbqk1h46pi";
+ rev = "8798dcf3583b863df5b9dea7fe3b0179ba1c35bc";
+ sha256 = "1250mh0ydap0sifcyrgs32dnr6c8d723v4c55yvwm23dzvzwycp8";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-fuzzier";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/51dc6f01e0e5ee0593bea6616894bc0163878cd0/recipes/helm-fuzzier";
sha256 = "0qdgf0phs3iz29zj3qjhdgb3i4xvf5r2vi0709pwxx2s6r13pvcc";
name = "helm-fuzzier";
};
@@ -27191,7 +27685,7 @@
helm-fuzzy-find = callPackage ({ emacs, fetchFromGitHub, fetchurl, helm, lib, melpaBuild }:
melpaBuild {
pname = "helm-fuzzy-find";
- version = "20150613.1249";
+ version = "20150613.549";
src = fetchFromGitHub {
owner = "xuchunyang";
repo = "helm-fuzzy-find";
@@ -27199,7 +27693,7 @@
sha256 = "1yxnmxq6ppfgwxrk5ryc5xfn82kjf4j65j14hy077gphr0q61q6a";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-fuzzy-find";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/34f76bb377ed31aa42663858c407cc5476e6fe1f/recipes/helm-fuzzy-find";
sha256 = "0lczlrpd5jy2vhy9jl3rjcdyiwr136spqm8k2rj8m9s8wpn0v75i";
name = "helm-fuzzy-find";
};
@@ -27212,7 +27706,7 @@
helm-ghc = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, ghc, helm, lib, melpaBuild }:
melpaBuild {
pname = "helm-ghc";
- version = "20141105.1559";
+ version = "20141105.859";
src = fetchFromGitHub {
owner = "david-christiansen";
repo = "helm-ghc";
@@ -27220,7 +27714,7 @@
sha256 = "16p1gisbza48qircsvrwx020n96ss1c6s68d7cgqqfc0bf2467is";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-ghc";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/299ebd9b72b5db061d31d7ae4f00b1ce6bb9db34/recipes/helm-ghc";
sha256 = "1q5ia8sgpflv2hhvw7hjpkfb25vmrjwlrqz1f9qj2qgmki5mix2d";
name = "helm-ghc";
};
@@ -27233,7 +27727,7 @@
helm-ghq = callPackage ({ fetchFromGitHub, fetchurl, helm, lib, melpaBuild }:
melpaBuild {
pname = "helm-ghq";
- version = "20160203.1627";
+ version = "20160203.927";
src = fetchFromGitHub {
owner = "masutaka";
repo = "emacs-helm-ghq";
@@ -27241,7 +27735,7 @@
sha256 = "0y379qap3mssz9nslb08vfzq5ihqcm156fbx0dszgz9d6xgkpdhw";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-ghq";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/e94eec646def7c77b15f6a6ac1841200848e62c7/recipes/helm-ghq";
sha256 = "14f3cbsj7jhlhrp561d8pasllnx1cmi7jk6v2fja7ghzj76dnvq6";
name = "helm-ghq";
};
@@ -27254,7 +27748,7 @@
helm-git = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "helm-git";
- version = "20120630.2303";
+ version = "20120630.1603";
src = fetchFromGitHub {
owner = "maio";
repo = "helm-git";
@@ -27262,7 +27756,7 @@
sha256 = "1yfy4a52hx44r32i0b75bka8gfcn5lp61jl86lzrsi2cr9wg10pn";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-git";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/707696fbec477027e675ff01c502e0b81096025c/recipes/helm-git";
sha256 = "1ib73p7cmkw96csxxpkqwn6m60k1xrd46z6vyp29gj85cs4fpsb8";
name = "helm-git";
};
@@ -27275,7 +27769,7 @@
helm-git-files = callPackage ({ fetchFromGitHub, fetchurl, helm, lib, melpaBuild }:
melpaBuild {
pname = "helm-git-files";
- version = "20141212.1417";
+ version = "20141212.717";
src = fetchFromGitHub {
owner = "kenbeese";
repo = "helm-git-files";
@@ -27283,7 +27777,7 @@
sha256 = "157b525h0kiaknn12fsw67fg26lzb20apx8sssmvlcicqcd51iaw";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-git-files";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/23bfa0b94f242f9da06366b4aefdf6ece72561e7/recipes/helm-git-files";
sha256 = "02109r956nc1dmqh4v082vkr9wdixh03xhl7icwkzl7ipr5453s6";
name = "helm-git-files";
};
@@ -27296,7 +27790,7 @@
helm-git-grep = callPackage ({ fetchFromGitHub, fetchurl, helm, lib, melpaBuild }:
melpaBuild {
pname = "helm-git-grep";
- version = "20160529.1323";
+ version = "20160529.623";
src = fetchFromGitHub {
owner = "yasuyk";
repo = "helm-git-grep";
@@ -27304,7 +27798,7 @@
sha256 = "0c11300hlj62jkcx5j56rx6ppkckr0zlngmi4pf5wxpgj1wfsbfy";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-git-grep";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/338d28c3fe201a7b2f15793be6d540f44819f4d8/recipes/helm-git-grep";
sha256 = "1ww6a4q78w5hnwikq7y93ic2b7x070c27r946lh6p8cz1k4b8vqi";
name = "helm-git-grep";
};
@@ -27317,7 +27811,7 @@
helm-github-stars = callPackage ({ emacs, fetchFromGitHub, fetchurl, helm, lib, melpaBuild }:
melpaBuild {
pname = "helm-github-stars";
- version = "20150626.23";
+ version = "20150625.1723";
src = fetchFromGitHub {
owner = "Sliim";
repo = "helm-github-stars";
@@ -27325,7 +27819,7 @@
sha256 = "1sbhh3dmb47sy3r2iw6vmvbq5bpjac4xdg8i5a0m0c392a38nfqn";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-github-stars";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/2e77f4a75504ca3e1091cdc757e91fb1ae361fa7/recipes/helm-github-stars";
sha256 = "1r4mc4v71171sq9rbbhm346s92fb7jnvvl91y2q52jqmrnzzl9zy";
name = "helm-github-stars";
};
@@ -27338,7 +27832,7 @@
helm-gitignore = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, gitignore-mode, helm, lib, melpaBuild, request }:
melpaBuild {
pname = "helm-gitignore";
- version = "20150518.556";
+ version = "20150517.2256";
src = fetchFromGitHub {
owner = "jupl";
repo = "helm-gitignore";
@@ -27346,7 +27840,7 @@
sha256 = "0pd755s5zcg8y1svxj3g8m0znkp6cyx5y6lsj4lxczrk7lynzc3g";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-gitignore";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/3146b9309e8cbe464330dcd1f5b8a9fd8788ad6f/recipes/helm-gitignore";
sha256 = "01l7mx8g1m5qnwz973hzrgds4gywm56jgl4hcdxqvpi1n56md3x6";
name = "helm-gitignore";
};
@@ -27359,7 +27853,7 @@
helm-gitlab = callPackage ({ dash, fetchFromGitHub, fetchurl, gitlab, helm, lib, melpaBuild, s }:
melpaBuild {
pname = "helm-gitlab";
- version = "20160519.1203";
+ version = "20160519.503";
src = fetchFromGitHub {
owner = "nlamirault";
repo = "emacs-gitlab";
@@ -27367,7 +27861,7 @@
sha256 = "0ywjrgafpl4cnrykx9yysazr7hkd2pxk67h065f8z3mid6cgh1wa";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-gitlab";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/1d012991188956f6e06c37d504b0d06ab31487b9/recipes/helm-gitlab";
sha256 = "010ihx3yddhb8j3jqcssc49qnf3i7xlz0s380mpgrdxgz6yahsmd";
name = "helm-gitlab";
};
@@ -27380,7 +27874,7 @@
helm-go-package = callPackage ({ deferred, fetchFromGitHub, fetchurl, go-mode, helm, lib, melpaBuild }:
melpaBuild {
pname = "helm-go-package";
- version = "20160321.915";
+ version = "20160321.315";
src = fetchFromGitHub {
owner = "yasuyk";
repo = "helm-go-package";
@@ -27388,7 +27882,7 @@
sha256 = "0iyfn58h50xms5915i29b54wfyxh6vi9vy3v3r91g6dwlxrjibka";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-go-package";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/449d272b94c189176305ca17652d76adac087ce5/recipes/helm-go-package";
sha256 = "102yhn1xg83l67yaq3brn35a03fkvqqhad10rq0h39n4i1slq3z6";
name = "helm-go-package";
};
@@ -27401,15 +27895,15 @@
helm-google = callPackage ({ fetchFromGitHub, fetchurl, google, helm, lib, melpaBuild }:
melpaBuild {
pname = "helm-google";
- version = "20160226.2120";
+ version = "20160620.1349";
src = fetchFromGitHub {
owner = "steckerhalter";
repo = "helm-google";
- rev = "73485b901c306c7bc25100e0e7433124fb657654";
- sha256 = "1addskcm325lb9plcbxfp1f6fsj3dcccb87gzihrp7ahiy7pmvih";
+ rev = "c83f395e0876b4355bd7d0cd346b506cc53deb8f";
+ sha256 = "1k8fl81jiaanyqyz8icl2wprlrv5i68kwjgvw5hgfk75cjbhj2lv";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-google";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/88ed6db7b53d1ac75c40d12c21de1dec6d717fbe/recipes/helm-google";
sha256 = "0d1y7232rm888car3h40fba1m1pna2nh1a3fcvpra74igwarfi32";
name = "helm-google";
};
@@ -27422,7 +27916,7 @@
helm-grepint = callPackage ({ emacs, fetchFromGitHub, fetchurl, helm, lib, melpaBuild }:
melpaBuild {
pname = "helm-grepint";
- version = "20160303.2126";
+ version = "20160303.1426";
src = fetchFromGitHub {
owner = "kopoli";
repo = "helm-grepint";
@@ -27430,7 +27924,7 @@
sha256 = "1f88vd31fc7ksrhlc72i6c0wbbz62lxw9yakxdk0m72pfz345mz2";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-grepint";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/26446d6a2215bfa622d86837b30f2754dd25eb4c/recipes/helm-grepint";
sha256 = "00wr3wk41sbpamxbjkqlby49g8y5z9n79p51sg7ginban4qy91gf";
name = "helm-grepint";
};
@@ -27443,7 +27937,7 @@
helm-growthforecast = callPackage ({ fetchFromGitHub, fetchurl, helm, lib, melpaBuild }:
melpaBuild {
pname = "helm-growthforecast";
- version = "20140120.444";
+ version = "20140119.2144";
src = fetchFromGitHub {
owner = "daic-h";
repo = "helm-growthforecast";
@@ -27451,7 +27945,7 @@
sha256 = "0p0mk44y2z875ra8mzcb6vlf4rbkiq9yank5hdxvg2x2sxsaambk";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-growthforecast";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/935d4c6bff4adab531536ab6a695cb690c72e0ae/recipes/helm-growthforecast";
sha256 = "0716rhs5dam6p8ym83vy19svl6jr49lcfgb29mm3cqi9jcch3ckh";
name = "helm-growthforecast";
};
@@ -27464,7 +27958,7 @@
helm-gtags = callPackage ({ emacs, fetchFromGitHub, fetchurl, helm, lib, melpaBuild }:
melpaBuild {
pname = "helm-gtags";
- version = "20160417.1455";
+ version = "20160417.755";
src = fetchFromGitHub {
owner = "syohex";
repo = "emacs-helm-gtags";
@@ -27472,7 +27966,7 @@
sha256 = "0zyspn9rqfs3hkq8qx0q1w5qiv30ignbmycyv0vn3a6q7a5fsnhx";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-gtags";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/81f0f525680fea98e804f39dbde1dada887e8821/recipes/helm-gtags";
sha256 = "1kbpfqhhbxmp3f70h91x2fws9mhx87zx4nzjjl29lpl93vf8xckl";
name = "helm-gtags";
};
@@ -27485,7 +27979,7 @@
helm-hatena-bookmark = callPackage ({ fetchFromGitHub, fetchurl, helm, lib, melpaBuild }:
melpaBuild {
pname = "helm-hatena-bookmark";
- version = "20160528.1514";
+ version = "20160528.814";
src = fetchFromGitHub {
owner = "masutaka";
repo = "emacs-helm-hatena-bookmark";
@@ -27493,7 +27987,7 @@
sha256 = "0hmvyyhddpf831cad35c9z9fv5mpdq6qg4nzbdghlqs9pf7ik6h2";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-hatena-bookmark";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/3e9335ad16d4151dd4970c4a3ad1fee9a84404fa/recipes/helm-hatena-bookmark";
sha256 = "14091zrp4vj7752rb5s3pkyvrrsdl7iaj3q9ys8rjmbsjwcv30id";
name = "helm-hatena-bookmark";
};
@@ -27506,7 +28000,7 @@
helm-hayoo = callPackage ({ fetchFromGitHub, fetchurl, haskell-mode, helm, json ? null, lib, melpaBuild }:
melpaBuild {
pname = "helm-hayoo";
- version = "20151014.851";
+ version = "20151014.151";
src = fetchFromGitHub {
owner = "markus1189";
repo = "helm-hayoo";
@@ -27514,7 +28008,7 @@
sha256 = "08pfzs030d8g5s7vkpgicz4srp5cr3xpd84lhrr24ncrhbszxar9";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-hayoo";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/e1e1f2efa82d5097c1f5e85fba3f67b38a5b37c2/recipes/helm-hayoo";
sha256 = "0xdvl6q2rpfsma4hx8m4snbd05s4z0bi8psdalixywlp5s4vzr32";
name = "helm-hayoo";
};
@@ -27527,7 +28021,7 @@
helm-helm-commands = callPackage ({ fetchFromGitHub, fetchurl, helm, lib, melpaBuild }:
melpaBuild {
pname = "helm-helm-commands";
- version = "20130902.1948";
+ version = "20130902.1248";
src = fetchFromGitHub {
owner = "vapniks";
repo = "helm-helm-commands";
@@ -27535,7 +28029,7 @@
sha256 = "05ksfx54ar2j4mypzwh0gfir8r26s4f1i4xw319q5pa1y2100cpn";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-helm-commands";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/f8bd33d5d5c8653df5373984d01c3ec87b30c51b/recipes/helm-helm-commands";
sha256 = "0dq9p37i5rrp2nb1vhqzzqfmdg11va2xr3yz8hdxpwykm1ldqdcf";
name = "helm-helm-commands";
};
@@ -27548,7 +28042,7 @@
helm-hoogle = callPackage ({ emacs, fetchFromGitHub, fetchurl, helm, lib, melpaBuild }:
melpaBuild {
pname = "helm-hoogle";
- version = "20150919.932";
+ version = "20150919.232";
src = fetchFromGitHub {
owner = "jwiegley";
repo = "helm-hoogle";
@@ -27556,7 +28050,7 @@
sha256 = "1l85kip4zd08d38sk7cdafmx0v68dh419cs86g7x0mgi0wn00kfc";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-hoogle";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/8ccc21c2acc76a6794aee94902b1bc4c14119901/recipes/helm-hoogle";
sha256 = "0vhk4vwqfirdm5d0pppplfpqyc2sfj6jybhzp9n1w8xgrh2d1c0x";
name = "helm-hoogle";
};
@@ -27569,7 +28063,7 @@
helm-idris = callPackage ({ fetchFromGitHub, fetchurl, helm, idris-mode, lib, melpaBuild }:
melpaBuild {
pname = "helm-idris";
- version = "20141202.1857";
+ version = "20141202.1157";
src = fetchFromGitHub {
owner = "david-christiansen";
repo = "helm-idris";
@@ -27577,7 +28071,7 @@
sha256 = "0128nrhwyzslzl0l7wcjxn3dlx3h1sjmwnbbnp2fj4bjk7chc59q";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-idris";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/95f1c437d5312e1c8ead63d6f834de86f38d6f58/recipes/helm-idris";
sha256 = "1y52675j4kcq14jypxjw1rflxrxwaxyn1n3m613klad55wpfaamf";
name = "helm-idris";
};
@@ -27590,7 +28084,7 @@
helm-img = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, helm, lib, melpaBuild }:
melpaBuild {
pname = "helm-img";
- version = "20151225.21";
+ version = "20151224.1721";
src = fetchFromGitHub {
owner = "l3msh0";
repo = "helm-img";
@@ -27598,7 +28092,7 @@
sha256 = "0py4xs27z2jvg99i6qaf2ccz0mvk6bb9cvdyz8v8ngmnj3rw2vla";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-img";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/e0ea97a55f8f4183d375424c94705f372189d6ed/recipes/helm-img";
sha256 = "0sq9l1wgm97ppfc45w3bdcv0qq5m85ygnanv1bdcp8bxbdl4vg0q";
name = "helm-img";
};
@@ -27611,7 +28105,7 @@
helm-img-tiqav = callPackage ({ fetchFromGitHub, fetchurl, helm-img, lib, melpaBuild }:
melpaBuild {
pname = "helm-img-tiqav";
- version = "20151225.22";
+ version = "20151224.1722";
src = fetchFromGitHub {
owner = "l3msh0";
repo = "helm-img-tiqav";
@@ -27619,7 +28113,7 @@
sha256 = "04vdin0n3514c8bycdjrwk3l6pkarrwanlklnm75315b91nkkbcp";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-img-tiqav";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/f6a948f91dc58ce565e54967ab75fe572f37f616/recipes/helm-img-tiqav";
sha256 = "1m083hiih2rpyy8i439745mj4ldqy85fpnvms8qnv3042b8x35y0";
name = "helm-img-tiqav";
};
@@ -27632,7 +28126,7 @@
helm-ispell = callPackage ({ fetchFromGitHub, fetchurl, helm-core, lib, melpaBuild }:
melpaBuild {
pname = "helm-ispell";
- version = "20151231.953";
+ version = "20151231.253";
src = fetchFromGitHub {
owner = "syohex";
repo = "emacs-helm-ispell";
@@ -27640,7 +28134,7 @@
sha256 = "04ddjdia09y14gq4h6m8g6aiwkqvdxp66yjx3j5dh2xrkyxhlxpz";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-ispell";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/edc42b26027dcd7daf0d6f2bd19ca4736fc12d6d/recipes/helm-ispell";
sha256 = "0qyj6whgb2p0v231wn6pvx4awvl1wxppppqqbx5255j8r1f3l1b0";
name = "helm-ispell";
};
@@ -27653,7 +28147,7 @@
helm-itunes = callPackage ({ fetchFromGitHub, fetchurl, helm, lib, melpaBuild }:
melpaBuild {
pname = "helm-itunes";
- version = "20151013.848";
+ version = "20151013.148";
src = fetchFromGitHub {
owner = "anschwa";
repo = "helm-itunes";
@@ -27661,7 +28155,7 @@
sha256 = "1czgf5br89x192g3lh3x2n998f79hi1n2f309ll264qnl35kv14w";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-itunes";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/7fabdb05de9b8ec18a3a566f99688b50443b6b44/recipes/helm-itunes";
sha256 = "0zi4wyraqkjwp954pkng8b23giv1q9618apd9v3dczsvlmaar9hf";
name = "helm-itunes";
};
@@ -27674,7 +28168,7 @@
helm-j-cheatsheet = callPackage ({ fetchFromGitHub, fetchurl, helm, lib, melpaBuild }:
melpaBuild {
pname = "helm-j-cheatsheet";
- version = "20131228.1341";
+ version = "20131228.641";
src = fetchFromGitHub {
owner = "abo-abo";
repo = "helm-j-cheatsheet";
@@ -27682,7 +28176,7 @@
sha256 = "0f2psp7p82sa2fip282w152zc1rjd3l0sna1g7rgwi9x29gcsh0v";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-j-cheatsheet";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/681b43eb224942155b97181bbb78bcd295347d04/recipes/helm-j-cheatsheet";
sha256 = "0lppzk60vl3ps9fqnrh020awiy5w46gwlb6d91pr889x24ryphmm";
name = "helm-j-cheatsheet";
};
@@ -27695,7 +28189,7 @@
helm-jstack = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, helm, lib, melpaBuild }:
melpaBuild {
pname = "helm-jstack";
- version = "20150603.622";
+ version = "20150602.2322";
src = fetchFromGitHub {
owner = "raghavgautam";
repo = "helm-jstack";
@@ -27703,7 +28197,7 @@
sha256 = "0vhqpcv8xi6a6q7n6xxahdzijr1x5s40fvk9nc44q55psbyv627g";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-jstack";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/a92ffbc4de86248729773dd8729e6487bf56fbb0/recipes/helm-jstack";
sha256 = "0giix1rv2jrmdxyg990w90ivl8bvgbbvah6nkpj7gb6vbnm15ldz";
name = "helm-jstack";
};
@@ -27716,7 +28210,7 @@
helm-lobsters = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, helm, lib, melpaBuild }:
melpaBuild {
pname = "helm-lobsters";
- version = "20150213.1646";
+ version = "20150213.946";
src = fetchFromGitHub {
owner = "julienXX";
repo = "helm-lobste.rs";
@@ -27724,7 +28218,7 @@
sha256 = "0nkmc17ggyfi7iz959mvzh6q7116j44zqwi7ydm9i8z49xfpzafy";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-lobsters";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/6247e3786131e5b2a7824804e49927ed65d266d5/recipes/helm-lobsters";
sha256 = "0dkb78n373kywxj8zba2s5a2g85vx19rdswv9i78xjwv1lqh8cpp";
name = "helm-lobsters";
};
@@ -27737,7 +28231,7 @@
helm-ls-git = callPackage ({ fetchFromGitHub, fetchurl, helm, lib, melpaBuild }:
melpaBuild {
pname = "helm-ls-git";
- version = "20160408.640";
+ version = "20160407.2340";
src = fetchFromGitHub {
owner = "emacs-helm";
repo = "helm-ls-git";
@@ -27745,7 +28239,7 @@
sha256 = "0yridy54p53zps33766hl7p2hq5pc4vxm08rb5vzbjw84vwaq07b";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-ls-git";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/b487b4c0db9092bb7e32aad9265b79a9d18c8478/recipes/helm-ls-git";
sha256 = "08rsy9479nk03kinjfkxddrq6wi4sx2a0wrz37cl2q517qi7sibj";
name = "helm-ls-git";
};
@@ -27758,7 +28252,7 @@
helm-ls-hg = callPackage ({ fetchFromGitHub, fetchurl, helm, lib, melpaBuild }:
melpaBuild {
pname = "helm-ls-hg";
- version = "20150909.743";
+ version = "20150909.43";
src = fetchFromGitHub {
owner = "emacs-helm";
repo = "helm-ls-hg";
@@ -27766,7 +28260,7 @@
sha256 = "1msrsqiwk7bg5gry5cia8a6c7ifymfyn738hk8g2qwzzw4vkxxcs";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-ls-hg";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/03a22c9ec281330c4603aec6feb04cf580dee340/recipes/helm-ls-hg";
sha256 = "0ca0xn7n8bagxb504xgkcv04rpm1vxhx2m77biqrx5886pwl25bh";
name = "helm-ls-hg";
};
@@ -27779,14 +28273,14 @@
helm-ls-svn = callPackage ({ cl-lib ? null, emacs, fetchsvn, fetchurl, helm, lib, melpaBuild }:
melpaBuild {
pname = "helm-ls-svn";
- version = "20150717.939";
+ version = "20150717.239";
src = fetchsvn {
url = "https://svn.macports.org/repository/macports/users/chunyang/helm-ls-svn.el";
- rev = "149168";
+ rev = "149847";
sha256 = "0b7gah21rkfd43mb89lrwaqrrwq646abh7wi4q74sx796gmpz4dz";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-ls-svn";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/99cc183c09b97264d243b4fe036574ce9c6b9687/recipes/helm-ls-svn";
sha256 = "08mwzi340akw4ar20by0q981mzmzvf0wz3mn738q4inn2kqgs60d";
name = "helm-ls-svn";
};
@@ -27799,7 +28293,7 @@
helm-make = callPackage ({ fetchFromGitHub, fetchurl, helm, lib, melpaBuild, projectile }:
melpaBuild {
pname = "helm-make";
- version = "20160331.1654";
+ version = "20160331.954";
src = fetchFromGitHub {
owner = "abo-abo";
repo = "helm-make";
@@ -27807,7 +28301,7 @@
sha256 = "1zxahr48s17di8mcy2sxvy4006ch9vwbvkbgkxdphijgqz41irqz";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-make";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/0f25f066c60d4caff1fbf885bc944cac47515ec8/recipes/helm-make";
sha256 = "1r6jjy1rlsii6p6pinbz7h6gcw4vmcycd3vj338bfbnqp5rrf2mc";
name = "helm-make";
};
@@ -27820,7 +28314,7 @@
helm-migemo = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, helm-core, lib, melpaBuild, migemo }:
melpaBuild {
pname = "helm-migemo";
- version = "20151010.556";
+ version = "20151009.2256";
src = fetchFromGitHub {
owner = "emacs-jp";
repo = "helm-migemo";
@@ -27828,7 +28322,7 @@
sha256 = "0gzlprf5js4y3vzkf7si2xc7ai5j97b5cqrs002hyjj5ij4f2vix";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-migemo";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/ce6eb840368f8cbee66dc061478d5096b9dacb68/recipes/helm-migemo";
sha256 = "1cjvb1lm1fsg5ky63fvrphwl5a7r7xf6qzb4mvl06ikj8hv2h33x";
name = "helm-migemo";
};
@@ -27841,7 +28335,7 @@
helm-mode-manager = callPackage ({ fetchFromGitHub, fetchurl, helm, lib, melpaBuild }:
melpaBuild {
pname = "helm-mode-manager";
- version = "20151124.1038";
+ version = "20151124.338";
src = fetchFromGitHub {
owner = "istib";
repo = "helm-mode-manager";
@@ -27849,7 +28343,7 @@
sha256 = "1lbxb4vnnv6s46m90qihkj99qdbdylwncwaijjfd7i2kap2ayawh";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-mode-manager";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/903a2b64d9a704105100d61f28cdfa8f497abd7d/recipes/helm-mode-manager";
sha256 = "1w9svq1kyyj8mmljardhbdvykb334nq1y18s956g4rvqyas2ciyd";
name = "helm-mode-manager";
};
@@ -27862,7 +28356,7 @@
helm-mt = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, helm, lib, melpaBuild, multi-term }:
melpaBuild {
pname = "helm-mt";
- version = "20151105.620";
+ version = "20151104.2320";
src = fetchFromGitHub {
owner = "dfdeshom";
repo = "helm-mt";
@@ -27870,7 +28364,7 @@
sha256 = "09rb8aq7fnf661w3liwbkkaczjph3dzvg26slm9cwcnl7pqnvagl";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-mt";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/e726bf0b9b3f371b21f1f0d75175e0dda62f6fb0/recipes/helm-mt";
sha256 = "04hx8cg8wmm2w8g942nc9mvm12ammmjnx4k61ljrq76smd8s3x2a";
name = "helm-mt";
};
@@ -27883,7 +28377,7 @@
helm-mu = callPackage ({ fetchFromGitHub, fetchurl, helm, lib, melpaBuild }:
melpaBuild {
pname = "helm-mu";
- version = "20160531.1931";
+ version = "20160531.1231";
src = fetchFromGitHub {
owner = "emacs-helm";
repo = "helm-mu";
@@ -27891,7 +28385,7 @@
sha256 = "1ifws3p0civl60wpri0zs3mi23c6jajrvz1zaimw6am222s2sx3z";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-mu";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/63ee2e2aa622c96993c1b705d0fd223d6b36fd0f/recipes/helm-mu";
sha256 = "0pydp6scj5icaqfp3dp5h0q1y2i7z9mfyw1ll6iphsz9qh3x2bj2";
name = "helm-mu";
};
@@ -27904,7 +28398,7 @@
helm-nixos-options = callPackage ({ fetchFromGitHub, fetchurl, helm, lib, melpaBuild, nixos-options }:
melpaBuild {
pname = "helm-nixos-options";
- version = "20151014.109";
+ version = "20151013.1809";
src = fetchFromGitHub {
owner = "travisbhartwell";
repo = "nix-emacs";
@@ -27912,7 +28406,7 @@
sha256 = "1r2qbd19kkqf70gq04jfpsrap75qcy359k3ian9rhapi8cj0n23w";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-nixos-options";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/6846c7d86e70a9dd8300b89b61435aa7e146be96/recipes/helm-nixos-options";
sha256 = "1nsi4hfw53iwn29fp33dkri1c6w8kdyn4sa0yn2fi6144ilmq933";
name = "helm-nixos-options";
};
@@ -27925,7 +28419,7 @@
helm-notmuch = callPackage ({ fetchFromGitHub, fetchurl, helm, lib, melpaBuild, notmuch }:
melpaBuild {
pname = "helm-notmuch";
- version = "20160412.2106";
+ version = "20160412.1406";
src = fetchFromGitHub {
owner = "xuchunyang";
repo = "helm-notmuch";
@@ -27933,7 +28427,7 @@
sha256 = "04c6k1rxdi175kwn146sb2nxd13mvx3irr9fbqykcfv81609kqx3";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-notmuch";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/98667b3aa43d3e0f6174eeef82acaf71d7019aac/recipes/helm-notmuch";
sha256 = "1ixdc1ba4ygxl0lpg6ijk06dgj2hfv5p5k6ivq60ss0axyisnnv0";
name = "helm-notmuch";
};
@@ -27946,7 +28440,7 @@
helm-open-github = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, gh, helm-core, lib, melpaBuild }:
melpaBuild {
pname = "helm-open-github";
- version = "20151226.1542";
+ version = "20151226.842";
src = fetchFromGitHub {
owner = "syohex";
repo = "emacs-helm-open-github";
@@ -27954,7 +28448,7 @@
sha256 = "1wkmbc7247f209krvw4dzja3z0wyny12x5yi1cn3fnfh5nx04851";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-open-github";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/81f0f525680fea98e804f39dbde1dada887e8821/recipes/helm-open-github";
sha256 = "1wqlwg21s9pjgcrwr8kdrppinmjn235nadkp4003g0md1d64zxpx";
name = "helm-open-github";
};
@@ -27967,7 +28461,7 @@
helm-org-rifle = callPackage ({ dash, emacs, f, fetchFromGitHub, fetchurl, helm, lib, melpaBuild, s }:
melpaBuild {
pname = "helm-org-rifle";
- version = "20160420.1718";
+ version = "20160420.1018";
src = fetchFromGitHub {
owner = "alphapapa";
repo = "helm-org-rifle";
@@ -27975,7 +28469,7 @@
sha256 = "0glrbln15wang9n1h76dk19ykcgmc8hwphg1qcmc4fbbcgmh1a1p";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-org-rifle";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/f39cc94dde5aaf0d6cfea5c98dd52cdb0bcb1615/recipes/helm-org-rifle";
sha256 = "0hx764vql2qgw9i8qrr3kkn23lw6jx3x604dm1y33ig6a15gy3a3";
name = "helm-org-rifle";
};
@@ -27988,7 +28482,7 @@
helm-orgcard = callPackage ({ fetchFromGitHub, fetchurl, helm-core, lib, melpaBuild }:
melpaBuild {
pname = "helm-orgcard";
- version = "20151001.1724";
+ version = "20151001.1024";
src = fetchFromGitHub {
owner = "emacs-jp";
repo = "helm-orgcard";
@@ -27996,7 +28490,7 @@
sha256 = "1zyjxrrda7nxxjqczv2p3sfimxy2pq734kf51j6v2y0biclc4bk3";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-orgcard";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/ce6eb840368f8cbee66dc061478d5096b9dacb68/recipes/helm-orgcard";
sha256 = "1a56y8fny7qxxidc357n7l3yi7h66hidhvwhkam8y5wk6k61460p";
name = "helm-orgcard";
};
@@ -28009,7 +28503,7 @@
helm-package = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, helm, lib, melpaBuild }:
melpaBuild {
pname = "helm-package";
- version = "20151210.948";
+ version = "20151210.248";
src = fetchFromGitHub {
owner = "syohex";
repo = "emacs-helm-package";
@@ -28017,7 +28511,7 @@
sha256 = "14ad0b9d07chabjclffjyvnmrasar1di9wmpzf78bw5yg99cbisw";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-package";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/e31f4e01891b6a863a38da45eeea57ec656b5813/recipes/helm-package";
sha256 = "1qab2abx52xcqrnxzl0m3533ngp8m1cqmm3hgpzgx7yfrkanyi4y";
name = "helm-package";
};
@@ -28030,7 +28524,7 @@
helm-pages = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, helm, lib, melpaBuild }:
melpaBuild {
pname = "helm-pages";
- version = "20160322.313";
+ version = "20160321.2113";
src = fetchFromGitHub {
owner = "david-christiansen";
repo = "helm-pages";
@@ -28038,7 +28532,7 @@
sha256 = "1dyi3rs72jl7739knnikv8pawam54k0sxz5a4a33i6s2bg3ghxcd";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-pages";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/7a33cb19b6e71240896bbe5da07ab25f2ee11f0b/recipes/helm-pages";
sha256 = "1v3w8100invb5wsmm3dyl41pjs7s889s3b1rlr6vlcspa1ncv3wj";
name = "helm-pages";
};
@@ -28051,7 +28545,7 @@
helm-perldoc = callPackage ({ cl-lib ? null, deferred, fetchFromGitHub, fetchurl, helm-core, lib, melpaBuild }:
melpaBuild {
pname = "helm-perldoc";
- version = "20151101.427";
+ version = "20151031.2227";
src = fetchFromGitHub {
owner = "syohex";
repo = "emacs-helm-perldoc";
@@ -28059,7 +28553,7 @@
sha256 = "13wnagmgicl2mi4iksqckrjbaiz05j9ykbmvj26jy8zcbll5imfs";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-perldoc";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/81f0f525680fea98e804f39dbde1dada887e8821/recipes/helm-perldoc";
sha256 = "1qx0g81qcqanjiz5fxysagjhsxaj31g6nsi2hhdgq4x4nqrlmrhb";
name = "helm-perldoc";
};
@@ -28072,7 +28566,7 @@
helm-phpunit = callPackage ({ fetchFromGitHub, fetchurl, helm, lib, melpaBuild, phpunit }:
melpaBuild {
pname = "helm-phpunit";
- version = "20160513.1053";
+ version = "20160513.353";
src = fetchFromGitHub {
owner = "eric-hansen";
repo = "helm-phpunit";
@@ -28080,7 +28574,7 @@
sha256 = "0wirqnzprfxbppdawfx6ah5rdawgyvl8b4zn2r3zm9mnj9jci4dw";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-phpunit";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/96470d7190199bfb13dd54e7e8f5ea50cf0a5039/recipes/helm-phpunit";
sha256 = "0anbrzlpmashcklifyvnnf2rwv5fk4x0kbls2dp2db1bliw3rdh6";
name = "helm-phpunit";
};
@@ -28093,7 +28587,7 @@
helm-proc = callPackage ({ fetchFromGitHub, fetchurl, helm, lib, melpaBuild }:
melpaBuild {
pname = "helm-proc";
- version = "20160514.1618";
+ version = "20160514.918";
src = fetchFromGitHub {
owner = "markus1189";
repo = "helm-proc";
@@ -28101,7 +28595,7 @@
sha256 = "0bgpd50ningqyzwhfinfrn6gqacard5ynwllhg9clq0f683sbck2";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-proc";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/4d7905061141721ce9f2f8ccea8fc4cf53519481/recipes/helm-proc";
sha256 = "1bq60giy2bs9m3hlbc5nwvy51702a98s0vqass3b290hdgki4bnx";
name = "helm-proc";
};
@@ -28114,7 +28608,7 @@
helm-project-persist = callPackage ({ fetchFromGitHub, fetchurl, helm, lib, melpaBuild, project-persist }:
melpaBuild {
pname = "helm-project-persist";
- version = "20151210.1643";
+ version = "20151210.943";
src = fetchFromGitHub {
owner = "Sliim";
repo = "helm-project-persist";
@@ -28122,7 +28616,7 @@
sha256 = "0j54c1kzsjgr05qx25rg3ylawvyw6n6liypiwaas47vpyfswbxhv";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-project-persist";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/98780edaf8b1d97aec9e25d07d93289c90fd5069/recipes/helm-project-persist";
sha256 = "1n87kn1n3453mpdj6amyrgivslskmnzdafpspvkz7b0smf9mv2ld";
name = "helm-project-persist";
};
@@ -28135,15 +28629,15 @@
helm-projectile = callPackage ({ cl-lib ? null, dash, fetchFromGitHub, fetchurl, helm, lib, melpaBuild, projectile }:
melpaBuild {
pname = "helm-projectile";
- version = "20160603.611";
+ version = "20160614.1032";
src = fetchFromGitHub {
owner = "bbatsov";
repo = "helm-projectile";
- rev = "3db706c9147a54a618bdb6e5de827d931d8ae9a6";
- sha256 = "0b9nd668p5lya214hyc0lv9pbmxjfy4ls1yhljr6j71qsfl0mjva";
+ rev = "f41141a93aa6c03ffb9fdb294b3caa19803b1d72";
+ sha256 = "0z7vhidjb3fzy28kjg6v73sxd7fgdhxcmqx5qypv3czdjcl5911x";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-projectile";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/8bc4e3a5af7ba86d277c73a1966a91c87d3d855a/recipes/helm-projectile";
sha256 = "18y7phrvbpdi3cnghwyhh0v1bwm95nwq1lymzf8lrcbmrwcvh36a";
name = "helm-projectile";
};
@@ -28156,7 +28650,7 @@
helm-prosjekt = callPackage ({ fetchFromGitHub, fetchurl, helm, lib, melpaBuild, prosjekt }:
melpaBuild {
pname = "helm-prosjekt";
- version = "20140129.817";
+ version = "20140129.117";
src = fetchFromGitHub {
owner = "abingham";
repo = "prosjekt";
@@ -28164,7 +28658,7 @@
sha256 = "1m8zvrv5aws7b0dffk8y6b5mncdk2c4k90mx69jys10fs0gc5hb3";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-prosjekt";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/6d359ec827573dd8c871c4f23df5d1737f1830e7/recipes/helm-prosjekt";
sha256 = "019rya3bf13cnval8iz680wby3sqlmqg4nbn0a13l1pkhlnv9fvm";
name = "helm-prosjekt";
};
@@ -28177,7 +28671,7 @@
helm-pt = callPackage ({ fetchFromGitHub, fetchurl, helm, lib, melpaBuild }:
melpaBuild {
pname = "helm-pt";
- version = "20160215.42";
+ version = "20160214.1742";
src = fetchFromGitHub {
owner = "ralesi";
repo = "helm-pt";
@@ -28185,7 +28679,7 @@
sha256 = "03ys40rr0pvgp35j5scw9c28j184f1c9m58a3x0c8f0lgyfpssjk";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-pt";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/550eb9f42c90fd9e80714579c12ee6bfcacb5bb7/recipes/helm-pt";
sha256 = "1imhy0bsm9aldv0pvf88280qdya01lznxpx5gi5wffhrz17yh4pi";
name = "helm-pt";
};
@@ -28198,7 +28692,7 @@
helm-purpose = callPackage ({ emacs, fetchFromGitHub, fetchurl, helm, lib, melpaBuild, window-purpose }:
melpaBuild {
pname = "helm-purpose";
- version = "20160218.1909";
+ version = "20160218.1209";
src = fetchFromGitHub {
owner = "bmag";
repo = "helm-purpose";
@@ -28206,7 +28700,7 @@
sha256 = "1lxknzjfhl6irrspynlkc1dp02s0byp94y4qp69gcl9sla9262ip";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-purpose";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/931471b9df5e722d579aab378887890bf6e854a5/recipes/helm-purpose";
sha256 = "0am8fy7ihk4hv07a6bnk9mwy986h6i6qxwpdmfhajzga71ixchg6";
name = "helm-purpose";
};
@@ -28219,7 +28713,7 @@
helm-pydoc = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, helm-core, lib, melpaBuild }:
melpaBuild {
pname = "helm-pydoc";
- version = "20151008.1624";
+ version = "20151008.924";
src = fetchFromGitHub {
owner = "syohex";
repo = "emacs-helm-pydoc";
@@ -28227,7 +28721,7 @@
sha256 = "0admgfy0p13nilb4fi3dq8pm48w1fib8h8avi7h9ybi9k5h6x4ii";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-pydoc";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/81f0f525680fea98e804f39dbde1dada887e8821/recipes/helm-pydoc";
sha256 = "1sh7gqqiwk85kx89l1sihlkb8ff1g9n460nwj1y1bsrpfl6if4j7";
name = "helm-pydoc";
};
@@ -28240,7 +28734,7 @@
helm-qiita = callPackage ({ fetchFromGitHub, fetchurl, helm, lib, melpaBuild }:
melpaBuild {
pname = "helm-qiita";
- version = "20160528.1511";
+ version = "20160528.811";
src = fetchFromGitHub {
owner = "masutaka";
repo = "emacs-helm-qiita";
@@ -28248,7 +28742,7 @@
sha256 = "05394vf125qlgfrhkaqvly3340qp3zy7kldsnisms9gv0l1c60bq";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-qiita";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/37331f6cc8a95fd2b2ed5b20be0bcb604ea66dee/recipes/helm-qiita";
sha256 = "1iz2w1901zz3zk9zazikmnkzng5klnvqn4ph1id7liksrcdpdmpm";
name = "helm-qiita";
};
@@ -28261,7 +28755,7 @@
helm-rails = callPackage ({ fetchFromGitHub, fetchurl, helm, inflections, lib, melpaBuild }:
melpaBuild {
pname = "helm-rails";
- version = "20130424.1719";
+ version = "20130424.1019";
src = fetchFromGitHub {
owner = "asok";
repo = "helm-rails";
@@ -28269,7 +28763,7 @@
sha256 = "1a26r21jvgzk21vh3mf29s1dhvvv70jh860zaq9ihrpfrrl91158";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-rails";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/3af52fd266364a81ff42eb6d08389fa549bd6c2c/recipes/helm-rails";
sha256 = "1iihfsmnkpfp08pldghf3w5k8v5dlmy5ns0l4niwdwp5w8lyjcd6";
name = "helm-rails";
};
@@ -28282,7 +28776,7 @@
helm-rb = callPackage ({ fetchFromGitHub, fetchurl, helm, helm-ag-r, lib, melpaBuild }:
melpaBuild {
pname = "helm-rb";
- version = "20131123.1739";
+ version = "20131123.1039";
src = fetchFromGitHub {
owner = "yuutayamada";
repo = "helm-rb";
@@ -28290,7 +28784,7 @@
sha256 = "1b74jsr28ldz80mrqz3d1bmykpcprdbhf3fzhc0awd5i5xdnfaid";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-rb";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/7ba8e94755f5a96881bbf4c4ffbff67bec9b804a/recipes/helm-rb";
sha256 = "14pkrj1rpi2ihpb7c1hx6xwzvc1x7l41lwr9znp5vn7z93i034fr";
name = "helm-rb";
};
@@ -28303,15 +28797,15 @@
helm-recoll = callPackage ({ fetchFromGitHub, fetchurl, helm, lib, melpaBuild }:
melpaBuild {
pname = "helm-recoll";
- version = "20160602.41";
+ version = "20160605.1623";
src = fetchFromGitHub {
owner = "emacs-helm";
repo = "helm-recoll";
- rev = "30d2e26c2dcd5bdd906d659cca37359ad863fd52";
- sha256 = "07jzrra4y0vbm6f62vsl60qbh99s8f76r74l4z1fby1ww6wgbrcd";
+ rev = "8901a648fea4f2a2c0814bccfeebce3e8b1af33d";
+ sha256 = "01ikw689xjrjk4aas3z34dhldhzj3200q0kgq7xjgs777mi38054";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-recoll";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/0a0d168f96470753c22b92ad863be98d8c421ccd/recipes/helm-recoll";
sha256 = "0pr2pllplml55k1xx9inr3dm90ichg2wb62dvgvmbq2sqdf4606b";
name = "helm-recoll";
};
@@ -28324,7 +28818,7 @@
helm-rhythmbox = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, helm, lib, melpaBuild }:
melpaBuild {
pname = "helm-rhythmbox";
- version = "20160524.1358";
+ version = "20160524.658";
src = fetchFromGitHub {
owner = "mrBliss";
repo = "helm-rhythmbox";
@@ -28332,7 +28826,7 @@
sha256 = "1ng73dmligj38xbfdfr8sb69czppks7wfvh5q5xcm2pha828kcwm";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-rhythmbox";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/8a81c43958308ad8035a9d0b2422fd094adc72f0/recipes/helm-rhythmbox";
sha256 = "0pnm7yvas0q3b38ch5idm7v4ih2fjyfai8217j74xhkpcc2w4g4a";
name = "helm-rhythmbox";
};
@@ -28345,15 +28839,15 @@
helm-robe = callPackage ({ fetchFromGitHub, fetchurl, helm, lib, melpaBuild }:
melpaBuild {
pname = "helm-robe";
- version = "20151209.455";
+ version = "20151208.2155";
src = fetchFromGitHub {
owner = "syohex";
repo = "emacs-helm-robe";
- rev = "7348d0bc0251b51979554ea678b970fd01c0efe9";
- sha256 = "163ljqar3vvbavzc8sk6rnf8awyc2rhh2g117fglswich3c8lnqg";
+ rev = "6e69543b4ee76c5f8f3f2510c76e6d9aed17a370";
+ sha256 = "1qcx036pgrg4xc1y74amd8jkjylnc0g1c4841cc3fbknnn1ap54g";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-robe";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/e7018f57f6f0e4bd71e172ae23c050b44276581b/recipes/helm-robe";
sha256 = "1gi4nkm9xvnxv0frmhiiw8dkmnmhfpr9n0b6jpidlvr8xr4s5kyw";
name = "helm-robe";
};
@@ -28366,7 +28860,7 @@
helm-rubygems-local = callPackage ({ fetchFromGitHub, fetchurl, helm, lib, melpaBuild }:
melpaBuild {
pname = "helm-rubygems-local";
- version = "20130712.311";
+ version = "20130711.2011";
src = fetchFromGitHub {
owner = "hadashiA";
repo = "helm-rubygems-local";
@@ -28374,7 +28868,7 @@
sha256 = "0s4hb1fvwr9za5gkz8s5w1kh9qjyygz6g59w7vmrg2d8ds2an03d";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-rubygems-local";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/7fabdb05de9b8ec18a3a566f99688b50443b6b44/recipes/helm-rubygems-local";
sha256 = "134qyqnh9l05lfj0vizlx35631q8ih6cdblrvka3p8i571300ikh";
name = "helm-rubygems-local";
};
@@ -28387,7 +28881,7 @@
helm-rubygems-org = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, helm, lib, melpaBuild }:
melpaBuild {
pname = "helm-rubygems-org";
- version = "20140826.1356";
+ version = "20140826.656";
src = fetchFromGitHub {
owner = "neomantic";
repo = "helm-rubygems-org";
@@ -28395,7 +28889,7 @@
sha256 = "1sff8kagyhmwcxf9062il1077d4slvr2kq76abj496610gpb75i0";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-rubygems-org";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/655be547d57d358eff968f42c13dcf4371529a72/recipes/helm-rubygems-org";
sha256 = "04ni03ak53z3rggdgf68qh7ksgcf3s0f2cv6skwjqw7v8qhph6qs";
name = "helm-rubygems-org";
};
@@ -28408,7 +28902,7 @@
helm-safari = callPackage ({ emacs, fetchFromGitHub, fetchurl, helm, lib, melpaBuild }:
melpaBuild {
pname = "helm-safari";
- version = "20160404.524";
+ version = "20160403.2224";
src = fetchFromGitHub {
owner = "xuchunyang";
repo = "helm-safari";
@@ -28416,7 +28910,7 @@
sha256 = "1ws5zxanaiaaxpgkcb2914qa8wxp6ml019hfnfcp7amjnajq9pyz";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-safari";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/553e27a3523ade9dc4951086d9340e8240d5d943/recipes/helm-safari";
sha256 = "0lvwghcl5w67g0lc97r7hfvca7ss0mysy2mxj9axxbpyiq6fmh0y";
name = "helm-safari";
};
@@ -28429,7 +28923,7 @@
helm-sage = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, helm, lib, melpaBuild, sage-shell-mode }:
melpaBuild {
pname = "helm-sage";
- version = "20160514.945";
+ version = "20160514.245";
src = fetchFromGitHub {
owner = "stakemori";
repo = "helm-sage";
@@ -28437,7 +28931,7 @@
sha256 = "0padb6mncgc52wib3dgvdc9r4dp591gf8nblbfnsnxx4zjrcwawb";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-sage";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/09760a7f7b3cff6551c394fc7b2298567ca88eb0/recipes/helm-sage";
sha256 = "1vnq15fjaap0ai7dadi64sm4415xssmahk2j7kx45sasy4qaxlbj";
name = "helm-sage";
};
@@ -28450,7 +28944,7 @@
helm-sheet = callPackage ({ fetchFromGitHub, fetchurl, helm, lib, melpaBuild }:
melpaBuild {
pname = "helm-sheet";
- version = "20130630.1439";
+ version = "20130630.739";
src = fetchFromGitHub {
owner = "yasuyk";
repo = "helm-sheet";
@@ -28458,7 +28952,7 @@
sha256 = "00wnqcgpf4hqdnqj5zrizr4s0pffb93xwya8k5c3rp4plncrcdzx";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-sheet";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/010c5c5e6ad6e7b05e63936079229739963bf970/recipes/helm-sheet";
sha256 = "0lx70l5gq43hckgdfna8s6wx287sw5ms9l1z3n6vg2x8nr9m61kc";
name = "helm-sheet";
};
@@ -28471,7 +28965,7 @@
helm-smex = callPackage ({ emacs, fetchFromGitHub, fetchurl, helm, lib, melpaBuild, smex }:
melpaBuild {
pname = "helm-smex";
- version = "20160530.2136";
+ version = "20160530.1436";
src = fetchFromGitHub {
owner = "ptrv";
repo = "helm-smex";
@@ -28479,7 +28973,7 @@
sha256 = "0i8qhlyil4p11lnb6f1x9qv7f5131dg0f74anbvnc1wjga0jifzx";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-smex";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/85568bd732da952053148e07b95e53f7caf5f62c/recipes/helm-smex";
sha256 = "02jvq2hyq4wwc9v8gaxr9vkjldc60khdbjf71p8w2iny5w3k0jbj";
name = "helm-smex";
};
@@ -28492,7 +28986,7 @@
helm-spaces = callPackage ({ fetchFromGitHub, fetchurl, helm, lib, melpaBuild, spaces }:
melpaBuild {
pname = "helm-spaces";
- version = "20160319.1554";
+ version = "20160319.954";
src = fetchFromGitHub {
owner = "yasuyk";
repo = "helm-spaces";
@@ -28500,7 +28994,7 @@
sha256 = "0j3b5ypxq8k7mg6zlx3r15jpk3x2f0gx9p9bjr0h78h0sc0f46l7";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-spaces";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/8c2ffb50643223b68a62fab348cd5aba24ce92e6/recipes/helm-spaces";
sha256 = "0hdvkk173k98iycvii5xpbiblx044125pl7jyz4kb8r1vvwcv791";
name = "helm-spaces";
};
@@ -28513,7 +29007,7 @@
helm-spotify = callPackage ({ fetchFromGitHub, fetchurl, helm, lib, melpaBuild, multi }:
melpaBuild {
pname = "helm-spotify";
- version = "20131014.2321";
+ version = "20131014.1621";
src = fetchFromGitHub {
owner = "krisajenkins";
repo = "helm-spotify";
@@ -28521,7 +29015,7 @@
sha256 = "133dcqk42nq5gh5qlcbcmx3lczisfgymcnypnld318jvjgd2ma8a";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-spotify";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/1bf9eda57cba4742656f37a621b6d394483ff638/recipes/helm-spotify";
sha256 = "1rzvxnaqh8bm78qp0rhpqs971pc855qrq589r3s8z3gpqzmwlnmf";
name = "helm-spotify";
};
@@ -28534,15 +29028,15 @@
helm-swoop = callPackage ({ emacs, fetchFromGitHub, fetchurl, helm, lib, melpaBuild }:
melpaBuild {
pname = "helm-swoop";
- version = "20160417.2357";
+ version = "20160619.1153";
src = fetchFromGitHub {
owner = "ShingoFukuyama";
repo = "helm-swoop";
- rev = "fd01dac3d647544f4ca297ca9963859b07ebe354";
- sha256 = "1iid2jcnqpd5b2g0jgas76n06i8m20kp3j4lhmalg9jnyvgrlf7s";
+ rev = "6d3fdcfb6dea06242efc8ff4cafff9917e558bfc";
+ sha256 = "1pjpzccviz95zgl86yw2xda7lhlsfdddf8la8di8rka8sz79nw72";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-swoop";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/1e6fe2ffb46ea763bc6fb6fb6c899be6d3a67440/recipes/helm-swoop";
sha256 = "1fqbhj75hcmy7c2vdd0m7fk3m34njmv5s6k1i9y94djpbd13i3d8";
name = "helm-swoop";
};
@@ -28555,7 +29049,7 @@
helm-systemd = callPackage ({ emacs, fetchFromGitHub, fetchurl, helm, lib, melpaBuild, with-editor }:
melpaBuild {
pname = "helm-systemd";
- version = "20160518.833";
+ version = "20160518.133";
src = fetchFromGitHub {
owner = "lompik";
repo = "helm-systemd";
@@ -28563,7 +29057,7 @@
sha256 = "1yqwq8a5pw3iaj69kqvlgn4hr18ssx39lnm4vycbmsg1bi2ygfzw";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-systemd";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/047e5a8cacd8432adc86812e4c014808b99586bc/recipes/helm-systemd";
sha256 = "1kcf9218l8aygrcj1h3czyklk1cxc5c73qmv4d3r3bzpxbxgf6ib";
name = "helm-systemd";
};
@@ -28576,7 +29070,7 @@
helm-themes = callPackage ({ fetchFromGitHub, fetchurl, helm-core, lib, melpaBuild }:
melpaBuild {
pname = "helm-themes";
- version = "20151009.821";
+ version = "20151009.121";
src = fetchFromGitHub {
owner = "syohex";
repo = "emacs-helm-themes";
@@ -28584,7 +29078,7 @@
sha256 = "0a9h6rmjc6c6krkvxbgrzv35if260d9ma9a2k47jzm9psnyp9s2w";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-themes";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/81f0f525680fea98e804f39dbde1dada887e8821/recipes/helm-themes";
sha256 = "0r7kyd0i0spwi7xkjrpm2kyphrsl3hqm5pw96nd3ia0jiwp8550j";
name = "helm-themes";
};
@@ -28597,7 +29091,7 @@
helm-unicode = callPackage ({ emacs, fetchFromGitHub, fetchurl, helm, lib, melpaBuild }:
melpaBuild {
pname = "helm-unicode";
- version = "20150428.2054";
+ version = "20150428.1354";
src = fetchFromGitHub {
owner = "shosti";
repo = "helm-unicode";
@@ -28605,7 +29099,7 @@
sha256 = "1ypnsbx623gg3q07gxrbkn82jzy38sj4p52hj1wcb54qjqzyznkg";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-unicode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/2c35c6f876372c440bcf6133d5dfce7256f0743c/recipes/helm-unicode";
sha256 = "052xqzvcfzpsbl75ylqb1khqndvc2dqdymqlwivs0darlds0w8y4";
name = "helm-unicode";
};
@@ -28618,7 +29112,7 @@
helm-w32-launcher = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, helm, lib, melpaBuild }:
melpaBuild {
pname = "helm-w32-launcher";
- version = "20141223.2114";
+ version = "20141223.1414";
src = fetchFromGitHub {
owner = "Fanael";
repo = "helm-w32-launcher";
@@ -28626,7 +29120,7 @@
sha256 = "0xlz9rxx7y9pkrzvxmv42vgys5iwx75zv9g50k8ihwc08z80dhcq";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-w32-launcher";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/fa678329a5081e1affa460c00239dabfd1b9dd82/recipes/helm-w32-launcher";
sha256 = "0bzn2vhspn6lla815qxwsl9gwfyiwgwmnysr6rjpyacmi17d73ri";
name = "helm-w32-launcher";
};
@@ -28639,7 +29133,7 @@
helm-w3m = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, helm, lib, melpaBuild, w3m }:
melpaBuild {
pname = "helm-w3m";
- version = "20150722.1724";
+ version = "20150722.1024";
src = fetchFromGitHub {
owner = "emacs-helm";
repo = "helm-w3m";
@@ -28647,7 +29141,7 @@
sha256 = "0d47mqib4zkfadq26vpy0ih7j18d6n5v4c21wvr4hhg6hg205iiz";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-w3m";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/f683fc9c7990e9ecb8a94808a7d03eb90c5569b1/recipes/helm-w3m";
sha256 = "1rr83ija93iqz74k236hk3v75jk0iwcccwqpqgys7spvrld0b9pz";
name = "helm-w3m";
};
@@ -28660,7 +29154,7 @@
helm-wordnet = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, helm, lib, melpaBuild }:
melpaBuild {
pname = "helm-wordnet";
- version = "20160128.1607";
+ version = "20160128.907";
src = fetchFromGitHub {
owner = "raghavgautam";
repo = "helm-wordnet";
@@ -28668,7 +29162,7 @@
sha256 = "03a5hzgqak8wg6i2h2p3fr9ij55lqarcsblml8qrnrj27ghcvzzh";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-wordnet";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/11626120951afc589beac4cf5a0f49bffa752349/recipes/helm-wordnet";
sha256 = "0di8gxsa9r8mzja4akhz0wpgrhlidqyn1s1ix5szplwxklwf2r2f";
name = "helm-wordnet";
};
@@ -28681,7 +29175,7 @@
helm-words = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "helm-words";
- version = "20150413.2218";
+ version = "20150413.1518";
src = fetchFromGitHub {
owner = "pronobis";
repo = "helm-words";
@@ -28689,7 +29183,7 @@
sha256 = "19l8vysjygscr1nsddjz2yv0fjhbsswfq40rdny8zsmaa6qhpj35";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-words";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/f8c5b91762d47a4d3024f1ed7f19666c6f2d5ce5/recipes/helm-words";
sha256 = "0l9mb7g3xzasna1bw2p7vh2wdg1hmjkff40p8kpqvwwzszdm9v76";
name = "helm-words";
};
@@ -28702,7 +29196,7 @@
helm-xcdoc = callPackage ({ emacs, fetchFromGitHub, fetchurl, helm, lib, melpaBuild }:
melpaBuild {
pname = "helm-xcdoc";
- version = "20160116.1118";
+ version = "20160116.418";
src = fetchFromGitHub {
owner = "fujimisakari";
repo = "emacs-helm-xcdoc";
@@ -28710,7 +29204,7 @@
sha256 = "1yqr5z5sw7schvaq9pmwg79anp806gikm28s6xvrayzyn4idz2n6";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-xcdoc";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/e3352ce89039fb48827b74f22fcf543722a27738/recipes/helm-xcdoc";
sha256 = "1ikphlnj053i4g1l8r2pqaljvdqglj1yk0xx4vygnw98qyzdsx4v";
name = "helm-xcdoc";
};
@@ -28723,15 +29217,15 @@
helm-zhihu-daily = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, helm, lib, melpaBuild }:
melpaBuild {
pname = "helm-zhihu-daily";
- version = "20151006.1019";
+ version = "20160625.645";
src = fetchFromGitHub {
owner = "xuchunyang";
repo = "helm-zhihu-daily";
- rev = "c084d2505621dbb71d83ec10550fa0801623cafc";
- sha256 = "11fznbfcv4rac4h50mkax1g66wd2f91f5dw2v4jxjq2f5y4h4w0g";
+ rev = "be27dcc6be1eb97663b65581a9a5c0fc81cfaba7";
+ sha256 = "1s8q97pra27bacvm5knj0sjgj7iqljlhxqiniaw8ij8w4fhcdh93";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-zhihu-daily";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/27246ec2bad3c85f8bb76aa26ebcd800edfe0d70/recipes/helm-zhihu-daily";
sha256 = "0hkgail60s9qhxl0pskqxjvfz93iq1qh1kcmcq0x5kq7d08b911r";
name = "helm-zhihu-daily";
};
@@ -28743,13 +29237,13 @@
}) {};
help-fns-plus = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild {
pname = "help-fns-plus";
- version = "20151215.1537";
+ version = "20151215.837";
src = fetchurl {
url = "https://www.emacswiki.org/emacs/download/help-fns+.el";
sha256 = "00x3ln7x4d6r422x845smf3h0x1z85l5jqyjkrllqcs7qijcrk5w";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/help-fns+";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/a5d15f875b0080b12ce45cf696c581f6bbf061ba/recipes/help-fns+";
sha256 = "10vz7w79k3barlcs3ph3pc7914xdhcygagdk2wj3bq0wmwxa1lia";
name = "help-fns-plus";
};
@@ -28761,13 +29255,13 @@
}) {};
help-mode-plus = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild {
pname = "help-mode-plus";
- version = "20151231.2231";
+ version = "20151231.1531";
src = fetchurl {
url = "https://www.emacswiki.org/emacs/download/help-mode+.el";
sha256 = "0qmf81maq6yvs68b8vlbxwkjk72qldamq75znrma9mhvlv8igrgx";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/help-mode+";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/a5d15f875b0080b12ce45cf696c581f6bbf061ba/recipes/help-mode+";
sha256 = "1pmb845bxa5kazjpdxm12rm2wcshmv2cmisigs3kyva1pmi1shra";
name = "help-mode-plus";
};
@@ -28779,13 +29273,13 @@
}) {};
help-plus = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild {
pname = "help-plus";
- version = "20151231.2228";
+ version = "20151231.1528";
src = fetchurl {
url = "https://www.emacswiki.org/emacs/download/help+.el";
sha256 = "1r7kf9plnsjx87bhflsdh47wybvhis7gb10izqa1p6w0aqsg178s";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/help+";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/a5d15f875b0080b12ce45cf696c581f6bbf061ba/recipes/help+";
sha256 = "1jx0wa4md1mvdsvjyx2yvi4hhm5w061qqcafsrw4axsz7gjpd4yi";
name = "help-plus";
};
@@ -28798,7 +29292,7 @@
hemisu-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "hemisu-theme";
- version = "20130508.2044";
+ version = "20130508.1344";
src = fetchFromGitHub {
owner = "andrzejsliwa";
repo = "hemisu-theme";
@@ -28806,7 +29300,7 @@
sha256 = "178dvigiw162m01x7dm8pf61w2n3bq51lvk5q7jzpb9s35pz1697";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/hemisu-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/bb4dd85ccbd2c8936e59ca5c5e6234290b8bdf1b/recipes/hemisu-theme";
sha256 = "0byzrz74yvk12m8dl47kkmkziwrrql193q72qx974zbqdj8h2sph";
name = "hemisu-theme";
};
@@ -28819,7 +29313,7 @@
heroku = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "heroku";
- version = "20120629.2013";
+ version = "20120629.1313";
src = fetchFromGitHub {
owner = "technomancy";
repo = "heroku.el";
@@ -28827,7 +29321,7 @@
sha256 = "0c45pib8qpwgyr271g5ddnsn7hzq68mqflv0yyc8803ni06w9vhj";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/heroku";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/652b78013a7a6fa321490413fe98a7de5829b0dc/recipes/heroku";
sha256 = "1kadmxmqhc60cb5k14943rad1gbril2hlcnqxnsy4h3j2ykmcdyy";
name = "heroku";
};
@@ -28840,7 +29334,7 @@
heroku-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "heroku-theme";
- version = "20150523.419";
+ version = "20150522.2119";
src = fetchFromGitHub {
owner = "jonathanchu";
repo = "heroku-theme";
@@ -28848,7 +29342,7 @@
sha256 = "15hk0v6ck076mahsz4spq75jcnv587fx4d3w50c7bdh423fl0xvx";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/heroku-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/348f0e7aec86c3efd87ab06849a5f1ce90ba23e2/recipes/heroku-theme";
sha256 = "0mchh9y3pqwamry6105qrv1bp1qg1g0jmz7rzc5svz9giynypwf9";
name = "heroku-theme";
};
@@ -28861,7 +29355,7 @@
hexo = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "hexo";
- version = "20160423.1717";
+ version = "20160423.1017";
src = fetchFromGitHub {
owner = "kuanyui";
repo = "hexo.el";
@@ -28869,7 +29363,7 @@
sha256 = "1ghknn1fd6lwxq035amrawx9ixw3qwjsfarsjyqss7rhs70wrn5a";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/hexo";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/21de1b7db0fa4af4fc0014207d41893a0713d738/recipes/hexo";
sha256 = "0fgrxf6gdw0kzs6x6y8qr511cazaaiyk7licgkgznngj4w6g7jyn";
name = "hexo";
};
@@ -28881,13 +29375,13 @@
}) {};
hexrgb = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild {
pname = "hexrgb";
- version = "20151231.2232";
+ version = "20151231.1532";
src = fetchurl {
url = "https://www.emacswiki.org/emacs/download/hexrgb.el";
sha256 = "0rqjidjxa5j6rjknklfks743lczbq3qsyiranrf2z3ghzi0gf7fd";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/hexrgb";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/0c9d7811584920508184a84ee4049e159cce3bb4/recipes/hexrgb";
sha256 = "0mzqslrrf7sc262syj3ja7b7rnbg80dwf2p9bzxdrzx6b8vvsx06";
name = "hexrgb";
};
@@ -28900,7 +29394,7 @@
hfst-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "hfst-mode";
- version = "20160524.1353";
+ version = "20160524.653";
src = fetchFromGitHub {
owner = "unhammer";
repo = "hfst-mode";
@@ -28908,7 +29402,7 @@
sha256 = "1yi01qsgbmhmdgxdjfvgi2s9ijnq9x1y3j9yc1jwz89p0pc5dm1y";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/hfst-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/e324bb114997f9cc57d76d8a66fec4ff4d1d71fe/recipes/hfst-mode";
sha256 = "1w342n5k9ak1m5znysvrplpr9dhmi7hxbkr4d1dx51dn0azbpjh7";
name = "hfst-mode";
};
@@ -28921,7 +29415,7 @@
hgignore-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "hgignore-mode";
- version = "20160501.207";
+ version = "20160430.1907";
src = fetchFromGitHub {
owner = "omajid";
repo = "hgignore-mode";
@@ -28929,7 +29423,7 @@
sha256 = "0l22sqi9lmy25idh231p0hgq22b3dxwb9wq60yxk8dck9zlkv7rr";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/hgignore-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/f3e325c84d0a30789fab7e897b4fe5040c5093ba/recipes/hgignore-mode";
sha256 = "0ja71l3cghhn1c6w2pff80km8h8xgzf0j9gcldfyc72ar6ifhjkj";
name = "hgignore-mode";
};
@@ -28942,7 +29436,7 @@
hgrc-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "hgrc-mode";
- version = "20150409.2243";
+ version = "20150409.1543";
src = fetchFromGitHub {
owner = "omajid";
repo = "hgrc-mode";
@@ -28950,7 +29444,7 @@
sha256 = "1ky5s7hzqbxgasdz285q3rnvzh3irwsq61rlivjrcxyfdxdjbbvp";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/hgrc-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/31a24d95efce2f04f0b555ed16b8d3d5a3aa255a/recipes/hgrc-mode";
sha256 = "18400dhdackdpndkz6shjmd4klfh6b4vlccnnqlzf3a93alw6vqf";
name = "hgrc-mode";
};
@@ -28963,7 +29457,7 @@
hi2 = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "hi2";
- version = "20141005.2131";
+ version = "20141005.1431";
src = fetchFromGitHub {
owner = "nilcons";
repo = "hi2";
@@ -28971,7 +29465,7 @@
sha256 = "1s08sgbh5v59lqskd0s1dscs6dy7z5mkqqkabs3gd35agbfvbmlf";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/hi2";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/ba880f0130707098e5b648f74d14e151b0110e4e/recipes/hi2";
sha256 = "1wxkjg1jnw05lqzggi20jy2jl20d8brvv76vmrf6lnz62g6jv9h2";
name = "hi2";
};
@@ -28983,13 +29477,13 @@
}) {};
hide-comnt = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild {
pname = "hide-comnt";
- version = "20151231.2233";
+ version = "20151231.1533";
src = fetchurl {
url = "https://www.emacswiki.org/emacs/download/hide-comnt.el";
sha256 = "1l5jvgjgd0kzv1sn6h467fbnl487hma4h4pkwq4x1dhbc26yvfpz";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/hide-comnt";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/05a695ab2bc358690c54611d21ef80cb51812739/recipes/hide-comnt";
sha256 = "181kns2rg4rc0pyyxw305qc06d10v025ad7v2m037y72vfwb0igx";
name = "hide-comnt";
};
@@ -29001,13 +29495,13 @@
}) {};
hide-lines = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild {
pname = "hide-lines";
- version = "20151127.1940";
+ version = "20151127.1240";
src = fetchurl {
url = "https://www.emacswiki.org/emacs/download/hide-lines.el";
sha256 = "1q87yp1pr62cza3pqimqd09a39yyij4c7pncdww84zz7cii9qrn2";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/hide-lines";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/2a4e010b04a4c5dddc3f7259fad929e4cb66760d/recipes/hide-lines";
sha256 = "146sgvd88w20rqvd8y8kc76cb1nqk6dvqsz9rgl4rcrf0xfqvp7q";
name = "hide-lines";
};
@@ -29019,13 +29513,13 @@
}) {};
hide-region = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild {
pname = "hide-region";
- version = "20140201.1214";
+ version = "20140201.514";
src = fetchurl {
url = "https://www.emacswiki.org/emacs/download/hide-region.el";
sha256 = "1zxrygpf47bzj6p808r3qhj3dfr3m8brp1xgxs33c7f88rinfval";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/hide-region";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/c5fc294a4d0cfa74530c98d81149fd0501ea7efe/recipes/hide-region";
sha256 = "0nsc6m3yza658xsxvjz8766vkp71rcm6vwnvcv225r2pr94mq7vm";
name = "hide-region";
};
@@ -29038,7 +29532,7 @@
hideshow-org = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "hideshow-org";
- version = "20120223.2350";
+ version = "20120223.1650";
src = fetchFromGitHub {
owner = "shanecelis";
repo = "hideshow-org";
@@ -29046,7 +29540,7 @@
sha256 = "1dr06b9njzih8z97k62l9w3x0a801x4bp043zvk7av9qkz8izl2r";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/hideshow-org";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/3de48eee24a5cca9c8b7dba2d6d01dfbc679d8d6/recipes/hideshow-org";
sha256 = "1bzx5ii06r64nra92zv1dvw5zv3im7la2dd3md801hxyfrpb74gc";
name = "hideshow-org";
};
@@ -29058,13 +29552,13 @@
}) {};
hideshowvis = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild {
pname = "hideshowvis";
- version = "20130824.1400";
+ version = "20130824.700";
src = fetchurl {
url = "https://www.emacswiki.org/emacs/download/hideshowvis.el";
sha256 = "15ax1j3j7kylyc8a91ja825sp4mhbdgx0j4i5kqxwhvmwvpmyrv6";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/hideshowvis";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/881fd07512c417c0b98021af2a2c26eac4268a5f/recipes/hideshowvis";
sha256 = "1ajr71fch3v5g8brb83kwmlakcam5w21i3yr8df00c5j2pnc6v1f";
name = "hideshowvis";
};
@@ -29076,13 +29570,13 @@
}) {};
highlight = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild {
pname = "highlight";
- version = "20151231.2237";
+ version = "20160617.817";
src = fetchurl {
url = "https://www.emacswiki.org/emacs/download/highlight.el";
- sha256 = "15s4463damlszd5wqi22a6w25i8l0m5rvqdg73k3yp01i65jc29z";
+ sha256 = "1g0csgabcaxfvv92bmqkmyqp2jlal8gj6c6ghz83a2r185ba0jji";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/highlight";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/603e9fc90e6e6cf7fe903cb3c38155c1a4f45278/recipes/highlight";
sha256 = "0clv4mzy9kllcvc0cgsbx3a9anw68dc2c7vzwbrv13sw5gh9skc0";
name = "highlight";
};
@@ -29095,7 +29589,7 @@
highlight-blocks = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "highlight-blocks";
- version = "20151201.1715";
+ version = "20151201.1015";
src = fetchFromGitHub {
owner = "Fanael";
repo = "highlight-blocks";
@@ -29103,7 +29597,7 @@
sha256 = "0c65jk00j88qxfki2g88hy9g6n92rzskwcn1fbmwcw3qgaz4b6w5";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/highlight-blocks";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/eaf524488c408483ea8f2c3a71174b1b5fc3f5da/recipes/highlight-blocks";
sha256 = "1a32iv5kgf6g6ygbs559w156dh578k45m860czazfx0d6ap3k5m1";
name = "highlight-blocks";
};
@@ -29115,13 +29609,13 @@
}) {};
highlight-chars = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild {
pname = "highlight-chars";
- version = "20151231.2235";
+ version = "20151231.1535";
src = fetchurl {
url = "https://www.emacswiki.org/emacs/download/highlight-chars.el";
sha256 = "18y6cw43mhizccvwfydv6g2kz8w7vff0n3k9sq5ghwq3rb3z14b2";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/highlight-chars";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/a5d15f875b0080b12ce45cf696c581f6bbf061ba/recipes/highlight-chars";
sha256 = "19jawbjvqx1hsjbynx0jgpziap3r64k8s1xfckajrx8aq8m4c6i0";
name = "highlight-chars";
};
@@ -29133,13 +29627,13 @@
}) {};
highlight-cl = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild {
pname = "highlight-cl";
- version = "20091012.1930";
+ version = "20091012.1230";
src = fetchurl {
url = "https://www.emacswiki.org/emacs/download/highlight-cl.el";
sha256 = "0r3kzs2fsi3kl5gqmsv75dc7lgfl4imrrqhg09ij6kq1ri8gjxjw";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/highlight-cl";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/7dc85d7fd8e4d7381850f4a379140c64506f86e8/recipes/highlight-cl";
sha256 = "164h3c3rzriahb7v5hk2pw4i0gk2vk5ak722bai6x4zx4l1xp20w";
name = "highlight-cl";
};
@@ -29152,13 +29646,13 @@
highlight-current-line = callPackage ({ fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "highlight-current-line";
- version = "20051013.1956";
+ version = "20051013.1256";
src = fetchurl {
url = "https://www.emacswiki.org/emacs/download/highlight-current-line.el";
sha256 = "1aki7a7nnj9n7vh19k4fr0v7cqbwkrpc6b3f3yv95vcqj8a4y34c";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/highlight-current-line";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/e2768ed5917ec2e2339412d8fbd146ca5a8a5042/recipes/highlight-current-line";
sha256 = "01bga6is3frzlzfajpvpgz224vhl0jnc2bl2ipvlygdcmv4h8973";
name = "highlight-current-line";
};
@@ -29171,7 +29665,7 @@
highlight-defined = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "highlight-defined";
- version = "20141225.1630";
+ version = "20141225.930";
src = fetchFromGitHub {
owner = "Fanael";
repo = "highlight-defined";
@@ -29179,7 +29673,7 @@
sha256 = "1l10xnjyvcbv1v8xlldaca7z3fk5qav7nsbhfnjxxd0bgh5v9by2";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/highlight-defined";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/acc9b816796b9f142c53f90593952b43c962d2d8/recipes/highlight-defined";
sha256 = "1vjxm35wf4c2qphpkjh57hf03a5qdssdlmfj0n0gwxsdw1q5rpms";
name = "highlight-defined";
};
@@ -29192,7 +29686,7 @@
highlight-escape-sequences = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "highlight-escape-sequences";
- version = "20151231.1312";
+ version = "20151231.612";
src = fetchFromGitHub {
owner = "dgutov";
repo = "highlight-escape-sequences";
@@ -29200,7 +29694,7 @@
sha256 = "0rs8zyjz5mh26n8bdxn6fmyw2809nihz1vp7ih59dq11lx3mf9az";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/highlight-escape-sequences";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/cd087f2c5a9524986b0f2c7fd7efd1f296363101/recipes/highlight-escape-sequences";
sha256 = "0938b29cqapid9v9q4w2jwh8kdb0p70qwzy9xm2nxaairm7436d6";
name = "highlight-escape-sequences";
};
@@ -29213,15 +29707,15 @@
highlight-indent-guides = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "highlight-indent-guides";
- version = "20160519.2123";
+ version = "20160622.1438";
src = fetchFromGitHub {
owner = "DarthFennec";
repo = "highlight-indent-guides";
- rev = "31e3b967dfc83d09c517e4570959bfe8a53e2101";
- sha256 = "10rj4sl99kpsggw7009vv8l4p74rmpp2hfz1d4d3gyfq5k3zblb5";
+ rev = "2371a0884afb318e03c236bb4f2b700aa6fd4cf2";
+ sha256 = "1gnyf90rnglz9djhcl1gfilwvdynfigg591529mv762b2sy8rkcv";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/highlight-indent-guides";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/c8acca65a5c134d4405900a43b422c4f4e18b586/recipes/highlight-indent-guides";
sha256 = "00ghp677qgb5clxhdjarfl8ab3mbp6v7yfsldm9bn0s14lyaq5pm";
name = "highlight-indent-guides";
};
@@ -29234,7 +29728,7 @@
highlight-indentation = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "highlight-indentation";
- version = "20150307.1108";
+ version = "20150307.408";
src = fetchFromGitHub {
owner = "antonj";
repo = "Highlight-Indentation-for-Emacs";
@@ -29242,7 +29736,7 @@
sha256 = "00l54k75qk24a0znzl4ij3s3nrnr2wy9ha3za8apphzlm98m907k";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/highlight-indentation";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/31c443de5088410c0fe1b1c18f664b33ad259277/recipes/highlight-indentation";
sha256 = "0iblrrbssjwfn71n8xxjcl98pjv1qw1igf3hlz6mh8740fsca3d6";
name = "highlight-indentation";
};
@@ -29255,7 +29749,7 @@
highlight-leading-spaces = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "highlight-leading-spaces";
- version = "20151216.1322";
+ version = "20151216.622";
src = fetchFromGitHub {
owner = "mrBliss";
repo = "highlight-leading-spaces";
@@ -29263,7 +29757,7 @@
sha256 = "1vy6j63jp83ljdqkrqglpys74yfh7p61sd0lqiwczgr5nqyc60rl";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/highlight-leading-spaces";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/74a4af76be764896cef169e24994630498cf19c1/recipes/highlight-leading-spaces";
sha256 = "0h2ww2vqmarghf4zg0wbwn0wgndmkcjy696mc885rwavck2dav4p";
name = "highlight-leading-spaces";
};
@@ -29276,7 +29770,7 @@
highlight-numbers = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, parent-mode }:
melpaBuild {
pname = "highlight-numbers";
- version = "20160516.1159";
+ version = "20160516.459";
src = fetchFromGitHub {
owner = "Fanael";
repo = "highlight-numbers";
@@ -29284,7 +29778,7 @@
sha256 = "083jmw9jaxj5d5f0b0gxxb0gjdi4dv1sm66559105slbkl2nsa3f";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/highlight-numbers";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/882e3a4877ddd22cc52f56f0ce3d55b6e4831c7a/recipes/highlight-numbers";
sha256 = "1bywrjv9ybr65mwkrxggb52jdqn16z8acgs5vqm0faq43an8i5yv";
name = "highlight-numbers";
};
@@ -29297,14 +29791,14 @@
highlight-operators = callPackage ({ fetchhg, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "highlight-operators";
- version = "20160517.2249";
+ version = "20160517.1549";
src = fetchhg {
url = "https://bitbucket.com/jpkotta/highlight-operators";
rev = "c06a29726f3e";
sha256 = "0fqfxwdz1xbc6dwxbjdhryvnvrb5vc38cq7c2yiz294mfzyn3l5s";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/highlight-operators";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/e7bd74b7a3484e437c6db4f18613744ebae030f5/recipes/highlight-operators";
sha256 = "00agrwp2i3mkacnp4qhqcnpwn5qlbj9qv97zrw7a7ldqga0vwvhn";
name = "highlight-operators";
};
@@ -29317,7 +29811,7 @@
highlight-parentheses = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "highlight-parentheses";
- version = "20151108.816";
+ version = "20151108.116";
src = fetchFromGitHub {
owner = "tsdh";
repo = "highlight-parentheses.el";
@@ -29325,7 +29819,7 @@
sha256 = "0kzqx1y6rr4ryxi2md9087saad4g4bzysckmp8272k521d46xa1r";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/highlight-parentheses";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/7fabdb05de9b8ec18a3a566f99688b50443b6b44/recipes/highlight-parentheses";
sha256 = "1d38wxk5bwblddr74crzwjwpgyr8zgcl5h5ilywg35jpv7n66lp5";
name = "highlight-parentheses";
};
@@ -29338,7 +29832,7 @@
highlight-quoted = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "highlight-quoted";
- version = "20140916.2022";
+ version = "20140916.1322";
src = fetchFromGitHub {
owner = "Fanael";
repo = "highlight-quoted";
@@ -29346,7 +29840,7 @@
sha256 = "1gq8inxfni9zgz2brqm4nlswgr8b0spq15wr532xfrgr456g10ks";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/highlight-quoted";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/93b5ba18e4bc31ca60aee9cb4674586cd8523bcf/recipes/highlight-quoted";
sha256 = "0x6gxi0jfxvpx7r1fm43ikxlxilnbk2xbhdy9xivhgmmdyqiqqkl";
name = "highlight-quoted";
};
@@ -29359,7 +29853,7 @@
highlight-stages = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "highlight-stages";
- version = "20150422.557";
+ version = "20150421.2257";
src = fetchFromGitHub {
owner = "zk-phi";
repo = "highlight-stages";
@@ -29367,7 +29861,7 @@
sha256 = "0gnr1dqkcmc9gfzqjaixh76g1kq7xp20mg1h6vl3c4na7nk6a3fg";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/highlight-stages";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/46884aa6588f55d6f688477a5e9f528f57673131/recipes/highlight-stages";
sha256 = "0r4kmjmrpi38q3y0q9h5xkxh7x728ha2nbnc152lzw6zfsxnm4x4";
name = "highlight-stages";
};
@@ -29380,7 +29874,7 @@
highlight-symbol = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "highlight-symbol";
- version = "20160102.2109";
+ version = "20160102.1409";
src = fetchFromGitHub {
owner = "nschum";
repo = "highlight-symbol.el";
@@ -29388,7 +29882,7 @@
sha256 = "19cgyk0sh8nsmf3jbi92i8qsdx4l4yilfq5jj9zfdbj9p5gvwx96";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/highlight-symbol";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/a6da3640b72496e2b32e6ed21aa39df87af9f7f3/recipes/highlight-symbol";
sha256 = "0gw8ffr64s58qdbvm034s1b9xz1hynzvbk8ld67j06fxpc98qaj4";
name = "highlight-symbol";
};
@@ -29400,13 +29894,13 @@
}) {};
highlight-tail = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild {
pname = "highlight-tail";
- version = "20140416.341";
+ version = "20140415.2041";
src = fetchurl {
url = "https://www.emacswiki.org/emacs/download/highlight-tail.el";
sha256 = "1bbiyqddqkrp3c7xsg1m4143611bhg1kkakrwscqjb4cfmx29qqg";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/highlight-tail";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/d033ff8cceb7e6d1e5a9f0ec7b706eb28bfe30f3/recipes/highlight-tail";
sha256 = "187kv3n262l38jdapi9bwcafz8fh61pdq2zliwiz7m7xdspp2iws";
name = "highlight-tail";
};
@@ -29419,7 +29913,7 @@
highlight-thing = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "highlight-thing";
- version = "20160221.142";
+ version = "20160220.1842";
src = fetchFromGitHub {
owner = "fgeller";
repo = "highlight-thing.el";
@@ -29427,7 +29921,7 @@
sha256 = "00s2nm0rfdgkpn2v9m36y0l42jyfah5hp5hd3bkwljgs99cp1ihk";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/highlight-thing";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/84b6cb403ff9a588771d051e472596f4e3cc974d/recipes/highlight-thing";
sha256 = "0rvdb1lx9xn9drqw0sw9ih759n10g7k0af39w6n8g0wfr67p96w1";
name = "highlight-thing";
};
@@ -29440,7 +29934,7 @@
highlight-unique-symbol = callPackage ({ deferred, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "highlight-unique-symbol";
- version = "20130612.742";
+ version = "20130612.42";
src = fetchFromGitHub {
owner = "hitode909";
repo = "emacs-highlight-unique-symbol";
@@ -29448,7 +29942,7 @@
sha256 = "0hhc2l4pz6q8injpplv6b5l08l8q2lnjdpwabp7gwmhraq54rhjx";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/highlight-unique-symbol";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/78b7caccef56cd2f1a9d8001417af52cc06d6573/recipes/highlight-unique-symbol";
sha256 = "0lwl8pkmq0q4dvyflarggnn8vzpvk5hhcnk508r6xml2if1sg9zx";
name = "highlight-unique-symbol";
};
@@ -29461,7 +29955,7 @@
highlight2clipboard = callPackage ({ fetchFromGitHub, fetchurl, htmlize, lib, melpaBuild }:
melpaBuild {
pname = "highlight2clipboard";
- version = "20151020.2040";
+ version = "20151020.1340";
src = fetchFromGitHub {
owner = "Lindydancer";
repo = "highlight2clipboard";
@@ -29469,7 +29963,7 @@
sha256 = "06nnqry36ncqacfzd8yvc4q59bwk3vgf9a14rkpph2hk2rfvq2m6";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/highlight2clipboard";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/87afa08061dc406528e7666cd4ee16995839b2d9/recipes/highlight2clipboard";
sha256 = "19r7abbpm31b0azf2v3xn0rjagg9h01i8g72qapp8dhqb4d9n9r0";
name = "highlight2clipboard";
};
@@ -29482,7 +29976,7 @@
hindent = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "hindent";
- version = "20151113.924";
+ version = "20151113.224";
src = fetchFromGitHub {
owner = "chrisdone";
repo = "hindent";
@@ -29490,7 +29984,7 @@
sha256 = "1y52fpqc85ihfbwcb2zy91dgg40jrjj8mmrf8h8s693442rj6ip3";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/hindent";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/dbae71a47446095f768be35e689025aed57f462f/recipes/hindent";
sha256 = "1f3vzgnqigwbwvglxv0ziz3kyp5dxjraw3vlghkpw39f57mky4xz";
name = "hindent";
};
@@ -29503,7 +29997,7 @@
hippie-exp-ext = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "hippie-exp-ext";
- version = "20160503.126";
+ version = "20160502.1826";
src = fetchFromGitHub {
owner = "rubikitch";
repo = "hippie-exp-ext";
@@ -29511,7 +30005,7 @@
sha256 = "141ikpyns1gd6kjply8m9jy9gifx5xdw5bn4p29hrxgiw994a78d";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/hippie-exp-ext";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/f8e4328cae9b4759a75da0b26ea8b68821bc71af/recipes/hippie-exp-ext";
sha256 = "142s7cmgjnqdmac21yps3b071sv18lw068kmxchyxb0zsa067g9l";
name = "hippie-exp-ext";
};
@@ -29524,7 +30018,7 @@
hippie-expand-slime = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "hippie-expand-slime";
- version = "20130907.1032";
+ version = "20130907.332";
src = fetchFromGitHub {
owner = "purcell";
repo = "hippie-expand-slime";
@@ -29532,7 +30026,7 @@
sha256 = "1l76r8hzhaapx76f6spm5jmjbrrm5zf79cpd5024xw3hpj1jbkjp";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/hippie-expand-slime";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/cae2ac3513e371a256be0f1a7468e38e686c2487/recipes/hippie-expand-slime";
sha256 = "0kxyv1lpkg33qgfv1jfqx03640py7525bcnc9dk98w6y6y92zf4m";
name = "hippie-expand-slime";
};
@@ -29545,7 +30039,7 @@
hippie-namespace = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "hippie-namespace";
- version = "20140508.2241";
+ version = "20140508.1541";
src = fetchFromGitHub {
owner = "rolandwalker";
repo = "hippie-namespace";
@@ -29553,7 +30047,7 @@
sha256 = "0b5wrid428s11afc48d6mdifmd31gmzyrj9zcpd3jwk63ydiihdc";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/hippie-namespace";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/c9db386ab3910940addae6e925b2ac17e64e0f87/recipes/hippie-namespace";
sha256 = "1bzjhq116ci9c9f0aw121fn3drmg2pw5ny1w6wcasa4p30syxxf0";
name = "hippie-namespace";
};
@@ -29566,7 +30060,7 @@
hipster-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "hipster-theme";
- version = "20141206.505";
+ version = "20141205.2205";
src = fetchFromGitHub {
owner = "xzerocode";
repo = "hipster-theme";
@@ -29574,7 +30068,7 @@
sha256 = "17dcpwx2y464g8qi3ixlsf3la8dn0bkxax296bhfg4vh73dxccl3";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/hipster-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/c18f56647858f8ae1811a3f0964728d222b6d2e1/recipes/hipster-theme";
sha256 = "1xrgpqlzp4lhh5h3sv7pg1nqzc9wcv1hs6ybv2h4x6jangicwfl2";
name = "hipster-theme";
};
@@ -29587,7 +30081,7 @@
history = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "history";
- version = "20150410.234";
+ version = "20150409.1934";
src = fetchFromGitHub {
owner = "boyw165";
repo = "history";
@@ -29595,7 +30089,7 @@
sha256 = "1dmrg39g0faqqkgrpcbybjbb91vcpkwawxsplckkj92y59zanq3x";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/history";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/f51d4cc6521546c99197adeb35459fcd53bd67d4/recipes/history";
sha256 = "0s8pcz53bk1w4h5847204vb6j838vr8za66ni1b2y4pas76zjr5g";
name = "history";
};
@@ -29608,7 +30102,7 @@
historyf = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "historyf";
- version = "20151124.259";
+ version = "20151123.1959";
src = fetchFromGitHub {
owner = "k1LoW";
repo = "emacs-historyf";
@@ -29616,7 +30110,7 @@
sha256 = "1y275fchhx0n6dv038hsr44a3bjghqdhc8j1dcpm2rvs8chgm8g0";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/historyf";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/a67279875c19475433fa13625c95ee5855962a59/recipes/historyf";
sha256 = "15pcaqfjpkfwcy46yqqw10q8kpw7aamcg0gr4frbdgzbv0yld08s";
name = "historyf";
};
@@ -29629,7 +30123,7 @@
hive = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, sql ? null }:
melpaBuild {
pname = "hive";
- version = "20131217.1612";
+ version = "20131217.912";
src = fetchFromGitHub {
owner = "r0man";
repo = "hive-el";
@@ -29637,7 +30131,7 @@
sha256 = "097lrj9lgfa7szww324hlqywwkbi31n1pxfqyg0zbfj45djkp9bx";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/hive";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/b167265dff60950823a5e98a299462b2b535b9a9/recipes/hive";
sha256 = "1marz8gmk824hb0nkhaw48d4qw1xjk1aad27gviya7f5ilypxrya";
name = "hive";
};
@@ -29650,7 +30144,7 @@
hiwin = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "hiwin";
- version = "20150825.1027";
+ version = "20150825.327";
src = fetchFromGitHub {
owner = "yoshida-mediba";
repo = "hiwin-mode";
@@ -29658,7 +30152,7 @@
sha256 = "177blksgncxpxd1zi9kmbcfjnpd3ll1szjxiyc4am8a6hs1dyyqk";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/hiwin";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/5f050fd2b1038dce05a1302d3670933546f86525/recipes/hiwin";
sha256 = "0klhxwxsz7xan2vsknw79r1dj4qhhjbfpddr67mk9qzccp8q0w8g";
name = "hiwin";
};
@@ -29671,7 +30165,7 @@
hl-anything = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "hl-anything";
- version = "20160422.1908";
+ version = "20160422.1208";
src = fetchFromGitHub {
owner = "hl-anything";
repo = "hl-anything-emacs";
@@ -29679,7 +30173,7 @@
sha256 = "10ps1rb5fqwaw4lz3nz2rbsry4y81asmi5557g229h8xjhp6gpnm";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/hl-anything";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/f38d26ede4e2e1d495a02c68e3b5041702b032e8/recipes/hl-anything";
sha256 = "0czpc82j5hbzprc66aall72lqnk38dxgpzx4rs8sbx95cag12dxa";
name = "hl-anything";
};
@@ -29691,13 +30185,13 @@
}) {};
hl-defined = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild {
pname = "hl-defined";
- version = "20151231.2238";
+ version = "20151231.1538";
src = fetchurl {
url = "https://www.emacswiki.org/emacs/download/hl-defined.el";
sha256 = "170sz6hjd85cw1x0y2g81ks3x3niib4f7y2xz6k8x0dpw357ggv3";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/hl-defined";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/a5d15f875b0080b12ce45cf696c581f6bbf061ba/recipes/hl-defined";
sha256 = "1y7vbhvpwxz70kja5hfm4i57mdd1cv43m4y9fr978y3nk265p8xx";
name = "hl-defined";
};
@@ -29710,7 +30204,7 @@
hl-indent = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "hl-indent";
- version = "20141227.2230";
+ version = "20141227.1530";
src = fetchFromGitHub {
owner = "ikirill";
repo = "hl-indent";
@@ -29718,7 +30212,7 @@
sha256 = "17apqs7yqd89mv5283kmwp7byaaimj7j0vis0z1d89jlmp8i6zbc";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/hl-indent";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/3aa6ce8f3d1349e28dd9dea8396c38257e3cea2f/recipes/hl-indent";
sha256 = "1z42kcwcyinjay65mv042ijh4xfaaiyri368g0sjw0fflsg0ikcr";
name = "hl-indent";
};
@@ -29730,13 +30224,13 @@
}) {};
hl-line-plus = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild {
pname = "hl-line-plus";
- version = "20151231.2239";
+ version = "20151231.1539";
src = fetchurl {
url = "https://www.emacswiki.org/emacs/download/hl-line+.el";
sha256 = "1kxq79pfs83gp12p2g093m6shsf25q88mi29bvhapxx77ahmxpkn";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/hl-line+";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/2d5d1cf2f29d46e8abd821095da86f137650a2ff/recipes/hl-line+";
sha256 = "13yv2nmx1wb80z4yifnh6d67rag17wirmp7z8ssq3havjl8lbpix";
name = "hl-line-plus";
};
@@ -29749,7 +30243,7 @@
hl-sentence = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "hl-sentence";
- version = "20140802.1820";
+ version = "20140802.1120";
src = fetchFromGitHub {
owner = "milkypostman";
repo = "hl-sentence";
@@ -29757,7 +30251,7 @@
sha256 = "0pjfbm8p077frk475bx8xkygn8r4vdsvnx4rcqbjlpjawj0ndgxs";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/hl-sentence";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/cae2ac3513e371a256be0f1a7468e38e686c2487/recipes/hl-sentence";
sha256 = "16sjfs0nnpwzj1cqfna9vhmxgznwwhb2qdmjci25hlgrdxwwyahs";
name = "hl-sentence";
};
@@ -29770,7 +30264,7 @@
hl-sexp = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "hl-sexp";
- version = "20101130.1343";
+ version = "20101130.643";
src = fetchFromGitHub {
owner = "emacsmirror";
repo = "hl-sexp";
@@ -29778,7 +30272,7 @@
sha256 = "1fsyj9cmqcz5nfxsfcyvpq2vqrhgl99xvq7ligviawl3x77376kw";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/hl-sexp";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/48b99dd60dda3039a0e1e71bb4b796d62340279e/recipes/hl-sexp";
sha256 = "0kg0m20i9ylphf4w0qcvii8yp65abdl2q5flyphilk0jahwbj9jy";
name = "hl-sexp";
};
@@ -29790,13 +30284,13 @@
}) {};
hl-spotlight = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild {
pname = "hl-spotlight";
- version = "20151231.2240";
+ version = "20151231.1540";
src = fetchurl {
url = "https://www.emacswiki.org/emacs/download/hl-spotlight.el";
sha256 = "0m84d1rdsp9r5ip79jlrp69pf1daw0ch8c378q3kc328606i3p2d";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/hl-spotlight";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/adb008d2da35dbd3fca63555f04dd8a0009380c6/recipes/hl-spotlight";
sha256 = "1166g27fp2pj4j3a8904pzvp5idlq4l22i0w6lbk5c9zh5pqyyf3";
name = "hl-spotlight";
};
@@ -29809,15 +30303,15 @@
hl-todo = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "hl-todo";
- version = "20160521.1629";
+ version = "20160606.915";
src = fetchFromGitHub {
owner = "tarsius";
repo = "hl-todo";
- rev = "954ab8390b627499248986a608aacfaa6ddae4e0";
- sha256 = "0rvkkzbcf36jbnk8adn39gmv0c8m0a189q9s235nasmbry8pjqmg";
+ rev = "dff381a5b2c9235bbdbe32123751ecdf17df7432";
+ sha256 = "0r2xyljcvhh547mkx7h9diajc21l6lpwjwpklc3h7491zazv3s6r";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/hl-todo";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/7c262f6a1a10e8b3cc30151cad2e34ceb66c6ed7/recipes/hl-todo";
sha256 = "1iyh68xwldj1r02blar5zi01wnb90dkbmi67vd6h78ksghl3z9j4";
name = "hl-todo";
};
@@ -29830,7 +30324,7 @@
hlint-refactor = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "hlint-refactor";
- version = "20151124.2141";
+ version = "20151124.1441";
src = fetchFromGitHub {
owner = "mpickering";
repo = "hlint-refactor-mode";
@@ -29838,7 +30332,7 @@
sha256 = "02mkfrs55d32948x739f94v35343gw6a0f7fknbcigbz56mzsvsp";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/hlint-refactor";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/79363587b07f68e30a98698fd33ab39153bcb06c/recipes/hlint-refactor";
sha256 = "1311z6y7ycwx0mj67bya7a39j5hiypg72y6yg93dhgpk23wk7frq";
name = "hlint-refactor";
};
@@ -29851,7 +30345,7 @@
hlinum = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "hlinum";
- version = "20160522.612";
+ version = "20160521.2312";
src = fetchFromGitHub {
owner = "tom-tan";
repo = "hlinum-mode";
@@ -29859,7 +30353,7 @@
sha256 = "1yfq55gzg6p17qbd9xf0g9cza5bzkvl47rkjq19mf6kjxk0ihkh7";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/hlinum";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/41bca7b89a7ce52d4c9381b9a4046b7103996c4f/recipes/hlinum";
sha256 = "04b6m0njr7yrbcbpkhqz4hmqpfacmyca3lw75dyw3vpjpsj2g0iv";
name = "hlinum";
};
@@ -29872,14 +30366,14 @@
hoa-mode = callPackage ({ fetchgit, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "hoa-mode";
- version = "20151203.1750";
+ version = "20151203.1050";
src = fetchgit {
url = "https://gitlab.lrde.epita.fr/spot/emacs-modes.git";
rev = "3c608e15b655d2375c5f81323ac561c7848dc029";
- sha256 = "1s3wgsgl1min2zbfr6wacb7wnff95r8kgmfzlma8b02440cmch5z";
+ sha256 = "19360wx1i7lkr8igddm7zl9yh5hlm3r013rkd512cs18iz1y753x";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/hoa-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/f8b91f35d06f9e7e17c9aaf2fb9ee43a77257113/recipes/hoa-mode";
sha256 = "06rfqn7sqvmgpvwhfmk17qqs4q0frfzhm597z3p1q7kys2035kiv";
name = "hoa-mode";
};
@@ -29892,7 +30386,7 @@
hoa-pp-mode = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, names }:
melpaBuild {
pname = "hoa-pp-mode";
- version = "20151027.836";
+ version = "20151027.236";
src = fetchFromGitHub {
owner = "hoaproject";
repo = "Contributions-Emacs-Pp";
@@ -29900,7 +30394,7 @@
sha256 = "0g2r4d0ivbadqw1k8jsv0jwv8krpfahsg0qmzyi909p2yfddqk1l";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/hoa-pp-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/0c0d707dad9dc86bb3d6a829a60e21e92a5f3160/recipes/hoa-pp-mode";
sha256 = "01ijfn0hd645j6j88rids5dsanmzwmky37slf50yqffnv69jwvla";
name = "hoa-pp-mode";
};
@@ -29913,15 +30407,15 @@
homebrew-mode = callPackage ({ dash, emacs, fetchFromGitHub, fetchurl, inf-ruby, lib, melpaBuild }:
melpaBuild {
pname = "homebrew-mode";
- version = "20160406.1825";
+ version = "20160615.820";
src = fetchFromGitHub {
owner = "dunn";
repo = "homebrew-mode";
- rev = "11e952b9fd9c7aa9c18933f7605cd10bac31e227";
- sha256 = "0yh9v5zng1j2kfjjadfkdds67jws79q52kvl2mx9s8mq28263idm";
+ rev = "d422307aee2f897d1a92e3b959c3214bc54cbe38";
+ sha256 = "1z4d0niz8q24f2z8rnfnc2rlmkffkf7qc57qn4695jbkzb7galfz";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/homebrew-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/1e4007f6d15574098722fb427b6a9903f77afb21/recipes/homebrew-mode";
sha256 = "088wc5fq4r5yj1nbh7mriyqf0xwqmbxvblj9d2wwrkkdm5flc8mj";
name = "homebrew-mode";
};
@@ -29934,7 +30428,7 @@
hookify = callPackage ({ dash, fetchFromGitHub, fetchurl, lib, melpaBuild, s }:
melpaBuild {
pname = "hookify";
- version = "20141216.2309";
+ version = "20141216.1609";
src = fetchFromGitHub {
owner = "Silex";
repo = "hookify";
@@ -29942,7 +30436,7 @@
sha256 = "1d3dlkrv95xrpv4rv3jgn58mxs71f6vi2lr88bddhxz702vb11d8";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/hookify";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/aa04ccd0ac05beed5de8d51ed96ccbf0071fdea1/recipes/hookify";
sha256 = "0prls539ifk2fsqklcxmbrwmgbm9hya50z486d7sw426lh648qmy";
name = "hookify";
};
@@ -29955,7 +30449,7 @@
hound = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild, web }:
melpaBuild {
pname = "hound";
- version = "20150217.1849";
+ version = "20150217.1149";
src = fetchFromGitHub {
owner = "ryoung786";
repo = "hound.el";
@@ -29963,7 +30457,7 @@
sha256 = "1gm5nczq5lsxqkfb38ajffg65zwxkfqvqhk33bwnnd00rpa1ix6j";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/hound";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/90cfc34eb4e8be7bf887533b85feba91131a435b/recipes/hound";
sha256 = "0qri6bddd3c4sqvaqvmqw6xg46vwlfi1by3gc9i3izpq4xl1cr1v";
name = "hound";
};
@@ -29976,7 +30470,7 @@
how-many-lines-in-project = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "how-many-lines-in-project";
- version = "20140807.642";
+ version = "20140806.2342";
src = fetchFromGitHub {
owner = "hiddenlotus";
repo = "how-many-lines-in-project";
@@ -29984,7 +30478,7 @@
sha256 = "0vygbdjy2dv7n50vrkcnqyswq48sgas0zzjfsac8x5g9vhxjkawj";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/how-many-lines-in-project";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/7fabdb05de9b8ec18a3a566f99688b50443b6b44/recipes/how-many-lines-in-project";
sha256 = "1dfh1ydpjbrawqpsj6kydvy8sz3rlwn4ma5cizfw5spd2gcmj1zb";
name = "how-many-lines-in-project";
};
@@ -29997,7 +30491,7 @@
howdoi = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "howdoi";
- version = "20150204.143";
+ version = "20150203.1843";
src = fetchFromGitHub {
owner = "atykhonov";
repo = "emacs-howdoi";
@@ -30005,7 +30499,7 @@
sha256 = "01sj9c8mxqaif8wh6zz9v2czjaq7vcdi66drldyjmifkln6rg2v8";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/howdoi";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/d08f4d6c8bdf16f47d2474f92273fd214179cb18/recipes/howdoi";
sha256 = "12vgbypawxhhrnjp8dgh0wrcp7pvjccfaxw4yhq7msai7ik3h83b";
name = "howdoi";
};
@@ -30018,14 +30512,14 @@
howm = callPackage ({ cl-lib ? null, fetchgit, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "howm";
- version = "20160405.1418";
+ version = "20160405.718";
src = fetchgit {
url = "git://git.osdn.jp/gitroot/howm/howm.git";
rev = "6d6b4ca60e5c164a3e284ba82156b8ae33e83b7a";
- sha256 = "0q9rjy8i263d6fcyj0s1l95s7vajf15i2fkbkbmhh4rp63nd04g3";
+ sha256 = "1ib97y2vm8whd2rqb8kgh0fk54mk3qjmij05bzmz4njz0k9crwgd";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/howm";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/b4f66d7b6835d06b8e7451aec9e32bb9288a6020/recipes/howm";
sha256 = "007r8mjn7m7m1mvsb1gaiqbizlwykh23k72g48nwan8bw556gfcr";
name = "howm";
};
@@ -30038,7 +30532,7 @@
ht = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "ht";
- version = "20150830.2015";
+ version = "20150830.1315";
src = fetchFromGitHub {
owner = "Wilfred";
repo = "ht.el";
@@ -30046,7 +30540,7 @@
sha256 = "17x5w5kzam8cgaphyasnqzm2yhc0hwm38azvmin7ra4h912vlisd";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ht";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/6c7589bca1c1dfcc0fe76779f6847fda946ab981/recipes/ht";
sha256 = "16vmxksannn2wyn8r44jbkdp19jvz1bg57ggbs1vn0yi7nkanwbd";
name = "ht";
};
@@ -30059,7 +30553,7 @@
html-check-frag = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "html-check-frag";
- version = "20160131.635";
+ version = "20160130.2335";
src = fetchFromGitHub {
owner = "TobiasZawada";
repo = "html-check-frag";
@@ -30067,7 +30561,7 @@
sha256 = "10lbxf56gvy26grzrhhx2p710fzs0h866jd2zmmgkisvyb0vaiay";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/html-check-frag";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/a53c9877f6f4c4e72c565fb8bd7cbe81ddbc565c/recipes/html-check-frag";
sha256 = "0drancb9ryifiln44b40l6cal0c7nyp597a6q26288s3v909yk2a";
name = "html-check-frag";
};
@@ -30080,7 +30574,7 @@
html-script-src = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "html-script-src";
- version = "20120403.2015";
+ version = "20120403.1315";
src = fetchFromGitHub {
owner = "rejeep";
repo = "html-script-src.el";
@@ -30088,7 +30582,7 @@
sha256 = "0k9ga0qi6h33akip2vrpclfp4zljnbw5ax40lxyxc1813hwkdrmh";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/html-script-src";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/7fabdb05de9b8ec18a3a566f99688b50443b6b44/recipes/html-script-src";
sha256 = "0pdyc2a9wxxc9rivjm2kgh4ysdxmdp73wg37nfy2nzka1m7qni7j";
name = "html-script-src";
};
@@ -30101,7 +30595,7 @@
html-to-markdown = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "html-to-markdown";
- version = "20151105.940";
+ version = "20151105.240";
src = fetchFromGitHub {
owner = "Malabarba";
repo = "html-to-markdown";
@@ -30109,7 +30603,7 @@
sha256 = "09n3zm9ivln8ng80fv5vwwzh9mj355ni685axda3m85xfxgai8gi";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/html-to-markdown";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/1e6aed365c42987d64d0cd9a8a6178339b1b39e8/recipes/html-to-markdown";
sha256 = "1gjh9ndqsb3nfb7w5h7carjckkgy6qh63b4mg141j19dsyx9rrjv";
name = "html-to-markdown";
};
@@ -30121,14 +30615,14 @@
}) {};
htmlize = callPackage ({ fetchgit, fetchurl, lib, melpaBuild }: melpaBuild {
pname = "htmlize";
- version = "20130207.2102";
+ version = "20130207.1402";
src = fetchgit {
url = "http://fly.srk.fer.hr/~hniksic/emacs/htmlize.git";
rev = "aa6e2f6dba6fdfa200c7c55efe29ff63380eac8f";
- sha256 = "0lc2j0zifjwzab2khwmd769i5497ddx28rb96y6zv2k261xziyla";
+ sha256 = "1vkqxgirc82vc44g7xhhr041arf93yirjin3h144kjyfkgkplnkp";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/htmlize";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/8a72ad91f62c1ac3cae212a53acd6dd7c88526c2/recipes/htmlize";
sha256 = "15pym76iwqb1dqkbmkgc1yar450g2xinfl89fyss2ifyi4am1nxp";
name = "htmlize";
};
@@ -30141,15 +30635,15 @@
http = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, request }:
melpaBuild {
pname = "http";
- version = "20160524.217";
+ version = "20160701.2225";
src = fetchFromGitHub {
owner = "emacs-pe";
repo = "http.el";
- rev = "fa252e1acb7e76cbdbadf855cf8d5d4f0e30127b";
- sha256 = "09cq2s496p99c4n9y6awqs65w445if0zjxps2dcyn5s308h7gm9h";
+ rev = "5a85cb63ff8c25031c7a21f9ec7063a4ccfac547";
+ sha256 = "18b8xf01n0mjshw7a4y1y3gzmag3lv9y64jyfb0dbx99xlxvvdv8";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/http";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/c7c63aaf27240706d84e464881d40cfb7cbe9ee3/recipes/http";
sha256 = "1176jhm8m7s1pzp0zv1sqawcgn4m5zvxghypmsrjyyb5p7m6dalm";
name = "http";
};
@@ -30161,13 +30655,13 @@
}) {};
http-post-simple = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild {
pname = "http-post-simple";
- version = "20131011.558";
+ version = "20131010.2258";
src = fetchurl {
url = "https://www.emacswiki.org/emacs/download/http-post-simple.el";
sha256 = "1wp2rwc1hgd5c3yr6b96yzzakd1qmy5d95mhc6q4f6lx279nx0my";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/http-post-simple";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/4d1df16d1c429c46ea5555021ce84d050007adfb/recipes/http-post-simple";
sha256 = "1b2fh0hp5z3712ncgc5ns1f3sww84khkq7zb3k9xclsp1p12a4cf";
name = "http-post-simple";
};
@@ -30180,7 +30674,7 @@
http-twiddle = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "http-twiddle";
- version = "20151121.1444";
+ version = "20151121.744";
src = fetchFromGitHub {
owner = "hassy";
repo = "http-twiddle";
@@ -30188,7 +30682,7 @@
sha256 = "008iq5fhsw4qklw2l457a1cfqq8diadpnf1c1di5p07sc0za5562";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/http-twiddle";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/56e6078d42cfefbe3f0731952f67afd7f6e9a92e/recipes/http-twiddle";
sha256 = "153qavpcwvk2g15w5a814xjsnsv54xksx4iz6yjffvvzq14a08ry";
name = "http-twiddle";
};
@@ -30201,7 +30695,7 @@
httpcode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "httpcode";
- version = "20121002.545";
+ version = "20121001.2245";
src = fetchFromGitHub {
owner = "rspivak";
repo = "httpcode.el";
@@ -30209,7 +30703,7 @@
sha256 = "02jz8qwxl69zhwvpmlqc15znr8x4f30paqszmm7xrrrz5x1c1rn4";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/httpcode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/906da23e26d44f8c71ba57ab59bb089caea673a9/recipes/httpcode";
sha256 = "05k1al1j119x6zf03p7jn2r9qql33859583nbf85k41bhicknpgh";
name = "httpcode";
};
@@ -30222,7 +30716,7 @@
httprepl = callPackage ({ dash, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, s }:
melpaBuild {
pname = "httprepl";
- version = "20141101.1834";
+ version = "20141101.1234";
src = fetchFromGitHub {
owner = "gregsexton";
repo = "httprepl.el";
@@ -30230,7 +30724,7 @@
sha256 = "0wd4wmy99mx677x4sdbp57bxxll1fsnnf8hk97r85xdmmjsmrkld";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/httprepl";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/c49824f6e2dc2f3482e607c2d3a1e2d7685bf688/recipes/httprepl";
sha256 = "0899qb1yfnsyf04hhvnk47qnq4d1f4vd5ghj43x4743wd2b9qawh";
name = "httprepl";
};
@@ -30243,7 +30737,7 @@
hungry-delete = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "hungry-delete";
- version = "20151203.2214";
+ version = "20151203.1514";
src = fetchFromGitHub {
owner = "nflath";
repo = "hungry-delete";
@@ -30251,7 +30745,7 @@
sha256 = "1vy521ljn16a1lcmpj09mr9y0m15lfjhl6xk04sb7nisps3vljyl";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/hungry-delete";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/e33960d9b7e24f830ebe4e5a26a562422d52fe97/recipes/hungry-delete";
sha256 = "0hcsm3yndkyfqzb77ibx7df6bjppc34x5yabi6nd389pdscp9rpz";
name = "hungry-delete";
};
@@ -30264,7 +30758,7 @@
hy-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "hy-mode";
- version = "20151025.1343";
+ version = "20151025.743";
src = fetchFromGitHub {
owner = "hylang";
repo = "hy-mode";
@@ -30272,7 +30766,7 @@
sha256 = "0wn83n1780bvrzx9p870wln51n9rfdghsxl79dp968dxycyhyxvj";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/hy-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/fc9ab5cf16b61bb27559cd8ec5cf665a5aab2154/recipes/hy-mode";
sha256 = "1vxrqla3p82x7s3kn7x4h33vcdfms21srxgxzidr02k37f0vi82m";
name = "hy-mode";
};
@@ -30285,7 +30779,7 @@
hyai = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "hyai";
- version = "20160320.235";
+ version = "20160319.2035";
src = fetchFromGitHub {
owner = "iquiw";
repo = "hyai";
@@ -30293,7 +30787,7 @@
sha256 = "0k7r5zddlfipnf6za467lmjx8s6h68dflj7gk05vqr4n4xniwgja";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/hyai";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/1dd9bd1cfd2f3b760b664a4677b0e4e617cbdfa6/recipes/hyai";
sha256 = "00ns7q5b11c5amwkq11fs4p5vrmdfmjljfrcxbwb39gc12yrhn7s";
name = "hyai";
};
@@ -30306,7 +30800,7 @@
hydandata-light-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "hydandata-light-theme";
- version = "20160123.253";
+ version = "20160122.1953";
src = fetchFromGitHub {
owner = "hydandata";
repo = "hydandata-light-theme";
@@ -30314,7 +30808,7 @@
sha256 = "11vgz64f8vs8vqp4scj9qvrfdshag7bs615ly9zvzzlk68jivdya";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/hydandata-light-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/413c617f15947782891159a240e0c9014f1f7d11/recipes/hydandata-light-theme";
sha256 = "0jw43m91m10ifqg335y6d52r6ri77hcmxkird8wsyrpsnk3cfb60";
name = "hydandata-light-theme";
};
@@ -30327,7 +30821,7 @@
hyde = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "hyde";
- version = "20160508.508";
+ version = "20160507.2208";
src = fetchFromGitHub {
owner = "nibrahim";
repo = "Hyde";
@@ -30335,7 +30829,7 @@
sha256 = "14sk9gai7sscvwgbl7y3dzz8fdhrqynilscmdimlncpm15w56m6i";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/hyde";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/151f5c1097e5020dbc13e41f2657aae781c5942b/recipes/hyde";
sha256 = "18kjcxm7qmv9bfh4crw37zgax8khjqs9zkp4lrb490zlad2asbs3";
name = "hyde";
};
@@ -30348,15 +30842,15 @@
hydra = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "hydra";
- version = "20160518.1621";
+ version = "20160702.229";
src = fetchFromGitHub {
owner = "abo-abo";
repo = "hydra";
- rev = "d2aaf869ecba10664e1fa8abd69689f941e3b8f8";
- sha256 = "05d4h87hshfgr8wnfmdypr4a93sglk3a8z1nfvswlag8cgnvyz63";
+ rev = "91f8e7c13bcd9629ad1678588e58576ca6806b58";
+ sha256 = "1czdar4yv5c9996wvj887d0c1knlrpcjj0aq2dily2x074gdzh4j";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/hydra";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/a4375d8ae519290fd5018626b075c226016f951d/recipes/hydra";
sha256 = "1c59l43p39ins3dn9690gm6llwm4b9p0pk78lip0dwlx736drdbw";
name = "hydra";
};
@@ -30369,7 +30863,7 @@
i2b2-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "i2b2-mode";
- version = "20140710.304";
+ version = "20140709.2004";
src = fetchFromGitHub {
owner = "danlamanna";
repo = "i2b2-mode";
@@ -30377,7 +30871,7 @@
sha256 = "17k41rah17l9kf7bvlm83x71nzz4aizgn7254cl5sb59mdhcm8pm";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/i2b2-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/f050a5b4bc18839a8d945c0799d0c0e239fa6864/recipes/i2b2-mode";
sha256 = "172qnprmfliic3rszzg3g7q015i3dchd23skrbdikg0kxj5c57lf";
name = "i2b2-mode";
};
@@ -30390,7 +30884,7 @@
iasm-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "iasm-mode";
- version = "20131005.144";
+ version = "20131004.1844";
src = fetchFromGitHub {
owner = "RAttab";
repo = "iasm-mode";
@@ -30398,7 +30892,7 @@
sha256 = "1gl21li9vqfjvls4ffjw8a4bicas2c7hmaa621k3hpllgpy6qdg5";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/iasm-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/5c230ec10eb62d1b3f6df10c05c5dbc2e25d4507/recipes/iasm-mode";
sha256 = "09xh41ayaha07fi5crk3c6pn17gwm3samsf6h71ldkywvz74kipv";
name = "iasm-mode";
};
@@ -30411,7 +30905,7 @@
ibuffer-git = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "ibuffer-git";
- version = "20110508.931";
+ version = "20110508.231";
src = fetchFromGitHub {
owner = "jrockway";
repo = "ibuffer-git";
@@ -30419,7 +30913,7 @@
sha256 = "1s5qvlf310b0z7q9k1xhcf4qmyfqd37jpqd67ciahaxk7cp224rd";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ibuffer-git";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/d341da1b9bac782c75ab931fd53a9525a85c702e/recipes/ibuffer-git";
sha256 = "048888y07bzmi9x5i43fg6bgqbzdqi3nfjfnn6zr29jvlx366r5z";
name = "ibuffer-git";
};
@@ -30432,7 +30926,7 @@
ibuffer-projectile = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, projectile }:
melpaBuild {
pname = "ibuffer-projectile";
- version = "20150121.1737";
+ version = "20150121.1037";
src = fetchFromGitHub {
owner = "purcell";
repo = "ibuffer-projectile";
@@ -30440,7 +30934,7 @@
sha256 = "1zcnp61c9cp2kvns3v499hifk072rxm4rhw4pvdv2mm966vcxzvc";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ibuffer-projectile";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/363a6a888945f2c8b02f5715539439ba744d737d/recipes/ibuffer-projectile";
sha256 = "1qh4krggmsc6lx5mg60n8aakmi3f6ppl1gw094vfcsni96jl34fk";
name = "ibuffer-projectile";
};
@@ -30453,7 +30947,7 @@
ibuffer-rcirc = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "ibuffer-rcirc";
- version = "20150215.2218";
+ version = "20150215.1518";
src = fetchFromGitHub {
owner = "fgallina";
repo = "ibuffer-rcirc";
@@ -30461,7 +30955,7 @@
sha256 = "15lapyj7qkkw1i1g1aizappm7gxkfnxhvd4fq66lghkzb76clz2m";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ibuffer-rcirc";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/d8bcf68d54fce13fcb0fb0ae0b6aa975e8127a1f/recipes/ibuffer-rcirc";
sha256 = "1y6pyc6g8j42hs103yynjsdkkxvcq0q4xsz4r93rqwsr3za3wcmc";
name = "ibuffer-rcirc";
};
@@ -30474,7 +30968,7 @@
ibuffer-tramp = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "ibuffer-tramp";
- version = "20151118.1839";
+ version = "20151118.1139";
src = fetchFromGitHub {
owner = "svend";
repo = "ibuffer-tramp";
@@ -30482,7 +30976,7 @@
sha256 = "1mfrbr725p27p3s5nxh7xhm81pdr78ysz8l3kwrlp97bb6dmljmq";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ibuffer-tramp";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/a1a7449b15cb2a89cf06ea3de2cfdc6bc387db3b/recipes/ibuffer-tramp";
sha256 = "11a9b9g1jk2r3fldi012zka4jzy68kfn4991xp046qm2fbc7la32";
name = "ibuffer-tramp";
};
@@ -30495,7 +30989,7 @@
ibuffer-vc = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "ibuffer-vc";
- version = "20150714.2220";
+ version = "20150714.1520";
src = fetchFromGitHub {
owner = "purcell";
repo = "ibuffer-vc";
@@ -30503,7 +30997,7 @@
sha256 = "0fwxhkx5rkyv3w5vs2swhmly9siahlww2ipsmk7v8xmvk4a63bhp";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ibuffer-vc";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/cae2ac3513e371a256be0f1a7468e38e686c2487/recipes/ibuffer-vc";
sha256 = "0bn5qyiq07cgzci10xl57ss5wsk7bfhi3hjq2v6yvpy9v704dvla";
name = "ibuffer-vc";
};
@@ -30515,13 +31009,13 @@
}) {};
icicles = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild {
pname = "icicles";
- version = "20160530.146";
+ version = "20160701.1122";
src = fetchurl {
url = "https://www.emacswiki.org/emacs/download/icicles.el";
- sha256 = "1ppximw1j433hfp63apnsz9wgq1nj1lh5cd0zfchrkmgfyhymq7k";
+ sha256 = "0x082kilmzq26f9pwwbq2bid98s9mjyfwljcwz2qlj8fbihwjn6l";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/icicles";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/ca7bf43ef8893bf04e9658390e306ef69e80a156/recipes/icicles";
sha256 = "15h2511gm38q14avsd86j5mnxhsjvcdmwbnhj66ashj5p5nxhr92";
name = "icicles";
};
@@ -30533,13 +31027,13 @@
}) {};
icomplete-plus = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild {
pname = "icomplete-plus";
- version = "20151231.2300";
+ version = "20151231.1600";
src = fetchurl {
url = "https://www.emacswiki.org/emacs/download/icomplete+.el";
sha256 = "0z7v4pj0m6pwrjzyzz2xmwf6a53kmka9hxlzd1dxcpzx47pyvz3w";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/icomplete+";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/fade28733f33e52a8622479de201f451c9a31c11/recipes/icomplete+";
sha256 = "0gxqkj4bjrxb046qisfz22wvanxx6bzl4hfv91rfwm78q3484slx";
name = "icomplete-plus";
};
@@ -30552,7 +31046,7 @@
id-manager = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "id-manager";
- version = "20160425.1116";
+ version = "20160425.416";
src = fetchFromGitHub {
owner = "kiwanami";
repo = "emacs-id-manager";
@@ -30560,7 +31054,7 @@
sha256 = "0xd0zhbabb9cx4rsapvq6qs40w4q2cav6p16vrka54rmr98544vl";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/id-manager";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/64a61b3801a0cafec87b1875eaec5950746f716d/recipes/id-manager";
sha256 = "13g5fi06hvx0x2wn1d1d8rkfq5n6wbk9g5bhx2b5sar2yw0akmwm";
name = "id-manager";
};
@@ -30573,7 +31067,7 @@
idea-darkula-theme = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "idea-darkula-theme";
- version = "20160417.103";
+ version = "20160416.1803";
src = fetchFromGitHub {
owner = "fourier";
repo = "idea-darkula-theme";
@@ -30581,7 +31075,7 @@
sha256 = "1hknhbm3b5rsba2s84iwspylhzjsm91zdckz22j9gyrq37wjgyrr";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/idea-darkula-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/abf27cce70443010f996b5577d71fe78f7eab6fb/recipes/idea-darkula-theme";
sha256 = "0lanhwlhd7pbzjc047vd5sgsmi2bx66gr3inr8y57swgrfw3l8sk";
name = "idea-darkula-theme";
};
@@ -30594,7 +31088,7 @@
identica-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "identica-mode";
- version = "20130204.2353";
+ version = "20130204.1653";
src = fetchFromGitHub {
owner = "gabrielsaldana";
repo = "Emacs-Identica-mode";
@@ -30602,7 +31096,7 @@
sha256 = "047gzycr49cs8wlmm9j4ry7b7jxmfhmbayx6rbbxs49lba8dgwlk";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/identica-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/812b7c1fbc435f0530b7f66a1e65f62f5f00da01/recipes/identica-mode";
sha256 = "1r69ylykjap305g23cry4wajiqhpgw08nw3b5d9i1y3mwx0j253q";
name = "identica-mode";
};
@@ -30615,7 +31109,7 @@
idle-highlight-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "idle-highlight-mode";
- version = "20120920.1848";
+ version = "20120920.1148";
src = fetchFromGitHub {
owner = "nonsequitur";
repo = "idle-highlight-mode";
@@ -30623,7 +31117,7 @@
sha256 = "0x4w1ksrw7dicl84zpf4d4scg672dyan9g95jkn6zvri0lr8xciv";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/idle-highlight-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/cae2ac3513e371a256be0f1a7468e38e686c2487/recipes/idle-highlight-mode";
sha256 = "1i5ky61bq0dpk71yasfpjhsrv29mmp9nly9f5xxin7gz3x0f36fc";
name = "idle-highlight-mode";
};
@@ -30636,7 +31130,7 @@
idle-require = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "idle-require";
- version = "20090716.3";
+ version = "20090715.1703";
src = fetchFromGitHub {
owner = "nschum";
repo = "idle-require.el";
@@ -30644,7 +31138,7 @@
sha256 = "0f8rxvc3dk2hi4x524l18fx73xrxy0qqwbybdma4ca67ck9n6xam";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/idle-require";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/7bdccd978644a6de9de1da0cf42304f748622885/recipes/idle-require";
sha256 = "1lr330bqj4rfh2jgn3562sliani4yw5y4j2hr6cq9cfjjp18qgsj";
name = "idle-require";
};
@@ -30657,7 +31151,7 @@
ido-at-point = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "ido-at-point";
- version = "20151021.957";
+ version = "20151021.257";
src = fetchFromGitHub {
owner = "katspaugh";
repo = "ido-at-point";
@@ -30665,7 +31159,7 @@
sha256 = "1bii7vj8pmmijcpvq3a1scky4ais7k6d7zympb3m9dmz355m9rpp";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ido-at-point";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/6ffbfa66c4284a134265efc606fdc7652b0a7f75/recipes/ido-at-point";
sha256 = "0jpgq2iiwgqifwdhwhqv0cd3lp846pdqar6rxqgw9fvvb8bijqm0";
name = "ido-at-point";
};
@@ -30678,7 +31172,7 @@
ido-clever-match = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "ido-clever-match";
- version = "20151011.1926";
+ version = "20151011.1226";
src = fetchFromGitHub {
owner = "Bogdanp";
repo = "ido-clever-match";
@@ -30686,7 +31180,7 @@
sha256 = "14nmldahr0pj2x4vkzpnpx0bsxafmiihgjylk5j5linqvy8q6wk6";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ido-clever-match";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/add68b4815cdfe83402b217595a4a46068f83a2a/recipes/ido-clever-match";
sha256 = "081i6cjvqyfpgj0nvzc94zrl2v3l6nv6mhfda4zf7c8qqbvx1m8m";
name = "ido-clever-match";
};
@@ -30699,7 +31193,7 @@
ido-complete-space-or-hyphen = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "ido-complete-space-or-hyphen";
- version = "20130228.1108";
+ version = "20130228.408";
src = fetchFromGitHub {
owner = "doitian";
repo = "ido-complete-space-or-hyphen";
@@ -30707,7 +31201,7 @@
sha256 = "1aih8n10lcrw0bdgvlrkxzhkpxpmphw07cvbp6zd27ia25037fzw";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ido-complete-space-or-hyphen";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/59e11094068d3a0c0e4edc1f82158c43d3b15e0e/recipes/ido-complete-space-or-hyphen";
sha256 = "1wk0cq5gjnprmpyvhh80ksz3fash42hckvmx8m95crbzjg9j0gbc";
name = "ido-complete-space-or-hyphen";
};
@@ -30720,15 +31214,15 @@
ido-completing-read-plus = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "ido-completing-read-plus";
- version = "20160320.738";
+ version = "20160623.1015";
src = fetchFromGitHub {
owner = "DarwinAwardWinner";
repo = "ido-ubiquitous";
- rev = "7354d985d4f529877bd8dcb782940e3e87cf36b2";
- sha256 = "13mcpc8qlv0mvabd33cah1zqybfa0hrzanp16ikbsc449zyz3889";
+ rev = "950afaed5d36fc4447dd3a517ddb0dd281d8aaf6";
+ sha256 = "0gk1bkllzs3fil2fcj3iha43y43370sgrrs5r6j7hzyhnxqmp965";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ido-completing-read+";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/4a227a6d44f1981e8a3f73b253d2c33eb18ef72f/recipes/ido-completing-read+";
sha256 = "034j1q47d57ia5bwbf1w66gw6c7aqbhscpy3dg2a71lwjzfmshwh";
name = "ido-completing-read-plus";
};
@@ -30741,7 +31235,7 @@
ido-describe-bindings = callPackage ({ dash, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "ido-describe-bindings";
- version = "20160105.953";
+ version = "20160105.253";
src = fetchFromGitHub {
owner = "danil";
repo = "ido-describe-bindings";
@@ -30749,7 +31243,7 @@
sha256 = "0055dda1la7yah33xsi19j4hcdmqp17ily2dvkipm4y6d3ww8yqa";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ido-describe-bindings";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/31b8e255630f1348a5b5730f7b624ad550d219ad/recipes/ido-describe-bindings";
sha256 = "1lsa09h025vd908r9q571iq2ia0zdpnq04mlihb3crpp5v9n9ws2";
name = "ido-describe-bindings";
};
@@ -30762,7 +31256,7 @@
ido-exit-target = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "ido-exit-target";
- version = "20150904.1637";
+ version = "20150904.937";
src = fetchFromGitHub {
owner = "waymondo";
repo = "ido-exit-target";
@@ -30770,7 +31264,7 @@
sha256 = "1s93q47cadanynvm1y4y08s68yq0l8q8vfasdk7w39vrjsxxsj3x";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ido-exit-target";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/b815e7492eb0bd39c5d1be5a95784f9fe5612b62/recipes/ido-exit-target";
sha256 = "17vmg47xwk6yjlbcsswirl8s2q565k291ajzjglnz7qg2fwx6spi";
name = "ido-exit-target";
};
@@ -30783,7 +31277,7 @@
ido-gnus = callPackage ({ fetchFromGitHub, fetchurl, gnus ? null, lib, melpaBuild }:
melpaBuild {
pname = "ido-gnus";
- version = "20140216.1746";
+ version = "20140216.1046";
src = fetchFromGitHub {
owner = "vapniks";
repo = "ido-gnus";
@@ -30791,7 +31285,7 @@
sha256 = "0ifdwd5vnjv2iyb5bnz8pij35lc0ymmyx8j8zhpkbgjigz8f05ip";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ido-gnus";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/3c5cd46d72a3f99ef1344b5f1156f5bf7a5b9adc/recipes/ido-gnus";
sha256 = "14ijb8q4s846984h102h72ij713v5bj3k2vfdvr94gw1f0iya2yg";
name = "ido-gnus";
};
@@ -30804,7 +31298,7 @@
ido-grid-mode = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "ido-grid-mode";
- version = "20160122.1239";
+ version = "20160122.539";
src = fetchFromGitHub {
owner = "larkery";
repo = "ido-grid-mode.el";
@@ -30812,7 +31306,7 @@
sha256 = "1ip8g0r0aimhc4a1f06m711zmbs0krxn8hmayk99gk5kkz12igkb";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ido-grid-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/1ccca92fee3d39966df135a5c79e42d2ab621848/recipes/ido-grid-mode";
sha256 = "1wl1yclcxmkbfnvp0il23csdf6gprzf7fkcknpivk784fhl19acr";
name = "ido-grid-mode";
};
@@ -30825,7 +31319,7 @@
ido-hacks = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "ido-hacks";
- version = "20150331.2109";
+ version = "20150331.1409";
src = fetchFromGitHub {
owner = "scottjad";
repo = "ido-hacks";
@@ -30833,7 +31327,7 @@
sha256 = "01p4az128k1jvd9i1gshgg87z6048cw9cnm57l8qdlw01c3h6dkx";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ido-hacks";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/4ac3074d28e76133835366273219e180c6e75b18/recipes/ido-hacks";
sha256 = "05f9pdkqppnp7wafka2d2yj84gqchjd7vnrl5rcywy1l47gbxiw0";
name = "ido-hacks";
};
@@ -30846,7 +31340,7 @@
ido-load-library = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, pcache, persistent-soft }:
melpaBuild {
pname = "ido-load-library";
- version = "20140611.1800";
+ version = "20140611.1100";
src = fetchFromGitHub {
owner = "rolandwalker";
repo = "ido-load-library";
@@ -30854,7 +31348,7 @@
sha256 = "0l69sr3g1n2x61j6sv6hnbiyk8a2qra6y2kh413qp0sfpx4fzchv";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ido-load-library";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/baa49e7d2d5c07ebf77e7941c240b88fcfd0fc8b/recipes/ido-load-library";
sha256 = "13f83gqh39p3yjy7r7qc7kzgdcmqh4b5c07zl7rwzb8y9rz59lhj";
name = "ido-load-library";
};
@@ -30867,7 +31361,7 @@
ido-migemo = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, migemo }:
melpaBuild {
pname = "ido-migemo";
- version = "20150922.44";
+ version = "20150921.1744";
src = fetchFromGitHub {
owner = "myuhe";
repo = "ido-migemo.el";
@@ -30875,7 +31369,7 @@
sha256 = "15iajhrgy989pn91ijcd1mq2015bkaacaplm79rmb0ggxhh8vq38";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ido-migemo";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/8550601b8989f9838dfa7848977b2509b8e16175/recipes/ido-migemo";
sha256 = "02hbwchwx2bcwdxz7gz555699l7n9wisfikax1j6idn167n4wdpi";
name = "ido-migemo";
};
@@ -30888,7 +31382,7 @@
ido-occasional = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "ido-occasional";
- version = "20150214.1348";
+ version = "20150214.648";
src = fetchFromGitHub {
owner = "abo-abo";
repo = "ido-occasional";
@@ -30896,7 +31390,7 @@
sha256 = "0zlkq29wxd3a4vg0w6ds2jad5h1pja7ccd3l6ppl0kz1b1517qlr";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ido-occasional";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/ed49d07aa36dfc742ca3fbfa83a6d624bf2fa525/recipes/ido-occasional";
sha256 = "1vdh5i9qznzd9r148a6jw9v47swf7ykwyciqfzc3ismv5q909bl2";
name = "ido-occasional";
};
@@ -30909,7 +31403,7 @@
ido-occur = callPackage ({ dash, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "ido-occur";
- version = "20160527.1309";
+ version = "20160527.609";
src = fetchFromGitHub {
owner = "danil";
repo = "ido-occur";
@@ -30917,7 +31411,7 @@
sha256 = "0i1mcpg69rkfjpis7l1106gfqlvf1z48f5j5jkjc9xqcdr5zm09c";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ido-occur";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/8a576d8569bf82be01e7d50defcc99a90aab1436/recipes/ido-occur";
sha256 = "058l2pklg12wkvyyshk8va6shphpbc508fv9a8x25pw857a28pji";
name = "ido-occur";
};
@@ -30930,7 +31424,7 @@
ido-select-window = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "ido-select-window";
- version = "20131220.2147";
+ version = "20131220.1447";
src = fetchFromGitHub {
owner = "pjones";
repo = "ido-select-window";
@@ -30938,7 +31432,7 @@
sha256 = "0qvf3h2ljlbf3z36dhywzza62mfi6mqbrfc0sqfsbyia9bn1df4f";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ido-select-window";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/775c8361322c2ba9026130dd60083e0255170b8f/recipes/ido-select-window";
sha256 = "03xqfpnagy2sk67yq7n7s6ma3im37d558zzx8sdzd9pbfxy9ij23";
name = "ido-select-window";
};
@@ -30951,7 +31445,7 @@
ido-skk = callPackage ({ ddskk, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "ido-skk";
- version = "20151111.1050";
+ version = "20151111.350";
src = fetchFromGitHub {
owner = "tsukimizake";
repo = "ido-skk";
@@ -30959,7 +31453,7 @@
sha256 = "149cznbybwj0gkjyvpnh4kn258kxw449m7cn95n9jbh1r45vljvy";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ido-skk";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/6da9bd69a646a8edfaf9dc7f2e31e5f057f44b6b/recipes/ido-skk";
sha256 = "1fyzjkw9xp126bzfv1254bvyakh323iw3wdzrkd9gb4ir39k5jzw";
name = "ido-skk";
};
@@ -30972,7 +31466,7 @@
ido-sort-mtime = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "ido-sort-mtime";
- version = "20131117.1430";
+ version = "20131117.730";
src = fetchFromGitHub {
owner = "pkkm";
repo = "ido-sort-mtime";
@@ -30980,7 +31474,7 @@
sha256 = "0w3cr2yf8644i0g8w6r147vi9wanibn41sg7dzws51yb9q0y92vd";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ido-sort-mtime";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/36d2f7f1bb0d0694a25c1e83340781e08bee814b/recipes/ido-sort-mtime";
sha256 = "1dkny9y3x49dv1vjwz78x2qhb6kdq3fa8qh1xkm30jyapvgiwdg2";
name = "ido-sort-mtime";
};
@@ -30993,7 +31487,7 @@
ido-springboard = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "ido-springboard";
- version = "20150505.1911";
+ version = "20150505.1211";
src = fetchFromGitHub {
owner = "jwiegley";
repo = "springboard";
@@ -31001,7 +31495,7 @@
sha256 = "0p13q8xax2h3m6rddvmh1p9biw3d1shvwwmqfhg0c93xajlwdfqi";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ido-springboard";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/409d847fb464a320e626fae56521a81a8e862a3e/recipes/ido-springboard";
sha256 = "04jqnag8jiyfbwvc3vd9ikrsmf6cajld7dz2gz9y0zkj1k4gs7zv";
name = "ido-springboard";
};
@@ -31014,15 +31508,15 @@
ido-ubiquitous = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, ido-completing-read-plus, lib, melpaBuild }:
melpaBuild {
pname = "ido-ubiquitous";
- version = "20160320.738";
+ version = "20160623.1015";
src = fetchFromGitHub {
owner = "DarwinAwardWinner";
repo = "ido-ubiquitous";
- rev = "7354d985d4f529877bd8dcb782940e3e87cf36b2";
- sha256 = "13mcpc8qlv0mvabd33cah1zqybfa0hrzanp16ikbsc449zyz3889";
+ rev = "950afaed5d36fc4447dd3a517ddb0dd281d8aaf6";
+ sha256 = "0gk1bkllzs3fil2fcj3iha43y43370sgrrs5r6j7hzyhnxqmp965";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ido-ubiquitous";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/4a227a6d44f1981e8a3f73b253d2c33eb18ef72f/recipes/ido-ubiquitous";
sha256 = "143pzpix9aqpzjy8akrxfsxmwlzc9bmaqzp9fyhjgzrhq7zchjsp";
name = "ido-ubiquitous";
};
@@ -31035,7 +31529,7 @@
ido-vertical-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "ido-vertical-mode";
- version = "20160429.1937";
+ version = "20160429.1237";
src = fetchFromGitHub {
owner = "creichert";
repo = "ido-vertical-mode.el";
@@ -31043,7 +31537,7 @@
sha256 = "1h0kwsrg0xaqmk37hij2ssi9vcvxq49bdc4s3amwc45x1i369q7q";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ido-vertical-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/d4bbd212ea4606b9871cf583d06b5cee2f6ce0a9/recipes/ido-vertical-mode";
sha256 = "1vg5s6nd6v2g8ychz1q9cdqvsdw6vag7d9w68sn7blpmlr0nqhfm";
name = "ido-vertical-mode";
};
@@ -31056,7 +31550,7 @@
ido-yes-or-no = callPackage ({ fetchFromGitHub, fetchurl, ido-completing-read-plus, lib, melpaBuild }:
melpaBuild {
pname = "ido-yes-or-no";
- version = "20160218.117";
+ version = "20160217.1817";
src = fetchFromGitHub {
owner = "DarwinAwardWinner";
repo = "ido-yes-or-no";
@@ -31064,7 +31558,7 @@
sha256 = "046ns1nqisz830f6xwlly1qgmi4v2ikw6vmj0f93jprv4vkjylpq";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ido-yes-or-no";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/e575f46b8597a34523df6b6a75da5a640f4c5a2e/recipes/ido-yes-or-no";
sha256 = "0glag4yb9xyf1lxxbdhph2nq6s1vg44i6f2z1ii8bkxpambz2ana";
name = "ido-yes-or-no";
};
@@ -31077,7 +31571,7 @@
idomenu = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "idomenu";
- version = "20141123.2220";
+ version = "20141123.1520";
src = fetchFromGitHub {
owner = "birkenfeld";
repo = "idomenu";
@@ -31085,7 +31579,7 @@
sha256 = "1vx2g1xgxpcabr49mkl6ggzrpa3k2zhm479j6262vb64swzx33jw";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/idomenu";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/f856045bc5ab2aee4dd4ad9806917e27e56ec64c/recipes/idomenu";
sha256 = "0mg601ak9mhp2fg5n13npcfzphgyms4vkqd18ldmv098z2z1412h";
name = "idomenu";
};
@@ -31098,7 +31592,7 @@
idris-mode = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, prop-menu }:
melpaBuild {
pname = "idris-mode";
- version = "20160302.1535";
+ version = "20160302.835";
src = fetchFromGitHub {
owner = "idris-hackers";
repo = "idris-mode";
@@ -31106,7 +31600,7 @@
sha256 = "0ngqsh0ncwcr377ifvnx5j352bf1f7lhcq7qc8avcn5pwlshri4w";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/idris-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/17a86efca3bdebef7c92ba6ece2de214d283c627/recipes/idris-mode";
sha256 = "0hiiizz976hz3z3ciwg1gs9y10qhxbs8givhz89kvyn4s4861a1s";
name = "idris-mode";
};
@@ -31119,7 +31613,7 @@
ids-edit = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "ids-edit";
- version = "20160324.2322";
+ version = "20160324.1722";
src = fetchFromGitHub {
owner = "kawabata";
repo = "ids-edit";
@@ -31127,7 +31621,7 @@
sha256 = "18dca47ds5fiihijd1vv7nif44n4b4nv4za2djjfqbhbvizra1fd";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ids-edit";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/f12d49b6ece6d2ac8ecb80d881db560367ddc4ba/recipes/ids-edit";
sha256 = "0jzmcynr6lvsr36nblqzrjwxawyqcdz972zsv4rqkihdydpqfz7m";
name = "ids-edit";
};
@@ -31140,15 +31634,15 @@
iedit = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "iedit";
- version = "20160530.355";
+ version = "20160624.1056";
src = fetchFromGitHub {
owner = "victorhge";
repo = "iedit";
- rev = "c742ae4fa61b647cd2bce724af50f4aa80d33ff1";
- sha256 = "02n1lmjjabqbdhq94x6xmgh2063rrh6q4k4fxc3r6dvdidx246yc";
+ rev = "890a11657ce56449fec13760bba6925235ad3926";
+ sha256 = "0kcpj0199671i0am3ana2akap3lnrfs5h89s40gappaybb3qn51f";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/iedit";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/aa2b2745bd1f1778070954c834158c19d4cfb788/recipes/iedit";
sha256 = "02gjshvkcvyr58yf6vlg3s2pzls5sd54xpxggdmqajfg8xmpkq04";
name = "iedit";
};
@@ -31161,7 +31655,7 @@
ietf-docs = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "ietf-docs";
- version = "20150928.1157";
+ version = "20150928.457";
src = fetchFromGitHub {
owner = "choppsv1";
repo = "ietf-docs";
@@ -31169,7 +31663,7 @@
sha256 = "0b86x675g95yrlc0alffx0z9fmficlwv3gpy5cy86z1xvvyh3nzw";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ietf-docs";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/cedfdfe2c282d0484ea8239726f46a4861ef07ea/recipes/ietf-docs";
sha256 = "0wnk36z9g7lksmynd04hb2m6rx45wpxnxj1lhrlpjnzsrknhf4k3";
name = "ietf-docs";
};
@@ -31182,7 +31676,7 @@
iflipb = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "iflipb";
- version = "20141123.2216";
+ version = "20141123.1516";
src = fetchFromGitHub {
owner = "jrosdahl";
repo = "iflipb";
@@ -31190,7 +31684,7 @@
sha256 = "18rlyjsn9w0zbs0c002s84qzark3rrcmjn9vq4nap7i6zpaq8hki";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/iflipb";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/fad6fc8bc3c0be0d5789a0d7626ebc3f298b4318/recipes/iflipb";
sha256 = "1nfrrxgi9nlhn477z8ay7jxycpcghhhmmg9dagdhrlrr20fx697d";
name = "iflipb";
};
@@ -31203,7 +31697,7 @@
ignoramus = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "ignoramus";
- version = "20160414.1609";
+ version = "20160414.909";
src = fetchFromGitHub {
owner = "rolandwalker";
repo = "ignoramus";
@@ -31211,7 +31705,7 @@
sha256 = "1b4r4h8yrs8zkyr1hnnx2wjrmm39wbqxfhyxpjb5pxi4zk3fh4rj";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ignoramus";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/ac5439afe2f9a902e615f0cf919ef7138559c0f0/recipes/ignoramus";
sha256 = "1czqdmlrds1l5afi8ldg7nrxcwav86538z2w1npad3dz8xk67da9";
name = "ignoramus";
};
@@ -31223,13 +31717,13 @@
}) {};
igrep = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild {
pname = "igrep";
- version = "20130824.1407";
+ version = "20130824.707";
src = fetchurl {
url = "https://www.emacswiki.org/emacs/download/igrep.el";
sha256 = "0qiv69v7ig38iizif7zg8aljdmpa1jk8bsfa0iyhqqqrkvsmhc29";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/igrep";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/83c05578974289527082bb67338c35e70bbff8f2/recipes/igrep";
sha256 = "1vyhrziy29q6w8w9vvanb7d29r1n7nfkznbcd62il991n48d08i3";
name = "igrep";
};
@@ -31241,14 +31735,14 @@
}) {};
igv = callPackage ({ fetchgit, fetchurl, lib, melpaBuild }: melpaBuild {
pname = "igv";
- version = "20141210.1327";
+ version = "20141210.627";
src = fetchgit {
url = "https://bitbucket.org/sbarbit/eigv";
rev = "47ac6ceede252f451348a2c696398c0cb5279555";
sha256 = "11pss3hfxkfkyi273zfajdj43shdl6pn739zfv9jbm75v7m9bz6f";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/igv";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/2d1d94609f2ef349c8b877791a996de3b6b60da9/recipes/igv";
sha256 = "01igm3cb0lncmcyy72mjf93byh42k2hvscqhg8r7iljbxm58460z";
name = "igv";
};
@@ -31261,7 +31755,7 @@
image-archive = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "image-archive";
- version = "20150621.332";
+ version = "20150620.2032";
src = fetchFromGitHub {
owner = "mhayashi1120";
repo = "Emacs-image-archive";
@@ -31269,7 +31763,7 @@
sha256 = "068z3ygq9p139ikm04xqhhqhc994an5isba5c7kpqs009y09xw3w";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/image-archive";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/17464f31b07f64da0e9db187cd6f5facee3ad7ce/recipes/image-archive";
sha256 = "0x0lv5dr1gc9bnr3dn26bc9s1ccq2rp8c4a1licbi929f0jyxxfp";
name = "image-archive";
};
@@ -31282,7 +31776,7 @@
image-dired-plus = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "image-dired-plus";
- version = "20150430.744";
+ version = "20150430.44";
src = fetchFromGitHub {
owner = "mhayashi1120";
repo = "Emacs-image-diredx";
@@ -31290,7 +31784,7 @@
sha256 = "1n2ya9s0ld257a8iryjd0dz0z2zs1xhzfiwsdkq4l4azwxl54m29";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/image-dired+";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/98f83f450804f1dc496a7bda17818cdae3f52151/recipes/image-dired+";
sha256 = "0hhwqfn490n7p12n7ij4xbjh15gfvicmn21fvwbnrmfqc343pcdy";
name = "image-dired-plus";
};
@@ -31303,7 +31797,7 @@
image-plus = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "image-plus";
- version = "20150707.1816";
+ version = "20150707.1116";
src = fetchFromGitHub {
owner = "mhayashi1120";
repo = "Emacs-imagex";
@@ -31311,7 +31805,7 @@
sha256 = "0v66wk9nh0raih4jhrzmmyi5lbysjnmbv791vm2230ffi2hmwxnd";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/image+";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/02d7400477a993b7a3cae327501dbf8db97dfa28/recipes/image+";
sha256 = "1a9dxswnqn6cvx28180kclpjc0vc6fimzp7n91gpdwnmy123x6hg";
name = "image-plus";
};
@@ -31324,7 +31818,7 @@
imakado = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "imakado";
- version = "20141024.1123";
+ version = "20141024.423";
src = fetchFromGitHub {
owner = "imakado";
repo = "emacs-imakado";
@@ -31332,7 +31826,7 @@
sha256 = "0f3xdqhq9nprvl8bnmgrx20h08ddkfak0is29bsqwckkfgn7pmqp";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/imakado";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/ca131089c823065852f58347a88bd49217a22072/recipes/imakado";
sha256 = "18mj0vpv3dybfpa8hl9jwlagsivbhgqgz8lwb8cswsq9hwv3jgd3";
name = "imakado";
};
@@ -31345,7 +31839,7 @@
imapfilter = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "imapfilter";
- version = "20160419.1146";
+ version = "20160419.446";
src = fetchFromGitHub {
owner = "tarsius";
repo = "imapfilter";
@@ -31353,7 +31847,7 @@
sha256 = "15lflvpapm5749qq7jzdwbd0isb89i6df3np4wn9y9gjl7y92wk7";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/imapfilter";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/2415894afa3404fbd73c84c58f8b8267187d6d86/recipes/imapfilter";
sha256 = "0i893kqj6yzadhza800r6ri7fihl01r57z8yrzzh3d09qaias5vz";
name = "imapfilter";
};
@@ -31366,15 +31860,15 @@
imenu-anywhere = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "imenu-anywhere";
- version = "20160520.1220";
+ version = "20160629.1753";
src = fetchFromGitHub {
owner = "vspinu";
repo = "imenu-anywhere";
- rev = "d373d92763cb1e2cad3cfff08ab12ed6dcff4b99";
- sha256 = "0md20p0pkk7s9fnh4a6j808iri79lq70sq30hcy97pjrafrqfkky";
+ rev = "7588aff2e1ca9303e67c9fafb5346123b4bf7684";
+ sha256 = "1471r94lwvfz5maap2qbwhfbva9d0fgfv1w0fyrs7bfcf8zzbdlb";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/imenu-anywhere";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/7fabdb05de9b8ec18a3a566f99688b50443b6b44/recipes/imenu-anywhere";
sha256 = "1ylqzdnd3nzcpyyd6rh6i5q9mvf8c99rvpk51fzfm3yq2kyw4dbq";
name = "imenu-anywhere";
};
@@ -31387,7 +31881,7 @@
imenu-list = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "imenu-list";
- version = "20160211.1241";
+ version = "20160211.541";
src = fetchFromGitHub {
owner = "bmag";
repo = "imenu-list";
@@ -31395,7 +31889,7 @@
sha256 = "1j0p0zkk89lg5xk5qzdnj9nxxiaxhff2y9iv9lw456kvb3lsyvjk";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/imenu-list";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/86dea881a5b2d0458449f08b82c2614ad9abd068/recipes/imenu-list";
sha256 = "092fsn7hnbfabcyakbqyk20pk62sr8xrs45aimkv1l91681np98s";
name = "imenu-list";
};
@@ -31407,13 +31901,13 @@
}) {};
imenu-plus = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild {
pname = "imenu-plus";
- version = "20151231.2301";
+ version = "20151231.1601";
src = fetchurl {
url = "https://www.emacswiki.org/emacs/download/imenu+.el";
sha256 = "00w88d37mg2hdrzpw5cxrgqz5jbf7rylmir95hs8j1cm8fk787bb";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/imenu+";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/a5d15f875b0080b12ce45cf696c581f6bbf061ba/recipes/imenu+";
sha256 = "1v2h3xs5pnv7z5qphkn2y5pa1p8pivrknkw7xihm5yr4a4dqjv5d";
name = "imenu-plus";
};
@@ -31426,7 +31920,7 @@
imenus = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "imenus";
- version = "20160220.2232";
+ version = "20160220.1532";
src = fetchFromGitHub {
owner = "alezost";
repo = "imenus.el";
@@ -31434,7 +31928,7 @@
sha256 = "1y57xp0w0c6hg3gn4f1l3612a18li4gwhfa4dy18fy94gr54ycpx";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/imenus";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/cc571105a8d7e2ea85391812f1fa639787fa7563/recipes/imenus";
sha256 = "1q0j6r2n5vjlbgchkz9zdglmmbpd8agawzcg61knqrgzpc4lk82r";
name = "imenus";
};
@@ -31447,7 +31941,7 @@
imgix = callPackage ({ cl-lib ? null, dash, fetchFromGitHub, fetchurl, ht, json ? null, lib, melpaBuild, s }:
melpaBuild {
pname = "imgix";
- version = "20141226.2232";
+ version = "20141226.1532";
src = fetchFromGitHub {
owner = "imgix";
repo = "imgix-emacs";
@@ -31455,7 +31949,7 @@
sha256 = "1q53r3f3x0hpzryxd1v1w3qgs54p384q0azi7xj2gppi1q49sa42";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/imgix";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/eddb7acecc4948ade16ff02415484c9a16529c9c/recipes/imgix";
sha256 = "0dh7qsz5c9mflldcw60vc8mrxrw76n2ydd7blv6jfmsnr19ila4q";
name = "imgix";
};
@@ -31468,7 +31962,7 @@
imgur = callPackage ({ anything, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "imgur";
- version = "20120307.1125";
+ version = "20120307.425";
src = fetchFromGitHub {
owner = "myuhe";
repo = "imgur.el";
@@ -31476,7 +31970,7 @@
sha256 = "0nzgfj083im8lc62ifgsh1pmbw0j9wivimjgih7k6ny3jgw834rs";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/imgur";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/d889f470cb81ac8a5f27e054755152867904feac/recipes/imgur";
sha256 = "0hr2zz7nq65jig2036g5sa8q2lhb42jv40ijikcz8s4f5v3y14i7";
name = "imgur";
};
@@ -31489,14 +31983,14 @@
immortal-scratch = callPackage ({ fetchhg, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "immortal-scratch";
- version = "20160517.2318";
+ version = "20160517.1618";
src = fetchhg {
url = "https://bitbucket.com/jpkotta/immortal-scratch";
rev = "b354aba33d91";
sha256 = "1mx9f8pwnbrm6q9ngdyv64aqkw1izj83m0mf7zqlpww7yfhv1q9b";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/immortal-scratch";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/1f9f4a59d88106ddfee740653abd28e305f6dfe0/recipes/immortal-scratch";
sha256 = "0rxhaqivvjij59hhv3mh4wwrc0bl0xv144j1i237xhlvhxk6nnn6";
name = "immortal-scratch";
};
@@ -31509,7 +32003,7 @@
immutant-server = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "immutant-server";
- version = "20140311.2308";
+ version = "20140311.1708";
src = fetchFromGitHub {
owner = "leathekd";
repo = "immutant-server.el";
@@ -31517,7 +32011,7 @@
sha256 = "0rbamm9qvipgswxng8g1d7rbdbcj7sgwrccg7imcfapwwq7xhj4h";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/immutant-server";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/d6e906492f9982e2cebd1e4838d7b7c81a295efa/recipes/immutant-server";
sha256 = "15vcxag1ni41ja4b3q0444sq5ysrisis59la7li6h3617wy8r02i";
name = "immutant-server";
};
@@ -31530,7 +32024,7 @@
impatient-mode = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, htmlize, lib, melpaBuild, simple-httpd }:
melpaBuild {
pname = "impatient-mode";
- version = "20150501.1147";
+ version = "20150501.447";
src = fetchFromGitHub {
owner = "netguy204";
repo = "imp.el";
@@ -31538,7 +32032,7 @@
sha256 = "0vr4i3ayp1n8zg3v9rfv81qnr0vrdbkzphwd5kyadjgy4sbfjykj";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/impatient-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/bb1fbd03f17d2069a461260ad5e2ad4e5441919b/recipes/impatient-mode";
sha256 = "05vp04zh5w0ss959galdrnridv268dzqymqzqfpkfjbg8kryzfxg";
name = "impatient-mode";
};
@@ -31551,7 +32045,7 @@
import-js = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "import-js";
- version = "20160505.710";
+ version = "20160505.10";
src = fetchFromGitHub {
owner = "galooshi";
repo = "emacs-import-js";
@@ -31559,7 +32053,7 @@
sha256 = "1pv29qxiz9yqfp67fjj4mk8bqxs5y4qwcpx4kvznpfzdcwsza53j";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/import-js";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/048344edd471a473c9e32945b021b3f26f1666e0/recipes/import-js";
sha256 = "0qzr4vfv3whdly73k7x621dwznca7nlhd3gpppr2w2sg12jym5ha";
name = "import-js";
};
@@ -31572,7 +32066,7 @@
import-popwin = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild, popwin }:
melpaBuild {
pname = "import-popwin";
- version = "20150716.1133";
+ version = "20150716.433";
src = fetchFromGitHub {
owner = "syohex";
repo = "emacs-import-popwin";
@@ -31580,7 +32074,7 @@
sha256 = "0ycsdwwfb27g85aby4jix1aj41a4vq6bf541iwla0xh3wsyxb01w";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/import-popwin";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/a6f0629515f36e2e98839a6894ca8c0f58862dc2/recipes/import-popwin";
sha256 = "0vkw6y09m68bvvn1wzah4gzm69z099xnqhn359xfns2ljm74bvgy";
name = "import-popwin";
};
@@ -31593,15 +32087,15 @@
indent-guide = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "indent-guide";
- version = "20151119.1617";
+ version = "20160607.118";
src = fetchFromGitHub {
owner = "zk-phi";
repo = "indent-guide";
- rev = "0ef4813c538d5afba210681a8e81848b0927d421";
- sha256 = "1p54w9dwkc76nvc4m0q9a0lh4bdxp4ad1wzscadayqy8qbrylf97";
+ rev = "feb207cb5610f351c7cdcf266e0c99117b2f786c";
+ sha256 = "0ykddzily3b6c6k7fvq274pqdjf3934n8p3nrmnsw6c93i1ndd4f";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/indent-guide";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/5d7110054801e3af5e5ef710a29f73116a2bc746/recipes/indent-guide";
sha256 = "029fj9rr9vfmkysi6lzpwra92j6ppw675qpj3sinfq7fqqlicvp7";
name = "indent-guide";
};
@@ -31614,7 +32108,7 @@
indicators = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "indicators";
- version = "20130217.2305";
+ version = "20130217.1605";
src = fetchFromGitHub {
owner = "Fuco1";
repo = "indicators.el";
@@ -31622,7 +32116,7 @@
sha256 = "1zsw68zzvjjh93cldc0w83k67hzcgi226vz3d0nzqc9sczqk8civ";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/indicators";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/72c96bad0d0b5a4f738fd1b2afe5d302eded440d/recipes/indicators";
sha256 = "1rhmz8sfi2gnv72sbw6kgyzidk43mnp05wnscw9vjvz9v0vwirss";
name = "indicators";
};
@@ -31635,7 +32129,7 @@
indy = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "indy";
- version = "20150610.1906";
+ version = "20150610.1206";
src = fetchFromGitHub {
owner = "kwrooijen";
repo = "indy";
@@ -31643,7 +32137,7 @@
sha256 = "0kv0aj444i2rzksvcfz8sw0yyig3ca3m05agnhw9jzr01y05yl1n";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/indy";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/e997b356b009b3d2ab467fe49b79d728a8cfe24b/recipes/indy";
sha256 = "118n3n07h1vx576fdv6v5a94aa004q0gmy9hlsnrswpxa30ahnw7";
name = "indy";
};
@@ -31656,7 +32150,7 @@
inf-clojure = callPackage ({ clojure-mode, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "inf-clojure";
- version = "20160405.638";
+ version = "20160404.2338";
src = fetchFromGitHub {
owner = "clojure-emacs";
repo = "inf-clojure";
@@ -31664,7 +32158,7 @@
sha256 = "1632q7zbqqs5nvvxly3b2fj9b9q9mgxwh5sspamj7442s7i0j645";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/inf-clojure";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/5d6112e06d1efcb7cb5652b0bec8d282d7f67bd9/recipes/inf-clojure";
sha256 = "0n8w0vx1dnbfz88j45a57z9bsmkxr2zyh6ld72ady8asanf17zhl";
name = "inf-clojure";
};
@@ -31677,7 +32171,7 @@
inf-mongo = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "inf-mongo";
- version = "20131216.1128";
+ version = "20131216.428";
src = fetchFromGitHub {
owner = "tobiassvn";
repo = "inf-mongo";
@@ -31685,7 +32179,7 @@
sha256 = "14kf3zvms1w8cbixhpgw3m2xxc2r87i57gmx00jwh89282i6kgsi";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/inf-mongo";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/be9b27d5354d4b30cc9dd3be730d79e5a5bc1f74/recipes/inf-mongo";
sha256 = "09hf3jmacsk4hl0rxk35cza8vjl0xfmv19dagb8h8fli97fb65hh";
name = "inf-mongo";
};
@@ -31698,7 +32192,7 @@
inf-php = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, php-mode }:
melpaBuild {
pname = "inf-php";
- version = "20130414.921";
+ version = "20130414.221";
src = fetchFromGitHub {
owner = "taksatou";
repo = "inf-php";
@@ -31706,7 +32200,7 @@
sha256 = "1z5ns94xgj2dkv2sc2ckax6bzwdxsm19pkvni24ys2w7d5nhajzr";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/inf-php";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/da48d14bd46f25976f7109306f335bd57b237ee5/recipes/inf-php";
sha256 = "011sc6f0ka7mmik8z0df8qk24mf6ygq22jy781f2ikhjh94gy83d";
name = "inf-php";
};
@@ -31719,15 +32213,15 @@
inf-ruby = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "inf-ruby";
- version = "20160423.1737";
+ version = "20160617.751";
src = fetchFromGitHub {
owner = "nonsequitur";
repo = "inf-ruby";
- rev = "db89398caabccce307bee11b39cc9cad1b58d6a1";
- sha256 = "12qjz6bp6p6yh5nxin6w7snil9954mhd4kfnk0wwbijpd1lqw73l";
+ rev = "4d820954241988b4506e067fa9fdf6d574876e2c";
+ sha256 = "1h7yna7lm7dp4grqc7q1sf0frjr672jp801aynfl51dgg5vr5aqq";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/inf-ruby";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/cae2ac3513e371a256be0f1a7468e38e686c2487/recipes/inf-ruby";
sha256 = "02f01vwzr6j9iqcdns4l579bhia99sw8hwdqfwqjs9gk3xampfpp";
name = "inf-ruby";
};
@@ -31740,7 +32234,7 @@
inflections = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "inflections";
- version = "20121016.1057";
+ version = "20121016.357";
src = fetchFromGitHub {
owner = "eschulte";
repo = "jump.el";
@@ -31748,7 +32242,7 @@
sha256 = "0061hcmj63g13bvacwkmcb5iggwnk27dvb04fz4hihqis6jg01c5";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/inflections";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/392c7616d27bf12b29ef3c2ea71e42ffaea81cc6/recipes/inflections";
sha256 = "0f02bhm2a5xiaxnf2c2hlpa4p121xfyyj3c59fy0yldipdxhvw70";
name = "inflections";
};
@@ -31760,13 +32254,13 @@
}) {};
info-plus = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild {
pname = "info-plus";
- version = "20151231.2303";
+ version = "20160702.1543";
src = fetchurl {
url = "https://www.emacswiki.org/emacs/download/info+.el";
- sha256 = "068y1p44ynimxfrqgrrhrj4gldf661dr0kbc9p7dqm1mw928hxmm";
+ sha256 = "0rpkfzsas76qp7a77hf60gkdlisbgcf1apwkkzj2lp1dbkncbx30";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/info+";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/e77aadd8195928eed022f1e00c088151e68aa280/recipes/info+";
sha256 = "0flpmi8dsaalg14xd86xcr087j51899sm8ghsa150ag4g4acfggr";
name = "info-plus";
};
@@ -31779,7 +32273,7 @@
inform7-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, sws-mode }:
melpaBuild {
pname = "inform7-mode";
- version = "20131010.854";
+ version = "20131010.154";
src = fetchFromGitHub {
owner = "fred-o";
repo = "inform7-mode";
@@ -31787,7 +32281,7 @@
sha256 = "19kc6a8jkx22rg9xp862pqfhv0an7q6fs7v7i2kxp3ji55aq001w";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/inform7-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/0fda2b54a0ff0b6fc3bd6d20cfcbbf63cae5380f/recipes/inform7-mode";
sha256 = "0fpnf9rgizsfz9pn06k87v4s0dr7z1pn0gdxfi6hnnv68qni8hg3";
name = "inform7-mode";
};
@@ -31800,7 +32294,7 @@
init-loader = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "init-loader";
- version = "20160528.1515";
+ version = "20160528.815";
src = fetchFromGitHub {
owner = "emacs-jp";
repo = "init-loader";
@@ -31808,7 +32302,7 @@
sha256 = "03a655qzcwizv9hvfcp47466axsrq0h049fdd79xk6zmans5s6fj";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/init-loader";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/e46e6ec79ff4c76fc85e13321e6dabd5797c5f45/recipes/init-loader";
sha256 = "0rq7759abp0ml0l8dycvdl0j5wsxw9z5y9pyx68973a4ssbx2i0r";
name = "init-loader";
};
@@ -31821,7 +32315,7 @@
init-open-recentf = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "init-open-recentf";
- version = "20160602.500";
+ version = "20160601.2200";
src = fetchFromGitHub {
owner = "zonuexe";
repo = "init-open-recentf.el";
@@ -31829,7 +32323,7 @@
sha256 = "0vbqmz9kcdxwwsid1fclwakhcq268jhbwqc5hgpywp8w2b83mjs1";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/init-open-recentf";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/4db8b6eced50726c788d7343137f6b4558575abf/recipes/init-open-recentf";
sha256 = "0xlmfxhxb2car8vfx7krxmxb3d56x0r3zzkj8ds7yqvr65z85x2r";
name = "init-open-recentf";
};
@@ -31842,7 +32336,7 @@
initsplit = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "initsplit";
- version = "20160113.1553";
+ version = "20160113.853";
src = fetchFromGitHub {
owner = "dabrahams";
repo = "initsplit";
@@ -31850,7 +32344,7 @@
sha256 = "1qvkxpxdv0n9qlzigvi25iw485824pgbpb10lwhh8bs2074dvrgq";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/initsplit";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/5a908c8fad08cd4d7dbb586570d0f0b384bf9071/recipes/initsplit";
sha256 = "0n9dk3x62vgxfn39jkmdg8wxsik0xqkprifgvqzyvn8xcx1blyyq";
name = "initsplit";
};
@@ -31863,7 +32357,7 @@
inkpot-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "inkpot-theme";
- version = "20120505.1608";
+ version = "20120505.908";
src = fetchFromGitHub {
owner = "siovan";
repo = "emacs24-inkpot";
@@ -31871,7 +32365,7 @@
sha256 = "063v3a783si5fi8jrnysss60qma1c3whvyb48i10qbrrrx750cmv";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/inkpot-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/bd6ce27c31a1c73d6ee1f6b22147eda8c6b34243/recipes/inkpot-theme";
sha256 = "0w4q74w769n88zb2q7x326cxji42278lf95wnpslgjybnaxycgw7";
name = "inkpot-theme";
};
@@ -31884,7 +32378,7 @@
inline-crypt = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "inline-crypt";
- version = "20130409.1407";
+ version = "20130409.707";
src = fetchFromGitHub {
owner = "Sodel-the-Vociferous";
repo = "inline-crypt-el";
@@ -31892,7 +32386,7 @@
sha256 = "0jipds844432a8m4d5gxbbkk2h1rsq9fg748g6bxy2q066kyzfz6";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/inline-crypt";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/5bf7761c9091260d378621907a1689498aedc098/recipes/inline-crypt";
sha256 = "04mcyyqa9h6g6wrzphzqalpqxsndmzxpavlpdc24z4a2c5s3yz8n";
name = "inline-crypt";
};
@@ -31905,7 +32399,7 @@
inlineR = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "inlineR";
- version = "20120520.1632";
+ version = "20120520.932";
src = fetchFromGitHub {
owner = "myuhe";
repo = "inlineR.el";
@@ -31913,7 +32407,7 @@
sha256 = "15nasjknmzy57ilj1gaz3w5sj8b3ijcpgwcd6w2r9xhgcl86m40q";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/inlineR";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/3a7228e5f23a4e66f4510b2f6fc41c36aa791991/recipes/inlineR";
sha256 = "1fflq2gkpfn3jkv4a6yywzmxsq6qszfid1ri85ass1ppw6scdvzw";
name = "inlineR";
};
@@ -31926,15 +32420,15 @@
insert-shebang = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "insert-shebang";
- version = "20160413.1612";
+ version = "20160626.609";
src = fetchFromGitHub {
owner = "psachin";
repo = "insert-shebang";
- rev = "a750edbe20fb7815dd199f5f449b426704e4e79b";
- sha256 = "198pgj0xsfyp8s1kkjjp48w7j3i5cf6zsp46vdwiifj64yfmq7yi";
+ rev = "e53f893d400fcf6f2870ba0ba957b0dee0692fdd";
+ sha256 = "18kdbm9bd1mx6gf66axzzs3z5ln0xgf0f4v1iizhcx0n1xinizpq";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/insert-shebang";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/c257f4f5011cd7d0b2a5ef3adf13f9871bf0be92/recipes/insert-shebang";
sha256 = "0z88l1q925v9lwzr6nas9qjy0f57qxilg6smgpx9wj6lll3f7p5v";
name = "insert-shebang";
};
@@ -31947,7 +32441,7 @@
insfactor = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "insfactor";
- version = "20141117.102";
+ version = "20141116.1802";
src = fetchFromGitHub {
owner = "duelinmarkers";
repo = "insfactor.el";
@@ -31955,7 +32449,7 @@
sha256 = "112s3c0ii8zjc6vlj2im2qd2pl3hb95pq4zibm86gjpw428wd8iy";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/insfactor";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/c9a76a6498c2a0b0d471d3df7ae3d510d027f08c/recipes/insfactor";
sha256 = "0c6q1d864qc78sqk9iadjpd01xc7myipgnf89pqa2z75yprndvyn";
name = "insfactor";
};
@@ -31968,14 +32462,14 @@
instapaper = callPackage ({ fetchhg, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "instapaper";
- version = "20130104.1521";
+ version = "20130104.821";
src = fetchhg {
url = "https://bitbucket.com/jfm/emacs-instapaper";
rev = "8daa0058ede7";
sha256 = "0krscid3yz2b7kv75gd9fs92zgfl7pnl77dbp5gycv5rmw5mivp8";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/instapaper";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/5b7972602399f9df9139cff177e38653bb0f43ed/recipes/instapaper";
sha256 = "1yibdpj3lx6vr33s75s1y415lxqljrk7pqc901f8nfa01kca7axn";
name = "instapaper";
};
@@ -31988,7 +32482,7 @@
interaction-log = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "interaction-log";
- version = "20160305.1401";
+ version = "20160305.701";
src = fetchFromGitHub {
owner = "michael-heerdegen";
repo = "interaction-log.el";
@@ -31996,7 +32490,7 @@
sha256 = "0mvhydb4lfm2kazmb7fab8zh7sd8l9casghn8wl42mqji3v7lfwh";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/interaction-log";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/b72951c339c601350a7f10aee05a7fb94bac37ea/recipes/interaction-log";
sha256 = "1r9qbvgssc2zdwgwmmwv5kapvmg1y3px7268gkiakkfanw3kqk6j";
name = "interaction-log";
};
@@ -32009,15 +32503,15 @@
interleave = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "interleave";
- version = "20160517.1848";
+ version = "20160701.254";
src = fetchFromGitHub {
owner = "rudolfochrist";
repo = "interleave";
- rev = "425d8e5e48b79bee54152f919652838d38bd401b";
- sha256 = "06x47lfpad24arc2zyvdcdg222pyndxsc66m376rgj23s7wlr5hd";
+ rev = "d42fe4b97aaff256c791a91716b4e0726b2d1e15";
+ sha256 = "1i592kcwa0ivpmc7vkxz0r5v11lcih21kkc58vaz3yq4k5lgdjb9";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/interleave";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/6c43d4aaaf4fca17f2bc0ee90a21c51071886ae2/recipes/interleave";
sha256 = "18b3fpxn07y5abkcnaw9is9ihdhik7xjdj6kzl1pz958lk9f4hfy";
name = "interleave";
};
@@ -32030,12 +32524,12 @@
intero = callPackage ({ company, emacs, fetchFromGitHub, fetchurl, flycheck, haskell-mode, lib, melpaBuild }:
melpaBuild {
pname = "intero";
- version = "20160604.947";
+ version = "20160630.516";
src = fetchFromGitHub {
owner = "commercialhaskell";
repo = "intero";
- rev = "0d5cd31556a24190860449426105f3466f22cb6c";
- sha256 = "0wm6hk6plmvn31wkh58n7wnjpxibw6x2rj5npda5lckliaican8p";
+ rev = "f41ad5fbf7da4f9e1a698cabefa514d1e1dc16f4";
+ sha256 = "02j4k585jcdbpz4zy8a0bxnxyrgkwaqhwnlzai3izk8k74vmbmbx";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/intero";
@@ -32051,7 +32545,7 @@
interval-list = callPackage ({ cl-lib ? null, dash, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "interval-list";
- version = "20150327.1818";
+ version = "20150327.1218";
src = fetchFromGitHub {
owner = "Fuco1";
repo = "interval-list";
@@ -32059,7 +32553,7 @@
sha256 = "1zv6m24ryls9hvla3hf8wzp6r7fzbxa1lzr1mb0wz0s292l38wjz";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/interval-list";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/afee0fed80f4fa444116b12653c034d760f5f1fb/recipes/interval-list";
sha256 = "0926z3lxkmpxalpq7hj355cjzbgpdiw7z4s8xdrpa1pi818d35zf";
name = "interval-list";
};
@@ -32072,7 +32566,7 @@
interval-tree = callPackage ({ dash, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "interval-tree";
- version = "20130325.1507";
+ version = "20130325.907";
src = fetchFromGitHub {
owner = "Fuco1";
repo = "interval-tree";
@@ -32080,7 +32574,7 @@
sha256 = "0fqnn9xhrc9hkaiziafjgg288l6m05416z9kz8l5845fnqsb7pb3";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/interval-tree";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/ca0f4b62aee7ff7c4457da29fd25860a5c768319/recipes/interval-tree";
sha256 = "13zynac3h50x68f1ja72kqdrapjks2zmgqd4g7qwscq92mmh60i9";
name = "interval-tree";
};
@@ -32093,7 +32587,7 @@
io-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "io-mode";
- version = "20140814.1221";
+ version = "20140814.521";
src = fetchFromGitHub {
owner = "superbobry";
repo = "io-mode";
@@ -32101,7 +32595,7 @@
sha256 = "10xpxmbzhmi0lmby2rpmxrbr3qf1vlbif2inmfsvkj85wyh8a7rp";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/io-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/29ac993c86f992a452784c75c1511d15c4718c91/recipes/io-mode";
sha256 = "1fpiml7lvbl4s2xw4wk2y10iifvfza24kd9j8qvi1bgd85qkx42q";
name = "io-mode";
};
@@ -32114,7 +32608,7 @@
io-mode-inf = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "io-mode-inf";
- version = "20140128.2034";
+ version = "20140128.1334";
src = fetchFromGitHub {
owner = "slackorama";
repo = "io-emacs";
@@ -32122,7 +32616,7 @@
sha256 = "1ard88kc13c57y9zdkyr012w8rdrwahz8a3fb5v6hwqymg16m20s";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/io-mode-inf";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/df121fc9f71af1d060c83555ec611c422cbe8d0d/recipes/io-mode-inf";
sha256 = "0hwhvf1qwkmzzlzdda1flw6p1jjh9rzxsfwm2sc4795ac2xm6dhc";
name = "io-mode-inf";
};
@@ -32135,7 +32629,7 @@
ioccur = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "ioccur";
- version = "20130822.748";
+ version = "20130822.48";
src = fetchFromGitHub {
owner = "thierryvolpiatto";
repo = "ioccur";
@@ -32143,7 +32637,7 @@
sha256 = "1rz5wf19lg1lnm0h73ynhb0vl3c99k7vpipay2f8jls24pv60bra";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ioccur";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/308c27227795560adf8c979ba1d046286549843d/recipes/ioccur";
sha256 = "1a9iy6x4lkm4wgkcb0pv86c2kvpq8ymrc4ssp109r67kwqw7lrr6";
name = "ioccur";
};
@@ -32156,7 +32650,7 @@
iodine-theme = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "iodine-theme";
- version = "20151031.1739";
+ version = "20151031.1139";
src = fetchFromGitHub {
owner = "srdja";
repo = "iodine-theme";
@@ -32164,7 +32658,7 @@
sha256 = "14zfxa8fc7h4rkz1hyplwf4q2lga3l5dd7a2xq5kk0kvf2fs4mk3";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/iodine-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/6893ce6309f1e3b3457c99e84611044e653b827a/recipes/iodine-theme";
sha256 = "05mnq0bgcla0pxsgywpvcdgd4sk2xr7bjlp87l0dx8j121vqripj";
name = "iodine-theme";
};
@@ -32177,7 +32671,7 @@
iplayer = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "iplayer";
- version = "20150101.1155";
+ version = "20150101.455";
src = fetchFromGitHub {
owner = "csrhodes";
repo = "iplayer-el";
@@ -32185,7 +32679,7 @@
sha256 = "043dnij48zdyg081sa7y64lm35z7zvrv8gcymv3l3a98r1yhy3v6";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/iplayer";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/6e9a97667365f1c30f53a6aeeb7b909a78888eb1/recipes/iplayer";
sha256 = "0wnxvdlnvlmspqsaqx0ldw8j03qjckkqzvx3cbpc2yfs55pm3p7r";
name = "iplayer";
};
@@ -32198,7 +32692,7 @@
ipretty = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "ipretty";
- version = "20140407.720";
+ version = "20140407.20";
src = fetchFromGitHub {
owner = "steckerhalter";
repo = "ipretty";
@@ -32206,7 +32700,7 @@
sha256 = "0skyd9c7pz68v17aj3h47ralszbmc4gqg552q8jpimcjd1lacc7l";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ipretty";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/0a28fb8952b3827e857d49b1366ddfbc3a266813/recipes/ipretty";
sha256 = "1zysip6cb8s4nzsxiwk052gq6higz2xnd376r9wxmgj7w8him2c4";
name = "ipretty";
};
@@ -32219,7 +32713,7 @@
ir-black-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "ir-black-theme";
- version = "20130303.855";
+ version = "20130303.155";
src = fetchFromGitHub {
owner = "jmdeldin";
repo = "ir-black-theme.el";
@@ -32227,7 +32721,7 @@
sha256 = "1cy9xwhswj9vahg8zr16r2crm2mm3vczqs73gc580iidasb1q1i2";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ir-black-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/5e725582bc322d03c9dca2b22e8606444fd8753c/recipes/ir-black-theme";
sha256 = "1qpq9zbv63ywzk5mlr8x53g3rn37k0mdv6x1l1hcd90gka7vga9v";
name = "ir-black-theme";
};
@@ -32240,7 +32734,7 @@
iregister = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "iregister";
- version = "20150515.2307";
+ version = "20150515.1607";
src = fetchFromGitHub {
owner = "atykhonov";
repo = "iregister.el";
@@ -32248,7 +32742,7 @@
sha256 = "1ch610b3d0x3nxglp749305syliivamc108rgv9if4ihb67gp8b5";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/iregister";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/a12a51873444b84765758e18c9cf24d85a200e44/recipes/iregister";
sha256 = "0iq1nlj5czi4nblrszfv3grkl1fni7blh8bhcfccidms8v9r3mdm";
name = "iregister";
};
@@ -32260,13 +32754,13 @@
}) {};
irfc = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild {
pname = "irfc";
- version = "20130824.1407";
+ version = "20130824.707";
src = fetchurl {
url = "https://www.emacswiki.org/emacs/download/irfc.el";
sha256 = "197ybqwbj8qjh2p9pkf5mvqnrkpcgmv8c5s2gvl6msyrabk0mnca";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/irfc";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/0b4f2dc79231b165bd3b03a728e2b872ed6c50c1/recipes/irfc";
sha256 = "0186l6zk5l427vjvmjvi0xhwk8a4fjhsvw9kd0yw88q3ggpdl25i";
name = "irfc";
};
@@ -32279,15 +32773,15 @@
irony = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, json ? null, lib, melpaBuild }:
melpaBuild {
pname = "irony";
- version = "20160531.2118";
+ version = "20160628.1529";
src = fetchFromGitHub {
owner = "Sarcasm";
repo = "irony-mode";
- rev = "6636e2ef4816d0cfa8771259a68f7385d056000c";
- sha256 = "0lchahb15j77maabav729ins3dxw7991zq4p8an1yx7dh86r32wp";
+ rev = "00b0b58456bd4adf69992b4148c59b1c73f3997b";
+ sha256 = "0k3q7sb12zbzdhz94h5ywx0n2pgkvb4qjwnczlgafilxsrxx3whw";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/irony";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/d2b6a8d57b192325dcd30fddc9ff8dd1516ad680/recipes/irony";
sha256 = "1xcxrdrs7imi31nxpszgpaywq4ivni75hrdl4zzrf103xslqpl8a";
name = "irony";
};
@@ -32300,7 +32794,7 @@
irony-eldoc = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, irony, lib, melpaBuild }:
melpaBuild {
pname = "irony-eldoc";
- version = "20141227.719";
+ version = "20141227.19";
src = fetchFromGitHub {
owner = "ikirill";
repo = "irony-eldoc";
@@ -32308,7 +32802,7 @@
sha256 = "01fjpfixfcca01a5fnnpd2wga4j30p0kwhbai25prvib4qcp1kqn";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/irony-eldoc";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/fc42459d5c1671bd478d781339f2572b3de2e7d0/recipes/irony-eldoc";
sha256 = "03m0h13jd37vfvn4mavaq3vbzx4x0lklbs0mbc29zaz8pwqlcwz6";
name = "irony-eldoc";
};
@@ -32321,7 +32815,7 @@
isearch-dabbrev = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "isearch-dabbrev";
- version = "20141224.722";
+ version = "20141224.22";
src = fetchFromGitHub {
owner = "Dewdrops";
repo = "isearch-dabbrev";
@@ -32329,7 +32823,7 @@
sha256 = "17d0816awadvsw1qc7r0p6ira75jmgxaj9hsk9ypayxsaf6ynyrb";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/isearch-dabbrev";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/b9dfc7c1112bac8744910c58f77a98a901fd8065/recipes/isearch-dabbrev";
sha256 = "1hl7zl5vjcsk3z452874g4nfcnmna8m2242dc9cgpl5jddzwqa7x";
name = "isearch-dabbrev";
};
@@ -32341,13 +32835,13 @@
}) {};
isearch-plus = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild {
pname = "isearch-plus";
- version = "20160227.2317";
+ version = "20160227.1617";
src = fetchurl {
url = "https://www.emacswiki.org/emacs/download/isearch+.el";
sha256 = "00m4kh2j4a2rqlagz4b5wdhnrk266whbncwkjbxx0rlxzvsi5skh";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/isearch+";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/8a847ee5f4c4206b48cb164c49e9e82a266a0730/recipes/isearch+";
sha256 = "1rzlsf08nmc3p3vhpwbiy8cgnnl2c10xrnsr2rlpv0g2kxkrd69r";
name = "isearch-plus";
};
@@ -32359,13 +32853,13 @@
}) {};
isearch-prop = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild {
pname = "isearch-prop";
- version = "20151231.2307";
+ version = "20151231.1607";
src = fetchurl {
url = "https://www.emacswiki.org/emacs/download/isearch-prop.el";
sha256 = "1i1ypganr2ivwgi0vgjihgk1s4yglwj8nbqnqjiiwdywf8g5hcmr";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/isearch-prop";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/a5d15f875b0080b12ce45cf696c581f6bbf061ba/recipes/isearch-prop";
sha256 = "1z9y88b23m4ffil8p3wcq61q1fiyqjxphyd3wacs5fnc53mdzad9";
name = "isearch-prop";
};
@@ -32378,7 +32872,7 @@
isearch-symbol-at-point = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "isearch-symbol-at-point";
- version = "20130729.21";
+ version = "20130728.1721";
src = fetchFromGitHub {
owner = "re5et";
repo = "isearch-symbol-at-point";
@@ -32386,7 +32880,7 @@
sha256 = "09z49850c32x0rchxg203cxg504xi2b6cjgnd0i4axcs5fmq7gv9";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/isearch-symbol-at-point";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/5733de00a1800645674e83c5e21c80f2890c4e7c/recipes/isearch-symbol-at-point";
sha256 = "0j5fr7qdvpd5b096h5a83fz8sh9wybdnsgix6v94gv8lkzdsqkr8";
name = "isearch-symbol-at-point";
};
@@ -32399,7 +32893,7 @@
isend-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "isend-mode";
- version = "20130419.1158";
+ version = "20130419.458";
src = fetchFromGitHub {
owner = "ffevotte";
repo = "isend-mode.el";
@@ -32407,7 +32901,7 @@
sha256 = "022j39r2vvppnh3p5rp9i4cgc3lg24ksjcmcjmbmna1vf624izn0";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/isend-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/8ef6e4dab78a4c333647a85ed07a81da8083ec0c/recipes/isend-mode";
sha256 = "0sk80a08ny9vqw94klqfgii297qm633000wlcldha76ip8viikdv";
name = "isend-mode";
};
@@ -32420,7 +32914,7 @@
isgd = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "isgd";
- version = "20150414.1136";
+ version = "20150414.436";
src = fetchFromGitHub {
owner = "chmouel";
repo = "isgd.el";
@@ -32428,7 +32922,7 @@
sha256 = "09hx28lmldm7z3x22a0qx34id09fdp3z61pdr61flgny213q1ach";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/isgd";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/d5ff75b269fd57c5822277b9ed850c69b626f1a5/recipes/isgd";
sha256 = "0yc9mkjzj3w64f48flnjvd193mk9gndrrqbxz3cvmvq3vgahhzyi";
name = "isgd";
};
@@ -32441,7 +32935,7 @@
iss-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "iss-mode";
- version = "20141001.2113";
+ version = "20141001.1413";
src = fetchFromGitHub {
owner = "rasmus-toftdahl-olesen";
repo = "iss-mode";
@@ -32449,7 +32943,7 @@
sha256 = "0992lzgar0kz9i1sk5vz17q9qzfgl8fkyxa1q0hmhgnpjf503cnj";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/iss-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/ecc9f618b9f065f593b91c1c1221a550ab752bae/recipes/iss-mode";
sha256 = "1my4vi1x07hg0dva97i685lx6m6fcbfk16j1zy93zriyd7z5plkc";
name = "iss-mode";
};
@@ -32462,7 +32956,7 @@
itail = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "itail";
- version = "20151113.1735";
+ version = "20151113.1035";
src = fetchFromGitHub {
owner = "re5et";
repo = "itail";
@@ -32470,7 +32964,7 @@
sha256 = "1az986mk8j8hyvr1mi9hirixwcd73jcqkjsw4xy34vjbwxi122r9";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/itail";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/6b810bf1deeb79064144d8b684fab336686018ef/recipes/itail";
sha256 = "0mcyly88a3c15hl3wll56agpdsyvd26r501h0v64lasfr4k634m7";
name = "itail";
};
@@ -32483,7 +32977,7 @@
itasca = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "itasca";
- version = "20160406.1442";
+ version = "20160406.742";
src = fetchFromGitHub {
owner = "jkfurtney";
repo = "itasca-emacs";
@@ -32491,7 +32985,7 @@
sha256 = "1174f75p3rkq812gl2rs1x51nqbz4fqxwsbrd7djh1vkd2zii3aw";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/itasca";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/afcd7ab6f3c9ac51a9cd84b30b5f12b7d259386a/recipes/itasca";
sha256 = "01075ad0sb5q7aql6j5wmjdk2qhdgbbm5xb0ikrnl7rzc1afvv6j";
name = "itasca";
};
@@ -32504,7 +32998,7 @@
iterator = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "iterator";
- version = "20160406.2106";
+ version = "20160406.1406";
src = fetchFromGitHub {
owner = "thierryvolpiatto";
repo = "iterator";
@@ -32512,7 +33006,7 @@
sha256 = "006lw8zjxz0702wlrs0nb0ijwh5air3yc3cam7dbkyy7mh632vhi";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/iterator";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/66aa4c3b43083a0098ee3163005dcc36d7251146/recipes/iterator";
sha256 = "17q10fw6y0icsv6vv9n968bwmbjlihrpkkyw62d1kfxhs9yw659z";
name = "iterator";
};
@@ -32525,7 +33019,7 @@
ivariants = callPackage ({ emacs, fetchFromGitHub, fetchurl, ivs-edit, lib, melpaBuild }:
melpaBuild {
pname = "ivariants";
- version = "20140721.627";
+ version = "20140720.2327";
src = fetchFromGitHub {
owner = "kawabata";
repo = "emacs-ivariants";
@@ -32533,7 +33027,7 @@
sha256 = "12nqpzcmz724wpk8p16lc3z26rxma3wp6pf6dvrsqagnlixrs9si";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ivariants";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/4caff7dc7c8b328c21a3c3cb51c505c21f044ee7/recipes/ivariants";
sha256 = "00fgcm62g4fw4306lw9ld2k7w0c358fcbkxn969k5p009g7pk5bw";
name = "ivariants";
};
@@ -32546,7 +33040,7 @@
ivs-edit = callPackage ({ cl-lib ? null, dash, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "ivs-edit";
- version = "20140720.1246";
+ version = "20140720.546";
src = fetchFromGitHub {
owner = "kawabata";
repo = "ivs-edit";
@@ -32554,7 +33048,7 @@
sha256 = "1926pyfsbr6j7cn3diq8ibs0db94rgsf0aifvbqrqp4grs85pkva";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ivs-edit";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/7fd59ccf003a7fc4165dc7e34c1648e85abe378f/recipes/ivs-edit";
sha256 = "0gzhvzrfk17j2vwlg82f5ifk4dcfc1yv7barcij38ckran8cqmb2";
name = "ivs-edit";
};
@@ -32567,15 +33061,15 @@
ivy = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "ivy";
- version = "20160603.1710";
+ version = "20160703.1015";
src = fetchFromGitHub {
owner = "abo-abo";
repo = "swiper";
- rev = "c960de51ce4e868daedb91e523ff6267a3113c3a";
- sha256 = "0zlcfyw7wi5djg54bzxnyqnqsf5pa2c3v96bas76n08k9fazk9m8";
+ rev = "aaad35472a5b74dfaeca93aa0de2327cf06ffe3d";
+ sha256 = "1f570vxp5gp28wpxq92050n6vx0lvz8288x4sp8pfpizz9dyxd9p";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ivy";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/06c24112a5e17c423a4d92607356b25eb90a9a7b/recipes/ivy";
sha256 = "0xf5p91r2ljl93wbr5wbgnb4hzhs00wkaf4fmdlf31la8xwwp5ci";
name = "ivy";
};
@@ -32588,7 +33082,7 @@
ivy-bibtex = callPackage ({ biblio, cl-lib ? null, dash, f, fetchFromGitHub, fetchurl, lib, melpaBuild, parsebib, s, swiper }:
melpaBuild {
pname = "ivy-bibtex";
- version = "20160423.100";
+ version = "20160422.1800";
src = fetchFromGitHub {
owner = "tmalsburg";
repo = "helm-bibtex";
@@ -32596,7 +33090,7 @@
sha256 = "1zrs1gk95mna1kipgrq8mfhk0gqimvsb4b583f900fh86019nn1l";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ivy-bibtex";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/c23c09225c57a9b9abe0a0a770a9184ae2e58f7c/recipes/ivy-bibtex";
sha256 = "0qni48s09lgzqr98r49dhrzpfqp9yfwga11h7vhqclscjvlalpc2";
name = "ivy-bibtex";
};
@@ -32609,15 +33103,15 @@
ivy-erlang-complete = callPackage ({ dash, emacs, erlang, fetchFromGitHub, fetchurl, ivy, lib, melpaBuild, s }:
melpaBuild {
pname = "ivy-erlang-complete";
- version = "20160603.821";
+ version = "20160622.121";
src = fetchFromGitHub {
owner = "s-kostyaev";
repo = "ivy-erlang-complete";
- rev = "39bff0acdbf2de779879cca860973a86d192a864";
- sha256 = "07qwa1rz1q1kvvhsbkr3jr3jfchg46av9nw9m2x6j19d8y5m8jxh";
+ rev = "a9c91b008f155b3fde7e50e6b7845fe11fdb1168";
+ sha256 = "0ghib5sldy29057gwk5pf39ppx7s33kcs0mw2w2rasfvpv7i440f";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ivy-erlang-complete";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/d0ec649f7adc4c82c4d67656891f06c9bc50ba9c/recipes/ivy-erlang-complete";
sha256 = "10r1497jp0k4hasdmih1d7qv4w4435af5rib2wl6x4jx98s5vzvh";
name = "ivy-erlang-complete";
};
@@ -32630,7 +33124,7 @@
ivy-gitlab = callPackage ({ dash, fetchFromGitHub, fetchurl, gitlab, ivy, lib, melpaBuild, s }:
melpaBuild {
pname = "ivy-gitlab";
- version = "20160519.1212";
+ version = "20160519.512";
src = fetchFromGitHub {
owner = "nlamirault";
repo = "emacs-gitlab";
@@ -32638,7 +33132,7 @@
sha256 = "0ywjrgafpl4cnrykx9yysazr7hkd2pxk67h065f8z3mid6cgh1wa";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ivy-gitlab";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/35d4d4f22e4c567954287b2a1cabcb595497095a/recipes/ivy-gitlab";
sha256 = "0gbwsmb6my0327f9j96s20mybnjaw9yaiwhs3sy3vav0qww91z1y";
name = "ivy-gitlab";
};
@@ -32651,15 +33145,15 @@
ivy-hydra = callPackage ({ emacs, fetchFromGitHub, fetchurl, hydra, ivy, lib, melpaBuild }:
melpaBuild {
pname = "ivy-hydra";
- version = "20160517.2249";
+ version = "20160517.1549";
src = fetchFromGitHub {
owner = "abo-abo";
repo = "swiper";
- rev = "c960de51ce4e868daedb91e523ff6267a3113c3a";
- sha256 = "0zlcfyw7wi5djg54bzxnyqnqsf5pa2c3v96bas76n08k9fazk9m8";
+ rev = "aaad35472a5b74dfaeca93aa0de2327cf06ffe3d";
+ sha256 = "1f570vxp5gp28wpxq92050n6vx0lvz8288x4sp8pfpizz9dyxd9p";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ivy-hydra";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/06c24112a5e17c423a4d92607356b25eb90a9a7b/recipes/ivy-hydra";
sha256 = "1xv8nfi6dzhx868h44ydq4f5jmsa7rbqfa7jk8g0z0ifv477hrvx";
name = "ivy-hydra";
};
@@ -32672,7 +33166,7 @@
ix = callPackage ({ fetchFromGitHub, fetchurl, grapnel, lib, melpaBuild }:
melpaBuild {
pname = "ix";
- version = "20131027.1729";
+ version = "20131027.1129";
src = fetchFromGitHub {
owner = "theanalyst";
repo = "ix.el";
@@ -32680,7 +33174,7 @@
sha256 = "069alh9vs6is3hvbwxbwr9g8qq9md5c92wg5bfswi99yciqdvc4i";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ix";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/3a9d68fcf5bddbf07909b77682474dc592077051/recipes/ix";
sha256 = "1fl76dk8vgw3mrh5iz99lrsllwya6ij9d1lj3szcrs4qnj0b5ql3";
name = "ix";
};
@@ -32693,7 +33187,7 @@
iy-go-to-char = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "iy-go-to-char";
- version = "20141029.1646";
+ version = "20141029.1046";
src = fetchFromGitHub {
owner = "doitian";
repo = "iy-go-to-char";
@@ -32701,7 +33195,7 @@
sha256 = "0bcm3y3qvsrk7gd23xfzz5bgcnm3h4l63w9hv8cr9n86sm8475m1";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/iy-go-to-char";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/0fda2b54a0ff0b6fc3bd6d20cfcbbf63cae5380f/recipes/iy-go-to-char";
sha256 = "10szn9y7gl8947p3f9w6p6vzjf1a9cjif9mbj3qdqx4vbsl9mqpz";
name = "iy-go-to-char";
};
@@ -32714,7 +33208,7 @@
j-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "j-mode";
- version = "20140702.1709";
+ version = "20140702.1009";
src = fetchFromGitHub {
owner = "zellio";
repo = "j-mode";
@@ -32722,7 +33216,7 @@
sha256 = "07kbicf760nw4qlb2lkf1ns8yzqy0r5jqqwqjbsnqxx4sm52hml9";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/j-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/410134ab2145adad3648b1024bfe4f6801df82c9/recipes/j-mode";
sha256 = "0f9lsr9hjhdvmzx565ivlncfzb4iq4rjjn6a41053cjy50bl066i";
name = "j-mode";
};
@@ -32735,14 +33229,14 @@
jabber = callPackage ({ fetchgit, fetchurl, fsm, lib, melpaBuild }:
melpaBuild {
pname = "jabber";
- version = "20160124.1452";
+ version = "20160124.752";
src = fetchgit {
url = "git://git.code.sf.net/p/emacs-jabber/git";
rev = "98dc8e429ba6f79065f1c9fc3878d92314d4b510";
- sha256 = "138mj06dd057nw617n5lanzg3q8y0iyq4c7cc3378a3sj4nmqkcr";
+ sha256 = "0v1w7hk0s0a971248chi4nzsppjwrhxsfjbvi4yklnylm2hm2y3s";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/jabber";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/cff77a688d51ff2e2f03389593465990089ce83d/recipes/jabber";
sha256 = "1g5pc80n3cd5pzs3hmpbnmxbldwakd72pdn3vvb0h26j9v073pa8";
name = "jabber";
};
@@ -32755,7 +33249,7 @@
jabber-otr = callPackage ({ emacs, fetchFromGitHub, fetchurl, jabber, lib, melpaBuild }:
melpaBuild {
pname = "jabber-otr";
- version = "20150918.1344";
+ version = "20150918.644";
src = fetchFromGitHub {
owner = "legoscia";
repo = "emacs-jabber-otr";
@@ -32763,7 +33257,7 @@
sha256 = "0yv86nadp6dfzl05vhk8c1kahg2pcrhfmd3mnfjrngp7ksac5lyf";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/jabber-otr";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/9219f685c18c8e799cae3dc43cc1c740c0f67733/recipes/jabber-otr";
sha256 = "114z5bwhkza03yvfa4nmicaih2jdq83lh6micxjimpddsc8fjgi0";
name = "jabber-otr";
};
@@ -32776,14 +33270,14 @@
jack-connect = callPackage ({ fetchgit, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "jack-connect";
- version = "20141207.1307";
+ version = "20141207.607";
src = fetchgit {
url = "https://bitbucket.org/sbarbit/jack-connect";
rev = "b00658dfe3d5d67431c18ffa693d5a3705067ba0";
sha256 = "1a33z07m9rh42pbcjv7sd640gf6jjzs4yn6idx52g8i5vzns0dkh";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/jack-connect";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/c0f5c5f8051f3046baebb08f41b0ca0bf0d73c85/recipes/jack-connect";
sha256 = "1ssl126wihaf8m2f6ms0l5ai6pz5wn348a09k6l0h3jfww032g1q";
name = "jack-connect";
};
@@ -32796,7 +33290,7 @@
jade-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "jade-mode";
- version = "20160525.1641";
+ version = "20160525.941";
src = fetchFromGitHub {
owner = "brianc";
repo = "jade-mode";
@@ -32804,7 +33298,7 @@
sha256 = "0p6pfxbl98kkwa3lgx82h967w4p0wbd9s96gvs72d74ryan07ij1";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/jade-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/877b5a3e612e1b1d6d51e60c66b0b79f231abdb2/recipes/jade-mode";
sha256 = "156j0d9wx6hrhph0nsjsi1jha4h65rcbrbff1j2yr8vdsszjrs94";
name = "jade-mode";
};
@@ -32817,7 +33311,7 @@
jammer = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "jammer";
- version = "20160310.959";
+ version = "20160310.259";
src = fetchFromGitHub {
owner = "wasamasa";
repo = "jammer";
@@ -32825,7 +33319,7 @@
sha256 = "1gnj8vmpxds2wdkz49swiby5vq2hvbf64q5hhvwymfdvwlk54v55";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/jammer";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/cb82a6e936e2d5d1dd5930b600ede52dac3ceb33/recipes/jammer";
sha256 = "01c4bii7gswhp6z9dgx4bhvsywiwbbdv7mg1zj6vp1530l74zx6z";
name = "jammer";
};
@@ -32838,7 +33332,7 @@
japanese-holidays = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "japanese-holidays";
- version = "20150209.237";
+ version = "20150208.1937";
src = fetchFromGitHub {
owner = "emacs-jp";
repo = "japanese-holidays";
@@ -32846,7 +33340,7 @@
sha256 = "1mwm9wpnxqq3nw7fl0jf40a92ha51yd95vvr58zllhbxdpy3q9pv";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/japanese-holidays";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/80088028a1322e99e5fc50bebe08fcb6d1a2a44d/recipes/japanese-holidays";
sha256 = "0pxpkikkn2ys0kgf3lbrdxv8iym50h5ik2xzza0qk7cw1v93jza9";
name = "japanese-holidays";
};
@@ -32859,7 +33353,7 @@
japanlaw = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "japanlaw";
- version = "20160129.920";
+ version = "20160129.220";
src = fetchFromGitHub {
owner = "mhayashi1120";
repo = "japanlaw.el";
@@ -32867,7 +33361,7 @@
sha256 = "1lrsm282lhp7pf0gwr3aad2228lvpqnqs1qdv2xk0zljqnqc0bhx";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/japanlaw";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/6192e1db76f017c3b1315453144cffc47cdd495d/recipes/japanlaw";
sha256 = "1pxss1mjk5660k80r1xqgslnbrsr6r4apgp9abjwjfxpg4f6d0sa";
name = "japanlaw";
};
@@ -32880,7 +33374,7 @@
jape-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "jape-mode";
- version = "20140903.1706";
+ version = "20140903.1006";
src = fetchFromGitHub {
owner = "tanzoniteblack";
repo = "jape-mode";
@@ -32888,7 +33382,7 @@
sha256 = "0xmv7gw5xms6nhjcl51cw33yvjgw0c6bpnlyca3195x7g34sg1zj";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/jape-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/b034024bd31c4be96c478a951b0ef63d8f89a1b7/recipes/jape-mode";
sha256 = "1gd685r86h0kr36msw81gfgwv7d35hihz6h0jkc6vd22wf6qc3ly";
name = "jape-mode";
};
@@ -32901,7 +33395,7 @@
jar-manifest-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "jar-manifest-mode";
- version = "20160501.226";
+ version = "20160430.1926";
src = fetchFromGitHub {
owner = "omajid";
repo = "jar-manifest-mode";
@@ -32909,7 +33403,7 @@
sha256 = "1p7w3hq2cyn1245q0zn8m7hpjs8nbp7kqfmd2gzi2k209czipy21";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/jar-manifest-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/ed68a9120d4f1e2895606938d1a117fb01abd1bc/recipes/jar-manifest-mode";
sha256 = "0kx358m3p23r8m7z45454i62ijmdlf4mljlbqc20jkihfanr6wqd";
name = "jar-manifest-mode";
};
@@ -32922,7 +33416,7 @@
jasminejs-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "jasminejs-mode";
- version = "20150527.205";
+ version = "20150526.1905";
src = fetchFromGitHub {
owner = "stoltene2";
repo = "jasminejs-mode";
@@ -32930,7 +33424,7 @@
sha256 = "1zcrxijcwqfs6r1cd6w4jq8g3ly0a69nf0cbx93w5v86x2kjpz0l";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/jasminejs-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/8e58e8c102f6110f9a8bda47a4601197db47e743/recipes/jasminejs-mode";
sha256 = "1a70j3aglrwmaw9g8m99sxad2vs53y4swxh97gqjsgx1rrx03g52";
name = "jasminejs-mode";
};
@@ -32943,7 +33437,7 @@
jaunte = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "jaunte";
- version = "20130413.1119";
+ version = "20130413.419";
src = fetchFromGitHub {
owner = "kawaguchi";
repo = "jaunte.el";
@@ -32951,7 +33445,7 @@
sha256 = "1bv0al89wlwdv3bhasxnwhsv84phgnixclgrh4l52385rjn8v53f";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/jaunte";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/cae2ac3513e371a256be0f1a7468e38e686c2487/recipes/jaunte";
sha256 = "0chqiai7fv1idga71gc5dw4rdv1rblg5rrbdijh3glyi8yfr4snf";
name = "jaunte";
};
@@ -32964,7 +33458,7 @@
java-imports = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, pcache, s }:
melpaBuild {
pname = "java-imports";
- version = "20160312.15";
+ version = "20160311.1715";
src = fetchFromGitHub {
owner = "dakrone";
repo = "emacs-java-imports";
@@ -32972,7 +33466,7 @@
sha256 = "1wk9i43b147bjcvhq27vcqxi6y1yl6w3n4i2sw3krk4vxcm1mwnm";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/java-imports";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/5f6f4e4c14c422c2066f2200bb9b8f35e2ecc896/recipes/java-imports";
sha256 = "1waz6skyrm1n8wpc0pwa652l11wz8qz1m89mqxk27k3lwyd84n98";
name = "java-imports";
};
@@ -32985,15 +33479,15 @@
java-snippets = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, yasnippet }:
melpaBuild {
pname = "java-snippets";
- version = "20160329.510";
+ version = "20160626.2152";
src = fetchFromGitHub {
owner = "nekop";
repo = "yasnippet-java-mode";
- rev = "de118b991a1a770283777146c7b437ee1a1e4f01";
- sha256 = "0w67vjpazbrgd9j5xzsrj3m45iw6lyqkgxx1ap5afvgyn5hqhkih";
+ rev = "738523debb1018439bda0ce70e00248154a600ac";
+ sha256 = "0k9iq8f5ngx80r965hc9bzmaa7y4vwn4vx10v1v9f46h48kmsg0q";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/java-snippets";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/ec561bb8ee3d6df0d493c20497dd8c5897bf1e5e/recipes/java-snippets";
sha256 = "0bsmp6sc3khdadkmwqy8khz8kzqijcsv70gimm2cs1kwnbyj6pfp";
name = "java-snippets";
};
@@ -33006,7 +33500,7 @@
javadoc-lookup = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "javadoc-lookup";
- version = "20160214.131";
+ version = "20160213.1831";
src = fetchFromGitHub {
owner = "skeeto";
repo = "javadoc-lookup";
@@ -33014,7 +33508,7 @@
sha256 = "16gywcma1s8kslwznlxwlx0xj0gs5g31637kb74vfdplk48f04zj";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/javadoc-lookup";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/3d7d5f55c7d90181cc4eff68bb472f772f070a93/recipes/javadoc-lookup";
sha256 = "1fffs0iqkk9rg5vbxifvn09j4i2751p81bzcvy5fslr3r1r2nv79";
name = "javadoc-lookup";
};
@@ -33027,7 +33521,7 @@
javap-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "javap-mode";
- version = "20120223.2308";
+ version = "20120223.1608";
src = fetchFromGitHub {
owner = "hiredman";
repo = "javap-mode";
@@ -33035,7 +33529,7 @@
sha256 = "070r4mg4v937n4h2bmzdbn3vsmmq7ijz69nankqs761jxv5gcwlg";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/javap-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/009ce356c410d980613f21fa7c9f1c97ee9af76f/recipes/javap-mode";
sha256 = "19p39l4nwgxm52yimy4j6l43845cpk8g5qdrldlwfxd7dvay09ay";
name = "javap-mode";
};
@@ -33048,7 +33542,7 @@
jaword = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, tinysegmenter }:
melpaBuild {
pname = "jaword";
- version = "20150325.1518";
+ version = "20150325.918";
src = fetchFromGitHub {
owner = "zk-phi";
repo = "jaword";
@@ -33056,7 +33550,7 @@
sha256 = "1430xwd86fdlv1gzkdlp9a0x3w4blbplw24z0m7y8b0j9rhl4fka";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/jaword";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/00fe123ddc7fbcb9fd2b97e8a9fc8a8c5fabbf7f/recipes/jaword";
sha256 = "05pzh99zfl8n3p6lxdd9abr52m24hqcb105458i1cy0ra840bf4d";
name = "jaword";
};
@@ -33069,15 +33563,15 @@
jazz-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "jazz-theme";
- version = "20160412.1936";
+ version = "20160629.1055";
src = fetchFromGitHub {
owner = "donderom";
repo = "jazz-theme";
- rev = "da91369cbf72b08cd11f6f3dee843ff3efe0fed7";
- sha256 = "0dikmd1w6jh152hvawgvzlpv87xqnf669a8x427rbshnbj2bly64";
+ rev = "496ab006474f34db4abcdc41d36bc8369d7cc50b";
+ sha256 = "0dsvmzhd0m4lni11ay95wz6jrnpv9p5admxr77p83mkw9vv46km9";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/jazz-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/da25345df9d8d567541ed6b0ec832310cde67115/recipes/jazz-theme";
sha256 = "0ad8kvrmd3gyb8wfghcl4r3kwzplk5gxlw3p23wsbx6c2xq6xr7g";
name = "jazz-theme";
};
@@ -33090,7 +33584,7 @@
jbeans-theme = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "jbeans-theme";
- version = "20160406.2157";
+ version = "20160406.1457";
src = fetchFromGitHub {
owner = "synic";
repo = "jbeans-emacs";
@@ -33098,7 +33592,7 @@
sha256 = "1gns0y05kyxl2fcyiawgdx2hi0vslz97kvirbckg19id50cv9ac1";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/jbeans-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/6dd4bd78795ec7509d8744fec1e80426ce0557ec/recipes/jbeans-theme";
sha256 = "0y7ccycfnpykgzr88968w7dl45qazf8b9zlf7ydw3ghkl4f6lbwl";
name = "jbeans-theme";
};
@@ -33111,15 +33605,15 @@
jdee = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "jdee";
- version = "20160304.1436";
+ version = "20160624.843";
src = fetchFromGitHub {
owner = "jdee-emacs";
repo = "jdee";
- rev = "df9716c27740d4dd0a508bc2948fb633d1d679ee";
- sha256 = "01dcxf47qlp089sf3b23kzaad7zrxzgcxf4s2awcj69ips8zkbik";
+ rev = "a0026ec0efdba87f10b9f007e9bbb3e78f65b7f1";
+ sha256 = "0srs0mhamxpzc1azzmrbnpa5ms5q2ycyd9bc43aq28vgx759abx0";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/jdee";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/92d19f9b3c3163dbac4c0407e90fdfce5bf9008c/recipes/jdee";
sha256 = "1yn8vszj0hs2jwwd4x55f11hs2wrxjjvxpngsj7lkcwax04kkvq3";
name = "jdee";
};
@@ -33132,7 +33626,7 @@
jedi = callPackage ({ auto-complete, emacs, fetchFromGitHub, fetchurl, jedi-core, lib, melpaBuild }:
melpaBuild {
pname = "jedi";
- version = "20160426.656";
+ version = "20160425.2356";
src = fetchFromGitHub {
owner = "tkf";
repo = "emacs-jedi";
@@ -33140,7 +33634,7 @@
sha256 = "1xkzf7p3ws5s5i8aymz60c4vhifchj68595878nc3yrk5zzlhyjr";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/jedi";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/bded1840a39fbf1e014c01276eb2f9c5a4fc218f/recipes/jedi";
sha256 = "1777060q25k9n2g6h1lm5lkki900pmjqkxq72mrk3j19jr4pk9m4";
name = "jedi";
};
@@ -33153,7 +33647,7 @@
jedi-core = callPackage ({ cl-lib ? null, emacs, epc, fetchFromGitHub, fetchurl, lib, melpaBuild, python-environment }:
melpaBuild {
pname = "jedi-core";
- version = "20160502.543";
+ version = "20160501.2243";
src = fetchFromGitHub {
owner = "tkf";
repo = "emacs-jedi";
@@ -33161,7 +33655,7 @@
sha256 = "1xkzf7p3ws5s5i8aymz60c4vhifchj68595878nc3yrk5zzlhyjr";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/jedi-core";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/bded1840a39fbf1e014c01276eb2f9c5a4fc218f/recipes/jedi-core";
sha256 = "0pzi32zdb4g9n4kvpmkdflmqypa7nckmnjq60a3ngym4wlzbb32f";
name = "jedi-core";
};
@@ -33174,7 +33668,7 @@
jedi-direx = callPackage ({ direx, fetchFromGitHub, fetchurl, jedi, lib, melpaBuild }:
melpaBuild {
pname = "jedi-direx";
- version = "20140310.1036";
+ version = "20140310.436";
src = fetchFromGitHub {
owner = "tkf";
repo = "emacs-jedi-direx";
@@ -33182,7 +33676,7 @@
sha256 = "1pgi5vnwz5agrpvy7nwg3gv2nfbbmimhk8dxkg81k6yf1iiqxcap";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/jedi-direx";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/a058c3007e63b2b651689fd17c789f7d69348f83/recipes/jedi-direx";
sha256 = "1y4n4c2imnm3f1q129bvbi4gzk0iazd8qq959gvq9j9fl1aziiz1";
name = "jedi-direx";
};
@@ -33195,7 +33689,7 @@
jekyll-modes = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, polymode }:
melpaBuild {
pname = "jekyll-modes";
- version = "20141117.1414";
+ version = "20141117.714";
src = fetchFromGitHub {
owner = "fred-o";
repo = "jekyll-modes";
@@ -33203,7 +33697,7 @@
sha256 = "0rx72rid7922mhw21j85kxmx0fhpkmkv9jvxmj9izy01xnjbk00c";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/jekyll-modes";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/6667529d56dc35c5c56e4b4a4d1f06b6172df677/recipes/jekyll-modes";
sha256 = "1305f1yg1mamyw3bkzrk5q3q58ihs8f5k9vjknsww5xvrzz3r1si";
name = "jekyll-modes";
};
@@ -33216,7 +33710,7 @@
jenkins = callPackage ({ dash, emacs, fetchFromGitHub, fetchurl, json ? null, lib, melpaBuild }:
melpaBuild {
pname = "jenkins";
- version = "20151115.408";
+ version = "20151114.2108";
src = fetchFromGitHub {
owner = "rmuslimov";
repo = "jenkins.el";
@@ -33224,7 +33718,7 @@
sha256 = "08ywfmsjv3vjqy95hx095kasy8knh3asl7mrlkgmv9wjwnxw45zs";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/jenkins";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/2ed2da33db5eaea1a37f86057da174a45cd37ea5/recipes/jenkins";
sha256 = "0ji42r7p3f3hh643839xf74gb231vr7anycr2xhkga8qy2vwa53s";
name = "jenkins";
};
@@ -33237,7 +33731,7 @@
jenkins-watch = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "jenkins-watch";
- version = "20121005.126";
+ version = "20121004.1826";
src = fetchFromGitHub {
owner = "ataylor284";
repo = "jenkins-watch";
@@ -33245,7 +33739,7 @@
sha256 = "0jayhv8j7b527dimhvcs0d7ax25x7v50dk0k6apisqc23psvkq66";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/jenkins-watch";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/6ddf4de8f3f4c3c1e3682225f3c46c5928e0e75d/recipes/jenkins-watch";
sha256 = "0brgjgbw804x0gf2vq01yv6bd0ilp3x9kvr1nnsqxb9c03ffmb2m";
name = "jenkins-watch";
};
@@ -33258,7 +33752,7 @@
jg-quicknav = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild, s }:
melpaBuild {
pname = "jg-quicknav";
- version = "20160217.535";
+ version = "20160216.2235";
src = fetchFromGitHub {
owner = "jeffgran";
repo = "jg-quicknav";
@@ -33266,7 +33760,7 @@
sha256 = "164wm83av3p2c9dkhpmqrb7plq9ngmnsa5aly3a1xam1cds22hp4";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/jg-quicknav";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/0fda2b54a0ff0b6fc3bd6d20cfcbbf63cae5380f/recipes/jg-quicknav";
sha256 = "1pxyv1nbnqb0s177kczy6b6q4l8d2r52xqhx2rdb0wxdmp6m5x9c";
name = "jg-quicknav";
};
@@ -33279,7 +33773,7 @@
jinja2-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "jinja2-mode";
- version = "20141128.1107";
+ version = "20141128.407";
src = fetchFromGitHub {
owner = "paradoxxxzero";
repo = "jinja2-mode";
@@ -33287,7 +33781,7 @@
sha256 = "0l26wcy496k6xk7q5sf905xir0p73ziy6c44is77854lv3y0z381";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/jinja2-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/b79196cf0dc0b436ff75eabea369a62f92825d9f/recipes/jinja2-mode";
sha256 = "0480fh719r4v7xdwyf4jlg1k36y54i5zrv7gxlhfm66pil75zafx";
name = "jinja2-mode";
};
@@ -33299,13 +33793,13 @@
}) {};
jira = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild {
pname = "jira";
- version = "20131210.1922";
+ version = "20131210.1222";
src = fetchurl {
url = "https://www.emacswiki.org/emacs/download/jira.el";
sha256 = "18b6hdqk59gnqh4ibq8lj59kbsg5gbyfb7vfcvpgmxjikpl3cgkz";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/jira";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/cf9bc672a3553ea7996b72b11c9e979811150b59/recipes/jira";
sha256 = "0cf5zgkxagvka5v6scgyxqx4mz1n7lxbynn3gl2a4s9s64jycsy6";
name = "jira";
};
@@ -33318,7 +33812,7 @@
jira-markup-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "jira-markup-mode";
- version = "20150601.2309";
+ version = "20150601.1609";
src = fetchFromGitHub {
owner = "mnuessler";
repo = "jira-markup-mode";
@@ -33326,7 +33820,7 @@
sha256 = "1ack7dmapva3wc2gm22prd5wd3cmq19sl4xl9f04a3nk2msr6ksx";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/jira-markup-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/e7e0349bff91ed27ad14dfc12178719453a8df55/recipes/jira-markup-mode";
sha256 = "0f3sw41b4wl0aajq0ap66942rb2015d9iks0ss016jgzashw7zsp";
name = "jira-markup-mode";
};
@@ -33339,7 +33833,7 @@
jist = callPackage ({ dash, emacs, fetchFromGitHub, fetchurl, let-alist, lib, magit, melpaBuild, pkg-info, request }:
melpaBuild {
pname = "jist";
- version = "20151229.50";
+ version = "20151228.1750";
src = fetchFromGitHub {
owner = "emacs-pe";
repo = "jist.el";
@@ -33347,7 +33841,7 @@
sha256 = "0mh7990zqrprsa1g9jzpqm666pynlqd2nh9z236zyzykf8d8il8c";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/jist";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/898bfa0b315240ef9335fde24ff0386a4c6c6595/recipes/jist";
sha256 = "11m9li1016cfkm4931h69d7g1dc59lwjl83wy3yipswdg3zlw0ar";
name = "jist";
};
@@ -33360,7 +33854,7 @@
jknav = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "jknav";
- version = "20121006.2225";
+ version = "20121006.1525";
src = fetchFromGitHub {
owner = "aculich";
repo = "jknav.el";
@@ -33368,7 +33862,7 @@
sha256 = "1idby2rjkslw85593qd4zy6an9zz71yzwqc6rck57r54xyfs8mij";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/jknav";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/3673aebf53a7a3d54aee4e979b9dc7e37842f4db/recipes/jknav";
sha256 = "0c0a8plqrlsw8lhmyj9c1lfkj2b48cjkbw9pna8qcizvwgym9089";
name = "jknav";
};
@@ -33381,7 +33875,7 @@
jonprl-mode = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, yasnippet }:
melpaBuild {
pname = "jonprl-mode";
- version = "20151203.1042";
+ version = "20151203.342";
src = fetchFromGitHub {
owner = "david-christiansen";
repo = "jonprl-mode";
@@ -33389,7 +33883,7 @@
sha256 = "1a0091r1xs3fpvg1wynh53xibdsiaf2khz1gp6s8dc45z8r0bclx";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/jonprl-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/d26b6aea2b0567b971c4f013b58b598e9eb76af6/recipes/jonprl-mode";
sha256 = "0763ad65dmpl2l5lw91mlppfdvrjg6ym45brhi8sdwwri1xnyv9z";
name = "jonprl-mode";
};
@@ -33402,7 +33896,7 @@
jq-mode = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "jq-mode";
- version = "20160222.1340";
+ version = "20160222.640";
src = fetchFromGitHub {
owner = "ljos";
repo = "jq-mode";
@@ -33410,7 +33904,7 @@
sha256 = "08wffbljnaxz2sh72vsqpq1lc47mnh4d47fl71dvw4pqs50zp8v0";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/jq-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/318705966e26e58f87b53c115c519db95874ac1c/recipes/jq-mode";
sha256 = "1xvh641pdkvbppb2nzwn1ljdk7sv6laq29kdv09kxaqd89vm0vin";
name = "jq-mode";
};
@@ -33423,7 +33917,7 @@
jquery-doc = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "jquery-doc";
- version = "20150812.958";
+ version = "20150812.258";
src = fetchFromGitHub {
owner = "ananthakumaran";
repo = "jquery-doc.el";
@@ -33431,7 +33925,7 @@
sha256 = "0gh2bgmsbi9lby89ssvl49kpz07jqrfnyg47g6b9xmf5rw42s1z9";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/jquery-doc";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/504d8cfac08f3fcd856610bc2caeb4d4178aeedf/recipes/jquery-doc";
sha256 = "0pyg90izdrb9mvpbz9nx21mp8m3svqjnz1jr8i7wqgfjxsxdklxj";
name = "jquery-doc";
};
@@ -33444,15 +33938,15 @@
js-comint = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, nvm }:
melpaBuild {
pname = "js-comint";
- version = "20160220.1250";
+ version = "20160623.116";
src = fetchFromGitHub {
owner = "redguardtoo";
repo = "js-comint";
- rev = "c4114b41db94ef17720b67cb2b714d670f453cc4";
- sha256 = "1f1zad423q5adycbbh62094m622gl8ncwbr8vxad1a6zcga70cgi";
+ rev = "83978912073d554f3dc1185a8a46222317a90539";
+ sha256 = "0h0dfq2rrnlvdbm39l2wqmhzrps6z6ha65j26bnblwa03jr608l9";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/js-comint";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/bc9d20b95e369e5a73c85a4a9385d3a8f9edd4ca/recipes/js-comint";
sha256 = "0jvkjb0rmh87mf20v6rjapi2j6qv8klixy0y0kmh3shylkni3an1";
name = "js-comint";
};
@@ -33465,7 +33959,7 @@
js-doc = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "js-doc";
- version = "20160209.207";
+ version = "20160208.1907";
src = fetchFromGitHub {
owner = "mooz";
repo = "js-doc";
@@ -33473,7 +33967,7 @@
sha256 = "12kwjkhw5x6jb79m49gbypb6br482bpi73788h71lgl5i3g95s5q";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/js-doc";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/5621f60b3f580db652c347719d004d7168944caa/recipes/js-doc";
sha256 = "0nafqgb4kf8jgrb7ijfcvigq8kf043ki89h61izda4hccm3c42pk";
name = "js-doc";
};
@@ -33486,15 +33980,15 @@
js2-closure = callPackage ({ fetchFromGitHub, fetchurl, js2-mode, lib, melpaBuild }:
melpaBuild {
pname = "js2-closure";
- version = "20160527.1800";
+ version = "20160605.1239";
src = fetchFromGitHub {
owner = "jart";
repo = "js2-closure";
- rev = "c0115ab7a4a5dca71e2c637727c97d1ed1db17ab";
- sha256 = "0p4iqbjzja0lfgcjhqa4z2kld0j5l4n9rbqfyfpj5g4bb1l3lzy4";
+ rev = "37409e4ad1925e48b633c1d424caa2fe94eb9d49";
+ sha256 = "1yjgi0glh4fb4k7z5n216sbfzmxrxnnspmq2r5j6ag7b59qamyym";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/js2-closure";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/61bf3e70ae38a78184f0b373ff6f0db234f51cb2/recipes/js2-closure";
sha256 = "19732bf98lk2ah2ssgkr1ngxx7rz3nhsiw84lsfmydb0vvm4fpk7";
name = "js2-closure";
};
@@ -33507,7 +34001,7 @@
js2-highlight-vars = callPackage ({ fetchFromGitHub, fetchurl, js2-mode, lib, melpaBuild }:
melpaBuild {
pname = "js2-highlight-vars";
- version = "20150914.1008";
+ version = "20150914.308";
src = fetchFromGitHub {
owner = "unhammer";
repo = "js2-highlight-vars.el";
@@ -33515,7 +34009,7 @@
sha256 = "1gad5a18m3jfhnklsj0ka3p2wbihh1yvpcn7mwlmm7cjjxcaly9g";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/js2-highlight-vars";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/5f4a7c90be2e032277ae87b8de36d2e3f6146f09/recipes/js2-highlight-vars";
sha256 = "07bq393g2jy8ydvaqyqn6vdyfvyminvgi239yvwzg5g9a1xjc475";
name = "js2-highlight-vars";
};
@@ -33528,15 +34022,15 @@
js2-mode = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "js2-mode";
- version = "20160529.206";
+ version = "20160703.1221";
src = fetchFromGitHub {
owner = "mooz";
repo = "js2-mode";
- rev = "bc46db59d4966ce98fecbf0d466bdc9e1d90d167";
- sha256 = "0m5a4dqp7cy1322zv2ir27zpg16s7sd25z3j39338nq5hpfrqk0w";
+ rev = "49f9761af75f8df2f73bef61a7742acd8c50d7fb";
+ sha256 = "0czy8022qj930k091z7zrpmiq0drff96b16523s8kdfkm6j6yx5g";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/js2-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/cae2ac3513e371a256be0f1a7468e38e686c2487/recipes/js2-mode";
sha256 = "0f9cj3n55qnlifxwk1yp8n1kfd319jf7qysnkk28xpvglzw24yjv";
name = "js2-mode";
};
@@ -33549,7 +34043,7 @@
js2-refactor = callPackage ({ dash, fetchFromGitHub, fetchurl, js2-mode, lib, melpaBuild, multiple-cursors, s, yasnippet }:
melpaBuild {
pname = "js2-refactor";
- version = "20160525.1013";
+ version = "20160525.313";
src = fetchFromGitHub {
owner = "magnars";
repo = "js2-refactor.el";
@@ -33557,7 +34051,7 @@
sha256 = "0yzlcnana3ildshzmv60vfgfjkmxki42r7waxsmphjz2hcknbmfg";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/js2-refactor";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/8935264dfea9bacc89fef312215624d1ad9fc437/recipes/js2-refactor";
sha256 = "09dcfwpxxyw0ffgjjjaaxbsj0x2nwfrmxy1a05h8ba3r3jl4kl1r";
name = "js2-refactor";
};
@@ -33570,7 +34064,7 @@
js3-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "js3-mode";
- version = "20160515.1750";
+ version = "20160515.1050";
src = fetchFromGitHub {
owner = "thomblake";
repo = "js3-mode";
@@ -33578,7 +34072,7 @@
sha256 = "18c0s3i21b77pi5y86zi7jg9pwxc0h5dzznjiyrig0jab0cksln5";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/js3-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/805a7c7fee2bafd8785813963bf91ac1ca417fd1/recipes/js3-mode";
sha256 = "12s5qf6zfcv4m5kqxvh9b4zgwf433x39a210d957gjjp5mywbb1r";
name = "js3-mode";
};
@@ -33591,7 +34085,7 @@
jscs = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "jscs";
- version = "20151015.1949";
+ version = "20151015.1249";
src = fetchFromGitHub {
owner = "papaeye";
repo = "emacs-jscs";
@@ -33599,7 +34093,7 @@
sha256 = "1bqsv2drhcs8ia7nxss33f80p2mhcl4mr1nalphzw6s1f4mq2sgy";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/jscs";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/f59d039a199ff93d7280669511a752f12a74f0bd/recipes/jscs";
sha256 = "1yw251f6vpj2bikjw79arywprk8qnmmfcki99mvwnqhsqlv1a8iv";
name = "jscs";
};
@@ -33612,7 +34106,7 @@
jsfmt = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "jsfmt";
- version = "20150728.25";
+ version = "20150727.1725";
src = fetchFromGitHub {
owner = "brettlangdon";
repo = "jsfmt.el";
@@ -33620,7 +34114,7 @@
sha256 = "0h9gx5cl3lashk0n8pv9yzb0mm8dyziddfbwfqfm70638p93ylhc";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/jsfmt";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/4ddc99843dec18a295dfc36e7b429f0e1ab7fb71/recipes/jsfmt";
sha256 = "1syy32sv2d57b3gja0ly65h36mfnyq6hzf5lnnl3r58yvbdzngqd";
name = "jsfmt";
};
@@ -33633,7 +34127,7 @@
json-mode = callPackage ({ fetchFromGitHub, fetchurl, json-reformat, json-snatcher, lib, melpaBuild }:
melpaBuild {
pname = "json-mode";
- version = "20160601.1256";
+ version = "20160601.556";
src = fetchFromGitHub {
owner = "joshwnj";
repo = "json-mode";
@@ -33641,7 +34135,7 @@
sha256 = "10wx67lap7zhyzk9xd2cs8kcm0didyc9gccdi1q6sw1axs25i98i";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/json-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/03d0ff6c8d724cf39446fa27f52aa5cc1a3cefb6/recipes/json-mode";
sha256 = "014j10wgxsqy6d6aksnkz2dr5cmpsi8c7v4a825si1vgb4622a70";
name = "json-mode";
};
@@ -33654,7 +34148,7 @@
json-reformat = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "json-reformat";
- version = "20160212.953";
+ version = "20160212.253";
src = fetchFromGitHub {
owner = "gongo";
repo = "json-reformat";
@@ -33662,7 +34156,7 @@
sha256 = "05bjyw0hkpiyfadsx3giawykbj4qinfr1ilzd0xvx8akzq2ipq0y";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/json-reformat";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/f8c7976237f327fdfa58eea26ac8679f40ef3163/recipes/json-reformat";
sha256 = "1m5p895w9qdgb8f67xykhzriribgmp20a1lvj64iap4aam6wp8na";
name = "json-reformat";
};
@@ -33675,7 +34169,7 @@
json-rpc = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "json-rpc";
- version = "20160427.1707";
+ version = "20160427.1007";
src = fetchFromGitHub {
owner = "skeeto";
repo = "elisp-json-rpc";
@@ -33683,7 +34177,7 @@
sha256 = "0cbqhijv2zv9mhnjxadr2kbz5b6jcvciwmza22jkwds0nkn2snmp";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/json-rpc";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/82c6b97cdfe2970f028a00146b01e5734710291b/recipes/json-rpc";
sha256 = "1v1pfmm9g18p6kgn27q1m1bjgwbzvwfm0jbsxp8gdsssaygky71k";
name = "json-rpc";
};
@@ -33696,7 +34190,7 @@
json-snatcher = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "json-snatcher";
- version = "20150512.547";
+ version = "20150511.2247";
src = fetchFromGitHub {
owner = "Sterlingg";
repo = "json-snatcher";
@@ -33704,7 +34198,7 @@
sha256 = "05zsgnk7grgw9jzwl80h5sxfpifxlr37b4mkbvx7mjq4z14xc2jw";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/json-snatcher";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/990de179e20c169aa02ffec42c89f18ce02239c8/recipes/json-snatcher";
sha256 = "0f6j9g3c5fz3wlqa88706cbzinrs3dnfpgsr2d3h3117gic4iwp4";
name = "json-snatcher";
};
@@ -33717,7 +34211,7 @@
jss = callPackage ({ emacs, fetchFromGitHub, fetchurl, js2-mode, lib, melpaBuild, websocket }:
melpaBuild {
pname = "jss";
- version = "20130508.1623";
+ version = "20130508.923";
src = fetchFromGitHub {
owner = "segv";
repo = "jss";
@@ -33725,7 +34219,7 @@
sha256 = "07yd7sxb5f2mbm2nva7b2nwyxxkmsi2rdd5qig0bq1b2mf3g5l83";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/jss";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/e3dc3607f512df378ba141327802820da4991a97/recipes/jss";
sha256 = "050hskqcjz5kc8nni255vj3hc9m936w1rybvg5kqyz4p4lpzj00k";
name = "jss";
};
@@ -33738,7 +34232,7 @@
jst = callPackage ({ dash, emacs, f, fetchFromGitHub, fetchurl, lib, melpaBuild, pcache, s }:
melpaBuild {
pname = "jst";
- version = "20150604.1338";
+ version = "20150604.638";
src = fetchFromGitHub {
owner = "cheunghy";
repo = "jst-mode";
@@ -33746,7 +34240,7 @@
sha256 = "16jgmabcqrjb3v9c6q711jqn9dna88bmzm4880mdry69ixwcydxy";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/jst";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/85d7aec81b7b8ff3721fd577cbdc10ed2288f76d/recipes/jst";
sha256 = "0hp1f7p6m1gfv1a3plavzkzn87dllb5g2xrgg3mch4qsgdbqx65i";
name = "jst";
};
@@ -33759,7 +34253,7 @@
jsx-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "jsx-mode";
- version = "20130908.1924";
+ version = "20130908.1224";
src = fetchFromGitHub {
owner = "jsx";
repo = "jsx-mode.el";
@@ -33767,7 +34261,7 @@
sha256 = "1g648r0wrd8m5ggl5jrplmj7jmr68bh2ykyii5wv30zfba97r1sh";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/jsx-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/7dea24e922f18c1f7e1b97da07ba2e4f33170557/recipes/jsx-mode";
sha256 = "1lnjnyn8qf3biqr92z443z6b58dly7glksp1g986vgqzdprq3n1b";
name = "jsx-mode";
};
@@ -33779,14 +34273,14 @@
}) {};
jtags = callPackage ({ fetchgit, fetchurl, lib, melpaBuild }: melpaBuild {
pname = "jtags";
- version = "20160211.2129";
+ version = "20160211.1429";
src = fetchgit {
url = "git://git.code.sf.net/p/jtags/code";
rev = "b50daa48510f71e74ce0ec2eb85030896a79cf96";
sha256 = "03w5y9c1109kpsn6xnxdaz3maiwbvxywqshc1l5wngfc85jwiv8y";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/jtags";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/c083b5368d0c0682e9e92fe6e027c9be0e0af0f1/recipes/jtags";
sha256 = "0in5ybgwmghlpa5d7wz0477ba6n14f1mwp5dxcl4y11f1lsq041r";
name = "jtags";
};
@@ -33799,15 +34293,15 @@
judge-indent = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "judge-indent";
- version = "20160603.1321";
+ version = "20160609.822";
src = fetchFromGitHub {
owner = "yascentur";
repo = "judge-indent-el";
- rev = "74ec1c752496c5fa98ebc5773bcdb9e986e4983a";
- sha256 = "039qc8klb7ysvyl10zqk50ji44yn44cfw7f5l90nrd5mr2pihnvr";
+ rev = "f76c012284abc296681167d7b33d5e61f3ac7cec";
+ sha256 = "0547jy339ql31wym066pi79k520agdq062xblyvj0bi91j0rqld3";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/judge-indent";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/73fb2c31f6af63145aae7c449bfde1bbb00e1100/recipes/judge-indent";
sha256 = "1gakdhnlxfq8knnykqdw4bizb5y67m8xhi07zannd7bsfwi4k6rh";
name = "judge-indent";
};
@@ -33820,7 +34314,7 @@
julia-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "julia-mode";
- version = "20160517.1943";
+ version = "20160517.1243";
src = fetchFromGitHub {
owner = "JuliaLang";
repo = "julia-emacs";
@@ -33828,7 +34322,7 @@
sha256 = "1394z087h07zw86xzi4kr87j0yn3v3r7pzjbnf3hgivjmz2w48bj";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/julia-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/8522d197cb1b2c139959e7189765001c5ee7e61a/recipes/julia-mode";
sha256 = "0m49v67fs5yq0q3lwkcfmrzsjdzi1qrkfjyvjcdwnfmp29w14kq6";
name = "julia-mode";
};
@@ -33841,7 +34335,7 @@
julia-shell = callPackage ({ fetchFromGitHub, fetchurl, julia-mode, lib, melpaBuild }:
melpaBuild {
pname = "julia-shell";
- version = "20160514.1628";
+ version = "20160514.928";
src = fetchFromGitHub {
owner = "dennisog";
repo = "julia-shell-mode";
@@ -33849,7 +34343,7 @@
sha256 = "056pyq31fq86fskwhqny8n6jzavgcjv979kkg9hwbz7h90zvf9q4";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/julia-shell";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/a812c6a8498949d8bd9828a95433c539da87c1c8/recipes/julia-shell";
sha256 = "0182irlvk6nn71zk4j8xjgcqp4bxi7a2dbj44frrssy6018cd410";
name = "julia-shell";
};
@@ -33862,7 +34356,7 @@
jumblr = callPackage ({ dash, fetchFromGitHub, fetchurl, lib, melpaBuild, s }:
melpaBuild {
pname = "jumblr";
- version = "20140908.2252";
+ version = "20140908.1552";
src = fetchFromGitHub {
owner = "mkmcc";
repo = "jumblr";
@@ -33870,7 +34364,7 @@
sha256 = "1f0kai4cz3r25fqlnryyvnyf80cf57xa655dvv1rx8si3xd20x4j";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/jumblr";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/b47000c35a181c03263e85e8955eb4b4c9e69e4d/recipes/jumblr";
sha256 = "1wnawz1m6x95iyzac453p55h7hlr5q0ry5437aqqx0bw7gdwg3dp";
name = "jumblr";
};
@@ -33883,7 +34377,7 @@
jump = callPackage ({ fetchFromGitHub, fetchurl, findr, inflections, lib, melpaBuild }:
melpaBuild {
pname = "jump";
- version = "20151009.1029";
+ version = "20151009.329";
src = fetchFromGitHub {
owner = "eschulte";
repo = "jump.el";
@@ -33891,7 +34385,7 @@
sha256 = "0061hcmj63g13bvacwkmcb5iggwnk27dvb04fz4hihqis6jg01c5";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/jump";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/f0c791aebccc08b770b3969ce5d2e82cbe26f80e/recipes/jump";
sha256 = "18g0fa9g8m9jscsm6pn7jwdq94l4aj0dfhrv2hqapq1q1x537364";
name = "jump";
};
@@ -33904,7 +34398,7 @@
jump-char = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "jump-char";
- version = "20160505.1751";
+ version = "20160505.1051";
src = fetchFromGitHub {
owner = "lewang";
repo = "jump-char";
@@ -33912,7 +34406,7 @@
sha256 = "1dgghswf6s7h6h04mhfnsh2m0ld8qqk70l0dq3cxhdjzqx16vnms";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/jump-char";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/4155696ed09968f432c6205cb3e677beaea42ea0/recipes/jump-char";
sha256 = "0l8zvfwpngkgcxl1a36jwwxdh23hi390mikz7xrq63w5zwm0007n";
name = "jump-char";
};
@@ -33925,7 +34419,7 @@
jump-to-line = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "jump-to-line";
- version = "20130122.1753";
+ version = "20130122.1053";
src = fetchFromGitHub {
owner = "ongaeshi";
repo = "jump-to-line";
@@ -33933,7 +34427,7 @@
sha256 = "1s9plmg323m1p625xqnks0yqz0zlsjacdj7pv8f783r0d9jmfq3s";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/jump-to-line";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/4b6c700a28b65cbbad36a9bbaf88cc36c8191eb0/recipes/jump-to-line";
sha256 = "09ifhsggl5mrb6l8nqnl38yph0v26v30y98ic8hl23i455hqkkdr";
name = "jump-to-line";
};
@@ -33946,7 +34440,7 @@
jumplist = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "jumplist";
- version = "20151120.445";
+ version = "20151119.2145";
src = fetchFromGitHub {
owner = "ganmacs";
repo = "jumplist";
@@ -33954,7 +34448,7 @@
sha256 = "0ykzvy8034mchq6ffyi7vqnwyrj6gnqqgn39ki81pv97qh8hh8yl";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/jumplist";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/b2b7c688b881615c5f0b00f3879b9469d380a4e6/recipes/jumplist";
sha256 = "06xjg1q8b2fwfhfmdkb76bw2id8pgqc61fmwlgri5746jgdmd7nf";
name = "jumplist";
};
@@ -33967,7 +34461,7 @@
jvm-mode = callPackage ({ dash, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "jvm-mode";
- version = "20150422.908";
+ version = "20150422.208";
src = fetchFromGitHub {
owner = "martintrojer";
repo = "jvm-mode.el";
@@ -33975,7 +34469,7 @@
sha256 = "0k91cdjlpil8npc4d3zsgx2gk41crl7qgm9r85khcgxs59kmkniw";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/jvm-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/7cdb7d7d7b955405eb6357277b5d049df8aa85ce/recipes/jvm-mode";
sha256 = "1r283b4s0pzq4hgwcz5cnhlvdvq4gy0x51g3vp0762s8qx969a5w";
name = "jvm-mode";
};
@@ -33988,7 +34482,7 @@
kaesar = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "kaesar";
- version = "20160128.1108";
+ version = "20160128.408";
src = fetchFromGitHub {
owner = "mhayashi1120";
repo = "Emacs-kaesar";
@@ -33996,7 +34490,7 @@
sha256 = "1pl0514rj99b1j3y33x2bnhjbdbv9bfxgqn9498bf4ns8zayc6y9";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/kaesar";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/201fac8639e59dc923ea31da1f84a99f83d51b47/recipes/kaesar";
sha256 = "0zhi1dv1ay1azh7afq4x6bdg91clwpsr13nrzy7539yrn9sglj5l";
name = "kaesar";
};
@@ -34009,7 +34503,7 @@
kaesar-file = callPackage ({ fetchFromGitHub, fetchurl, kaesar, lib, melpaBuild }:
melpaBuild {
pname = "kaesar-file";
- version = "20160128.1108";
+ version = "20160128.408";
src = fetchFromGitHub {
owner = "mhayashi1120";
repo = "Emacs-kaesar";
@@ -34017,7 +34511,7 @@
sha256 = "1pl0514rj99b1j3y33x2bnhjbdbv9bfxgqn9498bf4ns8zayc6y9";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/kaesar-file";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/201fac8639e59dc923ea31da1f84a99f83d51b47/recipes/kaesar-file";
sha256 = "0dcizg82maad98mbqqw5lamwz7n2lpai09jsrc66x3wy8k784alc";
name = "kaesar-file";
};
@@ -34030,7 +34524,7 @@
kaesar-mode = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, kaesar, lib, melpaBuild }:
melpaBuild {
pname = "kaesar-mode";
- version = "20160128.1108";
+ version = "20160128.408";
src = fetchFromGitHub {
owner = "mhayashi1120";
repo = "Emacs-kaesar";
@@ -34038,7 +34532,7 @@
sha256 = "1pl0514rj99b1j3y33x2bnhjbdbv9bfxgqn9498bf4ns8zayc6y9";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/kaesar-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/201fac8639e59dc923ea31da1f84a99f83d51b47/recipes/kaesar-mode";
sha256 = "0yqnlchbpmhsqc8j531n08vybwa32cy0v9sy4f9fgxa90rfqczry";
name = "kaesar-mode";
};
@@ -34051,7 +34545,7 @@
kakapo-mode = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "kakapo-mode";
- version = "20150907.652";
+ version = "20150906.2352";
src = fetchFromGitHub {
owner = "listx";
repo = "kakapo-mode";
@@ -34059,7 +34553,7 @@
sha256 = "0b6af8hnrn0v4z1xpahjfpw5iga2bmgd3qwfn3is2rygsn5rkm40";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/kakapo-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/a43f0f1f6a0773240a51d379ec786c20a9389e7b/recipes/kakapo-mode";
sha256 = "0a99cqflpzasl4wcmmf99aj8xgywkym37j7mvnsajrsk5wawdlss";
name = "kakapo-mode";
};
@@ -34071,14 +34565,14 @@
}) {};
kanban = callPackage ({ fetchhg, fetchurl, lib, melpaBuild }: melpaBuild {
pname = "kanban";
- version = "20150930.1817";
+ version = "20150930.1117";
src = fetchhg {
url = "https://bitbucket.com/ArneBab/kanban.el";
rev = "54d855426372";
sha256 = "14g0f51jig8b1y6zfaw7b1cp692lddqzkc0ngf4y89sw9gbmsh3w";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/kanban";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/5b7972602399f9df9139cff177e38653bb0f43ed/recipes/kanban";
sha256 = "1sif2ayb8fq5vjz9lpkaq40aw9wiciz84yipab2qczszlgw1l1hb";
name = "kanban";
};
@@ -34091,7 +34585,7 @@
kanji-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "kanji-mode";
- version = "20150202.925";
+ version = "20150202.225";
src = fetchFromGitHub {
owner = "wsgac";
repo = "kanji-mode";
@@ -34099,7 +34593,7 @@
sha256 = "0rxf44kszxazkpjmccz3wnks7si3g8vsfi2lamwynmksk8sw5d7g";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/kanji-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/c9f1fb16f2f7f677d0817fd63633dd071ba2cf12/recipes/kanji-mode";
sha256 = "0nnkv7lp7ks9qhkbhz15ixm53grc2q0xfspzykxi9c4b59kypcq5";
name = "kanji-mode";
};
@@ -34112,7 +34606,7 @@
kaomoji = callPackage ({ emacs, fetchFromGitHub, fetchurl, helm-core, lib, melpaBuild }:
melpaBuild {
pname = "kaomoji";
- version = "20160218.920";
+ version = "20160218.220";
src = fetchFromGitHub {
owner = "kuanyui";
repo = "kaomoji.el";
@@ -34120,7 +34614,7 @@
sha256 = "0vqjbv3pqlbyibqylfsqqjzkvjhdg01hlxszfblpg72fziyzcci5";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/kaomoji";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/140c65cb3cdf6c197b085ccf8ba079e1efd15f38/recipes/kaomoji";
sha256 = "1p61pbqf2lnwr6ryxxc4jkd5bmlgknrc27lg89h3b4pw7k39cqy1";
name = "kaomoji";
};
@@ -34133,7 +34627,7 @@
karma = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, pkg-info }:
melpaBuild {
pname = "karma";
- version = "20160220.1345";
+ version = "20160220.645";
src = fetchFromGitHub {
owner = "tonini";
repo = "karma.el";
@@ -34141,7 +34635,7 @@
sha256 = "12v242kfcx849j8w95v2g7djh9xqbx8n033iaxyavfxnz0pp7zdl";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/karma";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/681e12556c3ab3e2a8376d5c7c33ee5a213de650/recipes/karma";
sha256 = "19wl7js7wmw7jv2q3l4r5zl718lhy2a0jhl79k57ihwhxdc58fwc";
name = "karma";
};
@@ -34154,7 +34648,7 @@
kerl = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "kerl";
- version = "20150424.2205";
+ version = "20150424.1505";
src = fetchFromGitHub {
owner = "correl";
repo = "kerl.el";
@@ -34162,7 +34656,7 @@
sha256 = "1kkzs7nrcr74qn1m456vaj52a9j3ah4biakimz06hls415l56yk9";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/kerl";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/166afdc776689b0da93576dbeaa71ff6dfb627db/recipes/kerl";
sha256 = "0f8n7cm5c432pwj28bcpv2jj5z3br3k164xj6nwfis3dvijwsgss";
name = "kerl";
};
@@ -34174,13 +34668,13 @@
}) {};
key-chord = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild {
pname = "key-chord";
- version = "20160227.1338";
+ version = "20160227.638";
src = fetchurl {
url = "https://www.emacswiki.org/emacs/download/key-chord.el";
sha256 = "03m44pqggfrd53nh9dvpdjgm0rvca34qxmd30hr33hzprzjambxg";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/key-chord";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/b38ec88553f9b1dfa11b0ce82433b450eb47ebce/recipes/key-chord";
sha256 = "0cr9lx1pvr0qc762nn5pbh8w93dx1hh1zzf806cag2b9pgk6d4an";
name = "key-chord";
};
@@ -34193,7 +34687,7 @@
key-combo = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "key-combo";
- version = "20150324.1539";
+ version = "20150324.939";
src = fetchFromGitHub {
owner = "uk-ar";
repo = "key-combo";
@@ -34201,7 +34695,7 @@
sha256 = "1is7s50lgn77lxxwgakiaywx6jqdfg8045d18m4zn3ilxg6k8ljf";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/key-combo";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/99b422ef5f7b9dda894207e3133791fb9963a092/recipes/key-combo";
sha256 = "1v8saw92jphvjkyy7j9jx7cxzgisl4zpf4wjzdjfw3la5lz11waf";
name = "key-combo";
};
@@ -34214,7 +34708,7 @@
key-intercept = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "key-intercept";
- version = "20140211.849";
+ version = "20140211.149";
src = fetchFromGitHub {
owner = "tarao";
repo = "key-intercept-el";
@@ -34222,7 +34716,7 @@
sha256 = "143nfs8pgi5yy3mjq7nirffplk4vb8kik4q7zypynh2pddip30a4";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/key-intercept";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/ad758d865bde8c97d27c0d57cabe1606f8b36974/recipes/key-intercept";
sha256 = "1z776jbpjks5bir6bd0748mlrmz05nf0jy9l4hlmwgyn72dcbx16";
name = "key-intercept";
};
@@ -34235,15 +34729,15 @@
key-leap = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "key-leap";
- version = "20160109.2137";
+ version = "20160610.503";
src = fetchFromGitHub {
owner = "MartinRykfors";
repo = "key-leap";
- rev = "62877ecc6b0eadac5185e4b7c3c51b4762263142";
- sha256 = "14xk0crl25alcckkcg0wx7gwb65hmicfn01db1zip8swk249g9w3";
+ rev = "5add9fd38fdf46cc0306c27f721195ba6cf6ecf1";
+ sha256 = "02f7mxhhw1y9j5nxfjcm0p1qczsk6wx0b3k0d7gn9chq9gablsp3";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/key-leap";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/8b56e18063e6292bb2aca2acc7077b32f3d62262/recipes/key-leap";
sha256 = "0z1fhpf8g0c4rh3bf8dfmdgyhj5w686kavjr214czaga0x7mwlwj";
name = "key-leap";
};
@@ -34256,7 +34750,7 @@
key-seq = callPackage ({ fetchFromGitHub, fetchurl, key-chord, lib, melpaBuild }:
melpaBuild {
pname = "key-seq";
- version = "20150907.956";
+ version = "20150907.256";
src = fetchFromGitHub {
owner = "vlevit";
repo = "key-seq.el";
@@ -34264,7 +34758,7 @@
sha256 = "05vpydcgiaya35b62cdjxna9y02vnwzzg6p8jh0dkr9k44h4iy3f";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/key-seq";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/0d54ab1b6973a44362e50559dd91344d0b17f513/recipes/key-seq";
sha256 = "166k6hl9vvsnnksvhrv5cbhv9bdiclnbfv7qf67q4c1an9xzqi74";
name = "key-seq";
};
@@ -34277,7 +34771,7 @@
keychain-environment = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "keychain-environment";
- version = "20160424.1346";
+ version = "20160424.646";
src = fetchFromGitHub {
owner = "tarsius";
repo = "keychain-environment";
@@ -34285,7 +34779,7 @@
sha256 = "0xgm80dbg45bs3k8psd3pv49z1xbvzm156xs55gmxdzbgxbzpazr";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/keychain-environment";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/4382c9e7e8dee2cafea9ee49965d0952ca359dd5/recipes/keychain-environment";
sha256 = "1w77cg00bwx68h0d6k6r1fzwdwz97q12ch2hmpzjnblqs0i4sv8v";
name = "keychain-environment";
};
@@ -34298,7 +34792,7 @@
keydef = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "keydef";
- version = "20090428.2131";
+ version = "20090428.1431";
src = fetchFromGitHub {
owner = "emacsorphanage";
repo = "keydef";
@@ -34306,7 +34800,7 @@
sha256 = "0dkc51bmix4b8czs2wg6vz8vk32qlll1b9fjmx6xshrxm85cyhvv";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/keydef";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/5f2a50f62475639af011c99c6cc38928b74b3b0a/recipes/keydef";
sha256 = "0yb2vgj7abyg8j7qmv74nsanv50lf350q1m58rjv8wm31yykg992";
name = "keydef";
};
@@ -34319,7 +34813,7 @@
keyfreq = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "keyfreq";
- version = "20160516.1616";
+ version = "20160516.916";
src = fetchFromGitHub {
owner = "dacap";
repo = "keyfreq";
@@ -34327,7 +34821,7 @@
sha256 = "1dhdk4f6q340n0r9n8jld2n2fykp7m40x23n7sw4wpm8g151gxin";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/keyfreq";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/cd7157bad0f3039321b5b279a88e7e4fce895543/recipes/keyfreq";
sha256 = "1rw6hzmw7h5ngvndy7aa41pq911y2hr9kqc9w4gdd5v2p4ln1qh7";
name = "keyfreq";
};
@@ -34340,7 +34834,7 @@
keymap-utils = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "keymap-utils";
- version = "20160523.1445";
+ version = "20160523.745";
src = fetchFromGitHub {
owner = "tarsius";
repo = "keymap-utils";
@@ -34348,7 +34842,7 @@
sha256 = "17bfxn1bl2by3vnp24hnk6qjxx6av1fayrsw9hlldwhgp4ayhy48";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/keymap-utils";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/c03acebf1462dea36c81d4b9ab41e2e5739be3c3/recipes/keymap-utils";
sha256 = "0nbcwz4nls0pva79lbx91bpzkl38g98yavwkvg2rxbhn9vjbhzs9";
name = "keymap-utils";
};
@@ -34361,7 +34855,7 @@
keyset = callPackage ({ cl-lib ? null, dash, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "keyset";
- version = "20150220.630";
+ version = "20150219.2330";
src = fetchFromGitHub {
owner = "HKey";
repo = "keyset";
@@ -34369,7 +34863,7 @@
sha256 = "0cm6naqlwk65xy9lwnn5r7m6nc1l7ims2ckydmyzny5ak8y5jbws";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/keyset";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/7bad8a1f1b94fbfbde5d8035f7e22431e64a9eec/recipes/keyset";
sha256 = "1kfw0pfb6qm2ji1v0kb8xgz8q2yd2k9kxmaz5vxcdixdlax3xiqg";
name = "keyset";
};
@@ -34382,15 +34876,15 @@
keyword-search = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "keyword-search";
- version = "20160526.923";
+ version = "20160608.38";
src = fetchFromGitHub {
owner = "keyword-search";
repo = "keyword-search";
- rev = "5a84e5ae765eca54e6dc479e099fb3082007529b";
- sha256 = "0qysz45vvk87n0pc21qfcfj3mbj2ibnz8m0ywj3dhr1damb89g4g";
+ rev = "d40633712cf4dbb1bdf95d8262b5a4138b29e049";
+ sha256 = "0g42yr331piv3r18ymz4kb8jqmslimq3xamkyqdn702xljmb2pad";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/keyword-search";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/8ecdc51938f2300bf005e2d1b1819e0fa59e0bd7/recipes/keyword-search";
sha256 = "0wvci1v8pblfbdslfzpi46c149y8pi49kza9jf33jzhj357lp5qa";
name = "keyword-search";
};
@@ -34403,7 +34897,7 @@
kfg = callPackage ({ f, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "kfg";
- version = "20140909.738";
+ version = "20140909.38";
src = fetchFromGitHub {
owner = "abingham";
repo = "kfg";
@@ -34411,7 +34905,7 @@
sha256 = "0xq835xzywks4b4kaz5i0pp759i23kibs5gkvvxasw0dncqh7j5c";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/kfg";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/9b212de583b43dd05d2acd15bb2245e735d0b14c/recipes/kfg";
sha256 = "0vvvxl6a4ac27igwmsgzpf0whf9h2pjl9d89fd9fizad6gi8x1fs";
name = "kfg";
};
@@ -34424,7 +34918,7 @@
kibit-helper = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, s }:
melpaBuild {
pname = "kibit-helper";
- version = "20150508.1733";
+ version = "20150508.1033";
src = fetchFromGitHub {
owner = "brunchboy";
repo = "kibit-helper";
@@ -34432,7 +34926,7 @@
sha256 = "0s2hb2lvfmcvm3n1fg4biaafc1p7j7w990d7w15gicaw6rr2j4nr";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/kibit-helper";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/f7fee551ca9ed226f1285dffe87027e1e1047f65/recipes/kibit-helper";
sha256 = "15viybjqksylvm5ash2kzsil0cpdka56wj1rryixa8y1bwlj8y4s";
name = "kibit-helper";
};
@@ -34445,7 +34939,7 @@
kill-or-bury-alive = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "kill-or-bury-alive";
- version = "20160531.1808";
+ version = "20160531.1108";
src = fetchFromGitHub {
owner = "mrkkrp";
repo = "kill-or-bury-alive";
@@ -34453,7 +34947,7 @@
sha256 = "1d1kygn2l675rigz29hjmqkh0x7061ax0a60v5mjn9q87y4jd760";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/kill-or-bury-alive";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/25016ed09b6333bd79b989a8f6b7b03cd92e08b3/recipes/kill-or-bury-alive";
sha256 = "0mm0m8hpy5v98cap4f0s38dcviirm7s6ra4l94mknyvnx0f73lz8";
name = "kill-or-bury-alive";
};
@@ -34466,7 +34960,7 @@
kill-ring-search = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "kill-ring-search";
- version = "20140422.1755";
+ version = "20140422.1055";
src = fetchFromGitHub {
owner = "nschum";
repo = "kill-ring-search.el";
@@ -34474,7 +34968,7 @@
sha256 = "0yrc09k64rv5is4wvss938mkj2pkvbr98lr3ahsi7p0aqn7s444v";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/kill-ring-search";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/7c3aa60be932d65929f453f1ce576abcd00252ed/recipes/kill-ring-search";
sha256 = "1pg4j1rrji64rrdv2xpwz33vlyk8r0hz4j4fikzwpbcbmni3skan";
name = "kill-ring-search";
};
@@ -34487,7 +34981,7 @@
killer = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "killer";
- version = "20120808.1322";
+ version = "20120808.622";
src = fetchFromGitHub {
owner = "tarsius";
repo = "killer";
@@ -34495,7 +34989,7 @@
sha256 = "05rbh5hkj3jsn9pw0qa4d5a5pi6367vdqkijcn9k14fdfbmyd30x";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/killer";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/bd8c3ec8fa272273128134dea96c0c999a524549/recipes/killer";
sha256 = "10z4vqwrpss7mk0gq8xdsbsl0qibpp7s1g0l8wlmrsgn6kjkr2ma";
name = "killer";
};
@@ -34508,7 +35002,7 @@
kite = callPackage ({ fetchFromGitHub, fetchurl, json ? null, lib, melpaBuild, websocket }:
melpaBuild {
pname = "kite";
- version = "20130201.2038";
+ version = "20130201.1338";
src = fetchFromGitHub {
owner = "jscheid";
repo = "kite";
@@ -34516,7 +35010,7 @@
sha256 = "1cr4i66lws6yhyxmyx5jw6d5x7i75435mafkkych4nfa0mv4vicd";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/kite";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/12e48ea4327188da607cc6f1d25a9cba7991c2f3/recipes/kite";
sha256 = "04x92qcvx428l2cvm2nk9px7r8i159k0ra0haq2sjncjr1ajhg9m";
name = "kite";
};
@@ -34529,7 +35023,7 @@
kite-mini = callPackage ({ dash, fetchFromGitHub, fetchurl, lib, melpaBuild, websocket }:
melpaBuild {
pname = "kite-mini";
- version = "20160508.1306";
+ version = "20160508.606";
src = fetchFromGitHub {
owner = "tungd";
repo = "kite-mini.el";
@@ -34537,7 +35031,7 @@
sha256 = "0ralsdjzj09g6nsa04jvyyzr6cgsi0d7gi1ji77f52m31dl0b8cw";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/kite-mini";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/a9b76d0ee09efc6652d0541cf72c9623760dda66/recipes/kite-mini";
sha256 = "1g644406zm3db0fjyv704aa8dbd20v1apmysb3mmh2vldbch4iyh";
name = "kite-mini";
};
@@ -34550,15 +35044,15 @@
kivy-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "kivy-mode";
- version = "20140524.1457";
+ version = "20160623.1410";
src = fetchFromGitHub {
owner = "kivy";
repo = "kivy";
- rev = "04f9ae82a2da3a1ff8a63bb336bc8bc7f0d1031b";
- sha256 = "1r88zrd0wgavw55fxx7y0pi0a61izw4hm86n027vc4m4cpxrar17";
+ rev = "379893812d10dcd7934ab4311254b8e73435b27e";
+ sha256 = "0zc4cchfyhl4ahgynw9xifg52021w397sf8nd1z4cgrljwmvg6i5";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/kivy-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/688e2a114073958c413e56e1d117d48db9d16fb8/recipes/kivy-mode";
sha256 = "02l230rwivr7rbiqm4vg70458z35f9v9w3mdapcrqd5d07y5mvi1";
name = "kivy-mode";
};
@@ -34571,7 +35065,7 @@
kixtart-mode = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "kixtart-mode";
- version = "20150611.1804";
+ version = "20150611.1104";
src = fetchFromGitHub {
owner = "ryrun";
repo = "kixtart-mode";
@@ -34579,7 +35073,7 @@
sha256 = "1ld3ccg8q7hmjrj60rxvmmfy4dpm2lvlshjqdf9ifgjzp221g4vb";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/kixtart-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/672cfc166209b6c2ffcb0e549fd2416be7212a5a/recipes/kixtart-mode";
sha256 = "079bw4lgxbmk65rrfyy8givs8j5wsyhpcjjw915ifkg577gj87qp";
name = "kixtart-mode";
};
@@ -34592,15 +35086,15 @@
know-your-http-well = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "know-your-http-well";
- version = "20160209.4";
+ version = "20160208.1704";
src = fetchFromGitHub {
owner = "for-GET";
repo = "know-your-http-well";
- rev = "c381a9735f3ea86ebc9667e35cdfeab0b67fefb7";
- sha256 = "1lppggnii2r9fvlhh33gbdrwb50za8lnalavlq9s86ngndn4n94k";
+ rev = "6479e44f8578828655f1a42ef9db8d8c67b7e238";
+ sha256 = "0dfq0f60d1fcrd2023r25rpcvwjnknz595imaj38bjpimlbw0xcq";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/know-your-http-well";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/2ab50ae6278022281b2b7297c086089e5e669c7a/recipes/know-your-http-well";
sha256 = "0k2x0ajxkivim8nfpli716y7f4ssrmvwi56r94y34x4j3ib3px3q";
name = "know-your-http-well";
};
@@ -34613,7 +35107,7 @@
kolon-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "kolon-mode";
- version = "20140122.1234";
+ version = "20140122.534";
src = fetchFromGitHub {
owner = "samvtran";
repo = "kolon-mode";
@@ -34621,7 +35115,7 @@
sha256 = "0yr4yxwxgxp5pm9f8gaqlikxp26inv01inq0ya42dzam5yphkafw";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/kolon-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/b18f38d291303ff362e11ca711bb00bf411e2180/recipes/kolon-mode";
sha256 = "0wcg8ph3mk4zcmzqpvl2w6rfgvrfvhmgwb14y8agh9b7v5d9xwj3";
name = "kolon-mode";
};
@@ -34634,7 +35128,7 @@
kooten-theme = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "kooten-theme";
- version = "20160214.1351";
+ version = "20160214.651";
src = fetchFromGitHub {
owner = "kootenpv";
repo = "emacs-kooten-theme";
@@ -34642,7 +35136,7 @@
sha256 = "1bh2zpprh2zwhfgdw131lm0j7zm0hmnb0zqcahps104xna9s5x60";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/kooten-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/692d268189740e8b540ba14ed92b07bb8b7fb399/recipes/kooten-theme";
sha256 = "1kkk8nl1xykc4c487icmjrc2xsv8i4s2r5h5gbcpyrk2myqi4179";
name = "kooten-theme";
};
@@ -34652,10 +35146,31 @@
license = lib.licenses.free;
};
}) {};
+ kotlin-mode = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
+ melpaBuild {
+ pname = "kotlin-mode";
+ version = "20160620.1023";
+ src = fetchFromGitHub {
+ owner = "Emacs-Kotlin-Mode-Maintainers";
+ repo = "kotlin-mode";
+ rev = "f54da34b3f6b2bfae622fffcd0ade20e98e63458";
+ sha256 = "0nk17mj5nilvnc90zp119zfax1qqxm896r97qvmrx21m99n9359b";
+ };
+ recipeFile = fetchurl {
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/9f2560e913b215821221c96069a1385fe4e19c3e/recipes/kotlin-mode";
+ sha256 = "08jn8r4nhhlck0f7n5agibwh049rigdiy12lpmijbwk1zmcvsqws";
+ name = "kotlin-mode";
+ };
+ packageRequires = [ emacs ];
+ meta = {
+ homepage = "https://melpa.org/#/kotlin-mode";
+ license = lib.licenses.free;
+ };
+ }) {};
kpm-list = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "kpm-list";
- version = "20160310.1950";
+ version = "20160310.1250";
src = fetchFromGitHub {
owner = "KMahoney";
repo = "kpm-list";
@@ -34663,7 +35178,7 @@
sha256 = "0hbzr5x9ykzrbwzfsf6rc4pbiw9m59ny3cgcx26nbi6ijbjl2fxj";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/kpm-list";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/6b7065d016e2da49277b165edf565bef5819d483/recipes/kpm-list";
sha256 = "0022bhy1mzngjmjydyqnmlgnhww05v4dxsfav034r8nyyc7677z0";
name = "kpm-list";
};
@@ -34676,7 +35191,7 @@
kroman = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "kroman";
- version = "20150828.140";
+ version = "20150827.1840";
src = fetchFromGitHub {
owner = "cheunghy";
repo = "kroman-el";
@@ -34684,7 +35199,7 @@
sha256 = "11axxmhdpwgrcyjz200pf5bqzjw9wz4085r8p1n2vr5gx98374fr";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/kroman";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/07ff16db526dce9d720a858aa14010f297bf31a6/recipes/kroman";
sha256 = "0y9ji3c8kndrz605n7b4w5xq0qp093d61hxwhblm3qrh3370mws7";
name = "kroman";
};
@@ -34697,7 +35212,7 @@
ksp-cfg-mode = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "ksp-cfg-mode";
- version = "20160521.2233";
+ version = "20160521.1533";
src = fetchFromGitHub {
owner = "lashtear";
repo = "ksp-cfg-mode";
@@ -34705,7 +35220,7 @@
sha256 = "1kbmlhfxbp704mky8v69lzqd20bbnqijfnv110yigsy3kxi7hdrr";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ksp-cfg-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/d49db5938fa4e3ab1176a955a4788b15c63d9e69/recipes/ksp-cfg-mode";
sha256 = "0azcn4qvziacbw1qy33fwdaldw7xpzr672vzjsqhr0b2vg9m2ipi";
name = "ksp-cfg-mode";
};
@@ -34718,7 +35233,7 @@
kurecolor = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, s }:
melpaBuild {
pname = "kurecolor";
- version = "20150424.622";
+ version = "20150423.2322";
src = fetchFromGitHub {
owner = "emacsfodder";
repo = "kurecolor";
@@ -34726,7 +35241,7 @@
sha256 = "0da4y9pf6vq0i6w7bmvrszg9bji3ylhr44hmyrmxvah28pigb2fz";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/kurecolor";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/58a5ebdbf82e83e6602161bca049d468887abe02/recipes/kurecolor";
sha256 = "0q0q0dfv376h7j3sgwxqwfpxy1qjbvb6i5clsxz9xp4ly89w4d4f";
name = "kurecolor";
};
@@ -34739,7 +35254,7 @@
kv = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "kv";
- version = "20140108.1634";
+ version = "20140108.934";
src = fetchFromGitHub {
owner = "nicferrier";
repo = "emacs-kv";
@@ -34747,7 +35262,7 @@
sha256 = "0r0lz2s6gvy04fwnafai668jsf4546h4k6zd6isx5wpk0n33pj5m";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/kv";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/cc1cbbdd9e3291207150af7953c3d63ef8cca1c1/recipes/kv";
sha256 = "1vzifi6zpkmsh1a3c2njrw7mpfdgyjvpbz3bj42j8cg3vwjnjznb";
name = "kv";
};
@@ -34760,7 +35275,7 @@
kwin = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "kwin";
- version = "20150308.1912";
+ version = "20150308.1312";
src = fetchFromGitHub {
owner = "reactormonk";
repo = "kwin-minor-mode";
@@ -34768,7 +35283,7 @@
sha256 = "0irbfgip493hyh45msnb7climgfwr8f05nvc97bzaqggnay88scy";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/kwin";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/04e6d622a1f1cb765c33297a99f06ed513985498/recipes/kwin";
sha256 = "1pxnyj81py3ygadmyfrqndb0jkk6xlbf0rg3857hsy3ccblzm7ki";
name = "kwin";
};
@@ -34781,15 +35296,15 @@
labburn-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "labburn-theme";
- version = "20160519.1036";
+ version = "20160616.852";
src = fetchFromGitHub {
owner = "ksjogo";
repo = "labburn-theme";
- rev = "2e54e5d7fdb0ec5a728e40ccddaae523dad502a6";
- sha256 = "14v7w85mkbdymz8nsl1phdpn3agpr47f2qang1wp7syzsbsfcjd4";
+ rev = "afe7a3f7daf6ea4c102004cca9a7d675d9903709";
+ sha256 = "167msw709z32b9b916gq7cagbk4j21fmrg5p2nq4gs0gvbx666rq";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/labburn-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/b1bfc9870fbe61f58f107b72fd7f16efba22c902/recipes/labburn-theme";
sha256 = "09qqb62hfga88zka0pc27rc8i43cxi84cv1x8wj0vvzx6mvic1lm";
name = "labburn-theme";
};
@@ -34801,13 +35316,13 @@
}) {};
lacarte = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild {
pname = "lacarte";
- version = "20151231.2309";
+ version = "20151231.1609";
src = fetchurl {
url = "https://www.emacswiki.org/emacs/download/lacarte.el";
sha256 = "01vs0v17l76zwyrblf9c6x0xg5fagd4qv8pr1fwfw7kl64hb9aa2";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/lacarte";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/85457b78a0fcc4ac0e0910d09594397b21cb1aa8/recipes/lacarte";
sha256 = "0a0n1lqakgsbz0scn6617rkkkvzwranzlvkzw9q4zapiz1s9xqp9";
name = "lacarte";
};
@@ -34820,7 +35335,7 @@
lang-refactor-perl = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "lang-refactor-perl";
- version = "20131122.2227";
+ version = "20131122.1527";
src = fetchFromGitHub {
owner = "jplindstrom";
repo = "emacs-lang-refactor-perl";
@@ -34828,7 +35343,7 @@
sha256 = "135k7inkvdz51j7al3nndaamrkyn989vlv1mxcp8lwx8cgq0rqfj";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/lang-refactor-perl";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/6bbbf89b71364720dd39e2cf902271108151b5ca/recipes/lang-refactor-perl";
sha256 = "02fv25d76rvxqzxs48j4lkrifdhqayyb1in05ryyz2pk9x5hbax9";
name = "lang-refactor-perl";
};
@@ -34841,7 +35356,7 @@
langdoc = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "langdoc";
- version = "20150218.745";
+ version = "20150218.45";
src = fetchFromGitHub {
owner = "tom-tan";
repo = "langdoc";
@@ -34849,7 +35364,7 @@
sha256 = "0svci7xs4iysv8ysf93g382arip0xpgi0fllw8xx2vrd70sz7lff";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/langdoc";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/defe78f12dbd7137bed7b1a309caa579e220f7dc/recipes/langdoc";
sha256 = "19i6ys58wswl5ckf33swl6lsfzg4znx850br4icik15yrry65yj7";
name = "langdoc";
};
@@ -34862,7 +35377,7 @@
langtool = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "langtool";
- version = "20160117.154";
+ version = "20160116.1854";
src = fetchFromGitHub {
owner = "mhayashi1120";
repo = "Emacs-langtool";
@@ -34870,7 +35385,7 @@
sha256 = "1rj0j4vxfwss0w6bwh591w5mbyzjg5rkbwyjaphyi6p7wq5w6np1";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/langtool";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/503845e79e67c921f1fde31447f3dd4da2b6f993/recipes/langtool";
sha256 = "1xq70jyhzg0qmvialy015crbdk9rdibhwpl36khab9hi2999wxyw";
name = "langtool";
};
@@ -34883,7 +35398,7 @@
latest-clojure-libraries = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "latest-clojure-libraries";
- version = "20140314.1417";
+ version = "20140314.817";
src = fetchFromGitHub {
owner = "AdamClements";
repo = "latest-clojure-libraries";
@@ -34891,7 +35406,7 @@
sha256 = "1cqbdgk3sd0xbw76qrhlild9dvgds3vgldq0rcl200kh7y8l6g4k";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/latest-clojure-libraries";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/35c24ed9ea2793ae3469a3927dc66716603cfa6b/recipes/latest-clojure-libraries";
sha256 = "1vnm9piq71nx7q1843izm4vydfjq1564ax4ffwmqmlpisqzd6wq5";
name = "latest-clojure-libraries";
};
@@ -34904,7 +35419,7 @@
latex-extra = callPackage ({ auctex, cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "latex-extra";
- version = "20160329.221";
+ version = "20160328.1921";
src = fetchFromGitHub {
owner = "Malabarba";
repo = "latex-extra";
@@ -34912,7 +35427,7 @@
sha256 = "07aavdr1dlw8hca27l8a0i8cs5ga1wqqdf1v1iyvjz61vygld77a";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/latex-extra";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/1e6aed365c42987d64d0cd9a8a6178339b1b39e8/recipes/latex-extra";
sha256 = "1w98ngxymafigjpfalybhs12jcf4916wk4nlxflfjcx8ryd9wjcj";
name = "latex-extra";
};
@@ -34925,7 +35440,7 @@
latex-math-preview = callPackage ({ fetchFromGitLab, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "latex-math-preview";
- version = "20160322.559";
+ version = "20160321.2359";
src = fetchFromGitLab {
owner = "latex-math-preview";
repo = "latex-math-preview";
@@ -34933,7 +35448,7 @@
sha256 = "0cxmvadkiqhvhmvmx3vvwxasw7wll8abhviss7wgizwqf4i2p3v4";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/latex-math-preview";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/9e413b7684e9199510b00035825aa861d670e072/recipes/latex-math-preview";
sha256 = "14bn0q5czrrkb1vjdkwx6f2x4zwjkxgrc0bcncv23l13qls1gkmr";
name = "latex-math-preview";
};
@@ -34946,14 +35461,14 @@
latex-pretty-symbols = callPackage ({ fetchhg, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "latex-pretty-symbols";
- version = "20151112.1144";
+ version = "20151112.444";
src = fetchhg {
url = "https://bitbucket.com/mortiferus/latex-pretty-symbols.el";
rev = "ef4ea64c09ea";
sha256 = "0h9hncf2ghfkd3i3342ajj1niykhfr0aais3j6sjg1vkm16xbr3b";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/latex-pretty-symbols";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/5b7972602399f9df9139cff177e38653bb0f43ed/recipes/latex-pretty-symbols";
sha256 = "1f2s2f64bmsx89a3crm4skhdi4pq9w18z9skxw3i3ydaj15s8jgl";
name = "latex-pretty-symbols";
};
@@ -34966,7 +35481,7 @@
latex-preview-pane = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "latex-preview-pane";
- version = "20151023.2203";
+ version = "20151023.1503";
src = fetchFromGitHub {
owner = "jsinglet";
repo = "latex-preview-pane";
@@ -34974,7 +35489,7 @@
sha256 = "1bvhrh9xfl7p474b8jcczw255d2pjmrz5b60wis0lmmxdljplrfa";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/latex-preview-pane";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/bb3227f2e35d701915a8d3479d20581dcbe3a778/recipes/latex-preview-pane";
sha256 = "1id1l473azmc9hm5vq5wba8gad9np7sv38x94qd2zkf8b78pzkbw";
name = "latex-preview-pane";
};
@@ -34987,7 +35502,7 @@
latex-unicode-math-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "latex-unicode-math-mode";
- version = "20160411.1430";
+ version = "20160411.730";
src = fetchFromGitHub {
owner = "Christoph-D";
repo = "latex-unicode-math-mode";
@@ -34995,7 +35510,7 @@
sha256 = "10i4r81pm95990d4yrabzdm49gp47mqpv15h4r4sih10p1kbn83h";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/latex-unicode-math-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/9c021dfad8928c1a352e0ef5526eefa6c0a9cb37/recipes/latex-unicode-math-mode";
sha256 = "1p9gpp28vylibv1s95bzfgscznw146ybgk6f3qdbbnafrcrmifcr";
name = "latex-unicode-math-mode";
};
@@ -35008,7 +35523,7 @@
launch = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "launch";
- version = "20130620.4";
+ version = "20130619.1704";
src = fetchFromGitHub {
owner = "sfllaw";
repo = "emacs-launch";
@@ -35016,7 +35531,7 @@
sha256 = "0ciycsqzyj6ld60c7sfqjq59ln3jvk3w9vy606kqzpcvj01ihmv1";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/launch";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/8e46ed1761fa2e69f0dc2f58e422ea1de8a8cb49/recipes/launch";
sha256 = "043gwz583pa1wv84fl634p1v86lcsldsw7qkjbm6y678q5mms0m6";
name = "launch";
};
@@ -35029,7 +35544,7 @@
launchctl = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "launchctl";
- version = "20150518.1509";
+ version = "20150518.809";
src = fetchFromGitHub {
owner = "pekingduck";
repo = "launchctl-el";
@@ -35037,7 +35552,7 @@
sha256 = "154z7bhb7qagvl3dlgrlsxdg4chz2863ijglg47xs3yhjp5ypanj";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/launchctl";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/66d0d8c6f7cb66e56328a9cfe9cdef6dffc3c1be/recipes/launchctl";
sha256 = "07fq445cjpv4ndi7hnjmsrmskm2rlp6ghq0k3bcbjxl21smd9vs9";
name = "launchctl";
};
@@ -35050,7 +35565,7 @@
lavender-theme = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "lavender-theme";
- version = "20141116.802";
+ version = "20141116.102";
src = fetchFromGitHub {
owner = "emacsfodder";
repo = "emacs-lavender-theme";
@@ -35058,7 +35573,7 @@
sha256 = "1mg923rs2dk104bcr461dif3mg42r081ii8ipnnr588w7il0xh7k";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/lavender-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/641d1959bd31598fcdacd39a3d1bb077dcccfa5c/recipes/lavender-theme";
sha256 = "1x7mk3dpk44fkzll6xmh2dw270cgb3a9qs3h8bmiq2dw0wrcwcd1";
name = "lavender-theme";
};
@@ -35071,7 +35586,7 @@
ldap-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "ldap-mode";
- version = "20091203.1915";
+ version = "20091203.1215";
src = fetchFromGitHub {
owner = "emacsmirror";
repo = "ldap-mode";
@@ -35079,7 +35594,7 @@
sha256 = "03mv2r6k9syr7bk4vmdafmpa8kz19hv5h68ahj2bmdcmwlvwhkf3";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ldap-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/169243eedf4ee97fe01811a686f0798f2573fa0a/recipes/ldap-mode";
sha256 = "0lkfpbzsry9jigrx5zp14bkrvqnavnk4y3s0whnbigc4fgpf94rq";
name = "ldap-mode";
};
@@ -35092,15 +35607,15 @@
ledger-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "ledger-mode";
- version = "20160505.343";
+ version = "20160504.2043";
src = fetchFromGitHub {
owner = "ledger";
repo = "ledger";
- rev = "fcf16d035e9d61ed903499d0e72985970aec9170";
- sha256 = "1hp65aai2bp5l7b3dhr6bz042xcikkk8vssirzibdw5qq6zqzgxm";
+ rev = "6dcb1444ea8ab2dcf074c3477b74f0482e0d097d";
+ sha256 = "1n06wzghhmxx7acahzmwmny0nx1wfahrylpfq0fwhk50mr29a866";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ledger-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/93c54a327f226bf7e6a0ab4a3368a0e1ca169e62/recipes/ledger-mode";
sha256 = "0hi9waxmw1bbg88brlr3816vhdi0jj05wcwvrvfc1agvrvzyqq8s";
name = "ledger-mode";
};
@@ -35113,7 +35628,7 @@
leerzeichen = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "leerzeichen";
- version = "20151106.728";
+ version = "20151106.28";
src = fetchFromGitHub {
owner = "fgeller";
repo = "leerzeichen.el";
@@ -35121,7 +35636,7 @@
sha256 = "0yrrlwmxg1wy65bqyacjpzd5ksljgp41x4zyizl7h0zx9rmqcdvn";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/leerzeichen";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/5de7033e75bc28de6e50b2146511cdaac4542ad6/recipes/leerzeichen";
sha256 = "0h7zpskcgkswr110vckfdbxggz5b3g9grk1j1cbd98pmrpgfqrvp";
name = "leerzeichen";
};
@@ -35134,7 +35649,7 @@
legalese = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "legalese";
- version = "20150820.1924";
+ version = "20150820.1224";
src = fetchFromGitHub {
owner = "jorgenschaefer";
repo = "legalese";
@@ -35142,7 +35657,7 @@
sha256 = "05zpc8b2pyjz76fvmgr7zkl56g6nf6hi4nmxdg6gkw8fx6p8i19f";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/legalese";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/0fda2b54a0ff0b6fc3bd6d20cfcbbf63cae5380f/recipes/legalese";
sha256 = "18rkvfknaqwkmhsjpgrf2hknrb2zj61aw8rb4907gsbs9rciqpdd";
name = "legalese";
};
@@ -35155,7 +35670,7 @@
lemon-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "lemon-mode";
- version = "20130216.1404";
+ version = "20130216.704";
src = fetchFromGitHub {
owner = "mooz";
repo = "lemon-mode";
@@ -35163,7 +35678,7 @@
sha256 = "0n6jrm5ilm5wzfrh7yjxn3sr5m10hwdm55b179ild32lh4795zj7";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/lemon-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/6163d4cf36031349480039b82de8cdc75c2db169/recipes/lemon-mode";
sha256 = "0jdf3556kmv55jh85ljqh2gdx0jl2b8zgvpz9a4kf53xifk3lqz5";
name = "lemon-mode";
};
@@ -35176,7 +35691,7 @@
lenlen-theme = callPackage ({ color-theme-solarized, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "lenlen-theme";
- version = "20150307.911";
+ version = "20150307.211";
src = fetchFromGitHub {
owner = "zk-phi";
repo = "lenlen-theme";
@@ -35184,7 +35699,7 @@
sha256 = "0ab84qiqaz3swiraks8lx0y1kzwylpy9wz2104xgnpwnc5169z65";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/lenlen-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/47d5b3c931cdbc2351e01d15e2b98c78081c9506/recipes/lenlen-theme";
sha256 = "1bddkcl9kzj3v071qpzmxzjwywqfj5j6cldz240qgp5mx685r0a9";
name = "lenlen-theme";
};
@@ -35197,15 +35712,15 @@
lentic = callPackage ({ dash, emacs, f, fetchFromGitHub, fetchurl, lib, m-buffer, melpaBuild, s }:
melpaBuild {
pname = "lentic";
- version = "20160526.2222";
+ version = "20160701.1749";
src = fetchFromGitHub {
owner = "phillord";
repo = "lentic";
- rev = "6b4737219e788c936e12b526c367e339f938b7b2";
- sha256 = "0kj3nxbn55skkwg88ijw0fr2yfv0n94487z9j7vysqhlg9ra3bl8";
+ rev = "97c01a0a02fc462a30fdd1644d4ead2b884ffc0e";
+ sha256 = "1i7ns7fa946b5ifldhajpdic3q8hdxx5fh3dvbyc852r2xmsa4c1";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/lentic";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/cbb6f9cc3c1040b80fbf3f2df2ac2c3c8d18b6b1/recipes/lentic";
sha256 = "0y94y1qwj23kqp491b1fzqsrjak96k1dmmzmakbl7q8vc9bncl5m";
name = "lentic";
};
@@ -35218,7 +35733,7 @@
lentic-server = callPackage ({ fetchFromGitHub, fetchurl, lentic, lib, melpaBuild, web-server }:
melpaBuild {
pname = "lentic-server";
- version = "20150320.1426";
+ version = "20150320.826";
src = fetchFromGitHub {
owner = "phillord";
repo = "lentic-server";
@@ -35226,7 +35741,7 @@
sha256 = "0c6wkfz6sdcs4aglvx6h3slhma2vbj7idckwzvp8ji6s7p1mavlv";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/lentic-server";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/10b8cc0b4612d7d02be3a74c21b762cbf7613bd6/recipes/lentic-server";
sha256 = "1y9idhf9qcsw3dbdj7rwa7bdrn1q0m3bg3r2jzwdnvkq8aas1w56";
name = "lentic-server";
};
@@ -35239,7 +35754,7 @@
less-css-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "less-css-mode";
- version = "20150511.1219";
+ version = "20150511.519";
src = fetchFromGitHub {
owner = "purcell";
repo = "less-css-mode";
@@ -35247,7 +35762,7 @@
sha256 = "1w6mbk4gc63sh2p9rsy851x2kid0dp2ja4ai5badkr5prxkcpfdn";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/less-css-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/cae2ac3513e371a256be0f1a7468e38e686c2487/recipes/less-css-mode";
sha256 = "188iplnwwhawq3dby3388kimy0jh1k9r8v9nxz52hy9rhh9hykf8";
name = "less-css-mode";
};
@@ -35260,7 +35775,7 @@
letcheck = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "letcheck";
- version = "20160202.2048";
+ version = "20160202.1348";
src = fetchFromGitHub {
owner = "Fuco1";
repo = "letcheck";
@@ -35268,7 +35783,7 @@
sha256 = "06hggcbz98qhfbvp0fxn89j98d0mmki4wc4k8kfzp5fhg071chbi";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/letcheck";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/d6a0937f704e33bbb9ea8f101cd87c44e8050afb/recipes/letcheck";
sha256 = "1sjwi1ldg6b1qvj9cvfwxq3qlkfas6pm8zasf43baljmnz38mxh2";
name = "letcheck";
};
@@ -35281,15 +35796,15 @@
leuven-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "leuven-theme";
- version = "20160601.2126";
+ version = "20160702.1713";
src = fetchFromGitHub {
owner = "fniessen";
repo = "emacs-leuven-theme";
- rev = "03295c1e088ac4b2f321468b22d44233aafc20b2";
- sha256 = "1am3888833r5ab4fphi17d4pk9gpvdd28rcxv9zz7jjxbhfrnyn4";
+ rev = "564756c240d812d023050e2e3df472b9d205cde6";
+ sha256 = "1vjrs0m71p0asl1gs8bxq10mb0ff666c0aknmg84ibn7ch8i4r4b";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/leuven-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/b09451f4eb2be820e94d3fecbf4ec7cecd2cabdc/recipes/leuven-theme";
sha256 = "0pm5majr9cmj6g4zr7vb55ypk9fmfbvxx78mgmgignknbasq9g9a";
name = "leuven-theme";
};
@@ -35301,13 +35816,13 @@
}) {};
levenshtein = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild {
pname = "levenshtein";
- version = "20051013.1956";
+ version = "20051013.1256";
src = fetchurl {
url = "https://www.emacswiki.org/emacs/download/levenshtein.el";
sha256 = "0m94z18i1428bispxi285flvjf22kjm33s4sm0ad11m0w0jizir6";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/levenshtein";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/dd530e23d6de5a592faf4fec7394d052ff440a8b/recipes/levenshtein";
sha256 = "1iypnz0bw3baqxa9gldz8cikxvdhw60pvqp00kq5p3v4x3xcy4z2";
name = "levenshtein";
};
@@ -35320,7 +35835,7 @@
lexbind-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "lexbind-mode";
- version = "20141027.1529";
+ version = "20141027.929";
src = fetchFromGitHub {
owner = "spacebat";
repo = "lexbind-mode";
@@ -35328,7 +35843,7 @@
sha256 = "167ayfl1k8dnajw173hh67nbwbk4frmjc4fzc515q67m9d7m5932";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/lexbind-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/f3a493e642cc90bbe1c70a2d918793f0734464c9/recipes/lexbind-mode";
sha256 = "1hs9wg45mwp3fwi827rc4g0gjx4fk87zlibq3id9fcqic8q7nrnl";
name = "lexbind-mode";
};
@@ -35341,15 +35856,15 @@
lfe-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "lfe-mode";
- version = "20160422.2106";
+ version = "20160630.2039";
src = fetchFromGitHub {
owner = "rvirding";
repo = "lfe";
- rev = "5193331a06b3e76a184722a199845b1d5ae58669";
- sha256 = "0czsp57z2yxnx43fb3qp4qj0iib3715dlqkhb936c3v63m1fx76a";
+ rev = "218fc12dec75af53707913c520a86eeb5c18eabf";
+ sha256 = "11hfvq2aq3ryhsryd5rd2bdz4mjmsn03v6wm6pnijyzp0n39m43p";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/lfe-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/c44bdb00707c9ef90160e0a44f7148b480635132/recipes/lfe-mode";
sha256 = "0smncyby53ipm8yqslz88sqjafk0x6r8d0qwk4wzk0pbgfyklhgs";
name = "lfe-mode";
};
@@ -35361,13 +35876,13 @@
}) {};
lib-requires = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild {
pname = "lib-requires";
- version = "20151231.2310";
+ version = "20151231.1610";
src = fetchurl {
url = "https://www.emacswiki.org/emacs/download/lib-requires.el";
sha256 = "077cy2clllrvabw44wb1pzcqz97r3y92j7cb9lnhd9pix0wpcq6g";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/lib-requires";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/b3f0d443964f98bb65f2fe8f57048fbee844f2ba/recipes/lib-requires";
sha256 = "1g22jh56z8rnq0h80wj10gs38yig1rk9xmk3kmhmm5mm6b14iwdx";
name = "lib-requires";
};
@@ -35380,7 +35895,7 @@
libmpdee = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "libmpdee";
- version = "20160118.1";
+ version = "20160117.1701";
src = fetchFromGitHub {
owner = "andyetitmoves";
repo = "libmpdee";
@@ -35388,7 +35903,7 @@
sha256 = "039awlam3nrgkxrarcapfyc2myvc77aw7whrkcsjjybzylpzv0pr";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/libmpdee";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/fc91db6f80463a1baea9759f9863b551ae21e180/recipes/libmpdee";
sha256 = "0z4d8y8jlsjw20b31akkaikh5xl0c05lj77d2i1xbgzam4iixma0";
name = "libmpdee";
};
@@ -35401,7 +35916,7 @@
lice = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "lice";
- version = "20151225.1922";
+ version = "20151225.1222";
src = fetchFromGitHub {
owner = "buzztaiki";
repo = "lice-el";
@@ -35409,7 +35924,7 @@
sha256 = "11c3vmxyddx7zm8fpxmzhq2xygyijbszinfiwllgb4l738bxwljb";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/lice";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/2508699ebfc846742940c5e4356b095b540e2405/recipes/lice";
sha256 = "1hv2hz3153x0gk7f2js18dbx5pyprfdf2pfxb658fj16vxpp7y6x";
name = "lice";
};
@@ -35422,7 +35937,7 @@
light-soap-theme = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "light-soap-theme";
- version = "20150607.1645";
+ version = "20150607.945";
src = fetchFromGitHub {
owner = "mswift42";
repo = "light-soap-theme";
@@ -35430,7 +35945,7 @@
sha256 = "04dik8z2mg6qr4d3fkd26kg29b4c5crvbnc1lfsrzyrik7ipvsi8";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/light-soap-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/053be1123bb934d80b4d6db0e7e39b59771be035/recipes/light-soap-theme";
sha256 = "09p4w51d5szhi81a6a3l0r4zd4ixkrkzxldr938bcmj0qmj62iyk";
name = "light-soap-theme";
};
@@ -35443,7 +35958,7 @@
lingr = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "lingr";
- version = "20100807.1931";
+ version = "20100807.1231";
src = fetchFromGitHub {
owner = "lugecy";
repo = "lingr-el";
@@ -35451,7 +35966,7 @@
sha256 = "0rkx0hk3y79rwhjqs3wvgxhg1rj83mxbqkhhm3jfawp8c1av4f40";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/lingr";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/bf5d29710ab17b1a98f9b559344e4dd40a2b9c08/recipes/lingr";
sha256 = "1445bxiirsxl9kgm0j86xc9d0pbaa5f07c1i66pw2vl40bvhrjff";
name = "lingr";
};
@@ -35464,7 +35979,7 @@
link = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "link";
- version = "20140718.529";
+ version = "20140717.2229";
src = fetchFromGitHub {
owner = "myrkr";
repo = "dictionary-el";
@@ -35472,7 +35987,7 @@
sha256 = "0gz03hji6mcrzvxd74qim63g159sc8ggb6hq3x42x5l01g980fbm";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/link";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/5b08ed7b90e3283e177eff57cb02b12a093dc258/recipes/link";
sha256 = "17jpsg3f2954b740vyj37ikygrg5gmp0bjhbid8bh8vbz7xx9zy8";
name = "link";
};
@@ -35485,7 +36000,7 @@
link-hint = callPackage ({ avy, cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "link-hint";
- version = "20160413.718";
+ version = "20160413.18";
src = fetchFromGitHub {
owner = "noctuid";
repo = "link-hint.el";
@@ -35493,7 +36008,7 @@
sha256 = "0w6n6m766vr7d2i5jw30dkq9326r1mx02n222vm8z1mxydkw1n3i";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/link-hint";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/d24b48fe0bc127ae6ac4084be8059aacb8445afd/recipes/link-hint";
sha256 = "12fb2zm9jnh92fc2nzmzmwjlhi64rhakwbh9lsydx9svsvkgcs89";
name = "link-hint";
};
@@ -35506,7 +36021,7 @@
linphone = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "linphone";
- version = "20130524.1309";
+ version = "20130524.609";
src = fetchFromGitHub {
owner = "zabbal";
repo = "emacs-linphone";
@@ -35514,7 +36029,7 @@
sha256 = "01yv6239z90hvncwmm9g5nh4xvyxv2ig3h4hsmxdn4kacfxvc84n";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/linphone";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/c0ea68b186c813faceb6fc663633cb81df666f0e/recipes/linphone";
sha256 = "0q7mw1npxq24szhwswc93qz5h6magcxw63ymba7hwhif6my65zx7";
name = "linphone";
};
@@ -35527,7 +36042,7 @@
linum-off = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "linum-off";
- version = "20160217.2237";
+ version = "20160217.1537";
src = fetchFromGitHub {
owner = "mattfidler";
repo = "linum-off";
@@ -35535,7 +36050,7 @@
sha256 = "1pvgp76n2qnm01l5f9mkb9yqwfxag9x23wwqbsna66rmvsag69w0";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/linum-off";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/c3774ed0cf6fb8c6d08553dc709c7e76a745b2e0/recipes/linum-off";
sha256 = "1yilsdsyxlzmh64dpzirzga9c7lhp1phps9cdgp2898zpnzaclay";
name = "linum-off";
};
@@ -35548,7 +36063,7 @@
linum-relative = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "linum-relative";
- version = "20160510.1018";
+ version = "20160510.318";
src = fetchFromGitHub {
owner = "coldnew";
repo = "linum-relative";
@@ -35556,7 +36071,7 @@
sha256 = "11bjnqqwvr9zrvz5dlm8a0yw4zg9ysh3jdiq5a6iw09d3f0h1v2s";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/linum-relative";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/97ae01be4892a7c35aa0f82213433a2944041d87/recipes/linum-relative";
sha256 = "0s1lc3lppazv0481dxknm6qrxhvkv0r9hw8xmdrpjc282l91whkj";
name = "linum-relative";
};
@@ -35569,7 +36084,7 @@
liso-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "liso-theme";
- version = "20160410.2229";
+ version = "20160410.1529";
src = fetchFromGitHub {
owner = "caisah";
repo = "liso-theme";
@@ -35577,7 +36092,7 @@
sha256 = "01ycjy3amzbplp3zf0x5fahsja92gyg2252xhzcyiazmhaz7gkrd";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/liso-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/27b849f3a41a5ae3d497cef02a95c92fd479b93b/recipes/liso-theme";
sha256 = "014a71dnhnr0dr36sl2h8ffp6il9nasij31ahqz0bjgn4r16s5gy";
name = "liso-theme";
};
@@ -35590,7 +36105,7 @@
lisp-extra-font-lock = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "lisp-extra-font-lock";
- version = "20160508.2";
+ version = "20160507.1702";
src = fetchFromGitHub {
owner = "Lindydancer";
repo = "lisp-extra-font-lock";
@@ -35598,7 +36113,7 @@
sha256 = "0ah4nnjgjw7z7j9wz76zyq88rdmina9aw5adhn9b9pwr9s5frfkz";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/lisp-extra-font-lock";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/13e01d4faf9ecb4dde8b6eb4acdb0e48e3e5b6ea/recipes/lisp-extra-font-lock";
sha256 = "1xchqwhav9x7b02787ghka567fihdc14aamx92jg549c6d14qpwk";
name = "lisp-extra-font-lock";
};
@@ -35610,13 +36125,13 @@
}) {};
lispxmp = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild {
pname = "lispxmp";
- version = "20130824.1407";
+ version = "20130824.707";
src = fetchurl {
url = "https://www.emacswiki.org/emacs/download/lispxmp.el";
sha256 = "1m07gb3v1a7al0h4nj3914y8lqrwzi8fwb1ih66nxzn6kb0qj3mf";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/lispxmp";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/6fc8f86533402e4be8bac87ad66bc8d51c8d40f8/recipes/lispxmp";
sha256 = "02gfbyng3dh2445jfkasxzjc9dlk02dafbfkjm40iwmb8h0fzji4";
name = "lispxmp";
};
@@ -35629,15 +36144,15 @@
lispy = callPackage ({ ace-window, emacs, fetchFromGitHub, fetchurl, hydra, iedit, lib, melpaBuild, swiper }:
melpaBuild {
pname = "lispy";
- version = "20160529.1515";
+ version = "20160628.307";
src = fetchFromGitHub {
owner = "abo-abo";
repo = "lispy";
- rev = "2f52a009ace570d2f365138442a66572adfc5c7d";
- sha256 = "1zy0vgzi31lkb393ciw0zp3sjddl84j211fx0xmv7p307m5354s9";
+ rev = "79a6db0874ef589665fab5bf61004cd4f7fe2d8a";
+ sha256 = "1y5lpxap6wn3flsfri92blrc6mr5ycah0i6w36ca47m3y8gli6m8";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/lispy";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/e23c062ff32d7aeae486c01e29c56a74727dcf1d/recipes/lispy";
sha256 = "12qk2gpwzz7chfz7x3wds39r4iiipvcw2rjqncir46b6zzlb1q0g";
name = "lispy";
};
@@ -35650,7 +36165,7 @@
lispyscript-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "lispyscript-mode";
- version = "20130828.1619";
+ version = "20130828.919";
src = fetchFromGitHub {
owner = "krisajenkins";
repo = "lispyscript-mode";
@@ -35658,7 +36173,7 @@
sha256 = "0n0mk01h9c3f24gzpws5xf6syrdwkq4kzs9mgwl74x9l0x904rgf";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/lispyscript-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/bf912fa20edc9cff12645381b303e37f2de14976/recipes/lispyscript-mode";
sha256 = "02biai45l5xl2m9l1drphrlj6r01msmadhyg774ijdk1x4gm5nhr";
name = "lispyscript-mode";
};
@@ -35668,10 +36183,31 @@
license = lib.licenses.free;
};
}) {};
+ lispyville = callPackage ({ cl-lib ? null, emacs, evil, fetchFromGitHub, fetchurl, lib, lispy, melpaBuild }:
+ melpaBuild {
+ pname = "lispyville";
+ version = "20160630.2035";
+ src = fetchFromGitHub {
+ owner = "noctuid";
+ repo = "lispyville";
+ rev = "dbd76df9ef7838e7e746da344c6a67316f0a223c";
+ sha256 = "1w5y698s7q95yv75lg1np2kvq5zlk2f3qlh0knxcs6lsy44qam30";
+ };
+ recipeFile = fetchurl {
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/b5d96d3603dc328467fcce29d3ac1b0a02833d51/recipes/lispyville";
+ sha256 = "1pj41pd51x399gmy0j3qn9hr3ayw31pcg0h9pzbviqpnwmv2in6b";
+ name = "lispyville";
+ };
+ packageRequires = [ cl-lib emacs evil lispy ];
+ meta = {
+ homepage = "https://melpa.org/#/lispyville";
+ license = lib.licenses.free;
+ };
+ }) {};
list-environment = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "list-environment";
- version = "20151227.356";
+ version = "20151226.2056";
src = fetchFromGitHub {
owner = "dgtized";
repo = "list-environment.el";
@@ -35679,7 +36215,7 @@
sha256 = "1szbs16jlxfj71986dbg0d3j5raaxcwz0xq5ar352731r5mdcqw4";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/list-environment";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/696cd1647731eb1a22afb95f558c96a1b4aa5121/recipes/list-environment";
sha256 = "1zdhrlp8vk8knjwh56pws6dyn003r6avjzvhghlkgnw9nfrdk57h";
name = "list-environment";
};
@@ -35692,7 +36228,7 @@
list-packages-ext = callPackage ({ fetchFromGitHub, fetchurl, ht, lib, melpaBuild, persistent-soft, s }:
melpaBuild {
pname = "list-packages-ext";
- version = "20151115.1816";
+ version = "20151115.1116";
src = fetchFromGitHub {
owner = "laynor";
repo = "list-packages-ext";
@@ -35700,7 +36236,7 @@
sha256 = "02l7q5376ydz6a8i9x74bsx5bbxz8xkasmv1lzvf79d3jbg28l1s";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/list-packages-ext";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/71c217d98c6967d979f57f89ca26200304b0fc37/recipes/list-packages-ext";
sha256 = "15m4888fm5xv697y7jspghg1ra49fyrny4y2x7h8ivcbslvpglvk";
name = "list-packages-ext";
};
@@ -35713,13 +36249,13 @@
list-processes-plus = callPackage ({ fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "list-processes-plus";
- version = "20131117.2035";
+ version = "20131117.1335";
src = fetchurl {
url = "https://www.emacswiki.org/emacs/download/list-processes+.el";
sha256 = "1bssvyjgk1h1wiaxxdi2m5gjy6a790a9rwvi0r22hin7iskg300a";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/list-processes+";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/d508d50d89c914c53211197afc758fc0e1154081/recipes/list-processes+";
sha256 = "10x7hkba2bmryyl68w769fggw65dl4f3a9g0gqdzmkdj80rcipky";
name = "list-processes-plus";
};
@@ -35732,7 +36268,7 @@
list-register = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "list-register";
- version = "20091203.1915";
+ version = "20091203.1215";
src = fetchFromGitHub {
owner = "emacsmirror";
repo = "list-register";
@@ -35740,7 +36276,7 @@
sha256 = "1pr7vmjmyildg44n7psg0zmj8a3kfsw5xmgh600fhs95wqxn3sag";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/list-register";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/0fda2b54a0ff0b6fc3bd6d20cfcbbf63cae5380f/recipes/list-register";
sha256 = "0kza9xfhmxc8qia5yixx5z2y9j4wb1530rcvgxn545b903fs55kv";
name = "list-register";
};
@@ -35753,7 +36289,7 @@
list-unicode-display = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "list-unicode-display";
- version = "20150219.1001";
+ version = "20150219.301";
src = fetchFromGitHub {
owner = "purcell";
repo = "list-unicode-display";
@@ -35761,7 +36297,7 @@
sha256 = "05nn4db8s8h4mn3fxhwsa111ayvlq1raf6bifh7jciyw7a2c3aww";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/list-unicode-display";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/0c8e2a974a56665b97d7622b0428994edadc88a0/recipes/list-unicode-display";
sha256 = "01x9i5k5vhjscmkx0l6r27w1cdp9n6xk1pdjf98z3y88dnsmyfha";
name = "list-unicode-display";
};
@@ -35774,7 +36310,7 @@
list-utils = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "list-utils";
- version = "20160414.1602";
+ version = "20160414.902";
src = fetchFromGitHub {
owner = "rolandwalker";
repo = "list-utils";
@@ -35782,7 +36318,7 @@
sha256 = "0ql159v7sxs33yh2l080kchrj52vk34knz50cvqi3ykpb7djg3sz";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/list-utils";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/f9fcd716cbb9f5a4de82a49e57bcb20c483d05f6/recipes/list-utils";
sha256 = "0bknprr4jb1d20i9lj2aa17vpg1kqwdyzzwmy1kfydnkpf5scnr3";
name = "list-utils";
};
@@ -35795,7 +36331,7 @@
lit-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "lit-mode";
- version = "20141123.1836";
+ version = "20141123.1136";
src = fetchFromGitHub {
owner = "HectorAE";
repo = "lit-mode";
@@ -35803,7 +36339,7 @@
sha256 = "0mr0king5dj20vdycpszxnfs9ch808fhcz3q7svxfngj3d3671wd";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/lit-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/7a6a1c79c9bba7b17c150ea0663bc61936f15d83/recipes/lit-mode";
sha256 = "05rf7ki060nqnvircn0dkpdrg7xbh7phb8bqgsab89ycc7l9vv59";
name = "lit-mode";
};
@@ -35816,7 +36352,7 @@
litable = callPackage ({ dash, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "litable";
- version = "20150908.1609";
+ version = "20150908.909";
src = fetchFromGitHub {
owner = "Fuco1";
repo = "litable";
@@ -35824,7 +36360,7 @@
sha256 = "1nbz119ldwjvkm3xd9m0dx820lc177frz5mn585fsd7kqdbkam99";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/litable";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/74f2190b653907985e49a96ded986ab11b4946d7/recipes/litable";
sha256 = "073yw3ivkl093xxppn5vqyh69jhfc97al505mnyn34fwdj5v8fji";
name = "litable";
};
@@ -35834,22 +36370,22 @@
license = lib.licenses.free;
};
}) {};
- litecoin-ticker = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
+ litecoin-ticker = callPackage ({ fetchFromGitHub, fetchurl, json ? null, lib, melpaBuild }:
melpaBuild {
pname = "litecoin-ticker";
- version = "20160604.1225";
+ version = "20160611.1911";
src = fetchFromGitHub {
owner = "llcc";
repo = "btcbox-ticker";
- rev = "e3338f8badd1a6959f6082ed5aae100189c2b96e";
- sha256 = "17c0kyhw5aasckb7ghb7s6fnz3sz5pl2s1jqk2mn9h9b8rflbayc";
+ rev = "3d8047c736e4ee0b8638953f8cc63eaefad34106";
+ sha256 = "03iggfi3r5xjh9yhhpr1pgyayriycyybf8qnrhqkqcamh77kq21f";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/litecoin-ticker";
- sha256 = "14gak0av8wljmyq9lcf44dc2bvlfjb86filanqh0wkf2swpbdw85";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/4976446a8ae40980d502186615902fc05c15ec7c/recipes/litecoin-ticker";
+ sha256 = "14pjizgdckqhm31ihbz35j8g95jdpmf1rd4l5zz38fyx12zbcpx5";
name = "litecoin-ticker";
};
- packageRequires = [];
+ packageRequires = [ json ];
meta = {
homepage = "https://melpa.org/#/litecoin-ticker";
license = lib.licenses.free;
@@ -35858,7 +36394,7 @@
literate-coffee-mode = callPackage ({ coffee-mode, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "literate-coffee-mode";
- version = "20160114.1334";
+ version = "20160114.634";
src = fetchFromGitHub {
owner = "syohex";
repo = "emacs-literate-coffee-mode";
@@ -35866,7 +36402,7 @@
sha256 = "1wxysnsigjw40ykdwngg0gqfaag0dx6zg029i2zx25kl3gr1lflc";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/literate-coffee-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/a20410e916d45e5b243e7eb3bb2226c7e1e67b00/recipes/literate-coffee-mode";
sha256 = "1bll1y9q3kcg3v250asjvx2k9kb314qadaq1iwanwgdlp3qvvs40";
name = "literate-coffee-mode";
};
@@ -35879,7 +36415,7 @@
literate-starter-kit = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "literate-starter-kit";
- version = "20150730.2054";
+ version = "20150730.1354";
src = fetchFromGitHub {
owner = "eschulte";
repo = "emacs24-starter-kit";
@@ -35887,7 +36423,7 @@
sha256 = "1v37bii372w2g3pl09n5dcrk6y7glhpg8qiv17zsk9jy3ps2xm1b";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/literate-starter-kit";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/812860589cd92759fd2ae02d27f287de88f26863/recipes/literate-starter-kit";
sha256 = "1n2njf007fmrmsb8zrgxbz1cpxmr5nsp8w41yxa934iqc7qygkjy";
name = "literate-starter-kit";
};
@@ -35900,7 +36436,7 @@
live-code-talks = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, narrowed-page-navigation }:
melpaBuild {
pname = "live-code-talks";
- version = "20150115.2323";
+ version = "20150115.1623";
src = fetchFromGitHub {
owner = "david-christiansen";
repo = "live-code-talks";
@@ -35908,7 +36444,7 @@
sha256 = "1j0qa96vlsqybhp0082a466qb1hd2b0621306brl9pfl5srf5jsj";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/live-code-talks";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/833e549ba618e58d9cb0b6768a08c651ad8c9e0a/recipes/live-code-talks";
sha256 = "173mjmxanva13vk2f3a06s4dy62x271kynsa7pbhdg4fd72hdjma";
name = "live-code-talks";
};
@@ -35921,7 +36457,7 @@
live-py-mode = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "live-py-mode";
- version = "20160521.2030";
+ version = "20160521.1330";
src = fetchFromGitHub {
owner = "donkirkby";
repo = "live-py-plugin";
@@ -35929,7 +36465,7 @@
sha256 = "147k3d8hj6wgjmdfv3cnnpwsz0bs7j167zdv74qpx6nq03qrwpv1";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/live-py-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/c7615237e80b46b5c50cb51a3ed5b07d92566fb7/recipes/live-py-mode";
sha256 = "0yn1a0gf9yn068xifpv8p77d917mnalc56pll800zlpsdk8ljicq";
name = "live-py-mode";
};
@@ -35942,7 +36478,7 @@
lively = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "lively";
- version = "20160208.1935";
+ version = "20160208.1235";
src = fetchFromGitHub {
owner = "emacsorphanage";
repo = "lively";
@@ -35950,7 +36486,7 @@
sha256 = "1qxw7i23z6c4yimrzpaqna8j39rashgbswdv4m0x4qg4sqc7szdp";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/lively";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/0fda2b54a0ff0b6fc3bd6d20cfcbbf63cae5380f/recipes/lively";
sha256 = "0qnyqlhqmmfq2f47zmy29hn6wqrx5yvsax8kn63nmxw380gw1z18";
name = "lively";
};
@@ -35963,7 +36499,7 @@
livescript-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "livescript-mode";
- version = "20140613.621";
+ version = "20140612.2321";
src = fetchFromGitHub {
owner = "yhisamatsu";
repo = "livescript-mode";
@@ -35971,7 +36507,7 @@
sha256 = "0kqjz0i0zapyhh8z57cvc8ifiizngix3ca01mjnvyq3zxg1bqrsg";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/livescript-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/1727cd154c841219b1dff1c8714cb09692e2730f/recipes/livescript-mode";
sha256 = "1fdfhp39zr2mhy5rd6mwqv5fwd8xaypdqig7v3ksv77m5zq7cmmj";
name = "livescript-mode";
};
@@ -35984,7 +36520,7 @@
livid-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, s, skewer-mode }:
melpaBuild {
pname = "livid-mode";
- version = "20131116.1444";
+ version = "20131116.744";
src = fetchFromGitHub {
owner = "pandeiro";
repo = "livid-mode";
@@ -35992,7 +36528,7 @@
sha256 = "178ldzpk8a9m9abn8xlplxn5jgcca71dpkp82bs5g7bsccp3rx6p";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/livid-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/b14068485afbd888bf0d124aea089fe5fbd5038c/recipes/livid-mode";
sha256 = "0jy16m6injqznx4gmxzvhys480pclw9g07z4qll2dna37177ww9d";
name = "livid-mode";
};
@@ -36005,14 +36541,14 @@
llvm-mode = callPackage ({ fetchgit, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "llvm-mode";
- version = "20150910.1544";
+ version = "20150910.844";
src = fetchgit {
url = "http://llvm.org/git/llvm";
- rev = "f5adc997c205056d78b48785a2b486b0442e712a";
- sha256 = "11kcgck57p73igvjhm3sx5jwqh89y0hxxm6v4b31512z0kh2ipg8";
+ rev = "4ad0017d61f7b3444147fd5a47b18a527adb9fa8";
+ sha256 = "0bq2p677bl6gzfnrhhd3ysc9rpykq5nvzy0qn1k4r0s26fbw9fgz";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/llvm-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/05b7a689463c1dd4d3d00b992b9863d10e93112d/recipes/llvm-mode";
sha256 = "0j3zsd0shd7kbi65a2ha7kmr0zy3my05378swx6m5m9x7miyr4y7";
name = "llvm-mode";
};
@@ -36025,7 +36561,7 @@
load-relative = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "load-relative";
- version = "20160505.919";
+ version = "20160505.219";
src = fetchFromGitHub {
owner = "rocky";
repo = "emacs-load-relative";
@@ -36033,7 +36569,7 @@
sha256 = "0izrli7f20iq1pz1r1l0kshzpz7vl4p1gyn2n5mdjv5lbpq7cykb";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/load-relative";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/f052f201f7c308325c27cc2423e85cf6b9b67b4e/recipes/load-relative";
sha256 = "0j8ybbjzhzgjx47pqqdbsqi8n6pzqcf6zqc38x7cf1kkklgc87ay";
name = "load-relative";
};
@@ -36046,7 +36582,7 @@
load-theme-buffer-local = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "load-theme-buffer-local";
- version = "20120702.2236";
+ version = "20120702.1536";
src = fetchFromGitHub {
owner = "vic";
repo = "color-theme-buffer-local";
@@ -36054,7 +36590,7 @@
sha256 = "0gvc9jy34a8wvzwjpmqhshbx2kpk6ckmdrdj5v00iya7c4afnckx";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/load-theme-buffer-local";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/ca7bf43ef8893bf04e9658390e306ef69e80a156/recipes/load-theme-buffer-local";
sha256 = "13829yrh36qac7gpxanizlk4n7av99ngvv06y6mmi5rq06a4hjx4";
name = "load-theme-buffer-local";
};
@@ -36067,7 +36603,7 @@
loc-changes = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "loc-changes";
- version = "20150302.1748";
+ version = "20150302.1048";
src = fetchFromGitHub {
owner = "rocky";
repo = "emacs-loc-changes";
@@ -36075,7 +36611,7 @@
sha256 = "0i0ainawjvfl3qix329hx01x7rxyfin2xgpjk7y5dgmh4p3xhv94";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/loc-changes";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/a5ce68d573d19f26ecfd190f8e6cd1f384ca3e8a/recipes/loc-changes";
sha256 = "1akgij61b2ixpkchrriabwvx68cg4v5r5w9ncjrjh91hskjprfxh";
name = "loc-changes";
};
@@ -36088,7 +36624,7 @@
loccur = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "loccur";
- version = "20160129.2122";
+ version = "20160129.1422";
src = fetchFromGitHub {
owner = "fourier";
repo = "loccur";
@@ -36096,7 +36632,7 @@
sha256 = "1npz90zf91wqf35bqd3zmkh0b538i69w8ygc78x5w2x5005aqr0p";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/loccur";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/72550b043794331e85bc4b124f6d8ab70d969eff/recipes/loccur";
sha256 = "06pv2i05yzjzal4q21krbnp9rp4bsainxcwvpc98020vsmms0z8h";
name = "loccur";
};
@@ -36109,7 +36645,7 @@
lodgeit = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "lodgeit";
- version = "20150312.1449";
+ version = "20150312.849";
src = fetchFromGitHub {
owner = "ionrock";
repo = "lodgeit-el";
@@ -36117,7 +36653,7 @@
sha256 = "1cdnm270kzixa0kpis0xw2ybkw8lqh7kykc7blxkxjrr9yjvbawl";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/lodgeit";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/c82e72535aefade20e23e38931ca573e3459401e/recipes/lodgeit";
sha256 = "1ax2w5yxscycjz90g4jdbhd64g9sipzxpfjs7gq3na77s5dcjzsq";
name = "lodgeit";
};
@@ -36130,7 +36666,7 @@
log4e = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "log4e";
- version = "20150105.1405";
+ version = "20150105.705";
src = fetchFromGitHub {
owner = "aki2o";
repo = "log4e";
@@ -36138,7 +36674,7 @@
sha256 = "1l28n7a0v2zkknc70i1wn6qb5i21dkhfizzk8wcj28v44cgzk022";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/log4e";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/90d0e451c5a8eb25db95990b058964a9acea4b89/recipes/log4e";
sha256 = "1klj59dv8k4r0hily489dp12ra5hq1jnsdc0wcakh6zirmakhs34";
name = "log4e";
};
@@ -36151,14 +36687,14 @@
log4j-mode = callPackage ({ fetchgit, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "log4j-mode";
- version = "20160108.2018";
+ version = "20160108.1318";
src = fetchgit {
url = "git://git.code.sf.net/p/log4j-mode/code";
rev = "26171b1e723502055e085393b0ecdcb6db406010";
sha256 = "15x6368pk4bbvhbd6cqnazcxfdz0b3f70029x0884a5797janln5";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/log4j-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/39321e054925a8de854942fec4ed8e7570099fc6/recipes/log4j-mode";
sha256 = "06lam4iqxlbl9ib2n2db2nj6jbjzrw2ak8r99n6w4s3fny1q3yxx";
name = "log4j-mode";
};
@@ -36171,7 +36707,7 @@
logalimacs = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, popup, popwin, stem }:
melpaBuild {
pname = "logalimacs";
- version = "20131021.2029";
+ version = "20131021.1329";
src = fetchFromGitHub {
owner = "logaling";
repo = "logalimacs";
@@ -36179,7 +36715,7 @@
sha256 = "0lj3i9i3mg17xws13gzx8myc6d7djgsj47yx4kaq5hycgkni1p7q";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/logalimacs";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/ef9833a5ca4d455f1d33b9367860e2051d60662f/recipes/logalimacs";
sha256 = "0ai7a01bdi3a0amgi63pwgdp8wgcgx10an4nhc627wgb1cqxb7p6";
name = "logalimacs";
};
@@ -36192,7 +36728,7 @@
logito = callPackage ({ eieio ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "logito";
- version = "20120225.2155";
+ version = "20120225.1455";
src = fetchFromGitHub {
owner = "sigma";
repo = "logito";
@@ -36200,7 +36736,7 @@
sha256 = "0jpyd2f33pk984kg0q9hxdl4615jb7sxsggnb30mpz7a2ws479xr";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/logito";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/cae2ac3513e371a256be0f1a7468e38e686c2487/recipes/logito";
sha256 = "0bk4qnz66kvhzsk88lw45209778y53kg17iih70ix4ma1x6a3v5l";
name = "logito";
};
@@ -36213,7 +36749,7 @@
logstash-conf = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "logstash-conf";
- version = "20150308.1318";
+ version = "20150308.718";
src = fetchFromGitHub {
owner = "Wilfred";
repo = "logstash-conf.el";
@@ -36221,7 +36757,7 @@
sha256 = "05px3zc3is7k2jmh7mal0al5zx5cqvn1bzmhgqq02pp6lwsx5xqa";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/logstash-conf";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/eba82cc626f52e18c7ba9062d7ac648085e79914/recipes/logstash-conf";
sha256 = "03i2ilphf3fdjag7m9z5gi23n6ik36qn42mzc22432m4y3c7iksh";
name = "logstash-conf";
};
@@ -36234,7 +36770,7 @@
logview = callPackage ({ datetime, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "logview";
- version = "20160520.2241";
+ version = "20160520.1541";
src = fetchFromGitHub {
owner = "doublep";
repo = "logview";
@@ -36242,7 +36778,7 @@
sha256 = "0xjfm39pk1z2wj6rr9v9jzsxy5p2vdi4rinzfpl719lcknpvzkw3";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/logview";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/1df3c11ed7738f32e6ae457647e62847701c8b19/recipes/logview";
sha256 = "0gks3j5avx8k3427a36lv7gr95id3cylaamgn5qwbg14s54y0vsh";
name = "logview";
};
@@ -36255,7 +36791,7 @@
lolcode-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "lolcode-mode";
- version = "20111002.1047";
+ version = "20111002.347";
src = fetchFromGitHub {
owner = "bodil";
repo = "lolcode-mode";
@@ -36263,7 +36799,7 @@
sha256 = "0pyfgywmmnlz1arvdxwyw96gr6xcg2sp3bqjli8xfcl8i0nww4kb";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/lolcode-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/572d31a0bd8627d8b5f6bab021c953a1fee31d2c/recipes/lolcode-mode";
sha256 = "0dxdqr3z5bw0vcfxhhhc1499vrfk1xqwxshr0kvlhdalpf59rqiw";
name = "lolcode-mode";
};
@@ -36276,7 +36812,7 @@
look-dired = callPackage ({ fetchFromGitHub, fetchurl, lib, look-mode, melpaBuild }:
melpaBuild {
pname = "look-dired";
- version = "20160529.2301";
+ version = "20160529.1601";
src = fetchFromGitHub {
owner = "vapniks";
repo = "look-dired";
@@ -36284,7 +36820,7 @@
sha256 = "0767s606d2iv9k1ffc4bmmkxammbysf9z7306cycbd3jrqdsakrs";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/look-dired";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/ef66b97b2e9034cb0c62dd1e37b2577ffef60834/recipes/look-dired";
sha256 = "0dddx5nxr519wqdgrbglh0pqjl3alg4ddmank42g4llzycy61wsd";
name = "look-dired";
};
@@ -36296,13 +36832,13 @@
}) {};
look-mode = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild {
pname = "look-mode";
- version = "20151211.1926";
+ version = "20151211.1226";
src = fetchurl {
url = "https://www.emacswiki.org/emacs/download/look-mode.el";
sha256 = "0sl6hqggi6qn2qp9khw11qp5hamngwxrrwx98k3pwpj9kgicdpgp";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/look-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/245ded3ee787da7ad5f462fc6f519a963485adb5/recipes/look-mode";
sha256 = "0y3wjfjx0g5jclmv9m3vimv7zd18pk5im7smr41qk09hswi63yqj";
name = "look-mode";
};
@@ -36315,15 +36851,15 @@
loop = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "loop";
- version = "20151228.1221";
+ version = "20160627.1727";
src = fetchFromGitHub {
owner = "Wilfred";
repo = "loop.el";
- rev = "20dc5c549821b12e6777f5e6aed9033b4a2dcc5c";
- sha256 = "1wmd7s3dk9krgmhs4f92mig18vx6y551n45ai7cvj92f4fbrsd08";
+ rev = "5e27a25ca836dceaaf81c1cc83a6cea606b26e0e";
+ sha256 = "0fsq1156srfv5hihyyy7bsvz40cch8l6zbrs36vf022ly9nv0qmb";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/loop";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/ba481ca96469b3bd518e4fd8f24947338c8af014/recipes/loop";
sha256 = "0pav16kinzljmzx84vfz63fvi39af4628vk1jw79jk0pyg9rjbar";
name = "loop";
};
@@ -36336,7 +36872,7 @@
lorem-ipsum = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "lorem-ipsum";
- version = "20140911.2308";
+ version = "20140911.1608";
src = fetchFromGitHub {
owner = "jschaf";
repo = "emacs-lorem-ipsum";
@@ -36344,7 +36880,7 @@
sha256 = "0grzl4kqpc1x6569yfh9xdzzbgmhcskxwk6f7scjpl32acr88cmx";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/lorem-ipsum";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/0c09f9b82430992d119d9148314c758f067832cd/recipes/lorem-ipsum";
sha256 = "0p62yifbrknjn8z0613wy2aaknj44liyrgbknhpa0qn0d4fcrp4h";
name = "lorem-ipsum";
};
@@ -36357,7 +36893,7 @@
love-minor-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, lua-mode, melpaBuild }:
melpaBuild {
pname = "love-minor-mode";
- version = "20130429.2359";
+ version = "20130429.1659";
src = fetchFromGitHub {
owner = "ejmr";
repo = "love-minor-mode";
@@ -36365,7 +36901,7 @@
sha256 = "179r4pz3hlb5p6bjfhdikkx1zvh09ln5dbw3c3rmlyww1q7v26yl";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/love-minor-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/0f224c4c7519b3668b1270c957227e486896b7b6/recipes/love-minor-mode";
sha256 = "1skg039h2hn8dh47ww6n9l776s2yda8ariab4v9f56kb21bncr4m";
name = "love-minor-mode";
};
@@ -36378,7 +36914,7 @@
lua-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "lua-mode";
- version = "20160502.2041";
+ version = "20160502.1341";
src = fetchFromGitHub {
owner = "immerrr";
repo = "lua-mode";
@@ -36386,7 +36922,7 @@
sha256 = "03k7nqk6vz8949pj77lsmw2rrzip7xnfp5nyy18y5d8rvifrcdgw";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/lua-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/ca7bf43ef8893bf04e9658390e306ef69e80a156/recipes/lua-mode";
sha256 = "0gyi7w2h192h3pmrhq39lxwlwd9qyqs303lnp2655pikdzk9js94";
name = "lua-mode";
};
@@ -36399,7 +36935,7 @@
lush-theme = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "lush-theme";
- version = "20141107.1706";
+ version = "20141107.1006";
src = fetchFromGitHub {
owner = "andre-richter";
repo = "emacs-lush-theme";
@@ -36407,7 +36943,7 @@
sha256 = "0mv73s89n59m44szc37086wq55py5sx0lc0jxncfybawhsqyd0ar";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/lush-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/8b29b2f36852e711ce3520d71e83921a1dcb9ccf/recipes/lush-theme";
sha256 = "03kqws8dzm0ay5k86f4v7g2g2ygwk4fzmz2vyzhzhbsj8hrniq9p";
name = "lush-theme";
};
@@ -36420,7 +36956,7 @@
lusty-explorer = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "lusty-explorer";
- version = "20150509.57";
+ version = "20150508.1757";
src = fetchFromGitHub {
owner = "sjbach";
repo = "lusty-emacs";
@@ -36428,7 +36964,7 @@
sha256 = "1r1xfn0dyc4m49064g9n6hpwn4r763kpbg3dgprsv30i5ska61qa";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/lusty-explorer";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/efedaa3b1de5f6406c7dcd842eee42eefaf8ab50/recipes/lusty-explorer";
sha256 = "0xqanmmkyvzcg2g4zvascq5j004bqz7vmz1a19c25g9cs3rdh0ps";
name = "lusty-explorer";
};
@@ -36441,7 +36977,7 @@
lxc = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "lxc";
- version = "20140410.2222";
+ version = "20140410.1522";
src = fetchFromGitHub {
owner = "nicferrier";
repo = "emacs-lxc";
@@ -36449,7 +36985,7 @@
sha256 = "090gk0il4yyypzjbh2qrjdaldwf90fi30impmh4zcfl73bic5q9q";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/lxc";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/7c16c08c388e3280f617d0768bc1cd75c5897768/recipes/lxc";
sha256 = "1rv1ybmbjx7n3cavx21nzmvckw63q3jmjsfdr2pcgavrr2ck6lka";
name = "lxc";
};
@@ -36462,7 +36998,7 @@
m-buffer = callPackage ({ dash, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "m-buffer";
- version = "20160125.2203";
+ version = "20160125.1503";
src = fetchFromGitHub {
owner = "phillord";
repo = "m-buffer-el";
@@ -36470,7 +37006,7 @@
sha256 = "1rrfvshl6zbsrswg5hrvq1p0rd9vacqwbr4s44kln7vg4ybcgr24";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/m-buffer";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/0cc1991d4f36b8d53d6cbeb6c83417c5e6b9453f/recipes/m-buffer";
sha256 = "0l2rayglv48pcwnr1ggmn8c0az0mffgv02ivnzr9jcfs55ki07fc";
name = "m-buffer";
};
@@ -36483,7 +37019,7 @@
macro-math = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "macro-math";
- version = "20130328.1704";
+ version = "20130328.1104";
src = fetchFromGitHub {
owner = "nschum";
repo = "macro-math.el";
@@ -36491,7 +37027,7 @@
sha256 = "119c77s3qp1vqc5m2yf7m4s81aphkhsvsnwqmpq6xl08r3592zxz";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/macro-math";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/17df4dccdffff6ef7b4900565ae64c1cf84c1fda/recipes/macro-math";
sha256 = "1r7splwq5kdrdhbmw5zn81vxymsrllgil48g8dl0r60293384h00";
name = "macro-math";
};
@@ -36503,13 +37039,13 @@
}) {};
macros-plus = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild {
pname = "macros-plus";
- version = "20151231.2319";
+ version = "20151231.1619";
src = fetchurl {
url = "https://www.emacswiki.org/emacs/download/macros+.el";
sha256 = "07iw9iarz6z9n6vnhqqljfjpvq6vb97ca2hwj9v0k5k8mafdqg7d";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/macros+";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/a5d15f875b0080b12ce45cf696c581f6bbf061ba/recipes/macros+";
sha256 = "0aihszxsjnc93pbbkmkr1iwzvii3jw8yh1f6dpnjykgvb328pvqi";
name = "macros-plus";
};
@@ -36522,7 +37058,7 @@
macrostep = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "macrostep";
- version = "20151213.1045";
+ version = "20151213.345";
src = fetchFromGitHub {
owner = "joddie";
repo = "macrostep";
@@ -36530,7 +37066,7 @@
sha256 = "0g9bnq4p3ffvva30hpll80dn3i41m51mcvw3qf787zg1nmc5a0j6";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/macrostep";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/362b5cb71e81172bc654594c08a5d0b91262851a/recipes/macrostep";
sha256 = "1wjibxbdsp5qfhq8xy0mcf3ms0q74qhdrhqndprn6jh3kcn5q63c";
name = "macrostep";
};
@@ -36543,7 +37079,7 @@
mag-menu = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, splitter }:
melpaBuild {
pname = "mag-menu";
- version = "20150505.2050";
+ version = "20150505.1350";
src = fetchFromGitHub {
owner = "chumpage";
repo = "mag-menu";
@@ -36551,7 +37087,7 @@
sha256 = "1flamyk7z3r723cczqra0f4yabc6kmgwjaw2bvs3kisppqmmz72g";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/mag-menu";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/00043412ffa4e434de9679204b9b3d2602e76ae0/recipes/mag-menu";
sha256 = "1r1yisjnqxl9llpf91rwqp4q47jc4qp32xnkl8wzsgr0r2qf5yk2";
name = "mag-menu";
};
@@ -36564,7 +37100,7 @@
magic-filetype = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, s }:
melpaBuild {
pname = "magic-filetype";
- version = "20160522.1629";
+ version = "20160522.929";
src = fetchFromGitHub {
owner = "zonuexe";
repo = "magic-filetype.el";
@@ -36572,7 +37108,7 @@
sha256 = "109j4czb71qg9jlnflzph0qmbxyfajddmg0yqwhl368pa29alvrk";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/magic-filetype";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/0d6027c5a66386f7140305a4cde12d66da4dfa09/recipes/magic-filetype";
sha256 = "0gcys45cqn5ghppkn0rmyvfybprlfz1x6hqr21yv93mf79h75zhg";
name = "magic-filetype";
};
@@ -36585,7 +37121,7 @@
magic-latex-buffer = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "magic-latex-buffer";
- version = "20160212.1503";
+ version = "20160212.803";
src = fetchFromGitHub {
owner = "zk-phi";
repo = "magic-latex-buffer";
@@ -36593,7 +37129,7 @@
sha256 = "1gmhb8g1pl4qqk1d32hlvmhx2jqfsn3hkc4lkzhgk1n3qzfrq4hf";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/magic-latex-buffer";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/07e240ebe71d389d314c4a27bbcfe1f88b215c3b/recipes/magic-latex-buffer";
sha256 = "0xm4vk4aggyfw96cgya5cp97jzx5ha0xwpf2yfh7c3m8d9cca4y8";
name = "magic-latex-buffer";
};
@@ -36606,15 +37142,15 @@
magit = callPackage ({ async, dash, emacs, fetchFromGitHub, fetchurl, git-commit, lib, magit-popup, melpaBuild, with-editor }:
melpaBuild {
pname = "magit";
- version = "20160602.1848";
+ version = "20160629.1356";
src = fetchFromGitHub {
owner = "magit";
repo = "magit";
- rev = "7ceca0af16ab4a7c16298b11640fc331f17b29f2";
- sha256 = "0sdg30lcisrc1y2n6hjra3c7v6s7xjfbp8ay6mj3x7ynjqp7a65c";
+ rev = "5f57495f65fea169282b23233f87c4af07a60e4c";
+ sha256 = "0x5k1q4vajpb9658jl0ikjm94pq5gnk9y55px72kdmh9hm8nx5iq";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/magit";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/68bb049b7c4424345f5c1aea82e950a5e47e9e47/recipes/magit";
sha256 = "0518ax2y7y2ji4jp7yghy84yxm0zgb059aqfa4v17grm4kr8p16q";
name = "magit";
};
@@ -36634,15 +37170,15 @@
magit-annex = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, magit, melpaBuild }:
melpaBuild {
pname = "magit-annex";
- version = "20160515.105";
+ version = "20160625.54";
src = fetchFromGitHub {
owner = "magit";
repo = "magit-annex";
- rev = "b5d4389aa63ab4a03776120d2bd89229aa7d5238";
- sha256 = "19w8143c4spa856xyzx8fylndbj4s9nwn27f6v1ckqxvm5l0pph0";
+ rev = "17c3aa4f3b2ded6c67b9ae593bcd0c929631c940";
+ sha256 = "0ra9g2dmpvii0pdwv5hmx4kr0m695ry5msnsyc6lvzrcc9hvmw5b";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/magit-annex";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/cec5af50ae7634cc566adfbfdf0f95c3e2951c0c/recipes/magit-annex";
sha256 = "1ri58s1ly416ksmb7mql6vnmx7hq59lmhi7qijknjarw7qs3bqys";
name = "magit-annex";
};
@@ -36655,7 +37191,7 @@
magit-filenotify = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, magit, melpaBuild }:
melpaBuild {
pname = "magit-filenotify";
- version = "20151117.40";
+ version = "20151116.1740";
src = fetchFromGitHub {
owner = "magit";
repo = "magit-filenotify";
@@ -36663,7 +37199,7 @@
sha256 = "0nkxxhxkhy314jv1l3hza84vigl8q7fc8hjjvrx58gfgsfgifx6r";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/magit-filenotify";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/c6c87a11492f6b6e5159a2a3dc1fe7d9efcc0cde/recipes/magit-filenotify";
sha256 = "00a77czdi24n3zkx6jwaj2asablzpxq16iqd8s84kkqxcfiiahn7";
name = "magit-filenotify";
};
@@ -36676,7 +37212,7 @@
magit-find-file = callPackage ({ dash, fetchFromGitHub, fetchurl, lib, magit, melpaBuild }:
melpaBuild {
pname = "magit-find-file";
- version = "20150702.1030";
+ version = "20150702.330";
src = fetchFromGitHub {
owner = "bradwright";
repo = "magit-find-file.el";
@@ -36684,7 +37220,7 @@
sha256 = "1j3jsrp0qpaa2xd98d1g9z0zc4b93knwajrlnlsc7l6g0vlfsddb";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/magit-find-file";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/7fabdb05de9b8ec18a3a566f99688b50443b6b44/recipes/magit-find-file";
sha256 = "1y66nsq1hbv1sb4n71gdxv7p1rz37vd9lkf7zl7avy0dchs499ik";
name = "magit-find-file";
};
@@ -36697,7 +37233,7 @@
magit-gerrit = callPackage ({ fetchFromGitHub, fetchurl, lib, magit, melpaBuild }:
melpaBuild {
pname = "magit-gerrit";
- version = "20160226.1030";
+ version = "20160226.330";
src = fetchFromGitHub {
owner = "terranpro";
repo = "magit-gerrit";
@@ -36705,7 +37241,7 @@
sha256 = "0mms0gxv9a3ns8lk5k2wjibm3088y1cmpr3axjdh6ppv7r5wdvii";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/magit-gerrit";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/f7cc000debed666ad6800e31c114eedb7384317c/recipes/magit-gerrit";
sha256 = "1iwvg10ly6dlf8llz9f8d4qfdbvd3s28wf48qgn1wjlxpka6zrd4";
name = "magit-gerrit";
};
@@ -36718,7 +37254,7 @@
magit-gh-pulls = callPackage ({ emacs, fetchFromGitHub, fetchurl, gh, lib, magit, melpaBuild, pcache, s }:
melpaBuild {
pname = "magit-gh-pulls";
- version = "20160513.1210";
+ version = "20160513.510";
src = fetchFromGitHub {
owner = "sigma";
repo = "magit-gh-pulls";
@@ -36726,7 +37262,7 @@
sha256 = "1cnvfvf8c2f1jvxxl4qggzwhk082q0hfljhfm1znhc5qxh1vyc4x";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/magit-gh-pulls";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/9b54fe4f51820c2f707e1f5d8a1128fff19a319c/recipes/magit-gh-pulls";
sha256 = "0qn9vjxi33pya9s8v3g95scmhwrn2yf5pjm7d24frq766wigjv8d";
name = "magit-gh-pulls";
};
@@ -36739,15 +37275,15 @@
magit-gitflow = callPackage ({ fetchFromGitHub, fetchurl, lib, magit, magit-popup, melpaBuild }:
melpaBuild {
pname = "magit-gitflow";
- version = "20160529.1300";
+ version = "20160629.1432";
src = fetchFromGitHub {
owner = "jtatarik";
repo = "magit-gitflow";
- rev = "c4c221d2c7474ce32e7cd56518aa82fb93607f8c";
- sha256 = "0bx5j0zskpyfz76px8lr74d4x0gcqwd0ghvbvyj957g2n1bqxr2a";
+ rev = "56f9934d3445fbeaf6ed6e7426e840b8e1db247e";
+ sha256 = "0g8jm9ax4k59wkl3n65zy7hbqrvk85lw22mwza900xbwb515mm66";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/magit-gitflow";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/dfaeb33dec2c75d21733b6e51d063664c6544e4d/recipes/magit-gitflow";
sha256 = "0wsqq3xpqqfak4aqwsh5sxjb1m62z3z0ysgdmnrch3qsh480r8vf";
name = "magit-gitflow";
};
@@ -36760,15 +37296,15 @@
magit-p4 = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, magit, magit-popup, melpaBuild, p4 }:
melpaBuild {
pname = "magit-p4";
- version = "20160311.1809";
+ version = "20160627.647";
src = fetchFromGitHub {
owner = "qoocku";
repo = "magit-p4";
- rev = "14e40cba11e73fae3bc300dbdb65274ebf1278b4";
- sha256 = "01ifl1bg3sd5d4b5ms9kyw074as8bkzqpwhxppp79ml46vp1np2x";
+ rev = "01a42ac54606e272c29818f10320175b09b07cd6";
+ sha256 = "12finsicwzpa5bchcw5ymm2mp8ca4lmic9rrbqy22bf8907yw7q8";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/magit-p4";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/440d47ca465845eaa601ca8a6e4b15fc197e522b/recipes/magit-p4";
sha256 = "19p7h3a21jjr2h52ika14lyczdv6z36gl7hk1v17bffffac8q069";
name = "magit-p4";
};
@@ -36781,15 +37317,15 @@
magit-popup = callPackage ({ async, dash, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "magit-popup";
- version = "20160530.545";
+ version = "20160606.1241";
src = fetchFromGitHub {
owner = "magit";
repo = "magit";
- rev = "7ceca0af16ab4a7c16298b11640fc331f17b29f2";
- sha256 = "0sdg30lcisrc1y2n6hjra3c7v6s7xjfbp8ay6mj3x7ynjqp7a65c";
+ rev = "5f57495f65fea169282b23233f87c4af07a60e4c";
+ sha256 = "0x5k1q4vajpb9658jl0ikjm94pq5gnk9y55px72kdmh9hm8nx5iq";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/magit-popup";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/cec5af50ae7634cc566adfbfdf0f95c3e2951c0c/recipes/magit-popup";
sha256 = "0w6m384bbmp3bd4qbss5h1jvcfp4qnpqvzlfykhdgjwpv2b2a2fj";
name = "magit-popup";
};
@@ -36802,7 +37338,7 @@
magit-rockstar = callPackage ({ dash, fetchFromGitHub, fetchurl, lib, magit, melpaBuild }:
melpaBuild {
pname = "magit-rockstar";
- version = "20160517.1551";
+ version = "20160517.851";
src = fetchFromGitHub {
owner = "tarsius";
repo = "magit-rockstar";
@@ -36810,7 +37346,7 @@
sha256 = "075gxm4shbh5zfr17zpfn35w8ndgz9aqz6y3wws23wa4ff2n8kdc";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/magit-rockstar";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/7a20b539cbd38ffa546c1b56b9fac78c0b9457f6/recipes/magit-rockstar";
sha256 = "1i4fmraiypyd3q6vvibkg9xqfxiq83kcz64b1dr3wmwn30j7986n";
name = "magit-rockstar";
};
@@ -36823,7 +37359,7 @@
magit-stgit = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, magit, melpaBuild }:
melpaBuild {
pname = "magit-stgit";
- version = "20160224.1603";
+ version = "20160224.903";
src = fetchFromGitHub {
owner = "magit";
repo = "magit-stgit";
@@ -36831,7 +37367,7 @@
sha256 = "163a1rddl54jgxm5dygnbp1pz1as4hhjszan1rcabvzcfnfdpakj";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/magit-stgit";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/cec5af50ae7634cc566adfbfdf0f95c3e2951c0c/recipes/magit-stgit";
sha256 = "12wg1ig2jzy2np76brpwxdix9pwv75chviq3c24qyv4y80pd11sv";
name = "magit-stgit";
};
@@ -36844,7 +37380,7 @@
magit-svn = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, magit, melpaBuild }:
melpaBuild {
pname = "magit-svn";
- version = "20151219.1447";
+ version = "20151219.747";
src = fetchFromGitHub {
owner = "magit";
repo = "magit-svn";
@@ -36852,7 +37388,7 @@
sha256 = "0r3nkrisyjawjwbm74yi6fqiwcqzlfkypsdscfhii0q50ky8plph";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/magit-svn";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/cec5af50ae7634cc566adfbfdf0f95c3e2951c0c/recipes/magit-svn";
sha256 = "02n732z06f0bhxqkxzlvm36bpqr40pas09zbzpfdk4pb6f9f80s0";
name = "magit-svn";
};
@@ -36865,7 +37401,7 @@
magit-topgit = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, magit, melpaBuild }:
melpaBuild {
pname = "magit-topgit";
- version = "20160313.2054";
+ version = "20160313.1454";
src = fetchFromGitHub {
owner = "magit";
repo = "magit-topgit";
@@ -36873,7 +37409,7 @@
sha256 = "06fbjv3zd92lvg4xjsp9l4jkxx2glhng3ys3s9jmvy5y49pymwb2";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/magit-topgit";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/cec5af50ae7634cc566adfbfdf0f95c3e2951c0c/recipes/magit-topgit";
sha256 = "1ngrgf40n1g6ncd5nqgr0zgxwlkmv9k4fik96dgzysgwincx683i";
name = "magit-topgit";
};
@@ -36886,7 +37422,7 @@
magma-mode = callPackage ({ cl-lib ? null, dash, f, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "magma-mode";
- version = "20160304.1308";
+ version = "20160304.608";
src = fetchFromGitHub {
owner = "ThibautVerron";
repo = "magma-mode";
@@ -36894,7 +37430,7 @@
sha256 = "1pq6ckxp3dcb2f6xfsd4jwd43r9d0920m30ammp39glgc39p9lsq";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/magma-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/59764a0aab7c3f32b5a872a3d10a7e144f273a7e/recipes/magma-mode";
sha256 = "1gq6yi51h1h7ivrm1xr6nfrpabx8ylbk0waaw04gnw3bb54dmmvc";
name = "magma-mode";
};
@@ -36907,7 +37443,7 @@
magnatune = callPackage ({ dash, fetchFromGitHub, fetchurl, lib, melpaBuild, s }:
melpaBuild {
pname = "magnatune";
- version = "20151030.2035";
+ version = "20151030.1435";
src = fetchFromGitHub {
owner = "eikek";
repo = "magnatune.el";
@@ -36915,7 +37451,7 @@
sha256 = "1hqz26zm4bdz5wavna4j9yia3ns4z19dnszl7k0lcpgbgmb0wh8y";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/magnatune";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/6dfd5ae62718a32f8c5af4048af06cb53961d7df/recipes/magnatune";
sha256 = "0fmxlrq5ls6fpbk5fv67aan8gg1c61i1chfw5lhf496pwqzq901d";
name = "magnatune";
};
@@ -36928,7 +37464,7 @@
main-line = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "main-line";
- version = "20151121.306";
+ version = "20151120.2006";
src = fetchFromGitHub {
owner = "emacsfodder";
repo = "emacs-mainline";
@@ -36936,7 +37472,7 @@
sha256 = "06sjwl0bk648wnnrmyh6qgnlqmxypjmy0gkfl6kpv01r8vh7x2q5";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/main-line";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/7fabdb05de9b8ec18a3a566f99688b50443b6b44/recipes/main-line";
sha256 = "06rihx9h2h8ayrirbx74d9qdf26laz9yxffvxyldzm9hymlbzadd";
name = "main-line";
};
@@ -36949,7 +37485,7 @@
majapahit-theme = callPackage ({ fetchFromGitLab, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "majapahit-theme";
- version = "20160412.1332";
+ version = "20160412.632";
src = fetchFromGitLab {
owner = "franksn";
repo = "majapahit-theme";
@@ -36957,7 +37493,7 @@
sha256 = "1s4sm59wz03yz4srqzav7myq6p0gmijw5zj2kbpvxfanlr8b2rb1";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/majapahit-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/c9b793878de4107bb646652d09d8799aef8b97e8/recipes/majapahit-theme";
sha256 = "04k2smrya27rrjlzvnl3a6llg8vj8x4mm9qyk4kwrmckhd6jd68s";
name = "majapahit-theme";
};
@@ -36970,7 +37506,7 @@
make-color = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "make-color";
- version = "20140625.1350";
+ version = "20140625.650";
src = fetchFromGitHub {
owner = "alezost";
repo = "make-color.el";
@@ -36978,7 +37514,7 @@
sha256 = "1ky3scyjb69wi76xg6a8qx4ja6lr6mk530bv5gmhj7fxbq8b3x5c";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/make-color";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/bb765469c65589ae9d7dbc420a8edcf44c3be5d1/recipes/make-color";
sha256 = "0mrv8b67lpid5m8rfbhcik76bvnjlw4xmcrd2c2iinyl02y07r5k";
name = "make-color";
};
@@ -36991,7 +37527,7 @@
make-it-so = callPackage ({ emacs, fetchFromGitHub, fetchurl, helm, lib, melpaBuild }:
melpaBuild {
pname = "make-it-so";
- version = "20150319.2007";
+ version = "20150319.1407";
src = fetchFromGitHub {
owner = "abo-abo";
repo = "make-it-so";
@@ -36999,7 +37535,7 @@
sha256 = "00j5n9pil1qik4mrzvam4rp6213w8jm4qw7c4z8sxpq57xa0b679";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/make-it-so";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/aad592089ed2200e2f8c5191e8adeac1db4bce54/recipes/make-it-so";
sha256 = "0a8abz54mb60mfr0bl9ry8yawq99vx9hjl4fm2sivns58qjgfy73";
name = "make-it-so";
};
@@ -37012,7 +37548,7 @@
maker-mode = callPackage ({ dash, fetchFromGitHub, fetchurl, lib, melpaBuild, s }:
melpaBuild {
pname = "maker-mode";
- version = "20150116.1254";
+ version = "20150116.554";
src = fetchFromGitHub {
owner = "fommil";
repo = "maker-mode";
@@ -37020,7 +37556,7 @@
sha256 = "0w3kar52yf8clf9801c4jzfrixi10clc8fs8ni2d4pzhdwwca2zw";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/maker-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/ba7edfa6ab6b93c346f92859db706acb3fd5fc6e/recipes/maker-mode";
sha256 = "03q09jxmhwqy7g09navj08z9ir0rbh7w26c1av7hwhmq4i6xwg8a";
name = "maker-mode";
};
@@ -37033,7 +37569,7 @@
makey = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "makey";
- version = "20131231.1530";
+ version = "20131231.830";
src = fetchFromGitHub {
owner = "mickeynp";
repo = "makey";
@@ -37041,7 +37577,7 @@
sha256 = "1rr7vpm3xxzcaam3m8xni3ajy8ycyljix07n2jzczayri9sd8csy";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/makey";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/688e32e98758aa6fd31218e98608bd54a76c3e83/recipes/makey";
sha256 = "06xgrlkqvg288yd4lyhx4vi80jlfarhblxk5m5zzs5as7n08cvk4";
name = "makey";
};
@@ -37054,7 +37590,7 @@
malabar-mode = callPackage ({ fetchFromGitHub, fetchurl, fringe-helper, groovy-mode, lib, melpaBuild }:
melpaBuild {
pname = "malabar-mode";
- version = "20150720.1955";
+ version = "20150720.1255";
src = fetchFromGitHub {
owner = "m0smith";
repo = "malabar-mode";
@@ -37062,7 +37598,7 @@
sha256 = "0hlxs9gi2vml2id9q0r1r0xdm0zshjzc1w3phjf2ab0aa3hl5k6l";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/malabar-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/29bbefd1e3cc5726584c89244fb5d8ecd18200c3/recipes/malabar-mode";
sha256 = "026ing7v22rz1pfzs2j9z09pm6dajpys992n45gzhwirz5f0q1rk";
name = "malabar-mode";
};
@@ -37075,15 +37611,15 @@
malinka = callPackage ({ cl-lib ? null, dash, f, fetchFromGitHub, fetchurl, lib, melpaBuild, projectile, rtags, s }:
melpaBuild {
pname = "malinka";
- version = "20160402.1029";
+ version = "20160615.1548";
src = fetchFromGitHub {
owner = "LefterisJP";
repo = "malinka";
- rev = "bfb25297fd2dc13813da593305906e18bbedbebe";
- sha256 = "04j7x7kkilfrk4i76aizkdhmghi9a5hc63mj6mhm8x0v1c4f15lj";
+ rev = "7a5c6e61462d2d76edcf9231d3cb70a63509269e";
+ sha256 = "19ypnqrdxragnhdxfraxrinbsiamwpmgqgjj35crjnifdcj6lqzz";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/malinka";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/909a2d78f49a11e3f90e7d3c7f8af55e15113442/recipes/malinka";
sha256 = "1245mpxsxwnnpdsf0pd28mddgdfhh7x32a2l3sxfq0dyg2xlgvrp";
name = "malinka";
};
@@ -37096,7 +37632,7 @@
mallard-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "mallard-mode";
- version = "20131204.525";
+ version = "20131203.2225";
src = fetchFromGitHub {
owner = "jhradilek";
repo = "emacs-mallard-mode";
@@ -37104,7 +37640,7 @@
sha256 = "18x3cssfn81k8hg4frj7dhzphg784321z51wbbvn3bjhq7s6j3a2";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/mallard-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/19c5543664ca685a70e53baa1357842e83cbf8f7/recipes/mallard-mode";
sha256 = "0y2ikjgy107kb85pz50vv7ywslqgbrrkcfsrd8gsk1jky4qn8izd";
name = "mallard-mode";
};
@@ -37117,7 +37653,7 @@
mallard-snippets = callPackage ({ fetchFromGitHub, fetchurl, lib, mallard-mode, melpaBuild, yasnippet }:
melpaBuild {
pname = "mallard-snippets";
- version = "20131023.2051";
+ version = "20131023.1351";
src = fetchFromGitHub {
owner = "jhradilek";
repo = "emacs-mallard-snippets";
@@ -37125,7 +37661,7 @@
sha256 = "0qk7i47nmyp4llwp6x0i1i5dk82ck26iyz1sjvvlihaw8a5akny2";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/mallard-snippets";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/57a31a6ac93a864cb5212c925fdfb0961d36b24a/recipes/mallard-snippets";
sha256 = "0437qd7q9i32pmhxaz3vi2dnfpj4nddmzgnqpwsgl28slhjw2hv8";
name = "mallard-snippets";
};
@@ -37138,7 +37674,7 @@
man-commands = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "man-commands";
- version = "20151221.2321";
+ version = "20151221.1621";
src = fetchFromGitHub {
owner = "nflath";
repo = "man-commands";
@@ -37146,7 +37682,7 @@
sha256 = "1lfq4hsq2n33l58ja5kzy6bwk9jxbcdsg6y8gqlk71lcslzqldrk";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/man-commands";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/cefd80c8f65e1577ba36ea665b36c3a3d4032b4b/recipes/man-commands";
sha256 = "1yl7y0k24gydldfs406v1n523q46m9x6in6pgljgjnjravc67wnq";
name = "man-commands";
};
@@ -37159,7 +37695,7 @@
manage-minor-mode = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "manage-minor-mode";
- version = "20140310.1700";
+ version = "20140310.1100";
src = fetchFromGitHub {
owner = "ShingoFukuyama";
repo = "manage-minor-mode";
@@ -37167,7 +37703,7 @@
sha256 = "10wl7kc76dyijrmdlcl5cx821jg7clsj35r22955mbbgh7zl1x07";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/manage-minor-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/67fe789d7d3ccf3eb0bbd1982f7d2c506a47bbdb/recipes/manage-minor-mode";
sha256 = "11jdj8kd401q0y8bbyyn72f27f51bckqid10dnh64z8w7hv59cw6";
name = "manage-minor-mode";
};
@@ -37180,15 +37716,15 @@
mandoku = callPackage ({ fetchFromGitHub, fetchurl, git, github-clone, lib, magit, melpaBuild, org }:
melpaBuild {
pname = "mandoku";
- version = "20160523.1008";
+ version = "20160626.2124";
src = fetchFromGitHub {
owner = "mandoku";
repo = "mandoku";
- rev = "f39a0d203bab05d0924bc99ad2416f587e187953";
- sha256 = "0ycivlbv2jxb06cpbnffdhnbisnm9vd6ysg7zynyr2pbzhf6vc37";
+ rev = "1ec88c8da5f92982566d58d5c4ea743317977506";
+ sha256 = "1l3h6jbcv39pslknp6y56pvx6kf0brbgrzlhmsc22n4238294x2z";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/mandoku";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/1aac4ae2c908de2c44624fb22a3f5ccf0b7a4912/recipes/mandoku";
sha256 = "1pg7ir3y6yk92kfs5agbxapcxf7gy60m353rjv8g3kfkx5zyh3mv";
name = "mandoku";
};
@@ -37201,7 +37737,7 @@
map-progress = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "map-progress";
- version = "20140310.2232";
+ version = "20140310.1632";
src = fetchFromGitHub {
owner = "tarsius";
repo = "map-progress";
@@ -37209,7 +37745,7 @@
sha256 = "0pd6bh7wrrh59blp86a2jl2vi4qkzx49z0hy7dkc71ccg0wjsgz1";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/map-progress";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/5ed3335eaf0be7368059bcdb52c46f5e47c0c1a5/recipes/map-progress";
sha256 = "0zc5vii72gbfwbb35w8m30c8r9zck971hwgcn1a4wjczgn4vkln7";
name = "map-progress";
};
@@ -37222,7 +37758,7 @@
map-regexp = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "map-regexp";
- version = "20130522.2303";
+ version = "20130522.1603";
src = fetchFromGitHub {
owner = "tarsius";
repo = "map-regexp";
@@ -37230,7 +37766,7 @@
sha256 = "0kk1sk3cr4dbmgq4wzml8kdf14dn9jbyq4bwmvk0i7dic9vwn21c";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/map-regexp";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/927314443ecc00d94e7125de669e82832c5a125c/recipes/map-regexp";
sha256 = "0yiif0033lhaqggywzfizfia3siggwcz7yv4z7przhnr04akdmbj";
name = "map-regexp";
};
@@ -37243,7 +37779,7 @@
marcopolo = callPackage ({ dash, fetchFromGitHub, fetchurl, lib, melpaBuild, pkg-info, request, s }:
melpaBuild {
pname = "marcopolo";
- version = "20160421.1204";
+ version = "20160421.504";
src = fetchFromGitHub {
owner = "nlamirault";
repo = "marcopolo";
@@ -37251,7 +37787,7 @@
sha256 = "1qf724y1zq3z6fzm23qhwjl2knhs49nbz0vizwf8g9s51bk6bny2";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/marcopolo";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/936a1cff601594575c5b550c5eb16e7dafc8a5ab/recipes/marcopolo";
sha256 = "1nbck1m7lhync7n474578d2g1zc72c841hi236xjbdd2lnxz3zz0";
name = "marcopolo";
};
@@ -37264,7 +37800,7 @@
mark-multiple = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "mark-multiple";
- version = "20121118.1654";
+ version = "20121118.954";
src = fetchFromGitHub {
owner = "magnars";
repo = "mark-multiple.el";
@@ -37272,7 +37808,7 @@
sha256 = "1x3anvy3hlmydxyfzr1rhaiy502yi1yz3v54sg8wc1w7jrvwaj29";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/mark-multiple";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/7efe1814aa552d44c3db2cd7304569f2aae66287/recipes/mark-multiple";
sha256 = "179wd9g0smm76k92n7j2vgg8gz5wn9lczrns5ggq2yhbc77j0gn4";
name = "mark-multiple";
};
@@ -37285,7 +37821,7 @@
mark-tools = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "mark-tools";
- version = "20130614.1225";
+ version = "20130614.525";
src = fetchFromGitHub {
owner = "stsquad";
repo = "emacs-mark-tools";
@@ -37293,7 +37829,7 @@
sha256 = "0k4zvbs09mkr8vdffv18s55rn9cyxldzav9vw04lm7v296k94ivz";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/mark-tools";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/9ca36020392807aca9658d13481868d8b6c23d51/recipes/mark-tools";
sha256 = "1688y7lnzhwdva2ildjabzi10i87klfsgvs947i7gfgxl7jwhisq";
name = "mark-tools";
};
@@ -37303,39 +37839,18 @@
license = lib.licenses.free;
};
}) {};
- markdown-mac-link = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
- melpaBuild {
- pname = "markdown-mac-link";
- version = "20160520.1121";
- src = fetchFromGitHub {
- owner = "xuchunyang";
- repo = "markdown-mac-link";
- rev = "73b8ab881f0beff878a426e509bbf263e755313c";
- sha256 = "0lqxl8myshmk99hnj94ivz8xrpbgsf8dmjivkf35x58k06drbn4f";
- };
- recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/markdown-mac-link";
- sha256 = "075hmv3mchxbawyxzm9r2hjdy4xislh8590bn077w5rscha8d713";
- name = "markdown-mac-link";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/markdown-mac-link";
- license = lib.licenses.free;
- };
- }) {};
markdown-mode = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "markdown-mode";
- version = "20160527.1135";
+ version = "20160629.659";
src = fetchFromGitHub {
owner = "jrblevin";
repo = "markdown-mode";
- rev = "437713de8b6ce18485fdc9733d38cf125c56fee9";
- sha256 = "16bw1pzxy28540r3lrgkd0nk1dcfbg3cj9rh8y6qj56ybx48d6kr";
+ rev = "c5f9265edf698017e64c69e32fb1d137a7bfc39e";
+ sha256 = "1mq317gy31lapnzqhk1fc28qvdmbv72kxv8nnz3b0hg2987mqxzb";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/markdown-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/74610ec93d4478e835f8b3b446279efc0c71d644/recipes/markdown-mode";
sha256 = "0gfb3hp87kpcrvxax3m5hsaclwwk1qmxc73cg26smzd1kjfwgz14";
name = "markdown-mode";
};
@@ -37348,7 +37863,7 @@
markdown-mode-plus = callPackage ({ fetchFromGitHub, fetchurl, lib, markdown-mode, melpaBuild }:
melpaBuild {
pname = "markdown-mode-plus";
- version = "20120829.1410";
+ version = "20120829.710";
src = fetchFromGitHub {
owner = "milkypostman";
repo = "markdown-mode-plus";
@@ -37356,7 +37871,7 @@
sha256 = "1adl36fj506kgfw40gpagzsd7aypfdvy60141raggd5844i6y96r";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/markdown-mode+";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/ca7bf43ef8893bf04e9658390e306ef69e80a156/recipes/markdown-mode+";
sha256 = "1535kcj9nmcgmk2448jxc0jmnqy7f50cw2ngffjq5w8bfhgf7q00";
name = "markdown-mode-plus";
};
@@ -37369,7 +37884,7 @@
markdown-preview-eww = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "markdown-preview-eww";
- version = "20160111.1602";
+ version = "20160111.902";
src = fetchFromGitHub {
owner = "niku";
repo = "markdown-preview-eww";
@@ -37377,7 +37892,7 @@
sha256 = "1i5gr3j9dq41p2zl4bfyvzv6i5z7hgrxzrycmbdc3s7nja36k9z4";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/markdown-preview-eww";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/d9b3ad97a193c41068ca184b4835fa7a7a0ebc9c/recipes/markdown-preview-eww";
sha256 = "0j6924f84is41dspib68y5lnz1f8nm7pqyhv47alxra50cjrpxnx";
name = "markdown-preview-eww";
};
@@ -37390,15 +37905,15 @@
markdown-preview-mode = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, markdown-mode, melpaBuild, websocket }:
melpaBuild {
pname = "markdown-preview-mode";
- version = "20160215.1749";
+ version = "20160604.1059";
src = fetchFromGitHub {
owner = "ancane";
repo = "markdown-preview-mode";
- rev = "ff75e31a57f62156441d66d5c4033ad204d49a87";
- sha256 = "1yi5hsgf8hr7v1wyn3bw650g3ysbglwn5qfrmb6yl3s08lvi1vlf";
+ rev = "625c041efda1fa5e621c510770586baea1fd6a72";
+ sha256 = "1r0aqy78671k4cgf6y6rilch0vrhcj22ff7bvpwpba7imb8mf1cj";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/markdown-preview-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/011d26360a109b074cdecbcb133269ec6452ab86/recipes/markdown-preview-mode";
sha256 = "0i0mld45d8y96nkqn2r77nvbyw6wgsf8r54d3c2jrv04mnaxs7pg";
name = "markdown-preview-mode";
};
@@ -37411,7 +37926,7 @@
markdown-toc = callPackage ({ dash, fetchFromGitHub, fetchurl, lib, markdown-mode, melpaBuild, s }:
melpaBuild {
pname = "markdown-toc";
- version = "20160227.1208";
+ version = "20160227.508";
src = fetchFromGitHub {
owner = "ardumont";
repo = "markdown-toc";
@@ -37419,7 +37934,7 @@
sha256 = "0l687bna8rrc49y1fyn1ldjcwh290qgvi3p86c63yj4xy24fmdm6";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/markdown-toc";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/4db1e90be8e34d5ad0c898be10dfa5cd95ccb921/recipes/markdown-toc";
sha256 = "0slky735yzmbfi4ld264vw64b4a4nllhywp19ya0sljbsfycbihv";
name = "markdown-toc";
};
@@ -37429,10 +37944,31 @@
license = lib.licenses.free;
};
}) {};
+ markdownfmt = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
+ melpaBuild {
+ pname = "markdownfmt";
+ version = "20160609.741";
+ src = fetchFromGitHub {
+ owner = "nlamirault";
+ repo = "emacs-markdownfmt";
+ rev = "af83cd00fafcaa837ffdb50d1fa2b0ac952f16c0";
+ sha256 = "1alkjvs21wlai742qgcm0bgf3z3c0f10xgalz48gi4vmwn6in7r7";
+ };
+ recipeFile = fetchurl {
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/16cee5fe003e3afc7daf6858ed83843b52e44901/recipes/markdownfmt";
+ sha256 = "1wzsw90z988bm94cw4jw5gzjcicgiz4qgn1nsdm8nim9rp43bj17";
+ name = "markdownfmt";
+ };
+ packageRequires = [ emacs ];
+ meta = {
+ homepage = "https://melpa.org/#/markdownfmt";
+ license = lib.licenses.free;
+ };
+ }) {};
markup = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "markup";
- version = "20130207.2209";
+ version = "20130207.1509";
src = fetchFromGitHub {
owner = "leoc";
repo = "markup.el";
@@ -37440,7 +37976,7 @@
sha256 = "1i95b15mvkkki2iq8hysdr7jr1d5nix9jjkh7jz0alvaybqlsnqi";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/markup";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/a75c955ad6b2f68b8933329e545625d948f6f8f4/recipes/markup";
sha256 = "0yw4b42nc2n7nanqvj596hwjf0p4qc7x6g2d9g5cwi7975iak8pf";
name = "markup";
};
@@ -37453,7 +37989,7 @@
markup-faces = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "markup-faces";
- version = "20141110.917";
+ version = "20141110.217";
src = fetchFromGitHub {
owner = "sensorflo";
repo = "markup-faces";
@@ -37461,7 +37997,7 @@
sha256 = "1w6i1m7xdr9cijnmdj35cl99r12vl83qws0qlfhrgvisilshnr27";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/markup-faces";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/70a3b6a7b43c76b0ce3b350f5c8d657bf4f7fb04/recipes/markup-faces";
sha256 = "12z92j9f0mpn7w2qkiwg54wh743q3inx56q3f8qcpfzyks546grq";
name = "markup-faces";
};
@@ -37474,7 +38010,7 @@
marmalade = callPackage ({ fetchFromGitHub, fetchurl, furl, lib, melpaBuild }:
melpaBuild {
pname = "marmalade";
- version = "20110603.122";
+ version = "20110602.1822";
src = fetchFromGitHub {
owner = "nex3";
repo = "marmalade";
@@ -37482,7 +38018,7 @@
sha256 = "1ygznmqb3fqy94p8qi71i223m7cpw3f596pkls2ybjlbpb4psjcl";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/marmalade";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/82a61911de111f6ef3a99fef0a0f93ab549ab261/recipes/marmalade";
sha256 = "0ppa2s1fma1lc01byanfxpxfrjqk2snxbsmdbkcipjdi5dpb0a9s";
name = "marmalade";
};
@@ -37495,7 +38031,7 @@
marmalade-client = callPackage ({ fetchFromGitHub, fetchurl, gh, kv, lib, melpaBuild, web }:
melpaBuild {
pname = "marmalade-client";
- version = "20141231.2107";
+ version = "20141231.1407";
src = fetchFromGitHub {
owner = "nicferrier";
repo = "emacs-marmalade-upload";
@@ -37503,7 +38039,7 @@
sha256 = "017k109nfif5mzkj547py8pdnzlr4sxb74yqqsl944znflq67blr";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/marmalade-client";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/834d6d8444169e1e9b66c963a4c2e03ff658e154/recipes/marmalade-client";
sha256 = "0llwqwwxrf7qdkpdb03ij0iinll0vc9qr557zyr3bn5zb4fad1sq";
name = "marmalade-client";
};
@@ -37516,15 +38052,15 @@
marshal = callPackage ({ eieio ? null, fetchFromGitHub, fetchurl, json ? null, lib, melpaBuild }:
melpaBuild {
pname = "marshal";
- version = "20150917.357";
+ version = "20160623.58";
src = fetchFromGitHub {
owner = "sigma";
repo = "marshal.el";
- rev = "0ab06a654af0555dc669b5bdf4e0991a78238d6d";
- sha256 = "0fwhhzfd6vgpaf5mrw90hvm35j2kzhk9h3gbrwd7y7q08nrmsx9p";
+ rev = "64c428aa2d645501955e8a091c6bb027c08623a2";
+ sha256 = "11zlqrvm8c2xmjf8k8ibc0mzgy7q5jdn2imvrfgdf5pb7ygigy8j";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/marshal";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/203f2061c5c7d4aefab3175de5e0538f12158ee3/recipes/marshal";
sha256 = "17ikd8f1k42f28d4v5dn83zb44bsx7g336db60q068w6z8d4jbgl";
name = "marshal";
};
@@ -37534,10 +38070,31 @@
license = lib.licenses.free;
};
}) {};
+ maruo-macro-mode = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
+ melpaBuild {
+ pname = "maruo-macro-mode";
+ version = "20160616.849";
+ src = fetchFromGitHub {
+ owner = "zonuexe";
+ repo = "maruo-macro-mode.el";
+ rev = "8fc9a38ad051eafa8eb94038711acc52c5d1d8d5";
+ sha256 = "0r005yap50jf6b5jc7314ds17g1nn2irn1agidi74fbrwfbndxgm";
+ };
+ recipeFile = fetchurl {
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/d0c17243b6c62e179aefc25d5f2ca43e5f6c66c1/recipes/maruo-macro-mode";
+ sha256 = "1h7pclpqkkgi8z9yp5n79ffna809yf336bz6082l541xc06pmvcv";
+ name = "maruo-macro-mode";
+ };
+ packageRequires = [ emacs ];
+ meta = {
+ homepage = "https://melpa.org/#/maruo-macro-mode";
+ license = lib.licenses.free;
+ };
+ }) {};
material-theme = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "material-theme";
- version = "20160516.1744";
+ version = "20160516.1044";
src = fetchFromGitHub {
owner = "cpaulik";
repo = "emacs-material-theme";
@@ -37545,7 +38102,7 @@
sha256 = "1j1282bvsjj71nhswpz0nr11gc7nzxvr113ara49ya58vqhm42gb";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/material-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/d31ababaa50061e767605c979a3f327a654e564b/recipes/material-theme";
sha256 = "1d259avldc5fq121xrqv53h8s4f4bp6b89nz2rvjhygz7f8hargq";
name = "material-theme";
};
@@ -37558,7 +38115,7 @@
math-symbol-lists = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "math-symbol-lists";
- version = "20160302.2331";
+ version = "20160302.1631";
src = fetchFromGitHub {
owner = "vspinu";
repo = "math-symbol-lists";
@@ -37566,7 +38123,7 @@
sha256 = "0k1ayv0a9g778b50jni3hh70pg6axmq34wl8x3zgphadgms1w9dd";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/math-symbol-lists";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/fadff01600d57f5b9ea9c0c47ed109e058114998/recipes/math-symbol-lists";
sha256 = "01j11k29acj0b1pcapmgi2d2s3p50bkms21i2qcj0cbqgz8h6s27";
name = "math-symbol-lists";
};
@@ -37579,7 +38136,7 @@
math-symbols = callPackage ({ fetchFromGitHub, fetchurl, helm, lib, melpaBuild }:
melpaBuild {
pname = "math-symbols";
- version = "20151122.142";
+ version = "20151121.1842";
src = fetchFromGitHub {
owner = "kawabata";
repo = "math-symbols";
@@ -37587,7 +38144,7 @@
sha256 = "1chyxi096krjbi9zgbrnrkvwgmn4wygnia9m57m0jh4arlbm28la";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/math-symbols";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/d7b0799bddbbbecd12bc1589b56a6250acf76407/recipes/math-symbols";
sha256 = "0sx9cgyk56npjd6z78y9cldbvjl5ipl7k1nc1sylg1iggkbwxnqx";
name = "math-symbols";
};
@@ -37600,14 +38157,14 @@
matlab-mode = callPackage ({ fetchgit, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "matlab-mode";
- version = "20160527.2252";
+ version = "20160527.1552";
src = fetchgit {
url = "git://git.code.sf.net/p/matlab-emacs/src";
rev = "64f2a5635fb3c690ed22d40779ea930ed5130b5c";
sha256 = "1yfh1j85lnjn58dhrb54wz4ggkbl5gw6wnbx8abknryjyg6c483a";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/matlab-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/39e384608df76bb3e91bd1405e3a5029181ff94e/recipes/matlab-mode";
sha256 = "1bybc5xv5hbjh8afmh03qda5g3m2wcgsk6lgj6jkyyxzdfxqkrck";
name = "matlab-mode";
};
@@ -37617,30 +38174,10 @@
license = lib.licenses.free;
};
}) {};
- matrix-client = callPackage ({ fetchgit, fetchurl, json ? null, lib, melpaBuild, request }:
- melpaBuild {
- pname = "matrix-client";
- version = "20160425.659";
- src = fetchgit {
- url = "git://fort.kickass.systems/personal/rrix/pub/matrix.el";
- rev = "087e5520a3a1f9a8fcaa1ce61b4c06bc55a63605";
- sha256 = "0z79l8md683vvc51fz0nmbazb6i7hklkm0asglflr96pldil50l8";
- };
- recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/matrix-client";
- sha256 = "09mgxk0xngw8j46vz6f5nwkb01iq96bf9m51w2q61wxivypnsyr6";
- name = "matrix-client";
- };
- packageRequires = [ json request ];
- meta = {
- homepage = "https://melpa.org/#/matrix-client";
- license = lib.licenses.free;
- };
- }) {};
maude-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "maude-mode";
- version = "20160222.1707";
+ version = "20160222.1007";
src = fetchFromGitHub {
owner = "rudi";
repo = "maude-mode";
@@ -37648,7 +38185,7 @@
sha256 = "1sn9bdaq3mf2vss5gzmxhnp9fz43cakxh36qjdgqrvx302nlnv52";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/maude-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/9c33b8bd62391767a63f57786750e38cbc262bda/recipes/maude-mode";
sha256 = "1w5v3r905xkwchkm2gzvzpswba5p2m7hqpyg9fzq2ldlr8kk7ah3";
name = "maude-mode";
};
@@ -37661,7 +38198,7 @@
maven-test-mode = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, s }:
melpaBuild {
pname = "maven-test-mode";
- version = "20141220.657";
+ version = "20141219.2357";
src = fetchFromGitHub {
owner = "rranelli";
repo = "maven-test-mode";
@@ -37669,7 +38206,7 @@
sha256 = "1xn2yyr8mr90cynbxgv0h5v180pzf0ydnjr9spg34mrdicqlki6c";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/maven-test-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/bdc7f677c53431542cb8d7c95666d021dead2b98/recipes/maven-test-mode";
sha256 = "1k9w51rh003p67yalzq1w8am40nnr2khyyb5y4bwxgpms8z391fm";
name = "maven-test-mode";
};
@@ -37682,7 +38219,7 @@
maxframe = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "maxframe";
- version = "20140916.1654";
+ version = "20140916.954";
src = fetchFromGitHub {
owner = "rmm5t";
repo = "maxframe.el";
@@ -37690,7 +38227,7 @@
sha256 = "0g9kpsg6623nmxnshj49q8k952xybrkmqqy6m892m8wnm22pjdz1";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/maxframe";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/7944652cb7a7bf45f16e86ea379a104d31861e76/recipes/maxframe";
sha256 = "10cwy3gi3xb3pfdh6xiafxp3vvssawci3y26jda6550d0w5vardj";
name = "maxframe";
};
@@ -37702,13 +38239,13 @@
}) {};
mb-depth-plus = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild {
pname = "mb-depth-plus";
- version = "20151231.2321";
+ version = "20151231.1621";
src = fetchurl {
url = "https://www.emacswiki.org/emacs/download/mb-depth+.el";
sha256 = "0w8clp96jblsc9v87404zpc280ms0d644in34jdgjc5r33f4i0g3";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/mb-depth+";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/a5d15f875b0080b12ce45cf696c581f6bbf061ba/recipes/mb-depth+";
sha256 = "031hh227rh7l818p3di4h34i4698yynw5g9a5sl2hj47c0734q6w";
name = "mb-depth-plus";
};
@@ -37721,15 +38258,15 @@
mb-url = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "mb-url";
- version = "20160602.1302";
+ version = "20160701.1131";
src = fetchFromGitHub {
owner = "dochang";
repo = "mb-url";
- rev = "85d4847d1d71e636ee264c537073973b1dcbe0b9";
- sha256 = "1pi5yi76781pckvqgqabmkvq081npzkzl3r97f1wbcndvpfvv8jx";
+ rev = "e6ff9a88a4eb2de542e2fb053f4981ac8fa0a529";
+ sha256 = "073yqx5gjiglbb50633mjq5dkl5h54rk4qzp0kn9zqmi2mxa3i7p";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/mb-url";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/dd9a8ff6e094b061a7b9d790df1fd4086c5d0a9d/recipes/mb-url";
sha256 = "1nf8ssan00qsn3d4dc6h6qzdwqzh977qb5d2m33kiwi6qb98988h";
name = "mb-url";
};
@@ -37742,7 +38279,7 @@
mbe = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "mbe";
- version = "20151126.1234";
+ version = "20151126.534";
src = fetchFromGitHub {
owner = "ijp";
repo = "mbe.el";
@@ -37750,7 +38287,7 @@
sha256 = "1zywygdgnp2zr8fxqhl0cbrgbl43931k936b9imhqi96p6622pb6";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/mbe";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/0a8a16e485d608dbd59151d77e252048a49f9d25/recipes/mbe";
sha256 = "0h18mbcjy8nh4gl12kg2v8x6ps320yk7sbgq5alqnx2shp80kri3";
name = "mbe";
};
@@ -37763,7 +38300,7 @@
mbo70s-theme = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "mbo70s-theme";
- version = "20141122.1542";
+ version = "20141122.842";
src = fetchFromGitHub {
owner = "emacsfodder";
repo = "emacs-mbo70s-theme";
@@ -37771,7 +38308,7 @@
sha256 = "1vr85fdlb4zwgid1v00ndppla9fqqk25g2x2f5alm69pfqssr75z";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/mbo70s-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/b8d0c1050b3319e136fe75903ae3612a52790189/recipes/mbo70s-theme";
sha256 = "1abx2rw09xxp122ff7i9sry5djd4l6vn4lfzxs92rknjzkyc40pb";
name = "mbo70s-theme";
};
@@ -37784,7 +38321,7 @@
mc-extras = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, multiple-cursors }:
melpaBuild {
pname = "mc-extras";
- version = "20150218.1134";
+ version = "20150218.434";
src = fetchFromGitHub {
owner = "knu";
repo = "mc-extras.el";
@@ -37792,7 +38329,7 @@
sha256 = "0252wdq4sd6jhzfy0pn3gdm6aq2h13nnp8hvrn1mpml9x473a5n1";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/mc-extras";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/12747bb8603ebc09ce0873f3317a99e34d818313/recipes/mc-extras";
sha256 = "0b110x6ygc95v5pb9lk1i731x5s6dagl5afzv37l1qchys36xrym";
name = "mc-extras";
};
@@ -37805,7 +38342,7 @@
md-readme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "md-readme";
- version = "20150506.859";
+ version = "20150506.159";
src = fetchFromGitHub {
owner = "thomas11";
repo = "md-readme";
@@ -37813,7 +38350,7 @@
sha256 = "1j8gp3byanf1mq8sc4hv838rgcywlv35d8q1vjwzsjaznvz8hvc3";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/md-readme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/5408d7c12c189d2b5ab9fbb02276de334851e3c8/recipes/md-readme";
sha256 = "1krq0f79jjrlihr2aqq87pxdqixv2zdjw4hm732sz79g996yxyw3";
name = "md-readme";
};
@@ -37826,7 +38363,7 @@
meacupla-theme = callPackage ({ fetchFromGitLab, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "meacupla-theme";
- version = "20151027.2317";
+ version = "20151027.1717";
src = fetchFromGitLab {
owner = "jtecca";
repo = "meacupla-theme";
@@ -37834,7 +38371,7 @@
sha256 = "136lh39hakwx46rd1gsmsfhsj78mrpamid766v2vjx9rkkprk0zv";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/meacupla-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/397ea693de4bdc7499e86af273cbc4152c04035e/recipes/meacupla-theme";
sha256 = "09q88q2xghj5vn5y3mjrcparfwdzavkgjyg2ay55h7wf5f2zpw2d";
name = "meacupla-theme";
};
@@ -37847,7 +38384,7 @@
mediawiki = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "mediawiki";
- version = "20160425.1602";
+ version = "20160425.902";
src = fetchFromGitHub {
owner = "hexmode";
repo = "mediawiki-el";
@@ -37855,7 +38392,7 @@
sha256 = "0kzmvsbzqrkrlnr5sf1xwazm9zyzbrflb4d1jrkp206q9yk439cr";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/mediawiki";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/865e0ba1dbace58784181d214000d090478173bd/recipes/mediawiki";
sha256 = "17cbrzfdp6jbbf74mn2fi1cwv7d1hvdbw9j84p43jzscnaa5ikx6";
name = "mediawiki";
};
@@ -37868,7 +38405,7 @@
mellow-theme = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "mellow-theme";
- version = "20141116.802";
+ version = "20141116.102";
src = fetchFromGitHub {
owner = "emacsfodder";
repo = "emacs-mellow-theme";
@@ -37876,7 +38413,7 @@
sha256 = "0bilwhvprzk634sk5hnxilrvrl0yv593swzznch0p38hqxl585ld";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/mellow-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/641d1959bd31598fcdacd39a3d1bb077dcccfa5c/recipes/mellow-theme";
sha256 = "0kl1psykx7akxwabszk4amszh3zil8ia4bfbjjvr6h9phgx66pb0";
name = "mellow-theme";
};
@@ -37889,7 +38426,7 @@
melpa-upstream-visit = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, s }:
melpaBuild {
pname = "melpa-upstream-visit";
- version = "20130720.1233";
+ version = "20130720.533";
src = fetchFromGitHub {
owner = "laynor";
repo = "melpa-upstream-visit";
@@ -37897,7 +38434,7 @@
sha256 = "12cp56ppmwpdgf5afx7hd2qb8d1qq8z27191fbbf5zqw8cq5zkpd";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/melpa-upstream-visit";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/c110538a1ae2419505ea8f144ef7de2d67cad568/recipes/melpa-upstream-visit";
sha256 = "0j4afy9ipzr7pwkij8ab207mabd7srganlyyif9h1hvclj9svdmf";
name = "melpa-upstream-visit";
};
@@ -37910,7 +38447,7 @@
memento = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "memento";
- version = "20150823.1239";
+ version = "20150823.539";
src = fetchFromGitHub {
owner = "ehartc";
repo = "memento";
@@ -37918,7 +38455,7 @@
sha256 = "0pjqax3pi6pb650yb8iwa4brwwl6cdka7jym3cfkpppyy782dm0q";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/memento";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/3bee3cd6b491bf8813ec2332794b2548603014f4/recipes/memento";
sha256 = "0f8ajhj677r2kxszmad6h1j1b827ja0vaz2my1vx145y3gf160b8";
name = "memento";
};
@@ -37931,7 +38468,7 @@
memoize = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "memoize";
- version = "20130421.2134";
+ version = "20130421.1434";
src = fetchFromGitHub {
owner = "skeeto";
repo = "emacs-memoize";
@@ -37939,7 +38476,7 @@
sha256 = "0fjwlrdm270qcrqffvarw5yhijk656q4lam79ybhaznzj0dq3xpw";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/memoize";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/6cc9be5bbcff04de5e6d3bb8c47d202fd350989b/recipes/memoize";
sha256 = "0mzz3hghnbkmxf9wgjqv3sbyxyqqzvvscazq9ybb0b41qrzm73s6";
name = "memoize";
};
@@ -37952,7 +38489,7 @@
memolist = callPackage ({ ag, fetchFromGitHub, fetchurl, lib, markdown-mode, melpaBuild }:
melpaBuild {
pname = "memolist";
- version = "20150804.1921";
+ version = "20150804.1221";
src = fetchFromGitHub {
owner = "mikanfactory";
repo = "memolist.el";
@@ -37960,7 +38497,7 @@
sha256 = "1jd4rjv812iv7kp4wyxdz8sk7j0442m8x2ypk6hiqis0braxnspm";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/memolist";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/1b47649b529080e114f34a83dfb2e177c8b815a5/recipes/memolist";
sha256 = "1whajbwmz1v01dirv795bhvs27vq9dh0qmj10dk2xia7vhn42mgh";
name = "memolist";
};
@@ -37973,7 +38510,7 @@
mentor = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, xml-rpc }:
melpaBuild {
pname = "mentor";
- version = "20140905.210";
+ version = "20140904.1910";
src = fetchFromGitHub {
owner = "skangas";
repo = "mentor";
@@ -37981,7 +38518,7 @@
sha256 = "11hyydc13jdai6lkxx8nqf8xljh0gx7fcmywhik4f1hf3pdv7i2q";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/mentor";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/083de4bd25b6b013a31b9d5ecdffad139a4ba91e/recipes/mentor";
sha256 = "0nkf7f90m2qf11l97zwvb114yrpbqk1xxr2bh2nvbx8m1c8nad9s";
name = "mentor";
};
@@ -37993,13 +38530,13 @@
}) {};
menu-bar-plus = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild {
pname = "menu-bar-plus";
- version = "20160513.214";
+ version = "20160512.1914";
src = fetchurl {
url = "https://www.emacswiki.org/emacs/download/menu-bar+.el";
sha256 = "0v3n0227fmdk6hshnc1x1sxqci0pi3954nqy5ym4k9bmvw3cyxlg";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/menu-bar+";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/a5d15f875b0080b12ce45cf696c581f6bbf061ba/recipes/menu-bar+";
sha256 = "181jxjnzdckmvpsdknhm21xwimvsp0qxn8azfn58dz41gl4xcg90";
name = "menu-bar-plus";
};
@@ -38012,7 +38549,7 @@
merlin = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "merlin";
- version = "20160229.1528";
+ version = "20160229.828";
src = fetchFromGitHub {
owner = "the-lambda-church";
repo = "merlin";
@@ -38020,7 +38557,7 @@
sha256 = "0vk1b9gjhjq47jhjhwh6h2x2cl2w7pz4018s6c444paw46gmgkln";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/merlin";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/b1b9bfd3164e62758dc0a3362d85c6627ed7cbf8/recipes/merlin";
sha256 = "177cy9xcrjckxv8gvi1zhg2ndfr8cmsr37inyvpi5dxqy6d6alhp";
name = "merlin";
};
@@ -38032,13 +38569,13 @@
}) {};
message-x = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild {
pname = "message-x";
- version = "20151029.1518";
+ version = "20151029.918";
src = fetchurl {
url = "https://www.emacswiki.org/emacs/download/message-x.el";
sha256 = "05ic97plsysh4nqwdrsl5m9f24m11w24bahj8bxzfdawfima2bkf";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/message-x";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/b7bf124ec30fa5551b31c0e0d39be234f19e2e81/recipes/message-x";
sha256 = "0z12alizwrqp5f9wq3qllym9k5xljh904c9qhlfhp9biazj6yqwj";
name = "message-x";
};
@@ -38051,7 +38588,7 @@
meta-presenter = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "meta-presenter";
- version = "20150501.1310";
+ version = "20150501.610";
src = fetchFromGitHub {
owner = "myTerminal";
repo = "meta-presenter";
@@ -38059,7 +38596,7 @@
sha256 = "1x425ah3ymjyp3pxvyzyp4gd8zrjx8lgdzprml8qvf1yk82iv45l";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/meta-presenter";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/b73e9424515b3ddea220b786e91c57ee22bed87f/recipes/meta-presenter";
sha256 = "0f70cfa91wavchlx8d9hdlgq90cmnylhbg2dbw603rzjkyvslp5d";
name = "meta-presenter";
};
@@ -38072,7 +38609,7 @@
metafmt = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "metafmt";
- version = "20160221.1755";
+ version = "20160221.1055";
src = fetchFromGitHub {
owner = "lvillani";
repo = "metafmt";
@@ -38080,7 +38617,7 @@
sha256 = "0n4nv1s25z70xfy3bl1wy467abz3agj4qmpx4rwdwzbarnqp9ps3";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/metafmt";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/7a53f740fb7a58cd6339b301d0de8c543b61f6a5/recipes/metafmt";
sha256 = "1ca102al7r3k2g92b4jkqv53crnmxy3z7cz31w1rprf41s69mn75";
name = "metafmt";
};
@@ -38093,7 +38630,7 @@
metascript-mode = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "metascript-mode";
- version = "20150709.257";
+ version = "20150708.1957";
src = fetchFromGitHub {
owner = "metascript";
repo = "metascript-mode";
@@ -38101,7 +38638,7 @@
sha256 = "1rascpmv17dksyn9y0llmjb8r4484x5ax54w6r83k1x7ha1iacx5";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/metascript-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/90c03167b5fb4f4edc8a76240b3668203261bc58/recipes/metascript-mode";
sha256 = "1kgs4ki0s6bxx2ri6zxmsy2b2w56gnr9hjkr6302wcmp3qy7clwn";
name = "metascript-mode";
};
@@ -38114,7 +38651,7 @@
metaweblog = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, xml-rpc }:
melpaBuild {
pname = "metaweblog";
- version = "20141130.1505";
+ version = "20141130.805";
src = fetchFromGitHub {
owner = "punchagan";
repo = "metaweblog";
@@ -38122,7 +38659,7 @@
sha256 = "06mbdb4zb07skq1jpv05hr45k5x96d9hgkb358jiq0kfsqlrbbb4";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/metaweblog";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/7fabdb05de9b8ec18a3a566f99688b50443b6b44/recipes/metaweblog";
sha256 = "10kwqnfafby4ap0572mfkkdssr13y9p2gl9z3nmxqjjy04fkfi8b";
name = "metaweblog";
};
@@ -38135,7 +38672,7 @@
mew = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "mew";
- version = "20150814.854";
+ version = "20150814.154";
src = fetchFromGitHub {
owner = "kazu-yamamoto";
repo = "Mew";
@@ -38143,7 +38680,7 @@
sha256 = "1rkipcv53p7zra3gbjc77ywyxn8d1kx2gniyfqq16d2p2jw0lbzb";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/mew";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/362dfc4d0fdb3e5cb39564160de62c3440ce182e/recipes/mew";
sha256 = "0423xxn3cw6jmsd7vrw30hx9phga5chxzi6x7cvpswg1mhcyn9fk";
name = "mew";
};
@@ -38156,7 +38693,7 @@
mexican-holidays = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "mexican-holidays";
- version = "20160109.2242";
+ version = "20160109.1542";
src = fetchFromGitHub {
owner = "shopClerk";
repo = "mexican-holidays";
@@ -38164,7 +38701,7 @@
sha256 = "0bhllmyk1r9y63jw5gx10v09791w33lc54qs31gcxbnss094l6py";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/mexican-holidays";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/17cf468b17eead32f38e0386e8ec60ecfe11b767/recipes/mexican-holidays";
sha256 = "0awf4vv6mbp1xr92nsgdn513g4adqhp21k12q4fbm85b2l3jlspb";
name = "mexican-holidays";
};
@@ -38177,15 +38714,15 @@
mhc = callPackage ({ calfw, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "mhc";
- version = "20160520.441";
+ version = "20160526.218";
src = fetchFromGitHub {
owner = "yoshinari-nomura";
repo = "mhc";
- rev = "32d17a332cdfbe63654d47456efaa19a51a2f03f";
- sha256 = "1n3rx9hx7v6zbzb443r2c8292sfbcgvm3a4477awxizxnikyxdbq";
+ rev = "81c63fbd49d8267124fbfc775dc7cf06d2ebf7a0";
+ sha256 = "1gvwcgxj7f9a8zrp01mcbj07692kg1pi8fi2srwg09jls4j84xnb";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/mhc";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/d8d3efa0fcd6cd4af94bc99b35614ef6402cbdba/recipes/mhc";
sha256 = "02ikn9hx0kcfc2xrx4f38zpkfi6vgz7chcxk6q5d0vcsp93b4lql";
name = "mhc";
};
@@ -38198,7 +38735,7 @@
mic-paren = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "mic-paren";
- version = "20150111.316";
+ version = "20150110.2016";
src = fetchFromGitHub {
owner = "emacsmirror";
repo = "mic-paren";
@@ -38206,7 +38743,7 @@
sha256 = "0l7xfana2cb894w5qi6wwx7w9k89c3i8k40fpsd93sm3hgi5ryii";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/mic-paren";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/0fda2b54a0ff0b6fc3bd6d20cfcbbf63cae5380f/recipes/mic-paren";
sha256 = "042dzp0nal18nxq94qlwwksh0nnypsyc0yykmc6l3kayp9pv4hw7";
name = "mic-paren";
};
@@ -38219,7 +38756,7 @@
micgoline = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, powerline }:
melpaBuild {
pname = "micgoline";
- version = "20160415.526";
+ version = "20160414.2226";
src = fetchFromGitHub {
owner = "yzprofile";
repo = "micgoline";
@@ -38227,7 +38764,7 @@
sha256 = "0r6l6iqn5z9wp4w58flnls7kk6300qlxyy04fw0np00nvwsy4qvp";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/micgoline";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/2219768cf62b52bcbe73cec291eb74c3fedcc862/recipes/micgoline";
sha256 = "0xixcy006my2s0wn0isiag0b4rm38kswa5m0xnhg5n30qjjfzf4i";
name = "micgoline";
};
@@ -38240,7 +38777,7 @@
midje-mode = callPackage ({ cider, clojure-mode, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "midje-mode";
- version = "20150922.250";
+ version = "20150921.1950";
src = fetchFromGitHub {
owner = "dnaumov";
repo = "midje-mode";
@@ -38248,7 +38785,7 @@
sha256 = "1cigsr0hkbi1860w38k2j8fw6j4w43pgv2bpkmdsifbqy6l8grpg";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/midje-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/4b5e2bcc637cea31166fbd98a2ca42591a6e3c57/recipes/midje-mode";
sha256 = "0069hwy5cyrsv5b1yvjhmjasywbmc8x3daq9hkzidy3a2fmqgqv3";
name = "midje-mode";
};
@@ -38261,7 +38798,7 @@
migemo = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "migemo";
- version = "20150412.1641";
+ version = "20150412.941";
src = fetchFromGitHub {
owner = "emacs-jp";
repo = "migemo";
@@ -38269,7 +38806,7 @@
sha256 = "1az4mnmanhz9ga0g46jf33w8axcw8lnrb9lmszajwv7y5j9nk7yr";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/migemo";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/2424b0328a0198a03359455abdb3024a8067c857/recipes/migemo";
sha256 = "0y49imdwygv5zd7cyh9ngda4gyb2mld2a4s7zh4yzlh7z5ha9qkr";
name = "migemo";
};
@@ -38282,7 +38819,7 @@
milkode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "milkode";
- version = "20140927.729";
+ version = "20140927.29";
src = fetchFromGitHub {
owner = "ongaeshi";
repo = "emacs-milkode";
@@ -38290,7 +38827,7 @@
sha256 = "1qg64mxsm2cswk52mlj7sx7k6gfnrsdwnf68i7cachri0i8aq4ap";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/milkode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/29fffbec2d3067c046c456602779af8c04bf898f/recipes/milkode";
sha256 = "07v6xgalx7vcw5sghckwvz584746cba05ql8flv8n556glm7hibh";
name = "milkode";
};
@@ -38303,14 +38840,14 @@
minesweeper = callPackage ({ fetchhg, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "minesweeper";
- version = "20150414.722";
+ version = "20150414.22";
src = fetchhg {
url = "https://bitbucket.com/zck/minesweeper.el";
rev = "d29af12fc611";
sha256 = "1b2kn4c90hl07lzdg10wamd4lq8f24wmaj4zvr728pwyga99b2av";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/minesweeper";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/5b7972602399f9df9139cff177e38653bb0f43ed/recipes/minesweeper";
sha256 = "1n6r3a3rl09pv4jvb7ald1gaipqylfchggza973qv9rgh5g90nag";
name = "minesweeper";
};
@@ -38323,7 +38860,7 @@
mingus = callPackage ({ fetchFromGitHub, fetchurl, lib, libmpdee, melpaBuild }:
melpaBuild {
pname = "mingus";
- version = "20160321.1717";
+ version = "20160321.1117";
src = fetchFromGitHub {
owner = "pft";
repo = "mingus";
@@ -38331,7 +38868,7 @@
sha256 = "14dqa37z96nhmrhiczri0cyrzmjc3larw8sszvdal9prj47363sh";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/mingus";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/6699927f1ded5c97f2ce1861f8e54a5453264cca/recipes/mingus";
sha256 = "0vw09qk56l792706vvp465f40shf678mcmdh7iw8wsjix4401bzi";
name = "mingus";
};
@@ -38341,10 +38878,31 @@
license = lib.licenses.free;
};
}) {};
+ mini-header-line = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
+ melpaBuild {
+ pname = "mini-header-line";
+ version = "20160616.527";
+ src = fetchFromGitHub {
+ owner = "ksjogo";
+ repo = "mini-header-line";
+ rev = "1480c578a1f4c77365744d2487ae868a36d49d2a";
+ sha256 = "0iadwh86025wnxg30q866zsb156rhf82x8b9ih229ln2v0ank6as";
+ };
+ recipeFile = fetchurl {
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/122db5436ff9061713c0d3d8f44c47494067843e/recipes/mini-header-line";
+ sha256 = "1yg8i7gsmiv8zwl1wqvgrh2xl2hm5nn3q11rz4hpyxw26355i817";
+ name = "mini-header-line";
+ };
+ packageRequires = [ emacs ];
+ meta = {
+ homepage = "https://melpa.org/#/mini-header-line";
+ license = lib.licenses.free;
+ };
+ }) {};
minibuf-isearch = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "minibuf-isearch";
- version = "20151226.2043";
+ version = "20151226.1343";
src = fetchFromGitHub {
owner = "knagano";
repo = "minibuf-isearch";
@@ -38352,7 +38910,7 @@
sha256 = "1n4b039448826w2jcsv4r2iw3v2vlrsxw8dbci8wcfigmkbfc879";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/minibuf-isearch";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/ebfd2f3f6a2dbd251c321738a4efaacc2200164b/recipes/minibuf-isearch";
sha256 = "0n36d152lc53zj9jy38b0c7hlww0z6hx94y3x2njy6cmh3p5g8nh";
name = "minibuf-isearch";
};
@@ -38365,7 +38923,7 @@
minibuffer-complete-cycle = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "minibuffer-complete-cycle";
- version = "20130813.1845";
+ version = "20130813.1145";
src = fetchFromGitHub {
owner = "knu";
repo = "minibuffer-complete-cycle";
@@ -38373,7 +38931,7 @@
sha256 = "1zyb6c3xwdzk7dpn7xi0mvbcjdfxvzz1a0zlbs053pfar8iim5fk";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/minibuffer-complete-cycle";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/afac2cf41fe57efa8d313fdbab0b0b795ec144e4/recipes/minibuffer-complete-cycle";
sha256 = "0y1mxs6q9a8lzprrlb22qff6x5mvkw4gp2l6p2js2r0j9jzyffq2";
name = "minibuffer-complete-cycle";
};
@@ -38386,7 +38944,7 @@
minibuffer-cua = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "minibuffer-cua";
- version = "20130906.1334";
+ version = "20130906.634";
src = fetchFromGitHub {
owner = "knu";
repo = "minibuffer-cua.el";
@@ -38394,7 +38952,7 @@
sha256 = "011kg76zr4hfhi2gngnc7jlmp0l0nvhmlgyc0y9bir2jbjf4yyvz";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/minibuffer-cua";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/f3b0f1f260b02c14da4d584b6af08b2fa3adf39c/recipes/minibuffer-cua";
sha256 = "1ragvr73ykbvpgynnq3z0z4yzrlfhfqlwc1vbxclb8x2xmxq7pzw";
name = "minibuffer-cua";
};
@@ -38407,7 +38965,7 @@
miniedit = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "miniedit";
- version = "20100419.1945";
+ version = "20100419.1245";
src = fetchFromGitHub {
owner = "emacsorphanage";
repo = "miniedit";
@@ -38415,7 +38973,7 @@
sha256 = "1850z96gly0jnr50472idqz1drzqarr0n23bbasslrc501xkg0bq";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/miniedit";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/5f2a50f62475639af011c99c6cc38928b74b3b0a/recipes/miniedit";
sha256 = "10s407q7igdi2hsaaahbw8vckalrl7z3s6l9cflf51q16xh2ih87";
name = "miniedit";
};
@@ -38428,7 +38986,7 @@
minimal-session-saver = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "minimal-session-saver";
- version = "20140508.2241";
+ version = "20140508.1541";
src = fetchFromGitHub {
owner = "rolandwalker";
repo = "minimal-session-saver";
@@ -38436,7 +38994,7 @@
sha256 = "1sj5sq932w079y3vy55q5b6wybwrzz30y092iq1mpfg5xvl42sbm";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/minimal-session-saver";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/c9db386ab3910940addae6e925b2ac17e64e0f87/recipes/minimal-session-saver";
sha256 = "1ay7wvriga28bdmarpfwagqzmmk93ri9f3idhr6z6iivwggwyy2i";
name = "minimal-session-saver";
};
@@ -38449,15 +39007,15 @@
minimal-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "minimal-theme";
- version = "20140410.101";
+ version = "20160608.522";
src = fetchFromGitHub {
owner = "ikame";
repo = "minimal-theme";
- rev = "2cc688c1705eeb77fe1deeea35bfce378081f238";
- sha256 = "1iy1z2kwnbzxhz5r4gsy4zm0l3xbwy314dqxliprbl8n2m9w0lmz";
+ rev = "430e0d3fc2044c16aa9f10961841febbd60df285";
+ sha256 = "1rmcvdydgwppma1v2yajz6yzhns8bh3gdb09338jlk0nkp1akpfj";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/minimal-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/07609fd557b7e93875ad64488d2c638e48b34d68/recipes/minimal-theme";
sha256 = "0l4xj5q06h5fk634d6v3idm0zniq8grz4rjm6qzi7b4jr9sc60gm";
name = "minimal-theme";
};
@@ -38470,15 +39028,15 @@
minitest = callPackage ({ dash, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "minitest";
- version = "20160428.1950";
+ version = "20160628.1320";
src = fetchFromGitHub {
owner = "arthurnn";
repo = "minitest-emacs";
- rev = "54c32c727ef1f8967bbe6134fefc1183d76cfe21";
- sha256 = "0m37gjrcsjsvprq8w19qw5ivd4l1xb12609ixvbv1k21b15s1x38";
+ rev = "2997ba81456f2a0f3e25b6555b491586865ebb61";
+ sha256 = "10f1caszcas39g8kz0hfx1gq1jbpcnb5wwd1c262l9lwvla85nyl";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/minitest";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/41b2e55c0fe48267dc4f55924c782c6f934d8ca4/recipes/minitest";
sha256 = "0x6nd4kkhiw8hh79r69861pf41j8p1y39kzf2rl61zlmyjz9zpmw";
name = "minitest";
};
@@ -38491,7 +39049,7 @@
minizinc-mode = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "minizinc-mode";
- version = "20151214.1458";
+ version = "20151214.758";
src = fetchFromGitHub {
owner = "m00nlight";
repo = "minizinc-mode";
@@ -38499,7 +39057,7 @@
sha256 = "0808cl5ixvmhd8pa6fc8rn7wbxzvqjgz43mz1pambj89vbkzmw1c";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/minizinc-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/fc86b4ba54fca6f1ebf1ae3557fe564e05c1e382/recipes/minizinc-mode";
sha256 = "1blb6mbyqvmdvwp477p1ggs3n6rzi9sdfvi0v1wfzmd7k749b10c";
name = "minizinc-mode";
};
@@ -38511,13 +39069,13 @@
}) {};
minor-mode-hack = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild {
pname = "minor-mode-hack";
- version = "20141226.2120";
+ version = "20141226.1420";
src = fetchurl {
url = "https://www.emacswiki.org/emacs/download/minor-mode-hack.el";
sha256 = "0vwvvhzqiad82qvfwygb2arq1mdvh1lj6q2as0a92fg1vc95qcb0";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/minor-mode-hack";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/df182bfd8272f3ded761c90826c8cfe6bfd1a48b/recipes/minor-mode-hack";
sha256 = "1f2wy25iphk3hzjy39ls5j04173g7gaq2rdp2grkawfhwx0ld4pj";
name = "minor-mode-hack";
};
@@ -38530,7 +39088,7 @@
mip-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "mip-mode";
- version = "20151127.717";
+ version = "20151127.17";
src = fetchFromGitHub {
owner = "gaudecker";
repo = "mip-mode";
@@ -38538,7 +39096,7 @@
sha256 = "12k9ii4090dn03xvgqisl4zl4qi33054zxyfkqzzpa9wv72h4knc";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/mip-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/815ce14f7788edd3cf0504946bf3a25a7c7b3074/recipes/mip-mode";
sha256 = "1wx5zg4kimd29vqipbzm4vjphn0mldri12g6b18kc290nhgj22ar";
name = "mip-mode";
};
@@ -38550,13 +39108,13 @@
}) {};
misc-cmds = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild {
pname = "misc-cmds";
- version = "20151231.2323";
+ version = "20151231.1623";
src = fetchurl {
url = "https://www.emacswiki.org/emacs/download/misc-cmds.el";
sha256 = "0sc4l0prwmakxmdq22xd5mj8ddwhzrs034zmx2swi2k3s07x15id";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/misc-cmds";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/a5d15f875b0080b12ce45cf696c581f6bbf061ba/recipes/misc-cmds";
sha256 = "0bylb84icddgznmim18fwq1mhh3qz8yh8ch6lpadf9p3h420qgcl";
name = "misc-cmds";
};
@@ -38568,13 +39126,13 @@
}) {};
misc-fns = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild {
pname = "misc-fns";
- version = "20160529.2352";
+ version = "20160529.1652";
src = fetchurl {
url = "https://www.emacswiki.org/emacs/download/misc-fns.el";
sha256 = "1549qcz5c4l6zjl09j1573i00qdgdl41nvnl5hhqg39gi4nz4c9b";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/misc-fns";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/c2cbbe5a718ec961982a7f65de8f6ec1c9513696/recipes/misc-fns";
sha256 = "1spjbkcac33lyfsgkd6z186a3432x9nw3akmx194gaap2863xcam";
name = "misc-fns";
};
@@ -38587,7 +39145,7 @@
mkdown = callPackage ({ fetchFromGitHub, fetchurl, lib, markdown-mode, melpaBuild }:
melpaBuild {
pname = "mkdown";
- version = "20140517.1618";
+ version = "20140517.918";
src = fetchFromGitHub {
owner = "ajtulloch";
repo = "mkdown.el";
@@ -38595,7 +39153,7 @@
sha256 = "1d08i2cfn1q446nyyji0hi9vlw7bzkpxhn6653jz2k77vd2y0wmk";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/mkdown";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/537bf6c5d5eedaea84806aadccbcec92387fec7a/recipes/mkdown";
sha256 = "1b2vi8q6jhq1xv7yr5f3aiyp1w8j59w19vxys0pv6bqr2gra07i1";
name = "mkdown";
};
@@ -38608,7 +39166,7 @@
mmm-jinja2 = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, mmm-mode }:
melpaBuild {
pname = "mmm-jinja2";
- version = "20150904.2034";
+ version = "20150904.1334";
src = fetchFromGitHub {
owner = "beardedprojamz";
repo = "mmm-jinja2";
@@ -38616,7 +39174,7 @@
sha256 = "1lcc2p9qz70kpykgx82isv0qiqlsajp4vvcj6bvag92d7h9yk9bv";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/mmm-jinja2";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/6148891549a38f1804d26613dfa0e2179556cb00/recipes/mmm-jinja2";
sha256 = "0579sv77dyzishhcw4xxi444inwy4jgh9vmxwd856nd05j3cyc7z";
name = "mmm-jinja2";
};
@@ -38629,14 +39187,14 @@
mmm-mako = callPackage ({ fetchhg, fetchurl, lib, melpaBuild, mmm-mode }:
melpaBuild {
pname = "mmm-mako";
- version = "20121020.851";
+ version = "20121020.151";
src = fetchhg {
url = "https://bitbucket.com/pjenvey/mmm-mako";
rev = "5c9ff92137b5";
sha256 = "0rpp748ym79sxccp9pyrwri14m7624zzb80srfgjfdpysrrs0jrr";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/mmm-mako";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/5b7972602399f9df9139cff177e38653bb0f43ed/recipes/mmm-mako";
sha256 = "0a4af5q9wxafrid8visp30cz6073ig0c961b78vmmgqrwvvxd3kn";
name = "mmm-mako";
};
@@ -38649,7 +39207,7 @@
mmm-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "mmm-mode";
- version = "20150829.216";
+ version = "20150828.1916";
src = fetchFromGitHub {
owner = "purcell";
repo = "mmm-mode";
@@ -38657,7 +39215,7 @@
sha256 = "04rapmqblfjvmdccm9kqi8gn0him1x2q7hjwsyb8mg4lwxcd7qp9";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/mmm-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/cae2ac3513e371a256be0f1a7468e38e686c2487/recipes/mmm-mode";
sha256 = "10vkqaf4684cm5yds1xfinvgc3v7871fb203sfl9dbkcgnd5dcjw";
name = "mmm-mode";
};
@@ -38670,7 +39228,7 @@
mmt = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "mmt";
- version = "20150906.1859";
+ version = "20150906.1159";
src = fetchFromGitHub {
owner = "mrkkrp";
repo = "mmt";
@@ -38678,7 +39236,7 @@
sha256 = "0l5lpyiygikm9rwgk6jgx23wmc26hvhnqn9964d60l5a4b9fam74";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/mmt";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/d1137bb53ecd92b1a8537abcd2635602c5ab3277/recipes/mmt";
sha256 = "0hal3qcw6x9658xpdaw6q9l2rr2z107pvg5bdzshf67p1b3lf9dq";
name = "mmt";
};
@@ -38691,7 +39249,7 @@
mo-git-blame = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "mo-git-blame";
- version = "20160129.1859";
+ version = "20160129.1159";
src = fetchFromGitHub {
owner = "mbunkus";
repo = "mo-git-blame";
@@ -38699,7 +39257,7 @@
sha256 = "1dh92hzpicfvrlg6swrw4igwb771xbsmsf7hxp1a4iry4w8dk398";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/mo-git-blame";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/8b72b67897c349d48e8fd47a4b33055738ed5d89/recipes/mo-git-blame";
sha256 = "1dp9pxhggappb70m5hyp8sxlnh06y996adabq7x6qvm745mk6f0x";
name = "mo-git-blame";
};
@@ -38712,7 +39270,7 @@
mo-vi-ment-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "mo-vi-ment-mode";
- version = "20131029.733";
+ version = "20131029.133";
src = fetchFromGitHub {
owner = "AjayMT";
repo = "mo-vi-ment";
@@ -38720,7 +39278,7 @@
sha256 = "0k0scl9z35d8x4ikxm2db1frpbx151p2m181fa1armxbd9lbfvnn";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/mo-vi-ment-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/85487df36bab0a4d2ea034dbe01c8f095a7efddc/recipes/mo-vi-ment-mode";
sha256 = "1pg889mgpv0waccm135mlvag7q13gzfkzchv2532jngwrn6amqc7";
name = "mo-vi-ment-mode";
};
@@ -38733,7 +39291,7 @@
mobdebug-mode = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, lua-mode, melpaBuild }:
melpaBuild {
pname = "mobdebug-mode";
- version = "20140110.446";
+ version = "20140109.2146";
src = fetchFromGitHub {
owner = "deftsp";
repo = "mobdebug-mode";
@@ -38741,7 +39299,7 @@
sha256 = "04hbd7mv29v3fv4ld0b3skrir0wp9dix2n5nbqp63fj6n5i4cyyz";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/mobdebug-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/25a48680d9f0d2b86ee64cc2415626a5283136a8/recipes/mobdebug-mode";
sha256 = "19k0c7igqsqvib6hx0nssig4l5f959dlr4wijd1hp5h1hmcb5vv8";
name = "mobdebug-mode";
};
@@ -38754,7 +39312,7 @@
mocha = callPackage ({ f, fetchFromGitHub, fetchurl, js2-mode, lib, melpaBuild }:
melpaBuild {
pname = "mocha";
- version = "20160524.1623";
+ version = "20160524.923";
src = fetchFromGitHub {
owner = "scottaj";
repo = "mocha.el";
@@ -38762,7 +39320,7 @@
sha256 = "12i4na064z9cxhxgs9mh056j5r1rxpmmis9jfllcpsx4nhs9i9hp";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/mocha";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/39c26134ba95f277a4e9400e506433d96a695aa4/recipes/mocha";
sha256 = "0kjgrl5iy7cd3b9csgpjg3y0wp0q6c7c8cvf0mx8gdbsj7296kyx";
name = "mocha";
};
@@ -38775,7 +39333,7 @@
mocha-snippets = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, yasnippet }:
melpaBuild {
pname = "mocha-snippets";
- version = "20160211.1732";
+ version = "20160211.1032";
src = fetchFromGitHub {
owner = "cowboyd";
repo = "mocha-snippets.el";
@@ -38783,7 +39341,7 @@
sha256 = "1f8h5c9vvwynq92b1ii5hdpqmf52l5j443ir5hdbiigq30wkwlhx";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/mocha-snippets";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/93c472e3d7f318373342907ca7253253ef12dab8/recipes/mocha-snippets";
sha256 = "0dbsdk4jpzxv2sxx0nia9zhd0a0wmkz1qcqmbd15m1909ccdwxds";
name = "mocha-snippets";
};
@@ -38796,15 +39354,15 @@
mocker = callPackage ({ eieio ? null, el-x, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "mocker";
- version = "20150917.354";
+ version = "20150916.2054";
src = fetchFromGitHub {
owner = "sigma";
repo = "mocker.el";
- rev = "b56f0f2839d4a395979816b40089a77050518eb6";
- sha256 = "0dngznaraphpc5amn9n120la7ga3rj7h67pnnal6qwflh5rqcmss";
+ rev = "a1ddf87150f67306ae8da927117063c75588be30";
+ sha256 = "1jjp3sllm41hszfj7gs90zx16ww8791dvvsfck4flxcm12bmi1c1";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/mocker";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/16a4fe34a6f354d396c24ff13e15157510202259/recipes/mocker";
sha256 = "1g90jp1czrrzrmn7n4linby3q4fb4gcflzv2amjv0sdimw1ln1w3";
name = "mocker";
};
@@ -38817,7 +39375,7 @@
modalka = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "modalka";
- version = "20160531.1812";
+ version = "20160531.1112";
src = fetchFromGitHub {
owner = "mrkkrp";
repo = "modalka";
@@ -38825,7 +39383,7 @@
sha256 = "0yf5lwd95j55dkrkplsgnynq37ww0g97vw517j9q7spn7dqnq5f6";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/modalka";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/fa0a02da851a603b81e183f461da55bf4c71f0e9/recipes/modalka";
sha256 = "0bkjykvl6sw797h7j76dzn1viy598asly98gcl5wrq13n4w1md4c";
name = "modalka";
};
@@ -38838,7 +39396,7 @@
mode-icons = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "mode-icons";
- version = "20160601.208";
+ version = "20160531.1908";
src = fetchFromGitHub {
owner = "ryuslash";
repo = "mode-icons";
@@ -38846,7 +39404,7 @@
sha256 = "1xpskmmmc8xgz0n35fdq7k8ms21pjwd3m9zk9gshf2gyzcsb4mx1";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/mode-icons";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/0fda2b54a0ff0b6fc3bd6d20cfcbbf63cae5380f/recipes/mode-icons";
sha256 = "1dqcry27rz7afyvjg7345wysp6wmh8fpj32ysk5iw5i7v5scf6kf";
name = "mode-icons";
};
@@ -38859,7 +39417,7 @@
mode-line-debug = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "mode-line-debug";
- version = "20150307.1412";
+ version = "20150307.712";
src = fetchFromGitHub {
owner = "tarsius";
repo = "mode-line-debug";
@@ -38867,7 +39425,7 @@
sha256 = "1lkw9nnlns6v7r6nx915f85whq1ri4w8lccwyxrvam40hfvq60s1";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/mode-line-debug";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/b0080ab9ef1eca5dd19b3fd9af536d8aa17773a2/recipes/mode-line-debug";
sha256 = "0ppj14bm3rx3xgg4mfxa5zcm2r129jgmsx817wq3h7akjngcbfkd";
name = "mode-line-debug";
};
@@ -38879,13 +39437,13 @@
}) {};
modeline-char = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild {
pname = "modeline-char";
- version = "20160524.20";
+ version = "20160523.1720";
src = fetchurl {
url = "https://www.emacswiki.org/emacs/download/modeline-char.el";
sha256 = "0qikw44mj209xycchxqifbn9vwyd4zd2d25w8m134cnkhbbjmf5q";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/modeline-char";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/9655505f56fc90ea8ef61e7595af0de7427b273b/recipes/modeline-char";
sha256 = "1cb6pm69db0jbksmc4mkawf643i74is9v7ka34pv3mb21nj095qp";
name = "modeline-char";
};
@@ -38897,13 +39455,13 @@
}) {};
modeline-posn = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild {
pname = "modeline-posn";
- version = "20160112.1549";
+ version = "20160112.849";
src = fetchurl {
url = "https://www.emacswiki.org/emacs/download/modeline-posn.el";
sha256 = "1r4zq355h570hk7qq0ik121bwsr4hjnhacal4d4h119d11gq2p8d";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/modeline-posn";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/c62008950ea27b5a47363810f57063c1915b7c39/recipes/modeline-posn";
sha256 = "0dngfcbcdh22fl6nd47dhg9z9iivj67six67zjr9j1cbngp10dwk";
name = "modeline-posn";
};
@@ -38916,15 +39474,15 @@
modern-cpp-font-lock = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "modern-cpp-font-lock";
- version = "20160601.2150";
+ version = "20160622.1521";
src = fetchFromGitHub {
owner = "ludwigpacifici";
repo = "modern-cpp-font-lock";
- rev = "d9b625482b82de118ab23a6acd1dbdec87c425c7";
- sha256 = "1514zz5lgvxw688k8iidw7jwf3dk3ml02q8277369dnqq514p9bj";
+ rev = "3e9c18b5a2ade485565f5191f12a724f1969dbb0";
+ sha256 = "0jg5yix4c18gvy5n4wsi7zg2sb7r0bw0xlmq0w15g3z63nhy69vc";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/modern-cpp-font-lock";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/4bfc2386049adfe7a8e20da9b69fb73d6cb71387/recipes/modern-cpp-font-lock";
sha256 = "0h43icb5rqbkc5699kdy2mrjs5448phl18jch45ylp2wy2r8c2qj";
name = "modern-cpp-font-lock";
};
@@ -38937,7 +39495,7 @@
modtime-skip-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "modtime-skip-mode";
- version = "20140128.2301";
+ version = "20140128.1601";
src = fetchFromGitHub {
owner = "jordonbiondo";
repo = "modtime-skip-mode";
@@ -38945,7 +39503,7 @@
sha256 = "0ri841cwx2mx8ri50lhvifmxnysdc022421mlmklql0252kn775l";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/modtime-skip-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/486a675ca4898f99133bc18202e123fb58af54c0/recipes/modtime-skip-mode";
sha256 = "1drafwf4kqp83jp47j2ddl2n4a92zf1589fnp6c72hmjqcxv3l28";
name = "modtime-skip-mode";
};
@@ -38958,15 +39516,15 @@
moe-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "moe-theme";
- version = "20160322.915";
+ version = "20160607.36";
src = fetchFromGitHub {
owner = "kuanyui";
repo = "moe-theme.el";
- rev = "d7c4aa29ca55a394e6ebf698fda93215c0df1123";
- sha256 = "1567k0zacdf9zlmypb8fywz49n37hm8p60vrq2jqql8n8nq325gq";
+ rev = "36445fafc1dc1fb30d30eacf11329019f29e7199";
+ sha256 = "1pbvi7g2f196w9cmzr389k1zs8s2wzxqskdjxilfpzilrzcb7zyb";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/moe-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/4efefd7edacf90620436ad4ef9ceb470618a8018/recipes/moe-theme";
sha256 = "1nqvj8spvffgjvqlf25rcm3dc6w1axb6qlwwsjhq401a6xhw67f6";
name = "moe-theme";
};
@@ -38979,7 +39537,7 @@
molokai-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "molokai-theme";
- version = "20151016.1745";
+ version = "20151016.1045";
src = fetchFromGitHub {
owner = "alloy-d";
repo = "color-theme-molokai";
@@ -38987,7 +39545,7 @@
sha256 = "1hqa59pdrnwfykyl58lr8pfbh2f13sygvmrh707hbwc2aii0jjv2";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/molokai-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/b1fdc89f0c52231f238096a1d42c2c330cb50d2c/recipes/molokai-theme";
sha256 = "0srdh3yx7j6xs7rgpzmsyzz6ds00kq887rs2sfa0nvk0j0ga6baf";
name = "molokai-theme";
};
@@ -39000,7 +39558,7 @@
mongo = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "mongo";
- version = "20150315.1319";
+ version = "20150315.719";
src = fetchFromGitHub {
owner = "m2ym";
repo = "mongo-el";
@@ -39008,7 +39566,7 @@
sha256 = "0z8mcfhj425hb91fkj1pyg3apw1kf4mgy8lx6n1sc8zmib38py0x";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/mongo";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/886da7cd20f8fe5a4dc6a49390f54145f6023d77/recipes/mongo";
sha256 = "103zkslqdihjyl81688fvkq96rzk3an1vf3gz8rlmmz5anbql8ai";
name = "mongo";
};
@@ -39021,7 +39579,7 @@
monky = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "monky";
- version = "20160316.451";
+ version = "20160315.2251";
src = fetchFromGitHub {
owner = "ananthakumaran";
repo = "monky";
@@ -39029,7 +39587,7 @@
sha256 = "1p9p0yp68wb7f1qf0c02fk7ayb7dw6gv57368ksa6nw76w58hhfm";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/monky";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/9b33d35e3004f3cc8a5c17aa1ee07dd21d2d46dc/recipes/monky";
sha256 = "1m7hy3ijwgxqjk3vjvqkxqj8b5bqnd201bmf302k45n0dpjmhshz";
name = "monky";
};
@@ -39042,7 +39600,7 @@
monochrome-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "monochrome-theme";
- version = "20140326.1150";
+ version = "20140326.550";
src = fetchFromGitHub {
owner = "fxn";
repo = "monochrome-theme.el";
@@ -39050,7 +39608,7 @@
sha256 = "1sxhpvxapzgrwvzibkg7zd3ppmfcz5rhrbvg73b8rggjg4m5snyf";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/monochrome-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/bd753349134f4db6f80b6e86d4facd1704e87ccc/recipes/monochrome-theme";
sha256 = "191ikqns1sxcz6ca6xp6mb2vyfj19x19cmcf17snrf46kmx60qk9";
name = "monochrome-theme";
};
@@ -39063,15 +39621,15 @@
monokai-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "monokai-theme";
- version = "20160515.2304";
+ version = "20160628.551";
src = fetchFromGitHub {
owner = "oneKelvinSmith";
repo = "monokai-emacs";
- rev = "733c370d1b0ea31578363bf4e5aaf9b8ef834efb";
- sha256 = "02fyhijyn9awa5ag57kyk637vy9pfdica58zhdv24vqd4m81yby3";
+ rev = "01d08b19b33daec2e3e2e754a41cf0a9bdeb1e80";
+ sha256 = "0sab40mwrad7cjaa6cr8j3x3kln4zbgdcnn0w064bvvvi6x086h4";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/monokai-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/2bc9ce95a02fc4bcf7bc7547849c1c15d6db5089/recipes/monokai-theme";
sha256 = "13mv4vgsmdbf3v748lqi7b42hvr3yp86n97rb6792bcgd3kbdx7a";
name = "monokai-theme";
};
@@ -39084,15 +39642,15 @@
monroe = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "monroe";
- version = "20160421.1340";
+ version = "20160615.805";
src = fetchFromGitHub {
owner = "sanel";
repo = "monroe";
- rev = "f497e134f754ee62178eb41844fce3ffe204d50a";
- sha256 = "0jac2i5hwdi65rrif0xq86wsimxlpwcfbzsv7fjhc5f16bs6dmnk";
+ rev = "e86fa4e6e4d73ccea336575ad343bfbea2cc6f8c";
+ sha256 = "1hhmvn98ckdy7avjyf4dqd3rbrpyjr5fz9v93vbdsnrgzp0wd8gd";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/monroe";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/590e5e784c5a1c12a241d90c9a0794d2737a61ef/recipes/monroe";
sha256 = "04rhninxppvilk7s90g0wwa0g9vfcg7mk8mrb2m2c7cb9vj6wyig";
name = "monroe";
};
@@ -39105,7 +39663,7 @@
moonscript = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "moonscript";
- version = "20160503.1531";
+ version = "20160503.831";
src = fetchFromGitHub {
owner = "k2052";
repo = "moonscript-mode";
@@ -39113,7 +39671,7 @@
sha256 = "0bz35m0drjl12f9y42a79nnzxz5ahf5m7c2l2nfz8fyif270ph1y";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/moonscript";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/3046afee95277024830d7d372f2f1c84a0adcb00/recipes/moonscript";
sha256 = "1fi4hg5gk5zpfkrk0hqghghkzbbi33v48piq2i085i4nc6m3imp0";
name = "moonscript";
};
@@ -39126,7 +39684,7 @@
morlock = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "morlock";
- version = "20160521.1630";
+ version = "20160521.930";
src = fetchFromGitHub {
owner = "tarsius";
repo = "morlock";
@@ -39134,7 +39692,7 @@
sha256 = "0kjqdm6kzhgjmfdj4n95ivffw1wqf4r3gk62fvhfi4w29g7wd16j";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/morlock";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/b6ef53bbc80edda12a90a8a9705fe14415972833/recipes/morlock";
sha256 = "0693jr1k8mzd7hwp52azkl62c1g1p5yinarjcmdksfyqblqq5jna";
name = "morlock";
};
@@ -39147,7 +39705,7 @@
mote-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, ruby-mode ? null }:
melpaBuild {
pname = "mote-mode";
- version = "20160123.129";
+ version = "20160122.1829";
src = fetchFromGitHub {
owner = "inkel";
repo = "mote-mode";
@@ -39155,7 +39713,7 @@
sha256 = "10mf96r75558scn71pri71aa8nhp6hmnb5rwjxlh5dlf80r5dfd7";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/mote-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/b14e088b7b8f35321b720a1b3fdb75203aa66444/recipes/mote-mode";
sha256 = "1lg5z5d0d35sh21maiwmgzvc31iki9yg6x0awy5xrfsains7ykn9";
name = "mote-mode";
};
@@ -39168,7 +39726,7 @@
motion-mode = callPackage ({ fetchFromGitHub, fetchurl, flymake-cursor, flymake-easy, lib, melpaBuild }:
melpaBuild {
pname = "motion-mode";
- version = "20140920.356";
+ version = "20140919.2056";
src = fetchFromGitHub {
owner = "ainame";
repo = "motion-mode";
@@ -39176,7 +39734,7 @@
sha256 = "17570labnwdnwca2cg4ga0mrrm00n0h3wlxry823k5yn3k93rnj1";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/motion-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/c1e3a2091a73c7d725c929313290566f5ca19404/recipes/motion-mode";
sha256 = "1lfsc8ayiz2v3dfn8c0mmfch8vpzqyddxw8kscan2lzl2lcj50h0";
name = "motion-mode";
};
@@ -39188,13 +39746,13 @@
}) {};
mouse-plus = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild {
pname = "mouse-plus";
- version = "20160101.25";
+ version = "20151231.1725";
src = fetchurl {
url = "https://www.emacswiki.org/emacs/download/mouse+.el";
sha256 = "0rakxcpqdx175hic3ykwbd5if53dvvf0sxhq0gplpsybpqvkimyv";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/mouse+";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/01cbe9b5bb88f8c02fab67a269ac53c8aa4d8326/recipes/mouse+";
sha256 = "1fv7jnqzskx9iv92dm2pf0mqy2accl0svjl2kkb6v273n1day3f8";
name = "mouse-plus";
};
@@ -39207,7 +39765,7 @@
mouse-slider-mode = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "mouse-slider-mode";
- version = "20150910.2300";
+ version = "20150910.1600";
src = fetchFromGitHub {
owner = "skeeto";
repo = "mouse-slider-mode";
@@ -39215,7 +39773,7 @@
sha256 = "05pzplb3gmlnlvn2azbxdlf4vrkvk8fc9dkgi2nq4shysnh4c9v7";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/mouse-slider-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/8fa747999bb928c3836400a43d8ab63939381673/recipes/mouse-slider-mode";
sha256 = "0aqxjm78k7i8c59w6mw9wsfw3rail1pg40ac1dbcjkm62fjbh5hy";
name = "mouse-slider-mode";
};
@@ -39227,13 +39785,13 @@
}) {};
mouse3 = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild {
pname = "mouse3";
- version = "20160101.26";
+ version = "20151231.1726";
src = fetchurl {
url = "https://www.emacswiki.org/emacs/download/mouse3.el";
sha256 = "1831jpi06hi5v2jdjgs83jma7fp8xiqdmvvwxfyp2zpbfwi1lkb6";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/mouse3";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/a5d15f875b0080b12ce45cf696c581f6bbf061ba/recipes/mouse3";
sha256 = "1rppn55axjpqwqm2lq4dvwi3z7xkd5jkyqi1x8jqgcsfc9w6m777";
name = "mouse3";
};
@@ -39246,7 +39804,7 @@
move-dup = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "move-dup";
- version = "20140925.1708";
+ version = "20140925.1008";
src = fetchFromGitHub {
owner = "wyuenho";
repo = "move-dup";
@@ -39254,7 +39812,7 @@
sha256 = "0baynb6gq04rxh10l6rn0myrhg7c7fwqaryiiyddp4jy7llf83c8";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/move-dup";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/3ea1f7f015a366192492981ff75672fc363c6c18/recipes/move-dup";
sha256 = "0b0lmiisl9yckblwf7619if88qsmbka3bl4qiaqam7fka7psxs7f";
name = "move-dup";
};
@@ -39267,7 +39825,7 @@
move-text = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "move-text";
- version = "20160501.230";
+ version = "20160430.1930";
src = fetchFromGitHub {
owner = "emacsfodder";
repo = "move-text";
@@ -39275,7 +39833,7 @@
sha256 = "1i8nbxmxi9yblik7ma3wm19sajk1pgpw83mj990vhj1yl1k7m136";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/move-text";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/82bfd0f41e42eed1d4c2361ec1d1685edebbac1b/recipes/move-text";
sha256 = "04bfrkanafmbrdyw06ciw9kiyn7h3kpikxk3clx2gc04jl67hzgy";
name = "move-text";
};
@@ -39288,15 +39846,15 @@
mowedline = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "mowedline";
- version = "20150601.1909";
+ version = "20150601.1209";
src = fetchFromGitHub {
owner = "retroj";
repo = "mowedline";
- rev = "058d5fad71c9895ab36cf83b3f0a0b722054cb19";
- sha256 = "179mc70x3dvj0cz6yyhs00ndh0xvk71gmiscln9y0f1ngxr5h338";
+ rev = "c941d44c994e29f0c5f6c4532950eaceec0a6376";
+ sha256 = "1wrdcxdlcvrhvarz71a09168bp1rd154ihs5v55dgh1sm7pv34la";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/mowedline";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/86f7df6b8df3398ef476c0ed31722b03f16b2fec/recipes/mowedline";
sha256 = "0c2hvvwa7s5iyz517jaskshdcq9zs15zr6xsvrcb3biahrh4bmfb";
name = "mowedline";
};
@@ -39309,7 +39867,7 @@
moz = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "moz";
- version = "20150805.1906";
+ version = "20150805.1206";
src = fetchFromGitHub {
owner = "bard";
repo = "mozrepl";
@@ -39317,7 +39875,7 @@
sha256 = "1g06i3d8xv8ja6nfww4k60l3467xr1s9xsk7i6dbicq0lf8559h9";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/moz";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/6839c5e52364fb32f6d8a351e5c2f21fbd6669a1/recipes/moz";
sha256 = "0ar2xgsi7csjj6fgiamrjwjc58j942dm32j3f3lz21yn2c4pnyxi";
name = "moz";
};
@@ -39330,7 +39888,7 @@
moz-controller = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, moz }:
melpaBuild {
pname = "moz-controller";
- version = "20151209.306";
+ version = "20151208.2006";
src = fetchFromGitHub {
owner = "RenWenshan";
repo = "emacs-moz-controller";
@@ -39338,7 +39896,7 @@
sha256 = "0fssn33ld6xhjlwg1dbrjg8sa0pjmglq0dw792yrmvm4fj0zjph8";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/moz-controller";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/fcc20337594a76a547f696adece121ae592c6917/recipes/moz-controller";
sha256 = "18gca1csl9dfi9995mky8cbgi3xzf1if8pzdjiz5404gzcqk0rfd";
name = "moz-controller";
};
@@ -39351,7 +39909,7 @@
mozc = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "mozc";
- version = "20160103.6";
+ version = "20160102.1706";
src = fetchFromGitHub {
owner = "google";
repo = "mozc";
@@ -39359,7 +39917,7 @@
sha256 = "1l1qds7mzn7cx0ijdwcdihqbmidwh16a96v4la9ris07k5fxqiph";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/mozc";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/30fef77e1d7194ee3c3c1d4775c349a4a9f6af2c/recipes/mozc";
sha256 = "0nslh4xyqpvzdxcgrd1bzaqcdz77bghizh6n2w6wk46cflir8xba";
name = "mozc";
};
@@ -39372,7 +39930,7 @@
mozc-im = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, mozc }:
melpaBuild {
pname = "mozc-im";
- version = "20160412.222";
+ version = "20160411.1922";
src = fetchFromGitHub {
owner = "d5884";
repo = "mozc-im";
@@ -39380,7 +39938,7 @@
sha256 = "0cpcldizgyr125j7lzkl8l6jw1hc3fb12cwgkpjrl6pjpr80vb15";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/mozc-im";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/4b651b7f1c15b44577b3c2b7493264ed802cf073/recipes/mozc-im";
sha256 = "1gqzmm712npj36qfi506zgl0ycd6k7l5m46c7zz2z2lb6jpssw10";
name = "mozc-im";
};
@@ -39393,7 +39951,7 @@
mozc-popup = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, mozc, popup }:
melpaBuild {
pname = "mozc-popup";
- version = "20150224.134";
+ version = "20150223.1834";
src = fetchFromGitHub {
owner = "d5884";
repo = "mozc-popup";
@@ -39401,7 +39959,7 @@
sha256 = "1mbpkjc6sk7qqmgsmr5a5l2ycwnqp8bkwgikdavgs6hnal10bkmn";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/mozc-popup";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/49bdcf035b9f885a689b9dc21817aecdcd09768b/recipes/mozc-popup";
sha256 = "1n43lwflxzzyskxgzg19rg3hiqqkf5l7vfgaydryf4sk8480x687";
name = "mozc-popup";
};
@@ -39414,7 +39972,7 @@
mozc-temp = callPackage ({ dash, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, mozc }:
melpaBuild {
pname = "mozc-temp";
- version = "20160228.940";
+ version = "20160228.240";
src = fetchFromGitHub {
owner = "HKey";
repo = "mozc-temp";
@@ -39422,7 +39980,7 @@
sha256 = "1vwciy6hcbcyid41bykibx6ii1y9ln7kdxn7cjwfjrgd3kl9wg19";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/mozc-temp";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/e0c77275d759bf73df11fa151b4e737d7cb15adf/recipes/mozc-temp";
sha256 = "0x1bsa1py0kn73hzbsb4ijl0bqng8nib191vgn6xq8f5cx55044d";
name = "mozc-temp";
};
@@ -39435,7 +39993,7 @@
mpages = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "mpages";
- version = "20150710.1604";
+ version = "20150710.904";
src = fetchFromGitHub {
owner = "slevin";
repo = "mpages";
@@ -39443,7 +40001,7 @@
sha256 = "11c8pr3s77aq34ic32lnsialwh8bw3m78kj838xl2aab2pgrlny2";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/mpages";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/b535c2862c4fad568324466883f23ba9f39e787f/recipes/mpages";
sha256 = "11scjjwwrpgaz6i4jq9y7m864nfak46vnbfb0w15625znz926jcs";
name = "mpages";
};
@@ -39456,7 +40014,7 @@
mpg123 = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "mpg123";
- version = "20151214.2050";
+ version = "20151214.1350";
src = fetchFromGitHub {
owner = "emacsmirror";
repo = "mpg123";
@@ -39464,7 +40022,7 @@
sha256 = "09731mwm23b6ic53366lnxy2p7dfd245yh75gaf6ijfa22jks7gb";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/mpg123";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/714d40891ab697b6303a3e25df2cb8adf04942f3/recipes/mpg123";
sha256 = "184ip9pvv4zkfxnrzxbfajjadc9f4dz4psn33f9x3sfh7s1y4nw8";
name = "mpg123";
};
@@ -39477,7 +40035,7 @@
mpv = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, json ? null, lib, melpaBuild, names, org }:
melpaBuild {
pname = "mpv";
- version = "20150218.1018";
+ version = "20150218.318";
src = fetchFromGitHub {
owner = "kljohann";
repo = "mpv.el";
@@ -39485,7 +40043,7 @@
sha256 = "193j90sgn1zgl00mji86wll4djj57vk5arhwbmhhf5b1qx3wpbhm";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/mpv";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/2392c1d1042ac6a42bbf9aa7e394c03e178829d0/recipes/mpv";
sha256 = "1vq308ac6jj1h8qa2b2sypisb38hbvwjimqndhpfir06fghkw94l";
name = "mpv";
};
@@ -39498,7 +40056,7 @@
msvc = callPackage ({ ac-clang, cedet ? null, cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "msvc";
- version = "20150530.1051";
+ version = "20150530.351";
src = fetchFromGitHub {
owner = "yaruopooner";
repo = "msvc";
@@ -39506,7 +40064,7 @@
sha256 = "1draiwbwb8zfi6rdr5irv8091xv2pmnifq7pzi3rrvjb8swb28z3";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/msvc";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/69939b85353a23f374cab996ede879ab315a323b/recipes/msvc";
sha256 = "04gq2klana557qvsi3bv6416l0319jsqb6bdfs7y6729qd94hlq3";
name = "msvc";
};
@@ -39519,7 +40077,7 @@
mu-cite = callPackage ({ fetchFromGitHub, fetchurl, flim, lib, melpaBuild }:
melpaBuild {
pname = "mu-cite";
- version = "20160130.1200";
+ version = "20160130.500";
src = fetchFromGitHub {
owner = "ksato9700";
repo = "mu-cite";
@@ -39527,7 +40085,7 @@
sha256 = "1gxspy50gh7j4sysvr17fvvp8p417ww39ii5dy0fxncfwczdsa19";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/mu-cite";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/a80bc6e626f4bc6edfe6560833d12d31ecfd7a51/recipes/mu-cite";
sha256 = "0ap21sw4r2x774q2np6rhrxh2m2rf3f6ak3k71iar159chx32y6q";
name = "mu-cite";
};
@@ -39540,7 +40098,7 @@
mu4e-alert = callPackage ({ alert, emacs, fetchFromGitHub, fetchurl, ht, lib, melpaBuild, s }:
melpaBuild {
pname = "mu4e-alert";
- version = "20160601.713";
+ version = "20160601.13";
src = fetchFromGitHub {
owner = "iqbalansari";
repo = "mu4e-alert";
@@ -39548,7 +40106,7 @@
sha256 = "0ndxf39w1ndqys455ydhy1f1d12pfza62wrqja8xxh5s7s2x67h9";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/mu4e-alert";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/5a48e8cb571e91b582ff0dea18e8dc75601edc35/recipes/mu4e-alert";
sha256 = "15nwj09iyrvjsc9lrxla6qa0s8izcllxghw5gx3ffncfcrx2l8qm";
name = "mu4e-alert";
};
@@ -39561,7 +40119,7 @@
mu4e-maildirs-extension = callPackage ({ dash, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "mu4e-maildirs-extension";
- version = "20160604.1143";
+ version = "20160604.443";
src = fetchFromGitHub {
owner = "agpchil";
repo = "mu4e-maildirs-extension";
@@ -39569,7 +40127,7 @@
sha256 = "00ylq8ay7j21winii1g3c3hcaihcnq209mngs7g1cgykh1fpbblg";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/mu4e-maildirs-extension";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/3b20c61c62309f27895f7427f681266e393ef867/recipes/mu4e-maildirs-extension";
sha256 = "1xz19dxrj1grnl7wy9qglh08xb3dr509232l3xizpkxgqqk8pwbi";
name = "mu4e-maildirs-extension";
};
@@ -39582,7 +40140,7 @@
multi = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "multi";
- version = "20131013.1744";
+ version = "20131013.1044";
src = fetchFromGitHub {
owner = "kurisuwhyte";
repo = "emacs-multi";
@@ -39590,7 +40148,7 @@
sha256 = "0f5hc6mgq0hg1wwnvqd4fp7ck58lcavvgqjggz9zlhrjgkmynjxx";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/multi";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/c9fea5cf529bcdf412af2926e55b8d77edc07eca/recipes/multi";
sha256 = "1c240d1c1g8wb2ld944344zklnv86d9rycmya4z53b2ai10642ig";
name = "multi";
};
@@ -39603,7 +40161,7 @@
multi-compile = callPackage ({ dash, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "multi-compile";
- version = "20160306.2323";
+ version = "20160306.1623";
src = fetchFromGitHub {
owner = "ReanGD";
repo = "emacs-multi-compile";
@@ -39611,7 +40169,7 @@
sha256 = "1aswpv1m02n26620hgkcfd38f06bzmmijlr9rs5krv6snq5gdb8g";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/multi-compile";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/b312434c6c8e23ded2b74bf8f144ad0b3170adae/recipes/multi-compile";
sha256 = "16fv0hpwcjw1771zlbgznph0fix9fbm6yqj2rcz1f9l26iih6apz";
name = "multi-compile";
};
@@ -39623,13 +40181,13 @@
}) {};
multi-eshell = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild {
pname = "multi-eshell";
- version = "20120608.2035";
+ version = "20120608.1335";
src = fetchurl {
url = "https://www.emacswiki.org/emacs/download/multi-eshell.el";
sha256 = "1w1jwfznpl214a1xx46zlgqbx9c5yjzpyqqrkn3xqjgnj485yhkl";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/multi-eshell";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/a9069a6eb1e57bccb06d26577cac70765de8e52f/recipes/multi-eshell";
sha256 = "1i0mvgqxsc99dwp9qcdrijqxsxflrbxw846rgw89p1jfs8mp4l7d";
name = "multi-eshell";
};
@@ -39642,7 +40200,7 @@
multi-line = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, s }:
melpaBuild {
pname = "multi-line";
- version = "20160601.2345";
+ version = "20160601.1645";
src = fetchFromGitHub {
owner = "IvanMalison";
repo = "multi-line";
@@ -39650,7 +40208,7 @@
sha256 = "08zyplahyfr6wa145fsggqyn5nh8x4nx98znz82g38pyh8yn2i1j";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/multi-line";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/0f8eee6798a0ba71d437a1cbf82e360a5b60eafb/recipes/multi-line";
sha256 = "1aadmijnjr029s1qq4gk8xyl9m8xb5x5774b8i3jyfixyjqvhvwp";
name = "multi-line";
};
@@ -39663,14 +40221,14 @@
multi-project = callPackage ({ fetchhg, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "multi-project";
- version = "20150314.1544";
+ version = "20150314.944";
src = fetchhg {
url = "https://bitbucket.com/ellisvelo/multi-project";
rev = "f7fd0ae6819e";
sha256 = "0lcx73vzm7zwvzzc53pfb5y16bhvq9cm9fdy63d3242s8v834z3c";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/multi-project";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/5b7972602399f9df9139cff177e38653bb0f43ed/recipes/multi-project";
sha256 = "19dy2wl5ad1xldiznlw2vjvr9ja8h9wiv6igcggixq56fhngp40x";
name = "multi-project";
};
@@ -39682,13 +40240,13 @@
}) {};
multi-term = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild {
pname = "multi-term";
- version = "20150220.1420";
+ version = "20160619.433";
src = fetchurl {
url = "https://www.emacswiki.org/emacs/download/multi-term.el";
- sha256 = "062c52xd469jdmsq4fvdhsmgfjrlanv0bb1w5vglz7bsn68d2bim";
+ sha256 = "0i7gixcyqhd8ajbslfmb58rvdihzfprydwiqr730q9q0yfja36j8";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/multi-term";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/4327b4dd464ebb00c2acdd496274dedf912cdf92/recipes/multi-term";
sha256 = "1va4ihngwv5qvwps3m9jj0150gbrmq3zllnyq1hbx5ap8hjrhvdx";
name = "multi-term";
};
@@ -39701,7 +40259,7 @@
multi-web-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "multi-web-mode";
- version = "20130824.554";
+ version = "20130823.2254";
src = fetchFromGitHub {
owner = "fgallina";
repo = "multi-web-mode";
@@ -39709,7 +40267,7 @@
sha256 = "0mc4kkgwnwfk27wwc21nw5ly7qcsl7y5bd8wf2y8r6pxhvwran4n";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/multi-web-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/cae2ac3513e371a256be0f1a7468e38e686c2487/recipes/multi-web-mode";
sha256 = "0vi4yvahr10aqpcz4127c8pcqpr5srwc1yhgipnbnm86qnh34ql5";
name = "multi-web-mode";
};
@@ -39722,7 +40280,7 @@
multicolumn = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "multicolumn";
- version = "20150202.2351";
+ version = "20150202.1651";
src = fetchFromGitHub {
owner = "Lindydancer";
repo = "multicolumn";
@@ -39730,7 +40288,7 @@
sha256 = "1ispa0wxpkydm0cyj4scyyacfrbilrip5v8bsrcqfc6qs597z8rf";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/multicolumn";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/f37a999b0583a0ebc842c2f9fad8d08cb6c9dabf/recipes/multicolumn";
sha256 = "1ylnc3s4ixvnqn7g2p6nzz8x29ggqc703waci430f1rp1lsd3q09";
name = "multicolumn";
};
@@ -39743,7 +40301,7 @@
multifiles = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "multifiles";
- version = "20130615.2333";
+ version = "20130615.1633";
src = fetchFromGitHub {
owner = "magnars";
repo = "multifiles.el";
@@ -39751,7 +40309,7 @@
sha256 = "065l04ylplng1vgykkbn2vnkcs3sn1k2cikx1ha2q8wmgx6bkvai";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/multifiles";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/8b528544841995045fb1f8344aaaa38946bb3915/recipes/multifiles";
sha256 = "0m0pi2qjis9p6z9cd8hlxm1r88ynwmd2ks8wg65sffffwsdbg4kz";
name = "multifiles";
};
@@ -39764,15 +40322,15 @@
multiple-cursors = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "multiple-cursors";
- version = "20160523.2143";
+ version = "20160616.1604";
src = fetchFromGitHub {
owner = "magnars";
repo = "multiple-cursors.el";
- rev = "be149f9121840561b7a2df17a7a3b1838a1b1f4c";
- sha256 = "0h91jg8mhzxk5ir67a9bl4bl74w3m24xdjgqsjac6ffaf6vc3jhm";
+ rev = "8413969a97343d1270a3c70252e4ca2eb4e79c36";
+ sha256 = "12afr46f4kqfpal2xdnydwwilzhk1503sgkvbbff9qnkg9h64bnh";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/multiple-cursors";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/a5f015e6b88be2a5ded363bd882a558e94d1f391/recipes/multiple-cursors";
sha256 = "0mky5p9wpd3270wr5vfna8rkk2ff81wk7vicyxli39195m0qgg0x";
name = "multiple-cursors";
};
@@ -39785,7 +40343,7 @@
mustache = callPackage ({ dash, fetchFromGitHub, fetchurl, ht, lib, melpaBuild, s }:
melpaBuild {
pname = "mustache";
- version = "20131117.2307";
+ version = "20131117.1607";
src = fetchFromGitHub {
owner = "Wilfred";
repo = "mustache.el";
@@ -39793,7 +40351,7 @@
sha256 = "1n2ymd92qpvsby6ms0l3kjhdzzc47rri2aiscc6bs07hm4mjpr9q";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/mustache";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/d1bcf9599ca6d2c29333071a80f96808d4ab52e2/recipes/mustache";
sha256 = "1pjr00xx77mlfw1myxaz6i3y2gbivhbiq5hyjxxbjlfrkm1vxc8g";
name = "mustache";
};
@@ -39806,7 +40364,7 @@
mustache-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "mustache-mode";
- version = "20141024.1632";
+ version = "20141024.932";
src = fetchFromGitHub {
owner = "mustache";
repo = "emacs";
@@ -39814,7 +40372,7 @@
sha256 = "15gw4d0hp15rglsj8hzd290li4p0kadj2dsz0dgfcxld7hnimihk";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/mustache-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/d5f7e5f7e9c551a149e9d433173bd8c8613487ed/recipes/mustache-mode";
sha256 = "076ar57qhwcpl4n634ma827r2rh61670778wqr5za2444a6ax1gs";
name = "mustache-mode";
};
@@ -39827,7 +40385,7 @@
mustang-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "mustang-theme";
- version = "20141018.123";
+ version = "20141017.1823";
src = fetchFromGitHub {
owner = "mswift42";
repo = "mustang-theme";
@@ -39835,7 +40393,7 @@
sha256 = "19qd34dcfspv621p4y07zhq2pr8pwss3lcssm9sfhr6w2vmvgcr4";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/mustang-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/2ed3691edd1cba6abc0c30d2aab732e2ba51bf00/recipes/mustang-theme";
sha256 = "0771l3x6109ki914nwpfz3fj7pbvpcg9vf485mrccq2wlxymr5dr";
name = "mustang-theme";
};
@@ -39848,7 +40406,7 @@
mustard-theme = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "mustard-theme";
- version = "20141116.802";
+ version = "20141116.102";
src = fetchFromGitHub {
owner = "emacsfodder";
repo = "emacs-mustard-theme";
@@ -39856,7 +40414,7 @@
sha256 = "170qhbbvcv9dg6jzfd9r95in5m8z1k647mn0gaqflfj0hvq5hwgf";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/mustard-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/641d1959bd31598fcdacd39a3d1bb077dcccfa5c/recipes/mustard-theme";
sha256 = "0izxhivhmv49dja4wy9n0ipd41xdzdza2ql7pfa7ny35ji5hskik";
name = "mustard-theme";
};
@@ -39869,7 +40427,7 @@
mutant = callPackage ({ dash, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "mutant";
- version = "20160124.1453";
+ version = "20160124.753";
src = fetchFromGitHub {
owner = "p-lambert";
repo = "mutant.el";
@@ -39877,7 +40435,7 @@
sha256 = "0w9blrm3596hmip8jg2hlz9sl31ci89b90jglmg4ipldgrgj3ly6";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/mutant";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/0fc72d1f18eba7501a040d450a85d8dee4e3070f/recipes/mutant";
sha256 = "0m5l5r37zb0ig96757ldyl9hbb01lknzqf08ap6dsmdwr1zayvp1";
name = "mutant";
};
@@ -39889,13 +40447,13 @@
}) {};
muttrc-mode = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild {
pname = "muttrc-mode";
- version = "20090805.52";
+ version = "20090804.1752";
src = fetchurl {
url = "https://www.emacswiki.org/emacs/download/muttrc-mode.el";
sha256 = "1xihp3zdqs9054j3bfrd9wnahsvvxjk1ags1iy50ncv5850ppjis";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/muttrc-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/7d3fd45af3345742cff7be99ad8210d7f8fd2a2f/recipes/muttrc-mode";
sha256 = "0ym6rfrhrmpnlqhkxv9ck5893qm0yhswslvgc9vb4nl9hyc1b5jn";
name = "muttrc-mode";
};
@@ -39908,7 +40466,7 @@
mvn = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "mvn";
- version = "20160211.1643";
+ version = "20160211.943";
src = fetchFromGitHub {
owner = "apg";
repo = "mvn-el";
@@ -39916,7 +40474,7 @@
sha256 = "1jg3xrk44lspxli0zr02jcsl8phj0ns7ly3dkd7rx2wgsk69ari3";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/mvn";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/7fabdb05de9b8ec18a3a566f99688b50443b6b44/recipes/mvn";
sha256 = "0bpg9zpyfdyn9xvrbmq4gb10hd701mc49np8arlmnilphb3fdgzs";
name = "mvn";
};
@@ -39929,7 +40487,7 @@
mwe-log-commands = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "mwe-log-commands";
- version = "20100703.1441";
+ version = "20100703.741";
src = fetchFromGitHub {
owner = "emacsmirror";
repo = "mwe-log-commands";
@@ -39937,7 +40495,7 @@
sha256 = "0qdlbyq47gr65yq5ri8s9lxw4wp9fmyqc2prkh560d4hkvw60aw3";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/mwe-log-commands";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/38ad25fc6d80148c12e235bccf7732afa20ff3a4/recipes/mwe-log-commands";
sha256 = "05z2ax9mgyxldd3ds44xnh9f5w5q4ziy4rxmnfiqjykan2f5hnkn";
name = "mwe-log-commands";
};
@@ -39950,7 +40508,7 @@
mwim = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "mwim";
- version = "20150822.2136";
+ version = "20150822.1436";
src = fetchFromGitHub {
owner = "alezost";
repo = "mwim.el";
@@ -39958,7 +40516,7 @@
sha256 = "0hvq6z754niqjyv79jzb833wrwbspc7npfg85scwdv8vzwassjx4";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/mwim";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/b7e1aa2fa1294b27ed7b6c5bdd5844fa5c37df72/recipes/mwim";
sha256 = "0bsibwplvyv96y5i5svm2b0jwzs5a7jr2aara7v7xnpj0nqaxm8k";
name = "mwim";
};
@@ -39971,7 +40529,7 @@
myanmar-input-methods = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "myanmar-input-methods";
- version = "20160106.1637";
+ version = "20160106.937";
src = fetchFromGitHub {
owner = "yelinkyaw";
repo = "emacs-myanmar-input-methods";
@@ -39979,7 +40537,7 @@
sha256 = "0cf0c9g9k2lk1ifi2dlw7c601sh1ycxf3fgl2hy5wliyd6l9rf86";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/myanmar-input-methods";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/76093af2bba82159784994ec9e17a69cd22bf868/recipes/myanmar-input-methods";
sha256 = "1yg8zy2z18pbyr507ms2b162c0819rna1ilwyp6hb3iv2zjw45sd";
name = "myanmar-input-methods";
};
@@ -39992,7 +40550,7 @@
mykie = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "mykie";
- version = "20150809.5";
+ version = "20150808.1705";
src = fetchFromGitHub {
owner = "yuutayamada";
repo = "mykie-el";
@@ -40000,7 +40558,7 @@
sha256 = "0a9a6hmv8vjmp6h9mnzin9vc0sncg79v5z72pasvbrplfxijzan0";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/mykie";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/e10504a19e052c080be2ccc9b1b8fd2e73a852e0/recipes/mykie";
sha256 = "12ram39fp3m9ar6q184rsnpkxb14y0ajibng7ia2ck54ck7n36cj";
name = "mykie";
};
@@ -40013,7 +40571,7 @@
mynt-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, virtualenvwrapper }:
melpaBuild {
pname = "mynt-mode";
- version = "20150512.2249";
+ version = "20150512.1549";
src = fetchFromGitHub {
owner = "crshd";
repo = "mynt-mode";
@@ -40021,7 +40579,7 @@
sha256 = "18ml0qz3iipm9w36zvwz77cbbrg885jgvzk6z4a33xcfp524xhma";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/mynt-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/22eaeb5041155d56483d2ac6b32098456411442b/recipes/mynt-mode";
sha256 = "17s0wdwgh2dcpww6h3qszc9dcs7ki00xkyisvsfn4xqajrmmp75b";
name = "mynt-mode";
};
@@ -40034,7 +40592,7 @@
mysql2sqlite = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "mysql2sqlite";
- version = "20151123.2239";
+ version = "20151123.1539";
src = fetchFromGitHub {
owner = "echosa";
repo = "emacs-mysql2sqlite";
@@ -40042,7 +40600,7 @@
sha256 = "0q5809hq22hyzxx5xr2hwwf3jh3qlpf3mkbl3fxqq93gm16plh1i";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/mysql2sqlite";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/9841d3cfd1ee954eb0ab9b2ca3a3f605eb0fd22a/recipes/mysql2sqlite";
sha256 = "1jblrbw4rq2jwpb8d1dyna0fiv52b9va3sj881cb17rqx200y3nd";
name = "mysql2sqlite";
};
@@ -40055,7 +40613,7 @@
myterminal-controls = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "myterminal-controls";
- version = "20160120.530";
+ version = "20160119.2230";
src = fetchFromGitHub {
owner = "myTerminal";
repo = "myterminal-controls";
@@ -40063,7 +40621,7 @@
sha256 = "18wqgjn38jxzsbivmf2fkcq3r1y4lffh3dbpv1jj7s9qn91pyp6a";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/myterminal-controls";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/4a82a45d9fcafea0795f832bce1bdd7bc83667e2/recipes/myterminal-controls";
sha256 = "0ipk5s2whf3l68q0dydm1j6rcb6jhk61hgjwxygdphifvih7c5y2";
name = "myterminal-controls";
};
@@ -40076,7 +40634,7 @@
n3-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "n3-mode";
- version = "20141027.1857";
+ version = "20141027.1257";
src = fetchFromGitHub {
owner = "doriantaylor";
repo = "n3-mode-for-emacs";
@@ -40084,7 +40642,7 @@
sha256 = "1lp1bx9110vqzjww94va8pdks39qvqzl8rf0p8na1q0qn06rnk9h";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/n3-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/a71e3a572cb2ff58c731df9ff6a65b69ebd8f6eb/recipes/n3-mode";
sha256 = "0hasxq39phgyc259dgxskhqxjsp0yi98vx1bs8ynvwa26la4ddzh";
name = "n3-mode";
};
@@ -40097,7 +40655,7 @@
n4js = callPackage ({ cypher-mode, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "n4js";
- version = "20150714.431";
+ version = "20150713.2131";
src = fetchFromGitHub {
owner = "tmtxt";
repo = "n4js.el";
@@ -40105,7 +40663,7 @@
sha256 = "1pd6c0jc1zxx3i3nk4qdx7gdf1qn8sc9jgqd72pkkpzvdwv998cp";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/n4js";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/82157dfd975635c49ef75eae83e2bdf5fe4ae5c2/recipes/n4js";
sha256 = "0x7smxs91ffriyxx2df61fh1abpl39gqy4m62k77h7xb6fg7af6m";
name = "n4js";
};
@@ -40117,13 +40675,13 @@
}) {};
naked = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild {
pname = "naked";
- version = "20160101.27";
+ version = "20151231.1727";
src = fetchurl {
url = "https://www.emacswiki.org/emacs/download/naked.el";
sha256 = "0zq13qjqfpxjba1bhdqqxkvgxq1dxyb7hd1bpnk6cbhsxr6mr50i";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/naked";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/a5d15f875b0080b12ce45cf696c581f6bbf061ba/recipes/naked";
sha256 = "06p6dzhn34dva3677mrvwq2a2x3bhw7f486y654hszla7i75pilq";
name = "naked";
};
@@ -40136,7 +40694,7 @@
name-this-color = callPackage ({ cl-lib ? null, dash, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "name-this-color";
- version = "20151014.2230";
+ version = "20151014.1530";
src = fetchFromGitHub {
owner = "knl";
repo = "name-this-color.el";
@@ -40144,7 +40702,7 @@
sha256 = "0amhw630hgc0j8wr8m6aav399ixi3vbwrck79hhlr3pmyh91vv7n";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/name-this-color";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/806273d9898331b9b0189a72d9fdd43c86e1224c/recipes/name-this-color";
sha256 = "12nrk1ww766jb4gb4iz6w485nimh2iv8wni2jq4l38v8ndh490zb";
name = "name-this-color";
};
@@ -40157,7 +40715,7 @@
nameframe = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "nameframe";
- version = "20151018.619";
+ version = "20151017.2319";
src = fetchFromGitHub {
owner = "john2x";
repo = "nameframe";
@@ -40165,7 +40723,7 @@
sha256 = "07zgwyrss23yb8plnhhwmh0khdvfp539891sj1z1vs50jcllcpw5";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/nameframe";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/bd314150b3f8ce529a2ae39a71e03bebedfdc6b9/recipes/nameframe";
sha256 = "0iq8cfii39ha8sxn9w7kyfvys8kwyax8g4l0pkl05q0a0s95padp";
name = "nameframe";
};
@@ -40178,7 +40736,7 @@
nameframe-perspective = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, nameframe, perspective }:
melpaBuild {
pname = "nameframe-perspective";
- version = "20151018.1107";
+ version = "20151018.407";
src = fetchFromGitHub {
owner = "john2x";
repo = "nameframe";
@@ -40186,7 +40744,7 @@
sha256 = "07zgwyrss23yb8plnhhwmh0khdvfp539891sj1z1vs50jcllcpw5";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/nameframe-perspective";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/2543af5579d37a3eb52e6fea41da315f5590331e/recipes/nameframe-perspective";
sha256 = "0wgr90m2pazc514slgdl1lin4mr3xxizasc82k7qinvdvdja515x";
name = "nameframe-perspective";
};
@@ -40199,7 +40757,7 @@
nameframe-projectile = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, nameframe, projectile }:
melpaBuild {
pname = "nameframe-projectile";
- version = "20151018.1107";
+ version = "20151018.407";
src = fetchFromGitHub {
owner = "john2x";
repo = "nameframe";
@@ -40207,7 +40765,7 @@
sha256 = "07zgwyrss23yb8plnhhwmh0khdvfp539891sj1z1vs50jcllcpw5";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/nameframe-projectile";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/bc17af8ff1694120d12a0cdbfccec78834810acd/recipes/nameframe-projectile";
sha256 = "11z64wy8mnnrjmgfs2sjbv3mh136aki8r5f89myx861nfx18hc3k";
name = "nameframe-projectile";
};
@@ -40220,7 +40778,7 @@
nameless = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "nameless";
- version = "20160403.2013";
+ version = "20160403.1313";
src = fetchFromGitHub {
owner = "Malabarba";
repo = "Nameless";
@@ -40228,7 +40786,7 @@
sha256 = "1g8852c68ca4b4wf781aiyhbgk2a3g39jw1mijzpp0lmmnsbmmwc";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/nameless";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/8e4ee4dae5f32a8d445dc0cc2455c1f7075c9b3d/recipes/nameless";
sha256 = "14agx54h2vqfb0656n12z761ywyxsdskd6xa1ccar70l9vwj85vq";
name = "nameless";
};
@@ -40241,7 +40799,7 @@
names = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "names";
- version = "20151201.1304";
+ version = "20151201.604";
src = fetchFromGitHub {
owner = "Malabarba";
repo = "names";
@@ -40249,7 +40807,7 @@
sha256 = "0m82g27gwf9mvicivmcilqghz5b24ijmnw0jf0wl2skfbbg0sydh";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/names";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/1e6aed365c42987d64d0cd9a8a6178339b1b39e8/recipes/names";
sha256 = "1q784606jlakw1z6sx2g2x8hz8c8arywrm2r626wj0v105v510vg";
name = "names";
};
@@ -40262,7 +40820,7 @@
namespaces = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "namespaces";
- version = "20130326.2350";
+ version = "20130326.1750";
src = fetchFromGitHub {
owner = "chrisbarrett";
repo = "elisp-namespaces";
@@ -40270,7 +40828,7 @@
sha256 = "157hhb253m6a9l5wy6x8w5ar3x0qz1326l7a0npxif6pma0dd140";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/namespaces";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/de404e9ad3d1e27af24e868e84218d872d5fc795/recipes/namespaces";
sha256 = "02pb7762khxpah4q6xg8r7dmlv1kwyzinffi7pcaps6ycj29q2fr";
name = "namespaces";
};
@@ -40283,7 +40841,7 @@
nand2tetris = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, names }:
melpaBuild {
pname = "nand2tetris";
- version = "20151027.2251";
+ version = "20151027.1651";
src = fetchFromGitHub {
owner = "CestDiego";
repo = "nand2tetris.el";
@@ -40291,7 +40849,7 @@
sha256 = "003zgkpzz9q0bkkw6psks0vbfikzikfm42myqk14xn7330vgcxz7";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/nand2tetris";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/90421372b3f60b59762279ac805c61a984606d11/recipes/nand2tetris";
sha256 = "1zg9xx7mj8334m2v2zqqfkr5vkj4dzqbj8y13qk6xhzb7qkppyqd";
name = "nand2tetris";
};
@@ -40304,7 +40862,7 @@
nand2tetris-assembler = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, names, nand2tetris }:
melpaBuild {
pname = "nand2tetris-assembler";
- version = "20151027.2236";
+ version = "20151027.1636";
src = fetchFromGitHub {
owner = "CestDiego";
repo = "nand2tetris.el";
@@ -40312,7 +40870,7 @@
sha256 = "003zgkpzz9q0bkkw6psks0vbfikzikfm42myqk14xn7330vgcxz7";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/nand2tetris-assembler";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/90421372b3f60b59762279ac805c61a984606d11/recipes/nand2tetris-assembler";
sha256 = "1761kgrflipxba8894cnx90ks7f3ba4nj6ci515zzxcx9s45mfyy";
name = "nand2tetris-assembler";
};
@@ -40325,14 +40883,14 @@
nanowrimo = callPackage ({ fetchhg, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "nanowrimo";
- version = "20151105.328";
+ version = "20151104.2028";
src = fetchhg {
url = "https://bitbucket.com/gvol/nanowrimo.el";
rev = "25e2ca20ed34";
sha256 = "1nzkamy53kl1g4y1jm7j5zgpkdsyg5ykp8zp1f0bg5mhy8mmf75w";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/nanowrimo";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/5b7972602399f9df9139cff177e38653bb0f43ed/recipes/nanowrimo";
sha256 = "1nhyj38qyn1x6a5rbrwhcxwfwzyqqjm3dvksdnmam6vfwn3s2r31";
name = "nanowrimo";
};
@@ -40345,7 +40903,7 @@
naquadah-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "naquadah-theme";
- version = "20150923.1041";
+ version = "20150923.341";
src = fetchFromGitHub {
owner = "jd";
repo = "naquadah-theme";
@@ -40353,7 +40911,7 @@
sha256 = "0mxf61ky1dd7r2qd4j7k6bdppmkilkq5l9gv257a12539wkw5yq2";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/naquadah-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/671afe0ff3889ae8c4b2d7b8617a3a25c16f3f0f/recipes/naquadah-theme";
sha256 = "1aml1f2lgn530i86218nrc1pk3zw5n3qd2gw4gylwi7g75i0cqn1";
name = "naquadah-theme";
};
@@ -40365,13 +40923,13 @@
}) {};
narrow-indirect = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild {
pname = "narrow-indirect";
- version = "20160101.39";
+ version = "20151231.1739";
src = fetchurl {
url = "https://www.emacswiki.org/emacs/download/narrow-indirect.el";
sha256 = "1lyszm94pd3jxs73v7k0aaazm0sd2rpz2pphcdag7lk7k6vppd9n";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/narrow-indirect";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/38e5dd845c99acaae719562595059154a08a5f00/recipes/narrow-indirect";
sha256 = "10aq4gssayh3adw8yz2lza1xbypyffi8r03lsc0kiis6gd9ibiyj";
name = "narrow-indirect";
};
@@ -40384,7 +40942,7 @@
narrow-reindent = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "narrow-reindent";
- version = "20150722.2106";
+ version = "20150722.1406";
src = fetchFromGitHub {
owner = "emallson";
repo = "narrow-reindent.el";
@@ -40392,7 +40950,7 @@
sha256 = "10yn215xb4s6kshk108y75im1xbdp0vwc9kah5bbaflp9234i0zh";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/narrow-reindent";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/73c7f01a009dc7ac1b9da8ce41859695a97b7878/recipes/narrow-reindent";
sha256 = "0fybal70kk62zlra63x4jb72694m0mzv4cx746prx9anvq1ss2i0";
name = "narrow-reindent";
};
@@ -40405,7 +40963,7 @@
narrowed-page-navigation = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "narrowed-page-navigation";
- version = "20150109.619";
+ version = "20150108.2319";
src = fetchFromGitHub {
owner = "david-christiansen";
repo = "narrowed-page-navigation";
@@ -40413,7 +40971,7 @@
sha256 = "0ydxj6dc10knambma2hpimqrhfz216nbj96w1dcwgjixs4cd4nax";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/narrowed-page-navigation";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/e37e993fec280428f094b6c8ec418fe5ba8c6d49/recipes/narrowed-page-navigation";
sha256 = "1yrmih60dd69qnin505jlmfidm2svzpdrz46286r7nm6pk7s4pb7";
name = "narrowed-page-navigation";
};
@@ -40426,7 +40984,7 @@
nasm-mode = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "nasm-mode";
- version = "20160526.326";
+ version = "20160525.2026";
src = fetchFromGitHub {
owner = "skeeto";
repo = "nasm-mode";
@@ -40434,7 +40992,7 @@
sha256 = "0d8bfz41ry5bvkz2894dqkk3244n7xcjk3pf58fcsagvmmkkln7b";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/nasm-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/a1a832b3bd7c2f2d3cee8bcfb5421d22acf5523e/recipes/nasm-mode";
sha256 = "1626yf9mmqlsw8w01vzqsyb5ipa56259d4kl6w871k7rvhxwff17";
name = "nasm-mode";
};
@@ -40447,7 +41005,7 @@
nav = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "nav";
- version = "20120507.907";
+ version = "20120507.207";
src = fetchFromGitHub {
owner = "ijt";
repo = "emacs-nav";
@@ -40455,7 +41013,7 @@
sha256 = "0kfqpji6z3ra8sc951vmm1bzyhkws7vb5q6djvl45wlf1wrgkc4p";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/nav";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/0fda2b54a0ff0b6fc3bd6d20cfcbbf63cae5380f/recipes/nav";
sha256 = "0ly1fk4ak1p8gkz3qmmxyslcjgicnfm8bpqqgndvwcznp8pvpjml";
name = "nav";
};
@@ -40468,7 +41026,7 @@
nav-flash = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "nav-flash";
- version = "20140508.2241";
+ version = "20140508.1541";
src = fetchFromGitHub {
owner = "rolandwalker";
repo = "nav-flash";
@@ -40476,7 +41034,7 @@
sha256 = "07wjicbvzg7cz983hv0p2qw1qlln07djigkmbqfpwvg3fk50fdyg";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/nav-flash";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/c9db386ab3910940addae6e925b2ac17e64e0f87/recipes/nav-flash";
sha256 = "0936kr0s6zxxmjwaqm7ywdw2im4dxai1xb7j6xa2gp7c70qvvsx3";
name = "nav-flash";
};
@@ -40489,7 +41047,7 @@
navi-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, outorg, outshine }:
melpaBuild {
pname = "navi-mode";
- version = "20160327.1034";
+ version = "20160327.334";
src = fetchFromGitHub {
owner = "tj64";
repo = "navi";
@@ -40497,7 +41055,7 @@
sha256 = "0vmrh8y8q7zch48iz9lk4n0b3s1b8zp3wki3906s709b5ajfvk7h";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/navi-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/4a06141b0ee1e10bc3f16fcca35d971dc7e9d07e/recipes/navi-mode";
sha256 = "0f5db983w9kxq8mcjr22zfrm7cpxydml4viac62lvab2kwbpbrmi";
name = "navi-mode";
};
@@ -40510,7 +41068,7 @@
navi2ch = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "navi2ch";
- version = "20150330.416";
+ version = "20150329.2116";
src = fetchFromGitHub {
owner = "naota";
repo = "navi2ch";
@@ -40518,7 +41076,7 @@
sha256 = "15l2zmm8bp4ip8m1hfxkvswfwa29pg72kisfya2n5v900r184a4m";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/navi2ch";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/36bea1eca58de15d6106cbd293d941d12ee3d21c/recipes/navi2ch";
sha256 = "13xwvyy27dz1abjkkazm3s1p6cw32l2klr1bnln02w0azkbdy7x3";
name = "navi2ch";
};
@@ -40531,7 +41089,7 @@
navorski = callPackage ({ dash, fetchFromGitHub, fetchurl, lib, melpaBuild, multi-term, s }:
melpaBuild {
pname = "navorski";
- version = "20141203.1924";
+ version = "20141203.1224";
src = fetchFromGitHub {
owner = "roman";
repo = "navorski.el";
@@ -40539,7 +41097,7 @@
sha256 = "0g7rmvfm0ldv0d2x7f8k761mgmi47siyspfi1ns40ijhkpc15x8l";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/navorski";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/9246cef94029d2da2211345c076ed55deb91e8fa/recipes/navorski";
sha256 = "0dnzpsm0ya8rbcik5wp378hc9k7gjb3gwmkqqj889c38q5cdwsx7";
name = "navorski";
};
@@ -40552,7 +41110,7 @@
ncl-mode = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "ncl-mode";
- version = "20150525.1829";
+ version = "20150525.1129";
src = fetchFromGitHub {
owner = "yyr";
repo = "ncl-mode";
@@ -40560,7 +41118,7 @@
sha256 = "0gbv5fv401z58ycbqlivqamf5kp3x6krhi36q7q0m4gvy448xz0n";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ncl-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/00cc4705650157621bb0135cc512d57178496100/recipes/ncl-mode";
sha256 = "0hmd606xgapzbc79px9l1q6pphrhdzip495yprvg20xsdpmjlfw9";
name = "ncl-mode";
};
@@ -40573,7 +41131,7 @@
nclip = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "nclip";
- version = "20130617.2215";
+ version = "20130617.1515";
src = fetchFromGitHub {
owner = "maio";
repo = "nclip.el";
@@ -40581,7 +41139,7 @@
sha256 = "178gjv7kq97p9i4naxql7xabvmchw5x8idkpyjqqky3b24v5wkis";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/nclip";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/f03f254afbe561e0a6dd6c287dcc137da05376cd/recipes/nclip";
sha256 = "016jp1rqrf1baxlxbi3476m88a0l3r405dh6pmly519wm2k8pipw";
name = "nclip";
};
@@ -40594,7 +41152,7 @@
nemerle = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "nemerle";
- version = "20130328.1546";
+ version = "20130328.946";
src = fetchFromGitHub {
owner = "rsdn";
repo = "nemerle";
@@ -40602,7 +41160,7 @@
sha256 = "0xij6gqa6xmjz041vmi4k1xfp7bsp51vk4x6mdy4rv7556sznrrb";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/nemerle";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/8477d0cf950efcfd9a85618a5ca48bff590b22d7/recipes/nemerle";
sha256 = "0698hbgk80w7wp0ssx9pl13aapm7rc6l3y2zydfkyqdfwy5y71v6";
name = "nemerle";
};
@@ -40615,15 +41173,15 @@
neotree = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "neotree";
- version = "20160306.1630";
+ version = "20160701.153";
src = fetchFromGitHub {
owner = "jaypei";
repo = "emacs-neotree";
- rev = "543b75943b573d9c8b3a22476bdabb331306fd68";
- sha256 = "1sf8yw1vg01r4969jk1x1k4nad4q7bf1fd8vnranxvhz9md34262";
+ rev = "940681d923b1160714d57b0c3137336b118a7c58";
+ sha256 = "1kbkxkxykmyhmz5xw5w18n5ggdbzvazhzs4qrx126xb0c5mr3fdn";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/neotree";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/9caf2e12762d334563496d2c75fae6c74cfe5c1c/recipes/neotree";
sha256 = "05smm1xsn866lsrak0inn2qw6dvzy24lz6h7rvinlhk5w27xva06";
name = "neotree";
};
@@ -40636,7 +41194,7 @@
netherlands-holidays = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "netherlands-holidays";
- version = "20150202.1717";
+ version = "20150202.1017";
src = fetchFromGitHub {
owner = "abo-abo";
repo = "netherlands-holidays";
@@ -40644,7 +41202,7 @@
sha256 = "1kkflj2qnrn6kzh1l6bjl5n5507qilb22pqj3h0f2m6hfyn0sw5z";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/netherlands-holidays";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/abdbce47cb5c623696b5d6fcb3bef2d995d90195/recipes/netherlands-holidays";
sha256 = "181linsbg5wrx1z7zbj3in2d3d4zd2v7drspkj0b6l0c5yfxwayf";
name = "netherlands-holidays";
};
@@ -40654,10 +41212,31 @@
license = lib.licenses.free;
};
}) {};
+ netrunner = callPackage ({ company, fetchFromGitHub, fetchurl, helm, lib, melpaBuild, popup }:
+ melpaBuild {
+ pname = "netrunner";
+ version = "20160622.842";
+ src = fetchFromGitHub {
+ owner = "Kungsgeten";
+ repo = "netrunner";
+ rev = "202ddb1005ca54da3884f38627c6d1e5ba85d56d";
+ sha256 = "0xj52211ca7fgr6zkwaf3rgn6zl8c3w2j3lfc4fkm2wlkhb9xcks";
+ };
+ recipeFile = fetchurl {
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/a8b1d8c31383b6ec3788ad6c9adf0117190484c9/recipes/netrunner";
+ sha256 = "1lk5acbv1fw7q9jwpk0l5hqb9wnscg2kj3qn6b4pwn9ggf8axkpv";
+ name = "netrunner";
+ };
+ packageRequires = [ company helm popup ];
+ meta = {
+ homepage = "https://melpa.org/#/netrunner";
+ license = lib.licenses.free;
+ };
+ }) {};
never-comment = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "never-comment";
- version = "20140104.2307";
+ version = "20140104.1607";
src = fetchFromGitHub {
owner = "To1ne";
repo = "never-comment";
@@ -40665,7 +41244,7 @@
sha256 = "0p00mmid04pfsna4ify3cy0b9lx431q1r5h772hihsg4f1rs2ppy";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/never-comment";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/ef3f8e712c10d63fea009951d7916fe376267cbe/recipes/never-comment";
sha256 = "0sn8y57895bfpgiynnj4m9b3x3dbb9v5fwkcwmf9jr39dbf98v6s";
name = "never-comment";
};
@@ -40678,7 +41257,7 @@
newlisp-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "newlisp-mode";
- version = "20160226.1645";
+ version = "20160226.945";
src = fetchFromGitHub {
owner = "kosh04";
repo = "newlisp-mode";
@@ -40686,7 +41265,7 @@
sha256 = "1zzsfyqwj1k4zh30gl491ipavr9pp9djwjq3zz2q3xh7jys68w8r";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/newlisp-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/e5c79c56bddfeb498d28f2575184434fbb93465d/recipes/newlisp-mode";
sha256 = "0i2d2gyzzvpr5qm2cqzbn9my21lfb66315hg9fj86ac5pkc25zrd";
name = "newlisp-mode";
};
@@ -40699,7 +41278,7 @@
nexus = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "nexus";
- version = "20140114.1405";
+ version = "20140114.705";
src = fetchFromGitHub {
owner = "juergenhoetzel";
repo = "emacs-nexus";
@@ -40707,7 +41286,7 @@
sha256 = "1xnx6v49i6abzbhq4fl4bp9d0pp9gby40splpcj211xsb8yiry27";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/nexus";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/80d3665e9a31aa3098df456dbeb07043054e42f5/recipes/nexus";
sha256 = "1mdphgsqg6n4hryr53rk42z58vfv0g5wkar5ipanr4h4iclkf5vd";
name = "nexus";
};
@@ -40720,7 +41299,7 @@
nginx-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "nginx-mode";
- version = "20150824.2311";
+ version = "20150824.1611";
src = fetchFromGitHub {
owner = "ajc";
repo = "nginx-mode";
@@ -40728,7 +41307,7 @@
sha256 = "08bpyk0brx0x2l0y8hn8zpkaxb2ndmxz22kzxxypj6hdz303wf38";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/nginx-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/a6da3640b72496e2b32e6ed21aa39df87af9f7f3/recipes/nginx-mode";
sha256 = "07k17m64zhv6gik8v4n73d8l1k6fsp4qp8cl94r384ny0187y65c";
name = "nginx-mode";
};
@@ -40741,7 +41320,7 @@
niceify-info = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "niceify-info";
- version = "20160416.1444";
+ version = "20160416.744";
src = fetchFromGitHub {
owner = "aaron-em";
repo = "niceify-info.el";
@@ -40749,7 +41328,7 @@
sha256 = "0hgrf628ris94pmvmgibkq6zmwrqkv9q70c5a2gsbdpqmfikj8m1";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/niceify-info";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/0b2a923da7363d904eb848eb335736974e05dba1/recipes/niceify-info";
sha256 = "1s9c8yxbab9zl5jx38alwa2hpp4zj5cb9a5gfm3x09jf3iw768bl";
name = "niceify-info";
};
@@ -40759,10 +41338,31 @@
license = lib.licenses.free;
};
}) {};
+ niconama = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, request }:
+ melpaBuild {
+ pname = "niconama";
+ version = "20160703.1002";
+ src = fetchFromGitHub {
+ owner = "NOBUTOKA";
+ repo = "niconama.el";
+ rev = "533559931670d49e930dfe4d19bc7a182dbbd3a8";
+ sha256 = "0iwgfqwywlrgf3151619z7ppf39r5dq2891qhgk0vs76kz6frai2";
+ };
+ recipeFile = fetchurl {
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/ad8e7189e9c4c5d86cef268f45be0dda2d702805/recipes/niconama";
+ sha256 = "1v4cvcxrl254jhfl1q5ld0gn4598fcvv0pfhilh2jy76w5acqx81";
+ name = "niconama";
+ };
+ packageRequires = [ cl-lib emacs request ];
+ meta = {
+ homepage = "https://melpa.org/#/niconama";
+ license = lib.licenses.free;
+ };
+ }) {};
niflheim-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "niflheim-theme";
- version = "20150630.1721";
+ version = "20150630.1021";
src = fetchFromGitHub {
owner = "niflheim-theme";
repo = "emacs";
@@ -40770,7 +41370,7 @@
sha256 = "147vw3qlsply5h8cjmjzqr5dv9jzf9xlmhjnmcpyb1r7krh1l8xm";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/niflheim-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/36d82e64af02289f759239f24dd6d921a6eb3f0f/recipes/niflheim-theme";
sha256 = "1dipxwaar7rghmz7s733v035vrbijcg1dla9f7cld1gkgiq9iq36";
name = "niflheim-theme";
};
@@ -40783,15 +41383,15 @@
nim-mode = callPackage ({ commenter, company, emacs, epc, fetchFromGitHub, fetchurl, flycheck, let-alist, lib, melpaBuild }:
melpaBuild {
pname = "nim-mode";
- version = "20160511.455";
+ version = "20160620.1541";
src = fetchFromGitHub {
owner = "nim-lang";
repo = "nim-mode";
- rev = "45792a352cda9963d457a8e067c53f02ae70ebbe";
- sha256 = "04f5ff7s9ma6wrb5hyjcy7qnr6pmb013kan4f0is31n6nmsidzqn";
+ rev = "9e4ffffce2208165868341347b3118f4117ba63c";
+ sha256 = "06jl8hszkx57h0d9vjx3f69hysh8kc2wjlp7xvfc72384r6riwm9";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/nim-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/dc2ccb5f24b9d55c77eaa7952a9e6a2e0ed7be24/recipes/nim-mode";
sha256 = "1kzn3kkkj7jzs7fqhvib196sl3vp7kbhb4icqzmvvmv366lkaib6";
name = "nim-mode";
};
@@ -40804,15 +41404,15 @@
ninja-mode = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "ninja-mode";
- version = "20141204.659";
+ version = "20141203.2359";
src = fetchFromGitHub {
owner = "martine";
repo = "ninja";
- rev = "8d65002fd5e6f2102447ab15f636cc84db3384ec";
- sha256 = "1b63yqcn4j99r2hv10hk1qj9ls328qdxaxhiq5hvfqswkzig9ys7";
+ rev = "5739c144354c826b57042ad0968680c272a95856";
+ sha256 = "0p6gj5hip5fiv0wbiwdv7cp89x9bcb2xzfrfwm0x8a0mz653bn63";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ninja-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/aed2f32a02cb38c49163d90b1b503362e2e4a480/recipes/ninja-mode";
sha256 = "1m7f25sbkz8k343giczrnw2ah5i3mk4c7csi8kk9x5y16030asik";
name = "ninja-mode";
};
@@ -40825,15 +41425,15 @@
nix-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "nix-mode";
- version = "20160502.1537";
+ version = "20160502.837";
src = fetchFromGitHub {
owner = "NixOS";
repo = "nix";
- rev = "a8dfdc52b83eb12f174366aae173c37da66943b6";
- sha256 = "0m9557dddn81da1l8ymcxls5id6rhbs6mc7xpzsjjk76m2kggl32";
+ rev = "74dd603495273fe8b81d8635676861792cf420e8";
+ sha256 = "12k9wa9d595426h58d2mkczmkv327wymsx9dbfifwbyvllkqiwm6";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/nix-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/f2b542189cfde5b9b1ebee4625684949b6704ded/recipes/nix-mode";
sha256 = "00rqawi8zs2x79c91gmk0anfyqbwalvfwmpak20i11lfzmdsza1s";
name = "nix-mode";
};
@@ -40846,7 +41446,7 @@
nix-sandbox = callPackage ({ dash, fetchFromGitHub, fetchurl, lib, melpaBuild, s }:
melpaBuild {
pname = "nix-sandbox";
- version = "20160223.1453";
+ version = "20160223.753";
src = fetchFromGitHub {
owner = "travisbhartwell";
repo = "nix-emacs";
@@ -40854,7 +41454,7 @@
sha256 = "1r2qbd19kkqf70gq04jfpsrap75qcy359k3ian9rhapi8cj0n23w";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/nix-sandbox";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/66be755a6566e8c0cfb5aafa50de29b434023c7a/recipes/nix-sandbox";
sha256 = "13zr0jbc6if2wvyiplay2gkd5548imfm38x1qy1dw6m2vhbzwp0k";
name = "nix-sandbox";
};
@@ -40867,7 +41467,7 @@
nixos-options = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "nixos-options";
- version = "20160209.1941";
+ version = "20160209.1241";
src = fetchFromGitHub {
owner = "travisbhartwell";
repo = "nix-emacs";
@@ -40875,7 +41475,7 @@
sha256 = "1r2qbd19kkqf70gq04jfpsrap75qcy359k3ian9rhapi8cj0n23w";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/nixos-options";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/6846c7d86e70a9dd8300b89b61435aa7e146be96/recipes/nixos-options";
sha256 = "1m3jipidk10zj68rzjbacgjlal31jf80gqjxlgj4qs8lm671gxmm";
name = "nixos-options";
};
@@ -40888,7 +41488,7 @@
nlinum-relative = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, nlinum }:
melpaBuild {
pname = "nlinum-relative";
- version = "20160526.908";
+ version = "20160526.208";
src = fetchFromGitHub {
owner = "CodeFalling";
repo = "nlinum-relative";
@@ -40896,7 +41496,7 @@
sha256 = "0h00ghr5sipayfxz7ykzy7bg1p1vkbwxl5xch3x0h8j2cp1dqc3d";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/nlinum-relative";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/eb418a464b112f9bb1bbd050e9602b60c0fcce1c/recipes/nlinum-relative";
sha256 = "15ifh5bfsarkifx6m7d5rhx6hqlnm231plkf623885kar7i85ia4";
name = "nlinum-relative";
};
@@ -40909,7 +41509,7 @@
nm = callPackage ({ company, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, notmuch, peg }:
melpaBuild {
pname = "nm";
- version = "20151110.2010";
+ version = "20151110.1310";
src = fetchFromGitHub {
owner = "tjim";
repo = "nevermore";
@@ -40917,7 +41517,7 @@
sha256 = "1skbjmyikzyiic470sngskggs05r35m8vzm69wbmrjapczginnak";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/nm";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/cdad6565e83dd79db538d3b6a45e932864246da2/recipes/nm";
sha256 = "004rjbrkc7jalbd8ih170sy97w2g16k3whqrqwywh09pzrzb05kw";
name = "nm";
};
@@ -40930,7 +41530,7 @@
nnir-est = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "nnir-est";
- version = "20140301.1502";
+ version = "20140301.802";
src = fetchFromGitHub {
owner = "kawabata";
repo = "nnir-est";
@@ -40938,7 +41538,7 @@
sha256 = "0gzxcq0gki89dz9ad26683zhq1nif3wdz185cdplwy68z9szbdx1";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/nnir-est";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/9ad5bcd7e5cc71bb40803b9b39c40310574f3450/recipes/nnir-est";
sha256 = "04ih47pipph8sl84nv6ka4xlpd8vhnpwhs5cchgk5k1zv3l5scxv";
name = "nnir-est";
};
@@ -40948,10 +41548,31 @@
license = lib.licenses.free;
};
}) {};
+ no-littering = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }:
+ melpaBuild {
+ pname = "no-littering";
+ version = "20160620.744";
+ src = fetchFromGitHub {
+ owner = "tarsius";
+ repo = "no-littering";
+ rev = "5ec9bd5e60415c533293c3797e038890c3fa7a22";
+ sha256 = "126fys33xc92x42cacgabcpskl3i32cshwbqlk7vk75p9phxz3gs";
+ };
+ recipeFile = fetchurl {
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/cf5d2152c91b7c5c38181b551db3287981657ce3/recipes/no-littering";
+ sha256 = "129nyml8jx3nwdskcr2favbi3x6f74dblc6yw8vijw32w8z14k2l";
+ name = "no-littering";
+ };
+ packageRequires = [ cl-lib ];
+ meta = {
+ homepage = "https://melpa.org/#/no-littering";
+ license = lib.licenses.free;
+ };
+ }) {};
noccur = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "noccur";
- version = "20150514.2320";
+ version = "20150514.1620";
src = fetchFromGitHub {
owner = "NicolasPetton";
repo = "noccur.el";
@@ -40959,7 +41580,7 @@
sha256 = "0wk86gm0by9c8mfbvydz5va07qd30n6wx067inqfa7wjffaq0xr7";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/noccur";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/41f15b8298390310e95cbe137ea1516c0be10b94/recipes/noccur";
sha256 = "0a8l50v09bgap7rsls808k9wyjpjbcxaffsvz7hh9rw9s7m5fz5g";
name = "noccur";
};
@@ -40972,7 +41593,7 @@
noctilux-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "noctilux-theme";
- version = "20150723.1647";
+ version = "20150723.947";
src = fetchFromGitHub {
owner = "sjrmanning";
repo = "noctilux-theme";
@@ -40980,7 +41601,7 @@
sha256 = "1a1pp3sd5g4wkhywb5jfchcdpjsjb0iyhk2sxvd0gpc4kk4zh6xs";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/noctilux-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/c0a18df34c105da8c5710643cd8027402bb07c95/recipes/noctilux-theme";
sha256 = "15ymyv3rq0n31d8h0ry0l4w4r5a8as0q63ajm9wb6yrxxjl1imfp";
name = "noctilux-theme";
};
@@ -40993,7 +41614,7 @@
node-resolver = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "node-resolver";
- version = "20140930.1923";
+ version = "20140930.1223";
src = fetchFromGitHub {
owner = "meandavejustice";
repo = "node-resolver.el";
@@ -41001,7 +41622,7 @@
sha256 = "1cgmq00ackabwcl4h0n2bb8y08wz0ir5rzca2q3sk4asly6d02m7";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/node-resolver";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/60537705dc922bd50220d378a2992cf36464eb0c/recipes/node-resolver";
sha256 = "1ng4rgm8f745fajqnbjhi2rshvn6icwdpbh5dzpzhim1w9kb3bhh";
name = "node-resolver";
};
@@ -41014,7 +41635,7 @@
nodejs-repl = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "nodejs-repl";
- version = "20151229.1503";
+ version = "20151229.803";
src = fetchFromGitHub {
owner = "abicky";
repo = "nodejs-repl.el";
@@ -41022,7 +41643,7 @@
sha256 = "03vcs458rcn1hgfvmgmijadjvri7zlh2z4lxgaplzfnga13mapym";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/nodejs-repl";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/14f22f97416111fcb02e299ff2b20c44fb75f049/recipes/nodejs-repl";
sha256 = "0rvhhrsw87kfrwdhm8glq6b3nr0v90ivm7fcc0da4yc2jmcyk907";
name = "nodejs-repl";
};
@@ -41035,7 +41656,7 @@
noflet = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "noflet";
- version = "20141102.1554";
+ version = "20141102.854";
src = fetchFromGitHub {
owner = "nicferrier";
repo = "emacs-noflet";
@@ -41043,7 +41664,7 @@
sha256 = "0g70gnmfi8n24jzfci9nrj0n9bn1qig7b8f9f325rin8h7x32ypf";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/noflet";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/df33a7230e0e4a67ce75e5cce6a436e2a0d205e8/recipes/noflet";
sha256 = "0vzamqb52n330mi6rydrd4ls8nbwh5s42fc2gs5y15zakp6mvhr3";
name = "noflet";
};
@@ -41055,14 +41676,14 @@
}) {};
nose = callPackage ({ fetchhg, fetchurl, lib, melpaBuild }: melpaBuild {
pname = "nose";
- version = "20140520.1848";
+ version = "20140520.1148";
src = fetchhg {
url = "https://bitbucket.com/durin42/nosemacs";
rev = "194d7789bf79";
sha256 = "07bhzddaxdjd591xmg59yd657a1is0q515291jd83mjsmgq258bm";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/nose";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/5b7972602399f9df9139cff177e38653bb0f43ed/recipes/nose";
sha256 = "0l77hsmn3qk934ppdav1gy9sq48g0v1dzc5qy0rp9vv4yz2jx2jk";
name = "nose";
};
@@ -41074,14 +41695,14 @@
}) {};
notmuch = callPackage ({ fetchgit, fetchurl, lib, melpaBuild }: melpaBuild {
pname = "notmuch";
- version = "20160519.1253";
+ version = "20160628.220";
src = fetchgit {
url = "git://git.notmuchmail.org/git/notmuch";
- rev = "b9bf3f44eacd42ce53885c79f9dad8d82c76f13d";
- sha256 = "0zqfr98227lxmhgfhcspn27qigbifhf52dl3lxl9gb5id8wmr316";
+ rev = "3a45d29ed4d753bcf72f2fa0bb37fefd4d18f96a";
+ sha256 = "1mzrhwjhprrcsp7yka3z6scmnnkxqwi2i36dgvl5f76fgka9kllx";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/notmuch";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/b19f21ed7485036e799ccd88edbf7896a379d759/recipes/notmuch";
sha256 = "173d1gf5rd4nbjwg91486ibg54n3qlpwgyvkcy4d30jm4vqwqrqv";
name = "notmuch";
};
@@ -41094,7 +41715,7 @@
notmuch-labeler = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, notmuch }:
melpaBuild {
pname = "notmuch-labeler";
- version = "20131230.1819";
+ version = "20131230.1119";
src = fetchFromGitHub {
owner = "DamienCassou";
repo = "notmuch-labeler";
@@ -41102,7 +41723,7 @@
sha256 = "1ss87vlp7625lnn2iah3rc1xfxcbpx4kmiww9n16jx073fs2rj18";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/notmuch-labeler";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/2e9940e66bbf70ec868dbdaaeaa1fbd4f076a2e1/recipes/notmuch-labeler";
sha256 = "1c0cbkk5k8ps01xl63a0xa2adkqaj0znw8qs8ca4ai8v1420bpl0";
name = "notmuch-labeler";
};
@@ -41114,13 +41735,13 @@
}) {};
novice-plus = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild {
pname = "novice-plus";
- version = "20160101.40";
+ version = "20151231.1740";
src = fetchurl {
url = "https://www.emacswiki.org/emacs/download/novice+.el";
sha256 = "0mmdf3z9299hbs3wr8hqgpmg74sb2xm0rxyh38sjcqmk8f310rqh";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/novice+";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/a5d15f875b0080b12ce45cf696c581f6bbf061ba/recipes/novice+";
sha256 = "0r4w4c6y4fny8k0kipzqjsn7idwbi9jq6x9yw51d41ra3pkpvfzf";
name = "novice-plus";
};
@@ -41133,7 +41754,7 @@
noxml-fold = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "noxml-fold";
- version = "20151216.1721";
+ version = "20151216.1021";
src = fetchFromGitHub {
owner = "paddymcall";
repo = "noXML-fold";
@@ -41141,7 +41762,7 @@
sha256 = "0jahr1380919p272srym1pp16ifdz69fn1m45ppglm54q4a741d8";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/noxml-fold";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/13d2af88b292293cb5ab50819c63acfe936630c8/recipes/noxml-fold";
sha256 = "11dninxxwhflf2qrmvwmrryspd9j6m95kdlmyx59ykqvw8j0siqc";
name = "noxml-fold";
};
@@ -41154,7 +41775,7 @@
nrepl-eval-sexp-fu = callPackage ({ fetchFromGitHub, fetchurl, highlight, lib, melpaBuild, smartparens, thingatpt ? null }:
melpaBuild {
pname = "nrepl-eval-sexp-fu";
- version = "20140311.1141";
+ version = "20140311.541";
src = fetchFromGitHub {
owner = "samaaron";
repo = "nrepl-eval-sexp-fu";
@@ -41162,7 +41783,7 @@
sha256 = "1nwj1ax2qmmlab4lik0b7japhqd424d0rb995dfv89p99gp8vmvc";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/nrepl-eval-sexp-fu";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/d1d7144bb40a77c545ae1a3d12549080f30e5327/recipes/nrepl-eval-sexp-fu";
sha256 = "17g4nih9kz2483ylp651lwfxkvmaj7wpinpgnifwbciyrplfvx2j";
name = "nrepl-eval-sexp-fu";
};
@@ -41175,7 +41796,7 @@
nrepl-sync = callPackage ({ cider, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "nrepl-sync";
- version = "20140807.1754";
+ version = "20140807.1054";
src = fetchFromGitHub {
owner = "phillord";
repo = "lein-sync";
@@ -41183,7 +41804,7 @@
sha256 = "1129r3rzmfbl8nxjz71xnlyaszhhldawj467zbl36brdadp014n1";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/nrepl-sync";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/2059ab6f2a3adc5af4f0876546e344e806e22ee5/recipes/nrepl-sync";
sha256 = "01b504b4d8rrhlf3sfq3kk9i222fch6jd5jbm02kqw20fgv6q3jd";
name = "nrepl-sync";
};
@@ -41196,7 +41817,7 @@
nsis-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "nsis-mode";
- version = "20150914.1446";
+ version = "20150914.746";
src = fetchFromGitHub {
owner = "mattfidler";
repo = "nsis-mode";
@@ -41204,7 +41825,7 @@
sha256 = "1w80mbwlvmpd5ff7vy84z61b27klzh9z4wa6m2g7cy674fw4r1xp";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/nsis-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/e9b169a80c7afdeb0c6e17cd289114b5d3d97266/recipes/nsis-mode";
sha256 = "0pc047ryw906sz5mv0awvl67kh20prsgx6fbh0j1qm0cali2792l";
name = "nsis-mode";
};
@@ -41217,7 +41838,7 @@
nu-mode = callPackage ({ fetchFromGitHub, fetchurl, helm, lib, melpaBuild, transpose-frame, undo-tree }:
melpaBuild {
pname = "nu-mode";
- version = "20160520.1514";
+ version = "20160520.814";
src = fetchFromGitHub {
owner = "pyluyten";
repo = "emacs-nu";
@@ -41225,7 +41846,7 @@
sha256 = "17nj8bkqw34hsbb8b51rl6221hlpxw265h2cwxqf64cswm22y313";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/nu-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/230d5f8fdd965a24b8ff3cc94acf378d04815fca/recipes/nu-mode";
sha256 = "0nzv3p62k8yyyww6idlxyi94q4d07nis7ydypar8d01jfqlrybkn";
name = "nu-mode";
};
@@ -41238,7 +41859,7 @@
number = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "number";
- version = "20141127.1904";
+ version = "20141127.1204";
src = fetchFromGitHub {
owner = "chrisdone";
repo = "number";
@@ -41246,7 +41867,7 @@
sha256 = "045m83rdqryjpqh6y9s6x0yf9fw9xrwmxbm4qgg8ka164x9szv0n";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/number";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/49d56b297ab729695249143dd65d3c67543cfcc6/recipes/number";
sha256 = "1nwcdv5ibirxx3sqadh6mnpj40ni3wna7wnjh343mx38dk2dzncf";
name = "number";
};
@@ -41259,7 +41880,7 @@
nummm-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "nummm-mode";
- version = "20131117.1114";
+ version = "20131117.414";
src = fetchFromGitHub {
owner = "agpchil";
repo = "nummm-mode";
@@ -41267,7 +41888,7 @@
sha256 = "1i0yymsx8kin28bkrgwkk9ngsmjh0gh5j4hb0k03bq4fy799f2xx";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/nummm-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/138bdf35caf18dca8e9cc02035a983decb81dfd8/recipes/nummm-mode";
sha256 = "10khhc6q0zjzrhsv4fgfdbs7qcwi1bgkwq4yqzidqcdndsailyh0";
name = "nummm-mode";
};
@@ -41280,7 +41901,7 @@
nvm = callPackage ({ dash, dash-functional, f, fetchFromGitHub, fetchurl, lib, melpaBuild, s }:
melpaBuild {
pname = "nvm";
- version = "20151113.955";
+ version = "20151113.255";
src = fetchFromGitHub {
owner = "rejeep";
repo = "nvm.el";
@@ -41288,7 +41909,7 @@
sha256 = "0prag0ks511ifa5mdpqmizp5n8190dxp4vdr81ld9w9xv7migpd7";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/nvm";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/1943a1986775952bedd78430ee41b67af130c439/recipes/nvm";
sha256 = "03gy7wavc2q02lnr9pmp3l1pn0lzbdq0kwnmg9fvklmq6r6n3x34";
name = "nvm";
};
@@ -41301,7 +41922,7 @@
nyan-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "nyan-mode";
- version = "20160429.2223";
+ version = "20160429.1523";
src = fetchFromGitHub {
owner = "TeMPOraL";
repo = "nyan-mode";
@@ -41309,7 +41930,7 @@
sha256 = "199ii1658k4sp5krha77n9l5jblyvnvvvr28g2nbc74lfybckjwq";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/nyan-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/4d8c3000df5f2ee2493a54dee6f9b65008add753/recipes/nyan-mode";
sha256 = "1z2wnsbjllqa533g1ab5cgbv3d9hjix7fsd7z9c45nqh5cmadmyv";
name = "nyan-mode";
};
@@ -41322,7 +41943,7 @@
nyan-prompt = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "nyan-prompt";
- version = "20140810.708";
+ version = "20140810.8";
src = fetchFromGitHub {
owner = "PuercoPop";
repo = "nyan-prompt";
@@ -41330,7 +41951,7 @@
sha256 = "0bgspjy8h3d7v12sfjnd2ghj4183pdf0z48g5xs129jwd3nycykp";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/nyan-prompt";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/2e3bf5fe2adaf557146df6f4e13aa6ffedb5d1e3/recipes/nyan-prompt";
sha256 = "1s0qyhpfpncsv9qfxy07rbp4gv8pp5xzb48rbd3r14nkjlnylnfb";
name = "nyan-prompt";
};
@@ -41343,7 +41964,7 @@
o-blog = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "o-blog";
- version = "20151203.39";
+ version = "20151202.1739";
src = fetchFromGitHub {
owner = "renard";
repo = "o-blog";
@@ -41351,7 +41972,7 @@
sha256 = "0xs6787a4v7djgd2zz2v1pk14x27mg2ganz30j9f0gdiai7da6ch";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/o-blog";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/d5f24e70260f46445b119817bc1326f29b367c4b/recipes/o-blog";
sha256 = "08grkyvg27wd5232q3y8p0v7higfq7bmsdzmvhja96v6qy2xsbja";
name = "o-blog";
};
@@ -41364,7 +41985,7 @@
oauth = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "oauth";
- version = "20130128.251";
+ version = "20130127.1951";
src = fetchFromGitHub {
owner = "psanford";
repo = "emacs-oauth";
@@ -41372,7 +41993,7 @@
sha256 = "058dyk1c3iw0ip8n8rfpskvqiriqilpclkzc18x73msp5svrh3lj";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/oauth";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/a6554cc9a5f667b62623c753cf84e2c9a1cb1c90/recipes/oauth";
sha256 = "18z3i5brxm60z373cwx2sa3hx7v38a5s62gbs9b0lxb20ah4p9rz";
name = "oauth";
};
@@ -41385,14 +42006,14 @@
ob-axiom = callPackage ({ axiom-environment, emacs, fetchhg, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "ob-axiom";
- version = "20160310.2253";
+ version = "20160310.1553";
src = fetchhg {
url = "https://bitbucket.com/pdo/axiom-environment";
rev = "bc294e47f51c";
sha256 = "0z15n7cpprbhiamq26240g5bqsiw5mgyzdisi7j6hpybyk2zyl9q";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ob-axiom";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/5b7972602399f9df9139cff177e38653bb0f43ed/recipes/ob-axiom";
sha256 = "12cmzhgzk8314y6nvzdjwidalccz6h440lil83c1h4lz4ddlwmf6";
name = "ob-axiom";
};
@@ -41405,7 +42026,7 @@
ob-browser = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, org }:
melpaBuild {
pname = "ob-browser";
- version = "20150101.1610";
+ version = "20150101.910";
src = fetchFromGitHub {
owner = "krisajenkins";
repo = "ob-browser";
@@ -41413,7 +42034,7 @@
sha256 = "1nzli8wk3nd05j2z2fw511857qbawirhg8mfw21wqclkz8zqn813";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ob-browser";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/c51529213c15d42a7a7b76771f07dd73c036a51f/recipes/ob-browser";
sha256 = "1yqbzmmazamgf8fi8ipq14ffm8h1pp5d2lkflbxjsagdq61hirxm";
name = "ob-browser";
};
@@ -41426,7 +42047,7 @@
ob-coffee = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, org }:
melpaBuild {
pname = "ob-coffee";
- version = "20160416.536";
+ version = "20160415.2236";
src = fetchFromGitHub {
owner = "zweifisch";
repo = "ob-coffee";
@@ -41434,7 +42055,7 @@
sha256 = "01l8zvnfpc1vihnpqj75xlvjkk2hkvxpb1872jdzv2k1na2ajfxm";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ob-coffee";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/e23d7f1d021b07053acb57e2668ece0eaed0f817/recipes/ob-coffee";
sha256 = "16k8r9rqz4mayxl85pjdfsrz43k2hwcf8k7aff8wnic0ldzp6ivf";
name = "ob-coffee";
};
@@ -41447,7 +42068,7 @@
ob-cypher = callPackage ({ cypher-mode, dash, dash-functional, fetchFromGitHub, fetchurl, lib, melpaBuild, s }:
melpaBuild {
pname = "ob-cypher";
- version = "20150225.337";
+ version = "20150224.2037";
src = fetchFromGitHub {
owner = "zweifisch";
repo = "ob-cypher";
@@ -41455,7 +42076,7 @@
sha256 = "1xbczyqfqdig5w6jvx2kg57mk16sbiz5ysv445v83wqk0sz6nc9n";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ob-cypher";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/dc05c833f64e7974cf5a2ad60a053a04267251cb/recipes/ob-cypher";
sha256 = "1ygmx0rjvxjl8hifkkwrkk9gpsmdsk6ndb6pg7y78p8hfp5jpyq3";
name = "ob-cypher";
};
@@ -41468,7 +42089,7 @@
ob-diagrams = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "ob-diagrams";
- version = "20160407.1437";
+ version = "20160407.737";
src = fetchFromGitHub {
owner = "bergey";
repo = "org-babel-diagrams";
@@ -41476,7 +42097,7 @@
sha256 = "0kx95lvkvg6h6lhs9knlp8rwi05y8y0i8w8vs7mwm378syls0qk0";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ob-diagrams";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/fbb31def39fef108ecf7be105a901abfa6845f76/recipes/ob-diagrams";
sha256 = "1r1p9l61az1jb5m4k2dwnkp9j8xlcb588gq4mcg796vnbdscfcy2";
name = "ob-diagrams";
};
@@ -41489,7 +42110,7 @@
ob-elixir = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, org }:
melpaBuild {
pname = "ob-elixir";
- version = "20151021.1347";
+ version = "20151021.647";
src = fetchFromGitHub {
owner = "zweifisch";
repo = "ob-elixir";
@@ -41497,7 +42118,7 @@
sha256 = "0qknm1h2ijnzs1km51hqwpnv5083m9ngi3nbxd90r7d6vva5fhhk";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ob-elixir";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/287e4758f6f1df0152d68577abd91478c4a3f4ab/recipes/ob-elixir";
sha256 = "1l5b9hww2vmqnjlsd6lbjpz9walck82ngang1amfnk4xn6d0gdhi";
name = "ob-elixir";
};
@@ -41510,7 +42131,7 @@
ob-go = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "ob-go";
- version = "20160318.2052";
+ version = "20160318.1452";
src = fetchFromGitHub {
owner = "pope";
repo = "ob-go";
@@ -41518,7 +42139,7 @@
sha256 = "1pa7zclci87rd4fx731z37pdbdjabmknbr0xmdk1g92g0hjhk2rb";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ob-go";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/3afb687d6d3d1e52336ca9a7343278a9f37c3d54/recipes/ob-go";
sha256 = "09d8jrzijf8gr08615rdmf366zgip43dxvyihy0yzhk7j0p3iahj";
name = "ob-go";
};
@@ -41531,7 +42152,7 @@
ob-http = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild, s }:
melpaBuild {
pname = "ob-http";
- version = "20160416.632";
+ version = "20160415.2332";
src = fetchFromGitHub {
owner = "zweifisch";
repo = "ob-http";
@@ -41539,7 +42160,7 @@
sha256 = "00mnpnlsd774z87ziqmaq9h4rbxmf197cm2kk4v6s15rs3np617m";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ob-http";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/950b02f76a04f453992b8720032e8c4cec9a039a/recipes/ob-http";
sha256 = "0b7ghz9pqbyn3b52cpmnwa2wnd4svj23p6gc48ybwzwiid42wiss";
name = "ob-http";
};
@@ -41552,15 +42173,15 @@
ob-ipython = callPackage ({ dash, dash-functional, emacs, f, fetchFromGitHub, fetchurl, lib, melpaBuild, s }:
melpaBuild {
pname = "ob-ipython";
- version = "20160424.2205";
+ version = "20160703.839";
src = fetchFromGitHub {
owner = "gregsexton";
repo = "ob-ipython";
- rev = "a12ad0c137c3b935080d1cecb4953252cbcb8da4";
- sha256 = "071ma803l6ixg12brbc8p2bxnvl2skmr8r913pz07qh0n8k83zqf";
+ rev = "950dbde87947f9e8f53f521d4bcf239f3be8ef71";
+ sha256 = "0my3wwdx9rn1772mrdbbfmz6vlp580n6m6k9j1j9vmpybfkzhfjw";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ob-ipython";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/557c36e86844c211f2d2ee097ce51ee9db92ea8b/recipes/ob-ipython";
sha256 = "06llf365k8m81ljmlajqvxlh84qg6h0flp3m6gb0zx71xilvw186";
name = "ob-ipython";
};
@@ -41573,7 +42194,7 @@
ob-kotlin = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, org }:
melpaBuild {
pname = "ob-kotlin";
- version = "20150312.1414";
+ version = "20150312.814";
src = fetchFromGitHub {
owner = "zweifisch";
repo = "ob-kotlin";
@@ -41581,7 +42202,7 @@
sha256 = "01cjwg27m0iqndkwwl0v5w8vvk270xvi81za3y5hyrmb7dq6bfy7";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ob-kotlin";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/7aa74d349eb55aafddfc4327b6160ae2da80d689/recipes/ob-kotlin";
sha256 = "19g4s9dnipg9aa360mp0affmnslm6h7byg595rnaz6rz25a3qdpx";
name = "ob-kotlin";
};
@@ -41594,7 +42215,7 @@
ob-lfe = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, org }:
melpaBuild {
pname = "ob-lfe";
- version = "20150701.1555";
+ version = "20150701.855";
src = fetchFromGitHub {
owner = "zweifisch";
repo = "ob-lfe";
@@ -41602,7 +42223,7 @@
sha256 = "1mk7qcf4svf4yk4mimcyhbw5imq3zps2vh2zzq9gwjcn17jnplhn";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ob-lfe";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/d595d3b93e6b25ece1cdffc9d1502e8a868eb538/recipes/ob-lfe";
sha256 = "11cpaxk9wb27b9zhyns75dqpds4gh3cbjcvia4p2bnvmbm8lz4y8";
name = "ob-lfe";
};
@@ -41615,7 +42236,7 @@
ob-lua = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, org }:
melpaBuild {
pname = "ob-lua";
- version = "20160412.524";
+ version = "20160411.2224";
src = fetchFromGitHub {
owner = "stardiviner";
repo = "ob-lua";
@@ -41623,7 +42244,7 @@
sha256 = "11cdf5nfmn5cc1i4kqxq0hks8d19sf5rwavpfmz39xysbnr65s68";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ob-lua";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/f08723efb7502474d77e0212c7bdc7c9b4dac624/recipes/ob-lua";
sha256 = "13ailb285bs9sm9qmjrpq0wjk7sp3w019p94pzrwmzqf52y1dapg";
name = "ob-lua";
};
@@ -41636,7 +42257,7 @@
ob-ml-marklogic = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "ob-ml-marklogic";
- version = "20160508.1832";
+ version = "20160508.1132";
src = fetchFromGitHub {
owner = "ndw";
repo = "ob-ml-marklogic";
@@ -41644,7 +42265,7 @@
sha256 = "15mzra45jcihgvddv69yxpml34hy15yz2hxcxz6a4la8vk6mw3ky";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ob-ml-marklogic";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/edce412552d4798450493e0a3dbe768f38f77cc7/recipes/ob-ml-marklogic";
sha256 = "1y5cgba7gzlmhdrs0k7clgrxixdl4najj5271x1m023jch7bz7xl";
name = "ob-ml-marklogic";
};
@@ -41657,7 +42278,7 @@
ob-mongo = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, org }:
melpaBuild {
pname = "ob-mongo";
- version = "20130718.1632";
+ version = "20130718.932";
src = fetchFromGitHub {
owner = "krisajenkins";
repo = "ob-mongo";
@@ -41665,7 +42286,7 @@
sha256 = "0qibnn908a59jyfslsnpjanbm85f8xw9zywsqsh37nv27ncbx0hr";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ob-mongo";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/e020ea3ef89a3787d498c2f698c82c5073c9ee32/recipes/ob-mongo";
sha256 = "1cgmqsl5dzi8xy3sh5xsfkczl555fpd4q6kgsh9xkn74sz227907";
name = "ob-mongo";
};
@@ -41678,7 +42299,7 @@
ob-php = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, org }:
melpaBuild {
pname = "ob-php";
- version = "20160505.1119";
+ version = "20160505.419";
src = fetchFromGitHub {
owner = "stardiviner";
repo = "ob-php";
@@ -41686,7 +42307,7 @@
sha256 = "02vmy3nnk4yyjbp3r7zzv9sb3frv7kbj4a2a855iqa0isp8nhyfi";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ob-php";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/940a22790c9e5fd2f7729c71efad907683cc392c/recipes/ob-php";
sha256 = "0n6m6rpd0rsk6idhxs9qf5pb6p9ch2immczj5br7h5xf1bc7x2fp";
name = "ob-php";
};
@@ -41699,7 +42320,7 @@
ob-prolog = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "ob-prolog";
- version = "20150530.1837";
+ version = "20150530.1137";
src = fetchFromGitHub {
owner = "ljos";
repo = "ob-prolog";
@@ -41707,7 +42328,7 @@
sha256 = "14scbds1rlmii52i0zr3s0r1wmga7qysj63c2dpinhagxa36d51n";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ob-prolog";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/fb87868cd74325f0a4a38c5542c264501000951d/recipes/ob-prolog";
sha256 = "0ki8yd20yk5xwn0zpk06zjxzgrsf8paydif9n98svb9s2l9wrh1s";
name = "ob-prolog";
};
@@ -41720,7 +42341,7 @@
ob-redis = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, org }:
melpaBuild {
pname = "ob-redis";
- version = "20160412.513";
+ version = "20160411.2213";
src = fetchFromGitHub {
owner = "stardiviner";
repo = "ob-redis";
@@ -41728,7 +42349,7 @@
sha256 = "1f8qz5bwz5yd3clvjc0zw3yf9m9fh5vn2gil69ay1a2n00qwkq78";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ob-redis";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/26477b37952bc050d8904929b3a5b027a59842e6/recipes/ob-redis";
sha256 = "1xsz4cc8cqx03ckpcwi7dc3l6v4c5mdbby37a9i0n5q6wd4r92mm";
name = "ob-redis";
};
@@ -41741,7 +42362,7 @@
ob-restclient = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, restclient }:
melpaBuild {
pname = "ob-restclient";
- version = "20160324.705";
+ version = "20160324.105";
src = fetchFromGitHub {
owner = "alf";
repo = "ob-restclient.el";
@@ -41749,7 +42370,7 @@
sha256 = "09zxf158sspwv7j0kjjxzlymxi9ax7xpk5d5fry2jljskgn17csv";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ob-restclient";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/28c1d3af3f8b2f598b80b03b64de5d15cbb3f13d/recipes/ob-restclient";
sha256 = "0nv2wsqmpschym6ch8fr4a79hlnpz31jc8y2flsygaqj0annjkfk";
name = "ob-restclient";
};
@@ -41762,7 +42383,7 @@
ob-sagemath = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, s, sage-shell-mode }:
melpaBuild {
pname = "ob-sagemath";
- version = "20160518.228";
+ version = "20160517.1928";
src = fetchFromGitHub {
owner = "stakemori";
repo = "ob-sagemath";
@@ -41770,7 +42391,7 @@
sha256 = "08p64ss3ia1gq6dsna5v3ajjwm5g9ma7yvd5y0jx91xssjqq5dja";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ob-sagemath";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/dc074af316a09906a26ad957a56e3dc272cd813b/recipes/ob-sagemath";
sha256 = "02ispac1y4g7p7iyscf5p8lvp92ncrn6281jm9igyiny1w6hivy7";
name = "ob-sagemath";
};
@@ -41783,7 +42404,7 @@
ob-sml = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, sml-mode }:
melpaBuild {
pname = "ob-sml";
- version = "20130829.2043";
+ version = "20130829.1343";
src = fetchFromGitHub {
owner = "swannodette";
repo = "ob-sml";
@@ -41791,7 +42412,7 @@
sha256 = "0gymna48igcixrapjmg842pnlsshhw8zplxwyyn0x2yrma9fjyyg";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ob-sml";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/d1b0fbe1198fa624771c2f61249db502de57942a/recipes/ob-sml";
sha256 = "04qvzhwjr8ipvq3znnhn0wbl4pbb1rwxi90iidavzk3phbkpaskn";
name = "ob-sml";
};
@@ -41804,7 +42425,7 @@
ob-swift = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, org }:
melpaBuild {
pname = "ob-swift";
- version = "20151205.811";
+ version = "20151205.111";
src = fetchFromGitHub {
owner = "zweifisch";
repo = "ob-swift";
@@ -41812,7 +42433,7 @@
sha256 = "071rl0bvhwh5vqbl7n84shvzgqgwg2f5l9vb8wfs4y24hsqfgxmz";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ob-swift";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/b401383966398d3223032c59baa920ce594e5fef/recipes/ob-swift";
sha256 = "19mcjfmijbajldm3jz8ij1x2p7d164mbq2ln6yb6iihxmdqnn2q4";
name = "ob-swift";
};
@@ -41825,7 +42446,7 @@
ob-translate = callPackage ({ fetchFromGitHub, fetchurl, google-translate, lib, melpaBuild, org }:
melpaBuild {
pname = "ob-translate";
- version = "20160411.1024";
+ version = "20160411.324";
src = fetchFromGitHub {
owner = "krisajenkins";
repo = "ob-translate";
@@ -41833,7 +42454,7 @@
sha256 = "086z3smcfn5g599967vmxj3akppyqk9d64acm8zzj76zj29xfk1k";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ob-translate";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/4d89e4006afc51bd44e23f87a1d1ef1140489ab3/recipes/ob-translate";
sha256 = "1hi0rxbyxvk9sbk2fy3kqw7l4lgri921vya1mn4i1q2i1979r2gz";
name = "ob-translate";
};
@@ -41846,7 +42467,7 @@
ob-typescript = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, org }:
melpaBuild {
pname = "ob-typescript";
- version = "20150804.1430";
+ version = "20150804.730";
src = fetchFromGitHub {
owner = "lurdan";
repo = "ob-typescript";
@@ -41854,7 +42475,7 @@
sha256 = "1ycqdjqn5361pcnc95hxhjqd3y96cjjnaylrnzwhmacl38jm3vai";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ob-typescript";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/11733cd33add89b541dcc1f90a732833861b10d9/recipes/ob-typescript";
sha256 = "1wpy928ndvc076jzi14f6k5fsw8had0pz7f1yjdqql4icszhqa0p";
name = "ob-typescript";
};
@@ -41867,7 +42488,7 @@
oberon = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "oberon";
- version = "20120715.1109";
+ version = "20120715.409";
src = fetchFromGitHub {
owner = "emacsorphanage";
repo = "oberon";
@@ -41875,7 +42496,7 @@
sha256 = "16462cgq91jg7i97h440zss5vw2qkxgdy7gm148ns4djr2fchnf6";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/oberon";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/5f2a50f62475639af011c99c6cc38928b74b3b0a/recipes/oberon";
sha256 = "1wna7ld670r6ljdg5yx0ga0grbq1ma8q92gkari0d5czr7s9lggv";
name = "oberon";
};
@@ -41888,7 +42509,7 @@
objc-font-lock = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "objc-font-lock";
- version = "20141021.2022";
+ version = "20141021.1322";
src = fetchFromGitHub {
owner = "Lindydancer";
repo = "objc-font-lock";
@@ -41896,7 +42517,7 @@
sha256 = "138c1nm579vr37dqprqsakfkhs2awm3klzyyd6bv9rhkrysrpbqk";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/objc-font-lock";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/f6f93d328e137d2ca069328932b60c3bf60b0a4e/recipes/objc-font-lock";
sha256 = "0njslpgdcph3p3gamrbd6pc04szks07yv4ij3p1l7p5dc2p06rs6";
name = "objc-font-lock";
};
@@ -41909,7 +42530,7 @@
obsidian-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "obsidian-theme";
- version = "20140420.1843";
+ version = "20140420.1143";
src = fetchFromGitHub {
owner = "mswift42";
repo = "obsidian-theme";
@@ -41917,7 +42538,7 @@
sha256 = "00v21iw9wwxap8jhg9035cp47fm5v2djmldq6nprv860m01xlwh1";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/obsidian-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/e90227252eb69d3eac81f5a6bd5e3a582d33f335/recipes/obsidian-theme";
sha256 = "17ckshimdma6fqiis4kxczxkbrsfpm2a0b41m5f3qz3qlhcw2xgr";
name = "obsidian-theme";
};
@@ -41930,7 +42551,7 @@
occidental-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "occidental-theme";
- version = "20130312.2058";
+ version = "20130312.1458";
src = fetchFromGitHub {
owner = "olcai";
repo = "occidental-theme";
@@ -41938,7 +42559,7 @@
sha256 = "0pnliw02crqw8hbg088klz54z6s1ih8q2lcn9mq5f12xi752hxm8";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/occidental-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/736fd0b7865cc800800fa6467019a365ddf1c412/recipes/occidental-theme";
sha256 = "1ra5p8k96wvb04v69xm87jl4jlgi57v4jw2xxzkwbwxbydncnv0b";
name = "occidental-theme";
};
@@ -41951,7 +42572,7 @@
occur-context-resize = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "occur-context-resize";
- version = "20151228.502";
+ version = "20151227.2202";
src = fetchFromGitHub {
owner = "dgtized";
repo = "occur-context-resize.el";
@@ -41959,7 +42580,7 @@
sha256 = "1v1c2481v2xgnw8kgbbqhqkdd41lzvki9hm3iypbf3n0jxz8nnzy";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/occur-context-resize";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/a2425d82b365784b17ab56af5f77c6095664c784/recipes/occur-context-resize";
sha256 = "0sp5v4rwqgqdj26gdkrmjvkmbp4g6jq4lrn2c3zm8s2gq0s3l6ri";
name = "occur-context-resize";
};
@@ -41972,7 +42593,7 @@
occur-x = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "occur-x";
- version = "20130610.1543";
+ version = "20130610.843";
src = fetchFromGitHub {
owner = "juan-leon";
repo = "occur-x";
@@ -41980,7 +42601,7 @@
sha256 = "1zj0xhvl5qx42injv0av4lyzd3jsjls1m368dqd2qnswhfw8wfn6";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/occur-x";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/b8126d5c1f69a2fb0ee6784c6d417ab9ee145af2/recipes/occur-x";
sha256 = "1xq1k9rq7k1zw90shbgiidwvcn0ys1d53q03b5mpvvfqhj4n0i1g";
name = "occur-x";
};
@@ -41993,7 +42614,7 @@
ocodo-svg-modelines = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, svg-mode-line-themes }:
melpaBuild {
pname = "ocodo-svg-modelines";
- version = "20150516.1619";
+ version = "20150516.919";
src = fetchFromGitHub {
owner = "ocodo";
repo = "ocodo-svg-modelines";
@@ -42001,7 +42622,7 @@
sha256 = "155gmls6cz3zf4lcj89kzb96y7k0glx0f659jg5z0skgxq79hf48";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ocodo-svg-modelines";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/5b9651865f4f8009c9b31fa1e5561de97a5ad8de/recipes/ocodo-svg-modelines";
sha256 = "0fa88ns70wsr9i9gf4zx3fvmn1a32mrjsda105n0cx6c965kfmay";
name = "ocodo-svg-modelines";
};
@@ -42014,15 +42635,15 @@
ocp-indent = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "ocp-indent";
- version = "20160429.834";
+ version = "20160429.134";
src = fetchFromGitHub {
owner = "OCamlPro";
repo = "ocp-indent";
- rev = "1c63a0780cf463c17206ca6338e1638abd27284f";
- sha256 = "0mp53z2myf0hij3sk3ickbmc9n4n99xv4ilaz7ng4y7vmlczlyqq";
+ rev = "c0d5d453e192a5301e20042c6984823ec46b64d3";
+ sha256 = "1wv24c6lybjkx63gl6lm2gvc2faw6nibdhi5w9yqgkaq6x6d7jvh";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ocp-indent";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/e1af061328b15360ed25a232cc6b8fbce4a7b098/recipes/ocp-indent";
sha256 = "0wc4z9dsnnyr24n3vg1npvc3rm53av8bpbvrl8kldxxdiwgnbkjw";
name = "ocp-indent";
};
@@ -42035,7 +42656,7 @@
octicons = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "octicons";
- version = "20151101.440";
+ version = "20151031.2240";
src = fetchFromGitHub {
owner = "syohex";
repo = "emacs-octicons";
@@ -42043,7 +42664,7 @@
sha256 = "0dp7dhmgrq078rjhpm1cr993qjqz7qgy2z4sn73qw6j55va7d9kw";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/octicons";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/c62867eae1a254eb5fe820d4387dd4e8a0ff9be2/recipes/octicons";
sha256 = "02f37bvnc5qvkvfbyx5wp54nz71bqm747mq1p5361sx091lllkxk";
name = "octicons";
};
@@ -42056,7 +42677,7 @@
octopress = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "octopress";
- version = "20160123.2306";
+ version = "20160123.1606";
src = fetchFromGitHub {
owner = "aaronbieber";
repo = "octopress.el";
@@ -42064,7 +42685,7 @@
sha256 = "0p9ph62vnw1r9dbvrjyw356a9bjnzh0hglssi97dr0qd6cs8whf3";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/octopress";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/7205d3d43797755077f19f57f531b4b39e77bae3/recipes/octopress";
sha256 = "0zsir6chjvn5i1irmf5aj6mmb401c553r5wykq796sz7jnjhrjg0";
name = "octopress";
};
@@ -42077,7 +42698,7 @@
offlineimap = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "offlineimap";
- version = "20150916.1358";
+ version = "20150916.658";
src = fetchFromGitHub {
owner = "jd";
repo = "offlineimap.el";
@@ -42085,7 +42706,7 @@
sha256 = "1bjrgj8klg7ly63vx90jpaih9virn02bhqi16p6z0mw36q1q7ysq";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/offlineimap";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/671afe0ff3889ae8c4b2d7b8617a3a25c16f3f0f/recipes/offlineimap";
sha256 = "0nza7lrz7cn06njcblwh9hy3050j8ja4awbxx7jzv6nazjg7201b";
name = "offlineimap";
};
@@ -42098,7 +42719,7 @@
oldlace-theme = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "oldlace-theme";
- version = "20150705.1500";
+ version = "20150705.800";
src = fetchFromGitHub {
owner = "mswift42";
repo = "oldlace-theme";
@@ -42106,7 +42727,7 @@
sha256 = "0y9fxrsxp1158fyjp4f69r7g2s7b6nbxlsmsb8clwqc8pmmg2z82";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/oldlace-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/b6b11187b012744771380dfabab607cf7e073c45/recipes/oldlace-theme";
sha256 = "1pxiqqh5x4wsayqgwplzvsbalbj44zvby7x0pijdvwcnsh74znj8";
name = "oldlace-theme";
};
@@ -42119,15 +42740,15 @@
olivetti = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "olivetti";
- version = "20160413.622";
+ version = "20160703.902";
src = fetchFromGitHub {
owner = "rnkn";
repo = "olivetti";
- rev = "35654fe8959cf53f0beac69d8921b2d4f9a881d6";
- sha256 = "0mlklcgakcb2nafs25hpy31jwjd9rrrxc494b5kfcw3g5b3z8q40";
+ rev = "b4094d34cc78c461eccb68eff6c80bd7553f16a0";
+ sha256 = "1viygvkknkxniyfilafqpwbz9c71rrdbc2ad4h6dp0lwaxjpzhfy";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/olivetti";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/697334ca3cdb9630572ae267811bd5c2a67d2a95/recipes/olivetti";
sha256 = "0fkvw2y8r4ww2ar9505xls44j0rcrxc884p5srf1q47011v69mhd";
name = "olivetti";
};
@@ -42140,7 +42761,7 @@
om-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "om-mode";
- version = "20140915.2310";
+ version = "20140915.1610";
src = fetchFromGitHub {
owner = "danielsz";
repo = "om-mode";
@@ -42148,7 +42769,7 @@
sha256 = "03szb2i2xk3nq578cz1drsddsbld03ryvykdfzmfvwcmlpaknvzb";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/om-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/265c2a9c1880ade0248908ab696d737007e9bfd0/recipes/om-mode";
sha256 = "1q2h9wjnyg7wlk913px4vj1cxqynd6xfh9ind7kjyra436yw3l4j";
name = "om-mode";
};
@@ -42161,7 +42782,7 @@
omni-kill = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "omni-kill";
- version = "20150527.849";
+ version = "20150527.149";
src = fetchFromGitHub {
owner = "AdrieanKhisbe";
repo = "omni-kill.el";
@@ -42169,7 +42790,7 @@
sha256 = "1925mh47n4x9v780qp5l6cksl64v9mpyb87znsg93x6sxr0cvv4c";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/omni-kill";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/c24df34d2fa5d908223379e909148423ba327ae2/recipes/omni-kill";
sha256 = "03kydl16rd9mnc1rnan2byqa6f70891fhcj16wkavl2r68rfj75k";
name = "omni-kill";
};
@@ -42182,7 +42803,7 @@
omni-log = callPackage ({ dash, emacs, fetchFromGitHub, fetchurl, ht, lib, melpaBuild, s }:
melpaBuild {
pname = "omni-log";
- version = "20150604.1938";
+ version = "20150604.1238";
src = fetchFromGitHub {
owner = "AdrieanKhisbe";
repo = "omni-log.el";
@@ -42190,7 +42811,7 @@
sha256 = "1nvgh9wvgswcs3r958b579rsx540xrhlnafc6cmcd63z6yck19w0";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/omni-log";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/47bb19bb7b4713c3fd82c1035a2fe66588c069e3/recipes/omni-log";
sha256 = "0c29243zq8r89ax4rxlmb8imag12icnldcb0q0xsnhjccw8lyw1r";
name = "omni-log";
};
@@ -42203,7 +42824,7 @@
omni-quotes = callPackage ({ dash, fetchFromGitHub, fetchurl, lib, melpaBuild, omni-log }:
melpaBuild {
pname = "omni-quotes";
- version = "20150604.1957";
+ version = "20150604.1257";
src = fetchFromGitHub {
owner = "AdrieanKhisbe";
repo = "omni-quotes.el";
@@ -42211,7 +42832,7 @@
sha256 = "1x8af8jv4n83sl4rgj0d2rpmw9g78rknm1h523f3b1a5x4kdvsz6";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/omni-quotes";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/3402524f79381c99fdeb81a6a5a9241c918811be/recipes/omni-quotes";
sha256 = "0dqki0ibabs9cpcjvnh8lc2114x46i1xmnyjc6qqblfxa3ggdygs";
name = "omni-quotes";
};
@@ -42224,7 +42845,7 @@
omni-scratch = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "omni-scratch";
- version = "20151211.1759";
+ version = "20151211.1059";
src = fetchFromGitHub {
owner = "AdrieanKhisbe";
repo = "omni-scratch.el";
@@ -42232,7 +42853,7 @@
sha256 = "1icdk19vwihc8mn04yxl2brql2gssn3gxd5bv7ljdd6mn5hkw500";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/omni-scratch";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/6ba3e128a7fe4476d82266506b18ba9984c37944/recipes/omni-scratch";
sha256 = "190dkqcw8xywzrq8a99w4rqi0y1h2aj23s84g2ln1sf7jaf6d6n9";
name = "omni-scratch";
};
@@ -42245,7 +42866,7 @@
omni-tags = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild, pcre2el }:
melpaBuild {
pname = "omni-tags";
- version = "20150513.1953";
+ version = "20150513.1253";
src = fetchFromGitHub {
owner = "AdrieanKhisbe";
repo = "omni-tags.el";
@@ -42253,7 +42874,7 @@
sha256 = "1lvnkdrav7h15p8d5ayhfsjynllwp4br1vqxmw0ppxnlyq7337n5";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/omni-tags";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/c77e57f41484c08cae9f47c4379d1752ccf43ce2/recipes/omni-tags";
sha256 = "133ww1jf14jbw02ssbx2a46mp52j18a2wwzb6x77azb0akmf1lzl";
name = "omni-tags";
};
@@ -42266,7 +42887,7 @@
omniref = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "omniref";
- version = "20160225.2324";
+ version = "20160225.1624";
src = fetchFromGitHub {
owner = "dotemacs";
repo = "omniref.el";
@@ -42274,7 +42895,7 @@
sha256 = "0d6kjggi2p937ydpvw3fr2cxy5vj46dmfqbkb7a9jdhnzxadnwh5";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/omniref";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/163d77d2b0d7759f3747239089d8761a7db13a9e/recipes/omniref";
sha256 = "0lgw1knqppdg046zqx4m7nbzvsasr89wa9i4594hf46w1094dabj";
name = "omniref";
};
@@ -42287,7 +42908,7 @@
omnisharp = callPackage ({ auto-complete, cl-lib ? null, csharp-mode, dash, fetchFromGitHub, fetchurl, flycheck, json ? null, lib, melpaBuild, popup, s }:
melpaBuild {
pname = "omnisharp";
- version = "20151210.2014";
+ version = "20151210.1314";
src = fetchFromGitHub {
owner = "OmniSharp";
repo = "omnisharp-emacs";
@@ -42295,7 +42916,7 @@
sha256 = "1iq8yzjv7wb0jfi3lqqyx4n7whvb7xf8ls0q0w7pgsrsslrxbwcm";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/omnisharp";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/68bdb7e0100e120b95e9416398127d83530a221d/recipes/omnisharp";
sha256 = "0dwya22y92k7x2s223az1g8hmrpfmk1sgwbr9z47raaa8kd52iad";
name = "omnisharp";
};
@@ -42317,7 +42938,7 @@
omtose-phellack-theme = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "omtose-phellack-theme";
- version = "20160412.1328";
+ version = "20160412.628";
src = fetchFromGitHub {
owner = "franksn";
repo = "omtose-phellack-theme";
@@ -42325,7 +42946,7 @@
sha256 = "01cssk6dxinfy1h431cx1yq5nbk0pc5j0h3iir2anzz1kfzbzilz";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/omtose-phellack-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/9353129eb2df7d1153739cdf44bdf1fc1412ef78/recipes/omtose-phellack-theme";
sha256 = "09nyc7sdhzy4vmngzdj6r7cv2nbbwqlcyyi2mcg5a8lml4f6fj5i";
name = "omtose-phellack-theme";
};
@@ -42338,7 +42959,7 @@
on-parens = callPackage ({ dash, emacs, evil, fetchFromGitHub, fetchurl, lib, melpaBuild, smartparens }:
melpaBuild {
pname = "on-parens";
- version = "20150703.6";
+ version = "20150702.1706";
src = fetchFromGitHub {
owner = "willghatch";
repo = "emacs-on-parens";
@@ -42346,7 +42967,7 @@
sha256 = "1616bdvrf1bawcqgj7balbxaw26waw81gxiw7yspnvpyb009j66y";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/on-parens";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/2ea1eb5eb5a40e95ba06b0a4ac89ad8843c9cc2c/recipes/on-parens";
sha256 = "19kyzpkgfl0ipbcgnl8fbfbapnfdxr8w9i7prfkm6rjp6amxyqab";
name = "on-parens";
};
@@ -42359,7 +42980,7 @@
on-screen = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "on-screen";
- version = "20160302.1050";
+ version = "20160302.350";
src = fetchFromGitHub {
owner = "michael-heerdegen";
repo = "on-screen.el";
@@ -42367,7 +42988,7 @@
sha256 = "1rrby3mbh24qd43nsb3ymcrjxh1cz6iasf1gv0a8fmivmb4f7dyz";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/on-screen";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/628f43fdfdb41174800fb8171e71134c27730f6f/recipes/on-screen";
sha256 = "104jisc2bckzrajxlvj1cfx1drnjj7jhqjblvm89ry32xdnjxmqb";
name = "on-screen";
};
@@ -42380,7 +43001,7 @@
one-time-pad-encrypt = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "one-time-pad-encrypt";
- version = "20160329.1713";
+ version = "20160329.1013";
src = fetchFromGitHub {
owner = "garvinguan";
repo = "emacs-one-time-pad";
@@ -42388,7 +43009,7 @@
sha256 = "0g2hvpnmgyy1k393prv97nqwlqc58nqf71hkrmaijw0cyy9q03nz";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/one-time-pad-encrypt";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/cd7e31ad4e6f5ae3084ef4b4c910dc6d90935d72/recipes/one-time-pad-encrypt";
sha256 = "0aa7qcii7yf4527nhlwwp0hbhamhyp2xg0fsscnq2m28l5d5kmn6";
name = "one-time-pad-encrypt";
};
@@ -42400,13 +43021,13 @@
}) {};
oneonone = callPackage ({ fetchurl, hexrgb, lib, melpaBuild }: melpaBuild {
pname = "oneonone";
- version = "20160101.41";
+ version = "20151231.1741";
src = fetchurl {
url = "https://www.emacswiki.org/emacs/download/oneonone.el";
sha256 = "05njigqi9061d34530d76kwsdzqgk9qxnwhn9xis64w59f5nzf1h";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/oneonone";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/a5d15f875b0080b12ce45cf696c581f6bbf061ba/recipes/oneonone";
sha256 = "0v4nvhzgq97zbi18jd3ds57yh1fpv57b2a1cd7r8jbxwaaz3gpg9";
name = "oneonone";
};
@@ -42419,7 +43040,7 @@
opam = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "opam";
- version = "20150719.1420";
+ version = "20150719.720";
src = fetchFromGitHub {
owner = "lunaryorn";
repo = "opam.el";
@@ -42427,7 +43048,7 @@
sha256 = "1yqrp9icci5snp1485wb6y8mr2hjp9006ahch58lvmnq98bn7j45";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/opam";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/fc4e2076ebaefe7e241607ff6920fe243d10ccd0/recipes/opam";
sha256 = "004r93nn1ranvxkcc0y5m3p8gh4axgghgnsvim38nc1sqda5h6xa";
name = "opam";
};
@@ -42440,7 +43061,7 @@
open-junk-file = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "open-junk-file";
- version = "20160515.25";
+ version = "20160514.1725";
src = fetchFromGitHub {
owner = "rubikitch";
repo = "open-junk-file";
@@ -42448,7 +43069,7 @@
sha256 = "0r5rsghqgy99jwjf3dqkw1q10smsvs242aafmz142l4ipsqr3gi3";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/open-junk-file";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/f8e4328cae9b4759a75da0b26ea8b68821bc71af/recipes/open-junk-file";
sha256 = "0r1v9m8a5blv70fzq5miv5i57jx0bm1p0jxh0lwklam0m99znmcj";
name = "open-junk-file";
};
@@ -42461,7 +43082,7 @@
opencl-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "opencl-mode";
- version = "20160220.1809";
+ version = "20160220.1109";
src = fetchFromGitHub {
owner = "salmanebah";
repo = "opencl-mode";
@@ -42469,7 +43090,7 @@
sha256 = "094r6fx1s76m8anqqg2qrddidn1dp08kmv8p8md27yy9mm49d91n";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/opencl-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/d97575fdae88d55b55686aa6814f858813cad171/recipes/opencl-mode";
sha256 = "1g351wiaycwmg1bnf4s2mdnc3lb2ml5l54g19184xqssfqlx7y79";
name = "opencl-mode";
};
@@ -42479,10 +43100,31 @@
license = lib.licenses.free;
};
}) {};
+ opensource = callPackage ({ dash, fetchFromGitHub, fetchurl, lib, melpaBuild, pkg-info, request, s }:
+ melpaBuild {
+ pname = "opensource";
+ version = "20160625.231";
+ src = fetchFromGitHub {
+ owner = "nlamirault";
+ repo = "opensource.el";
+ rev = "94bda9a55ae564b6e96688c4619541631ba8354b";
+ sha256 = "1bg46qbp4kvfw587ryrsqml4w4l520gajgpva14rs77s7qjbr2f6";
+ };
+ recipeFile = fetchurl {
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/b9925f059f0caf0550a747d1f07e043e9d854f77/recipes/opensource";
+ sha256 = "0ha5xva27xf6af9yhxpmnkyp26jzia7fkbkqx5qv0cwmicapccfk";
+ name = "opensource";
+ };
+ packageRequires = [ dash pkg-info request s ];
+ meta = {
+ homepage = "https://melpa.org/#/opensource";
+ license = lib.licenses.free;
+ };
+ }) {};
openstack-cgit-browse-file = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "openstack-cgit-browse-file";
- version = "20130819.1127";
+ version = "20130819.427";
src = fetchFromGitHub {
owner = "chmouel";
repo = "openstack-cgit-browse-file";
@@ -42490,7 +43132,7 @@
sha256 = "0086pfk4pq6xmknk7a42fihcjgzkcplqqc1rk9fhwmn9j7djbq70";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/openstack-cgit-browse-file";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/bd7035e1ea63d7d8378f8bfda6a5402a5b6bb9e4/recipes/openstack-cgit-browse-file";
sha256 = "05dl28a4npnnzzipypfcqb21sdww715lwji2xnsabx3fb1h1w5jl";
name = "openstack-cgit-browse-file";
};
@@ -42502,14 +43144,14 @@
}) {};
openwith = callPackage ({ fetchhg, fetchurl, lib, melpaBuild }: melpaBuild {
pname = "openwith";
- version = "20120531.2336";
+ version = "20120531.1636";
src = fetchhg {
url = "https://bitbucket.com/jpkotta/openwith";
rev = "aeb78782ec87";
sha256 = "1wl6gnxsyhaad4cl9bxjc0qbc5jzvlwbwjbajs0n1s6qr07d6r01";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/openwith";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/5b7972602399f9df9139cff177e38653bb0f43ed/recipes/openwith";
sha256 = "05lkx3yfv2445fp07bhqv2aqz5hgf3dxp39lmz3nfxn4c9v8nkqi";
name = "openwith";
};
@@ -42522,7 +43164,7 @@
operate-on-number = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "operate-on-number";
- version = "20150707.823";
+ version = "20150707.123";
src = fetchFromGitHub {
owner = "knu";
repo = "operate-on-number.el";
@@ -42530,7 +43172,7 @@
sha256 = "0iw3c8sn702ziki59mvd5gxm484i7f0bwsy8fz95y08s9gknjjf9";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/operate-on-number";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/aec74eff8ca3d5e381d7a6d61c73f1a0716f1c60/recipes/operate-on-number";
sha256 = "1rw3fqbzfizgcbz3yaf99rr2546msna4z7dyfa8dbi8h7yzl4fhk";
name = "operate-on-number";
};
@@ -42543,7 +43185,7 @@
org-ac = callPackage ({ auto-complete-pcmp, fetchFromGitHub, fetchurl, lib, log4e, melpaBuild, yaxception }:
melpaBuild {
pname = "org-ac";
- version = "20140302.1313";
+ version = "20140302.613";
src = fetchFromGitHub {
owner = "aki2o";
repo = "org-ac";
@@ -42551,7 +43193,7 @@
sha256 = "1xckin2d6s40kgr2293g72ipc57f8gp6y63303kmqcv3qm8q13ca";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/org-ac";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/adf598f8dae69ff286ae78d353a2a5d4363b4480/recipes/org-ac";
sha256 = "059jr3v3558cgw626zbqfwmwwv5f4637ai26h7b6psqh0x9sf3mr";
name = "org-ac";
};
@@ -42564,7 +43206,7 @@
org-agenda-property = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "org-agenda-property";
- version = "20140626.2316";
+ version = "20140626.1616";
src = fetchFromGitHub {
owner = "Malabarba";
repo = "org-agenda-property";
@@ -42572,7 +43214,7 @@
sha256 = "15xgkm5p30qfghyhkjivh5n4770794qf4pza462vb0xl5v6kffbm";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/org-agenda-property";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/1e6aed365c42987d64d0cd9a8a6178339b1b39e8/recipes/org-agenda-property";
sha256 = "0zsjzjw52asl609q7a2s4jcsm478p4cxzhnd3azyr9ypxydjf6qk";
name = "org-agenda-property";
};
@@ -42585,15 +43227,15 @@
org-alert = callPackage ({ alert, dash, fetchFromGitHub, fetchurl, lib, melpaBuild, s }:
melpaBuild {
pname = "org-alert";
- version = "20151007.1237";
+ version = "20160701.2100";
src = fetchFromGitHub {
owner = "groksteve";
repo = "org-alert";
- rev = "d9b73febcc4f211406521786a39853c6bc6dd1bf";
- sha256 = "0yzvir2gmyv9k43q3sf37lc9xcmfyaj5wh825xax7305j3b2hhvv";
+ rev = "685c18aa5ce994360c7f9e8bbf49590c412187ac";
+ sha256 = "0gkv2sfl9nb64qqh5xhgq68r9kfmsny3vpcmnzk2mqjcb9nh657s";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/org-alert";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/2976b7f9271bc46679a5774ff5f388b81a9f0cf8/recipes/org-alert";
sha256 = "0n5a24iv8cj395xr0gfgi0hs237dd98zm2fws05k47vy3ygni152";
name = "org-alert";
};
@@ -42606,7 +43248,7 @@
org-attach-screenshot = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "org-attach-screenshot";
- version = "20160529.1637";
+ version = "20160529.937";
src = fetchFromGitHub {
owner = "dfeich";
repo = "org-screenshot";
@@ -42614,7 +43256,7 @@
sha256 = "19axpybfdsnaj04h0mxpahzqa5r5yl5mmczd3mx5r6mnr6dgrwn9";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/org-attach-screenshot";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/f545cd8d1da39e7fbd61020e178de30053ba774b/recipes/org-attach-screenshot";
sha256 = "0108kahyd499q87wzvirv5d6p7jrb7ckz8r96pwqzgflj3njbnmn";
name = "org-attach-screenshot";
};
@@ -42627,7 +43269,7 @@
org-autolist = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "org-autolist";
- version = "20150922.1605";
+ version = "20150922.905";
src = fetchFromGitHub {
owner = "calvinwyoung";
repo = "org-autolist";
@@ -42635,7 +43277,7 @@
sha256 = "0j6fqgzvbmvvdh0dgwsxq004wxys2zwnq9wa3idm087ynp2a2ani";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/org-autolist";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/ca8e2cdb282674b20881bf6b4fc49af42a5d09a7/recipes/org-autolist";
sha256 = "1jvspxhxlvd7h1srk9dbk1v5dykmf8jsjaqicpll7ial6i0qgikj";
name = "org-autolist";
};
@@ -42648,7 +43290,7 @@
org-beautify-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "org-beautify-theme";
- version = "20150106.1856";
+ version = "20150106.1156";
src = fetchFromGitHub {
owner = "jonnay";
repo = "emagicians-starter-kit";
@@ -42656,7 +43298,7 @@
sha256 = "00iklf97mszrsdv20q55qhml1dscvmmalpfnlkwi9mabklyq3i6z";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/org-beautify-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/6949c34b33f2a1c3273045049359b54f96a79552/recipes/org-beautify-theme";
sha256 = "1j2gi3f72kvavdcj6xs7zng0dcnivrhc7pjzm2g4mjm5ad5s1flq";
name = "org-beautify-theme";
};
@@ -42669,7 +43311,7 @@
org-bookmark-heading = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "org-bookmark-heading";
- version = "20160326.759";
+ version = "20160326.159";
src = fetchFromGitHub {
owner = "alphapapa";
repo = "org-bookmark-heading";
@@ -42677,7 +43319,7 @@
sha256 = "084ij85pw53pzr220ql97544zkh23xb8gr81397asfdhc5wrzkqw";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/org-bookmark-heading";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/eaadbd149399c6e3c48ac5cbeedeb29a3f5791f1/recipes/org-bookmark-heading";
sha256 = "1q92rg9d945ypcpb7kig2r0cr7nb7avsylaa7nxjib25advx80n9";
name = "org-bookmark-heading";
};
@@ -42690,7 +43332,7 @@
org-bullets = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "org-bullets";
- version = "20140918.2037";
+ version = "20140918.1337";
src = fetchFromGitHub {
owner = "sabof";
repo = "org-bullets";
@@ -42698,7 +43340,7 @@
sha256 = "10nr4sjffnqbllv6gmak6pviyynrb7pi5nvrq331h5alm3xcpq0w";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/org-bullets";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/3ab2169c45aae7fb3373bf5df087d9b626167ce8/recipes/org-bullets";
sha256 = "1kxhlabaqi1g6pz215afp65d9cp324s8mvabjh7q1h7ari32an75";
name = "org-bullets";
};
@@ -42711,15 +43353,15 @@
org-caldav = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, org }:
melpaBuild {
pname = "org-caldav";
- version = "20160306.1537";
+ version = "20160614.1542";
src = fetchFromGitHub {
owner = "dengste";
repo = "org-caldav";
- rev = "97a70cbd478a665c24b910d8ce082059e042a64b";
- sha256 = "0fq9d1q16fs0i3x9gs8k1n98nvh971r6g5bk2bswpfbpvndgwbi1";
+ rev = "f8638d459c7294d44ccd7792b4216541c181d891";
+ sha256 = "0vjw8fn6ipi2fg5wkj4jq8cs3m7694xgccy1h1n774w12bby3xhk";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/org-caldav";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/5b3f04ae3592496aa4148d1035599dd6f63ad14b/recipes/org-caldav";
sha256 = "0166y04gxrwnynm4jshm2kqk5jbvl5g5078dxvw18nicrgq3y4r8";
name = "org-caldav";
};
@@ -42732,7 +43374,7 @@
org-capture-pop-frame = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "org-capture-pop-frame";
- version = "20160518.1208";
+ version = "20160518.508";
src = fetchFromGitHub {
owner = "tumashu";
repo = "org-capture-pop-frame";
@@ -42740,7 +43382,7 @@
sha256 = "01ffkk79wz2qkh9h9cjl59j34wvbiqzzxbbc9a06lh2rc946wgis";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/org-capture-pop-frame";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/b20edd229469b33ea87c40cfd06aa0bf95d149de/recipes/org-capture-pop-frame";
sha256 = "0g0b3vifwg39rb0fmad7y955dcqccnm01c6m27cv2x4xfib8ik3w";
name = "org-capture-pop-frame";
};
@@ -42753,7 +43395,7 @@
org-chinese-utils = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "org-chinese-utils";
- version = "20160510.1609";
+ version = "20160510.909";
src = fetchFromGitHub {
owner = "tumashu";
repo = "org-chinese-utils";
@@ -42761,7 +43403,7 @@
sha256 = "1m6bsjc2l4vx1z2cb0siqs8m1wjvi8fs67aqqx879q5rwlxbhzs5";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/org-chinese-utils";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/a679ebaedcb496f915b9338f9d5c003e1389594d/recipes/org-chinese-utils";
sha256 = "1dycsv0p2xzm2dg6fi5f5dkb48qnqq0qhrmvi0cdjq34j67s27ix";
name = "org-chinese-utils";
};
@@ -42774,7 +43416,7 @@
org-cliplink = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "org-cliplink";
- version = "20160319.1300";
+ version = "20160319.700";
src = fetchFromGitHub {
owner = "rexim";
repo = "org-cliplink";
@@ -42782,7 +43424,7 @@
sha256 = "048mcjgls405wwvn2r90cxkyw9z2nf97gif86k0gxk7yrbbkiy2x";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/org-cliplink";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/7ddb13c59441fdf4eb1ba3816e147279dea7d429/recipes/org-cliplink";
sha256 = "19l3k9w9csgvdr7n824bzg7jja0f28dmz6caldxh43vankpmlg3p";
name = "org-cliplink";
};
@@ -42795,7 +43437,7 @@
org-clock-convenience = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, org }:
melpaBuild {
pname = "org-clock-convenience";
- version = "20160529.1623";
+ version = "20160529.923";
src = fetchFromGitHub {
owner = "dfeich";
repo = "org-clock-convenience";
@@ -42803,7 +43445,7 @@
sha256 = "1imy615qvkw6qfd6ngvillhkqbrnb5mxiqbfy4sm7wq5q76qwkm5";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/org-clock-convenience";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/a80ed929181cdd28886ca598a0c387a31d239b2e/recipes/org-clock-convenience";
sha256 = "1zis0fp7q253qfxypm7a69zb3w8jb4cbrbj2rk34d1jisvnn4irw";
name = "org-clock-convenience";
};
@@ -42816,7 +43458,7 @@
org-context = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "org-context";
- version = "20160108.1114";
+ version = "20160108.414";
src = fetchFromGitHub {
owner = "thisirs";
repo = "org-context";
@@ -42824,7 +43466,7 @@
sha256 = "0q4v216ihhwv8rlb9xc8xy7nj1p058xabfflglhgcd7mfjrsyayx";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/org-context";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/f33b6157eb172719a56c3e86233708b1e545e451/recipes/org-context";
sha256 = "19y8aln7wix9p506ajvfkl641147c5mdmjm98jnq68cx2r4wp6zz";
name = "org-context";
};
@@ -42837,7 +43479,7 @@
org-cua-dwim = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "org-cua-dwim";
- version = "20120203.634";
+ version = "20120202.2334";
src = fetchFromGitHub {
owner = "mattfidler";
repo = "org-cua-dwim.el";
@@ -42845,7 +43487,7 @@
sha256 = "0nrfvmqb70phnq0k4wbdj6z666wq6xvabg4pgv8qn62rbrw4yyhm";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/org-cua-dwim";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/7fabdb05de9b8ec18a3a566f99688b50443b6b44/recipes/org-cua-dwim";
sha256 = "0ib3m41b4lh0p0xxhsmfv42qs00xm2cfwwl2cgfdjjp1s57p19xy";
name = "org-cua-dwim";
};
@@ -42858,7 +43500,7 @@
org-dashboard = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "org-dashboard";
- version = "20150812.1202";
+ version = "20150812.502";
src = fetchFromGitHub {
owner = "bard";
repo = "org-dashboard";
@@ -42866,7 +43508,7 @@
sha256 = "1nqfi139cag3ll8wxk8rh59hay97vi8i0mlgnams4jla285zydj5";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/org-dashboard";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/11ce0ba772672d9cbae5713ebaf3798eec5fdb3c/recipes/org-dashboard";
sha256 = "1hvhhbmyx12wsf2n1hd0hg5cy05zyspd82xxcdh04g4s9r3ikqj5";
name = "org-dashboard";
};
@@ -42879,7 +43521,7 @@
org-doing = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "org-doing";
- version = "20150824.1601";
+ version = "20150824.901";
src = fetchFromGitHub {
owner = "omouse";
repo = "org-doing";
@@ -42887,7 +43529,7 @@
sha256 = "1wrgqdrfdxc1vrcr6dsa8dcxrwj6zgjr9h1fzilwnxlzfvdilnsm";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/org-doing";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/4c497b87e14ab614c963f4b2f041bc0111b6e936/recipes/org-doing";
sha256 = "17w49z78fvbz182sxv9mnryj124gm9jbdmbybppjqz4rk6wvnm2j";
name = "org-doing";
};
@@ -42900,7 +43542,7 @@
org-dotemacs = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild, org }:
melpaBuild {
pname = "org-dotemacs";
- version = "20151119.1922";
+ version = "20151119.1222";
src = fetchFromGitHub {
owner = "vapniks";
repo = "org-dotemacs";
@@ -42908,7 +43550,7 @@
sha256 = "15zrnd168n4pwa1bj5fz79hcrgw61braf0b095rsfhjh5w2sasy7";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/org-dotemacs";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/4c1847184312c8c95e7e81e5b3b73e5621cc2509/recipes/org-dotemacs";
sha256 = "1vc391fdkdqd4g0piq66zhrlgqx5s2ijv7qd1rc3a235sjb9i2n4";
name = "org-dotemacs";
};
@@ -42921,15 +43563,15 @@
org-download = callPackage ({ async, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "org-download";
- version = "20160411.1610";
+ version = "20160620.807";
src = fetchFromGitHub {
owner = "abo-abo";
repo = "org-download";
- rev = "39e810e114553fdf09785d2a81923103f689e907";
- sha256 = "02344qyhz4bjz0rg4lmmqpn43lf03ag5v384ppczqks61rq7zpq9";
+ rev = "734e22acfad4154b4fb92226a3825b46d74e7d10";
+ sha256 = "1s5jfl9945da6kfid1aj25v0nr1c6ivvxnprsxv8anz8vd7na4qd";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/org-download";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/edab283bc9ca736499207518b4c9f5e71e822bd9/recipes/org-download";
sha256 = "19yjx0qqpmrdwagp3d6lwwv7dcb745m9ccq3m29sin74f5p4svsi";
name = "org-download";
};
@@ -42942,7 +43584,7 @@
org-dp = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "org-dp";
- version = "20160326.1403";
+ version = "20160326.803";
src = fetchFromGitHub {
owner = "tj64";
repo = "org-dp";
@@ -42950,7 +43592,7 @@
sha256 = "0misv6g1cql7qc3xhy56cn79pzvn811fvhvivvq0bdx4g0hpp2fg";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/org-dp";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/7f337375082da316ed07b8ce9c775b484b8cdbf6/recipes/org-dp";
sha256 = "0fnrzpgw8l0g862j20yy4mw1wfcm2i04r6dxi4yd7yay8bw2i4yq";
name = "org-dp";
};
@@ -42963,7 +43605,7 @@
org-drill-table = callPackage ({ cl-lib ? null, dash, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, org-plus-contrib, s }:
melpaBuild {
pname = "org-drill-table";
- version = "20140117.1037";
+ version = "20140117.337";
src = fetchFromGitHub {
owner = "chrisbarrett";
repo = "org-drill-table";
@@ -42971,7 +43613,7 @@
sha256 = "0m5c9x0vazciq6czpg5y9nr5yzjf6nl0qp5cfajv49cw2h0cwqyy";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/org-drill-table";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/3347da186765877826b224e1f5d1b585ebd3692c/recipes/org-drill-table";
sha256 = "1gb5b4hj4xr8nv8bxfar145i38zcic6c34gk98wpshvwzvb43r69";
name = "org-drill-table";
};
@@ -42984,7 +43626,7 @@
org-dropbox = callPackage ({ dash, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, names }:
melpaBuild {
pname = "org-dropbox";
- version = "20150114.609";
+ version = "20150113.2309";
src = fetchFromGitHub {
owner = "heikkil";
repo = "org-dropbox";
@@ -42992,7 +43634,7 @@
sha256 = "0jjdsng7fm4wbhvd9naqzdfsmkvj1sf1d9rikprg1pd58azv6idx";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/org-dropbox";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/cd613fbe42c41b125a25dfa0206666446dc5fa40/recipes/org-dropbox";
sha256 = "0qfvdz13ncqn7qaz03lwabzsnk62z6wqzlxlvdqv5xyllcy9m6ln";
name = "org-dropbox";
};
@@ -43005,7 +43647,7 @@
org-ehtml = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, web-server }:
melpaBuild {
pname = "org-ehtml";
- version = "20150507.158";
+ version = "20150506.1858";
src = fetchFromGitHub {
owner = "eschulte";
repo = "org-ehtml";
@@ -43013,7 +43655,7 @@
sha256 = "0kqvwqmwnwg2h7r38fpjg6qlkcj9v8011df8nmsgs1w1mfdvnjsq";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/org-ehtml";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/7f68028b3f4d2455da6d657e90abcab6181db284/recipes/org-ehtml";
sha256 = "0n82fbd7aircqg2c9m138qfv8csrv0amhya3xlwswdkqn51vn3gw";
name = "org-ehtml";
};
@@ -43026,7 +43668,7 @@
org-elisp-help = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild, org }:
melpaBuild {
pname = "org-elisp-help";
- version = "20130424.45";
+ version = "20130423.1745";
src = fetchFromGitHub {
owner = "tarsius";
repo = "org-elisp-help";
@@ -43034,7 +43676,7 @@
sha256 = "0va8wm319vvw7w0j102mx656icy3fi4mz3b6bxira6z6xl9b92s0";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/org-elisp-help";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/b0a9bf5046a4c3be8a83004d506bd258a6f7ff15/recipes/org-elisp-help";
sha256 = "0a4wvz52hkcw5nrml3h1yp8w97vg5jw22wnpfbb827zh7iwb259h";
name = "org-elisp-help";
};
@@ -43047,7 +43689,7 @@
org-eww = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, org }:
melpaBuild {
pname = "org-eww";
- version = "20160521.2358";
+ version = "20160521.1658";
src = fetchFromGitHub {
owner = "lujun9972";
repo = "org-eww";
@@ -43055,7 +43697,7 @@
sha256 = "0aa7hzn8ss6b7p24qxgwvz8w3kd2lcr98wj315c0c5zhwdrcw2rj";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/org-eww";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/b73c06723bfb47c29c2cb2ad2bfe4db79a01f2af/recipes/org-eww";
sha256 = "132asshgfpphjckd5vz1vcs18lj55mrqs1l4ggfa89rc6aj8xrca";
name = "org-eww";
};
@@ -43068,14 +43710,14 @@
org-fstree = callPackage ({ fetchgit, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "org-fstree";
- version = "20090723.1719";
+ version = "20090723.1019";
src = fetchgit {
url = "http://repo.or.cz/r/org-fstree.git";
rev = "24e305c6443be9f45198185772eecfddc390a9ce";
sha256 = "0ydsmjjc64r50qilgazmv5gzdv67vszlid67wskc2zii5ss0y01m";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/org-fstree";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/4327b4dd464ebb00c2acdd496274dedf912cdf92/recipes/org-fstree";
sha256 = "11ddkfddmsy26mmhgw24757f753ssh056v9vxn89pxp4qypxidfz";
name = "org-fstree";
};
@@ -43088,7 +43730,7 @@
org-gcal = callPackage ({ alert, cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, org, request-deferred }:
melpaBuild {
pname = "org-gcal";
- version = "20160307.2106";
+ version = "20160307.1406";
src = fetchFromGitHub {
owner = "myuhe";
repo = "org-gcal.el";
@@ -43096,7 +43738,7 @@
sha256 = "1di32pvkqbd90f4j4d07gdbba6d0fzyhw5lsynz7cl6yrh5y9cpr";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/org-gcal";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/1c2d5bd8d8f2616dae19b9232d9442fe423d6e5e/recipes/org-gcal";
sha256 = "1mp6cm0rhd4r9pfvsjjp86sdqxjbbg7gk41zx0zf0s772smddy3q";
name = "org-gcal";
};
@@ -43109,7 +43751,7 @@
org-gnome = callPackage ({ alert, fetchFromGitHub, fetchurl, gnome-calendar, lib, melpaBuild, telepathy }:
melpaBuild {
pname = "org-gnome";
- version = "20150614.1657";
+ version = "20150614.957";
src = fetchFromGitHub {
owner = "NicolasPetton";
repo = "org-gnome.el";
@@ -43117,7 +43759,7 @@
sha256 = "0b57ik05iax2h3nrj96kysbk4hxmxlaabd0n6lv1xsayrlli3sj1";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/org-gnome";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/4f7ebd2d2312954d098fe4afd07c3d02b4df475d/recipes/org-gnome";
sha256 = "0c37gfs6xs0jbvg6ypd4z5ip1khm26wr5lxgmv1dzcc383ynzg0v";
name = "org-gnome";
};
@@ -43130,7 +43772,7 @@
org-grep = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "org-grep";
- version = "20151202.1329";
+ version = "20151202.629";
src = fetchFromGitHub {
owner = "emacsorphanage";
repo = "org-grep";
@@ -43138,7 +43780,7 @@
sha256 = "10jwqzs431mnwz717qdmcn0v8raklw41sbxbnkb36yrgznk8c09c";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/org-grep";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/5ed0682fb9130a62e628d4e64747bb9c70456681/recipes/org-grep";
sha256 = "0kpgizy0zxnlmyh0prwdll62ri2c1l4sb0yrkl7yw17cr4gxmkkz";
name = "org-grep";
};
@@ -43151,7 +43793,7 @@
org-if = callPackage ({ fetchFromGitLab, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "org-if";
- version = "20150920.1713";
+ version = "20150920.1013";
src = fetchFromGitLab {
owner = "elzair";
repo = "org-if";
@@ -43159,7 +43801,7 @@
sha256 = "1iyqv34b7q2k73srshcnpvfzcadq47w4rzkqp6m1d3ajk8x2vypq";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/org-if";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/09df84b60c46678ad40d8dabc08fcfe518f5ad79/recipes/org-if";
sha256 = "0h0jdyawz2j4mp33w85z8q77l37qid8palvw5n4z379qa0wr5h96";
name = "org-if";
};
@@ -43172,15 +43814,15 @@
org-iv = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, impatient-mode, lib, melpaBuild, org }:
melpaBuild {
pname = "org-iv";
- version = "20160602.852";
+ version = "20160609.2054";
src = fetchFromGitHub {
owner = "kuangdash";
repo = "org-iv";
- rev = "719e3ce1ccc71b91327916c218d89ec8509bf235";
- sha256 = "152b2syl9fs7ziw6i7p76h6s6w6idrcxfcj2pcmil8gwd0bqlq2g";
+ rev = "40fa39ae680794cd493dfa8624e5eff4d04c2363";
+ sha256 = "1zn1bvk2kgd6a969m1d63v8ax52lanvb1h2w62ffpxlkap3kl6m8";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/org-iv";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/e7db0c34f0f6fb9c3b9e581a74304cc9a26ed342/recipes/org-iv";
sha256 = "1akhabp6mdw1h7zms6ahlfvwizl07fwsizwxpdzi4viggfccsfwx";
name = "org-iv";
};
@@ -43193,7 +43835,7 @@
org-jekyll = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, org }:
melpaBuild {
pname = "org-jekyll";
- version = "20130508.1139";
+ version = "20130508.439";
src = fetchFromGitHub {
owner = "juanre";
repo = "org-jekyll";
@@ -43201,7 +43843,7 @@
sha256 = "0whv8nsla93194jjpxrhlr6g230spdxbac8ibmzmyad075vx97z5";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/org-jekyll";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/8e6059b532fc95e0251a1edb7b1e29d03477b3f2/recipes/org-jekyll";
sha256 = "0jh3rla8s8prprvhnlg0psdrj7swz7v6vf2xy1m6ff66p9saiv8i";
name = "org-jekyll";
};
@@ -43214,7 +43856,7 @@
org-jira = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "org-jira";
- version = "20150911.1458";
+ version = "20150911.758";
src = fetchFromGitHub {
owner = "baohaojun";
repo = "org-jira";
@@ -43222,7 +43864,7 @@
sha256 = "0b5f8qkyzh4jwj3kvbaj3m4dpjbvh1fql7v1nb9bi5n7iwkv3lxp";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/org-jira";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/d83f6897d422f81eef83933c49d82fc5db1d1ae3/recipes/org-jira";
sha256 = "11h7kbkf38p2xycw8hvabpaacp72xdgy8c7kzcgjb2a8qlbs5ifm";
name = "org-jira";
};
@@ -43235,15 +43877,15 @@
org-journal = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "org-journal";
- version = "20160427.1518";
+ version = "20160624.223";
src = fetchFromGitHub {
owner = "bastibe";
repo = "org-journal";
- rev = "17d74bf1c33da3e2831ab3eee134d54caf58919e";
- sha256 = "0rsirs9rfgrsi667vjmag0h6m704j35mv9rg5q50p9jsa38xy78i";
+ rev = "51aec969cc0dc8e0c81220f020d643861d2f5c9b";
+ sha256 = "0j3z2imv5w6cndnxdyy0pf9la6qxbgwdwr7vr8mr47frqpjb4i63";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/org-journal";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/7fabdb05de9b8ec18a3a566f99688b50443b6b44/recipes/org-journal";
sha256 = "1npzqxn1ssigq7k1nrxz3xymxaazby0ddgxq6lgw2a1zjmjm4h2b";
name = "org-journal";
};
@@ -43256,7 +43898,7 @@
org-link-travis = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, org }:
melpaBuild {
pname = "org-link-travis";
- version = "20140406.127";
+ version = "20140405.1827";
src = fetchFromGitHub {
owner = "aki2o";
repo = "org-link-travis";
@@ -43264,7 +43906,7 @@
sha256 = "1797pd264zn19zk93nifyw6pwk2a7wrpfir373qclk601yv2g5h8";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/org-link-travis";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/52c7f9539630e5ac7748fe36fd27c3486649ab74/recipes/org-link-travis";
sha256 = "0hj4x7cw7a3ry8xislkz9bnavy77z4cpmnvns02yi3gnib53mlfs";
name = "org-link-travis";
};
@@ -43277,7 +43919,7 @@
org-linkany = callPackage ({ fetchFromGitHub, fetchurl, lib, log4e, melpaBuild, yaxception }:
melpaBuild {
pname = "org-linkany";
- version = "20160207.511";
+ version = "20160206.2211";
src = fetchFromGitHub {
owner = "aki2o";
repo = "org-linkany";
@@ -43285,7 +43927,7 @@
sha256 = "0lqxzmjxs80z3z90f66f3zfrdajiamdcwpvfv5j2w40js9xz4x37";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/org-linkany";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/df82cf95e34775b22da0a8bb29750f603c58f259/recipes/org-linkany";
sha256 = "0arjj3c23yqm1ljvbnl7v9cqvd9lbz4381g8f3jyqbafs25bdc3c";
name = "org-linkany";
};
@@ -43298,14 +43940,14 @@
org-mac-iCal = callPackage ({ fetchgit, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "org-mac-iCal";
- version = "20140107.1419";
+ version = "20140107.719";
src = fetchgit {
url = "git://orgmode.org/org-mode.git";
- rev = "3fd361eb77f8c760ccfc7224d3e79d54823923d0";
- sha256 = "15srx8cxh0qa4g7bx0fkfz49f1fkb4hjryl8ygvl800v98kcy32f";
+ rev = "ea94c14d924a0aa2cb4ead79d8772268fb933e48";
+ sha256 = "0bjzfr0wzjd0f915isvp0bzc5iwgpwqdnk600ib71kplvqb5lvyg";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/org-mac-iCal";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/ee69e5e7b1617a29919d5fcece92414212fdf963/recipes/org-mac-iCal";
sha256 = "1ilzvmw1x5incagp1vf8d9v9mz0krlv7bpv428gg3gpqzpm6kksw";
name = "org-mac-iCal";
};
@@ -43318,14 +43960,14 @@
org-mac-link = callPackage ({ fetchgit, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "org-mac-link";
- version = "20160109.2343";
+ version = "20160109.1643";
src = fetchgit {
url = "git://orgmode.org/org-mode.git";
- rev = "3fd361eb77f8c760ccfc7224d3e79d54823923d0";
- sha256 = "15srx8cxh0qa4g7bx0fkfz49f1fkb4hjryl8ygvl800v98kcy32f";
+ rev = "ea94c14d924a0aa2cb4ead79d8772268fb933e48";
+ sha256 = "0bjzfr0wzjd0f915isvp0bzc5iwgpwqdnk600ib71kplvqb5lvyg";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/org-mac-link";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/b86c666ee9b0620390a250dddd42b17cbec2409f/recipes/org-mac-link";
sha256 = "02rmhrwikppppw8adnzvwj43kp9wsyk60csj5pygg7cd7wah7khw";
name = "org-mac-link";
};
@@ -43338,15 +43980,15 @@
org-mobile-sync = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, org }:
melpaBuild {
pname = "org-mobile-sync";
- version = "20131118.2016";
+ version = "20160629.1507";
src = fetchFromGitHub {
owner = "steckerhalter";
repo = "org-mobile-sync";
- rev = "3b086ffebfead48feccc629f7a6571df2f94c8e0";
- sha256 = "0d22q57mizw70qxbvwi4yz15jg86icqq1z963rliwss3wgpirndh";
+ rev = "442bcfe93f4f2cab02e2dd2c3634fbffcda9a17d";
+ sha256 = "0vzafaqkrwjg22yf4lcqrg02xv4nqwgpphbrdmh90c4d3rlhrck1";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/org-mobile-sync";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/24335fa800ba6c18ca6690464fbb0232bb697c7a/recipes/org-mobile-sync";
sha256 = "1cj0pxcjngiipmyl0w1p0g4wrxgm2y98a8862x1lcbali9lqbrwj";
name = "org-mobile-sync";
};
@@ -43359,7 +44001,7 @@
org-multiple-keymap = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, org }:
melpaBuild {
pname = "org-multiple-keymap";
- version = "20150329.306";
+ version = "20150328.2006";
src = fetchFromGitHub {
owner = "myuhe";
repo = "org-multiple-keymap.el";
@@ -43367,7 +44009,7 @@
sha256 = "0zbpzm9lni6z180s7n52x8s5by5zkq2nlhx82l2h9i7in9y4r6c3";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/org-multiple-keymap";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/0a22beed723d149282e70e3411b79e8ce9f5ab2b/recipes/org-multiple-keymap";
sha256 = "16iv5575634asvn1b2k535ml8g4lqgy8z5w6ykma5f9phq5idb9f";
name = "org-multiple-keymap";
};
@@ -43380,7 +44022,7 @@
org-octopress = callPackage ({ ctable, fetchFromGitHub, fetchurl, lib, melpaBuild, org, orglue }:
melpaBuild {
pname = "org-octopress";
- version = "20150826.1316";
+ version = "20150826.616";
src = fetchFromGitHub {
owner = "yoshinari-nomura";
repo = "org-octopress";
@@ -43388,7 +44030,7 @@
sha256 = "132jv1zvp3yp4pa4ysl0n3a81d39cdi3nqfziz1ha1pl10qbn6wr";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/org-octopress";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/fba6c3c645ba903f636814b5a2bb1baca0b5283b/recipes/org-octopress";
sha256 = "0r6ms9j4xxsrik4206g7gz4wz41wr4ylpal6yfqs4hhz88yhxrhw";
name = "org-octopress";
};
@@ -43401,7 +44043,7 @@
org-outlook = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "org-outlook";
- version = "20150914.1447";
+ version = "20150914.747";
src = fetchFromGitHub {
owner = "mattfidler";
repo = "org-outlook.el";
@@ -43409,7 +44051,7 @@
sha256 = "10dddbs9jppqqzwwv5y6pj2szdkw3223gvzzd4pzn9biv5d9kzsb";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/org-outlook";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/804a4b6802d2cf53e5415d956f0b4772853f4c69/recipes/org-outlook";
sha256 = "0cn8h6yy67jr5h1yxsfqmr8q7ii4f99pgghfp821m01pj55qyjx9";
name = "org-outlook";
};
@@ -43422,15 +44064,15 @@
org-page = callPackage ({ cl-lib ? null, dash, fetchFromGitHub, fetchurl, git, ht, htmlize, lib, melpaBuild, mustache, org, simple-httpd }:
melpaBuild {
pname = "org-page";
- version = "20160413.1229";
+ version = "20160626.308";
src = fetchFromGitHub {
owner = "kelvinh";
repo = "org-page";
- rev = "5bf99d7c0d6e53cbbab12990fb4b778fdfc1446a";
- sha256 = "1w853v4fsrvgczl2rvmy3dv9shyhv8f4bc0gqnk4r5ihmgf46a1s";
+ rev = "0dc3cafc02d2fdb0e05b8da6c75e2ee8b68fc290";
+ sha256 = "0jh296mndk5xpqzfiwf41vyc1ys9bfjmfyzpbalkmwyy95inl52p";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/org-page";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/872f163d4da58760009001472e2240f00d4d2d89/recipes/org-page";
sha256 = "1326m3w7vz22zk7rx40z28fddsccy5fl1qhbb7clci8l69blcc2v";
name = "org-page";
};
@@ -43452,7 +44094,7 @@
org-pandoc = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "org-pandoc";
- version = "20130730.350";
+ version = "20130729.2050";
src = fetchFromGitHub {
owner = "robtillotson";
repo = "org-pandoc";
@@ -43460,7 +44102,7 @@
sha256 = "022qqas919aziq4scs5j1wdbvd0qyw8kkirn2vzfb5k2fjl8z7iq";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/org-pandoc";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/d2952138e5c4d0a075925ed2ee17daf941deaee2/recipes/org-pandoc";
sha256 = "1r6j6rkwfv7fv7kp73gh1bdz3y5ffwk5f2wyv4mpxs885cfbsm8v";
name = "org-pandoc";
};
@@ -43473,14 +44115,14 @@
org-password-manager = callPackage ({ fetchgit, fetchurl, lib, melpaBuild, org, s }:
melpaBuild {
pname = "org-password-manager";
- version = "20160501.351";
+ version = "20160430.2051";
src = fetchgit {
url = "https://git.leafac.com/leafac/org-password-manager";
rev = "5dffcd5f7d7f1852fdd31a193bea5c70ea130082";
sha256 = "023xsyvppq771yvxd9kqhn9lffhr83sfb0h9g405ayfjys94m2xd";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/org-password-manager";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/5a8ee7c233b8dca97fd7a4a0527657050714286e/recipes/org-password-manager";
sha256 = "021yhp417b9c8cjh8ynmz2fqyplpr2qvc0djxf74kd8lhn4pl397";
name = "org-password-manager";
};
@@ -43493,7 +44135,7 @@
org-pdfview = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, org, pdf-tools }:
melpaBuild {
pname = "org-pdfview";
- version = "20160125.2154";
+ version = "20160125.1454";
src = fetchFromGitHub {
owner = "markus1189";
repo = "org-pdfview";
@@ -43501,7 +44143,7 @@
sha256 = "16z44kdsg8w1p27fsi72k8wqr35xbb0777rq7h7swv6j2jn1b6hc";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/org-pdfview";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/aadf708e55ddfe13d93d124681a5e6f97a690d79/recipes/org-pdfview";
sha256 = "1z4gb5lw7ngphixw06b5484kwlxbc098w2xshzml5sywr16a4iab";
name = "org-pdfview";
};
@@ -43514,7 +44156,7 @@
org-pomodoro = callPackage ({ alert, cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "org-pomodoro";
- version = "20151217.1453";
+ version = "20151217.753";
src = fetchFromGitHub {
owner = "lolownia";
repo = "org-pomodoro";
@@ -43522,7 +44164,7 @@
sha256 = "015idpk66835jdg1sbvpksyr07xk4vn17z8cng2qw87fss688ihb";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/org-pomodoro";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/e54e77c5619b56e9b488b3fe8761188b6b3b4198/recipes/org-pomodoro";
sha256 = "1vdi07hrhniyhhvg0hcr5mlixy6bjynvwm89z2lvfyvnnxpx0r27";
name = "org-pomodoro";
};
@@ -43535,7 +44177,7 @@
org-present = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, org }:
melpaBuild {
pname = "org-present";
- version = "20141110.256";
+ version = "20141109.1956";
src = fetchFromGitHub {
owner = "rlister";
repo = "org-present";
@@ -43543,7 +44185,7 @@
sha256 = "1n9magg7r7xnw16d43fh6nzjf42s70l3mxq6ph727zi4lz5ngmfm";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/org-present";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/aba18f15fbaab115456e6afc9433074558a379f5/recipes/org-present";
sha256 = "09h0cjqjwhqychyrdv1hmiyak677vgf1b94392sdsq3ns70zyjk7";
name = "org-present";
};
@@ -43553,22 +44195,22 @@
license = lib.licenses.free;
};
}) {};
- org-projectile = callPackage ({ dash, fetchFromGitHub, fetchurl, lib, melpaBuild, projectile }:
+ org-projectile = callPackage ({ dash, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, projectile }:
melpaBuild {
pname = "org-projectile";
- version = "20160521.14";
+ version = "20160617.1406";
src = fetchFromGitHub {
owner = "IvanMalison";
repo = "org-projectile";
- rev = "13b94ad1ac40130df0e46c53fe982734ad790447";
- sha256 = "03f82pnaifx79v05irzdn5vhhzsv8b068dawva9w5i7x8na01k6h";
+ rev = "9e7453874e472ade60b95af44167d5a6d4e24317";
+ sha256 = "0nccb2w3zjgx2w2x207w3100c7c4d1ii22j1qaz3v623d7azn0qq";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/org-projectile";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/3dde8c06c968d4375926d269150a16b31c3a840e/recipes/org-projectile";
sha256 = "078s77wms1n1b29mrn6x25sksfjad0yns51gmahzd7hlgp5d56dm";
name = "org-projectile";
};
- packageRequires = [ dash projectile ];
+ packageRequires = [ dash emacs projectile ];
meta = {
homepage = "https://melpa.org/#/org-projectile";
license = lib.licenses.free;
@@ -43577,7 +44219,7 @@
org-protocol-jekyll = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "org-protocol-jekyll";
- version = "20151119.1738";
+ version = "20151119.1038";
src = fetchFromGitHub {
owner = "vonavi";
repo = "org-protocol-jekyll";
@@ -43585,7 +44227,7 @@
sha256 = "1jzp65sf1am6pz533kg1z666h4jlynvjyx1mf24gyksiiwdhypsy";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/org-protocol-jekyll";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/6d1ee7c75da91fcf303ea89d148a05ac1e58e23e/recipes/org-protocol-jekyll";
sha256 = "18wg489n2d1sx9jk00ki6p2rxkqz67kqwnmy2kb1ga1rmb6x9wfs";
name = "org-protocol-jekyll";
};
@@ -43598,7 +44240,7 @@
org-random-todo = callPackage ({ alert, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "org-random-todo";
- version = "20160208.1326";
+ version = "20160208.626";
src = fetchFromGitHub {
owner = "unhammer";
repo = "org-random-todo";
@@ -43606,7 +44248,7 @@
sha256 = "06apaa8pjrw14g2gyjpxjd6bjv1w0md4vl5jx78krcyr0bcc08mx";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/org-random-todo";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/80fad6244ea3e5bdf7f448c9f62374fae45bae78/recipes/org-random-todo";
sha256 = "0yflppdbkfn2phd21zkjdlidzasfm846mzniay83v3akz0qx31lr";
name = "org-random-todo";
};
@@ -43619,7 +44261,7 @@
org-readme = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, header2, http-post-simple, lib, lib-requires, melpaBuild, yaoddmuse }:
melpaBuild {
pname = "org-readme";
- version = "20151204.1317";
+ version = "20151204.617";
src = fetchFromGitHub {
owner = "mattfidler";
repo = "org-readme";
@@ -43627,7 +44269,7 @@
sha256 = "1q3s12s0ll7jhrnd3adkaxv7ff69ppprv0pyl5f6gy8y51y63k8d";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/org-readme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/317318e6071b174e0ec6302ea4f526976d837db4/recipes/org-readme";
sha256 = "1qqbsgspd006gy0kc614w7bg6na0ygmflvqkmw47899pbgj81hxh";
name = "org-readme";
};
@@ -43646,7 +44288,7 @@
org-redmine = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "org-redmine";
- version = "20160205.1244";
+ version = "20160205.544";
src = fetchFromGitHub {
owner = "gongo";
repo = "org-redmine";
@@ -43654,7 +44296,7 @@
sha256 = "0q26knckq213r885i5947970qagjmb7ybs4ag0ignls4dzbqlbmz";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/org-redmine";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/017a9dd8029d083ca0c1307f2b83be187c7615e5/recipes/org-redmine";
sha256 = "0y2pm18nnyzm9wjc0j15v46nf3xi7a0wvspfzi360qv08i54skqv";
name = "org-redmine";
};
@@ -43664,22 +44306,32 @@
license = lib.licenses.free;
};
}) {};
- org-ref = callPackage ({ dash, emacs, f, fetchFromGitHub, fetchurl, hydra, key-chord, lib, melpaBuild, parsebib, s }:
+ org-ref = callPackage ({ dash, emacs, f, fetchFromGitHub, fetchurl, helm, helm-bibtex, hydra, ivy, key-chord, lib, melpaBuild, s }:
melpaBuild {
pname = "org-ref";
- version = "20160527.2031";
+ version = "20160702.1107";
src = fetchFromGitHub {
owner = "jkitchin";
repo = "org-ref";
- rev = "839606e8d6248a4c719828a703a32be3edcdfb64";
- sha256 = "0psyrdi1kd1gykvcf962fzb3240s31zg9rh4yn5kvazhk2dc1qqm";
+ rev = "e817fd7961dd457d9d9b1d6a4390e65257d040e6";
+ sha256 = "1hp978v64sr08l2g7zcx7rcbjamz3k3bni07lhv78mj94jd0banc";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/org-ref";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/550e4dcef2f74fbd96474561c1cb6c4fd80091fe/recipes/org-ref";
sha256 = "087isxf3z8cgmmniaxr3lpq9jg3sriw88dwp4f0ky286hlvgzw08";
name = "org-ref";
};
- packageRequires = [ dash emacs f hydra key-chord parsebib s ];
+ packageRequires = [
+ dash
+ emacs
+ f
+ helm
+ helm-bibtex
+ hydra
+ ivy
+ key-chord
+ s
+ ];
meta = {
homepage = "https://melpa.org/#/org-ref";
license = lib.licenses.free;
@@ -43688,7 +44340,7 @@
org-repo-todo = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "org-repo-todo";
- version = "20160307.1929";
+ version = "20160307.1229";
src = fetchFromGitHub {
owner = "waymondo";
repo = "org-repo-todo";
@@ -43696,7 +44348,7 @@
sha256 = "0as82hf81czks9fcmhy9wjwl8d4mbylrm13c02y8abp0am41r28f";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/org-repo-todo";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/d17b602004628e17dae0f46f2b33be0afb05f729/recipes/org-repo-todo";
sha256 = "0l5ns1hs3i4dhrpmvzl34zc9zysgjkfa7j8apbda59n9jdvml5v1";
name = "org-repo-todo";
};
@@ -43709,7 +44361,7 @@
org-rtm = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, rtm }:
melpaBuild {
pname = "org-rtm";
- version = "20160214.1336";
+ version = "20160214.636";
src = fetchFromGitHub {
owner = "pmiddend";
repo = "org-rtm";
@@ -43717,7 +44369,7 @@
sha256 = "1hn8y9933x5x6lxpijcqx97p3hln69ahabqdsl2bmzda3mxm4bn2";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/org-rtm";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/0acb202acc25420274a1b9e639f34f9878a61e83/recipes/org-rtm";
sha256 = "1paiy5zmdlxb3a1cjk9d30mqbl60bkairw6xkix2qw36p07jwlj5";
name = "org-rtm";
};
@@ -43730,7 +44382,7 @@
org-sync = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, org }:
melpaBuild {
pname = "org-sync";
- version = "20150817.1654";
+ version = "20150817.954";
src = fetchFromGitHub {
owner = "arbox";
repo = "org-sync";
@@ -43738,7 +44390,7 @@
sha256 = "14zn0b8qs740ls1069kg2lwm0b9yc4qv525fg8km0hgi0yp8qw7z";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/org-sync";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/923ddbaf1a158caac5e666a396a8dc66969d204a/recipes/org-sync";
sha256 = "0n8fz2d1vg9r8dszgasbnb6pgaxr2i8mqrp953prf1nhmfpjpxad";
name = "org-sync";
};
@@ -43751,7 +44403,7 @@
org-table-comment = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "org-table-comment";
- version = "20120209.1951";
+ version = "20120209.1251";
src = fetchFromGitHub {
owner = "mattfidler";
repo = "org-table-comment.el";
@@ -43759,7 +44411,7 @@
sha256 = "1qx3kd02sxs9k7adlvdlbmyhkc5kr7ni5lw4gxjw3nphnc536bkb";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/org-table-comment";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/2c1f08c41969bc8a7104fb914564b4f6cab667e2/recipes/org-table-comment";
sha256 = "1d40vl8aa1x27z4gwnkzxgrqp7vd3ln2pc445ijjxp1wr8bjxvdz";
name = "org-table-comment";
};
@@ -43772,7 +44424,7 @@
org-tfl = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, org }:
melpaBuild {
pname = "org-tfl";
- version = "20160407.2340";
+ version = "20160407.1640";
src = fetchFromGitHub {
owner = "storax";
repo = "org-tfl";
@@ -43780,7 +44432,7 @@
sha256 = "1qz1qhd7v6ynmvz7j1xscz85z6zwy9dcarwhbz020l4bk4g9zf94";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/org-tfl";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/d9e97f2fee577c7e3fb42e4ca9d4f422c8907faf/recipes/org-tfl";
sha256 = "1rqmmw0222vbxfn5wxq9ni2j813x92lpv99jjszqjvgnf2rkhjhf";
name = "org-tfl";
};
@@ -43793,7 +44445,7 @@
org-themis = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "org-themis";
- version = "20160122.504";
+ version = "20160121.2204";
src = fetchFromGitHub {
owner = "zellio";
repo = "org-themis";
@@ -43801,7 +44453,7 @@
sha256 = "1apd5yyr12skagma7xpzrh22rhplmhhv0pma4zf5b0i6nkxy06j2";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/org-themis";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/60e0efe4f201ed96e90c437e3e7205e0344d4676/recipes/org-themis";
sha256 = "08rajz5y7h88fh94s2ad0f66va4vi31k9hwdv8p212bs276rp7ln";
name = "org-themis";
};
@@ -43814,7 +44466,7 @@
org-time-budgets = callPackage ({ alert, cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "org-time-budgets";
- version = "20151111.901";
+ version = "20151111.201";
src = fetchFromGitHub {
owner = "leoc";
repo = "org-time-budgets";
@@ -43822,7 +44474,7 @@
sha256 = "04adkz950vvwyzy3da468nnqsknpr5kw5369w2yqhnph16cwwfxb";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/org-time-budgets";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/776b58b433ab7dde5870300d288c3e6734fc32c0/recipes/org-time-budgets";
sha256 = "0r8km586n6xdnjha7xnzlh03nw1dp066hydaz8kxfmhvygl9cpah";
name = "org-time-budgets";
};
@@ -43835,7 +44487,7 @@
org-toodledo = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, request-deferred }:
melpaBuild {
pname = "org-toodledo";
- version = "20150301.1213";
+ version = "20150301.513";
src = fetchFromGitHub {
owner = "myuhe";
repo = "org-toodledo";
@@ -43843,7 +44495,7 @@
sha256 = "014337wimvzy0rxh2p2c647ly215zcyhgym2hcljkdriv15cafna";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/org-toodledo";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/4956fb6c5f1076a02f07d0f953e846fee39bfaa6/recipes/org-toodledo";
sha256 = "0c7qr0jsc4iyrwkc22xp9nmk6984v7q1k0rvpd62m07lb5gvbiq3";
name = "org-toodledo";
};
@@ -43856,15 +44508,15 @@
org-tracktable = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "org-tracktable";
- version = "20160420.1545";
+ version = "20160621.1327";
src = fetchFromGitHub {
owner = "tty-tourist";
repo = "org-tracktable";
- rev = "2a2a81ffc2807b80559bdae5840a9b7529c8fd3f";
- sha256 = "0jh9i41zqs9rvghfjhp5nl2ycav1pj1yv2hsr6skwqdpkwggvvmq";
+ rev = "b39fc45a795446b3675dd4a7c809be7bf315901b";
+ sha256 = "11q85blkrfs4db0mpgn7wqfrb3ydcw4v2ccy02ba0m5dsign4wbv";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/org-tracktable";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/57263d996e321f842d0741898370390146606c63/recipes/org-tracktable";
sha256 = "0mngf9q2ffxq32cgng0xl30661mj15wmr9y4hr3xddj626kxrp00";
name = "org-tracktable";
};
@@ -43877,7 +44529,7 @@
org-transform-tree-table = callPackage ({ dash, fetchFromGitHub, fetchurl, lib, melpaBuild, s }:
melpaBuild {
pname = "org-transform-tree-table";
- version = "20150110.1533";
+ version = "20150110.833";
src = fetchFromGitHub {
owner = "jplindstrom";
repo = "emacs-org-transform-tree-table";
@@ -43885,7 +44537,7 @@
sha256 = "1h15fr16kgbyrxambmk4hsmha6hx4c4yqkccb82g3wlvzmnqj5x3";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/org-transform-tree-table";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/afca0e652a993848610606866609edbf2f5f76ae/recipes/org-transform-tree-table";
sha256 = "0n68cw769nk90ms6w1w6cc1nxjwn1navkz56mf11bsiqvsk3km7r";
name = "org-transform-tree-table";
};
@@ -43898,7 +44550,7 @@
org-tree-slide = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "org-tree-slide";
- version = "20160514.825";
+ version = "20160514.125";
src = fetchFromGitHub {
owner = "takaxp";
repo = "org-tree-slide";
@@ -43906,7 +44558,7 @@
sha256 = "0b97jqskn5c2cbah3qj9bi5was31sijrp01dca36g5y53lpz7n79";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/org-tree-slide";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/6160c259bc4bbcf3b98c220222430f798ee6463f/recipes/org-tree-slide";
sha256 = "0v857zplv0wdbg4li667v2p5pn5zcf9fgbqcwa75x8babilkl6jn";
name = "org-tree-slide";
};
@@ -43919,15 +44571,15 @@
org-trello = callPackage ({ dash, dash-functional, deferred, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, request-deferred, s }:
melpaBuild {
pname = "org-trello";
- version = "20160604.1125";
+ version = "20160604.845";
src = fetchFromGitHub {
owner = "org-trello";
repo = "org-trello";
- rev = "49b65ea4e4dcf3c4321fd19468822591cc46122d";
- sha256 = "1149ikd134yl6jcxswnb65xfg7axyj9kjckimnvgl9hp4q6b1vb0";
+ rev = "dfb98150207b13c7771d0c0b8209e0503cd99cd6";
+ sha256 = "1d2bi29m8kxhp46slg904frgmlc6ajqagxjrhxlbdmlxrp18s44g";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/org-trello";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/188ed8dc1ce2704838f7a2883c41243598150a46/recipes/org-trello";
sha256 = "14lq8nn1x6qb3jx518zaaz5582m4npd593w056igqhahkfm0qp8i";
name = "org-trello";
};
@@ -43947,7 +44599,7 @@
org-vcard = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "org-vcard";
- version = "20151214.722";
+ version = "20151214.22";
src = fetchFromGitHub {
owner = "flexibeast";
repo = "org-vcard";
@@ -43955,7 +44607,7 @@
sha256 = "1m2xdp6wfg11wi7s4i675c3m5qancm8bpizcf380r6vmkcdfkrdy";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/org-vcard";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/df860814a09c376c9a6a2c5e7f528bbae29810b2/recipes/org-vcard";
sha256 = "0l6azshvzl1wws582njqr3qx4h73gwrdqwa3jcic1qbs9hg2l4yl";
name = "org-vcard";
};
@@ -43968,7 +44620,7 @@
org-wc = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "org-wc";
- version = "20160205.215";
+ version = "20160204.1915";
src = fetchFromGitHub {
owner = "dato";
repo = "org-wc";
@@ -43976,7 +44628,7 @@
sha256 = "08yww77697kck1ld9xcrcx8amqdh28rdc4fsavp5d3my78qk7rac";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/org-wc";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/e2f0d29fb0c046d9f7c32215ea58897147f3b291/recipes/org-wc";
sha256 = "1sa9fcy0bnn06swwq2gfrgmppd6dsbmw2mq0v73mizg3l6has1zb";
name = "org-wc";
};
@@ -43989,7 +44641,7 @@
org-webpage = callPackage ({ cl-lib ? null, dash, fetchFromGitHub, fetchurl, ht, htmlize, lib, melpaBuild, mustache, org, web-server }:
melpaBuild {
pname = "org-webpage";
- version = "20160307.926";
+ version = "20160307.226";
src = fetchFromGitHub {
owner = "tumashu";
repo = "org-webpage";
@@ -43997,7 +44649,7 @@
sha256 = "18idnl2hx1s5hv1xm5akd35favnjnj2pxw6h00956lrapg01d1fn";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/org-webpage";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/ec6c05bca203460d85bf139038891f78354fb73f/recipes/org-webpage";
sha256 = "0vwv8cv38gx8rnfskbmnaf8y8sffjqy1408655bwhjz6dp69qmah";
name = "org-webpage";
};
@@ -44010,7 +44662,7 @@
org-wunderlist = callPackage ({ alert, cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, org, request-deferred, s }:
melpaBuild {
pname = "org-wunderlist";
- version = "20150818.413";
+ version = "20150817.2113";
src = fetchFromGitHub {
owner = "myuhe";
repo = "org-wunderlist.el";
@@ -44018,7 +44670,7 @@
sha256 = "1cagmwl3acanwc2nky7m61cawi0i0x703sjc6zlw968lacyw86wa";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/org-wunderlist";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/44019e5d9e3d0f3e2cf76fa5828e1f953fd5e60b/recipes/org-wunderlist";
sha256 = "08zg3wgr80rp89c53ffqzz22ws9bp62a1m74xvxa74x6nq9i4xl0";
name = "org-wunderlist";
};
@@ -44031,7 +44683,7 @@
org2blog = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, metaweblog, org, xml-rpc }:
melpaBuild {
pname = "org2blog";
- version = "20160503.321";
+ version = "20160502.2021";
src = fetchFromGitHub {
owner = "punchagan";
repo = "org2blog";
@@ -44039,7 +44691,7 @@
sha256 = "1bqiq27ln1pl40b9dms05nla4kf72s80g9ilvrgqflxgl36gxws7";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/org2blog";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/8b57b6d755b3855ccfe0a90eada939fb7a852b40/recipes/org2blog";
sha256 = "0ancvn4ji4552k4nfd2ijclsd027am93ngg241ll8f6h6k0wpmzq";
name = "org2blog";
};
@@ -44052,7 +44704,7 @@
org2issue = callPackage ({ emacs, fetchFromGitHub, fetchurl, gh, lib, melpaBuild, org, ox-gfm, s }:
melpaBuild {
pname = "org2issue";
- version = "20160427.318";
+ version = "20160426.2018";
src = fetchFromGitHub {
owner = "lujun9972";
repo = "org2issue";
@@ -44060,7 +44712,7 @@
sha256 = "1lvwkvzqgy9nlz7zmqfl9j8cairjfv3vknpzcqp6rzp6hkq04zk5";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/org2issue";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/ad1759854c3bd302aa353dea92cf462e981aff2f/recipes/org2issue";
sha256 = "1qd5l9ga26smgp1gkc8r9ja2n974kq1jf2z876s5v0489ipa59bz";
name = "org2issue";
};
@@ -44073,7 +44725,7 @@
org2jekyll = callPackage ({ dash-functional, deferred, fetchFromGitHub, fetchurl, kv, lib, melpaBuild, s }:
melpaBuild {
pname = "org2jekyll";
- version = "20160519.1904";
+ version = "20160519.1204";
src = fetchFromGitHub {
owner = "ardumont";
repo = "org2jekyll";
@@ -44081,7 +44733,7 @@
sha256 = "1gdv1dwmwhmpcpcvf8fmsjg3mli3l27inlql13m98h7vpv7rzqvb";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/org2jekyll";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/48a1e5bd5e338bd3593f004f95b6fbb12595bfb7/recipes/org2jekyll";
sha256 = "1j9d6xf5nsakifxwd4zmjc29lbj46ffn3z109k2y2yhz7q3r9hzv";
name = "org2jekyll";
};
@@ -44094,15 +44746,15 @@
organic-green-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "organic-green-theme";
- version = "20160531.1218";
+ version = "20160610.634";
src = fetchFromGitHub {
owner = "kostafey";
repo = "organic-green-theme";
- rev = "a3cb1839044749fccc6c7c797594db6792f507c6";
- sha256 = "1fd4qnfga4rjzdnjc3h91x3wbab1d2gd3dm3vg1xwy3c6wqlyhgv";
+ rev = "57b86a32245f948497e64a4f32f6c62b96396b94";
+ sha256 = "0jplnbc5hhv1bd2w8dvwny00hwl5n5idyq0zri9vfavmabm7lm5k";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/organic-green-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/9383ef5f0372724b34f4bb9173ef8ccbb773e19e/recipes/organic-green-theme";
sha256 = "1fdj3dpcdqx0db5q8dlxag6pr2qn4yiz1hmg3c7dkmh51n85ssw2";
name = "organic-green-theme";
};
@@ -44115,7 +44767,7 @@
orgbox = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild, org }:
melpaBuild {
pname = "orgbox";
- version = "20140529.326";
+ version = "20140528.2026";
src = fetchFromGitHub {
owner = "yasuhito";
repo = "orgbox";
@@ -44123,7 +44775,7 @@
sha256 = "0hwmr67nky9xp5xlrkp54nw6b72d29lmna28dnbgqs2i5rccbk55";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/orgbox";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/b1948eca5a18f35b61b9a0baf532753fd105ba3a/recipes/orgbox";
sha256 = "12wfqlpjh9nr7zgqs4h8kmfsk825n68qcbn8z2fw2mpshg3nj7l8";
name = "orgbox";
};
@@ -44136,7 +44788,7 @@
orgit = callPackage ({ dash, emacs, fetchFromGitHub, fetchurl, lib, magit, melpaBuild, org }:
melpaBuild {
pname = "orgit";
- version = "20160119.2324";
+ version = "20160119.1624";
src = fetchFromGitHub {
owner = "magit";
repo = "orgit";
@@ -44144,7 +44796,7 @@
sha256 = "1wxxdx3c5qacsii4kysk438cjr1hnmpir78kp6xgk9xw5g9snlnj";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/orgit";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/73b5f7c44c90540e4cbdc003d9881f0ac22cc7bc/recipes/orgit";
sha256 = "0askccb3h98v8gmylwxaph3gbyv5b1sp4slws76aqz1kq9x0jy7w";
name = "orgit";
};
@@ -44157,15 +44809,15 @@
orglink = callPackage ({ dash, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, org }:
melpaBuild {
pname = "orglink";
- version = "20160521.1630";
+ version = "20160606.607";
src = fetchFromGitHub {
owner = "tarsius";
repo = "orglink";
- rev = "3a0f6b12a69cc9e09285d317277b0dc6e1623f8a";
- sha256 = "07ggg2mvvmv40h3gqlcxwrxsyrpvn2pffdjrzbh7yprm5mxynbjc";
+ rev = "4e3e6d920a74fd32a57d5722f81293428e9d8a46";
+ sha256 = "0yjnnrrcvbsq41dpw8cz8gv6q3jd626y1k4fgzsimyciz9l23w11";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/orglink";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/be9b8e97cda6af91d54d402887f225e3a0caf055/recipes/orglink";
sha256 = "0ldrvvqs3hlazj0dch162gsbnbxcg6fgrxid8p7w9gj19vbcl52b";
name = "orglink";
};
@@ -44178,7 +44830,7 @@
orglue = callPackage ({ epic, fetchFromGitHub, fetchurl, lib, melpaBuild, org, org-mac-link }:
melpaBuild {
pname = "orglue";
- version = "20150430.1413";
+ version = "20150430.713";
src = fetchFromGitHub {
owner = "yoshinari-nomura";
repo = "orglue";
@@ -44186,7 +44838,7 @@
sha256 = "1w0hadpslxcjn29yxl9i37sja4qf4kp7ffjpwij5hs73r518c2z6";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/orglue";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/7f022fd455e69f1bffdb9ef3273a91cc7d7a3ab9/recipes/orglue";
sha256 = "14g4q2k9zjzipzrp5mg72s40b0rwiaixgq3rvi15wh4vvcw5xajn";
name = "orglue";
};
@@ -44199,7 +44851,7 @@
orgtbl-aggregate = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "orgtbl-aggregate";
- version = "20160421.1626";
+ version = "20160421.926";
src = fetchFromGitHub {
owner = "tbanel";
repo = "orgaggregate";
@@ -44207,7 +44859,7 @@
sha256 = "0zh8n8jb479ilmz88kj0q5wx8a9zqkfqds0rr8jbk2rqmj6j72v3";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/orgtbl-aggregate";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/bf64b53c9d49718a8ffc39b14c90539b36840280/recipes/orgtbl-aggregate";
sha256 = "0gnyjwn6jshs8bzdssm2xppg2s9p2x3rrhp523q39aydskc6ggc9";
name = "orgtbl-aggregate";
};
@@ -44220,7 +44872,7 @@
orgtbl-ascii-plot = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "orgtbl-ascii-plot";
- version = "20151215.2251";
+ version = "20151215.1551";
src = fetchFromGitHub {
owner = "tbanel";
repo = "orgtblasciiplot";
@@ -44228,7 +44880,7 @@
sha256 = "1vbnp37xz0nrpyi0hah345928zsb1xw915mdb0wybq1fzn93mp1z";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/orgtbl-ascii-plot";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/21b02596ac4b48e592ebe966475b164866bb9d6e/recipes/orgtbl-ascii-plot";
sha256 = "1ssjbdprbn34nsfx1xjc382l2195rbh8mybpn31d4kcjx6fqf78h";
name = "orgtbl-ascii-plot";
};
@@ -44241,7 +44893,7 @@
orgtbl-join = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "orgtbl-join";
- version = "20150121.2346";
+ version = "20150121.1646";
src = fetchFromGitHub {
owner = "tbanel";
repo = "orgtbljoin";
@@ -44249,7 +44901,7 @@
sha256 = "06nc82wiha11i79izqil53dkd95fl55nb5m739gyyzvx3sksb0dg";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/orgtbl-join";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/e43ae8aaa54113f53b51aea3fb2656d608d1032c/recipes/orgtbl-join";
sha256 = "1kq2h0lb521z8q2xb9bsi37xzzdsa0hw4mm3qkzidi5j9fi3apf1";
name = "orgtbl-join";
};
@@ -44262,7 +44914,7 @@
orgtbl-show-header = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "orgtbl-show-header";
- version = "20141023.1037";
+ version = "20141023.337";
src = fetchFromGitHub {
owner = "DamienCassou";
repo = "orgtbl-show-header";
@@ -44270,7 +44922,7 @@
sha256 = "161bsmgrbdhb73k36gqb5b96mf0y0sl8q9sjg81vx86bs9sbkddw";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/orgtbl-show-header";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/9c5ea906b1d642405ca532d89dbb32cf79f53582/recipes/orgtbl-show-header";
sha256 = "1xgqjg3lmcczdblxaka47cc1ad8p8jhyb2nqwq0qnbqw46fqjp3k";
name = "orgtbl-show-header";
};
@@ -44283,15 +44935,15 @@
origami = callPackage ({ dash, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, s }:
melpaBuild {
pname = "origami";
- version = "20160313.2213";
+ version = "20160703.1028";
src = fetchFromGitHub {
owner = "gregsexton";
repo = "origami.el";
- rev = "4e98f118c3e292c68e3739ac0f9f1b1fce0bac0e";
- sha256 = "18f5b6902zqayhhcchhsvszw1kryvhkhpc5vv0s187dkj38agsv3";
+ rev = "714fba2a9cf65658b73fbac6b8526b4dbba18c56";
+ sha256 = "0dmw59vfbm8a04xvrq1gbfaj5z7wad83zi4g7bnixazbfcc9xpwr";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/origami";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/b816be227dfc7330292a50346c4bb37394d3e998/recipes/origami";
sha256 = "0rkb55zcvsgxzp190vrnbzdfbcjd8zi6vhbhwpqxi0qmyq6a08pr";
name = "origami";
};
@@ -44304,7 +44956,7 @@
osx-browse = callPackage ({ browse-url-dwim, fetchFromGitHub, fetchurl, lib, melpaBuild, string-utils }:
melpaBuild {
pname = "osx-browse";
- version = "20140508.2241";
+ version = "20140508.1541";
src = fetchFromGitHub {
owner = "rolandwalker";
repo = "osx-browse";
@@ -44312,7 +44964,7 @@
sha256 = "1iybrhp607a5rb3ynlaf8w2x9wdgdbril702z44dgcg3wxih2zy1";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/osx-browse";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/081aa3e1d50c2c9e5a9b9ce0716258a93279f605/recipes/osx-browse";
sha256 = "06rfzq2hxhzg6jh2zs28r7ffxwlq40nz954j13ly8403c7rmbrfm";
name = "osx-browse";
};
@@ -44325,7 +44977,7 @@
osx-clipboard = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "osx-clipboard";
- version = "20141012.917";
+ version = "20141012.217";
src = fetchFromGitHub {
owner = "joddie";
repo = "osx-clipboard-mode";
@@ -44333,7 +44985,7 @@
sha256 = "1ykn48src7qhx9cmpjkaqsz7h36p75kkq1h9wlcpv5fhaky2d4n4";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/osx-clipboard";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/71b85cd2b2122a2742f919d10bfcb054b681e61e/recipes/osx-clipboard";
sha256 = "0gjgr451v6rlyarz96v6h8kfbvkk7npvhgvkgwdi0bjighrhlv4f";
name = "osx-clipboard";
};
@@ -44346,15 +44998,15 @@
osx-dictionary = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "osx-dictionary";
- version = "20160215.1626";
+ version = "20160628.311";
src = fetchFromGitHub {
owner = "xuchunyang";
repo = "osx-dictionary.el";
- rev = "3b2e1f0fbcf60453947bba00c4d5de96b4f97a3a";
- sha256 = "04fh4i8mydmvq58hd60lf0dglpcjqgzpwk93wqss72kpifwh68vc";
+ rev = "2701c76a641cb3ab3c33a330bf48adfb08e17061";
+ sha256 = "10d6mhb541gz042q02ysdazc2vv9wh1m2a9i35akc15978dwd5yv";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/osx-dictionary";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/ae4467ad646d663f0266f39a76f9764004903424/recipes/osx-dictionary";
sha256 = "13033fxc5vjd1f7mm6znmprcp3mwxbvblb2d25shr8d4imqqhv82";
name = "osx-dictionary";
};
@@ -44367,15 +45019,15 @@
osx-lib = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "osx-lib";
- version = "20160402.836";
+ version = "20160622.1621";
src = fetchFromGitHub {
owner = "raghavgautam";
repo = "osx-lib";
- rev = "c4a24288ea2e69d752e6adedfdf8f7d596c757ad";
- sha256 = "1wbmqxx1qzjc5kxzkwx7c2wvq71iic1f5f29lj6ckpjn743dnb0d";
+ rev = "e353b27bd7504d20094b6656e898c8312f750f29";
+ sha256 = "178328s5rfbypr6xriwww0f84bxxjd98vcm74zl6yyy7cfggjzmx";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/osx-lib";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/b42ae666e3511752f5138927e7bf7965bd9f7ee5/recipes/osx-lib";
sha256 = "12wvki8jhzqsanxv5yqzjmfx6ifwz9ab9zh6r8nss86bk8864ix4";
name = "osx-lib";
};
@@ -44388,7 +45040,7 @@
osx-location = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "osx-location";
- version = "20150613.1117";
+ version = "20150613.417";
src = fetchFromGitHub {
owner = "purcell";
repo = "osx-location";
@@ -44396,7 +45048,7 @@
sha256 = "1csnxpsfnv9lv07kgvc60qx5c33sshmnz60p3qjz7ym7rnjy9b5x";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/osx-location";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/8673dafb02a8d70c278bfd2c063f40992defe3a3/recipes/osx-location";
sha256 = "1p12mmrw70p3b04zlprkdxdfnb7m3vkm6gci3fwhr5zyfvwxvn0c";
name = "osx-location";
};
@@ -44409,7 +45061,7 @@
osx-org-clock-menubar = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "osx-org-clock-menubar";
- version = "20150205.2211";
+ version = "20150205.1511";
src = fetchFromGitHub {
owner = "jordonbiondo";
repo = "osx-org-clock-menubar";
@@ -44417,7 +45069,7 @@
sha256 = "1rgykby1ysbapq53lnk9yy04r9q4qirnzs2abgvz7g2qjq5fyzag";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/osx-org-clock-menubar";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/cade09308a6b8c998800f2ad2592ad6ea79f65ca/recipes/osx-org-clock-menubar";
sha256 = "1y5qxslxl0d93f387nyj8zngz5nh1p4rzdfx0lnbvya6shfaxaf6";
name = "osx-org-clock-menubar";
};
@@ -44430,7 +45082,7 @@
osx-plist = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "osx-plist";
- version = "20101130.1348";
+ version = "20101130.648";
src = fetchFromGitHub {
owner = "emacsmirror";
repo = "osx-plist";
@@ -44438,7 +45090,7 @@
sha256 = "0830kkmvc3ss7ygqfwz3j75s7mhxfxyadaksrp0v2cc4y6wn6nfv";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/osx-plist";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/f3686dc818bd12be247bad915c01736a95690041/recipes/osx-plist";
sha256 = "0zaqmhf5nm6jflwgxnknhi8zn97vhsia2xv8jm677l0h23pk2va8";
name = "osx-plist";
};
@@ -44451,7 +45103,7 @@
osx-pseudo-daemon = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "osx-pseudo-daemon";
- version = "20131027.230";
+ version = "20131026.1930";
src = fetchFromGitHub {
owner = "DarwinAwardWinner";
repo = "osx-pseudo-daemon";
@@ -44459,7 +45111,7 @@
sha256 = "1j601gzizxjsvkw6bvih4a49iq05yfkw0ni77xbc5klc7x7s80hk";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/osx-pseudo-daemon";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/25a3562788b541e8682500911d7da89d209ab84f/recipes/osx-pseudo-daemon";
sha256 = "150fxj2phj5axnh5i8ws5fv2qzzmpyisch452wgxb604p56j7vy8";
name = "osx-pseudo-daemon";
};
@@ -44472,7 +45124,7 @@
osx-trash = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "osx-trash";
- version = "20160520.1500";
+ version = "20160520.800";
src = fetchFromGitHub {
owner = "lunaryorn";
repo = "osx-trash.el";
@@ -44480,7 +45132,7 @@
sha256 = "0f4md49175iyrgzv4pijf7qbxyddcm2yscrrlh91pg410la7fysk";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/osx-trash";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/1f4c86e5b86df6c5c2c484f041fa3e434bbfbbb1/recipes/osx-trash";
sha256 = "1f6pi53mhp2pvrfjm8544lqqj36gzpzxq245lzvv91lvqkxr9ysj";
name = "osx-trash";
};
@@ -44493,7 +45145,7 @@
otama = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "otama";
- version = "20160404.1232";
+ version = "20160404.532";
src = fetchFromGitHub {
owner = "yoshinari-nomura";
repo = "otama";
@@ -44501,7 +45153,7 @@
sha256 = "1jzyfvc25ls0l4kpxg6857ccynl1pzgxfif7bppz2nfmf99z4534";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/otama";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/53b1eaef5c8b408eb8fff838af1e0249c4fe9444/recipes/otama";
sha256 = "04ffyscldb2sn2n26ixrnc07ybvl7iclv2hi1kmhr5hdgxwpyjq9";
name = "otama";
};
@@ -44514,7 +45166,7 @@
outline-magic = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "outline-magic";
- version = "20150209.2326";
+ version = "20150209.1626";
src = fetchFromGitHub {
owner = "tj64";
repo = "outline-magic";
@@ -44522,7 +45174,7 @@
sha256 = "116cwlhn7s47rhivz6113lh8lvaz3bjb3ynjlbx9hyf7gq3nfnxn";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/outline-magic";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/a98ad2ef680eef541ee82e8a65ed73e524df98a1/recipes/outline-magic";
sha256 = "085yayzph3y7fh6pd5sdjdkhdcvwfzcyqd6y3xlbz7wni5ac6b5f";
name = "outline-magic";
};
@@ -44535,7 +45187,7 @@
outlined-elisp-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "outlined-elisp-mode";
- version = "20131108.1227";
+ version = "20131108.527";
src = fetchFromGitHub {
owner = "zk-phi";
repo = "outlined-elisp-mode";
@@ -44543,7 +45195,7 @@
sha256 = "0d9hfr4kb6rkhwacdn70bkfchgam26gj92zfyaqw77a2sgwcmwwv";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/outlined-elisp-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/ae918c301e1c0ae39574ae76d70059718724293b/recipes/outlined-elisp-mode";
sha256 = "165sivmv5h4nvh08ampq95x6b0bkzxgrdjbxjxlq6rv00vaidn7v";
name = "outlined-elisp-mode";
};
@@ -44556,7 +45208,7 @@
outorg = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "outorg";
- version = "20160327.1032";
+ version = "20160327.332";
src = fetchFromGitHub {
owner = "tj64";
repo = "outorg";
@@ -44564,7 +45216,7 @@
sha256 = "0szvynvw16vr7br95pssqkil0xnfdh46x8lgan4z9v6impdav0nf";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/outorg";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/d57762fe51a524731e228c80b4b2d25e827e5858/recipes/outorg";
sha256 = "04swss84p33a9baa4swqc1a9lfp6wziqrwa7vcyi3y0yzllx36cx";
name = "outorg";
};
@@ -44577,7 +45229,7 @@
outshine = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild, outorg }:
melpaBuild {
pname = "outshine";
- version = "20160416.1746";
+ version = "20160416.1046";
src = fetchFromGitHub {
owner = "tj64";
repo = "outshine";
@@ -44585,7 +45237,7 @@
sha256 = "1smfdfw0swvfbqlxi7nkrgbmfqhs0x47ky6xhgf38la1s6ivh29n";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/outshine";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/6dc02a576abb8e115f674a9d896f8bc932b7571b/recipes/outshine";
sha256 = "1ajddzcrnvfgx3xa5wm0bcll9dax52syg1p521mv0ffkld63jyfl";
name = "outshine";
};
@@ -44598,7 +45250,7 @@
ov = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "ov";
- version = "20150312.628";
+ version = "20150312.28";
src = fetchFromGitHub {
owner = "ShingoFukuyama";
repo = "ov.el";
@@ -44606,7 +45258,7 @@
sha256 = "1rk5pzm5wmdq68d99hhhbq8pq37bnph0dip5j2jnfj6zsw70whr2";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ov";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/18d8a10ba3018cb61924af3a1682b82f543f2d98/recipes/ov";
sha256 = "0d71mpv74cfxcnwixbrl90nr22cw4kv5sdgpny5wycvh6cgmd6qb";
name = "ov";
};
@@ -44619,7 +45271,7 @@
overseer = callPackage ({ dash, emacs, f, fetchFromGitHub, fetchurl, lib, melpaBuild, pkg-info }:
melpaBuild {
pname = "overseer";
- version = "20160518.843";
+ version = "20160518.143";
src = fetchFromGitHub {
owner = "tonini";
repo = "overseer.el";
@@ -44627,7 +45279,7 @@
sha256 = "0pzrsag2hxg4kys57w2ragk6kfrpilaamwrzw0czi53r6vmddfdp";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/overseer";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/82e6b86f20a2d2d687b13091da31150c467bf271/recipes/overseer";
sha256 = "04wfwcal051jrnmm5dga6vl4c9j10pm416586yxb8smi6fxws2jg";
name = "overseer";
};
@@ -44640,7 +45292,7 @@
owdriver = callPackage ({ fetchFromGitHub, fetchurl, lib, log4e, melpaBuild, smartrep, yaxception }:
melpaBuild {
pname = "owdriver";
- version = "20141011.1638";
+ version = "20141011.938";
src = fetchFromGitHub {
owner = "aki2o";
repo = "owdriver";
@@ -44648,7 +45300,7 @@
sha256 = "0f2psx4lq98l3q3fnibsfqxp2hvvwk7b30zjvjlry3bffg3l7pfk";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/owdriver";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/f3f9c1bb19345c6027a945e7f265632da1a391cb/recipes/owdriver";
sha256 = "0j8z7ynan0zj581x50gsi9lljkbi6bwmzpfyha3i6q8ch5qkdxfd";
name = "owdriver";
};
@@ -44661,7 +45313,7 @@
ox-asciidoc = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, org }:
melpaBuild {
pname = "ox-asciidoc";
- version = "20160120.1423";
+ version = "20160120.723";
src = fetchFromGitHub {
owner = "yashi";
repo = "org-asciidoc";
@@ -44669,7 +45321,7 @@
sha256 = "03ivnvqxc5xdcik4skk32fhr686yv2y5mj8w7v27dhyc0vdpfhvy";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ox-asciidoc";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/3b268064f09ae5c3d15064b7d197c7af767fb278/recipes/ox-asciidoc";
sha256 = "07b549dqyh1gk226d7zbls1mw6q4mas7kbfwkansmyykax0r2zyr";
name = "ox-asciidoc";
};
@@ -44682,7 +45334,7 @@
ox-bibtex-chinese = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "ox-bibtex-chinese";
- version = "20160510.1406";
+ version = "20160510.706";
src = fetchFromGitHub {
owner = "tumashu";
repo = "ox-bibtex-chinese";
@@ -44690,7 +45342,7 @@
sha256 = "1d463d7mdlr65yrq7x16nk9124fw1iphf5g238mlh4abbl6kz241";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ox-bibtex-chinese";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/a679ebaedcb496f915b9338f9d5c003e1389594d/recipes/ox-bibtex-chinese";
sha256 = "0h02jlzk97rd3jmdni5mggbkij61d7zn1n1ibz1jg6zb0000cj7a";
name = "ox-bibtex-chinese";
};
@@ -44700,10 +45352,31 @@
license = lib.licenses.free;
};
}) {};
+ ox-clip = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
+ melpaBuild {
+ pname = "ox-clip";
+ version = "20160630.941";
+ src = fetchFromGitHub {
+ owner = "jkitchin";
+ repo = "scimax";
+ rev = "42758a3fe8b2e128a47fabba4a4a27a534eeea03";
+ sha256 = "1sknf5rxri4ayh3lv1j7c9c1zbpf26vsqd5airijivicwpsxqyyr";
+ };
+ recipeFile = fetchurl {
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/222ccf4480395bda8c582ad5faf8c7902a69370e/recipes/ox-clip";
+ sha256 = "0vkw8r34wnax08kkdgwzm62srp9avvza1jaj582l8nn0a75284yg";
+ name = "ox-clip";
+ };
+ packageRequires = [];
+ meta = {
+ homepage = "https://melpa.org/#/ox-clip";
+ license = lib.licenses.free;
+ };
+ }) {};
ox-gfm = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "ox-gfm";
- version = "20160520.2342";
+ version = "20160520.1642";
src = fetchFromGitHub {
owner = "larstvei";
repo = "ox-gfm";
@@ -44711,7 +45384,7 @@
sha256 = "1fr5kp9cya9mzrl18flp117dy0qlp6f684qvmyilzaqm6q8w0nia";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ox-gfm";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/10e90430f29ce213fe57c507f06371ea0b29b66b/recipes/ox-gfm";
sha256 = "065ngmzfd3g2h8n903hc4d363hz4z5rrdgizh2xpz03kf3plca6q";
name = "ox-gfm";
};
@@ -44724,7 +45397,7 @@
ox-html5slide = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, org }:
melpaBuild {
pname = "ox-html5slide";
- version = "20131228.706";
+ version = "20131228.6";
src = fetchFromGitHub {
owner = "coldnew";
repo = "org-html5slide";
@@ -44732,7 +45405,7 @@
sha256 = "19h3w3fcas60jv02v7hxjmh05804sb7bif70jssq3qwisj0j09xm";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ox-html5slide";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/a7a7fd72c9bbb5d90e0e096b791971f2b64b8463/recipes/ox-html5slide";
sha256 = "0nqk6chg0ky98ap2higa74786prj7dbwx2a3l67m0llmdajw76qn";
name = "ox-html5slide";
};
@@ -44745,7 +45418,7 @@
ox-impress-js = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, org }:
melpaBuild {
pname = "ox-impress-js";
- version = "20150412.1916";
+ version = "20150412.1216";
src = fetchFromGitHub {
owner = "kinjo";
repo = "org-impress-js.el";
@@ -44753,7 +45426,7 @@
sha256 = "1kf2si2lyy0xc971bx5zd2j9mnz1smc9s8l0dwc6iksh2v9q8cy9";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ox-impress-js";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/e5e79b4b897daca80f26440107abaddf0a480db9/recipes/ox-impress-js";
sha256 = "0p0cc51lmxgl0xv951ybdg5n8gbzv8qf0chfgigijizzjypxc21l";
name = "ox-impress-js";
};
@@ -44766,7 +45439,7 @@
ox-ioslide = callPackage ({ cl-lib ? null, emacs, f, fetchFromGitHub, fetchurl, lib, makey, melpaBuild, org }:
melpaBuild {
pname = "ox-ioslide";
- version = "20160120.1705";
+ version = "20160120.1005";
src = fetchFromGitHub {
owner = "coldnew";
repo = "org-ioslide";
@@ -44774,7 +45447,7 @@
sha256 = "0p03xzldz5v8lx3ip2pgll0da00ldfxmhr6r3jahwp6692kxpr6j";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ox-ioslide";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/b960abca4d642c47e640300876eefee1851e6b86/recipes/ox-ioslide";
sha256 = "0z0qnvpw64wxbgz8203rphswlh9hd2i11pz2mlay8l3bzz4gx4vc";
name = "ox-ioslide";
};
@@ -44787,7 +45460,7 @@
ox-jira = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, org }:
melpaBuild {
pname = "ox-jira";
- version = "20160426.1453";
+ version = "20160426.753";
src = fetchFromGitHub {
owner = "stig";
repo = "ox-jira.el";
@@ -44795,7 +45468,7 @@
sha256 = "0csl9fcfwnpl6x3ld7xrlvgz6gwmgcd15a4zdc570w8vp26ra5k9";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ox-jira";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/6905c43603bc3d64dfd04a5dbb25c9ac78e68631/recipes/ox-jira";
sha256 = "0bm7i1ambd71xmy1y9jcdh52irgcsziwwb9d3y3rq0pnsqv5cpvp";
name = "ox-jira";
};
@@ -44808,7 +45481,7 @@
ox-latex-chinese = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "ox-latex-chinese";
- version = "20160514.228";
+ version = "20160513.1928";
src = fetchFromGitHub {
owner = "tumashu";
repo = "ox-latex-chinese";
@@ -44816,7 +45489,7 @@
sha256 = "1g42aq4iaq40aivncxw663hnsb2768lzc08dmsmk4lq5q9kzcjhg";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ox-latex-chinese";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/a679ebaedcb496f915b9338f9d5c003e1389594d/recipes/ox-latex-chinese";
sha256 = "138yprik36jxhm6dnj42gaynqd84w7ya3s0kbnxhbizrfl4n4ck7";
name = "ox-latex-chinese";
};
@@ -44829,7 +45502,7 @@
ox-mediawiki = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild, s }:
melpaBuild {
pname = "ox-mediawiki";
- version = "20150923.1802";
+ version = "20150923.1102";
src = fetchFromGitHub {
owner = "tomalexander";
repo = "orgmode-mediawiki";
@@ -44837,7 +45510,7 @@
sha256 = "0c2m02g6csg5fqizj3zqcm88q7w17kgvgi7swcx4fzz6rixnpsji";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ox-mediawiki";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/24244d146306ce965df382c8958c7574c74313f2/recipes/ox-mediawiki";
sha256 = "0lijj2n4saw0xd3jaghbvx9v6a4ldl5gd8wy7s7hfcm30wb75cdb";
name = "ox-mediawiki";
};
@@ -44850,7 +45523,7 @@
ox-nikola = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, org, ox-rst }:
melpaBuild {
pname = "ox-nikola";
- version = "20151114.1216";
+ version = "20151114.516";
src = fetchFromGitHub {
owner = "masayuko";
repo = "ox-nikola";
@@ -44858,7 +45531,7 @@
sha256 = "0cc14p6c3d4djfmrkac0abb2jq128vlmayv2a8cyvnyjffyvjbk7";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ox-nikola";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/3af3905e1ce36397645a54078280852a8a7eb1eb/recipes/ox-nikola";
sha256 = "1amplnazs9igfd382djq23d8j7r0knr0hwlpasd01aypc25c82a4";
name = "ox-nikola";
};
@@ -44871,15 +45544,15 @@
ox-pandoc = callPackage ({ dash, emacs, fetchFromGitHub, fetchurl, ht, lib, melpaBuild, org }:
melpaBuild {
pname = "ox-pandoc";
- version = "20151223.53";
+ version = "20160702.345";
src = fetchFromGitHub {
owner = "kawabata";
repo = "ox-pandoc";
- rev = "2605a0ed8ed3c86b78829589956bedf5eda447cc";
- sha256 = "0bawigwc6v5420642xlkyxdd0i82gicx69wqlnjf6lvhfvs990is";
+ rev = "a66a06fdc0c705f3b55d4d533c5c07097fa2f28a";
+ sha256 = "150vhknzjhddwy8fw4p963ship96rbgaapkh4aq1193q8hanspzl";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ox-pandoc";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/92f89a923d877c9dea9349a5c594209cb716bf18/recipes/ox-pandoc";
sha256 = "0wy6yvwd4vyq6xalkrshnfjjxlh1p24y52z49894nz5fl63b74xc";
name = "ox-pandoc";
};
@@ -44892,7 +45565,7 @@
ox-pukiwiki = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, org }:
melpaBuild {
pname = "ox-pukiwiki";
- version = "20150124.1816";
+ version = "20150124.1116";
src = fetchFromGitHub {
owner = "yashi";
repo = "org-pukiwiki";
@@ -44900,7 +45573,7 @@
sha256 = "0adj6gm39qw4ivb7csfh21qqqipcnw1sgm1xdqvrk86kbs9k1b2g";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ox-pukiwiki";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/cd4043336e54c6ae3976068a1af5cfe58713e408/recipes/ox-pukiwiki";
sha256 = "10sfbri5hv5hyx9jc1bzlk4qmzfmpfgfy8wkjkpv7lv2x0axqd8a";
name = "ox-pukiwiki";
};
@@ -44910,10 +45583,31 @@
license = lib.licenses.free;
};
}) {};
+ ox-qmd = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, org }:
+ melpaBuild {
+ pname = "ox-qmd";
+ version = "20160606.704";
+ src = fetchFromGitHub {
+ owner = "0x60df";
+ repo = "ox-qmd";
+ rev = "b41ffcf47af1a635596df31d4b0a704f274b5654";
+ sha256 = "1zv8kh7hlskj4g1c4k3cx0hzraal3inn75yzxs08ndvycdsn6cky";
+ };
+ recipeFile = fetchurl {
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/e71826e8a8c30b0eb535cce7a379740011b79534/recipes/ox-qmd";
+ sha256 = "1i2kdpp6prgphc1l42nz7q6vdfsbcn2vvlf10s7dfhhr8jzcyyy7";
+ name = "ox-qmd";
+ };
+ packageRequires = [ org ];
+ meta = {
+ homepage = "https://melpa.org/#/ox-qmd";
+ license = lib.licenses.free;
+ };
+ }) {};
ox-reveal = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, org }:
melpaBuild {
pname = "ox-reveal";
- version = "20160505.508";
+ version = "20160504.2208";
src = fetchFromGitHub {
owner = "yjwen";
repo = "org-reveal";
@@ -44921,7 +45615,7 @@
sha256 = "0pmshd58945h843c5hgzcz169kfzrwmkdzh7rv1cci783z3cxxdc";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ox-reveal";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/8bb4024eef5dc4cc3674bbbed9d92f074d533f35/recipes/ox-reveal";
sha256 = "092swxkkisvj2y18ynal8dn7wcfi7h4y6n0dlzqq28bfflarbwik";
name = "ox-reveal";
};
@@ -44934,15 +45628,15 @@
ox-rst = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, org }:
melpaBuild {
pname = "ox-rst";
- version = "20151115.843";
+ version = "20160607.1217";
src = fetchFromGitHub {
owner = "masayuko";
repo = "ox-rst";
- rev = "2bd53fa5b3af67afbf45041d7f54b3c5b71b1f10";
- sha256 = "1js4n8iwimc86fp2adzhbhy4ixss1yqngjd8gq7pxgpgmnhd66x3";
+ rev = "958ce46c0eacb6c0dbb6e0f006487af4e01c2298";
+ sha256 = "0zwaliskikf2098a3wsqkjk40w9q2afmx33wygwaz7saxgs08jwl";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ox-rst";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/3af3905e1ce36397645a54078280852a8a7eb1eb/recipes/ox-rst";
sha256 = "1vyj6frrl7328n2x7vc3qwv3ssdhi8bp6ja5h2q4bqalc6bl1pq0";
name = "ox-rst";
};
@@ -44955,7 +45649,7 @@
ox-textile = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, org }:
melpaBuild {
pname = "ox-textile";
- version = "20151115.525";
+ version = "20151114.2225";
src = fetchFromGitHub {
owner = "yashi";
repo = "org-textile";
@@ -44963,7 +45657,7 @@
sha256 = "1r9c4s9f7cvxxzf9h07rg75bil0295zq1inh5i4r6za5jabkr4dg";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ox-textile";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/02a68a7a99ecce8f1afa03e72ff1f636edaf5868/recipes/ox-textile";
sha256 = "01kri7vh16xhy8x5qd6s5z08xr0q964rk6xrligdb3i6x78wfvi4";
name = "ox-textile";
};
@@ -44976,7 +45670,7 @@
ox-tiddly = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild, org }:
melpaBuild {
pname = "ox-tiddly";
- version = "20151206.1140";
+ version = "20151206.440";
src = fetchFromGitHub {
owner = "dfeich";
repo = "org8-wikiexporters";
@@ -44984,7 +45678,7 @@
sha256 = "05rlfykwvfir177bvqa7nvwmzn1amhpaizfmyjzi73d78h062vcl";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ox-tiddly";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/084da2cc725cc23b02657e7adb14ec31532ad25a/recipes/ox-tiddly";
sha256 = "196i8lzxv2smpj5yhmiqwazn4pvc14yqyzasrgimhv3vi2xnxlfb";
name = "ox-tiddly";
};
@@ -44997,7 +45691,7 @@
ox-trac = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, org }:
melpaBuild {
pname = "ox-trac";
- version = "20151102.1855";
+ version = "20151102.1155";
src = fetchFromGitHub {
owner = "JalapenoGremlin";
repo = "ox-trac";
@@ -45005,7 +45699,7 @@
sha256 = "0w6963jvz1sk732nh18735dxivd6nl59jd4m26ps6l4wqhqby0db";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ox-trac";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/4b73753ef9229d0fdfbe237acc63126f1786a494/recipes/ox-trac";
sha256 = "0f8b3i83vzxzfa91p4ahlqz6njql18xy5nk265sjxpy9zr898rsa";
name = "ox-trac";
};
@@ -45018,7 +45712,7 @@
ox-twbs = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "ox-twbs";
- version = "20160307.758";
+ version = "20160307.58";
src = fetchFromGitHub {
owner = "marsmining";
repo = "ox-twbs";
@@ -45026,7 +45720,7 @@
sha256 = "0yrac13xiyfxipy5qyq56jg7151wjs3xv4gpsarx4hkrxi96apbi";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ox-twbs";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/3263133ba6dde790a364bad7c96144912971ba2d/recipes/ox-twbs";
sha256 = "15csgnph5wh2dvcc2dnvrlm7whh428rq8smqji1509ib7aw9y5mx";
name = "ox-twbs";
};
@@ -45039,7 +45733,7 @@
ox-twiki = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild, org }:
melpaBuild {
pname = "ox-twiki";
- version = "20160306.1815";
+ version = "20160306.1115";
src = fetchFromGitHub {
owner = "dfeich";
repo = "org8-wikiexporters";
@@ -45047,7 +45741,7 @@
sha256 = "05rlfykwvfir177bvqa7nvwmzn1amhpaizfmyjzi73d78h062vcl";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ox-twiki";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/084da2cc725cc23b02657e7adb14ec31532ad25a/recipes/ox-twiki";
sha256 = "1p1k0yg5fxcjgwpq2ix9ckh2kn69m7d5rnz76h14hw9p72cb54r0";
name = "ox-twiki";
};
@@ -45060,7 +45754,7 @@
p4 = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "p4";
- version = "20150721.2137";
+ version = "20150721.1437";
src = fetchFromGitHub {
owner = "gareth-rees";
repo = "p4.el";
@@ -45068,7 +45762,7 @@
sha256 = "12jsnfppif4l548wymvakx0f2zlm63xs6kfrb49hicmk668cq4ra";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/p4";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/a7e2fa7af647e0dbf5ade5c32d1984b133156b6f/recipes/p4";
sha256 = "0215li17gn35wmvd84gnp4hkwa2jd81wz4frb1cba2b5j33rlprc";
name = "p4";
};
@@ -45081,7 +45775,7 @@
pabbrev = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "pabbrev";
- version = "20160320.2201";
+ version = "20160320.1601";
src = fetchFromGitHub {
owner = "phillord";
repo = "pabbrev";
@@ -45089,7 +45783,7 @@
sha256 = "09bn19ydyz1hncmvyyh87gczp3lmlczpm352p0107z1gw6xmpjil";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/pabbrev";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/c032b0d126e0196b4526ee04f5103582610681ea/recipes/pabbrev";
sha256 = "1mbfa40pbzbi00sp155zm43sj6nw221mcayc2rk3ppin9ps95hx3";
name = "pabbrev";
};
@@ -45102,15 +45796,15 @@
package-build = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "package-build";
- version = "20160530.828";
+ version = "20160619.1517";
src = fetchFromGitHub {
owner = "melpa";
repo = "melpa";
- rev = "1b56ca344ad944e03b669a9974e9b734b5b445bb";
- sha256 = "07ni5wvds27sikcbz49bbyzssa199hvav62fd3a6v8zfz586ji73";
+ rev = "05755bed49219072d2ec98f0be5ecba4deda7cd1";
+ sha256 = "0sdwd6b1h0k2wm7xfk7q9nx266bc67dphj99zwrnxnc60pq2k3r7";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/package-build";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/1edd038d9df8b9b7cb6a0e02896a1a23e88e8a5b/recipes/package-build";
sha256 = "0618z43j6628jjj448hcigvsfwcs7p0n4bbcmqscrb6p59b7n4wx";
name = "package-build";
};
@@ -45123,7 +45817,7 @@
package-filter = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "package-filter";
- version = "20140105.2326";
+ version = "20140105.1626";
src = fetchFromGitHub {
owner = "milkypostman";
repo = "package-filter";
@@ -45131,7 +45825,7 @@
sha256 = "0i7f8ambcrhyqq15xwlk31jjdcii2hr37y45va8m5w6n9mkpz8c6";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/package-filter";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/89312eaf69f3d7ac46647255c847fcb45415e78d/recipes/package-filter";
sha256 = "0am73zch2fy1hfjwzk8kg0j3lgbcz3hzxjrdf0j0a9w0myp0mmjm";
name = "package-filter";
};
@@ -45144,7 +45838,7 @@
package-plus = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "package-plus";
- version = "20150319.2255";
+ version = "20150319.1655";
src = fetchFromGitHub {
owner = "zenspider";
repo = "package";
@@ -45152,7 +45846,7 @@
sha256 = "1xv0ra130qg0ksgqi4npspnv0ckq77k7f5kcibavj030h578kj97";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/package+";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/49cfbbc4535aa7e175aa819d67b8aa52a6f94384/recipes/package+";
sha256 = "1mbsxr4llz8ny7n7w3lykld9yvbaywlfqnvr9l0aiv9rvmdv03bn";
name = "package-plus";
};
@@ -45165,7 +45859,7 @@
package-safe-delete = callPackage ({ emacs, epl, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "package-safe-delete";
- version = "20150116.1707";
+ version = "20150116.1007";
src = fetchFromGitHub {
owner = "Fanael";
repo = "package-safe-delete";
@@ -45173,7 +45867,7 @@
sha256 = "1pdv6d6bm5jmpgjqf9ycvzasxz1205zdi0zjrmkr33c03azwz7rd";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/package-safe-delete";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/61b961211276bd95655b6a0967eda5037a3d240b/recipes/package-safe-delete";
sha256 = "12ss5yjhnyxsif4vlbgxamn5jfa0wxkkphffxnv6drhvmpq226jw";
name = "package-safe-delete";
};
@@ -45183,22 +45877,22 @@
license = lib.licenses.free;
};
}) {};
- package-utils = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
+ package-utils = callPackage ({ async, epl, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "package-utils";
- version = "20160307.1020";
+ version = "20160627.1109";
src = fetchFromGitHub {
owner = "Silex";
repo = "package-utils";
- rev = "68789a94c764dddd247ba62c47107b20ead59db7";
- sha256 = "1pcpr8ls0sqph098lrb6n8fbsm8rq8imglfx3m8zzyw78q9hwcjx";
+ rev = "f655efc89ea7675b6cc9990d46a9f48ca6d384b7";
+ sha256 = "1q6hpfaj8hfybxmmh1v871arlv8dn77li9vgckcal4l6xf83nvpi";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/package-utils";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/a1bb884a0299408daa716eba42cb39f79622766c/recipes/package-utils";
sha256 = "02hgh7wg68ysfhw5hckrpshzv4vm1vnm395d34x6vpgl4ccx7v9r";
name = "package-utils";
};
- packageRequires = [];
+ packageRequires = [ async epl ];
meta = {
homepage = "https://melpa.org/#/package-utils";
license = lib.licenses.free;
@@ -45207,7 +45901,7 @@
packed = callPackage ({ dash, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "packed";
- version = "20160523.1500";
+ version = "20160523.800";
src = fetchFromGitHub {
owner = "tarsius";
repo = "packed";
@@ -45215,7 +45909,7 @@
sha256 = "1kjcb6z08bj5ysxrykgz3x6bz2122yycpjhbv875ppc5ihls88xl";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/packed";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/1ee9e95c00f791010f77720068a7f3cd76133a1c/recipes/packed";
sha256 = "0sw7d2l17bq471i4isrf2xf0z85nqqiciw25whw0c0chdzwzai6z";
name = "packed";
};
@@ -45228,7 +45922,7 @@
pacmacs = callPackage ({ cl-lib ? null, dash, dash-functional, emacs, f, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "pacmacs";
- version = "20160131.932";
+ version = "20160131.232";
src = fetchFromGitHub {
owner = "codingteam";
repo = "pacmacs.el";
@@ -45236,7 +45930,7 @@
sha256 = "0zx72qbqy2n1r6mjylw67zb6nnchp2b49vsdyl0k5bdaq2xyqv6i";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/pacmacs";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/52ce427e046267655dd9f836e57176d59f23e601/recipes/pacmacs";
sha256 = "0w0r6z365jrglpbifb94w6c22wqi9x93qgkss9pn820hrndqbqxy";
name = "pacmacs";
};
@@ -45249,15 +45943,15 @@
paganini-theme = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "paganini-theme";
- version = "20160529.1222";
+ version = "20160612.537";
src = fetchFromGitHub {
owner = "onurtemizkan";
repo = "paganini";
- rev = "cbe0f88ddb613b8067f1e14f358964bc1ece9fbb";
- sha256 = "1a3vj3wf64w5gw9a7jh36abw046yp3njms3rw8y52n6vf9gdcdci";
+ rev = "506e35c9cecfae0f9ccbb7da24d48b9d082a7901";
+ sha256 = "16g4crpgskhgfzw8fx2j4ibvpdf8qi7brxbp2nhwijdag12i4wwn";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/paganini-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/d6fbb609b411df4fe6f66a7afe27eda7d297f140/recipes/paganini-theme";
sha256 = "1kypkf52hjlfj75pcmjf2a60m6iwj0y1dspjwqynzz3l48i6ippm";
name = "paganini-theme";
};
@@ -45270,15 +45964,15 @@
page-break-lines = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "page-break-lines";
- version = "20160110.313";
+ version = "20160617.2300";
src = fetchFromGitHub {
owner = "purcell";
repo = "page-break-lines";
- rev = "2b8b800e1dd9fa987cb663c3317e8020d37c7b84";
- sha256 = "0mqd18w98p6z0i08xx7jga10ljh9360x6sqfyvfq6bjfi2jvxdbk";
+ rev = "67b5928a7f14568baf2716b5741e13659a86b9ea";
+ sha256 = "1wp974716ih2cz9kdmdz7xwjy1qnnfzdzlfr9kchknagw8d9nn12";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/page-break-lines";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/22b6035987994c11d5e2564862efb1e56848c3b6/recipes/page-break-lines";
sha256 = "0q1166z190dxznzgf2f29klj2jkaqlic483p4h3bylihkqp93ij7";
name = "page-break-lines";
};
@@ -45291,7 +45985,7 @@
pager = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "pager";
- version = "20100330.2031";
+ version = "20100330.1331";
src = fetchFromGitHub {
owner = "emacsorphanage";
repo = "pager";
@@ -45299,7 +45993,7 @@
sha256 = "1dq5ibz7rx9a7gm9zq2pz4c1sxgrm59yibyq92bvmi68lvf2q851";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/pager";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/5f2a50f62475639af011c99c6cc38928b74b3b0a/recipes/pager";
sha256 = "0s5zwimkbsivbwlyd7g8dpnjyzqcfc5plg53ij4sljiipgjh5brl";
name = "pager";
};
@@ -45312,7 +46006,7 @@
pager-default-keybindings = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, pager }:
melpaBuild {
pname = "pager-default-keybindings";
- version = "20130719.2257";
+ version = "20130719.1557";
src = fetchFromGitHub {
owner = "nflath";
repo = "pager-default-keybindings";
@@ -45320,7 +46014,7 @@
sha256 = "11msqs8v9wn8sj45dw1fl0ldi3sw33v0xclynbxgmawyabfq3bqm";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/pager-default-keybindings";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/87faee8c9820dd47feccdfbce7fd57dbe2800405/recipes/pager-default-keybindings";
sha256 = "0vqb3s1fxkl1fxxspq89344s55sfcplz26z0pbh347l1681h3pci";
name = "pager-default-keybindings";
};
@@ -45332,13 +46026,13 @@
}) {};
palette = callPackage ({ fetchurl, hexrgb, lib, melpaBuild }: melpaBuild {
pname = "palette";
- version = "20160101.45";
+ version = "20151231.1745";
src = fetchurl {
url = "https://www.emacswiki.org/emacs/download/palette.el";
sha256 = "1qnv84y0s437xcsjxh0gs9rb36pydba3qfrihvz5pqs9g9w7m94k";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/palette";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/a5d15f875b0080b12ce45cf696c581f6bbf061ba/recipes/palette";
sha256 = "1v6dsph18rqfbvda2c25mqgdwap2a4zrg6qqq57n205zprpcwxc0";
name = "palette";
};
@@ -45351,7 +46045,7 @@
palimpsest = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "palimpsest";
- version = "20130731.1721";
+ version = "20130731.1021";
src = fetchFromGitHub {
owner = "danielsz";
repo = "Palimpsest";
@@ -45359,7 +46053,7 @@
sha256 = "1kbja107smdjqv82p84jx13jk1410c9vms89p1iy1jvn7s8g9fiq";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/palimpsest";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/14f6d011a0314637a2f4c1b00efa4912e67b7fa4/recipes/palimpsest";
sha256 = "18kklfdlcg982pdrslh0xqa42h28f91bdm7q2zn890d6dcivp6bk";
name = "palimpsest";
};
@@ -45372,7 +46066,7 @@
pallet = callPackage ({ cask, dash, f, fetchFromGitHub, fetchurl, lib, melpaBuild, s }:
melpaBuild {
pname = "pallet";
- version = "20150512.902";
+ version = "20150512.202";
src = fetchFromGitHub {
owner = "rdallasgray";
repo = "pallet";
@@ -45380,7 +46074,7 @@
sha256 = "03mlg6dmpjw8fq2s3c4gpqj20kjhzldz3m51bf6s0mxq9bclx2xw";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/pallet";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/bf977287e9bd668efbd972c9937906384ee832c6/recipes/pallet";
sha256 = "0q50cdwnn2w1n5h4bappncjjyi5yaixxannwgy23fngdrz1mxwd7";
name = "pallet";
};
@@ -45390,10 +46084,31 @@
license = lib.licenses.free;
};
}) {};
+ pandoc = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
+ melpaBuild {
+ pname = "pandoc";
+ version = "20160607.1210";
+ src = fetchFromGitHub {
+ owner = "zonuexe";
+ repo = "pandoc.el";
+ rev = "5f96efe8804cf949de2896fcb3015513275b9118";
+ sha256 = "1r1rzaidg3pd8q5alv76drv843hwj9yzkn5hsaf4qnqrkkqwly8y";
+ };
+ recipeFile = fetchurl {
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/d6c21ff09d67fad2658e0de08bc2edb7588c504a/recipes/pandoc";
+ sha256 = "0x81anxam7agr2v2zqgc331zs5s5zxcw54kzpanndda23n51h5cc";
+ name = "pandoc";
+ };
+ packageRequires = [ emacs ];
+ meta = {
+ homepage = "https://melpa.org/#/pandoc";
+ license = lib.licenses.free;
+ };
+ }) {};
pandoc-mode = callPackage ({ dash, fetchFromGitHub, fetchurl, hydra, lib, melpaBuild }:
melpaBuild {
pname = "pandoc-mode";
- version = "20160519.1753";
+ version = "20160519.1053";
src = fetchFromGitHub {
owner = "joostkremers";
repo = "pandoc-mode";
@@ -45401,7 +46116,7 @@
sha256 = "1aldnaas57saa2rdg6j3hczmf008m34dw47qzxjmn1jh6xibk357";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/pandoc-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/4e39cd8e8b4f61c04fa967def6a653bb22f45f5b/recipes/pandoc-mode";
sha256 = "0qvc6cf87h1jqf590kd68jfg25snxaxayfds634wj4z6gp70l781";
name = "pandoc-mode";
};
@@ -45414,7 +46129,7 @@
pangu-spacing = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "pangu-spacing";
- version = "20150927.924";
+ version = "20150927.224";
src = fetchFromGitHub {
owner = "coldnew";
repo = "pangu-spacing";
@@ -45422,7 +46137,7 @@
sha256 = "0bcqc4r0v02v99llphk8s0mj38gxk87a3jqcp8v4sb9040dkm8gd";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/pangu-spacing";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/c0b00eda1d20ff2cbffe3ac606e5fd60d915a5d6/recipes/pangu-spacing";
sha256 = "082qh26vlk7kifz1800lyai17yvngwjygrfrsh1dsd8dxhk6l9j8";
name = "pangu-spacing";
};
@@ -45435,7 +46150,7 @@
paper-theme = callPackage ({ emacs, fetchFromGitHub, fetchurl, hexrgb, lib, melpaBuild }:
melpaBuild {
pname = "paper-theme";
- version = "20151231.1832";
+ version = "20151231.1132";
src = fetchFromGitHub {
owner = "cadadr";
repo = "paper-theme";
@@ -45443,7 +46158,7 @@
sha256 = "1xh614czldjvfl66vhkyaai5k4qsg1l3mz6wd5b1w6kd45qrc54i";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/paper-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/a35a0888a7a27174b5de58d99b01554769041f46/recipes/paper-theme";
sha256 = "04diqm2c9fm29zyms3hplkzb4kb7b2kyrxdsy0jxyjj5kabypd50";
name = "paper-theme";
};
@@ -45456,7 +46171,7 @@
paradox = callPackage ({ emacs, fetchFromGitHub, fetchurl, hydra, let-alist, lib, melpaBuild, seq, spinner }:
melpaBuild {
pname = "paradox";
- version = "20160525.1636";
+ version = "20160525.936";
src = fetchFromGitHub {
owner = "Malabarba";
repo = "paradox";
@@ -45464,7 +46179,7 @@
sha256 = "1vq3xjllgvzwp18mv2y1qydbbl6j1nk58vw7sm99zsf3wdpls465";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/paradox";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/1e6aed365c42987d64d0cd9a8a6178339b1b39e8/recipes/paradox";
sha256 = "1xq14nfvprsq18464qr4mhphq7cl1f570lji5n8z6j9vpfm9a4p2";
name = "paradox";
};
@@ -45476,14 +46191,14 @@
}) {};
paredit = callPackage ({ fetchgit, fetchurl, lib, melpaBuild }: melpaBuild {
pname = "paredit";
- version = "20160324.2015";
+ version = "20160615.1525";
src = fetchgit {
url = "http://mumble.net/~campbell/git/paredit.git";
- rev = "2f6f67283c6c41af5a74271fc025c2e837f3d2a2";
- sha256 = "14k1xakdr58647cnq8ky73sh5j94jc6vls05jdxkbv681krdvqvj";
+ rev = "7c27746a8eb259ae24b5dce9380801c4846258f0";
+ sha256 = "02s8cvrpcdp8xr7m8bfgwiy7wl9bc4834jlm071ypzx5xfip3zxd";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/paredit";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/2d83b5d24db3527e48e3de40c320255bc2dbfccb/recipes/paredit";
sha256 = "1rp859y4qyqdfvp261l8mmbd62p1pw0dypm1mng6838b6q6ycakr";
name = "paredit";
};
@@ -45496,7 +46211,7 @@
paredit-everywhere = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, paredit }:
melpaBuild {
pname = "paredit-everywhere";
- version = "20150822.644";
+ version = "20150821.2344";
src = fetchFromGitHub {
owner = "purcell";
repo = "paredit-everywhere";
@@ -45504,7 +46219,7 @@
sha256 = "1jkpb67h96sm3fnga9hrg3kwhlp3czdv66v49a9szq174zpsnrgv";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/paredit-everywhere";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/593890222d074c6a308eb1b809077c6861e1af30/recipes/paredit-everywhere";
sha256 = "0gbkwk8mrbjr2l8pz3q4y6j8q4m12zmzl31c88ngs1k5d86wav36";
name = "paredit-everywhere";
};
@@ -45517,7 +46232,7 @@
paredit-menu = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, paredit }:
melpaBuild {
pname = "paredit-menu";
- version = "20160128.1833";
+ version = "20160128.1133";
src = fetchFromGitHub {
owner = "phillord";
repo = "paredit-menu";
@@ -45525,7 +46240,7 @@
sha256 = "15xkanrwxh3qqay3vkfqvhzs88g7nnfv9bqk509qflyhqnvc9sxr";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/paredit-menu";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/8a6379588b373fca2769b8761de4ba13545c082c/recipes/paredit-menu";
sha256 = "05jp4cc548x5f07k096dgizhivdpaajxq38hin831sm0p9cibm4p";
name = "paredit-menu";
};
@@ -45538,7 +46253,7 @@
paren-completer = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "paren-completer";
- version = "20160501.1252";
+ version = "20160501.552";
src = fetchFromGitHub {
owner = "MatthewBregg";
repo = "paren-completer";
@@ -45546,7 +46261,7 @@
sha256 = "1il0gbyjnlxhk04z3lgxmvlmlhgc94rmxdf8nl5sk3gblqmr8v3b";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/paren-completer";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/0cbe675482a72417cb3ff770ca3b85710e479ac1/recipes/paren-completer";
sha256 = "0xh17h8vmsgbrq6yf5sfy3kpia4za68f43gwgkvi2m430g15fr0x";
name = "paren-completer";
};
@@ -45559,7 +46274,7 @@
paren-face = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "paren-face";
- version = "20160521.1655";
+ version = "20160521.955";
src = fetchFromGitHub {
owner = "tarsius";
repo = "paren-face";
@@ -45567,7 +46282,7 @@
sha256 = "0f128gqn170s6hl62n44i9asais75ns1mpvb4l8vzy1sc0v16c0k";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/paren-face";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/d398398d1d5838dc4985a06515ee668f0f566aab/recipes/paren-face";
sha256 = "0dmzk66m3rd8x0rb925pyrfpc2qsvayks4kmhpb2ccdrx68pg8gf";
name = "paren-face";
};
@@ -45580,7 +46295,7 @@
parent-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "parent-mode";
- version = "20150825.100";
+ version = "20150824.1800";
src = fetchFromGitHub {
owner = "Fanael";
repo = "parent-mode";
@@ -45588,7 +46303,7 @@
sha256 = "0i5bc7lyyrx6swqlrp9l5x72yzwi53qn6ldrfs99gh08b3yvsnni";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/parent-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/9736d8f6c3065c46b8c4e0056e9d592d3ec973e9/recipes/parent-mode";
sha256 = "1ndn6m6aasmk9yrml9xqj8141100nw7qi1bhnlsss3v8b6njwwig";
name = "parent-mode";
};
@@ -45601,7 +46316,7 @@
parse-csv = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "parse-csv";
- version = "20160512.1923";
+ version = "20160512.1223";
src = fetchFromGitHub {
owner = "mrc";
repo = "el-csv";
@@ -45609,7 +46324,7 @@
sha256 = "06xg6f74697zmn042wg259qlik2l21k4al08a06xz4gv9a83nsx6";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/parse-csv";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/010a182f7424928036231774c2fe17b857e3ca40/recipes/parse-csv";
sha256 = "0khpfxbarw0plx8kka357d8wl1vvdih5797xlld9adc0g3cng0zz";
name = "parse-csv";
};
@@ -45622,7 +46337,7 @@
parsebib = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "parsebib";
- version = "20151006.1132";
+ version = "20151006.432";
src = fetchFromGitHub {
owner = "joostkremers";
repo = "parsebib";
@@ -45630,7 +46345,7 @@
sha256 = "0n91whyjnrdhb9bqfif01ygmwv5biwpz2pvjv5w5y1d4g0k1x9ml";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/parsebib";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/c39633957475dcd6a033760ba20a957716cce59c/recipes/parsebib";
sha256 = "07br2x68scsxykdk2ajc4mfqhdb7vjkcfgz3vnpy91sirxzgfjdd";
name = "parsebib";
};
@@ -45643,7 +46358,7 @@
pass = callPackage ({ emacs, f, fetchFromGitHub, fetchurl, lib, melpaBuild, password-store }:
melpaBuild {
pname = "pass";
- version = "20160214.1135";
+ version = "20160214.435";
src = fetchFromGitHub {
owner = "NicolasPetton";
repo = "pass";
@@ -45651,7 +46366,7 @@
sha256 = "0npm5kv00fcnb5ajj76jp1dc84zxp7fgrkn472yxdq4hppvx0ixv";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/pass";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/428c2d53db69bed8938ec3486dfcf7fc048cd4e8/recipes/pass";
sha256 = "1vvyvnqf6k7wm0p45scwi6ny86slkrcbr36lnxdlkf96cqyrqzfr";
name = "pass";
};
@@ -45664,7 +46379,7 @@
passthword = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "passthword";
- version = "20141201.1023";
+ version = "20141201.323";
src = fetchFromGitHub {
owner = "pidu";
repo = "passthword";
@@ -45672,7 +46387,7 @@
sha256 = "0yckh61v9a798gpyk8x2z9990h3b61lwsw0kish571pygfyqhjkq";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/passthword";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/399bb6d6e36ca4c1e54566e66d7065fe1011f99c/recipes/passthword";
sha256 = "076jayziipjx260yk3p37pf5k0qsagalidah3y6hiflrlq4sfgjn";
name = "passthword";
};
@@ -45685,7 +46400,7 @@
password-generator = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "password-generator";
- version = "20150222.2140";
+ version = "20150222.1440";
src = fetchFromGitHub {
owner = "zargener";
repo = "emacs-password-genarator";
@@ -45693,7 +46408,7 @@
sha256 = "1pw401ar114wpayibphv3n6m0gz68zjmiwz60r4lbar45bmxvihx";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/password-generator";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/4af274e0e59aec44ede6f6ed0a34f4bcec6387f2/recipes/password-generator";
sha256 = "0aahpplmiwmp6a06y6hl4zvv8lvzkmakmaazlckl5r3rqbsf24cb";
name = "password-generator";
};
@@ -45706,14 +46421,14 @@
password-store = callPackage ({ f, fetchgit, fetchurl, lib, melpaBuild, s }:
melpaBuild {
pname = "password-store";
- version = "20151027.2249";
+ version = "20151027.1649";
src = fetchgit {
url = "http://git.zx2c4.com/password-store";
rev = "0b2f803fe61992af02b8820c400984b1f615a299";
- sha256 = "11cq7wz57zc649zww720cdfa9rqyjl9gf9h0m96wfapm4mhczd1n";
+ sha256 = "011sz1rlr7mbsvn1z1kxl3psjv3g2vkbndcim5jnp1wwlc5bibh3";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/password-store";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/e204fb4d672220ee1a4a49975fd3999916e60f8c/recipes/password-store";
sha256 = "1jh24737l4hccr1k0b9fnq45ag2dsk84fnfs86hcgsadl94d6kss";
name = "password-store";
};
@@ -45726,7 +46441,7 @@
password-vault = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "password-vault";
- version = "20160126.1920";
+ version = "20160126.1220";
src = fetchFromGitHub {
owner = "PuercoPop";
repo = "password-vault";
@@ -45734,7 +46449,7 @@
sha256 = "0921xwg3d3345hiqz4c1iyqwvfyg8rv0wggcnig7xh9qivspag4c";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/password-vault";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/71ad3fa96afa18b5002faf9272732c7d09826493/recipes/password-vault";
sha256 = "17i556xwq6yaxv9v18l1abcpbaz6hygsa4vf4b68fc98vcy7396a";
name = "password-vault";
};
@@ -45747,7 +46462,7 @@
pastebin = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "pastebin";
- version = "20101125.2102";
+ version = "20101125.1402";
src = fetchFromGitHub {
owner = "nicferrier";
repo = "elpastebin";
@@ -45755,7 +46470,7 @@
sha256 = "1hjzpza8zmzb83sacmqcnh9a52m4x5d8xbwvcqvld1ajglv4y124";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/pastebin";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/0fda2b54a0ff0b6fc3bd6d20cfcbbf63cae5380f/recipes/pastebin";
sha256 = "0ff01vzslgdmsj1jp1m2lvnan6immd4l7vz466g1glb5nkb7qfcr";
name = "pastebin";
};
@@ -45768,7 +46483,7 @@
pastehub = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "pastehub";
- version = "20140615.820";
+ version = "20140615.120";
src = fetchFromGitHub {
owner = "kiyoka";
repo = "pastehub";
@@ -45776,7 +46491,7 @@
sha256 = "0m6qjsq6qfwwszm95lj8c58l75vbmx9r5hm9bfywyympfgy0fa1n";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/pastehub";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/bb8645a9880c586ef2ad16f3a4e61ba76176c224/recipes/pastehub";
sha256 = "1slvqn5ay6gkbi0ai1gy1wmc02h4g3n6srrh4fqn72y7b9nv5i0v";
name = "pastehub";
};
@@ -45789,7 +46504,7 @@
pastelmac-theme = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "pastelmac-theme";
- version = "20151031.336";
+ version = "20151030.2136";
src = fetchFromGitHub {
owner = "bmastenbrook";
repo = "pastelmac-theme-el";
@@ -45797,7 +46512,7 @@
sha256 = "1v5mpjb8kavbqhvg4rizwg8cypgmi6ngdiy8qp9pimmkb56y42ly";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/pastelmac-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/a7151773de39fe570e3e9b351daad89db9dd267f/recipes/pastelmac-theme";
sha256 = "168zzqhp2dbfcnknwfqxk68rgmibfw71ksghvi6h2j2c1m08l23f";
name = "pastelmac-theme";
};
@@ -45810,14 +46525,14 @@
pastels-on-dark-theme = callPackage ({ fetchgit, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "pastels-on-dark-theme";
- version = "20120304.1922";
+ version = "20120304.1222";
src = fetchgit {
url = "https://gist.github.com/1974259.git";
rev = "854839a0b4bf8c3f6a7d947926bf41d690547002";
sha256 = "1ar6rf2ykd252y8ahx0lca7xsgfs6ff287q9iij79gs9fhn4yfy5";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/pastels-on-dark-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/ab432b0eac0bcf0d40c5b3c8a78475bc0fea47d2/recipes/pastels-on-dark-theme";
sha256 = "0zdr29793gg229r47yjb3plagxc9pszqyy4sx81ffp3rpdf0nlbh";
name = "pastels-on-dark-theme";
};
@@ -45830,7 +46545,7 @@
path-headerline-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "path-headerline-mode";
- version = "20140423.1532";
+ version = "20140423.832";
src = fetchFromGitHub {
owner = "7696122";
repo = "path-headerline-mode";
@@ -45838,7 +46553,7 @@
sha256 = "1ffnkw8djs8kvfjd1crnaqram1vl4w3g1zhsqp74ds0mccsd6830";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/path-headerline-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/dc926d83b0376e84b8a88ce794dcdac17603860c/recipes/path-headerline-mode";
sha256 = "0dwr8iyq62ad5xkh7r4kpywpypdq1wljsdzwqbq9zdr79yfqx337";
name = "path-headerline-mode";
};
@@ -45851,7 +46566,7 @@
pathify = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "pathify";
- version = "20160423.1046";
+ version = "20160423.346";
src = fetchFromGitHub {
owner = "alezost";
repo = "pathify.el";
@@ -45859,7 +46574,7 @@
sha256 = "0wsq11qffw1lx9x79law7jrz0sxm6km83gh891ic9ak2y6j5shxf";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/pathify";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/459460c977b9cf033e22937899ad380e01efcf11/recipes/pathify";
sha256 = "1z970xnzbhmfikj1rkfx24jvwc7f1xxw6hk7kmahxvphjxrvgc2f";
name = "pathify";
};
@@ -45872,15 +46587,15 @@
paxedit = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild, paredit }:
melpaBuild {
pname = "paxedit";
- version = "20160103.321";
+ version = "20160702.1733";
src = fetchFromGitHub {
owner = "promethial";
repo = "paxedit";
- rev = "0d06c72b18b4eccb8668b2dc3e7884f2cef7871b";
- sha256 = "0kkgqaxyrv65rfg2ng1vmmmrc9bm98yqpsv2pcb760287dn0l27m";
+ rev = "644eb7036a475fbcba4de5d46d6940b1e8ef33cd";
+ sha256 = "0jmhr658cczblag8knr8j77q58yj268rkhh5dmga66l0sb30wb21";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/paxedit";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/106b272c2f0741d21d31a0ddfa4f521c575559c1/recipes/paxedit";
sha256 = "06ymilr0zrwfpyzql7dcpg48lhkx73f2jlaw3caxgsjaz7x3n4ic";
name = "paxedit";
};
@@ -45893,7 +46608,7 @@
pbcopy = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "pbcopy";
- version = "20150225.559";
+ version = "20150224.2259";
src = fetchFromGitHub {
owner = "emacsfodder";
repo = "pbcopy.el";
@@ -45901,7 +46616,7 @@
sha256 = "138w0dlp3msjmr2x09kfcnxwhdldbz9xjfy7l6lig1x9ima0z5w6";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/pbcopy";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/2bbde7950ad5b3b801ca6a2a27c0f5294c8b7746/recipes/pbcopy";
sha256 = "1989pkhaha6s2rmgyswnzps92x9hhzymjz4ng4a5jda1b9snp60q";
name = "pbcopy";
};
@@ -45914,7 +46629,7 @@
pc-bufsw = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "pc-bufsw";
- version = "20150923.913";
+ version = "20150923.213";
src = fetchFromGitHub {
owner = "ibukanov";
repo = "pc-bufsw";
@@ -45922,7 +46637,7 @@
sha256 = "1jj5h92qakrn9d5d88dvl43b7ppw96rm11hqg3791i6k48nx1d1m";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/pc-bufsw";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/5f2bbd34d673935846c286e73a1e2efaa00ab01a/recipes/pc-bufsw";
sha256 = "01d7735ininlsjkql7dy57irgwgk4k9br8bl18wq51vgkg90i5k5";
name = "pc-bufsw";
};
@@ -45935,15 +46650,15 @@
pcache = callPackage ({ eieio ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "pcache";
- version = "20151109.1539";
+ version = "20160624.936";
src = fetchFromGitHub {
owner = "sigma";
repo = "pcache";
- rev = "4b090f46182fd2ed1f44905dc04acc3121bcf622";
- sha256 = "0xbbq8ddlirhvv921nrf7bwazh0i98bk0a9xzyx8iqpyg66vbfa8";
+ rev = "c86d94c6153cec6fde84fed387daeca2bb156d0a";
+ sha256 = "0pw5922fcqxppcal4ks9w83jxinh0xhlbss532cdsiwfl5icgdqp";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/pcache";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/cae2ac3513e371a256be0f1a7468e38e686c2487/recipes/pcache";
sha256 = "1q2wlbc58lyf3dxfs9ppdxvdsp81jmkq874zbd7f39wvc5ckbz0l";
name = "pcache";
};
@@ -45956,7 +46671,7 @@
pcmpl-args = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "pcmpl-args";
- version = "20120912.724";
+ version = "20120912.24";
src = fetchFromGitHub {
owner = "JonWaltman";
repo = "pcmpl-args.el";
@@ -45964,7 +46679,7 @@
sha256 = "0pwx1nbgciy28rivvrgka46zihmag9ljrs40bvscgd9rkragm4zy";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/pcmpl-args";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/3130ab6bf500f68fb9af77d4c33b8ec76c36be6c/recipes/pcmpl-args";
sha256 = "0sry4zvr8xmzyygf2m5dms52srkd1apj3i7a3aj23qa8jvndx8vr";
name = "pcmpl-args";
};
@@ -45977,7 +46692,7 @@
pcmpl-git = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "pcmpl-git";
- version = "20160111.755";
+ version = "20160111.55";
src = fetchFromGitHub {
owner = "leoliu";
repo = "pcmpl-git-el";
@@ -45985,7 +46700,7 @@
sha256 = "0pspxgicc0mkypp94r0jydmkjr3ngv8y4w1xpj93kp79hnvyls0a";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/pcmpl-git";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/6a51c16bed8d0a2fecad0ae9580d58cd44cc8930/recipes/pcmpl-git";
sha256 = "12y9pg1g4i1ghnjvgfdpa6p84h4bcqrr23y9bazwl9n6aj20cmxk";
name = "pcmpl-git";
};
@@ -45998,15 +46713,15 @@
pcmpl-homebrew = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "pcmpl-homebrew";
- version = "20150507.352";
+ version = "20160627.106";
src = fetchFromGitHub {
owner = "hiddenlotus";
repo = "pcmpl-homebrew";
- rev = "a2b9026a1b3c8206d0eca90c491c0397fb275f94";
- sha256 = "17i5j5005dhzgwzds5jj1a7d31xvbshjc139vawwz2xip5aynji4";
+ rev = "de11211bdb75455da88d912f450da28eba89bb9c";
+ sha256 = "0kb5c04xqwdgjczicik6zd739jv5r65ylizn4d04rqkwkki7nlrr";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/pcmpl-homebrew";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/7fabdb05de9b8ec18a3a566f99688b50443b6b44/recipes/pcmpl-homebrew";
sha256 = "11yd18s79iszp8gas97hqpa0b0whgh7dvlyci3nd4z28467p83v8";
name = "pcmpl-homebrew";
};
@@ -46019,7 +46734,7 @@
pcmpl-pip = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "pcmpl-pip";
- version = "20141024.1048";
+ version = "20141024.348";
src = fetchFromGitHub {
owner = "hiddenlotus";
repo = "pcmpl-pip";
@@ -46027,7 +46742,7 @@
sha256 = "14pz15by9gp0307bcdv9h90mcr35ya89wbn3y13n7k0z5r45gn58";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/pcmpl-pip";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/7fabdb05de9b8ec18a3a566f99688b50443b6b44/recipes/pcmpl-pip";
sha256 = "19a3np5swpqvrx133yvziqnr2pvj8zi0b725j8kxhp2bj1g1c6hr";
name = "pcmpl-pip";
};
@@ -46040,7 +46755,7 @@
pcomplete-extension = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "pcomplete-extension";
- version = "20140604.1847";
+ version = "20140604.1147";
src = fetchFromGitHub {
owner = "thierryvolpiatto";
repo = "pcomplete-extension";
@@ -46048,7 +46763,7 @@
sha256 = "0h0p4c08z0dqxmg55fzch1d2f38rywfk1j0an2f4sc94lj7ckbm6";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/pcomplete-extension";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/6cb8a938418f84a5b0ede92e84a516f38e4b1011/recipes/pcomplete-extension";
sha256 = "0m0c9ir44p21rj93fkisvpvi08936717ljmzsr4qdf69b3i54cwc";
name = "pcomplete-extension";
};
@@ -46061,7 +46776,7 @@
pcre2el = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "pcre2el";
- version = "20151213.1134";
+ version = "20151213.434";
src = fetchFromGitHub {
owner = "joddie";
repo = "pcre2el";
@@ -46069,7 +46784,7 @@
sha256 = "1dpfhrxbaqpgjzac3m9hclbzlnrxq9b8bx6za53aqvml72yzxc6i";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/pcre2el";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/f04a25e467cc4c7d9a263330a7a1a53d67c6eb9b/recipes/pcre2el";
sha256 = "1l72hv9843qk5p8gi9ibr15wczm804j3ws2v1x7nx4dr7pc5c7l3";
name = "pcre2el";
};
@@ -46082,7 +46797,7 @@
pcsv = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "pcsv";
- version = "20150220.1231";
+ version = "20150220.531";
src = fetchFromGitHub {
owner = "mhayashi1120";
repo = "Emacs-pcsv";
@@ -46090,7 +46805,7 @@
sha256 = "0aaprjczjf3al5vcypw1fsnz5a0xnnlhmvy0lc83i9aqbsa2y8af";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/pcsv";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/80ffaf99b2a4566a3f9d0309cd7b63f563f3826e/recipes/pcsv";
sha256 = "1zphndkbva59g1fd319a240yvq8fjk315b1fyrb8zvmqpgk9n0dl";
name = "pcsv";
};
@@ -46103,7 +46818,7 @@
pdb-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "pdb-mode";
- version = "20150128.1851";
+ version = "20150128.1151";
src = fetchFromGitHub {
owner = "sixpi";
repo = "pdb-mode";
@@ -46111,7 +46826,7 @@
sha256 = "1xkkyz7y08jr71rzdacb9v7gk95qsxlsshkdsxq8jp70irq51099";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/pdb-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/6aee132aa24322fe1ac88ae17ee6e77ae1ec8d11/recipes/pdb-mode";
sha256 = "1ihkxd15kx5m5xb9yxwz8wqbmyk9iaskry9szzdz1j4gjlczb6hy";
name = "pdb-mode";
};
@@ -46124,7 +46839,7 @@
pdf-tools = callPackage ({ emacs, fetchFromGitHub, fetchurl, let-alist, lib, melpaBuild, tablist }:
melpaBuild {
pname = "pdf-tools";
- version = "20160525.1820";
+ version = "20160525.1120";
src = fetchFromGitHub {
owner = "politza";
repo = "pdf-tools";
@@ -46132,7 +46847,7 @@
sha256 = "14h8vybd0lns92mxv045mfcllhq8fj509bvf7i9vr190mxgnxv3s";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/pdf-tools";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/8e3d53913f4e8a618e125fa9c1efb3787fbf002d/recipes/pdf-tools";
sha256 = "1hnc8cci00mw78h7d7gs8smzrgihqz871sdc9hfvamb7iglmdlxw";
name = "pdf-tools";
};
@@ -46145,7 +46860,7 @@
peacock-theme = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "peacock-theme";
- version = "20141116.802";
+ version = "20141116.102";
src = fetchFromGitHub {
owner = "emacsfodder";
repo = "emacs-peacock-theme";
@@ -46153,7 +46868,7 @@
sha256 = "1clvrmvijwpffigh5f29vnwcvffqk0nrvlz26158hip1z9x7nah3";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/peacock-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/641d1959bd31598fcdacd39a3d1bb077dcccfa5c/recipes/peacock-theme";
sha256 = "0jpdq090r37d07bm52yx3x9y3gsip6fyxxq1ax1k5k0r0js45kq9";
name = "peacock-theme";
};
@@ -46166,7 +46881,7 @@
peek-mode = callPackage ({ elnode, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "peek-mode";
- version = "20130620.2146";
+ version = "20130620.1446";
src = fetchFromGitHub {
owner = "erikriverson";
repo = "peek-mode";
@@ -46174,7 +46889,7 @@
sha256 = "11nv6pll0zj9dkgzlzgav39a6x3sfi7kvfhwm96fa3iy4v8bixrb";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/peek-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/08384964d8c1f5f60c84c044d26a79105973ab21/recipes/peek-mode";
sha256 = "07wcnh3jmp2gi9xhd3d8i2n0pr2g9kav497nnz94i85awhzf8fi4";
name = "peek-mode";
};
@@ -46187,7 +46902,7 @@
peep-dired = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "peep-dired";
- version = "20160321.2337";
+ version = "20160321.1737";
src = fetchFromGitHub {
owner = "asok";
repo = "peep-dired";
@@ -46195,7 +46910,7 @@
sha256 = "1wy5qpnfri1gha2cnl6q20qar8dbl2mimpb43bnhmm2g3wgjyad6";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/peep-dired";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/e8e06a916ac18053e34821673d1cf7936b15c2ac/recipes/peep-dired";
sha256 = "16k5y3h2ip96k071vhx83avg4r4nplnd973b1271vvxbx2bly735";
name = "peep-dired";
};
@@ -46208,7 +46923,7 @@
peg = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "peg";
- version = "20150708.841";
+ version = "20150708.141";
src = fetchFromGitHub {
owner = "ellerh";
repo = "peg.el";
@@ -46216,7 +46931,7 @@
sha256 = "0kjz7ch4bn0m4v9zgqyqcrsasnqc5c5drv2hp22j7rnbb7ny0q3n";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/peg";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/9b9b55a02e903ae7e75f8b636fdb1cf907c5db7c/recipes/peg";
sha256 = "0nxy9xn99myz0p36m4jflfj48qxhhn1sspbfx8d90030xg3cc2gm";
name = "peg";
};
@@ -46229,14 +46944,14 @@
per-buffer-theme = callPackage ({ cl-lib ? null, fetchhg, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "per-buffer-theme";
- version = "20160318.2301";
+ version = "20160318.1701";
src = fetchhg {
url = "https://bitbucket.com/inigoserna/per-buffer-theme.el";
rev = "9e6200da91b3";
sha256 = "0w02l91x624cgzdg33a9spgcwy12m607dsfnr1xbc1fi08np4sd1";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/per-buffer-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/5b7972602399f9df9139cff177e38653bb0f43ed/recipes/per-buffer-theme";
sha256 = "1czcaybpfmx4mwff7hs07iayyvgvlhifkickccap6kpd0cp4n6hn";
name = "per-buffer-theme";
};
@@ -46249,7 +46964,7 @@
perl-completion = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "perl-completion";
- version = "20090528.836";
+ version = "20090528.136";
src = fetchFromGitHub {
owner = "imakado";
repo = "perl-completion";
@@ -46257,7 +46972,7 @@
sha256 = "0fzypcxxd5zlkcybz0xppf09l0vf4vsfisr2y3ijsmxhg7yrwzj5";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/perl-completion";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/987c14a2c4a31e27382d05cdbca18a3d2661d2e1/recipes/perl-completion";
sha256 = "01p17mlkwjm60f14arda3ly8ng0r98nn3rly94ghn6jr7r7fv14b";
name = "perl-completion";
};
@@ -46270,15 +46985,15 @@
perl6-mode = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, pkg-info }:
melpaBuild {
pname = "perl6-mode";
- version = "20160117.2009";
+ version = "20160616.908";
src = fetchFromGitHub {
owner = "hinrik";
repo = "perl6-mode";
- rev = "bf7900b2867ed130be8180cb95f34af969d76eb2";
- sha256 = "11fs78b7ssz18wr35vxf6h4zpfj4l4vsikfzayq6hyqjnchv7b45";
+ rev = "5456e2b044a9176cccf13776f4a15a6820ddc2a0";
+ sha256 = "0nq5ldabicnjysxz9347lh63r3s91s4jpa9rdj316bkihyd4zy6w";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/perl6-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/d4bbb2171c70958d5ab3730f974db3b07561a81b/recipes/perl6-mode";
sha256 = "0af1djypd8n0n1fq10sl8mrdg27354kg9g87d6xz4q5phvi48cqv";
name = "perl6-mode";
};
@@ -46291,7 +47006,7 @@
perlbrew = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "perlbrew";
- version = "20130127.1224";
+ version = "20130127.524";
src = fetchFromGitHub {
owner = "kentaro";
repo = "perlbrew.el";
@@ -46299,7 +47014,7 @@
sha256 = "0wg0cpqxzfgln6xdngzspsbfirn9a5jxpgk66m0fpi33215z9q26";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/perlbrew";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/24bd9c2cd848f5003a244a7127e8fc5ef46bdca4/recipes/perlbrew";
sha256 = "1qadwkcic2qckqy8hgrnj08ajhxayknhpyxkc6ir15vfqjk5crr8";
name = "perlbrew";
};
@@ -46312,7 +47027,7 @@
persistent-overlays = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "persistent-overlays";
- version = "20160426.2121";
+ version = "20160426.1421";
src = fetchFromGitHub {
owner = "mneilly";
repo = "Emacs-Persistent-Overlays";
@@ -46320,7 +47035,7 @@
sha256 = "0iw9qsqy1aszwfzfslyxz31zav4xq8pbrx0mwxqix5lvy7768ppp";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/persistent-overlays";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/d3673c87c5ca883b4f713efeae912c3ad991c667/recipes/persistent-overlays";
sha256 = "136acbxqykvsw8a5il1zgpxr7llxmc3347847vf0jnmbzb1b472a";
name = "persistent-overlays";
};
@@ -46333,7 +47048,7 @@
persistent-scratch = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "persistent-scratch";
- version = "20160404.1815";
+ version = "20160404.1115";
src = fetchFromGitHub {
owner = "Fanael";
repo = "persistent-scratch";
@@ -46341,7 +47056,7 @@
sha256 = "0j72rqd96dz9pp9zwc88q3358m4b891dg0szmbyvs4myp3yandz2";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/persistent-scratch";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/f1e32702bfa15490b692d5db59e22d2c07b292d1/recipes/persistent-scratch";
sha256 = "0iai65lsg3zxj07hdb9201w3rwrvdb3wffr6k2jdl8hzg5idghn1";
name = "persistent-scratch";
};
@@ -46354,7 +47069,7 @@
persistent-soft = callPackage ({ fetchFromGitHub, fetchurl, lib, list-utils, melpaBuild, pcache }:
melpaBuild {
pname = "persistent-soft";
- version = "20150223.1953";
+ version = "20150223.1253";
src = fetchFromGitHub {
owner = "rolandwalker";
repo = "persistent-soft";
@@ -46362,7 +47077,7 @@
sha256 = "14p20br8vzxs39d4hswzrrkgwql5nnmn5j17cpbabzjvck42rixc";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/persistent-soft";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/c9db386ab3910940addae6e925b2ac17e64e0f87/recipes/persistent-soft";
sha256 = "0a4xiwpgyyynjf69s8p183mqd3z53absv544ggvhb2gkpm6jravc";
name = "persistent-soft";
};
@@ -46375,15 +47090,15 @@
persp-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "persp-mode";
- version = "20160528.1838";
+ version = "20160630.331";
src = fetchFromGitHub {
owner = "Bad-ptr";
repo = "persp-mode.el";
- rev = "5e5c2b3306653e8d9a9ca67e6f7b77cf86e74ddb";
- sha256 = "1rvsbyx3838va9vx3g8a3vj9pp3fin4vqkngi0dl7asddcl9mp58";
+ rev = "d14ed14a40cac21477c1617834ab23b27ed182ab";
+ sha256 = "1330nfvx48mlyysaq6xad3pycv6qsry6hnnacyc5b3q0l73m8jrp";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/persp-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/caad63d14f770f07d09b6174b7b40c5ab06a1083/recipes/persp-mode";
sha256 = "1bgni7y5xsn4a21494npr90w3320snfzw1hvql30xrr57pw3765w";
name = "persp-mode";
};
@@ -46396,7 +47111,7 @@
persp-projectile = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild, perspective, projectile }:
melpaBuild {
pname = "persp-projectile";
- version = "20151220.1330";
+ version = "20151220.630";
src = fetchFromGitHub {
owner = "bbatsov";
repo = "persp-projectile";
@@ -46404,7 +47119,7 @@
sha256 = "0b9hz253m6d58dwsjsk9d1fw0ql33m9wfvyx10ncsqbr0j0s98k5";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/persp-projectile";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/8bc4e3a5af7ba86d277c73a1966a91c87d3d855a/recipes/persp-projectile";
sha256 = "10l2kqjyigg98qbbpf3qf4d5bm63kkk4vp7ip8fibgj1p9gqmnxm";
name = "persp-projectile";
};
@@ -46417,15 +47132,15 @@
perspective = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "perspective";
- version = "20160220.122";
+ version = "20160609.1644";
src = fetchFromGitHub {
owner = "nex3";
repo = "perspective-el";
- rev = "c075205313b23cc816c72f1f43b846ce608a22d5";
- sha256 = "11slq43p6gjvmi4pqwh76a26c2v6l1dmnihgaskn4g0s65qw3kqk";
+ rev = "89a8ef5e8297b113e4f732bb94336608b76e13fd";
+ sha256 = "1bdywz241kyvlxn107l2jg6vyhvvw5j4pywrarzx3pdymh9qk645";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/perspective";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/0bf5d4356424b492579a029f58dd4685ff5aaf39/recipes/perspective";
sha256 = "150dxcsd0ylvfi9mmfpcki1wd3nl8q9mbszd3dgqfnm40yncklml";
name = "perspective";
};
@@ -46438,7 +47153,7 @@
pg = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "pg";
- version = "20130731.2342";
+ version = "20130731.1642";
src = fetchFromGitHub {
owner = "cbbrowne";
repo = "pg.el";
@@ -46446,7 +47161,7 @@
sha256 = "1zh7v4nnpzvbi8yj1ynlqlawk5bmlxi6s80b5f2y7hkdqb5q26k0";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/pg";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/5c4d1bb21948da2b283a3a9d89d9e3aed11afa13/recipes/pg";
sha256 = "0n0187ndvwza1nis9a12h584qdqkwqfzhdw21kz5d1i6c43g7gji";
name = "pg";
};
@@ -46459,7 +47174,7 @@
pgdevenv = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "pgdevenv";
- version = "20150105.2336";
+ version = "20150105.1636";
src = fetchFromGitHub {
owner = "dimitri";
repo = "pgdevenv-el";
@@ -46467,7 +47182,7 @@
sha256 = "0c9d4c24ic67y07y74bv5b7vc56b6l0lbh2fbzm870r1dl5zbzcj";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/pgdevenv";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/73ae474fc4792b2c322a0d2b5fd5b7cfe8c2fd05/recipes/pgdevenv";
sha256 = "0za35sdwwav81wpk4jjqh56icaswwxxyg3bqqp0qiz24llb5ln1w";
name = "pgdevenv";
};
@@ -46480,7 +47195,7 @@
ph = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "ph";
- version = "20130312.1937";
+ version = "20130312.1337";
src = fetchFromGitHub {
owner = "gromnitsky";
repo = "ph";
@@ -46488,7 +47203,7 @@
sha256 = "1qxsc5wyk8l9gkgmqy3mzwxdhji1ljqw9s1jfxkax7fyv4d1v31p";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ph";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/f62ca074ca2df780ab32aac50b2b828ee6a9934c/recipes/ph";
sha256 = "0azx4cpfdn01yrqyn0q1gg9z7w0h0rn7zl39v3dx6yidd76ysh0l";
name = "ph";
};
@@ -46501,7 +47216,7 @@
phabricator = callPackage ({ dash, emacs, f, fetchFromGitHub, fetchurl, lib, melpaBuild, projectile, s }:
melpaBuild {
pname = "phabricator";
- version = "20160510.1625";
+ version = "20160510.925";
src = fetchFromGitHub {
owner = "ajtulloch";
repo = "phabricator.el";
@@ -46509,7 +47224,7 @@
sha256 = "0cmfb5ns335nq27iw94qxvrldpwjga0hw40da9kpdcfg0in4ya0c";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/phabricator";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/829010a578f34f0f2dfb36a0de01547c2950bb65/recipes/phabricator";
sha256 = "07988f2xyp76xjs25b3rdblhmijs2piriz4p0q92jw69bdvkl14c";
name = "phabricator";
};
@@ -46522,7 +47237,7 @@
phi-autopair = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, paredit }:
melpaBuild {
pname = "phi-autopair";
- version = "20150527.1123";
+ version = "20150527.423";
src = fetchFromGitHub {
owner = "zk-phi";
repo = "phi-autopair";
@@ -46530,7 +47245,7 @@
sha256 = "14g06ndxrqz80kdyhil6ajcqqxkfa77r1gr7vwqa9sq6jgm8dpx5";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/phi-autopair";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/f26b586c0126699f3de65bf38dfbf9c4c0149c15/recipes/phi-autopair";
sha256 = "1ya1bvh28qgz1zg9kdh2lzbsf0w0lx4xr42mdrjwaz3bbfa9asg4";
name = "phi-autopair";
};
@@ -46543,7 +47258,7 @@
phi-grep = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "phi-grep";
- version = "20150212.1624";
+ version = "20150212.924";
src = fetchFromGitHub {
owner = "zk-phi";
repo = "phi-grep";
@@ -46551,7 +47266,7 @@
sha256 = "1rchxhp4kji5kbg8kzkzdbfy8sdbgbqd5g59cch7ia9agh5jvwyx";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/phi-grep";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/992655fa4bd209abdf1149572e95f853e595125e/recipes/phi-grep";
sha256 = "1y5lq6lq9qdydbypb1pjnxryh94a295nnqqh2x27whiwdiysirjj";
name = "phi-grep";
};
@@ -46564,7 +47279,7 @@
phi-rectangle = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "phi-rectangle";
- version = "20151208.754";
+ version = "20151208.54";
src = fetchFromGitHub {
owner = "zk-phi";
repo = "phi-rectangle";
@@ -46572,7 +47287,7 @@
sha256 = "0d2c579rg8wdfmn94nzaix9332jch4wlr939jszls330s38d0iv4";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/phi-rectangle";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/d4b6d362a12828dfef5f0e2216f5ef21c6cb7eed/recipes/phi-rectangle";
sha256 = "08yw04wmbgbbr60i638m0rspfwn3cp47ky5ssgjcgcmmdgg9yfvy";
name = "phi-rectangle";
};
@@ -46585,7 +47300,7 @@
phi-search = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "phi-search";
- version = "20150807.1012";
+ version = "20150807.312";
src = fetchFromGitHub {
owner = "zk-phi";
repo = "phi-search";
@@ -46593,7 +47308,7 @@
sha256 = "10kyq3lkhmbmj1hl9awzc0w8073dn9mbjd5skh660ljg5mmi6x62";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/phi-search";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/2f0274300c33f19ca6f868e1d570ffee513dbdf7/recipes/phi-search";
sha256 = "0nj06ixl76dd80zg83q4bi8k224mcwb612mr4gd1xppj5k8xl03g";
name = "phi-search";
};
@@ -46606,7 +47321,7 @@
phi-search-dired = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, phi-search }:
melpaBuild {
pname = "phi-search-dired";
- version = "20150405.914";
+ version = "20150405.214";
src = fetchFromGitHub {
owner = "zk-phi";
repo = "phi-search-dired";
@@ -46614,7 +47329,7 @@
sha256 = "1b44947hncw4q42fxxrz6fm21habzp4pyp0569xdwysrx2rca2fn";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/phi-search-dired";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/57c6dd518648f23927c5e6424210c157ed3cfd95/recipes/phi-search-dired";
sha256 = "1gf3vs3vrp5kbq4ixnj7adazmnqixi63qswgc2512p10gf7inf8p";
name = "phi-search-dired";
};
@@ -46627,7 +47342,7 @@
phi-search-mc = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, multiple-cursors, phi-search }:
melpaBuild {
pname = "phi-search-mc";
- version = "20160324.1603";
+ version = "20160324.1003";
src = fetchFromGitHub {
owner = "knu";
repo = "phi-search-mc.el";
@@ -46635,7 +47350,7 @@
sha256 = "0wr86ad0yl52im6b9z0b9pzmhcn39qg5m9878yfv1nbxliw40lcd";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/phi-search-mc";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/83cf3fa3736eb2583dcf6bca16b9acb89e3408a3/recipes/phi-search-mc";
sha256 = "07hd80rbyzr5n3yd7hv1j51nl6pvcxmln20g6xvw8gh5yfl9k0m8";
name = "phi-search-mc";
};
@@ -46648,7 +47363,7 @@
phi-search-migemo = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, migemo, phi-search }:
melpaBuild {
pname = "phi-search-migemo";
- version = "20150116.1406";
+ version = "20150116.706";
src = fetchFromGitHub {
owner = "zk-phi";
repo = "phi-search-migemo";
@@ -46656,7 +47371,7 @@
sha256 = "1k8hjnkinzdxy9qxldsyvj6npa2sv48m905d1cvxr8lyzpc5hikh";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/phi-search-migemo";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/b78e07146a4e954e050349a1798ac46ecba10bab/recipes/phi-search-migemo";
sha256 = "0qk73s09sasm438w29j5z2bmlb60p1mgbv2ch43rgq8c6kjzg6h6";
name = "phi-search-migemo";
};
@@ -46669,7 +47384,7 @@
phoenix-dark-mono-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "phoenix-dark-mono-theme";
- version = "20130306.2115";
+ version = "20130306.1415";
src = fetchFromGitHub {
owner = "j0ni";
repo = "phoenix-dark-mono";
@@ -46677,7 +47392,7 @@
sha256 = "1fg63g1cm9mp50sf3ldcb0pr4bvlfxx010arisxdkj102pmib2ri";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/phoenix-dark-mono-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/87e3b036fbcc96b047bbb141345a7b51f19d6951/recipes/phoenix-dark-mono-theme";
sha256 = "15in299j170n0wxmkg3cx1zzx1n7r1ifraqqzfqhcnk8i8lmc939";
name = "phoenix-dark-mono-theme";
};
@@ -46690,7 +47405,7 @@
phoenix-dark-pink-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "phoenix-dark-pink-theme";
- version = "20150407.502";
+ version = "20150406.2202";
src = fetchFromGitHub {
owner = "j0ni";
repo = "phoenix-dark-pink";
@@ -46698,7 +47413,7 @@
sha256 = "042yw44d5pwykl177sdh209drc5f17yzhq0mxrf7qhycbjs4h8cg";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/phoenix-dark-pink-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/87e3b036fbcc96b047bbb141345a7b51f19d6951/recipes/phoenix-dark-pink-theme";
sha256 = "0bz6iw73d85bi12qqx6fdw3paqknrxvn0asbwjmgdcrlqrfczjlr";
name = "phoenix-dark-pink-theme";
};
@@ -46711,7 +47426,7 @@
php-auto-yasnippets = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, php-mode, yasnippet }:
melpaBuild {
pname = "php-auto-yasnippets";
- version = "20141128.2311";
+ version = "20141128.1611";
src = fetchFromGitHub {
owner = "ejmr";
repo = "php-auto-yasnippets";
@@ -46719,7 +47434,7 @@
sha256 = "1l64rka9wrnwdgfgwv8xh7mq9f1937z2v3r82qcfi6il3anw4zm0";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/php-auto-yasnippets";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/d47ca8cd5900a80a2ede1b354547addf9b2bbbac/recipes/php-auto-yasnippets";
sha256 = "1hhddvpc80b6wvjpbpibsf24rp5a5p45m0bg7m0c8mx181h9mqgn";
name = "php-auto-yasnippets";
};
@@ -46732,7 +47447,7 @@
php-boris = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "php-boris";
- version = "20130527.1021";
+ version = "20130527.321";
src = fetchFromGitHub {
owner = "tomterl";
repo = "php-boris";
@@ -46740,7 +47455,7 @@
sha256 = "07lcibr55pk3sab9bbq2r4phadl5p28n63wkq5rkhkkjc7s9rayc";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/php-boris";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/38dc0469a114da121de5b7bdfb75a395f2bcf777/recipes/php-boris";
sha256 = "19yfbrlfqikix2lnnlbpzm6yakjhl84ix0zra2ycpvgg2pl88r0g";
name = "php-boris";
};
@@ -46753,7 +47468,7 @@
php-boris-minor-mode = callPackage ({ fetchFromGitHub, fetchurl, highlight, lib, melpaBuild, php-boris }:
melpaBuild {
pname = "php-boris-minor-mode";
- version = "20140209.1935";
+ version = "20140209.1235";
src = fetchFromGitHub {
owner = "steckerhalter";
repo = "php-boris-minor-mode";
@@ -46761,7 +47476,7 @@
sha256 = "1wk7vq80v97psxfg0pwy4mc6kdc61gm6h1vgl9p71ii6g6zvzcqg";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/php-boris-minor-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/38006c8029c8891d660c423e79db0d45bf3d4428/recipes/php-boris-minor-mode";
sha256 = "1cmpd303chldss7kylpinv8qc3c78srz02a9cp9x79c8arq7apwl";
name = "php-boris-minor-mode";
};
@@ -46774,7 +47489,7 @@
php-eldoc = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "php-eldoc";
- version = "20140202.2041";
+ version = "20140202.1341";
src = fetchFromGitHub {
owner = "sabof";
repo = "php-eldoc";
@@ -46782,7 +47497,7 @@
sha256 = "0hm6myvf91f4d2yfc7fs2xky9m8hfnimx1gkfzmn9f5pcc2l2p0i";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/php-eldoc";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/7af452f42847a947e87edd6aa559f807d08920c1/recipes/php-eldoc";
sha256 = "1q5fkl8crqrgxik2mxbkqv10qnqhqrazd66rgfw797s3jcchv58j";
name = "php-eldoc";
};
@@ -46795,15 +47510,15 @@
php-mode = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "php-mode";
- version = "20160526.1325";
+ version = "20160605.1733";
src = fetchFromGitHub {
owner = "ejmr";
repo = "php-mode";
- rev = "c9fc19039648dd2a209209fa70da95435c338ee6";
- sha256 = "082yfmwvdff808kmhd1ks3h7ysxm6mzqb0lzbh6fy5idlhgnbkkb";
+ rev = "f7b00745ee8a88babdeb06aa8b9c8e7e966de1dc";
+ sha256 = "1nzdanxnlm6yapi77x9iq4xpyvpw78cybzl6i1sf215p8lnm95rs";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/php-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/7cdbc35fee67b87b87ec72aa00e6dca77aef17c4/recipes/php-mode";
sha256 = "1lc4d3fgxhanqr3b8zr99z0la6cpzs2rksj806lnsfw38klvi89y";
name = "php-mode";
};
@@ -46816,7 +47531,7 @@
php-plus--mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "php-plus--mode";
- version = "20121129.2152";
+ version = "20121129.1452";
src = fetchFromGitHub {
owner = "echosa";
repo = "phpplus-mode";
@@ -46824,7 +47539,7 @@
sha256 = "0f1n0jcla157ngqshq5n8iws216ar63ynjd6743cbdrzj0v030wg";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/php+-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/f10631b740eea56e7209d7e84f0da8613274ef1d/recipes/php+-mode";
sha256 = "1ibcsky6la3l7gawpgx814w1acjf73b68i6wbb4p6saxhwg6adik";
name = "php-plus--mode";
};
@@ -46837,7 +47552,7 @@
php-refactor-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "php-refactor-mode";
- version = "20160417.2346";
+ version = "20160417.1646";
src = fetchFromGitHub {
owner = "keelerm84";
repo = "php-refactor-mode.el";
@@ -46845,7 +47560,7 @@
sha256 = "01i552ch8r8i6nzw8prwxcafzrq6xnzyc4cn36w3my1xq0k2ljvz";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/php-refactor-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/ad4a9bb43e131e2eb0d8b09b13245bc268c524a5/recipes/php-refactor-mode";
sha256 = "0gj0nv6ii7pya0hcxs8haz5pahj0sa12c2ls53c3j85in645zb3s";
name = "php-refactor-mode";
};
@@ -46858,7 +47573,7 @@
phpcbf = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, s }:
melpaBuild {
pname = "phpcbf";
- version = "20150302.1428";
+ version = "20150302.728";
src = fetchFromGitHub {
owner = "nishimaki10";
repo = "emacs-phpcbf";
@@ -46866,7 +47581,7 @@
sha256 = "09rinyx0621d7613xmbyvrrlav6d4ia332wkgg0m9dn265g3h56z";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/phpcbf";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/77ef54e3fb2715a081786dc54f99ae74def5c77c/recipes/phpcbf";
sha256 = "1hf88ys4grffpqgavrbc72dn3m7crafgid2ygzx9c5j55syh8mfv";
name = "phpcbf";
};
@@ -46879,7 +47594,7 @@
phpunit = callPackage ({ cl-lib ? null, emacs, f, fetchFromGitHub, fetchurl, lib, melpaBuild, pkg-info, s }:
melpaBuild {
pname = "phpunit";
- version = "20160531.1627";
+ version = "20160531.927";
src = fetchFromGitHub {
owner = "nlamirault";
repo = "phpunit.el";
@@ -46887,7 +47602,7 @@
sha256 = "1pmds2g7y1pcs3ivsd68zg30ih34janib0ydz4wr0mci3q52cjpy";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/phpunit";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/0670b42c0c998daa7bf01080757976ac3589ec06/recipes/phpunit";
sha256 = "0nj8ss1yjkcqnbnn4jgbp0403ljjk2xhipzikdrl3dbxlf14i4f8";
name = "phpunit";
};
@@ -46900,7 +47615,7 @@
pianobar = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "pianobar";
- version = "20120128.2201";
+ version = "20120128.1501";
src = fetchFromGitHub {
owner = "agrif";
repo = "pianobar.el";
@@ -46908,7 +47623,7 @@
sha256 = "053jqzl0sp3dnl4919vi30xqrdcpi9jsqx5hndj1bprf7926w11d";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/pianobar";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/b5659b4c7be20572aabe75caba866301393db012/recipes/pianobar";
sha256 = "16vsf2cig9qjbh9s58zb5byjmyghxbsxpzpm5hyyrv251jap1jjn";
name = "pianobar";
};
@@ -46921,7 +47636,7 @@
picolisp-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "picolisp-mode";
- version = "20150516.1055";
+ version = "20150516.355";
src = fetchFromGitHub {
owner = "flexibeast";
repo = "picolisp-mode";
@@ -46929,7 +47644,7 @@
sha256 = "0p91ysyjksbravnw3l78mshay6swgb5k1zi5bbppppk8zkmdp115";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/picolisp-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/fe116998dadeef6e61c0791efb396f9b8befa5d6/recipes/picolisp-mode";
sha256 = "1n56knbapyfs8n23arzlz27y0q4846r64krwlwh8agfqkcdw9dp5";
name = "picolisp-mode";
};
@@ -46942,7 +47657,7 @@
pig-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "pig-mode";
- version = "20140617.1958";
+ version = "20140617.1258";
src = fetchFromGitHub {
owner = "motus";
repo = "pig-mode";
@@ -46950,7 +47665,7 @@
sha256 = "1yg9n265ljdjlh6a3jrjwyvj3f76wp68x25bl0p8dxrrsyr9kvfx";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/pig-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/a0d7c07d28e2f229b281201a781ebaceed6465ed/recipes/pig-mode";
sha256 = "0gmvc4rrqkn0cx8fk1sxk6phfbpf8dcba3k6i24k3idcx8rxsw3x";
name = "pig-mode";
};
@@ -46963,7 +47678,7 @@
pig-snippets = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, yasnippet }:
melpaBuild {
pname = "pig-snippets";
- version = "20130913.824";
+ version = "20130913.124";
src = fetchFromGitHub {
owner = "motus";
repo = "pig-mode";
@@ -46971,7 +47686,7 @@
sha256 = "1yg9n265ljdjlh6a3jrjwyvj3f76wp68x25bl0p8dxrrsyr9kvfx";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/pig-snippets";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/a0d7c07d28e2f229b281201a781ebaceed6465ed/recipes/pig-snippets";
sha256 = "1sqi0a2dsqgmabkrncxiyrhibyryyy25d11b15ybhlngd05wqbx2";
name = "pig-snippets";
};
@@ -46984,7 +47699,7 @@
pillar = callPackage ({ fetchFromGitHub, fetchurl, lib, makey, melpaBuild }:
melpaBuild {
pname = "pillar";
- version = "20141112.1911";
+ version = "20141112.1211";
src = fetchFromGitHub {
owner = "pillar-markup";
repo = "pillar-mode";
@@ -46992,7 +47707,7 @@
sha256 = "19i8hgzr7kdj4skf0cnv6vlsklq9qcyxcv3p33k9vgq7y4f9mah8";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/pillar";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/bff55f1182f3bd0bc8a8773921f703168d87de21/recipes/pillar";
sha256 = "1lklky3shyvm1iygp621hbldpx37m0a9vd5l6mxs4y60ksj6z0js";
name = "pillar";
};
@@ -47005,7 +47720,7 @@
pinboard-api = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "pinboard-api";
- version = "20140324.1248";
+ version = "20140324.648";
src = fetchFromGitHub {
owner = "danieroux";
repo = "pinboard-api-el";
@@ -47013,7 +47728,7 @@
sha256 = "0wy9c37g6m5khchlp8qvfnjgkwq4r38659adcm5prvzjgzqhlfja";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/pinboard-api";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/7a13787abe600b6f6355a475af573efa0064bf6f/recipes/pinboard-api";
sha256 = "0yzvgnpkj2fhl01id36nc5pj8vyb05bllraiz3lwwcc66y98h9n0";
name = "pinboard-api";
};
@@ -47026,7 +47741,7 @@
pinot = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "pinot";
- version = "20140211.2126";
+ version = "20140211.1426";
src = fetchFromGitHub {
owner = "tkf";
repo = "emacs-pinot-search";
@@ -47034,7 +47749,7 @@
sha256 = "1wc31r5fpcia4n4vbpg7vv3rzrnjzh18yygi3kp4wvl2wzx2azqh";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/pinot";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/f75cd89811b4bb668c1e7a93246b93fbcf5d9c47/recipes/pinot";
sha256 = "1kjzq02pddnkia637xz2mnjjyglyh6qzragnf7nnxbw9ayiim58i";
name = "pinot";
};
@@ -47047,7 +47762,7 @@
pinyin-search = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, pinyinlib }:
melpaBuild {
pname = "pinyin-search";
- version = "20160515.558";
+ version = "20160514.2258";
src = fetchFromGitHub {
owner = "xuchunyang";
repo = "pinyin-search.el";
@@ -47055,7 +47770,7 @@
sha256 = "0bp4raxqv34jyg3yvdcsh9lav28x376gngm9nn8vjgmq9wggzf3i";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/pinyin-search";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/03da6f02778f7fae77a00cdc420cfbafead6dec4/recipes/pinyin-search";
sha256 = "1si693nmmxgg0kp5mxvj5nq946kfc5cv3wfsl4znbqzps8qb2b7z";
name = "pinyin-search";
};
@@ -47068,7 +47783,7 @@
pinyinlib = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "pinyinlib";
- version = "20160505.2148";
+ version = "20160505.1448";
src = fetchFromGitHub {
owner = "cute-jumper";
repo = "pinyinlib.el";
@@ -47076,7 +47791,7 @@
sha256 = "0wbdhd3wqha3ahyakdjj4ki3998l0fafi86l26gkir1bq2qpkmcs";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/pinyinlib";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/f4aa27985dcfaf24f1863667b89e13df4710546f/recipes/pinyinlib";
sha256 = "0kv67qa3825fw64qimkph2b65pilrsx5730y4c7f7c1f8giz5vxr";
name = "pinyinlib";
};
@@ -47089,7 +47804,7 @@
pip-requirements = callPackage ({ dash, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "pip-requirements";
- version = "20160131.1826";
+ version = "20160131.1126";
src = fetchFromGitHub {
owner = "Wilfred";
repo = "pip-requirements.el";
@@ -47097,7 +47812,7 @@
sha256 = "0j4h6q1s2s9dw1pp22xsajchwg8nh3x4x5qxbzf19i1xbpcghw7h";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/pip-requirements";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/5eaf6987f92070ccc33d3e28c6bb2b96f72ba1aa/recipes/pip-requirements";
sha256 = "1wsjfyqga7pzp8gsm5x53qrkn40srairbjpifyrqbi2fpzmwhrnz";
name = "pip-requirements";
};
@@ -47110,7 +47825,7 @@
pivotal-tracker = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "pivotal-tracker";
- version = "20151203.2050";
+ version = "20151203.1350";
src = fetchFromGitHub {
owner = "jxa";
repo = "pivotal-tracker";
@@ -47118,7 +47833,7 @@
sha256 = "1sbwqrk9nciqwm53sfbq3nr9f9zzpz79dmxs8yp005dk7accdlls";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/pivotal-tracker";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/793d86ec68fc10d4f23eca4ffef162e920d9fc42/recipes/pivotal-tracker";
sha256 = "195wcfn434yp0p93zqih1snkkg1v7nxgb4gn0klajahmyrrjq2a2";
name = "pivotal-tracker";
};
@@ -47131,7 +47846,7 @@
pixie-mode = callPackage ({ clojure-mode, fetchFromGitHub, fetchurl, inf-clojure, lib, melpaBuild }:
melpaBuild {
pname = "pixie-mode";
- version = "20150122.624";
+ version = "20150121.2324";
src = fetchFromGitHub {
owner = "johnwalker";
repo = "pixie-mode";
@@ -47139,7 +47854,7 @@
sha256 = "0nnvf2p593gn8sbyrvczyll030xgnkxn900a2hy7ia7xh0wmvddp";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/pixie-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/a57300bfdae57c9996db0411d56a5fc7b35778c3/recipes/pixie-mode";
sha256 = "16z15yh78837k548xk5widdmy6fv03vym6q54i40knmgf5cllsl8";
name = "pixie-mode";
};
@@ -47152,7 +47867,7 @@
pixiv-novel-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "pixiv-novel-mode";
- version = "20160220.1521";
+ version = "20160220.821";
src = fetchFromGitHub {
owner = "zonuexe";
repo = "pixiv-novel-mode.el";
@@ -47160,7 +47875,7 @@
sha256 = "18rvnvm097ca4yc1nfswdv7dfqg36insnif5kfj19aa60m9qxl09";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/pixiv-novel-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/92092c1c13c37520f98b952d40745aa062f062c1/recipes/pixiv-novel-mode";
sha256 = "0f1rxvf9nrw984122i6dzsgik9axfjv6yscmg203s065n9lz17px";
name = "pixiv-novel-mode";
};
@@ -47173,7 +47888,7 @@
pkg-info = callPackage ({ epl, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "pkg-info";
- version = "20150517.1343";
+ version = "20150517.643";
src = fetchFromGitHub {
owner = "lunaryorn";
repo = "pkg-info.el";
@@ -47181,7 +47896,7 @@
sha256 = "1xkdbyhz9mgdz5zmjm4hh050klsl12w5lkckw2l77ihcxv0vjnf2";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/pkg-info";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/73fc80e94c98ff304a521466c6577c96a10e79a8/recipes/pkg-info";
sha256 = "0whcvralk76mfmvbvwn57va5dkb1irj7iwffgddi7r0ima49iszx";
name = "pkg-info";
};
@@ -47194,7 +47909,7 @@
pkgbuild-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "pkgbuild-mode";
- version = "20151010.1636";
+ version = "20151010.936";
src = fetchFromGitHub {
owner = "juergenhoetzel";
repo = "pkgbuild-mode";
@@ -47202,7 +47917,7 @@
sha256 = "077vp3fxwxj7b98ydw6iyi391w3acp73qwk6615yqdylpp66m750";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/pkgbuild-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/ca7bf43ef8893bf04e9658390e306ef69e80a156/recipes/pkgbuild-mode";
sha256 = "1lp7frjahcpr4xnzxz77qj5hbpxbxm2g28apkixrnc1xjha66v3x";
name = "pkgbuild-mode";
};
@@ -47215,15 +47930,15 @@
plan9-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "plan9-theme";
- version = "20160112.423";
+ version = "20160620.309";
src = fetchFromGitHub {
owner = "john2x";
repo = "plan9-theme.el";
- rev = "b32f6ae1dcc0ec2ba73d8250f36e331dd633600e";
- sha256 = "0rpiyp95k14fsc5hdbnj4hs3snh0vm8a2skcplsdwkmb5j9547w1";
+ rev = "d87ff625e280c017d0fb6cd3c141ca6dd0bf9c29";
+ sha256 = "0ijqgms585jp3b5l95dk30g8yjfffljk8i3rgf71wrdvcsinyicb";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/plan9-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/cdc4c2bafaa09e38edd485a9091db689fbda2fe6/recipes/plan9-theme";
sha256 = "0bvr877mc79s1shr82b33ipspz09jzc3809c6pkbw0jqpfid44cc";
name = "plan9-theme";
};
@@ -47236,7 +47951,7 @@
planet-theme = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "planet-theme";
- version = "20160426.558";
+ version = "20160425.2258";
src = fetchFromGitHub {
owner = "cmack";
repo = "emacs-planet-theme";
@@ -47244,7 +47959,7 @@
sha256 = "1aahyxmjsz9i5d22654bnmis8isbf5fydh0yy03sbiybm2hlyimi";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/planet-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/18c4b8311b42af9f914264245f4dd377adcfbd0c/recipes/planet-theme";
sha256 = "1mhbydvk7brmkgmij5gpp6l9ixcyh1g3r4fw3kpq8nvgbwknsqc9";
name = "planet-theme";
};
@@ -47257,7 +47972,7 @@
plantuml-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "plantuml-mode";
- version = "20150601.831";
+ version = "20150601.131";
src = fetchFromGitHub {
owner = "zwz";
repo = "plantuml-mode";
@@ -47265,7 +47980,7 @@
sha256 = "03nw4af1lgfppsbfq945c9pcz6ynhvpzlfdx3az83zi24b10az8n";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/plantuml-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/cad28f1bb83685ca355e230b46f1e0eebe2f7bb1/recipes/plantuml-mode";
sha256 = "14imiqfgc2j9kjr3aqwzlw8xr1w5hb8i7d4ch709qky036i3lsci";
name = "plantuml-mode";
};
@@ -47278,7 +47993,7 @@
platformio-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, projectile }:
melpaBuild {
pname = "platformio-mode";
- version = "20160328.320";
+ version = "20160327.2020";
src = fetchFromGitHub {
owner = "ZachMassia";
repo = "PlatformIO-Mode";
@@ -47286,7 +48001,7 @@
sha256 = "04xnk9s5mjr55y36y07k4vnsf841pg70c9wr6vcj5s16h3fhx9nw";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/platformio-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/7fabdb05de9b8ec18a3a566f99688b50443b6b44/recipes/platformio-mode";
sha256 = "1v1pp3365wj19a5wmsxyyy5n548z3lmcbm2pwl914wip3ca7546f";
name = "platformio-mode";
};
@@ -47299,15 +48014,15 @@
play-routes-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "play-routes-mode";
- version = "20160322.1800";
+ version = "20160615.2253";
src = fetchFromGitHub {
owner = "brocode";
repo = "play-routes-mode";
- rev = "d7eb682cd474d90b3a3d005290cd6d4fe9f94cae";
- sha256 = "0slfaclbhjm5paw8l7rr3y9xxjyhkizp9lwyvlgpkd38n4pgj2bx";
+ rev = "2fa89d0796772714447a93552936f4cb861e8754";
+ sha256 = "1yl6hmb4y156lxh809z0h26ybzykdhsc3y0w42jqfpxsnawd6nv6";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/play-routes-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/740cef8687232eb0e2186e8df956c2d4f39575cf/recipes/play-routes-mode";
sha256 = "17phqil2zf5rfvhs5v743dh4lix4v2azbf33z9n97ahs7j66y2gz";
name = "play-routes-mode";
};
@@ -47320,7 +48035,7 @@
plenv = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "plenv";
- version = "20130707.816";
+ version = "20130707.116";
src = fetchFromGitHub {
owner = "karupanerura";
repo = "plenv.el";
@@ -47328,7 +48043,7 @@
sha256 = "11cbpgjsnw8fiqf1s12hbm9qxgjcw6y2zxx7wz4wg7idmi7m0b7g";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/plenv";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/a0819979b9567ac5fab9ed6821eba8fe7ee6a299/recipes/plenv";
sha256 = "0dw9fy5wd9wm76ag6yyw3f9jnlj7rcdcxgdjm30h514qfi9hxbw4";
name = "plenv";
};
@@ -47341,7 +48056,7 @@
plim-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "plim-mode";
- version = "20140813.213";
+ version = "20140812.1913";
src = fetchFromGitHub {
owner = "dongweiming";
repo = "plim-mode";
@@ -47349,7 +48064,7 @@
sha256 = "07hspp4bkb3f5dm0l1arm0w1m04cq4glg81x4a9kf7bl601wzki2";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/plim-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/a2fef4f90002193bf9758afbe88f2798c44cc294/recipes/plim-mode";
sha256 = "0247fpvxki5jhxw6swv7pcw0qwxrqnp75acnfss2lf984vggzhxi";
name = "plim-mode";
};
@@ -47362,7 +48077,7 @@
plsense = callPackage ({ auto-complete, fetchFromGitHub, fetchurl, lib, log4e, melpaBuild, yaxception }:
melpaBuild {
pname = "plsense";
- version = "20151104.1545";
+ version = "20151104.845";
src = fetchFromGitHub {
owner = "aki2o";
repo = "emacs-plsense";
@@ -47370,7 +48085,7 @@
sha256 = "1r2yxa7gqr0z9fwhx38siwjpg73a93rdmnhr4h6nm6lr32vviyxm";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/plsense";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/fb1025f146514e9c142cd96cac9f2989d6d1a8c5/recipes/plsense";
sha256 = "1ka06r4ashhjkfyzql9mfvs3gj7n684h4gaycj29w4nfqrhcw9va";
name = "plsense";
};
@@ -47383,7 +48098,7 @@
plsense-direx = callPackage ({ direx, fetchFromGitHub, fetchurl, lib, log4e, melpaBuild, plsense, yaxception }:
melpaBuild {
pname = "plsense-direx";
- version = "20140520.2208";
+ version = "20140520.1508";
src = fetchFromGitHub {
owner = "aki2o";
repo = "plsense-direx";
@@ -47391,7 +48106,7 @@
sha256 = "0s34nbqqy6aqi113xj452pbmqp43046wfbfbbfv1xwhybgq0c1j1";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/plsense-direx";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/65fb1d8b4ed12f097958842d1b00dcdf3660b184/recipes/plsense-direx";
sha256 = "0qd4b7gkmn5ydadhp70995rap3643s1aa8gfi5izgllzhg0i864j";
name = "plsense-direx";
};
@@ -47403,13 +48118,13 @@
}) {};
plsql = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild {
pname = "plsql";
- version = "20121115.1143";
+ version = "20121115.443";
src = fetchurl {
url = "https://www.emacswiki.org/emacs/download/plsql.el";
sha256 = "1v0wvy9fd1qq3aq83x5jv3953n0n51x7y2r2ql11j0h8xasy42p1";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/plsql";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/eb457144c112a7a9de2fc4c634dfd6c2dda2e486/recipes/plsql";
sha256 = "1jvppmfdll34b8dav5dvbabfxiapv92p7lciblj59a707bbdb7l1";
name = "plsql";
};
@@ -47422,7 +48137,7 @@
plur = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "plur";
- version = "20160504.1124";
+ version = "20160504.424";
src = fetchFromGitHub {
owner = "xuchunyang";
repo = "plur";
@@ -47430,7 +48145,7 @@
sha256 = "0qlxj19hj96l4lw81xh5r14ppf6kp63clikk060s9yw00q7gnl6a";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/plur";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/38f6f53fcd1186efd5e6752166da4e23b712cdb1/recipes/plur";
sha256 = "0nf1dc7xf2zp316rssnz8sv374akcr54hp0rb219qvgyck9bdqiv";
name = "plur";
};
@@ -47442,14 +48157,14 @@
}) {};
pmdm = callPackage ({ fetchhg, fetchurl, lib, melpaBuild }: melpaBuild {
pname = "pmdm";
- version = "20151109.1936";
+ version = "20151109.1236";
src = fetchhg {
url = "https://bitbucket.com/inigoserna/pmdm.el";
rev = "f50a54774156";
sha256 = "0x3s9fj41n6a21la762qm1si9ysv3zj5bbp6ykfskr73sxq6s9ff";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/pmdm";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/5b7972602399f9df9139cff177e38653bb0f43ed/recipes/pmdm";
sha256 = "1zmy6cbnqhsbwc5vx30mx45xn88d2186hgrl75ws7vvbl197j03b";
name = "pmdm";
};
@@ -47462,7 +48177,7 @@
pocket-api = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, request }:
melpaBuild {
pname = "pocket-api";
- version = "20160530.1638";
+ version = "20160530.938";
src = fetchFromGitHub {
owner = "lujun9972";
repo = "pocket-api.el";
@@ -47470,7 +48185,7 @@
sha256 = "1m3rczp5jyh83gfmv4rq11ya5vqly5zf7h4h6za3s5s3n38lldyc";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/pocket-api";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/04e3be76aef4d1b6d5bb3eda533b5deffcc8a5bc/recipes/pocket-api";
sha256 = "1f5j491wbqgbx6zlb0zdajca5il0628vr9a38y0n3x0h69wm0cx5";
name = "pocket-api";
};
@@ -47483,7 +48198,7 @@
point-stack = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "point-stack";
- version = "20141226.610";
+ version = "20141225.2310";
src = fetchFromGitHub {
owner = "dgutov";
repo = "point-stack";
@@ -47491,7 +48206,7 @@
sha256 = "0nqv63yy0qpxhblzmkyvla90p9a7729fqxvhkfld9jxfqpgv1xyp";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/point-stack";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/bb3c9e6b3c583f098f75462b4d48cd137a1bcb76/recipes/point-stack";
sha256 = "0201gka1izqgxyivan60jbg9x1mmsw5dscxacasg97ffsciwbfr9";
name = "point-stack";
};
@@ -47503,13 +48218,13 @@
}) {};
point-undo = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild {
pname = "point-undo";
- version = "20100504.1029";
+ version = "20100504.329";
src = fetchurl {
url = "https://www.emacswiki.org/emacs/download/point-undo.el";
sha256 = "13c1iw77ccvrfrv4lyljg8fpm7xqhnv29yzvig8wr8b5j2vsd8bz";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/point-undo";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/ce31bd8f9a1ad4f3252f8cd4ef15984495df18bd/recipes/point-undo";
sha256 = "0by7ifj1lf0w9pp7v1j9liqjs40k8kk9yjnznxchq172816zbg3k";
name = "point-undo";
};
@@ -47522,7 +48237,7 @@
pointback = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "pointback";
- version = "20100210.1652";
+ version = "20100210.952";
src = fetchFromGitHub {
owner = "emacsorphanage";
repo = "pointback";
@@ -47530,7 +48245,7 @@
sha256 = "016cjy5pnnqccjqb0njqc9jq6kf6p165nlki83b8c0sj75yxghav";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/pointback";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/5f2a50f62475639af011c99c6cc38928b74b3b0a/recipes/pointback";
sha256 = "198q511hixvzc13b3ih89xs9g47rdvbiixn5baqakpmpx3a12hz4";
name = "pointback";
};
@@ -47543,15 +48258,15 @@
polymode = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "polymode";
- version = "20160521.329";
+ version = "20160625.957";
src = fetchFromGitHub {
owner = "vspinu";
repo = "polymode";
- rev = "d0b9384059ac32db0b914280302f37f7f2b3d337";
- sha256 = "0q1n4nm21vjqcmdmm19yynzn3z97q83wk9g7kkrdx0mln9vzm13p";
+ rev = "d44c93a1adfa1e446aa36534d46ec9d2b6b9d171";
+ sha256 = "19pcqwnhvv7ixsqg979rpcclz8myn91ngkckmvly1k8rlv2nljq5";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/polymode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/7fabdb05de9b8ec18a3a566f99688b50443b6b44/recipes/polymode";
sha256 = "0md02l7vhghvzplxa04sphimhphmksvmz079zykxajcvpm2rgwc8";
name = "polymode";
};
@@ -47564,7 +48279,7 @@
pomodoro = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "pomodoro";
- version = "20150716.1946";
+ version = "20150716.1246";
src = fetchFromGitHub {
owner = "baudtack";
repo = "pomodoro.el";
@@ -47572,7 +48287,7 @@
sha256 = "1dlk0ypw8316vgvb7z2p7fvaiz1wcy1l8crixypaya1zdsnh9v1z";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/pomodoro";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/0b5c2c50eb87952d01c1b338b7d3e4b3a4546555/recipes/pomodoro";
sha256 = "075sbypas8xlhsw8wg3mgi3fn5yf7xb3klyjgyy8wfkgdz0269f8";
name = "pomodoro";
};
@@ -47585,7 +48300,7 @@
pony-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "pony-mode";
- version = "20151028.1102";
+ version = "20151028.502";
src = fetchFromGitHub {
owner = "davidmiller";
repo = "pony-mode";
@@ -47593,7 +48308,7 @@
sha256 = "1g1yw0ykwswl9dnicyi7kxskqqry40wjykshgrqhs4k09j3jnacr";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/pony-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/a1fd64317610fb6ef5b14e8bf15e727680d5ff09/recipes/pony-mode";
sha256 = "1hgiryhpxv30bjlgv9pywzqn2ypimwzdhx03znqvn56zrwn1frnl";
name = "pony-mode";
};
@@ -47606,7 +48321,7 @@
pony-snippets = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, yasnippet }:
melpaBuild {
pname = "pony-snippets";
- version = "20160205.511";
+ version = "20160204.2211";
src = fetchFromGitHub {
owner = "SeanTAllen";
repo = "pony-snippets";
@@ -47614,7 +48329,7 @@
sha256 = "002jhj47b9aqrfjy8b31ccbqhah5sn9wn7dmrhm1wbbgj9rfyw6s";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/pony-snippets";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/7fabdb05de9b8ec18a3a566f99688b50443b6b44/recipes/pony-snippets";
sha256 = "12ygvpfkzldq6s4mwbrxs4x9927i7pa7ywn7lf1r3gg4h29ar9gn";
name = "pony-snippets";
};
@@ -47627,7 +48342,7 @@
ponylang-mode = callPackage ({ dash, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "ponylang-mode";
- version = "20160527.1441";
+ version = "20160527.741";
src = fetchFromGitHub {
owner = "SeanTAllen";
repo = "ponylang-mode";
@@ -47635,7 +48350,7 @@
sha256 = "0ks1g381sx8if93hg6ndsc1lnv1msrd8f7zf8ykk1jrsfy9mn48h";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ponylang-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/7d51adec3c6519d6ffe9b3f7f8a86b4dbc2c9817/recipes/ponylang-mode";
sha256 = "02fq0qp7f4bzmynzszrwskfs78nzsmf413qjxqndrh3hamixzpi1";
name = "ponylang-mode";
};
@@ -47648,7 +48363,7 @@
pophint = callPackage ({ fetchFromGitHub, fetchurl, lib, log4e, melpaBuild, popup, yaxception }:
melpaBuild {
pname = "pophint";
- version = "20150930.1934";
+ version = "20150930.1234";
src = fetchFromGitHub {
owner = "aki2o";
repo = "emacs-pophint";
@@ -47656,7 +48371,7 @@
sha256 = "0n1w1adglbavqgrv16rzhym72c3q083mh0c8yl5lj7adn4nr4gr3";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/pophint";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/0055c2887acbbd8a2803bf3f81ac2cc444cc805a/recipes/pophint";
sha256 = "1chq2j79hg095jxw5z3pz4qicqrccw0gj4sxrin0a55hnprzzp72";
name = "pophint";
};
@@ -47669,7 +48384,7 @@
poporg = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "poporg";
- version = "20150604.347";
+ version = "20150603.2047";
src = fetchFromGitHub {
owner = "QBobWatson";
repo = "poporg";
@@ -47677,7 +48392,7 @@
sha256 = "0ja1kq4pl62zxlzwv2m8zzb55lg2fl366bi9pzvxl38frvbqg8qx";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/poporg";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/63502ec265a66d3f72ef93a2f6e7c2e517ff98a3/recipes/poporg";
sha256 = "08s42689kd78h2fmw230ja5dd3c3b4lx5mzadncwq0lj91y86kd8";
name = "poporg";
};
@@ -47690,7 +48405,7 @@
popup = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "popup";
- version = "20160531.1325";
+ version = "20160531.625";
src = fetchFromGitHub {
owner = "auto-complete";
repo = "popup-el";
@@ -47698,7 +48413,7 @@
sha256 = "1h1l0wh3i1ih30455l5b73w8d3pvd0p1ib0mn5i671iwk2hyxc12";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/popup";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/083fb071191bccd6feb3fb84569373a597440fb1/recipes/popup";
sha256 = "151g00h9rkid76qf6c53n8bncsfaikmhj8fqcb3r3a6mbngcd5k2";
name = "popup";
};
@@ -47711,7 +48426,7 @@
popup-complete = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, popup }:
melpaBuild {
pname = "popup-complete";
- version = "20141109.408";
+ version = "20141108.2108";
src = fetchFromGitHub {
owner = "syohex";
repo = "emacs-popup-complete";
@@ -47719,7 +48434,7 @@
sha256 = "1q9zajv6g7mi6k98kzq3498nhmdkp1z9d2b8vgzbk7745d39gm9b";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/popup-complete";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/b43b85f90c476a3b88f94927a7db90bdc72cd171/recipes/popup-complete";
sha256 = "04bpm31zx87j390r2xi1yl4kyqgalmyqc48xarsm67zfww9fw9c1";
name = "popup-complete";
};
@@ -47732,7 +48447,7 @@
popup-imenu = callPackage ({ dash, fetchFromGitHub, fetchurl, flx-ido, lib, melpaBuild, popup }:
melpaBuild {
pname = "popup-imenu";
- version = "20160409.1410";
+ version = "20160409.710";
src = fetchFromGitHub {
owner = "ancane";
repo = "popup-imenu";
@@ -47740,7 +48455,7 @@
sha256 = "19mqzfpki2zlnibp2vzymhdld1m20jinxwgdhmbl6zdfx74zbz7b";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/popup-imenu";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/5ca5d65d6a9c7ef3fa2684271fe087dc132d3a61/recipes/popup-imenu";
sha256 = "0lxwfaa9vhdn55dj3idp8c3fg1g26qsqq46y5bimfd0s89bjbaxn";
name = "popup-imenu";
};
@@ -47753,7 +48468,7 @@
popup-kill-ring = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, popup, pos-tip }:
melpaBuild {
pname = "popup-kill-ring";
- version = "20131020.2054";
+ version = "20131020.1354";
src = fetchFromGitHub {
owner = "waymondo";
repo = "popup-kill-ring";
@@ -47761,7 +48476,7 @@
sha256 = "1zdwlmk3vr0mq0dxrnkqjncalnbmvpxc0lma2sv3a4czl8yv0inn";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/popup-kill-ring";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/0b745b067e5d68467b89e0dbade7a9a76de2946c/recipes/popup-kill-ring";
sha256 = "1jfw669xi2983jj3hiw5lyhc0rc0318qrmqx03f7m4ylg70dgxip";
name = "popup-kill-ring";
};
@@ -47774,15 +48489,15 @@
popup-switcher = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild, popup }:
melpaBuild {
pname = "popup-switcher";
- version = "20160518.1239";
+ version = "20160622.1224";
src = fetchFromGitHub {
owner = "kostafey";
repo = "popup-switcher";
- rev = "e1403f9435668d6161558b1636bdb7f95239b217";
- sha256 = "15vp1iqc1k9hlvam3vcw7hd2dr8wzdwrcls2zvw76jhlbybl0rbp";
+ rev = "a17ac13a08119f4164f25514f08556f7ce660ae4";
+ sha256 = "1vymgdyzvx0d5i4da9q0x29x8d0lxi084rq68i6gi686x5nhglil";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/popup-switcher";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/ef7d1897c4c4a6f4b4527279e6dad976219d7b78/recipes/popup-switcher";
sha256 = "1888xiqhrn7fcpjnr3smchmmqwfayfbbyvdkdb79c6drzjcvidp1";
name = "popup-switcher";
};
@@ -47795,7 +48510,7 @@
popwin = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "popwin";
- version = "20150315.1400";
+ version = "20150315.800";
src = fetchFromGitHub {
owner = "m2ym";
repo = "popwin-el";
@@ -47803,7 +48518,7 @@
sha256 = "0nips9npm4zmz3f37vvb4s0g1ci0p9cl6w0z4sc6agg4rybjhpdp";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/popwin";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/2b3d6a8b734e0820fd904c215a83fe5519496dc3/recipes/popwin";
sha256 = "1zp54nv8rh0b3g8y5aj4793miiw2r1ijwbzq31lkwmbdr09mixmf";
name = "popwin";
};
@@ -47816,7 +48531,7 @@
portage-navi = callPackage ({ concurrent, ctable, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "portage-navi";
- version = "20141208.1455";
+ version = "20141208.755";
src = fetchFromGitHub {
owner = "kiwanami";
repo = "emacs-portage-navi";
@@ -47824,7 +48539,7 @@
sha256 = "1pm4x74pw67m2izr9dir201dn5g9icgk6h2j8rqvasgx8v8krv3i";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/portage-navi";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/0a467702b3ac3c8bdc723262e6919f67fd71d524/recipes/portage-navi";
sha256 = "1wjkh8xj5120v9fz1nrpkd6x4f22ni8h2lfkd82df7kjz6bzdfwg";
name = "portage-navi";
};
@@ -47837,7 +48552,7 @@
pos-tip = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "pos-tip";
- version = "20150318.1613";
+ version = "20150318.1013";
src = fetchFromGitHub {
owner = "pitkali";
repo = "pos-tip";
@@ -47845,7 +48560,7 @@
sha256 = "168hl76rhj6f5ncmrij4rd3z55228h6kb23384h2phsjw0avgf23";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/pos-tip";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/306e9978d2a071548cc9d8c531a1ce6c6c6b99aa/recipes/pos-tip";
sha256 = "13qjz112qlrnq34lr70087gshzq8m44knfl6694hfprzjgix84vh";
name = "pos-tip";
};
@@ -47858,7 +48573,7 @@
pov-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "pov-mode";
- version = "20120825.1616";
+ version = "20120825.916";
src = fetchFromGitHub {
owner = "melmothx";
repo = "pov-mode";
@@ -47866,7 +48581,7 @@
sha256 = "14silfng5rbdc8hnzswjmqk705pncjlk8iphjcxcm799h44pnlcr";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/pov-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/89d6b4a3d7a5f3cc93e9d13d4c174b5d7de7bad1/recipes/pov-mode";
sha256 = "1xzdmlfi5ixdh08v0ca80zkh9n3gfn4ql5pnl3jh745wbj9azxp9";
name = "pov-mode";
};
@@ -47879,7 +48594,7 @@
pow = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "pow";
- version = "20140420.1006";
+ version = "20140420.306";
src = fetchFromGitHub {
owner = "yukihr";
repo = "emacs-pow";
@@ -47887,7 +48602,7 @@
sha256 = "1jzqav2lchr0ggckjq9rwlxwryi7m7xnmn8471zgiamd1h04ddqf";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/pow";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/795b8723e105a22c729ef77377a85c63ee0a2a1f/recipes/pow";
sha256 = "05wc4ylp0xjqbzrm046lcsv4aw2a6s2rfv1ra38bfr0dai6qrsrn";
name = "pow";
};
@@ -47900,15 +48615,15 @@
powerline = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "powerline";
- version = "20160601.1624";
+ version = "20160702.2131";
src = fetchFromGitHub {
owner = "milkypostman";
repo = "powerline";
- rev = "9c46ad31bf1cea66a7b06f55d0c32c374f39eff2";
- sha256 = "07pbhqhzkvdnrggc5fc430gm0qdfmx8fhr2s0xx2g0a3hjiwbss2";
+ rev = "d3dcfc57a36111d8e0b037d90c6ffce85ce071b2";
+ sha256 = "1hp3xp18943n0rlggz55150020ivw8gvi1vyxkr4z8xhpwq4gaar";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/powerline";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/f805053cd4dd9ed53ee0df17ad69429bc62325bb/recipes/powerline";
sha256 = "0gsffr6ilmckrzifsmhwd42vr85vs42pc26f1205pbxb7ma34dhx";
name = "powerline";
};
@@ -47921,7 +48636,7 @@
powerline-evil = callPackage ({ evil, fetchFromGitHub, fetchurl, lib, melpaBuild, powerline }:
melpaBuild {
pname = "powerline-evil";
- version = "20151112.1610";
+ version = "20151112.910";
src = fetchFromGitHub {
owner = "raugturi";
repo = "powerline-evil";
@@ -47929,7 +48644,7 @@
sha256 = "1c8y4r7zdr6764kzs5bc64idv2pfjvi78lg2f1d2hp1595ia8y5r";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/powerline-evil";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/a44108579409ab2aab3e75ccabffb207843ec1ee/recipes/powerline-evil";
sha256 = "0cdnmq9f06lzkj0hs948a7j5sgg6fl5f36bfnyaxgss23akbfjhr";
name = "powerline-evil";
};
@@ -47942,7 +48657,7 @@
powershell = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "powershell";
- version = "20160211.358";
+ version = "20160210.2058";
src = fetchFromGitHub {
owner = "jschaf";
repo = "powershell.el";
@@ -47950,7 +48665,7 @@
sha256 = "1ym373mjyk3vfbw2c918zgaf9m35j8bkrpcj9d8m9drf4h7a8d3b";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/powershell";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/7002c50f2734675134791916aa9d8b82b4582fcb/recipes/powershell";
sha256 = "162k8y9k2n48whaq93sqk86zy3p9qvsfxgyfv9n1nvk4l5wn70wk";
name = "powershell";
};
@@ -47962,13 +48677,13 @@
}) {};
pp-c-l = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild {
pname = "pp-c-l";
- version = "20160101.47";
+ version = "20151231.1747";
src = fetchurl {
url = "https://www.emacswiki.org/emacs/download/pp-c-l.el";
sha256 = "10gsdjdr8qngimqh57qxcljjnypbf38asxqb3zlfwc2ls52fc19q";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/pp-c-l";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/a5d15f875b0080b12ce45cf696c581f6bbf061ba/recipes/pp-c-l";
sha256 = "0gbqxlrsh9lcdkrj8bqh1mpxyhdlwbaxz4ndp5s90inmisaqb83v";
name = "pp-c-l";
};
@@ -47980,13 +48695,13 @@
}) {};
pp-plus = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild {
pname = "pp-plus";
- version = "20160523.2339";
+ version = "20160523.1639";
src = fetchurl {
url = "https://www.emacswiki.org/emacs/download/pp+.el";
sha256 = "0yvls8sw5rvka20xlqazl46crpkw91cy9qmj6p6y53sps1rj5wzp";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/pp+";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/a5d15f875b0080b12ce45cf696c581f6bbf061ba/recipes/pp+";
sha256 = "1ng5x7dp85y6yqj6q43h08qdnapg2j1ab8rmc47w4w79d1pryniq";
name = "pp-plus";
};
@@ -47999,7 +48714,7 @@
ppd-sr-speedbar = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, project-persist-drawer, sr-speedbar }:
melpaBuild {
pname = "ppd-sr-speedbar";
- version = "20151108.1324";
+ version = "20151108.624";
src = fetchFromGitHub {
owner = "rdallasgray";
repo = "ppd-sr-speedbar";
@@ -48007,7 +48722,7 @@
sha256 = "0pv671j8g09pn61kkfb3pa9axfa9zd2jdrkgr81rm2gqb2vh1hsq";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ppd-sr-speedbar";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/f930f54048d06f6a97824b66fbb74649eed40b54/recipes/ppd-sr-speedbar";
sha256 = "1m2918hqvb9c6rgb5szs95ds99gdjdxggcbdfqzmbb5sz2936av8";
name = "ppd-sr-speedbar";
};
@@ -48020,7 +48735,7 @@
preproc-font-lock = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "preproc-font-lock";
- version = "20151107.2118";
+ version = "20151107.1418";
src = fetchFromGitHub {
owner = "Lindydancer";
repo = "preproc-font-lock";
@@ -48028,7 +48743,7 @@
sha256 = "0yrfd9qaz16nqcvjyjm9qci526qgkv6k51q5752h3iyqkxnss1pd";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/preproc-font-lock";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/582692267795c91bb7f2ec3bffc2b9c2be9f2a32/recipes/preproc-font-lock";
sha256 = "1ra0lgjv6713zym2h8pblf2ryf0f658l1khbxbwnxl023gkyj9v4";
name = "preproc-font-lock";
};
@@ -48041,7 +48756,7 @@
preseed-generic-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "preseed-generic-mode";
- version = "20150119.2141";
+ version = "20150119.1441";
src = fetchFromGitHub {
owner = "suntong";
repo = "preseed-generic-mode";
@@ -48049,7 +48764,7 @@
sha256 = "1dyi9nc2q43jf87xiz9xw42irrbla2vyixifdiibh6nm9misnfj0";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/preseed-generic-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/7fabdb05de9b8ec18a3a566f99688b50443b6b44/recipes/preseed-generic-mode";
sha256 = "14vbx6y7h4vqc5kkgj4mbr9zj6gqf6ib3hh2917m203s8y87lsfl";
name = "preseed-generic-mode";
};
@@ -48062,7 +48777,7 @@
prettify-greek = callPackage ({ fetchFromGitLab, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "prettify-greek";
- version = "20160603.1108";
+ version = "20160603.408";
src = fetchFromGitLab {
owner = "fommil";
repo = "emacs-prettify-greek";
@@ -48070,7 +48785,7 @@
sha256 = "0g2bxa7mwfkc8navbi2w28rd4f4zqphxi13kwmd2p83g3wavd99v";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/prettify-greek";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/23c8f10205187babb17e3abc3dc40eb1938e6640/recipes/prettify-greek";
sha256 = "1izl6r6i3zbhd7r7lz2k42yyz6qcng11wfmb7lx4883dj00flsl7";
name = "prettify-greek";
};
@@ -48082,13 +48797,13 @@
}) {};
pretty-lambdada = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild {
pname = "pretty-lambdada";
- version = "20160101.48";
+ version = "20151231.1748";
src = fetchurl {
url = "https://www.emacswiki.org/emacs/download/pretty-lambdada.el";
sha256 = "1fn24399wsn12453py0hw2vbbkrkakiwi06cjvjzsdk7g3326ma4";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/pretty-lambdada";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/a5d15f875b0080b12ce45cf696c581f6bbf061ba/recipes/pretty-lambdada";
sha256 = "16v5fgifz672c37xyzv557mm6za4rldvdrb26vdymxqg4fy62fd6";
name = "pretty-lambdada";
};
@@ -48101,15 +48816,15 @@
pretty-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "pretty-mode";
- version = "20160416.1634";
+ version = "20160614.1346";
src = fetchFromGitHub {
owner = "akatov";
repo = "pretty-mode";
- rev = "019c65b25042a202a1374cb8b359d4cfa062cb60";
- sha256 = "0lrxd87p62s16bcp9r7hj1dnn67mgy2akslq4m9vb0xc7qckwr7y";
+ rev = "500085206e25b98d00b9ec996f91c87ba569c4ce";
+ sha256 = "0m7ii971zxlz8a9yx2ljf9fmd8k6hc9w1q8mi5xi32v9viccjabs";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/pretty-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/4a2fe9feae4c1f007e51272a97917a63dcf6bbe5/recipes/pretty-mode";
sha256 = "1zxi4nj7vnchiiz1ndx17b719a1wipiqniykzn4pa1w7dsnqg21f";
name = "pretty-mode";
};
@@ -48122,7 +48837,7 @@
pretty-sha-path = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "pretty-sha-path";
- version = "20141105.1926";
+ version = "20141105.1226";
src = fetchFromGitHub {
owner = "alezost";
repo = "pretty-sha-path.el";
@@ -48130,7 +48845,7 @@
sha256 = "1n0594msgy53ia58gjfkm3z3cnmq52wrq5992fm28s4jgazbgdfd";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/pretty-sha-path";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/6520d692662aaf92023623273597d966ca3cba9d/recipes/pretty-sha-path";
sha256 = "0qqsg383391dnsk46xm8plq7xmdmnis3iv7h7dmchpzd99bkm9lq";
name = "pretty-sha-path";
};
@@ -48143,7 +48858,7 @@
pretty-symbols = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "pretty-symbols";
- version = "20140814.1159";
+ version = "20140814.459";
src = fetchFromGitHub {
owner = "drothlis";
repo = "pretty-symbols";
@@ -48151,7 +48866,7 @@
sha256 = "1f00l9f6an1mh8yhf629mw0p37m4jcpl8giz47xbdyw1k6bqn830";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/pretty-symbols";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/ed01ef6333e4558877b0e357ff8bf601fb88b757/recipes/pretty-symbols";
sha256 = "0d1ad2x4md0n3fad3s2355wm8hl311qdhih1gkdqwdaj4i1d6gvb";
name = "pretty-symbols";
};
@@ -48164,7 +48879,7 @@
private = callPackage ({ aes, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "private";
- version = "20150122.257";
+ version = "20150121.1957";
src = fetchFromGitHub {
owner = "cheunghy";
repo = "private";
@@ -48172,7 +48887,7 @@
sha256 = "0zng64f5vwnpkf9fk59yv1ndc646q608a6awr1y9qk0mhzbfzhqm";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/private";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/6c4195e20f942f7c9499731f51d3eba14eefd650/recipes/private";
sha256 = "1glpcwcyndyn683q9mg99hr0h3l8pz7rrhbnfak01v826d5cnk9g";
name = "private";
};
@@ -48185,7 +48900,7 @@
private-diary = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "private-diary";
- version = "20151216.1757";
+ version = "20151216.1057";
src = fetchFromGitHub {
owner = "cacology";
repo = "private-diary";
@@ -48193,7 +48908,7 @@
sha256 = "1pxr5a9ik09k0f58lawhxiv179n5j8q24zhrs9vjk93yskl1ydwn";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/private-diary";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/ef39950941c522e64ea991c9eeecfb5f6f18f6a2/recipes/private-diary";
sha256 = "0dgnf375c00nlkp66kbkzsf469063l03b9miiplbhd63zshlv1i1";
name = "private-diary";
};
@@ -48206,7 +48921,7 @@
proc-net = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "proc-net";
- version = "20130322.112";
+ version = "20130321.1912";
src = fetchFromGitHub {
owner = "nicferrier";
repo = "emacs-proc-net";
@@ -48214,7 +48929,7 @@
sha256 = "0nly5h0d6w8dc08ifb2fiqcn4cqcn9crkh2wn0jzlz4zd2x75qrb";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/proc-net";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/4a518f37260084fa7e9221e9189aedc09a951f6d/recipes/proc-net";
sha256 = "0562x2s3kk9vlaavak4lya1nlmn4mwlzlc7nw1l3687q023z4hmv";
name = "proc-net";
};
@@ -48227,7 +48942,7 @@
processing-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "processing-mode";
- version = "20150217.1332";
+ version = "20150217.632";
src = fetchFromGitHub {
owner = "ptrv";
repo = "processing2-emacs";
@@ -48235,7 +48950,7 @@
sha256 = "1smw786dcjvdn2j6bwqn2rfzhw039rrhxiv7vlrgzm0fyy2v1q6h";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/processing-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/ba59561e8a2f259fde170a79844af5e1ef5ed34f/recipes/processing-mode";
sha256 = "184yg9z14ighz9djg53ji5dgnb98dnxkkwx55m8f0f879x31i89m";
name = "processing-mode";
};
@@ -48248,7 +48963,7 @@
processing-snippets = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, yasnippet }:
melpaBuild {
pname = "processing-snippets";
- version = "20140426.1628";
+ version = "20140426.928";
src = fetchFromGitHub {
owner = "ptrv";
repo = "processing2-emacs";
@@ -48256,7 +48971,7 @@
sha256 = "1smw786dcjvdn2j6bwqn2rfzhw039rrhxiv7vlrgzm0fyy2v1q6h";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/processing-snippets";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/ba59561e8a2f259fde170a79844af5e1ef5ed34f/recipes/processing-snippets";
sha256 = "09vkm9asmjz1in0f63s7bf4amifspsqf5w9pxiy5y0qvmn28fr2r";
name = "processing-snippets";
};
@@ -48269,7 +48984,7 @@
prodigy = callPackage ({ dash, emacs, f, fetchFromGitHub, fetchurl, lib, melpaBuild, s }:
melpaBuild {
pname = "prodigy";
- version = "20160429.854";
+ version = "20160429.154";
src = fetchFromGitHub {
owner = "rejeep";
repo = "prodigy.el";
@@ -48277,7 +48992,7 @@
sha256 = "0yy4ximahmj3kbxn6bhag853vyy56g1n007qnd8hjsl1xawlin5x";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/prodigy";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/04686b7a450ccd4631ecf1d9bcd51572c21fd20d/recipes/prodigy";
sha256 = "032868bgy2wmb2ws48lfibs4118inpna7mmml8m7i4m4y9ll6g85";
name = "prodigy";
};
@@ -48290,7 +49005,7 @@
professional-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "professional-theme";
- version = "20150315.1200";
+ version = "20150315.600";
src = fetchFromGitHub {
owner = "juanjux";
repo = "emacs-professional-theme";
@@ -48298,7 +49013,7 @@
sha256 = "0hx7rxa3smdippcpj4j63k0r5l4wflllb0vpnwwknc9j93r7042b";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/professional-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/bb79514b2afada80da82762890242de5ad88d8de/recipes/professional-theme";
sha256 = "1l8nisn2c124cpylyahr76hfpdim2125zrns2897p466l5wcxcx5";
name = "professional-theme";
};
@@ -48311,7 +49026,7 @@
prognth = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "prognth";
- version = "20130920.1959";
+ version = "20130920.1259";
src = fetchFromGitHub {
owner = "Fuco1";
repo = "prognth";
@@ -48319,7 +49034,7 @@
sha256 = "1szxsbk470fg3jp70r20va9hnnf4jj0mb7kxdkn6rd7ky6w34lwm";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/prognth";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/db6d52b92317aa5ad5024131b62edb5f91f50033/recipes/prognth";
sha256 = "0hr5a3s0ij4hvn424v885z7pcs62yqm9mamw5b096hgjxgjf6ylm";
name = "prognth";
};
@@ -48332,7 +49047,7 @@
programmer-dvorak = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "programmer-dvorak";
- version = "20150427.337";
+ version = "20150426.2037";
src = fetchFromGitHub {
owner = "yangchenyun";
repo = "programmer-dvorak";
@@ -48340,7 +49055,7 @@
sha256 = "1yklm43d0ppyf4simhqab6m892z4mmxs2145lzw6kpizixavcv00";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/programmer-dvorak";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/89b0f4b5838aa3d4572ca91fe60cf28664368cb6/recipes/programmer-dvorak";
sha256 = "1w8r35hkl6qy9a89l0m74x9q2vcc4h2hvmi3r2hqcy2ypkn5l5bv";
name = "programmer-dvorak";
};
@@ -48353,7 +49068,7 @@
project-explorer = callPackage ({ cl-lib ? null, emacs, es-lib, es-windows, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "project-explorer";
- version = "20150504.214";
+ version = "20150503.1914";
src = fetchFromGitHub {
owner = "sabof";
repo = "project-explorer";
@@ -48361,7 +49076,7 @@
sha256 = "04l4m3kxbwvyw9xy6cwakrdxxdswrrs7sya8zn6m738aawbr1mcd";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/project-explorer";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/c2e5d686b8a18c7a17965ff6c5af8f5817b7ab31/recipes/project-explorer";
sha256 = "076lzmyi1n7yrgdgyh9qinq271qk6k64x0msbzarihr3p4psrn8m";
name = "project-explorer";
};
@@ -48374,13 +49089,13 @@
project-local-variables = callPackage ({ fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "project-local-variables";
- version = "20080502.1852";
+ version = "20080502.1152";
src = fetchurl {
url = "https://www.emacswiki.org/emacs/download/project-local-variables.el";
sha256 = "1bb5b6hxg3gvwf0sqwkd97nnipsmr60py0rnsfhgvizn4cj3khhw";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/project-local-variables";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/3e9a509f93bb65cc9bd268ee8c7b13046eac7385/recipes/project-local-variables";
sha256 = "0mrf7p420rmjm8ydwc5blpxr6299pdg3sy3jwz2zz0420gkp0ihl";
name = "project-local-variables";
};
@@ -48393,7 +49108,7 @@
project-persist = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "project-persist";
- version = "20150519.2224";
+ version = "20150519.1524";
src = fetchFromGitHub {
owner = "rdallasgray";
repo = "project-persist";
@@ -48401,7 +49116,7 @@
sha256 = "1fvjap0bsyw5q92q50wk8c81yv4g8nqb6jdlnarf80glwk50avrs";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/project-persist";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/bd81d1f8a30ed951ed94b9a4db13a2f7735ea878/recipes/project-persist";
sha256 = "0csjwj0qaw0hz2qrj8kxgxlixh2hi3aqib98vm19sr3f1b8qab24";
name = "project-persist";
};
@@ -48414,7 +49129,7 @@
project-persist-drawer = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, project-persist }:
melpaBuild {
pname = "project-persist-drawer";
- version = "20151108.1322";
+ version = "20151108.622";
src = fetchFromGitHub {
owner = "rdallasgray";
repo = "project-persist-drawer";
@@ -48422,7 +49137,7 @@
sha256 = "1nq320ph8fs9a197ji4mnw2xa24dld0r1nka476yvkg4azmcc9x8";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/project-persist-drawer";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/23084af52d2243016eee73a5ee0cd3e945eec71d/recipes/project-persist-drawer";
sha256 = "1jv2y2hcqakyvfibclzm7g4diw0bvsv3a8fa43yf19wb64jm8hdb";
name = "project-persist-drawer";
};
@@ -48435,14 +49150,14 @@
project-root = callPackage ({ fetchhg, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "project-root";
- version = "20110206.2130";
+ version = "20110206.1430";
src = fetchhg {
url = "https://bitbucket.com/piranha/project-root";
rev = "fcd9df2eadca";
sha256 = "08dd2y6hdsj1rxcqa2hnjypnn9c2z43y7z2hz0fi4vny547qybz8";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/project-root";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/5b7972602399f9df9139cff177e38653bb0f43ed/recipes/project-root";
sha256 = "0xjir204zk254y2x70k9vqwirx2ljmrikpsgn5kn170d1bxvhwmb";
name = "project-root";
};
@@ -48455,15 +49170,15 @@
projectile = callPackage ({ dash, fetchFromGitHub, fetchurl, lib, melpaBuild, pkg-info }:
melpaBuild {
pname = "projectile";
- version = "20160526.1732";
+ version = "20160630.159";
src = fetchFromGitHub {
owner = "bbatsov";
repo = "projectile";
- rev = "80826374506a94fd3c4316c49ba89b822fe22701";
- sha256 = "1364d941qs2m4193xk8x5v77bzk75qywm9jl2h2hw5wxgjdqii5m";
+ rev = "bcc7b3c4728c868fce7282023156ac413cde15b0";
+ sha256 = "03vx6333yzyk4ix3xd8qy6b7lyjj91g710q4m72v1vx1qadq7b4m";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/projectile";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/ca7bf43ef8893bf04e9658390e306ef69e80a156/recipes/projectile";
sha256 = "1kf8hql59nwiy13q0p6p6rf5agjvah43f0sflflfqsrxbihshvdn";
name = "projectile";
};
@@ -48476,7 +49191,7 @@
projectile-codesearch = callPackage ({ codesearch, fetchFromGitHub, fetchurl, lib, melpaBuild, projectile }:
melpaBuild {
pname = "projectile-codesearch";
- version = "20151228.920";
+ version = "20151228.220";
src = fetchFromGitHub {
owner = "abingham";
repo = "codesearch.el";
@@ -48484,7 +49199,7 @@
sha256 = "0ch3naqp3ji0q4blpjfr1xbzgzxhw10h08y2akik96kk1pnkwism";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/projectile-codesearch";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/aa69679a71495a9ebaa8fcaac42f6682a5167d00/recipes/projectile-codesearch";
sha256 = "0jgvs9is59q45wh2a7k5sb6vj179ixqgj5dlndj9r6fh59qgrzdk";
name = "projectile-codesearch";
};
@@ -48497,7 +49212,7 @@
projectile-direnv = callPackage ({ dash, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, projectile, s }:
melpaBuild {
pname = "projectile-direnv";
- version = "20160306.238";
+ version = "20160305.1938";
src = fetchFromGitHub {
owner = "christianromney";
repo = "projectile-direnv";
@@ -48505,7 +49220,7 @@
sha256 = "09zyzfqy1i3i8knvh1ajr5jcidjx3jpsyx8qarxfr5kv16pwyfvj";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/projectile-direnv";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/602485c251bc573e855dfd33e4e94052afbab93f/recipes/projectile-direnv";
sha256 = "1s5dapdcblcbcqyv8df26v8wxl8bhrs9ybl5h5qbzz49gigd8nqh";
name = "projectile-direnv";
};
@@ -48518,7 +49233,7 @@
projectile-hanami = callPackage ({ emacs, fetchFromGitHub, fetchurl, inf-ruby, lib, melpaBuild, projectile, rake }:
melpaBuild {
pname = "projectile-hanami";
- version = "20160505.1511";
+ version = "20160505.811";
src = fetchFromGitHub {
owner = "avdgaag";
repo = "projectile-hanami";
@@ -48526,7 +49241,7 @@
sha256 = "1pqmyfz0vil30x739r18zpw9n76297ckisimq2g0xl1irhynsvbk";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/projectile-hanami";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/9c0123322baee1e96afd055de3f44827574d2b5f/recipes/projectile-hanami";
sha256 = "0qi9i4wdggrmihf1j42fqrf38psmb33rlafg3y6da5r7lpn03j1a";
name = "projectile-hanami";
};
@@ -48539,15 +49254,15 @@
projectile-rails = callPackage ({ emacs, f, fetchFromGitHub, fetchurl, inf-ruby, inflections, lib, melpaBuild, projectile, rake }:
melpaBuild {
pname = "projectile-rails";
- version = "20160519.939";
+ version = "20160627.1529";
src = fetchFromGitHub {
owner = "asok";
repo = "projectile-rails";
- rev = "1d5bbb1bac250a37b2c0b6393a82c9ba3719cf90";
- sha256 = "0g4slcaj5waka5sz0plnn0clnl9750wzj3bi7zfcycb2g7xhncwg";
+ rev = "9a8a4641be1f2eae7f6f42d13db24c10bfa0c974";
+ sha256 = "0v5mm9v4wd3yfnlx7zbb48lsxz7fyv4vcdszdpr5nswynmihxfi5";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/projectile-rails";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/b16532bb8d08f7385bca4b83ab4e030d7b453524/recipes/projectile-rails";
sha256 = "0fgvignqdqh0ma91z9385782l89mvwfn77rp1gmy8cbkwi3b7fkq";
name = "projectile-rails";
};
@@ -48560,7 +49275,7 @@
projectile-sift = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, projectile, sift }:
melpaBuild {
pname = "projectile-sift";
- version = "20160107.1115";
+ version = "20160107.415";
src = fetchFromGitHub {
owner = "nlamirault";
repo = "sift.el";
@@ -48568,7 +49283,7 @@
sha256 = "1ma6djvhvjai07v1g9a36lfa3nw8zsy6x5vliwcdnkf44gs287ra";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/projectile-sift";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/a730e1331b0486c4bd2d309b85d2f8810489eb47/recipes/projectile-sift";
sha256 = "1wbgpwq9yy3v7hqidaczrvvsw5ajj7m3n4gsy3b169xv5h673a0i";
name = "projectile-sift";
};
@@ -48578,22 +49293,22 @@
license = lib.licenses.free;
};
}) {};
- projectile-speedbar = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, projectile }:
+ projectile-speedbar = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, projectile, sr-speedbar }:
melpaBuild {
pname = "projectile-speedbar";
- version = "20150629.2053";
+ version = "20160630.1147";
src = fetchFromGitHub {
owner = "anshulverma";
repo = "projectile-speedbar";
- rev = "59a91ea6b7e4ed4e25ba1acc37d6f90e14c3fa16";
- sha256 = "0lr3vx1byf0i9jdzbyrvvzyzi1nfddvw5r9f9wm7gpfp5l8772la";
+ rev = "95309e3e6041db3903129568c655a402b8153cc1";
+ sha256 = "12nhmmdd9xnpf47hv76ljwhkkallqxpq7d9yc5p5ygl65xcindd4";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/projectile-speedbar";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/eda8cb5a175258404c347ffa30fca002504467a0/recipes/projectile-speedbar";
sha256 = "0dli4gzsiycivh8dwa00lfpbimyg42qygfachzrhi8qy5413pwlp";
name = "projectile-speedbar";
};
- packageRequires = [ projectile ];
+ packageRequires = [ projectile sr-speedbar ];
meta = {
homepage = "https://melpa.org/#/projectile-speedbar";
license = lib.licenses.free;
@@ -48602,15 +49317,15 @@
projector = callPackage ({ alert, cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild, projectile }:
melpaBuild {
pname = "projector";
- version = "20151201.2141";
+ version = "20160617.1514";
src = fetchFromGitHub {
owner = "waymondo";
repo = "projector.el";
- rev = "fd9553a27d665889646b881b64a8f1577b47882b";
- sha256 = "0y8zbywin99nhcrs5nzx4d179r84rdy39admajpi0j76v0b9pwl3";
+ rev = "e1d99231f2f31681ae54b765e742d2ddedafe0c4";
+ sha256 = "145sl1dyi8siqz17y4l787cyk2d57wxqmagh52q9mi2lfvjaa7dl";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/projector";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/420ffea4549f59677a16c1ee89c77b866487e302/recipes/projector";
sha256 = "0hrinplk607wcc2ibn05pl8ghikv9f3zvymncp6nz95jw9brdapf";
name = "projector";
};
@@ -48623,7 +49338,7 @@
projekt = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "projekt";
- version = "20150324.948";
+ version = "20150324.348";
src = fetchFromGitHub {
owner = "tekai";
repo = "projekt";
@@ -48631,7 +49346,7 @@
sha256 = "0hvvlh24157qjxz82sbg22d4cbrf95xyx202cybp0n1vyxsmjcmw";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/projekt";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/e2a854ed4fef114861bcc7814cd064c16d3c074c/recipes/projekt";
sha256 = "1bhb24701flihl54w8xrj6yxhynpq4dk0fp5ciac7k28n4930lw8";
name = "projekt";
};
@@ -48644,7 +49359,7 @@
projmake-mode = callPackage ({ dash, fetchFromGitHub, fetchurl, indicators, lib, melpaBuild }:
melpaBuild {
pname = "projmake-mode";
- version = "20150619.2320";
+ version = "20150619.1620";
src = fetchFromGitHub {
owner = "ericbmerritt";
repo = "projmake-mode";
@@ -48652,7 +49367,7 @@
sha256 = "1sxxy0s96sgm6i743qwjs0qjpsdr03gqc1cddvvpxbryh42vw9jn";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/projmake-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/df23138073d2416fa6522beca86b7a62eb4d42e3/recipes/projmake-mode";
sha256 = "192gvmhcz1anl80hpmcjwwd08dljyrap9sk6qj0y85mcnaafm882";
name = "projmake-mode";
};
@@ -48665,7 +49380,7 @@
prompt-text = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "prompt-text";
- version = "20160106.1509";
+ version = "20160106.809";
src = fetchFromGitHub {
owner = "10sr";
repo = "prompt-text-el";
@@ -48673,7 +49388,7 @@
sha256 = "1hq8426i8rpb3qzkd5akv3i08pa4jsp9lwsskn38bfgp71pwild2";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/prompt-text";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/17d2bc3e53865fe8c98aabb6ef0ad1d10fcb1061/recipes/prompt-text";
sha256 = "1b9sj9kzx5ydq2zsfmkwsx78pzg0vsvrn92397js6b2cm24vrwwc";
name = "prompt-text";
};
@@ -48686,7 +49401,7 @@
prop-menu = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "prop-menu";
- version = "20150728.1318";
+ version = "20150728.618";
src = fetchFromGitHub {
owner = "david-christiansen";
repo = "prop-menu-el";
@@ -48694,7 +49409,7 @@
sha256 = "18ap2liz5r5a8ja2zz9182fnfm47jnsbyblpq859zks356k37iwc";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/prop-menu";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/3d3a013cc9c489987fe689c8d73bbaa3445bdeb3/recipes/prop-menu";
sha256 = "0dhy52fxxpa058mhhx0slw3sly3dlxm9vkax6fd1sap6f6v00p5i";
name = "prop-menu";
};
@@ -48707,7 +49422,7 @@
propfont-mixed = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "propfont-mixed";
- version = "20150113.2311";
+ version = "20150113.1611";
src = fetchFromGitHub {
owner = "ikirill";
repo = "propfont-mixed";
@@ -48715,7 +49430,7 @@
sha256 = "0lch20njy248w7bnvgs7jz0zqasskf5dakmykxwpb48llm6kx95v";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/propfont-mixed";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/3ccb401b60cb1128ba50a5afecd97feca6d00d7a/recipes/propfont-mixed";
sha256 = "19k0ydpkiviznsngwcqwn4k30r6j8w34pchgpjlsfwq1bndaai9y";
name = "propfont-mixed";
};
@@ -48728,7 +49443,7 @@
prosjekt = callPackage ({ dash, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "prosjekt";
- version = "20151127.1516";
+ version = "20151127.816";
src = fetchFromGitHub {
owner = "abingham";
repo = "prosjekt";
@@ -48736,7 +49451,7 @@
sha256 = "1m8zvrv5aws7b0dffk8y6b5mncdk2c4k90mx69jys10fs0gc5hb3";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/prosjekt";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/6d359ec827573dd8c871c4f23df5d1737f1830e7/recipes/prosjekt";
sha256 = "1fn7ii1bq7bjkz27hihclpvx0aabgwy3kv47r9qibjl2jin97rck";
name = "prosjekt";
};
@@ -48749,15 +49464,15 @@
protobuf-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "protobuf-mode";
- version = "20150522.511";
+ version = "20150521.2211";
src = fetchFromGitHub {
owner = "google";
repo = "protobuf";
- rev = "20b532544fde1dff34429b52db95c3a96409b73c";
- sha256 = "10rvcpg931cw3aq9bian05yjrwm8361zi9kd8c95bvb53ni572ki";
+ rev = "cae3b0cbb689d0ed1e5da73942a5a9705f3411b0";
+ sha256 = "14rdyqn7hlznwjg7dcdirs3gb2i0xf19rzak98gvbifxb2s0w6m1";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/protobuf-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/b4e7f5f641251e17add561991d3bcf1fde23467b/recipes/protobuf-mode";
sha256 = "1hh0w93fg6mfwsbb9wvp335ry8kflj50k8hybchpjcn6f4x39xsj";
name = "protobuf-mode";
};
@@ -48770,15 +49485,15 @@
psc-ide = callPackage ({ cl-lib ? null, company, dash, dash-functional, fetchFromGitHub, fetchurl, lib, melpaBuild, s }:
melpaBuild {
pname = "psc-ide";
- version = "20160525.1137";
+ version = "20160624.1358";
src = fetchFromGitHub {
owner = "epost";
repo = "psc-ide-emacs";
- rev = "f2c76c163e3ea66e2266006e09e999e0a12ebe79";
- sha256 = "0cq6j1q96zdl2afa6sm66ac6rb378mwfw01dba9hg96zqqxf20dl";
+ rev = "6c61403ab1731e544690ebaed1d05b79df02ed8d";
+ sha256 = "0ql1v1lmqzzgjlzwkvpg48kfi38sc8d9na6pd24pixiplkzpdwx8";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/psc-ide";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/8189f4e7d6742d72fb22acf61a9d7eb0bffb2d93/recipes/psc-ide";
sha256 = "1f8bphrbksz7si9flyhz54brb7w1lcz19pmn92hjwx7kd4nl18i9";
name = "psc-ide";
};
@@ -48791,7 +49506,7 @@
psci = callPackage ({ dash, deferred, f, fetchFromGitHub, fetchurl, lib, melpaBuild, purescript-mode, s }:
melpaBuild {
pname = "psci";
- version = "20150328.2001";
+ version = "20150328.1401";
src = fetchFromGitHub {
owner = "ardumont";
repo = "emacs-psci";
@@ -48799,7 +49514,7 @@
sha256 = "08j31bg5vwgirv5n5fsw7w6gncrkpwpjlj2m00dhj8wbvhp503sn";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/psci";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/a0f45269895b8e061c972da46f932c96eb0f5279/recipes/psci";
sha256 = "0sgrz8byz2pcsad2pydinp4hh2xb48pdb03r93wg2vvyy8p15j9g";
name = "psci";
};
@@ -48812,7 +49527,7 @@
psession = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "psession";
- version = "20160515.859";
+ version = "20160515.159";
src = fetchFromGitHub {
owner = "thierryvolpiatto";
repo = "psession";
@@ -48820,7 +49535,7 @@
sha256 = "1fpcb4qpd11mbv733iklnbjg7g4ka05mf5wpa2k6kr3fbvndkx37";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/psession";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/669342d2b3e6cb622f196571d776a98ec8f3b1d3/recipes/psession";
sha256 = "18va6kvpia5an74vkzccs72z02vg4vq9mjzr5ih7xbcqxna7yv3a";
name = "psession";
};
@@ -48833,7 +49548,7 @@
psvn = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "psvn";
- version = "20151103.1942";
+ version = "20151103.1242";
src = fetchFromGitHub {
owner = "emacsmirror";
repo = "psvn";
@@ -48841,7 +49556,7 @@
sha256 = "1jz1g0igpnsjn2r144205bffj10iyp8izm8678mzkhnricxkn0d6";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/psvn";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/3690f9af15a6470b76d953c349eed82833b79a7c/recipes/psvn";
sha256 = "1wdww25pjla7c8zf04mvgia1ws8cal9rb7z8g3vn2s3gp68py12n";
name = "psvn";
};
@@ -48854,15 +49569,15 @@
psysh = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "psysh";
- version = "20160509.1608";
+ version = "20160610.1611";
src = fetchFromGitHub {
owner = "zonuexe";
repo = "psysh.el";
- rev = "4b1d33acc0ae2e22f1ebcda31f90e68ef0b9ad90";
- sha256 = "0ng0nkr5azbz90jix5y9m9ri8l5jyps3jmgz3wvzd9k99grrik76";
+ rev = "3a4479a0ca30524332dbb136d03acad713deaabc";
+ sha256 = "1vx7psvqchrd3zyxrji8y0fpkrw0q2fc74g66jki5s46xvid0nai";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/psysh";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/4b3131d9a0ad359f15bc3550868a12f02476449a/recipes/psysh";
sha256 = "0ygnfmfx1ifppg6j3vfz10srbcpr5ird2bhw6pvydijxkyd75vy5";
name = "psysh";
};
@@ -48875,7 +49590,7 @@
pt = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "pt";
- version = "20160119.1717";
+ version = "20160119.1017";
src = fetchFromGitHub {
owner = "bling";
repo = "pt.el";
@@ -48883,7 +49598,7 @@
sha256 = "0ca8j7xlqxbidqfz2iarwn7qq4v12pwvsq6vzj2473n2g1c09xzj";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/pt";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/34c51783af154f203489f5f7df7012ca61932caa/recipes/pt";
sha256 = "0zmz1hcr4ajc2ydvpdxhy1dlhp7hvlkv6y6w1b79ffvq6acdd5mj";
name = "pt";
};
@@ -48896,7 +49611,7 @@
pug-mode = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "pug-mode";
- version = "20160531.1038";
+ version = "20160531.338";
src = fetchFromGitHub {
owner = "hlissner";
repo = "emacs-pug-mode";
@@ -48904,7 +49619,7 @@
sha256 = "0yr04yj72dkj520wzzj4a1mk0w653bb8alz15v92mlj5lc8kdjm8";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/pug-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/b3710aac9f3df3a23238af1f969c462b3692f260/recipes/pug-mode";
sha256 = "1njhr95y2rx7inpl9phxxz580844p2iadqlga1kj7xzvjz698x85";
name = "pug-mode";
};
@@ -48917,15 +49632,15 @@
puml-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "puml-mode";
- version = "20160324.2325";
+ version = "20160606.116";
src = fetchFromGitHub {
owner = "skuro";
repo = "puml-mode";
- rev = "b31063125b16441cd88af75bb46de8575a0c626f";
- sha256 = "1qszv1xc0h5hj13znxxbqk362m8ada59p0gxss78r2c9k61r5ql4";
+ rev = "f5ff58bb4f995f353899c878bb519349a7b4a08a";
+ sha256 = "06gc27hgvc3n93ljv8bmblh305jghwg4afxc49rsgds4krrd2rl6";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/puml-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/c0c28ccef208035fd0bdd648771825c1d10f42ff/recipes/puml-mode";
sha256 = "131ghjq6lsbhbx5hdg36swnkqijdb9bx6zg73hg0nw8qk0z742vn";
name = "puml-mode";
};
@@ -48938,7 +49653,7 @@
punctuality-logger = callPackage ({ fetchFromGitLab, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "punctuality-logger";
- version = "20141120.2131";
+ version = "20141120.1431";
src = fetchFromGitLab {
owner = "elzair";
repo = "punctuality-logger";
@@ -48946,7 +49661,7 @@
sha256 = "1bkkgs2agy00wivilljkj3a9fsb2ba935icjmhbk46zjc6yf3y6q";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/punctuality-logger";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/76ac7178ee5381e08ae881f3fc6061106eeb1c1d/recipes/punctuality-logger";
sha256 = "0q9s74hkfqvcx67xpq9rlvh38nyjnz230bll6ks7y5yzxvl4qhcm";
name = "punctuality-logger";
};
@@ -48959,7 +49674,7 @@
pungi = callPackage ({ fetchFromGitHub, fetchurl, jedi, lib, melpaBuild, pyvenv }:
melpaBuild {
pname = "pungi";
- version = "20150222.1346";
+ version = "20150222.646";
src = fetchFromGitHub {
owner = "mgrbyte";
repo = "pungi";
@@ -48967,7 +49682,7 @@
sha256 = "1viw95y6fha782n1jw7snr7xc00iyf94r4whsm1a2q11vm2d1h21";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/pungi";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/d504c6028c029268d380c0eac25b1c4886aa6e98/recipes/pungi";
sha256 = "1v9fsd764z5wdcips63z53rcipdz7bha4q6s4pnn114jn3a93ls1";
name = "pungi";
};
@@ -48980,7 +49695,7 @@
punpun-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "punpun-theme";
- version = "20160527.1130";
+ version = "20160527.430";
src = fetchFromGitHub {
owner = "wasamasa";
repo = "punpun-theme";
@@ -48988,7 +49703,7 @@
sha256 = "131si1wqv0wvdgwbw58y8w90v6z3nd5rf293144brv9d8853icpy";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/punpun-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/77a9edbb36dc9474adb23d356e6c596789aab2a2/recipes/punpun-theme";
sha256 = "1l7nphh8v7w5w790cwmnp6nw5rciwhgzkvynkrvpiv9chhacx0xg";
name = "punpun-theme";
};
@@ -49001,7 +49716,7 @@
puppet-mode = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, pkg-info }:
melpaBuild {
pname = "puppet-mode";
- version = "20160416.1836";
+ version = "20160416.1136";
src = fetchFromGitHub {
owner = "lunaryorn";
repo = "puppet-mode";
@@ -49009,7 +49724,7 @@
sha256 = "1ly7gkxlkfgx3nzw35f7rwx7x9w6jrhql15jgsrh9slcw3q2rksl";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/puppet-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/ca67e3241b3fe5037b8d6a8e4f1104d9a46a01b1/recipes/puppet-mode";
sha256 = "1s2hap6fs6rg5q80dmzhaf4qqaf5sglhs8p896i3i5hq51w0ciyc";
name = "puppet-mode";
};
@@ -49022,7 +49737,7 @@
purescript-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "purescript-mode";
- version = "20150317.228";
+ version = "20150316.2028";
src = fetchFromGitHub {
owner = "dysinger";
repo = "purescript-mode";
@@ -49030,7 +49745,7 @@
sha256 = "0k2plyvd6842yryzrfadbf4h7a9hrjvkcvixclbca2bkvfik3864";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/purescript-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/77175fa470e517fa134751fbb38e144eb5b979ff/recipes/purescript-mode";
sha256 = "00gz752mh7144nsaka5q3q4681jp845kc5vcy2nbfnqp9b24l55m";
name = "purescript-mode";
};
@@ -49043,7 +49758,7 @@
purple-haze-theme = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "purple-haze-theme";
- version = "20141015.429";
+ version = "20141014.2129";
src = fetchFromGitHub {
owner = "jasonm23";
repo = "emacs-purple-haze-theme";
@@ -49051,7 +49766,7 @@
sha256 = "15myw5rkbnnpgzpiipm5xl4cyzymv8hh66x9al4aalb5nf52dckc";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/purple-haze-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/1bacdfc5c14c16f60da5f57f41eb3859345d9f62/recipes/purple-haze-theme";
sha256 = "0ld8k53823786y6f0dqcp0hlqlnmy323vdkanjfs5wg5ib60az1m";
name = "purple-haze-theme";
};
@@ -49064,7 +49779,7 @@
purty-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "purty-mode";
- version = "20131005.59";
+ version = "20131004.1759";
src = fetchFromGitHub {
owner = "jcatw";
repo = "purty-mode";
@@ -49072,7 +49787,7 @@
sha256 = "0qm2xv762cz196aqs445crqrmsks8hpwzpaykzn0chlvdk0m5cv1";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/purty-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/7fabdb05de9b8ec18a3a566f99688b50443b6b44/recipes/purty-mode";
sha256 = "0gbbwl5kg74jf1i1zsr40zg3gw43qmz1l87k0r578v1xvyqmhm1i";
name = "purty-mode";
};
@@ -49085,7 +49800,7 @@
pushbullet = callPackage ({ fetchFromGitHub, fetchurl, grapnel, json ? null, lib, melpaBuild }:
melpaBuild {
pname = "pushbullet";
- version = "20140809.1432";
+ version = "20140809.732";
src = fetchFromGitHub {
owner = "theanalyst";
repo = "revolver";
@@ -49093,7 +49808,7 @@
sha256 = "03ivg3ddhy5zh410wgwxa17m98wywqhk62jgijhjd00b6l8i4aym";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/pushbullet";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/a2649d60dd1ed3b3171ff1448b89967c5f7759a0/recipes/pushbullet";
sha256 = "1swzl25rcw7anl7q099qh14yhnwlbn3m20ib9kis0l1rv59kkarl";
name = "pushbullet";
};
@@ -49106,7 +49821,7 @@
px = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "px";
- version = "20141006.1448";
+ version = "20141006.748";
src = fetchFromGitHub {
owner = "aaptel";
repo = "preview-latex";
@@ -49114,7 +49829,7 @@
sha256 = "10g4imxgpv7a0j40qkx7xf2qnyz80ypd0mv0lf47n9dwln5byln3";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/px";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/326fc9b057a5016248ac36ca166e9a38f13babf6/recipes/px";
sha256 = "0xjmz18m2dslh6yq5z32r43zq3svfxn8mhrfbmihglyv2mkwxw44";
name = "px";
};
@@ -49127,7 +49842,7 @@
py-autopep8 = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "py-autopep8";
- version = "20151231.1514";
+ version = "20151231.814";
src = fetchFromGitHub {
owner = "paetzke";
repo = "py-autopep8.el";
@@ -49135,7 +49850,7 @@
sha256 = "1iw94m1bvsmadlj16f8ymwx0q6f9lqysy7by76hkpiwqqhd2i8rv";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/py-autopep8";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/c400e0f3cfe70821e621fe85d239b4f6596d5171/recipes/py-autopep8";
sha256 = "1argjdmh0x9c90zkb6cr4z3zkpgjp2mkpsw0dr4v6gg83jcggfpp";
name = "py-autopep8";
};
@@ -49148,7 +49863,7 @@
py-gnitset = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "py-gnitset";
- version = "20140225.510";
+ version = "20140224.2210";
src = fetchFromGitHub {
owner = "quodlibetor";
repo = "py-gnitset";
@@ -49156,7 +49871,7 @@
sha256 = "05803wi7rj73sy9ihkilr6pcn72szfsvgf2dgbdpnqra508rxyb6";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/py-gnitset";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/187d97c797818c4e0f61073b9e24baf925c437ff/recipes/py-gnitset";
sha256 = "0f6ivq4ignb4gfxw2q8qvigvv3fbvvyr87x25wcaz6yipg1lr18r";
name = "py-gnitset";
};
@@ -49169,7 +49884,7 @@
py-import-check = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "py-import-check";
- version = "20130802.1311";
+ version = "20130802.611";
src = fetchFromGitHub {
owner = "psibi";
repo = "emacs-py-import-check";
@@ -49177,7 +49892,7 @@
sha256 = "1416hbc64gwn9c8g9lxfx58w60ysi0x8rbps6mfxalavdhbs20sv";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/py-import-check";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/abe81fe96790ceebcf0951595644ea6a82613890/recipes/py-import-check";
sha256 = "1261dki0q44sw9h0g1305i2fj1dg9xgwzry50jbn2idcrqg4xf7k";
name = "py-import-check";
};
@@ -49190,7 +49905,7 @@
py-isort = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "py-isort";
- version = "20150422.1739";
+ version = "20150422.1039";
src = fetchFromGitHub {
owner = "paetzke";
repo = "py-isort.el";
@@ -49198,7 +49913,7 @@
sha256 = "0150q6xcnzzrkn9fa9njm973l1d49c48ad8qia71k4jwrxjjj6zr";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/py-isort";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/44377d11da07b49c8dc6887c948cc5ddfc065bd2/recipes/py-isort";
sha256 = "0k5gn3bjn5pv6dn6p0m9xghn0sx3m29bj3pfrmyh6gd5ic0l00yb";
name = "py-isort";
};
@@ -49211,7 +49926,7 @@
py-smart-operator = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, s }:
melpaBuild {
pname = "py-smart-operator";
- version = "20150825.410";
+ version = "20150824.2110";
src = fetchFromGitHub {
owner = "rmuslimov";
repo = "py-smart-operator";
@@ -49219,7 +49934,7 @@
sha256 = "14gppb354wzbbqv0zp1675p84n07rll9n4i6lncd9bvv1flqsxy8";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/py-smart-operator";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/a7491a1825b7aaa5f76aafadb8f04721ab1b1cfe/recipes/py-smart-operator";
sha256 = "1n0bdr9z2s1ikhmfz642k94gjzb88anwlb61mh27ay8wqdgm74c4";
name = "py-smart-operator";
};
@@ -49232,7 +49947,7 @@
py-test = callPackage ({ dash, emacs, f, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "py-test";
- version = "20151117.722";
+ version = "20151117.22";
src = fetchFromGitHub {
owner = "Bogdanp";
repo = "py-test.el";
@@ -49240,7 +49955,7 @@
sha256 = "1s39407z3rxz10r5sshv2vj7s23ylkhg59ixasgnpjk82gl4igpf";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/py-test";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/84690ba6b033027772c20bf20432427b32d3231a/recipes/py-test";
sha256 = "1mbwbzg606winf5af7qkg6a1hg79lc7k2miq4d3mwih496l5sinb";
name = "py-test";
};
@@ -49253,7 +49968,7 @@
py-yapf = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "py-yapf";
- version = "20160101.1312";
+ version = "20160101.612";
src = fetchFromGitHub {
owner = "paetzke";
repo = "py-yapf.el";
@@ -49261,7 +49976,7 @@
sha256 = "09z739w4fjg9xnv3mbh7v8j59mnbsfq4ygq616pj4xcw3nsh0rbg";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/py-yapf";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/3306c6906d4b21868b9407de27fbebdaed3d00d5/recipes/py-yapf";
sha256 = "1381x0ffpllxwgkr2d8xxbv1nd4k475m1aff8l5qijw7d1fqga2f";
name = "py-yapf";
};
@@ -49274,7 +49989,7 @@
pycarddavel = callPackage ({ emacs, fetchFromGitHub, fetchurl, helm, lib, melpaBuild }:
melpaBuild {
pname = "pycarddavel";
- version = "20150831.1416";
+ version = "20150831.716";
src = fetchFromGitHub {
owner = "DamienCassou";
repo = "pycarddavel";
@@ -49282,7 +49997,7 @@
sha256 = "09glwrb9q65qdm4yd0mbi5hwdy2434zm8699ywhs6hqpjacadlmi";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/pycarddavel";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/9b3d2cd943f26dcff322efb16d55dd3bd71dea07/recipes/pycarddavel";
sha256 = "12k2mnzkd8yv17csfhclsnd479vcabawmac23yw6dsw7ic53jf1a";
name = "pycarddavel";
};
@@ -49295,7 +50010,7 @@
pycoverage = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "pycoverage";
- version = "20160325.212";
+ version = "20160324.2012";
src = fetchFromGitHub {
owner = "mattharrison";
repo = "pycoverage.el";
@@ -49303,7 +50018,7 @@
sha256 = "0qap6iz865l43mixga7541c2z9kdx8zkkdcgdlgn6n8pyv8iz7qs";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/pycoverage";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/eb0310bbe8427abdcba2b30414ec26475b0b7440/recipes/pycoverage";
sha256 = "1jaanmpnawk0r6zfzx18crqml7lv412l2l0iabp345xvfvsh8h1m";
name = "pycoverage";
};
@@ -49316,7 +50031,7 @@
pydoc = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "pydoc";
- version = "20160530.139";
+ version = "20160529.1839";
src = fetchFromGitHub {
owner = "statmobile";
repo = "pydoc";
@@ -49324,7 +50039,7 @@
sha256 = "1m0jb5pk1a1ww5jx2y5nz21by4dh7nlnhdn6bigz53ra449rrxii";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/pydoc";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/5c4988a66040ddf659492bdb0ae2b9617c342c69/recipes/pydoc";
sha256 = "0sf52cb80yiridsl1pffdr3wpbgxrn2l8vnq03l70djckild477n";
name = "pydoc";
};
@@ -49337,14 +50052,14 @@
pydoc-info = callPackage ({ fetchhg, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "pydoc-info";
- version = "20110301.934";
+ version = "20110301.234";
src = fetchhg {
url = "https://bitbucket.com/jonwaltman/pydoc-info";
rev = "151d877c8fb8";
sha256 = "1mzyr6yznkyv99x9q8zx2f270ngjh8s94zvnhcbhidi57inpd1nh";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/pydoc-info";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/5b7972602399f9df9139cff177e38653bb0f43ed/recipes/pydoc-info";
sha256 = "0l80g0rzkk3a1wrw2riiywz9wdyxwr5i64jb2h5r8alp9qq1k7mf";
name = "pydoc-info";
};
@@ -49357,7 +50072,7 @@
pyenv-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, pythonic }:
melpaBuild {
pname = "pyenv-mode";
- version = "20160221.2023";
+ version = "20160221.1323";
src = fetchFromGitHub {
owner = "proofit404";
repo = "pyenv-mode";
@@ -49365,7 +50080,7 @@
sha256 = "049wgwygdaa0p8p4pl37wkc06nam9ph17i9gzcg7w0hfwghjrc5j";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/pyenv-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/acc9b816796b9f142c53f90593952b43c962d2d8/recipes/pyenv-mode";
sha256 = "00yqrk92knv9gq1m9xcg78gavv70jsjlwzkllzxl63iva9qrch59";
name = "pyenv-mode";
};
@@ -49378,7 +50093,7 @@
pyenv-mode-auto = callPackage ({ f, fetchFromGitHub, fetchurl, lib, melpaBuild, pyenv-mode, s }:
melpaBuild {
pname = "pyenv-mode-auto";
- version = "20160123.841";
+ version = "20160123.141";
src = fetchFromGitHub {
owner = "ssbb";
repo = "pyenv-mode-auto";
@@ -49386,7 +50101,7 @@
sha256 = "1sclhzv3w9fg54dg4qhlfbc0p1z5clyr8phrckhypvlwfgbar4b4";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/pyenv-mode-auto";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/f3fcb707356bd16fd0b573c176023534cd69d0d7/recipes/pyenv-mode-auto";
sha256 = "1l7h4fas1vshkh4skxzpw7v2a11s1hwnb20n6a81yh701pbikqnd";
name = "pyenv-mode-auto";
};
@@ -49399,7 +50114,7 @@
pyfmt = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "pyfmt";
- version = "20150521.2256";
+ version = "20150521.1556";
src = fetchFromGitHub {
owner = "aheaume";
repo = "pyfmt.el";
@@ -49407,7 +50122,7 @@
sha256 = "1rp8zchvclh29rl9a1i82pcqghnhpaqnppaydxc2qx23y9pdgz9i";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/pyfmt";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/68d477025ae5af50bf8f7b37f2adfa9159502e13/recipes/pyfmt";
sha256 = "112kjsp763c2plhqlhydpngrabhc58ya7cszvi4119xqw2s699g6";
name = "pyfmt";
};
@@ -49417,10 +50132,31 @@
license = lib.licenses.free;
};
}) {};
+ pyimport = callPackage ({ dash, fetchFromGitHub, fetchurl, lib, melpaBuild, s }:
+ melpaBuild {
+ pname = "pyimport";
+ version = "20160629.1310";
+ src = fetchFromGitHub {
+ owner = "Wilfred";
+ repo = "pyimport";
+ rev = "364a13289c3a2467711f57de27c8a36cc012196c";
+ sha256 = "1q5rrpwd285m767al54q0aqbncb2p6c5kq4j344sfr1m8wk064mn";
+ };
+ recipeFile = fetchurl {
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/71bc39b06cee37814960ef31c6a2056261b802fb/recipes/pyimport";
+ sha256 = "1qwigplawknykw1kbm5babyyknzn43ddhbdpahvzh4wy3kycn6n8";
+ name = "pyimport";
+ };
+ packageRequires = [ dash s ];
+ meta = {
+ homepage = "https://melpa.org/#/pyimport";
+ license = lib.licenses.free;
+ };
+ }) {};
pyimpsort = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "pyimpsort";
- version = "20160130.553";
+ version = "20160129.2253";
src = fetchFromGitHub {
owner = "emacs-pe";
repo = "pyimpsort.el";
@@ -49428,7 +50164,7 @@
sha256 = "05qx1p19dw3nr264shihfn33k579hd0wf4cxki5cqrxi7xzpjgrc";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/pyimpsort";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/97eb7c0934298d393910419fd55d7d5f1b0cfc38/recipes/pyimpsort";
sha256 = "0kdk3bmryfzvwf8vshfszbih8mwncf4xlb0n0n0yjn0p1n98q99k";
name = "pyimpsort";
};
@@ -49441,15 +50177,15 @@
pylint = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "pylint";
- version = "20160505.1144";
+ version = "20160505.444";
src = fetchFromGitHub {
owner = "PyCQA";
repo = "pylint";
- rev = "b3eda4369f5b217840bc8911fdf2725e8f1408c8";
- sha256 = "1l2xic1b66vbp23zpwks6gb4iz50v3c68hvvcdnvl8w19fl080ig";
+ rev = "e80778ae9c59efdd2e3421afba06df9cf4aa4cf4";
+ sha256 = "0cj2lzcrp8i8dvwrb0aps3cmpppxy1vayy4481sppqm5wfl6nndd";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/pylint";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/a073c91d6f4d31b82f6bfee785044c4e3ae96d3f/recipes/pylint";
sha256 = "1138a8dn9y4ypbphs1zfvr8gr4vdjcy0adsl4xfbgsls4kcdwpxx";
name = "pylint";
};
@@ -49462,7 +50198,7 @@
pytest = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, s }:
melpaBuild {
pname = "pytest";
- version = "20160330.1547";
+ version = "20160330.847";
src = fetchFromGitHub {
owner = "ionrock";
repo = "pytest-el";
@@ -49470,7 +50206,7 @@
sha256 = "0bg8pqqia9l39ac3s9xrnlyrg1pj2w00vc742qpjdk5349lazdl6";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/pytest";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/33a854a27adbaf57d344340199f90d52747b8450/recipes/pytest";
sha256 = "0ssib65wa20h8r6156f392l481vns5fcax6w70hcawmn84nficdh";
name = "pytest";
};
@@ -49483,7 +50219,7 @@
python-cell = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "python-cell";
- version = "20131030.16";
+ version = "20131029.1816";
src = fetchFromGitHub {
owner = "thisch";
repo = "python-cell.el";
@@ -49491,7 +50227,7 @@
sha256 = "1cnjdgw3x6yb5k06z57xifywlg0kdx9ai4f1ajc0wx9aax8r5gav";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/python-cell";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/0549866c5e96f673ec9dec298e7ff9d5779d443b/recipes/python-cell";
sha256 = "07i3vyci52jvslq28djwkgx1r157wvxd99rvqlxnmmsl5yj4k1jf";
name = "python-cell";
};
@@ -49504,7 +50240,7 @@
python-django = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "python-django";
- version = "20150822.604";
+ version = "20150821.2304";
src = fetchFromGitHub {
owner = "fgallina";
repo = "python-django.el";
@@ -49512,7 +50248,7 @@
sha256 = "1qckn5bi1ib54hgqbym5qqwzvbv70ria1w3c2x543xlr0l7zga6h";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/python-django";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/29b2cd21e7b504222aed92ec062402f3e2a818fc/recipes/python-django";
sha256 = "02whx8g8r02mzng7d7bnbkz5n7gyzp5hcnmvd6a3lq106c0h7w9k";
name = "python-django";
};
@@ -49525,7 +50261,7 @@
python-docstring = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "python-docstring";
- version = "20160509.1215";
+ version = "20160509.515";
src = fetchFromGitHub {
owner = "glyph";
repo = "python-docstring-mode";
@@ -49533,7 +50269,7 @@
sha256 = "0nlhfxiirs90g8sx3zwf36idnj1nbasrdm0qhpdqs6k6vkndfbgk";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/python-docstring";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/e159e59ba0b60326cca0e1ea68fac4b85d54cd24/recipes/python-docstring";
sha256 = "1vi30y71vflsbprp5j4phbp7x1j24vxn9d6sifaddari0g0zxpfw";
name = "python-docstring";
};
@@ -49546,7 +50282,7 @@
python-environment = callPackage ({ deferred, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "python-environment";
- version = "20150310.953";
+ version = "20150310.353";
src = fetchFromGitHub {
owner = "tkf";
repo = "emacs-python-environment";
@@ -49554,7 +50290,7 @@
sha256 = "0q6bib9nr6xiq6npzbngyfcjk87yyvwzq1zirr3z1h5wadm34lsk";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/python-environment";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/283155ad56cd8eda416c83a9b7f8d43d4d1570c2/recipes/python-environment";
sha256 = "1pq16rddw76ic5d02j5bswl9qcydi47hqmhs7r06jk46vsfzxpl7";
name = "python-environment";
};
@@ -49567,7 +50303,7 @@
python-info = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "python-info";
- version = "20151228.1952";
+ version = "20151228.1252";
src = fetchFromGitHub {
owner = "Wilfred";
repo = "python-info";
@@ -49575,7 +50311,7 @@
sha256 = "0zk6014dzfrb3y3nhs890x082xf044w0a8nmy6rlrj375lvhfn99";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/python-info";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/2a30746451ec5ffab250e160c1d5bd29b8dc6b54/recipes/python-info";
sha256 = "0kvpz1r2si94rs1iajn1ffmx7a5bgyjnzri36ajdgd5gcgh41dhy";
name = "python-info";
};
@@ -49588,15 +50324,15 @@
python-mode = callPackage ({ fetchFromGitLab, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "python-mode";
- version = "20160521.910";
+ version = "20160620.530";
src = fetchFromGitLab {
owner = "python-mode-devs";
repo = "python-mode";
- rev = "39e9d2bffcf85c0b961b5401f50491c416978d12";
- sha256 = "0rk3p1crxxbajvx5d3a38p5ma2zi17pf86xp27y9pyg0bfh2cp14";
+ rev = "f3180213966e4eea5f139f21aa0b16a6d02633ce";
+ sha256 = "09l1dzk3x4d2wba62dy4w0b5zzv9nhs97g8shfz9vz1q51a30ix8";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/python-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/82861e1ab114451af5e1106d53195afd3605448a/recipes/python-mode";
sha256 = "1m7c6c97xpr5mrbyzhcl2cy7ykdz5yjj90mrakd4lknnsbcq205k";
name = "python-mode";
};
@@ -49606,10 +50342,31 @@
license = lib.licenses.free;
};
}) {};
+ python-test = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
+ melpaBuild {
+ pname = "python-test";
+ version = "20160625.1620";
+ src = fetchFromGitHub {
+ owner = "emacs-pe";
+ repo = "python-test.el";
+ rev = "c478bb077867acd9e979012ac39353cb8900abac";
+ sha256 = "0cs0l42q8airi93acb6f2ndysif5nb06w1hvpf3cimbpkazgf7pl";
+ };
+ recipeFile = fetchurl {
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/0ea68b3aa9c057e81a3e90a359a38ac16cb26c2f/recipes/python-test";
+ sha256 = "16grx9xzl48dcwflfmv64wigyxlw495a6q01b1ynkqj5sjdl3fkn";
+ name = "python-test";
+ };
+ packageRequires = [ emacs ];
+ meta = {
+ homepage = "https://melpa.org/#/python-test";
+ license = lib.licenses.free;
+ };
+ }) {};
python-x = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, folding, lib, melpaBuild, python ? null }:
melpaBuild {
pname = "python-x";
- version = "20160313.1436";
+ version = "20160313.836";
src = fetchFromGitHub {
owner = "wavexx";
repo = "python-x.el";
@@ -49617,7 +50374,7 @@
sha256 = "1shz8qha2cqv89hz27aazwd6qbf4qnz17h6hh8in5qxgfsndi7pp";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/python-x";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/87ed5ea4868945df1bf92d1eae5d3ebb83ece117/recipes/python-x";
sha256 = "115mvhqfa0fa8kdk64biba7ri4xjk74qqi6vm1a5z3psam9mjcmn";
name = "python-x";
};
@@ -49630,7 +50387,7 @@
pythonic = callPackage ({ cl-lib ? null, dash, emacs, f, fetchFromGitHub, fetchurl, lib, melpaBuild, s }:
melpaBuild {
pname = "pythonic";
- version = "20160221.2023";
+ version = "20160221.1323";
src = fetchFromGitHub {
owner = "proofit404";
repo = "pythonic";
@@ -49638,7 +50395,7 @@
sha256 = "16sp3mg5jzx89lgr3kr61fqw1p9gc5zxq2mi9rpgqi5hkkcpnpgj";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/pythonic";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/5589c55d459f15717914061d0f0f4caa32caa13c/recipes/pythonic";
sha256 = "1hq0r3vg8vmgw89wfjdqknwm76pimlk0dy56wmh9vffh06gqsb51";
name = "pythonic";
};
@@ -49651,7 +50408,7 @@
pyvenv = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "pyvenv";
- version = "20160527.1342";
+ version = "20160527.642";
src = fetchFromGitHub {
owner = "jorgenschaefer";
repo = "pyvenv";
@@ -49659,7 +50416,7 @@
sha256 = "1fqp3khz8rl0frg6kaqj53p0w07ricbnl2xw57c4w776jnmc0npa";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/pyvenv";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/e37236b89b9705ba7a9d134b1fb2c3c003953a9b/recipes/pyvenv";
sha256 = "0gai9idss1wvryxyqk3pv854mc2xg9hd0r55r2blql8n5rd2yv8v";
name = "pyvenv";
};
@@ -49672,7 +50429,7 @@
qiita = callPackage ({ fetchFromGitHub, fetchurl, helm, lib, markdown-mode, melpaBuild }:
melpaBuild {
pname = "qiita";
- version = "20140118.944";
+ version = "20140118.244";
src = fetchFromGitHub {
owner = "gongo";
repo = "qiita-el";
@@ -49680,7 +50437,7 @@
sha256 = "0ggivlaj29rbbhkjpf3bf7vr96xjzffas0sf5m54qh6nyz6nnha5";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/qiita";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/d8065a58e297c50c031de97d2d80bce5857bd803/recipes/qiita";
sha256 = "1kzk7pc68ks9gxm2l2d28al23gxh56z0cmkl80qwg7sh4gsmhyxl";
name = "qiita";
};
@@ -49693,7 +50450,7 @@
qml-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "qml-mode";
- version = "20160108.1604";
+ version = "20160108.904";
src = fetchFromGitHub {
owner = "coldnew";
repo = "qml-mode";
@@ -49701,7 +50458,7 @@
sha256 = "1mlka59gyylj4cabi1b552h11qx54kjqwx3bkmsdngjrd4da222a";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/qml-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/f3abc88ddbb6b8ecafa45e75ceba9a1294ad88d4/recipes/qml-mode";
sha256 = "123mlibviplzra558x87da4zx0kpbhsgfigjjgjgp3mdg897084n";
name = "qml-mode";
};
@@ -49714,7 +50471,7 @@
quack = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "quack";
- version = "20160410.1107";
+ version = "20160410.407";
src = fetchFromGitHub {
owner = "emacsmirror";
repo = "quack";
@@ -49722,7 +50479,7 @@
sha256 = "0vhzwr2adkprjibi3x4lnsvjxishysma7fhpwzgg28l21qjqc0nm";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/quack";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/cb571caa41ea51ebbfe952526785287d913d2836/recipes/quack";
sha256 = "1l7jw8sx2llbzp3sg5755qdhhyq8jdaggxzzn7icjxxrmj1ji6ii";
name = "quack";
};
@@ -49735,7 +50492,7 @@
quasi-monochrome-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "quasi-monochrome-theme";
- version = "20150801.2225";
+ version = "20150801.1525";
src = fetchFromGitHub {
owner = "lbolla";
repo = "emacs-quasi-monochrome";
@@ -49743,7 +50500,7 @@
sha256 = "0y7mdizx6km3000cqjrirlgwzkq56asnzl8n1bl56pk5d9grfx9h";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/quasi-monochrome-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/a9c8498e4bcca19c4c24b2fd0db035c3da477e2a/recipes/quasi-monochrome-theme";
sha256 = "0h5pqrklyga40jg8qc47lwmf8khn0vcs5jx2sdycl2ipy0ikmfs0";
name = "quasi-monochrome-theme";
};
@@ -49756,7 +50513,7 @@
quelpa = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, package-build }:
melpaBuild {
pname = "quelpa";
- version = "20160325.1429";
+ version = "20160325.829";
src = fetchFromGitHub {
owner = "quelpa";
repo = "quelpa";
@@ -49764,7 +50521,7 @@
sha256 = "1kkzy7p0y9iakcl2nciby9x6jll53h56h3kimqc3q9riswihyncq";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/quelpa";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/7dc3ba4f3efbf66142bf946d9cd31ff0c7a0b60e/recipes/quelpa";
sha256 = "1g53fcy837hpyn9lnmmri0h4c5va61vszhblz4caadqq265hknvs";
name = "quelpa";
};
@@ -49777,7 +50534,7 @@
quelpa-use-package = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, quelpa, use-package }:
melpaBuild {
pname = "quelpa-use-package";
- version = "20150805.1228";
+ version = "20150805.528";
src = fetchFromGitHub {
owner = "quelpa";
repo = "quelpa-use-package";
@@ -49785,7 +50542,7 @@
sha256 = "00wnvyw2daiwwd1jyq1ag5jsws8k8jxs3lsj73dagbvqnlywmkm6";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/quelpa-use-package";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/b581e411ef5ea3954acc2cd997c87b3b86777333/recipes/quelpa-use-package";
sha256 = "0p09w419kldgl913hgqfzyv2pck27vqq2i1xsx7g29biwgnp9hl9";
name = "quelpa-use-package";
};
@@ -49798,7 +50555,7 @@
quick-buffer-switch = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "quick-buffer-switch";
- version = "20151008.8";
+ version = "20151007.1708";
src = fetchFromGitHub {
owner = "renard";
repo = "quick-buffer-switch";
@@ -49806,7 +50563,7 @@
sha256 = "0kh63nzdzwxksn2ar2i1ds7n96jga2dhhc9gg27p1g2ca66fs6h5";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/quick-buffer-switch";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/30f167afc241f3ec24c092f2f06dbabd4dd11bcc/recipes/quick-buffer-switch";
sha256 = "1fsnha3x3pgq582libb3dmxb93aagv1avnc0rigpfd7hv6bagj40";
name = "quick-buffer-switch";
};
@@ -49819,7 +50576,7 @@
quick-preview = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "quick-preview";
- version = "20150829.639";
+ version = "20150828.2339";
src = fetchFromGitHub {
owner = "myuhe";
repo = "quick-preview.el";
@@ -49827,7 +50584,7 @@
sha256 = "1cp3z05qjy7qvjjv105ws1j9qykx8sl4s13xff0ijwvjza6ga44c";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/quick-preview";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/98270840568fa1fca2d92f26108444fb24609e83/recipes/quick-preview";
sha256 = "18janbmhbwb6a46fgc1sxl9ww591v60y3wgh2wqh62vdy4ix3bd9";
name = "quick-preview";
};
@@ -49840,7 +50597,7 @@
quickref = callPackage ({ dash, fetchFromGitHub, fetchurl, lib, melpaBuild, s }:
melpaBuild {
pname = "quickref";
- version = "20160326.1736";
+ version = "20160326.1136";
src = fetchFromGitHub {
owner = "pd";
repo = "quickref.el";
@@ -49848,7 +50605,7 @@
sha256 = "13svdvww8dbv75lg66xhca6xi08k7k44rsx2ckdf82j9i52y5lw6";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/quickref";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/acc9b816796b9f142c53f90593952b43c962d2d8/recipes/quickref";
sha256 = "0jahi84ra9g7h0cvz3c02zkbkknrzgv48zq32n72lkxl958swqn1";
name = "quickref";
};
@@ -49861,15 +50618,15 @@
quickrun = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "quickrun";
- version = "20160307.1218";
+ version = "20160611.834";
src = fetchFromGitHub {
owner = "syohex";
repo = "emacs-quickrun";
- rev = "ce788ae2272f00aec4740f8507807117163f803b";
- sha256 = "0czmv7bdsayckg854jfpmaqs4qj9pdhhn0gsqkfa510d7qz032bj";
+ rev = "b38ef226edbf7cfc22c4463bd8526d140e6439c3";
+ sha256 = "1cwly4s7xcdr73hqqxbzpfjbpndpfnlhy3awpv7d31a1k1qr5r40";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/quickrun";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/81f0f525680fea98e804f39dbde1dada887e8821/recipes/quickrun";
sha256 = "0f989d6niw6ghf9mq454kqyp0gy7gj34vx5l6krwc52agckyfacy";
name = "quickrun";
};
@@ -49882,7 +50639,7 @@
quiet = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "quiet";
- version = "20160508.1456";
+ version = "20160508.756";
src = fetchFromGitHub {
owner = "zzkt";
repo = "quiet";
@@ -49890,7 +50647,7 @@
sha256 = "14q7x341gqcxn3bq72wmfxipqmj2dh35kxcrwjkyghbsbd43rv8n";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/quiet";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/443425d9e4412a1e3e8117f97c255c8420223542/recipes/quiet";
sha256 = "1jq65jpx0rlkc0dzy55gs37ybpjzvcv06ahwiw1lk2n92g4pi96a";
name = "quiet";
};
@@ -49903,7 +50660,7 @@
r-autoyas = callPackage ({ ess, fetchFromGitHub, fetchurl, lib, melpaBuild, yasnippet }:
melpaBuild {
pname = "r-autoyas";
- version = "20140101.1610";
+ version = "20140101.910";
src = fetchFromGitHub {
owner = "mattfidler";
repo = "r-autoyas.el";
@@ -49911,7 +50668,7 @@
sha256 = "0dhljmdlg4p832w9s7rp8vznkpjkwpg8k9hj95cn2h76c0afwz3j";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/r-autoyas";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/3a095d3a687055c6ac43a4338826542d14a25127/recipes/r-autoyas";
sha256 = "18zifadsgbwnga205jvpx61wa2dvjxmxs5v7cjqhny45a524nbv4";
name = "r-autoyas";
};
@@ -49924,7 +50681,7 @@
racer = callPackage ({ dash, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, rust-mode, s }:
melpaBuild {
pname = "racer";
- version = "20160419.2325";
+ version = "20160419.1625";
src = fetchFromGitHub {
owner = "racer-rust";
repo = "emacs-racer";
@@ -49932,7 +50689,7 @@
sha256 = "1d128mamvwpjnk2dazhcxvfjw3lf0ix56l85gwsb377v05pn3wzf";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/racer";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/97b97037c19655a3ddffee9a86359961f26c155c/recipes/racer";
sha256 = "1091y5pisbf73i6zg5d7yny2d5yckkjg0z6fpjpmz5qjs3xcm9wi";
name = "racer";
};
@@ -49945,15 +50702,15 @@
racket-mode = callPackage ({ emacs, faceup, fetchFromGitHub, fetchurl, lib, melpaBuild, s }:
melpaBuild {
pname = "racket-mode";
- version = "20160603.2248";
+ version = "20160610.2134";
src = fetchFromGitHub {
owner = "greghendershott";
repo = "racket-mode";
- rev = "392f30640a922147f97a481d9a9df2f69221913b";
- sha256 = "1l04p8rql7z5x26ndagvfc1zayz9hyaa06n80x3x6d8gh2kikk8x";
+ rev = "0d646a54ccfb50620d47708a175ec8d7d08e27c9";
+ sha256 = "1psgc3x82ac6dxjqr3wb1nzkhrb2hfr69h7q29xmik3libixrrjk";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/racket-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/7ad88d92cf02e718c9318d197dd458a2ecfc0f46/recipes/racket-mode";
sha256 = "04sr55zrgwyi48sj4ssm4rmm327yxs7hvjhxclnkhaaigrmrv7jb";
name = "racket-mode";
};
@@ -49966,7 +50723,7 @@
railgun = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "railgun";
- version = "20121017.757";
+ version = "20121017.57";
src = fetchFromGitHub {
owner = "mbriggs";
repo = "railgun.el";
@@ -49974,7 +50731,7 @@
sha256 = "00x09vjd3jz5f73qkf5v1y402zn8vl8dsyfwlq9z646p18ba7gyh";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/railgun";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/f8ba60673f2cb04176ed734c6457a20211609118/recipes/railgun";
sha256 = "1a3fplfipk1nv3py1sy0p2adf3w1h4api01h2j5rjlq2jw06kyr0";
name = "railgun";
};
@@ -49987,7 +50744,7 @@
rails-log-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "rails-log-mode";
- version = "20140408.625";
+ version = "20140407.2325";
src = fetchFromGitHub {
owner = "ananthakumaran";
repo = "rails-log-mode";
@@ -49995,7 +50752,7 @@
sha256 = "1fh8wsb0pa2isr1kgh3v9zmmxq1nlmqwqk4z34dw5wpaiyihmk84";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/rails-log-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/7ebbf4364759c8e38d550e66fd0ce193f4214e15/recipes/rails-log-mode";
sha256 = "0h7gfg0c5pwfh18qzg1mx7an9p958ygdfqb54s85mbkv8x3rh1a0";
name = "rails-log-mode";
};
@@ -50008,7 +50765,7 @@
rails-new = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "rails-new";
- version = "20141221.949";
+ version = "20141221.249";
src = fetchFromGitHub {
owner = "cheunghy";
repo = "rails-new";
@@ -50016,7 +50773,7 @@
sha256 = "0cqp2vns7gq377bm6q9n5q0ra1d5yy2x2aiw9q1hswk82xpibj9l";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/rails-new";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/c9f86ccce9ea4ef3cb7e162d4572609d3a8216cc/recipes/rails-new";
sha256 = "0wgbm6qxqkpsbzj9wccicsphajaii07dl27b8x2vidsyw6ambj5h";
name = "rails-new";
};
@@ -50029,7 +50786,7 @@
railscasts-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "railscasts-theme";
- version = "20150219.1625";
+ version = "20150219.925";
src = fetchFromGitHub {
owner = "mikenichols";
repo = "railscasts-theme";
@@ -50037,7 +50794,7 @@
sha256 = "021x1l5kzsbm0qj5a3bngxa7ickm4lbwsdz81a2ks9pi1ivmw205";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/railscasts-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/a0366a9844f6c28dfc3d5ba26201865921981574/recipes/railscasts-theme";
sha256 = "1z5m8ccx2k18gbzqvg0051mp2myy2qncf4xvv47k80f83pk2hw6r";
name = "railscasts-theme";
};
@@ -50050,7 +50807,7 @@
rainbow-blocks = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "rainbow-blocks";
- version = "20140306.1933";
+ version = "20140306.1233";
src = fetchFromGitHub {
owner = "istib";
repo = "rainbow-blocks";
@@ -50058,7 +50815,7 @@
sha256 = "02x5ciyafqwak06yk813kl8p92hq03wjsk1882q8axr9q231100c";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/rainbow-blocks";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/de07b317e46475776d6d237908a0495866a7a851/recipes/rainbow-blocks";
sha256 = "08p41wvrw1j3h7j7lyl8nxk1gcc2id9ikljmiklg0kc6s8ijhng8";
name = "rainbow-blocks";
};
@@ -50071,7 +50828,7 @@
rainbow-delimiters = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "rainbow-delimiters";
- version = "20160501.858";
+ version = "20160501.158";
src = fetchFromGitHub {
owner = "Fanael";
repo = "rainbow-delimiters";
@@ -50079,7 +50836,7 @@
sha256 = "0vs9pf8lqq5p5qz1770pxgw47ym4xj8axxmwamn66br59mykdhv0";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/rainbow-delimiters";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/d2cf11dbff76f0e3581b865f48bb44a307aa7f23/recipes/rainbow-delimiters";
sha256 = "132nslbnszvbgkl0819z811yar3lms1hp5na4ybi9gkmnb7bg4rg";
name = "rainbow-delimiters";
};
@@ -50092,7 +50849,7 @@
rainbow-identifiers = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "rainbow-identifiers";
- version = "20141102.1626";
+ version = "20141102.926";
src = fetchFromGitHub {
owner = "Fanael";
repo = "rainbow-identifiers";
@@ -50100,7 +50857,7 @@
sha256 = "05i0jpmxzsj2lsj48cafn3v93z37l7k5kaza2ik3yirdpjdibyrh";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/rainbow-identifiers";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/975aadd9fe1faf9ad617ba6200ca77185b87e7c0/recipes/rainbow-identifiers";
sha256 = "0lw790ymrgpyh0sxwmzinl2ik5vl5vggbg14cd0cx5yagkw5y3mp";
name = "rainbow-identifiers";
};
@@ -50113,7 +50870,7 @@
rake = callPackage ({ cl-lib ? null, dash, f, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "rake";
- version = "20150831.1058";
+ version = "20150831.358";
src = fetchFromGitHub {
owner = "asok";
repo = "rake";
@@ -50121,7 +50878,7 @@
sha256 = "1wcs8j8rdls0n3v8zdpk2n5riwzz2yvjf6b70a5bj7p20gyafhj2";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/rake";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/bf0f84698dda02a5b84a244ee29a23a6faa9de68/recipes/rake";
sha256 = "0cw47g6cjnkh3z4hbwwq1f8f5vrvs84spn06k53bx898brqdh8ns";
name = "rake";
};
@@ -50134,7 +50891,7 @@
rally-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, popwin }:
melpaBuild {
pname = "rally-mode";
- version = "20160326.1702";
+ version = "20160326.1102";
src = fetchFromGitHub {
owner = "seanleblanc";
repo = "rally-mode";
@@ -50142,7 +50899,7 @@
sha256 = "13pkp80cv1v3pjff1588cgyx18a31i668lwywll5dk4fxl4zdjvb";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/rally-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/0914825c6d5ad26d2a8035fc33ad98df42df3c53/recipes/rally-mode";
sha256 = "1vzsh5855bzln3p3235yccl2azpndpc4rh95zrx6p1k62h2kv0y1";
name = "rally-mode";
};
@@ -50155,7 +50912,7 @@
rand-theme = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "rand-theme";
- version = "20151220.35";
+ version = "20151219.1735";
src = fetchFromGitHub {
owner = "gopar";
repo = "rand-theme";
@@ -50163,7 +50920,7 @@
sha256 = "0fmajgqf9j21qn7h35sky5di8cnma432g0ki9d5m41byxp9y1bdl";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/rand-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/246b7fbef1fecc261f4417d7519f26662be3b30f/recipes/rand-theme";
sha256 = "0h0n1lsxnl12mjrjpra62vblrg8kbp1hk7w1v6makj074d037j2h";
name = "rand-theme";
};
@@ -50176,7 +50933,7 @@
random-splash-image = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "random-splash-image";
- version = "20151003.330";
+ version = "20151002.2030";
src = fetchFromGitHub {
owner = "kakakaya";
repo = "random-splash-image";
@@ -50184,7 +50941,7 @@
sha256 = "1z25xmz8pl3rsfahw6ay8wx5wbnlxabnzr2dq20m0i5jyci8lqll";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/random-splash-image";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/2bfbfe83143299b86f867c4d7faf6a0d7a070e1e/recipes/random-splash-image";
sha256 = "1j454jy4ia2wrgi3fxzjfdqi3z8x13hq8kh62lnb84whs7a1nhik";
name = "random-splash-image";
};
@@ -50197,15 +50954,15 @@
ranger = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "ranger";
- version = "20160531.939";
+ version = "20160622.330";
src = fetchFromGitHub {
owner = "ralesi";
repo = "ranger.el";
- rev = "5273155e2596b0e7e9021012abf97e2431de6105";
- sha256 = "1k7kw97wavf9wk8qvsz1h65b7fa9h7k90l0ys9am1n3hn9g86n4s";
+ rev = "d8f18bfd25a233550a0fc9405f80d01c5ddc673d";
+ sha256 = "0lhjz4c19s7si81yvgqif817xkxbm7f1p8rrlx1l973hbbqjyrc2";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ranger";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/0207e754f424823fb48e9c065c3ed9112a0c445b/recipes/ranger";
sha256 = "14g4r4iaz0nzfsklslrswsik670pvfd0605xfjghvpngn2a8ych4";
name = "ranger";
};
@@ -50218,7 +50975,7 @@
rase = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "rase";
- version = "20120928.2245";
+ version = "20120928.1545";
src = fetchFromGitHub {
owner = "m00natic";
repo = "rase";
@@ -50226,7 +50983,7 @@
sha256 = "1i16361klpdsxphcjdpxqswab3ing69j1wb9nygws7ghil85h0bx";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/rase";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/334419debe065c34665bb0207574d1d4dfb9e8ae/recipes/rase";
sha256 = "1g7v2z7l4csl5by64hc3zg4kgrkvv81iq30mfqq4nvy1jc0xa6j0";
name = "rase";
};
@@ -50239,7 +50996,7 @@
rats = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, go-mode, lib, melpaBuild, s }:
melpaBuild {
pname = "rats";
- version = "20160315.1945";
+ version = "20160315.1345";
src = fetchFromGitHub {
owner = "ane";
repo = "rats.el";
@@ -50247,7 +51004,7 @@
sha256 = "0dd9yhxwwk16xkwld9c3hpf9bw8zzc1lyvisp0vn6vcd240j02w0";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/rats";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/a62cbae1b2d9af2322bb6a27949de8c8bfddc2b7/recipes/rats";
sha256 = "0jhwiq9yzwpyqhk3c32vqx8nryingzh58psxbzjl3812b7xdqphr";
name = "rats";
};
@@ -50260,7 +51017,7 @@
rbenv = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "rbenv";
- version = "20141120.849";
+ version = "20141120.149";
src = fetchFromGitHub {
owner = "senny";
repo = "rbenv.el";
@@ -50268,7 +51025,7 @@
sha256 = "0yd0rs6fnc6lsfi7pivw5sivh698055r8ifj9vrxb82dcx2y6v2h";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/rbenv";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/56d330fdd9e3b2cf3afc808190efebcc4cb1456d/recipes/rbenv";
sha256 = "09nw7sz6rdgs7hdw517qwgzgyrdmxb16sgldfkifk41rhiyqhr65";
name = "rbenv";
};
@@ -50281,7 +51038,7 @@
rbt = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "rbt";
- version = "20160129.1951";
+ version = "20160129.1251";
src = fetchFromGitHub {
owner = "joeheyming";
repo = "rbt.el";
@@ -50289,7 +51046,7 @@
sha256 = "0q5giixk6pv82cf34a0mxmnzh2gdiyq6dzv4ypkkdpz6wsm2ffhx";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/rbt";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/ca7241985be1e8a26a454b8136a537040b7ae801/recipes/rbt";
sha256 = "1mrb6v8zybvhh242vvq0kdvg6cvws7gabfhcydrw5g2njhyqkygm";
name = "rbt";
};
@@ -50302,7 +51059,7 @@
rcirc-alert = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "rcirc-alert";
- version = "20141127.1147";
+ version = "20141127.447";
src = fetchFromGitHub {
owner = "csantosb";
repo = "rcirc-alert";
@@ -50310,7 +51067,7 @@
sha256 = "0xdyrp0zs2v2glpfwlajmj97wygwi0y492zbp6rp3caa5bj3j4z2";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/rcirc-alert";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/735aa2256660efffdaf6ecbd61a3e2818a48327f/recipes/rcirc-alert";
sha256 = "0lyd3gz1sflp93xb7xbvk1gh69w468ync1p144avyh2pybl40q4a";
name = "rcirc-alert";
};
@@ -50323,7 +51080,7 @@
rcirc-alertify = callPackage ({ alert, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "rcirc-alertify";
- version = "20140407.319";
+ version = "20140406.2019";
src = fetchFromGitHub {
owner = "fgallina";
repo = "rcirc-alertify";
@@ -50331,7 +51088,7 @@
sha256 = "1mpk5rzsil298q3ppv5v9jrn274v71jffyz0jihrksh1wbjzwhlx";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/rcirc-alertify";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/d1559b0e19e571c83c25ac7104e269ebc42d8f14/recipes/rcirc-alertify";
sha256 = "13448bykmy0jqcajhn2gjiar3m8cingyr8394vxybp2m1zvv0pws";
name = "rcirc-alertify";
};
@@ -50344,7 +51101,7 @@
rcirc-color = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "rcirc-color";
- version = "20151130.1658";
+ version = "20151130.958";
src = fetchFromGitHub {
owner = "kensanata";
repo = "rcirc-color";
@@ -50352,7 +51109,7 @@
sha256 = "173lhi48dwfp9k7jmgivhcc9f38snz5xlciyjhrafpadq1pir497";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/rcirc-color";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/146b31de03f1f588fda3f7e27a538f87e71077f1/recipes/rcirc-color";
sha256 = "1a8qqwdc0gw6m1xsnwrj3xldp05p7pabyj6l4bccpg3vf5wbgkn5";
name = "rcirc-color";
};
@@ -50365,7 +51122,7 @@
rcirc-groups = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "rcirc-groups";
- version = "20160115.1331";
+ version = "20160115.631";
src = fetchFromGitHub {
owner = "dimitri";
repo = "rcirc-groups";
@@ -50373,7 +51130,7 @@
sha256 = "0d99x7dfw5xrn62knvs65lvn6xyy7399xwqyy47bs4n81v25aqbh";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/rcirc-groups";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/35b9c9e877c686df0ac9f96855d733a240063829/recipes/rcirc-groups";
sha256 = "1iws3f8vkwrflcj6ni8nmf1wcw1jrlnssm76kzzhag77ry3iswgx";
name = "rcirc-groups";
};
@@ -50386,7 +51143,7 @@
rcirc-notify = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "rcirc-notify";
- version = "20150219.2304";
+ version = "20150219.1604";
src = fetchFromGitHub {
owner = "nicferrier";
repo = "rcirc-notify";
@@ -50394,7 +51151,7 @@
sha256 = "1k4knsrca626pikgaalqbqwy7im4wz1vrmzzhdrdb4lhdz6sq3q3";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/rcirc-notify";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/009e2db47c9fe730fff1dc807e52c86b3ab26446/recipes/rcirc-notify";
sha256 = "0mwhzkbzhpq4jws05p7qp0kbay8kcblb9xikznm0i8drpdyc617v";
name = "rcirc-notify";
};
@@ -50407,7 +51164,7 @@
rcirc-styles = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "rcirc-styles";
- version = "20160207.350";
+ version = "20160206.2050";
src = fetchFromGitHub {
owner = "aaron-em";
repo = "rcirc-styles.el";
@@ -50415,7 +51172,7 @@
sha256 = "1kwn33rxaqik5jls66c2indvswhwmxdmd60n7a1h9siqm5qhy9d6";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/rcirc-styles";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/10771a996c8a9dc1eb211cddff53db7b2b01e00b/recipes/rcirc-styles";
sha256 = "01dxhnzsnljig769dk9axdi970b3lw2s6p1z3ljf29qlb5j4548r";
name = "rcirc-styles";
};
@@ -50428,7 +51185,7 @@
rdf-prefix = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "rdf-prefix";
- version = "20160517.2023";
+ version = "20160517.1323";
src = fetchFromGitHub {
owner = "simenheg";
repo = "rdf-prefix";
@@ -50436,7 +51193,7 @@
sha256 = "1ss0y7lwd9bi8nzmhvpfn24vl4xsjk2xclhvfz602c9k18k18qza";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/rdf-prefix";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/a5f083bd629697038ea6391c7a4eeedc909a5231/recipes/rdf-prefix";
sha256 = "1vxgn5f2kws17ndfdv1vj5p9ks3rp6sikzpc258j07bhsfpjz5qm";
name = "rdf-prefix";
};
@@ -50449,7 +51206,7 @@
rdp = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "rdp";
- version = "20120929.354";
+ version = "20120928.2054";
src = fetchFromGitHub {
owner = "skeeto";
repo = "rdp";
@@ -50457,7 +51214,7 @@
sha256 = "08l96bhghmnckar4i6afj9csqglasmpmby1r7j38ic9bp37z2yqd";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/rdp";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/e2dd8ef80d344c9801f7d0a26b0e3ea33a53bf89/recipes/rdp";
sha256 = "0lj3idwv4fxz8pi8mnxkbhwhzaa1gs6ib4nzly3fc6yiix9ampkz";
name = "rdp";
};
@@ -50470,7 +51227,7 @@
react-snippets = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, yasnippet }:
melpaBuild {
pname = "react-snippets";
- version = "20151105.40";
+ version = "20151104.1740";
src = fetchFromGitHub {
owner = "johnmastro";
repo = "react-snippets.el";
@@ -50478,7 +51235,7 @@
sha256 = "00j0iqa37yzd7xrgd8xcgpgmjcarhn0yx4zpbnr7z7kzmg24ywa7";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/react-snippets";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/3720192fdfa45f9b83259ab39356f469c5ac85b4/recipes/react-snippets";
sha256 = "0chs0h41nb2fdz02hdsaynz7ma8fg66a8m1q1np0464skrsdaj73";
name = "react-snippets";
};
@@ -50491,7 +51248,7 @@
readability = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, oauth, ov }:
melpaBuild {
pname = "readability";
- version = "20140716.227";
+ version = "20140715.1927";
src = fetchFromGitHub {
owner = "ShingoFukuyama";
repo = "emacs-readability";
@@ -50499,7 +51256,7 @@
sha256 = "0kg18ybgwcxhv5fiya5d3wn5w9si4914q946gjannk67d6jcq08g";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/readability";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/eed9bcb1aa238746c9a9f6ecba9dd61b83d8b612/recipes/readability";
sha256 = "0kg91ma9k3p5ps467jjz2lw13rv1l8ivwc3zpg6c1rl474ds0qqv";
name = "readability";
};
@@ -50512,7 +51269,7 @@
readline-complete = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "readline-complete";
- version = "20150708.1637";
+ version = "20150708.937";
src = fetchFromGitHub {
owner = "monsanto";
repo = "readline-complete.el";
@@ -50520,7 +51277,7 @@
sha256 = "1j5b5xapflwzh8a297gva0l12ralwa9vl5z3bb75c9ksjkhi4nm6";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/readline-complete";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/0cf3b56dae7669b34df9d2abe2d78164cbf064c9/recipes/readline-complete";
sha256 = "1qymk5ypv6ljk8x49z4jcifz7c2dqcg5181f4hqh67g1byvj2277";
name = "readline-complete";
};
@@ -50533,7 +51290,7 @@
real-auto-save = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "real-auto-save";
- version = "20150701.1715";
+ version = "20150701.1015";
src = fetchFromGitHub {
owner = "chillaranand";
repo = "real-auto-save";
@@ -50541,7 +51298,7 @@
sha256 = "1kghhps8mqys5l59qwzv3fgy1fvb15cnyaxmk29v818a6khjc5l2";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/real-auto-save";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/525039a3dc29190829bf50d608ef09bc4a8557af/recipes/real-auto-save";
sha256 = "03dbbizpyg62v6zbq8hd16ikrifz8m2bdlbb3g67f2834xqmxha8";
name = "real-auto-save";
};
@@ -50554,15 +51311,15 @@
realgud = callPackage ({ fetchFromGitHub, fetchurl, lib, list-utils, load-relative, loc-changes, melpaBuild, test-simple }:
melpaBuild {
pname = "realgud";
- version = "20160604.643";
+ version = "20160628.854";
src = fetchFromGitHub {
owner = "rocky";
repo = "emacs-dbgr";
- rev = "ef21fa276799f7fbcd2a3d473646a24b0ecf08b4";
- sha256 = "0gpv0abbn8ymqa6xr79h3q1m3c6hjfd08vixx6yx2mhs62w425b6";
+ rev = "e4c05b2f0e4b2420b67974f9b747b16a49ce8570";
+ sha256 = "0x0vjcvbi96z9hlnqd08vvlg3zb1l4vzcxb83s9wj59qy5fl4az3";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/realgud";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/7ca56f05df6c8430a5cbdc55caac58ba79ed6ce5/recipes/realgud";
sha256 = "0qmvd35ng1aqclwj3pskn58c0fi98kvx9666wp3smgj3n88vgy15";
name = "realgud";
};
@@ -50575,15 +51332,15 @@
realgud-byebug = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, realgud }:
melpaBuild {
pname = "realgud-byebug";
- version = "20160303.1340";
+ version = "20160703.1134";
src = fetchFromGitHub {
owner = "rocky";
repo = "realgud-byebug";
- rev = "1eb87d101b2145cadb2ed1d781aa38fdd2ff5b02";
- sha256 = "01wa8jwwlx5qmn5w83r3ak74hjp89zyhsx13c4ijqfns7d92xjd0";
+ rev = "14f2907323c317bd75036c3ae8879e193715aa1f";
+ sha256 = "175nfpbbim77kagfqg2n11kxnkv7311zrbapmx56ny9p4hqwc1ix";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/realgud-byebug";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/7ca56f05df6c8430a5cbdc55caac58ba79ed6ce5/recipes/realgud-byebug";
sha256 = "1m4pqnvnnfzq7b9bv5fkz70pifklddwqrwbwnrfyiawx9vdgrpz9";
name = "realgud-byebug";
};
@@ -50596,7 +51353,7 @@
realgud-old-debuggers = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, realgud }:
melpaBuild {
pname = "realgud-old-debuggers";
- version = "20160303.954";
+ version = "20160303.254";
src = fetchFromGitHub {
owner = "rocky";
repo = "realgud-old-debuggers";
@@ -50604,7 +51361,7 @@
sha256 = "0jxi5a6mlgwjj14gfajs951180m8r8m4vqx09xz1yyc9qq8ywfk9";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/realgud-old-debuggers";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/260b4d5a85c380dda0f7bb0370e3ffa8cc3c0275/recipes/realgud-old-debuggers";
sha256 = "0iwi1byfwcpviaizdw9wzdcjlbk35ql4wfzj0ynh331g0hmibhs9";
name = "realgud-old-debuggers";
};
@@ -50617,15 +51374,15 @@
realgud-pry = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, realgud }:
melpaBuild {
pname = "realgud-pry";
- version = "20160303.954";
+ version = "20160625.1934";
src = fetchFromGitHub {
owner = "rocky";
repo = "realgud-pry";
- rev = "60c24ab619fba3adc4aac6ba6cf73fdb4e11e696";
- sha256 = "1dgxlmdzp1m6xr94nkvh6whvg23yq2d3v6k95vacx0khfbc16w17";
+ rev = "a5a0fa2e24907b931fba2beee09c4bf094548529";
+ sha256 = "0y796q5fs0q6grfdbsz0li5zb0qq179ffpn084z1bnzb2p5r1wbb";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/realgud-pry";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/7ca56f05df6c8430a5cbdc55caac58ba79ed6ce5/recipes/realgud-pry";
sha256 = "1p5ijig5rczndcykllq0vy6w4askwl0yd8b5fqg7yl5yx45r8xgs";
name = "realgud-pry";
};
@@ -50638,7 +51395,7 @@
realgud-rdb2 = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, realgud }:
melpaBuild {
pname = "realgud-rdb2";
- version = "20160303.943";
+ version = "20160303.243";
src = fetchFromGitHub {
owner = "rocky";
repo = "realgud-ruby-debugger2";
@@ -50646,7 +51403,7 @@
sha256 = "1ip22z48vj6a6xh54s26ss10pxhqrdm5k9h28i1vgv5x75kqgxii";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/realgud-rdb2";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/7ca56f05df6c8430a5cbdc55caac58ba79ed6ce5/recipes/realgud-rdb2";
sha256 = "0wqvgb3h2b0ys76sq2z462cjv0fajqc41f7wqvf53wfcs2zw4l9y";
name = "realgud-rdb2";
};
@@ -50659,7 +51416,7 @@
rebox2 = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "rebox2";
- version = "20121113.1400";
+ version = "20121113.700";
src = fetchFromGitHub {
owner = "lewang";
repo = "rebox2";
@@ -50667,7 +51424,7 @@
sha256 = "1xh9nxqfg9abcl41ni69rnwjfgyfr0pbl55dzyxsbh6sb36r3h8z";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/rebox2";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/fc9132290886694bd551681e32af26e9f4ebae57/recipes/rebox2";
sha256 = "06ra50afjqac9ck1s9gaxy0sqxcb612wzd28s4q4imicqpgfxzjw";
name = "rebox2";
};
@@ -50679,13 +51436,13 @@
}) {};
recentf-ext = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild {
pname = "recentf-ext";
- version = "20130130.2250";
+ version = "20130130.1550";
src = fetchurl {
url = "https://www.emacswiki.org/emacs/download/recentf-ext.el";
sha256 = "15kwkphrlxq6nbmqm95sxv4rykl1d35sjm59ncy07ncqm706h33l";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/recentf-ext";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/5a36ac5e0fc3599d50d7926cacf16b7a315f0e76/recipes/recentf-ext";
sha256 = "1m54w1n3ci5j7i1jhw6cs7dgzmxrj1hsrrarqlrd1d4iqhixjzbq";
name = "recentf-ext";
};
@@ -50698,7 +51455,7 @@
recompile-on-save = callPackage ({ cl-lib ? null, dash, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "recompile-on-save";
- version = "20151126.1546";
+ version = "20151126.846";
src = fetchFromGitHub {
owner = "maio";
repo = "recompile-on-save.el";
@@ -50706,7 +51463,7 @@
sha256 = "0wk28blnfks987iby0p3qpd4nxnz6sqn4fx8g59gyddjhav51lri";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/recompile-on-save";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/77805a854da76b105bd7589fd0960b1ef8868b8b/recipes/recompile-on-save";
sha256 = "0bg2p7pk4jlpqc7lg48mxd6zkwnx15r0r7lmsxgx9dv1ilfwrmgn";
name = "recompile-on-save";
};
@@ -50719,7 +51476,7 @@
recover-buffers = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "recover-buffers";
- version = "20150812.905";
+ version = "20150812.205";
src = fetchFromGitHub {
owner = "tripleee";
repo = "recover-buffers";
@@ -50727,7 +51484,7 @@
sha256 = "114ssmby614xjs7mrpbbsdd4gj5ra6klfh8h6z8iij8xn3kii83q";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/recover-buffers";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/43b33cfb794c35de78fde6eabb71ffe01049d23d/recipes/recover-buffers";
sha256 = "0g40d7440hzlc9b45v63ng0anvmgip4dhbd9wcm2sn8qjfr4w11b";
name = "recover-buffers";
};
@@ -50740,7 +51497,7 @@
rect-plus = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "rect-plus";
- version = "20150621.244";
+ version = "20150620.1944";
src = fetchFromGitHub {
owner = "mhayashi1120";
repo = "Emacs-rectplus";
@@ -50748,7 +51505,7 @@
sha256 = "1vpsihrl03hkd6n6b7mrjccm0a023qf3154a8rw4chihikxw27pj";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/rect+";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/c8c1cd81f0e764a7cfc2f3f96574898ff414beb4/recipes/rect+";
sha256 = "0vk0jwpl6yp2md9nh0ghp2qn883a8lr3cq8c9mgq0g552dwdiv5m";
name = "rect-plus";
};
@@ -50761,7 +51518,7 @@
rectangle-utils = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "rectangle-utils";
- version = "20160427.1924";
+ version = "20160427.1224";
src = fetchFromGitHub {
owner = "thierryvolpiatto";
repo = "rectangle-utils";
@@ -50769,7 +51526,7 @@
sha256 = "0i336qakdkvxgyhjfq6b957xqlll156i1a8g1f5xap46v35d6gh3";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/rectangle-utils";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/1852b75c82822e97c39b7c7caeb2a32246171be4/recipes/rectangle-utils";
sha256 = "1w5z2gykydsfp30ahqjihpvq04c5v0cfslbrrg429hycys8apws7";
name = "rectangle-utils";
};
@@ -50782,7 +51539,7 @@
recursive-narrow = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "recursive-narrow";
- version = "20140902.1927";
+ version = "20140902.1227";
src = fetchFromGitHub {
owner = "nflath";
repo = "recursive-narrow";
@@ -50790,7 +51547,7 @@
sha256 = "1mj7lyadzn3bwig3f9zariq5z4fg6liqnjvfd34yx88xc52nwf33";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/recursive-narrow";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/8704384ec36a782ba1d08bce33cd47d0a46ee704/recipes/recursive-narrow";
sha256 = "1bx8l8wjxrkv949c73dp93knbn1iwnblcm8iw822mq2mgbgwsa7f";
name = "recursive-narrow";
};
@@ -50803,7 +51560,7 @@
redis = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "redis";
- version = "20150531.2148";
+ version = "20150531.1448";
src = fetchFromGitHub {
owner = "emacs-pe";
repo = "redis.el";
@@ -50811,7 +51568,7 @@
sha256 = "1rjpf23a8rggjmmxvm1997d3xz03kz84xams486b9ky0n2v02d57";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/redis";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/10fbb970956ee19d812c17900f3c01c5fee0c3f2/recipes/redis";
sha256 = "1awnilb8bk0izp6yw0187ybh9slf1hc51014xvvmj90darxby79a";
name = "redis";
};
@@ -50823,13 +51580,13 @@
}) {};
redo-plus = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild {
pname = "redo-plus";
- version = "20131117.1251";
+ version = "20131117.551";
src = fetchurl {
url = "https://www.emacswiki.org/emacs/download/redo+.el";
sha256 = "1jc4n60spzssa57i3jwrqwy20f741hb271vmmx49riycx1ybx3d3";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/redo+";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/b23e5c692b307ffe1c44216c5865243973ad7ad8/recipes/redo+";
sha256 = "1alfs7k5mydgvzsjmdifcizqgrqjrk2kbh3mabai7nlrwi47w9n2";
name = "redo-plus";
};
@@ -50842,15 +51599,15 @@
redpen-paragraph = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, json ? null, lib, melpaBuild }:
melpaBuild {
pname = "redpen-paragraph";
- version = "20160512.1522";
+ version = "20160625.550";
src = fetchFromGitHub {
owner = "karronoli";
repo = "redpen-paragraph.el";
- rev = "cbfef789d474258df85ff58b24e2ab54acd11cc4";
- sha256 = "1j9zvkfxccwzr8adxikw450xv0kc2a4j8rskbfqlmsylrpniszqm";
+ rev = "770ffb34b04bfa0ea8484fa1506e96c530168e13";
+ sha256 = "0cqln3d8yp9fdam984bwnngjl0hjnwi7yhcggdkjwribhr79cxhl";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/redpen-paragraph";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/7e6b187bfc14f3affbe2d8d1cb854abe69deb15b/recipes/redpen-paragraph";
sha256 = "0jr707ik6fhznq0q421l986w85ah0n9b4is91zrgbk1v6miqrhca";
name = "redpen-paragraph";
};
@@ -50863,14 +51620,14 @@
redshank = callPackage ({ fetchgit, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "redshank";
- version = "20120510.2130";
+ version = "20120510.1430";
src = fetchgit {
url = "http://www.foldr.org/~michaelw/projects/redshank.git";
rev = "f98e68f532e622bcd464292ca4a9cf5fbea14ebb";
- sha256 = "14p39gl4bvicqxf6rjzsyixv8ac6ib2vk680zbi7l55a1kdwaism";
+ sha256 = "1jdkgvd5xy9hl5q611jwah2n05abjp7qcy9sj4k1z11x0ii62b6p";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/redshank";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/f2cf21b79d47a4bc154ac15f8111794ca9eeac16/recipes/redshank";
sha256 = "07s4gja1w8piabkajbzrgq77mkdkxr0jy9bmy2qb9w2svfsyns9b";
name = "redshank";
};
@@ -50883,7 +51640,7 @@
redtick = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "redtick";
- version = "20160516.2316";
+ version = "20160516.1616";
src = fetchFromGitHub {
owner = "ferfebles";
repo = "redtick";
@@ -50891,7 +51648,7 @@
sha256 = "1c9ngm95b8rqg11m5w69031d8lgyvh9xpnr4h5r6yyg7836hdk2v";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/redtick";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/3187bd436541e2a5c2b28de67c62f5d5165af737/recipes/redtick";
sha256 = "1a9rviz0hg6vlh2jc04g6vslyf9n89xglcz9cb79vf10hhr6igrb";
name = "redtick";
};
@@ -50904,7 +51661,7 @@
refheap = callPackage ({ fetchFromGitHub, fetchurl, json ? null, lib, melpaBuild }:
melpaBuild {
pname = "refheap";
- version = "20140902.2302";
+ version = "20140902.1602";
src = fetchFromGitHub {
owner = "Raynes";
repo = "refheap.el";
@@ -50912,7 +51669,7 @@
sha256 = "08kzi2jcfqnlanqzvbk5gq1if7k8qc9gmz5bmvd2mvmx6z436398";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/refheap";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/24fcd00ee6509df7cda7d873c9ea82beefdc6944/recipes/refheap";
sha256 = "0pzark1db9k2pavd5sn89a28gd9j5jlkx3wkhwfzln3y5c1wnvdk";
name = "refheap";
};
@@ -50925,7 +51682,7 @@
regex-dsl = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "regex-dsl";
- version = "20100124.1128";
+ version = "20100124.428";
src = fetchFromGitHub {
owner = "alk";
repo = "elisp-regex-dsl";
@@ -50933,7 +51690,7 @@
sha256 = "1d34jd7is979vfgdy56zkd1m15ng3waiabfpak6dv6ak3cdh5fgx";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/regex-dsl";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/dfdf111ecf33236f7b922a2b8e5d0f86e669cd8f/recipes/regex-dsl";
sha256 = "129sapsmvcqqqgcr9xlmxwszsxvsb4nj9g2fxsl4y6r383840jbr";
name = "regex-dsl";
};
@@ -50946,7 +51703,7 @@
regex-tool = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "regex-tool";
- version = "20131104.2334";
+ version = "20131104.1634";
src = fetchFromGitHub {
owner = "jwiegley";
repo = "regex-tool";
@@ -50954,7 +51711,7 @@
sha256 = "1wr12j16hckvc8bxxgxw280frl12h23cp44sxg28lczl16d9693l";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/regex-tool";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/a9585fc1f0576e82a6a199828fa9773a0694da63/recipes/regex-tool";
sha256 = "1nd23vjij5h5gk5l7hbd5ks9ljisn054wp138jx2v6i51izxvh2v";
name = "regex-tool";
};
@@ -50967,7 +51724,7 @@
region-bindings-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "region-bindings-mode";
- version = "20140408.14";
+ version = "20140407.1714";
src = fetchFromGitHub {
owner = "fgallina";
repo = "region-bindings-mode";
@@ -50975,7 +51732,7 @@
sha256 = "02kfi3c6ydnr7xw611ck66kfjyl5w86dr9vfjv3wjl6ad9jya4zy";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/region-bindings-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/faba50ed3e8c22991bcb8968880f79fad1748705/recipes/region-bindings-mode";
sha256 = "141q4x6rilidpnsm9s78qks9i1v6ng0ydhbzqi39xcaccfyyjb69";
name = "region-bindings-mode";
};
@@ -50988,7 +51745,7 @@
region-state = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "region-state";
- version = "20151128.1138";
+ version = "20151128.438";
src = fetchFromGitHub {
owner = "xuchunyang";
repo = "region-state.el";
@@ -50996,7 +51753,7 @@
sha256 = "0gsh0x1rqxvzrszdyna9d8b8w22mqnd9yqcwzay2prc6rpl26g1f";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/region-state";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/716e82eb4ca0845f59a743556b37be8a1ecb29af/recipes/region-state";
sha256 = "1iq2x1w8lqjjiwjja7r3qki6drvydnk171k9fj9g6rk7wslknz8x";
name = "region-state";
};
@@ -51009,7 +51766,7 @@
register-channel = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "register-channel";
- version = "20150514.559";
+ version = "20150513.2259";
src = fetchFromGitHub {
owner = "YangZhao11";
repo = "register-channel";
@@ -51017,7 +51774,7 @@
sha256 = "01k3v4yiilz1k6drv7b2x6zbjx6dlz7cch8rq63mwc7v8kvdnqmi";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/register-channel";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/ad44618ac36e96d04f5c44c77637ea6229e61b4c/recipes/register-channel";
sha256 = "037i2fgxxsfb85vd6xk17wyh7ny6fqfixvb0a18lf8m1hib1gyhr";
name = "register-channel";
};
@@ -51030,14 +51787,14 @@
related = callPackage ({ cl-lib ? null, fetchgit, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "related";
- version = "20160602.754";
+ version = "20160602.54";
src = fetchgit {
url = "https://bitbucket.org/lyude/related";
rev = "dbdcbc1f3c8b02debeaec4073ea71e598e3373d9";
sha256 = "0dl7lnf5318b0a842qgs5mg2s1c0i4vsl9ji6801z6w53mc46cgv";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/related";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/a39b2fd835f6911e3dd2b42987f65d5bbea36091/recipes/related";
sha256 = "098rd8rvlx9shbh05zdw7lnrawfkbk4cfan1i963h994538sda1w";
name = "related";
};
@@ -51050,7 +51807,7 @@
relative-buffers = callPackage ({ cl-lib ? null, dash, f, fetchFromGitHub, fetchurl, lib, melpaBuild, s }:
melpaBuild {
pname = "relative-buffers";
- version = "20160221.2023";
+ version = "20160221.1323";
src = fetchFromGitHub {
owner = "proofit404";
repo = "relative-buffers";
@@ -51058,7 +51815,7 @@
sha256 = "0100maanb1v0hl4pj8ykzlqpr3cvs6ldak5japndm5yngzp6m8ks";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/relative-buffers";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/ab22cea99fbee937bbd6e8fbc8bd27967aeaa8a5/recipes/relative-buffers";
sha256 = "131182yb0pr0d6jibqd8aag4w8hywdyi87ldp77b95gw4bqhr96i";
name = "relative-buffers";
};
@@ -51071,7 +51828,7 @@
relative-line-numbers = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "relative-line-numbers";
- version = "20151006.2346";
+ version = "20151006.1646";
src = fetchFromGitHub {
owner = "Fanael";
repo = "relative-line-numbers";
@@ -51079,7 +51836,7 @@
sha256 = "1r8fhs7d2vkrbv15ic2bm79i9a8swbc38vk566vnxkhl3rfd5a0a";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/relative-line-numbers";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/4a2901c841d221bd782dae9059a070ae8130e1ae/recipes/relative-line-numbers";
sha256 = "0mj1w5a4ax8hwz41vn02bacxlnifd14hvf3p288ljvwchvlf0hn3";
name = "relative-line-numbers";
};
@@ -51092,7 +51849,7 @@
relax = callPackage ({ fetchFromGitHub, fetchurl, json ? null, lib, melpaBuild }:
melpaBuild {
pname = "relax";
- version = "20131029.2234";
+ version = "20131029.1634";
src = fetchFromGitHub {
owner = "technomancy";
repo = "relax.el";
@@ -51100,7 +51857,7 @@
sha256 = "0lqbhwi1f8b4sv9p1rf0gyjllk0l7g6v6mlws496079wxx1n5j66";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/relax";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/67247451b39461db4a5fcff3827a09f53f9fc8ec/recipes/relax";
sha256 = "0gfr4ym6aakawhkfz40ar2n0rfz503hq428yj6rbf7jmq3ajaysk";
name = "relax";
};
@@ -51113,7 +51870,7 @@
remark-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, markdown-mode, melpaBuild }:
melpaBuild {
pname = "remark-mode";
- version = "20151004.1855";
+ version = "20151004.1155";
src = fetchFromGitHub {
owner = "torgeir";
repo = "remark-mode.el";
@@ -51121,7 +51878,7 @@
sha256 = "0w40cx58c0hmc0yzs8maq1389hwha0qwfbz76pc6kpcx14v1gkhh";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/remark-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/161a45835a153c6ac81b99311482f5dd36507da1/recipes/remark-mode";
sha256 = "1zl8k3h4acbgb3hmjs2b4a14g0s0vl3xamrqxrr742zmqpr1h0w0";
name = "remark-mode";
};
@@ -51134,7 +51891,7 @@
repeatable-motion = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "repeatable-motion";
- version = "20150629.2012";
+ version = "20150629.1312";
src = fetchFromGitHub {
owner = "willghatch";
repo = "emacs-repeatable-motion";
@@ -51142,7 +51899,7 @@
sha256 = "007lqahjbig6yygqik6fgbq114784z6l40a3vrc4qs9361zqizck";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/repeatable-motion";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/0dd56ebaea098715b9c201f07e6196c38977f8e3/recipes/repeatable-motion";
sha256 = "12z4z8apd8ksf6dfvqm54l71mx68j0yg4hrjypa9p77fpcd6p0zw";
name = "repeatable-motion";
};
@@ -51155,7 +51912,7 @@
repl-toggle = callPackage ({ fetchFromGitHub, fetchurl, fullframe, lib, melpaBuild }:
melpaBuild {
pname = "repl-toggle";
- version = "20160119.1321";
+ version = "20160119.621";
src = fetchFromGitHub {
owner = "tomterl";
repo = "repl-toggle";
@@ -51163,7 +51920,7 @@
sha256 = "12wylmyz54n1f3kaw9clhvs66dg43xvcvll4pl5ii0ibfv6pls1b";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/repl-toggle";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/da4be8c67584ea0ae35c7c9ee33334db5061a538/recipes/repl-toggle";
sha256 = "1jyaksxgyygfv1wn9c6y8sykb4hicwgs9n5vrdikd2i0iix29zpb";
name = "repl-toggle";
};
@@ -51176,7 +51933,7 @@
replace-from-region = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "replace-from-region";
- version = "20150407.229";
+ version = "20150406.1929";
src = fetchFromGitHub {
owner = "rubikitch";
repo = "replace-from-region";
@@ -51184,7 +51941,7 @@
sha256 = "0w9ry16crcgc6aiq0xwzf7b301kkw6i44jc0dhfj621bhgmf30aj";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/replace-from-region";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/f8e4328cae9b4759a75da0b26ea8b68821bc71af/recipes/replace-from-region";
sha256 = "1p77sajghqkjd7k83nma4qpz682la3zg716jdsnpcwcw0qk9ybcb";
name = "replace-from-region";
};
@@ -51197,7 +51954,7 @@
replace-pairs = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "replace-pairs";
- version = "20160207.1351";
+ version = "20160207.651";
src = fetchFromGitHub {
owner = "davidshepherd7";
repo = "replace-pairs";
@@ -51205,7 +51962,7 @@
sha256 = "169p85rmgashm0g26apkxynmypqk9ndh76kvh572db5kqb8ix0c6";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/replace-pairs";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/2c578f574bc13edf45330a2836c02dece163688d/recipes/replace-pairs";
sha256 = "0l9674rba25wh6fskvfwkhv99lwlszb177hsfzx39s6b4hshvlsb";
name = "replace-pairs";
};
@@ -51217,13 +51974,13 @@
}) {};
replace-plus = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild {
pname = "replace-plus";
- version = "20160508.1743";
+ version = "20160508.1043";
src = fetchurl {
url = "https://www.emacswiki.org/emacs/download/replace+.el";
sha256 = "1a59nqrs62xzdpi7as00byf3jamr1zsz8jmf0w4mqag4bp79cd40";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/replace+";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/a5d15f875b0080b12ce45cf696c581f6bbf061ba/recipes/replace+";
sha256 = "1imsgr3v8g2p2mnkzp92ga3nvckr758pblmlha8gh8mb80089krn";
name = "replace-plus";
};
@@ -51236,7 +51993,7 @@
replace-symbol = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "replace-symbol";
- version = "20160518.212";
+ version = "20160517.1912";
src = fetchFromGitHub {
owner = "bmastenbrook";
repo = "replace-symbol-el";
@@ -51244,7 +52001,7 @@
sha256 = "178y1cmpdb2r72igx8j4l7pyhs1idw56j6hg5h8r9a2p99lkgjjc";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/replace-symbol";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/377b6ff2b785f6d87adf1e23a5b0ce02881fc5c9/recipes/replace-symbol";
sha256 = "07ljmw6aw9hsqffhwmiq2pvhry27acg6f4vgxgi91vjr8jj3r4ng";
name = "replace-symbol";
};
@@ -51257,7 +52014,7 @@
repo = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "repo";
- version = "20160114.2014";
+ version = "20160114.1314";
src = fetchFromGitHub {
owner = "canatella";
repo = "repo-el";
@@ -51265,7 +52022,7 @@
sha256 = "0hs80g3npgb6qfcaivdfkpsc9mss1kdmyp5j7s922qcy2k4yxmgl";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/repo";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/1729d4ea9498549fff3594b971fcde5f81592f84/recipes/repo";
sha256 = "0z4lcswh0c6xnsxlv33bsxh0nh26ydzfl8sv8xabdp5a2gk6bhpb";
name = "repo";
};
@@ -51278,7 +52035,7 @@
req-package = callPackage ({ dash, fetchFromGitHub, fetchurl, ht, lib, log4e, melpaBuild, use-package }:
melpaBuild {
pname = "req-package";
- version = "20160603.1301";
+ version = "20160603.601";
src = fetchFromGitHub {
owner = "edvorg";
repo = "req-package";
@@ -51286,7 +52043,7 @@
sha256 = "03yvgb2iiqp90jncrh5ji5l3v5q86rcqb757x1n2x4xkpjjsxa19";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/req-package";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/f58a801f0791566d0c39493a5f82ff0d15d7ab41/recipes/req-package";
sha256 = "1438f60dnmc3a2dh6hd0wslrh25nd3af797aif70kv6qc71h87vf";
name = "req-package";
};
@@ -51299,15 +52056,15 @@
request = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "request";
- version = "20160425.532";
+ version = "20160623.2138";
src = fetchFromGitHub {
owner = "tkf";
repo = "emacs-request";
- rev = "d760b8e60a49da44468b729cec53475e6b1b704c";
- sha256 = "1knhm4hicijviz759834zmafcw2l2b04g4dddqg7j38knn8pzrx3";
+ rev = "ee1a1b67f0dcdff7f206937dd266b9a9bf31e22b";
+ sha256 = "0x2ifj8clqyl8p1j6iv1x2n8vln2zk2zivbd4h550nhn65xljb6h";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/request";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/8d113615dde757a60ce91e156f0714a1394c4bfc/recipes/request";
sha256 = "0h4jqg98px9dqqvjp08vi2z1lhmk0ca59lnrcl96bi7gkkj3jiji";
name = "request";
};
@@ -51320,15 +52077,15 @@
request-deferred = callPackage ({ deferred, fetchFromGitHub, fetchurl, lib, melpaBuild, request }:
melpaBuild {
pname = "request-deferred";
- version = "20160420.105";
+ version = "20160419.1805";
src = fetchFromGitHub {
owner = "tkf";
repo = "emacs-request";
- rev = "d760b8e60a49da44468b729cec53475e6b1b704c";
- sha256 = "1knhm4hicijviz759834zmafcw2l2b04g4dddqg7j38knn8pzrx3";
+ rev = "ee1a1b67f0dcdff7f206937dd266b9a9bf31e22b";
+ sha256 = "0x2ifj8clqyl8p1j6iv1x2n8vln2zk2zivbd4h550nhn65xljb6h";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/request-deferred";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/8d113615dde757a60ce91e156f0714a1394c4bfc/recipes/request-deferred";
sha256 = "1dcxqnzmvddk61dzmfx8vjbzd8m44lscr3pjdp3r7211zhwfk40n";
name = "request-deferred";
};
@@ -51341,7 +52098,7 @@
requirejs = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, js2-mode, lib, melpaBuild, popup, s, yasnippet }:
melpaBuild {
pname = "requirejs";
- version = "20151204.819";
+ version = "20151204.119";
src = fetchFromGitHub {
owner = "joeheyming";
repo = "requirejs-emacs";
@@ -51349,7 +52106,7 @@
sha256 = "1bfj2zjn3x41jal6c136wnwkgmag27bmrwbfwdylafc7qqk6dflv";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/requirejs";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/a6a710c0d5ab34c52498c4154deebb779052aa01/recipes/requirejs";
sha256 = "09z6r9wcag3gj075wq215zcslyknl1izap595rn48xvizxi06c6k";
name = "requirejs";
};
@@ -51362,7 +52119,7 @@
requirejs-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "requirejs-mode";
- version = "20130215.2204";
+ version = "20130215.1504";
src = fetchFromGitHub {
owner = "moricard";
repo = "requirejs-mode";
@@ -51370,7 +52127,7 @@
sha256 = "02wva5q8mvc0a5kms2wm1gyaag2x3zd6fkkpl4218nrbb0mbficv";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/requirejs-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/7fabdb05de9b8ec18a3a566f99688b50443b6b44/recipes/requirejs-mode";
sha256 = "00bl5dz56f77hl9wy3xvjhq81641mv9jbskcd8mcgcz9ycj9g5k2";
name = "requirejs-mode";
};
@@ -51383,7 +52140,7 @@
resize-window = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "resize-window";
- version = "20160512.505";
+ version = "20160511.2205";
src = fetchFromGitHub {
owner = "dpsutton";
repo = "resize-window";
@@ -51391,7 +52148,7 @@
sha256 = "1ps9l6q6hgzzaywkig0gjjdlsir9avxghynzx9a3q6h0fpdkpgrj";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/resize-window";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/601a8d8f9046db6c4d50af983a11fa2501304028/recipes/resize-window";
sha256 = "0h1hlj50hc97wxqpnmvg6w3qhdd9nbnb8r8v39ylv87zqjcmlp8l";
name = "resize-window";
};
@@ -51404,7 +52161,7 @@
restart-emacs = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "restart-emacs";
- version = "20160530.1522";
+ version = "20160530.822";
src = fetchFromGitHub {
owner = "iqbalansari";
repo = "restart-emacs";
@@ -51412,7 +52169,7 @@
sha256 = "1a2myx5isiwr29yhplmv07bisc8rvrabzz9dn239jf4gvr8x89ry";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/restart-emacs";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/b9faeb6d910d686cbcafe7d12e0bcf62a85689bd/recipes/restart-emacs";
sha256 = "03aabz7fmy99nwimvjn7qz6pvc94i470hfgiwmjz3348cw02k0n6";
name = "restart-emacs";
};
@@ -51425,15 +52182,15 @@
restclient = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "restclient";
- version = "20160525.1405";
+ version = "20160630.503";
src = fetchFromGitHub {
owner = "pashky";
repo = "restclient.el";
- rev = "3e44dccaefeef18de24fd882a29bdff3cd40e050";
- sha256 = "0wyrqkrcxlgpby3bvg4wzqkz5bq3v3bga7skasmncpvq51imhwp1";
+ rev = "07a934df9a928de9602f2b6b6c6ab441f3d0713c";
+ sha256 = "0iq50brvkwschq21wvncgy9xdxrbm9md5s0ri2hf9p093hr2s84z";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/restclient";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/59303304fe1f724596245556dd90f6afffba425d/recipes/restclient";
sha256 = "0wzp8i89a4hwm7qyxvdk10frknbqcni0isnp8k63nhq7c30s7md4";
name = "restclient";
};
@@ -51446,15 +52203,15 @@
restclient-helm = callPackage ({ fetchFromGitHub, fetchurl, helm, lib, melpaBuild, restclient }:
melpaBuild {
pname = "restclient-helm";
- version = "20160407.1149";
+ version = "20160407.449";
src = fetchFromGitHub {
owner = "pashky";
repo = "restclient.el";
- rev = "3e44dccaefeef18de24fd882a29bdff3cd40e050";
- sha256 = "0wyrqkrcxlgpby3bvg4wzqkz5bq3v3bga7skasmncpvq51imhwp1";
+ rev = "07a934df9a928de9602f2b6b6c6ab441f3d0713c";
+ sha256 = "0iq50brvkwschq21wvncgy9xdxrbm9md5s0ri2hf9p093hr2s84z";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/restclient-helm";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/59303304fe1f724596245556dd90f6afffba425d/recipes/restclient-helm";
sha256 = "0cpf02ippfr9w6kiw3kng8smabv256ff388322hhn8a8icyjl24j";
name = "restclient-helm";
};
@@ -51467,15 +52224,15 @@
restclient-test = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, restclient }:
melpaBuild {
pname = "restclient-test";
- version = "20160517.1940";
+ version = "20160618.515";
src = fetchFromGitHub {
owner = "simenheg";
repo = "restclient-test.el";
- rev = "9bc10bb9ae6e9341dec39f5cd8b78da0bd8db2c2";
- sha256 = "1z4ackggrw428f9f7bd02by4fw34bwndv2i4v7cj80c533mfwy9f";
+ rev = "a21e41b905b423e762eeb4da3a236c8b1aea8c49";
+ sha256 = "1lan49723rpzg1q7w8x3iggazwl4zirq5l8nhpb8m5hmg21a4kih";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/restclient-test";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/82e3078fc1f96d276fd288c3d7b91df5df4717a6/recipes/restclient-test";
sha256 = "0g26z5p9fq7fm6bgrwaszya5xmhsgzcn1p7zqr83w74fbw6bcl39";
name = "restclient-test";
};
@@ -51488,7 +52245,7 @@
reveal-in-osx-finder = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "reveal-in-osx-finder";
- version = "20150802.1857";
+ version = "20150802.1157";
src = fetchFromGitHub {
owner = "kaz-yos";
repo = "reveal-in-osx-finder";
@@ -51496,7 +52253,7 @@
sha256 = "1q13cgpz4wzhnqv84ablawy3y2wgdwy46sp7454mmfx9m77jzb2v";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/reveal-in-osx-finder";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/2bf40285279b761b0efd6bc8542ae9aad4b329e1/recipes/reveal-in-osx-finder";
sha256 = "00jgrmh5s3vlpj1jjf8l3c3h4hjk5x781m95sidw6chimizvfmfc";
name = "reveal-in-osx-finder";
};
@@ -51508,13 +52265,13 @@
}) {};
reveal-next = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild {
pname = "reveal-next";
- version = "20160101.50";
+ version = "20151231.1750";
src = fetchurl {
url = "https://www.emacswiki.org/emacs/download/reveal-next.el";
sha256 = "1h27kg2k8f6smbqxandmvg859qk66jydbbbiwwjmk7316k66w8qa";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/reveal-next";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/38e5dd845c99acaae719562595059154a08a5f00/recipes/reveal-next";
sha256 = "0fp6ssd4fad0s2pbxbw75bnx7fcgasig8xvcx7nls8m9p6zbbmh2";
name = "reveal-next";
};
@@ -51527,7 +52284,7 @@
reverse-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "reverse-theme";
- version = "20141205.245";
+ version = "20141204.1945";
src = fetchFromGitHub {
owner = "syohex";
repo = "emacs-reverse-theme";
@@ -51535,7 +52292,7 @@
sha256 = "002ywhjms8ybk7cma2p2i11z3fz6kb0w8mlafysm911rvcq2hg5f";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/reverse-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/81f0f525680fea98e804f39dbde1dada887e8821/recipes/reverse-theme";
sha256 = "163kk5qnz9bk3l2fam79n264s764jfxbwqbiwgid8kw9cmk0v776";
name = "reverse-theme";
};
@@ -51548,7 +52305,7 @@
review-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "review-mode";
- version = "20150110.1512";
+ version = "20150110.812";
src = fetchFromGitHub {
owner = "kmuto";
repo = "review-el";
@@ -51556,7 +52313,7 @@
sha256 = "0lzsy68k7sm9d3r8lzhzx9alc1f0cgfclry40pa4x0ilkcr7ysch";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/review-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/f2f9e2667389577d0703874ca69ebe4800ae3e01/recipes/review-mode";
sha256 = "0wapicggkngpdzi0yxc0b24s526fs819rc2d6miv6ix3gnw11n0n";
name = "review-mode";
};
@@ -51569,7 +52326,7 @@
revive = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "revive";
- version = "20150418.55";
+ version = "20150417.1755";
src = fetchFromGitHub {
owner = "emacsmirror";
repo = "revive";
@@ -51577,7 +52334,7 @@
sha256 = "037sac5fvz6l2zgzlf8ykk4jf9zhj7ybzyz013jqzjj47a6sn1r1";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/revive";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/965891688e94839e63fcc7c22dae317bb56d1ff6/recipes/revive";
sha256 = "1l7c6zq3ga2k1488qb0hgxlk08p3vrcf0sx116c1f8z8nf4c8ny5";
name = "revive";
};
@@ -51590,7 +52347,7 @@
reykjavik-theme = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "reykjavik-theme";
- version = "20160109.900";
+ version = "20160109.200";
src = fetchFromGitHub {
owner = "mswift42";
repo = "reykjavik-theme";
@@ -51598,7 +52355,7 @@
sha256 = "0zmby92mjszh77r5wh8sccqv3a5bb9sfhac8g55nasavw8hfplvj";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/reykjavik-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/10bf153e2b84050304ba2532f5eb41c7a4e7632f/recipes/reykjavik-theme";
sha256 = "1f0q2gfzkmpd374jryrd1lgg8xj6rwdq181jhppj3rfjizgw4l35";
name = "reykjavik-theme";
};
@@ -51610,13 +52367,13 @@
}) {};
rfringe = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild {
pname = "rfringe";
- version = "20110405.1720";
+ version = "20110405.1020";
src = fetchurl {
url = "https://www.emacswiki.org/emacs/download/rfringe.el";
sha256 = "02i5znln0aphvmvaia3sz75bvjhqwyjq1blf5qkcbprnn95lm3yh";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/rfringe";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/88fe56cbb3deab4d5f24c66ba166d204b6751bba/recipes/rfringe";
sha256 = "171gzfciz78l6b653acgfailxpwmh8m1dm0dzpg0b1k0ny3aiwf6";
name = "rfringe";
};
@@ -51629,7 +52386,7 @@
rhtml-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "rhtml-mode";
- version = "20130422.1511";
+ version = "20130422.811";
src = fetchFromGitHub {
owner = "eschulte";
repo = "rhtml";
@@ -51637,7 +52394,7 @@
sha256 = "1qlpv5lzj4yfyjgdykhm6q9izg6g0z5pf5nmynj42vsx7v8bhy1x";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/rhtml-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/f9e14e9d8df9c2ce13e290a5f3d3bf9b247037f4/recipes/rhtml-mode";
sha256 = "038j5jkcckmhlq3vz4h07s5y2scljh1fdn9r614hiyxwgk48lc35";
name = "rhtml-mode";
};
@@ -51650,15 +52407,15 @@
rich-minority = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "rich-minority";
- version = "20151201.1300";
+ version = "20160701.1344";
src = fetchFromGitHub {
owner = "Malabarba";
repo = "rich-minority";
- rev = "311ac8ee54078f95b7279e532da6cf5a2afb4125";
- sha256 = "11hwf9y5ax207w6rwrsmi3pmn7pn7ap6iys0z8hni2f5zzxjrmx3";
+ rev = "f8541d9ed4791cc23c7163e1690e51ec08f3caf9";
+ sha256 = "02xx2gcf8gncl4w2wdk7gzrkfck9p6cygccx9slwlnwn5i8kicyd";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/rich-minority";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/1e6aed365c42987d64d0cd9a8a6178339b1b39e8/recipes/rich-minority";
sha256 = "11xd76w5k3b3q5bxqjb55vi6dsal9drvyc1nh7z83awm59hvgczc";
name = "rich-minority";
};
@@ -51671,7 +52428,7 @@
rigid-tabs = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "rigid-tabs";
- version = "20150807.1756";
+ version = "20150807.1056";
src = fetchFromGitHub {
owner = "wavexx";
repo = "rigid-tabs.el";
@@ -51679,7 +52436,7 @@
sha256 = "0p044wg9d4i6f5x7bdshmisgwvw424y16lixac93q6v5bh3xmab5";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/rigid-tabs";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/689b0060ee5db505fc0ed4603aca204b2d3c63a2/recipes/rigid-tabs";
sha256 = "06n0bcvc3nnp84pcq3lywwga7l92jz8hnkilhbq59kydf5zbjldp";
name = "rigid-tabs";
};
@@ -51692,7 +52449,7 @@
rinari = callPackage ({ fetchFromGitHub, fetchurl, inf-ruby, jump, lib, melpaBuild, ruby-compilation, ruby-mode ? null }:
melpaBuild {
pname = "rinari";
- version = "20150709.840";
+ version = "20150709.140";
src = fetchFromGitHub {
owner = "eschulte";
repo = "rinari";
@@ -51700,7 +52457,7 @@
sha256 = "1kg83z10jw4ik0aapv9cjqlvqy31rln2am8vh3f77zh61qha37hx";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/rinari";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/4b243a909faa71e14ee7ca4f307df8e8136e5d7c/recipes/rinari";
sha256 = "0qknicg3vzl7zbkwsdvp10hrvlng6mbi8hgslx4ir522dflrf9p0";
name = "rinari";
};
@@ -51713,7 +52470,7 @@
rings = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "rings";
- version = "20160531.2227";
+ version = "20160531.1527";
src = fetchFromGitHub {
owner = "konr";
repo = "rings";
@@ -51721,7 +52478,7 @@
sha256 = "01mfiyq4cr2qdmvaxid8a094p20w97n2nsiy9vyng77vcmv36sd5";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/rings";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/113118947e33ab0c8004dbe9b188eba2ea282356/recipes/rings";
sha256 = "1ncsb4jip07hbrf1l4j9yzn3l0kb63ylhzzsb4bb2yx6as4a66k7";
name = "rings";
};
@@ -51734,7 +52491,7 @@
rnc-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "rnc-mode";
- version = "20121228.2";
+ version = "20121227.1702";
src = fetchFromGitHub {
owner = "TreeRex";
repo = "rnc-mode";
@@ -51742,7 +52499,7 @@
sha256 = "1drvyf5asjp3lgpss7llff35q8r89vmh73n1axaj2qp9jx5a5jih";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/rnc-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/e12b048692ceb145cfbe1a03ecc2714f7bfc3bad/recipes/rnc-mode";
sha256 = "09ly7ln6qrcmmim9bl7kd50h4axrhy6ig406r352xm4a9zc8n22q";
name = "rnc-mode";
};
@@ -51755,7 +52512,7 @@
robe = callPackage ({ fetchFromGitHub, fetchurl, inf-ruby, lib, melpaBuild }:
melpaBuild {
pname = "robe";
- version = "20160518.1159";
+ version = "20160518.459";
src = fetchFromGitHub {
owner = "dgutov";
repo = "robe";
@@ -51763,7 +52520,7 @@
sha256 = "0fwxn6pplyh5frwwqk46zq38nj5m2sl1idk1va2jqwnj5r407g78";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/robe";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/673f920d02fe761bc080b73db7d37dbf5b6d86d8/recipes/robe";
sha256 = "19py2lwi7maya90kh1mgwqb16j72f7gm05dwla6xrzq1aks18wrk";
name = "robe";
};
@@ -51776,7 +52533,7 @@
robots-txt-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "robots-txt-mode";
- version = "20160312.1651";
+ version = "20160312.951";
src = fetchFromGitHub {
owner = "zonuexe";
repo = "robots-txt-mode";
@@ -51784,7 +52541,7 @@
sha256 = "0dimmdz4aqcif4lp23nqxfg7kngzym2yivn6h3p7bn1821vgzq9s";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/robots-txt-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/1669c7a0d89ea36d61bfa57ef54ee1f203daff5f/recipes/robots-txt-mode";
sha256 = "1q3fqaf9nysy9bhx4h9idgshxr65hfwnx05vlwazx7jd6bq6kxfh";
name = "robots-txt-mode";
};
@@ -51797,7 +52554,7 @@
roguel-ike = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, popup }:
melpaBuild {
pname = "roguel-ike";
- version = "20160120.402";
+ version = "20160119.2102";
src = fetchFromGitHub {
owner = "stevenremot";
repo = "roguel-ike";
@@ -51805,7 +52562,7 @@
sha256 = "0rgv4y9aa5cc2ddz3y5z8d22xmr8kf5c60h0r3g8h91jmcw3rb4z";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/roguel-ike";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/2db1979e039e466268ca7c264988792d3046e19a/recipes/roguel-ike";
sha256 = "1a7sa6nhgi0s4gjh55bhk5cg6q6s7564fk008ibmrm05gfq9wlg8";
name = "roguel-ike";
};
@@ -51818,7 +52575,7 @@
rope-read-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "rope-read-mode";
- version = "20160603.909";
+ version = "20160603.209";
src = fetchFromGitHub {
owner = "marcowahl";
repo = "rope-read-mode";
@@ -51826,7 +52583,7 @@
sha256 = "0f90m47d1qyl16bq7gqz0xxx38jfgjay7s404q8ikwkvjhg3p85y";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/rope-read-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/14a674559aa485e92357a8b941304ae8167b9c3e/recipes/rope-read-mode";
sha256 = "0grnn5k6rbck0hz4c6cadgj3a4dv62habyingznisg2kx9i3m0dw";
name = "rope-read-mode";
};
@@ -51839,7 +52596,7 @@
rotate = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "rotate";
- version = "20160215.818";
+ version = "20160215.118";
src = fetchFromGitHub {
owner = "daic-h";
repo = "emacs-rotate";
@@ -51847,7 +52604,7 @@
sha256 = "13xrjd5p2zq0r8ifbqbrgjfm0jj09nyxcbhk262jr6f171rf0y2m";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/rotate";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/771195f360543eab5c49da546bab0c7235f92ab5/recipes/rotate";
sha256 = "0dygdd24flbgqp049sl4p8rymvv8h881hz9lvz8hnfwq687yyclx";
name = "rotate";
};
@@ -51860,7 +52617,7 @@
roy-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "roy-mode";
- version = "20121208.1258";
+ version = "20121208.558";
src = fetchFromGitHub {
owner = "folone";
repo = "roy-mode";
@@ -51868,7 +52625,7 @@
sha256 = "04jbnm9is2cis75h40znqzjvyjq27ncr2vfank6zglzi4fhxsl0r";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/roy-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/9bc02257f07ad72904905993a2a3eeda2917d8cb/recipes/roy-mode";
sha256 = "0ch0hamvw4gsqs2pap0h6w4cj6n73jqa75if0ymh73hk5i3acm8g";
name = "roy-mode";
};
@@ -51881,7 +52638,7 @@
rpm-spec-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "rpm-spec-mode";
- version = "20150411.1755";
+ version = "20150411.1055";
src = fetchFromGitHub {
owner = "bjorlykke";
repo = "rpm-spec-mode";
@@ -51889,7 +52646,7 @@
sha256 = "01rb6qfsk4f33nkfdzvvjkw96ip1dv0py8i30l8ix9cqbk07svsv";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/rpm-spec-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/f1ce736b8db53fea4935d195a0d07dc8141125a8/recipes/rpm-spec-mode";
sha256 = "01vggdv8sac4p0szwk7xgxcglmd5a1hv5q0ylf8zcp1lsyyh8ypd";
name = "rpm-spec-mode";
};
@@ -51902,7 +52659,7 @@
rpn-calc = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, popup }:
melpaBuild {
pname = "rpn-calc";
- version = "20150302.1434";
+ version = "20150302.734";
src = fetchFromGitHub {
owner = "zk-phi";
repo = "rpn-calc";
@@ -51910,7 +52667,7 @@
sha256 = "0i5qwbhhdnspgs2y67kkgbk9zq6fx2j509q92mgfzbvjnf54h1r8";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/rpn-calc";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/47d5b3c931cdbc2351e01d15e2b98c78081c9506/recipes/rpn-calc";
sha256 = "04dj2r4035k0c3x6iyjydshzmq381d60pmscp2hg5m7sp7bqn5xs";
name = "rpn-calc";
};
@@ -51923,7 +52680,7 @@
rsense = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "rsense";
- version = "20100511.605";
+ version = "20100510.2305";
src = fetchFromGitHub {
owner = "m2ym";
repo = "rsense";
@@ -51931,7 +52688,7 @@
sha256 = "0xkr1qn8fm3kv5c11janq5acp1q02abvxc463zijvm2qk735yl4d";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/rsense";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/e2149ce3baef9ac01d5b2e8b1a933a3e1206015f/recipes/rsense";
sha256 = "1901xqlpc8fg4sl9j58jn40i2djs8s0cdcqcrzrq02lvk8ssfdf5";
name = "rsense";
};
@@ -51944,7 +52701,7 @@
rspec-mode = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild, ruby-mode ? null }:
melpaBuild {
pname = "rspec-mode";
- version = "20160425.2357";
+ version = "20160425.1657";
src = fetchFromGitHub {
owner = "pezra";
repo = "rspec-mode";
@@ -51952,7 +52709,7 @@
sha256 = "1mlcr4br831cbxd90z61kynvir704mafv4avas44bzk8m1m188kw";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/rspec-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/cd83e61b10da20198de990aa081b47d3b0b44d43/recipes/rspec-mode";
sha256 = "0nyib9rx9w9cbsgkcjx9n8fp77xkzxg923z0rdm3f9kc7njcn0zx";
name = "rspec-mode";
};
@@ -51965,15 +52722,15 @@
rtags = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "rtags";
- version = "20160602.744";
+ version = "20160701.1404";
src = fetchFromGitHub {
owner = "Andersbakken";
repo = "rtags";
- rev = "a7fd295e83d61d14416e17c33af9e4d44728d2c3";
- sha256 = "1nwc4dxw2sf6swqf2xmv2yapznlz7s85hpj7ghqh9iacnw77yrjv";
+ rev = "364bc7a8f9dfb2d6b8f325f486e5c86525530cc7";
+ sha256 = "05wvl0ifslr0sm3178nzvris695701hxiv4bw72jlxg9w7ar5d5x";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/rtags";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/ac3b84fe84a7f57d09f1a303d8947ef19aaf02fb/recipes/rtags";
sha256 = "08clwydx2b9cl4wv61b0p564jpvq7gzkrlcdkchpi4yz6djbp0lw";
name = "rtags";
};
@@ -51986,7 +52743,7 @@
rtm = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "rtm";
- version = "20160116.1827";
+ version = "20160116.1127";
src = fetchFromGitHub {
owner = "pmiddend";
repo = "emacs-rtm";
@@ -51994,7 +52751,7 @@
sha256 = "1gqvp0h5zy2023gdzf7pw28rl27lzml87vpbi1zaw4bmj82zgh3f";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/rtm";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/0acb202acc25420274a1b9e639f34f9878a61e83/recipes/rtm";
sha256 = "1ni2610svxziq1gq6s6igkhqyafvgn02gnw7jbm3ir7ks4w2imzf";
name = "rtm";
};
@@ -52007,7 +52764,7 @@
rubocop = callPackage ({ dash, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "rubocop";
- version = "20151124.637";
+ version = "20151123.2337";
src = fetchFromGitHub {
owner = "bbatsov";
repo = "rubocop-emacs";
@@ -52015,7 +52772,7 @@
sha256 = "1y5z0kr4qwd4fyvhk0rhpbbp6dw2jpzrawx62jid5539wrdjcabk";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/rubocop";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/00f2cf3e8e28bce5c26c86aba54390ffff48d7da/recipes/rubocop";
sha256 = "114azl0fasmnq0fxxyiif3363mpg8qz3ynx91in5acqzh902fa3q";
name = "rubocop";
};
@@ -52028,14 +52785,14 @@
ruby-additional = callPackage ({ emacs, fetchsvn, fetchurl, lib, melpaBuild, ruby-mode ? null }:
melpaBuild {
pname = "ruby-additional";
- version = "20091002.645";
+ version = "20160607.357";
src = fetchsvn {
url = "http://svn.ruby-lang.org/repos/ruby/trunk/misc/";
- rev = "55119";
- sha256 = "07j1lclp6jqhyzfw8h4a21kx39nz946h6lgmn959rvckhkijr514";
+ rev = "55568";
+ sha256 = "0lcd5p5rkga6yfaaa5smy2pl1y1xv69ap33kyjmq58ajd78gql2m";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ruby-additional";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/17cc8e84dd68f280c23f77510f58f21e7e7cbaae/recipes/ruby-additional";
sha256 = "0h0cxik8lp8g81bvp06mddikkk5bjdlch2wffcvsvi01is408w4w";
name = "ruby-additional";
};
@@ -52047,13 +52804,13 @@
}) {};
ruby-block = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild {
pname = "ruby-block";
- version = "20131211.431";
+ version = "20131210.2131";
src = fetchurl {
url = "https://www.emacswiki.org/emacs/download/ruby-block.el";
sha256 = "0c4vy9xsw44g6q9nc8aaav5avgp34h24mvgcnww468afiimivdcq";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ruby-block";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/e2149ce3baef9ac01d5b2e8b1a933a3e1206015f/recipes/ruby-block";
sha256 = "0jfimjq1xpwxkxya452kp27h0fdiy87aj713w3zsm04k7l6i12hm";
name = "ruby-block";
};
@@ -52066,7 +52823,7 @@
ruby-compilation = callPackage ({ fetchFromGitHub, fetchurl, inf-ruby, lib, melpaBuild }:
melpaBuild {
pname = "ruby-compilation";
- version = "20150709.840";
+ version = "20150709.140";
src = fetchFromGitHub {
owner = "eschulte";
repo = "rinari";
@@ -52074,7 +52831,7 @@
sha256 = "1kg83z10jw4ik0aapv9cjqlvqy31rln2am8vh3f77zh61qha37hx";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ruby-compilation";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/ca7bf43ef8893bf04e9658390e306ef69e80a156/recipes/ruby-compilation";
sha256 = "1x1vpkjpx95sfcjhkx4cafypj0nkbd1i0mzxx3lmcrsmg8iv0rjc";
name = "ruby-compilation";
};
@@ -52087,7 +52844,7 @@
ruby-dev = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "ruby-dev";
- version = "20130811.1051";
+ version = "20130811.351";
src = fetchFromGitHub {
owner = "Mon-Ouie";
repo = "ruby-dev.el";
@@ -52095,7 +52852,7 @@
sha256 = "1cy5zmdfwsjw8jla8mxjm1cmvrv727fwq1kqhjr5nxj0flwsm4x1";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ruby-dev";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/b6e0c48ac1fa26e027c6a17f20eee7c084568cae/recipes/ruby-dev";
sha256 = "0mf2ra3p5976qn4ryc2s20vi0nrzwcg3xvsgppsc0bsirjw2l0fh";
name = "ruby-dev";
};
@@ -52108,14 +52865,14 @@
ruby-electric = callPackage ({ fetchsvn, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "ruby-electric";
- version = "20150424.1652";
+ version = "20150424.952";
src = fetchsvn {
url = "http://svn.ruby-lang.org/repos/ruby/trunk/misc/";
- rev = "55275";
- sha256 = "1chnrkchfp156f2ri5y55sgrd6v6znb0iz9nmajhrz5i3i3hncdi";
+ rev = "55568";
+ sha256 = "0lcd5p5rkga6yfaaa5smy2pl1y1xv69ap33kyjmq58ajd78gql2m";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ruby-electric";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/2d67431327845171f0e50d28e9276cbabecf6cb0/recipes/ruby-electric";
sha256 = "04j04dsknzb7xc8v6alawgcbymdfmh27xnpr98yc8b05nzafw056";
name = "ruby-electric";
};
@@ -52128,7 +52885,7 @@
ruby-end = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "ruby-end";
- version = "20141215.1323";
+ version = "20141215.623";
src = fetchFromGitHub {
owner = "rejeep";
repo = "ruby-end.el";
@@ -52136,7 +52893,7 @@
sha256 = "1x4nvrq5nk50c1l3b5wcr4g1n5nmwafcz1zzc12qzsl5sya7si55";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ruby-end";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/7fabdb05de9b8ec18a3a566f99688b50443b6b44/recipes/ruby-end";
sha256 = "1cnmdlkhm8xsifbjs6ymvi92gdnxiaghb04h10qg41phj6v7m9mg";
name = "ruby-end";
};
@@ -52149,7 +52906,7 @@
ruby-factory = callPackage ({ fetchFromGitHub, fetchurl, inflections, lib, melpaBuild }:
melpaBuild {
pname = "ruby-factory";
- version = "20160102.821";
+ version = "20160102.121";
src = fetchFromGitHub {
owner = "sshaw";
repo = "ruby-factory-mode";
@@ -52157,7 +52914,7 @@
sha256 = "15b2rs6m4d511qqkc2gc8k15mbqzrgv6s3hpypajl8nvqa79xnyd";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ruby-factory";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/3ce422ccc34eb325ce432284e44af48607251da2/recipes/ruby-factory";
sha256 = "0v8009pad0l41zh9r1wzcx1h6vpzhr5rgpq6rb002prxz2lcbd37";
name = "ruby-factory";
};
@@ -52170,7 +52927,7 @@
ruby-guard = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "ruby-guard";
- version = "20160201.252";
+ version = "20160131.1952";
src = fetchFromGitHub {
owner = "cheunghy";
repo = "ruby-guard";
@@ -52178,7 +52935,7 @@
sha256 = "080hmrh7pgpaj33w1rkhcqb1yp70w4cap0rq9hsxaaajj0sn47z3";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ruby-guard";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/b9d47bb7eb0f6c56fa7fcf84478aab34f938d195/recipes/ruby-guard";
sha256 = "0hwxhirdvaysw9hxcgfdf0l12wilr6b9f9w91pk1hfwfi1w0lfwr";
name = "ruby-guard";
};
@@ -52191,7 +52948,7 @@
ruby-hash-syntax = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "ruby-hash-syntax";
- version = "20141010.1739";
+ version = "20141010.1039";
src = fetchFromGitHub {
owner = "purcell";
repo = "ruby-hash-syntax";
@@ -52199,7 +52956,7 @@
sha256 = "0knl8zrd4pplnzk5z19cf9rqdfr3ymzfssrwp6jhndjzjdwvc2bv";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ruby-hash-syntax";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/c7d21a43a4bf267507bdc746ec9d0fd82049c0af/recipes/ruby-hash-syntax";
sha256 = "0bvwyagfh7mn457iibrpv1ay75089gp8pg608gbm24m0ix82xvb5";
name = "ruby-hash-syntax";
};
@@ -52212,7 +52969,7 @@
ruby-interpolation = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "ruby-interpolation";
- version = "20131112.1752";
+ version = "20131112.1052";
src = fetchFromGitHub {
owner = "leoc";
repo = "ruby-interpolation.el";
@@ -52220,7 +52977,7 @@
sha256 = "1r2f5jxi6wnkmr1ssvqgshi97gjvxvf3qqc0njg1s33cy39wpqq5";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ruby-interpolation";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/ca7bf43ef8893bf04e9658390e306ef69e80a156/recipes/ruby-interpolation";
sha256 = "07idndxw8vgfrk5zfmjjhmixza35mqxwjhsrbjrq5yy72i5ivznp";
name = "ruby-interpolation";
};
@@ -52233,7 +52990,7 @@
ruby-refactor = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, ruby-mode ? null }:
melpaBuild {
pname = "ruby-refactor";
- version = "20160214.1750";
+ version = "20160214.1050";
src = fetchFromGitHub {
owner = "ajvargo";
repo = "ruby-refactor";
@@ -52241,7 +52998,7 @@
sha256 = "13008ih4hwa80bn2dbgj551knbvgpriz5sb241rkf7mifmlfzgsi";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ruby-refactor";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/8d223ef5b9e51265c510f1cf7888b621e47bfdcf/recipes/ruby-refactor";
sha256 = "0nwinnnhy72h1ihjlnjl8k8z3yf4nl2z7hfv085gwiacr6nn2rby";
name = "ruby-refactor";
};
@@ -52254,7 +53011,7 @@
ruby-test-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, pcre2el, ruby-mode ? null }:
melpaBuild {
pname = "ruby-test-mode";
- version = "20160509.1950";
+ version = "20160509.1250";
src = fetchFromGitHub {
owner = "r0man";
repo = "ruby-test-mode";
@@ -52262,7 +53019,7 @@
sha256 = "0ajqqkf43k7kgsnzi9m8il1l48n2slqd7csya8varnlm8g4p79gy";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ruby-test-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/746e0e49a24f16baa5f1cc7f11220766ecf9f1fe/recipes/ruby-test-mode";
sha256 = "113ysf08bfh2ipk55f8h741j05999yrgx57mzh53rim5n63a312w";
name = "ruby-test-mode";
};
@@ -52275,7 +53032,7 @@
ruby-tools = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "ruby-tools";
- version = "20151209.1715";
+ version = "20151209.1015";
src = fetchFromGitHub {
owner = "rejeep";
repo = "ruby-tools.el";
@@ -52283,7 +53040,7 @@
sha256 = "0jd9acycpbdd90hallrl0k5055rypp502qv4c6i286p7f9is4kvq";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ruby-tools";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/7fabdb05de9b8ec18a3a566f99688b50443b6b44/recipes/ruby-tools";
sha256 = "0zpk55rkrqyangyyljxzf0n1icgqnpdzycwack5rji556h5grvjy";
name = "ruby-tools";
};
@@ -52296,7 +53053,7 @@
runner = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "runner";
- version = "20160524.943";
+ version = "20160524.243";
src = fetchFromGitHub {
owner = "thamer";
repo = "runner";
@@ -52304,7 +53061,7 @@
sha256 = "1ddf5jydpc43wgvw4a669wifij71b4r8zfazcqfdpyfh1j4m591b";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/runner";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/f3a4e051ab45b8036b91aa0c50bd3f93cd85e9d0/recipes/runner";
sha256 = "09apmk22swj05z77ziij31jj6b3g221qv3mw3mymffzxn5ap2rbx";
name = "runner";
};
@@ -52317,7 +53074,7 @@
runtests = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "runtests";
- version = "20150807.1031";
+ version = "20150807.331";
src = fetchFromGitHub {
owner = "sunesimonsen";
repo = "emacs-runtests";
@@ -52325,7 +53082,7 @@
sha256 = "18w6gkpxp0g7rzvnrk8vvr267y768dfik447ssq8jpz3jlr5jnq6";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/runtests";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/95c49160919d310256501d7c71102f8367aae5aa/recipes/runtests";
sha256 = "0m9rqjb5c0yqr2wv5dsdiba21knr63b5pxsqgbkbybi15zgxcicb";
name = "runtests";
};
@@ -52338,7 +53095,7 @@
rust-mode = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "rust-mode";
- version = "20160517.1246";
+ version = "20160517.546";
src = fetchFromGitHub {
owner = "rust-lang";
repo = "rust-mode";
@@ -52346,7 +53103,7 @@
sha256 = "1yamcsqshxzniaq8hn6a2hmfp9x84g5k6n04fgpfs3wxmrh8cqx8";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/rust-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/8f6e5d990d699d571dccbdeb13327b33389bb113/recipes/rust-mode";
sha256 = "1i1mw1v99nyikscg2s1m216b0h8svbzmf5kjvjgk9zjiba4cbqzc";
name = "rust-mode";
};
@@ -52359,7 +53116,7 @@
rustfmt = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "rustfmt";
- version = "20160217.1442";
+ version = "20160217.742";
src = fetchFromGitHub {
owner = "fbergroth";
repo = "emacs-rustfmt";
@@ -52367,7 +53124,7 @@
sha256 = "0c22cxa4f6plz67vxmp1zgaylkfrky313cj0zybn9akrbcxpbc34";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/rustfmt";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/9fffa9bf34c161f28187b1296dfc98287817abcc/recipes/rustfmt";
sha256 = "1znav2pbax0rsvdl85mmbgbmxy7gnrm4nx54ij1ff6yd831r5jyl";
name = "rustfmt";
};
@@ -52380,7 +53137,7 @@
rvm = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "rvm";
- version = "20150402.1642";
+ version = "20150402.942";
src = fetchFromGitHub {
owner = "senny";
repo = "rvm.el";
@@ -52388,7 +53145,7 @@
sha256 = "0iblk0vagjcg3c8q9hlpwk7426ms7aq0s80izgvascfmyqycv6qm";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/rvm";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/cae2ac3513e371a256be0f1a7468e38e686c2487/recipes/rvm";
sha256 = "08i7cmav2cz73jp88ww0ay2yjhk9dj8146836q4sij1bl1slbaf8";
name = "rvm";
};
@@ -52401,7 +53158,7 @@
s = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "s";
- version = "20160509.857";
+ version = "20160509.157";
src = fetchFromGitHub {
owner = "magnars";
repo = "s.el";
@@ -52409,7 +53166,7 @@
sha256 = "1bq402bhxqc9ph2da2nmd80s28dzd406gbawxr3kgrv0sll167bx";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/s";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/d6e5137dac9f8f95579994601cb1e24614f965f2/recipes/s";
sha256 = "0b2lj6nj08pk5fnxvjkc1d9hvi29rnjjy4n5ns4pq6wxpfnlcw64";
name = "s";
};
@@ -52422,7 +53179,7 @@
s-buffer = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, noflet, s }:
melpaBuild {
pname = "s-buffer";
- version = "20130605.2324";
+ version = "20130605.1624";
src = fetchFromGitHub {
owner = "nicferrier";
repo = "emacs-s-buffer";
@@ -52430,7 +53187,7 @@
sha256 = "06ng960fj2ivnwb0hrn0qic5x8hb0sswjzph01zmwhbfnwykhr85";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/s-buffer";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/f1bf91527219e7afc8e113134a958f3adb862a5a/recipes/s-buffer";
sha256 = "07kivgzv24psjq1240gwj9wkndq4bhvjh38x552k90m9v6jz8l6m";
name = "s-buffer";
};
@@ -52443,7 +53200,7 @@
sackspace = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "sackspace";
- version = "20130719.1156";
+ version = "20130719.456";
src = fetchFromGitHub {
owner = "cofi";
repo = "sackspace.el";
@@ -52451,7 +53208,7 @@
sha256 = "06gqqbkn85l2p05whmr4wkg9axqyzb7r7sgm3r8wfshm99kgpxvl";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/sackspace";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/073e92e05c4bd6197a5ad24f470b21a97f5bb7b8/recipes/sackspace";
sha256 = "1m10iw83k6m7v7sg2dxzdy83zxq6svk8h9fh4ankyn3baqrdxg5z";
name = "sackspace";
};
@@ -52464,7 +53221,7 @@
sage-shell-mode = callPackage ({ cl-lib ? null, deferred, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "sage-shell-mode";
- version = "20160527.748";
+ version = "20160527.48";
src = fetchFromGitHub {
owner = "stakemori";
repo = "sage-shell-mode";
@@ -52472,7 +53229,7 @@
sha256 = "1124akipvrcmkd66slklgap2jdvb8iksldd8sjvg9n25kp0wd0vr";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/sage-shell-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/ff7cefd5497aec9ed271fd783625fed445c4ac12/recipes/sage-shell-mode";
sha256 = "18k7yh8rczng0kn2wsawjml70cb5bnc5jr2gj0hini5f7jq449wx";
name = "sage-shell-mode";
};
@@ -52485,7 +53242,7 @@
salt-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, mmm-jinja2, mmm-mode, yaml-mode }:
melpaBuild {
pname = "salt-mode";
- version = "20150904.2013";
+ version = "20150904.1313";
src = fetchFromGitHub {
owner = "beardedprojamz";
repo = "salt-mode";
@@ -52493,7 +53250,7 @@
sha256 = "1hl227bmjch0vq7n47mwydkyxnd6wkbz9klk3c4398qmc2qxm5kn";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/salt-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/f75b1d3a8011bee1e8818473ee8d3a14e89553f9/recipes/salt-mode";
sha256 = "1r5k7022vxgj3p5l16y839lff85z0m9hpifq59knij61g9hxadsp";
name = "salt-mode";
};
@@ -52506,15 +53263,15 @@
sane-term = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "sane-term";
- version = "20150918.102";
+ version = "20160620.847";
src = fetchFromGitHub {
owner = "adamrt";
repo = "sane-term";
- rev = "1d0c1410050cb50034c9e065dfde3e7ec5bc31b7";
- sha256 = "1r6b6n2bzjznjfimgcm0vnmln4sbyasm4icmdgbpzahdmbkfzq3w";
+ rev = "034033141b2eb467e2d0b79c8ce1da1f8ff2f013";
+ sha256 = "0nhs916h52hxbp479ma01p6i0zfap26n4fvyx83822pisbcd3krb";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/sane-term";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/5df85d24ee7ed41aab983626df72641bb04dadd5/recipes/sane-term";
sha256 = "0iz63b62x5jrz7c23i850634k4bk73kg1h4wj1ravx3wlgvzs8y8";
name = "sane-term";
};
@@ -52527,7 +53284,7 @@
sass-mode = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, haml-mode, lib, melpaBuild }:
melpaBuild {
pname = "sass-mode";
- version = "20160507.545";
+ version = "20160506.2245";
src = fetchFromGitHub {
owner = "nex3";
repo = "sass-mode";
@@ -52535,7 +53292,7 @@
sha256 = "1zvsv2j3hqrj9vlm4mspfnm9nwah0lhizamyx43xykd7xk0z8hkw";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/sass-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/cae2ac3513e371a256be0f1a7468e38e686c2487/recipes/sass-mode";
sha256 = "1byjk5zpzjlyiwkp780c4kh7s9l56y686sxji89wc59d19rp8800";
name = "sass-mode";
};
@@ -52548,7 +53305,7 @@
sauron = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "sauron";
- version = "20160501.1945";
+ version = "20160501.1245";
src = fetchFromGitHub {
owner = "djcb";
repo = "sauron";
@@ -52556,7 +53313,7 @@
sha256 = "169mbr83zlawjnn2p9yzx7rrg33bb78gb1i7lklagn73ca2pr0b5";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/sauron";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/9d30dcc4715422133e1bb00ad7a8e25b060387e4/recipes/sauron";
sha256 = "01fk1xfh7r16fb1xg5ibbs7gci9dja49msdlf7964hiq7pnnhxgb";
name = "sauron";
};
@@ -52569,7 +53326,7 @@
save-load-path = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "save-load-path";
- version = "20140206.1314";
+ version = "20140206.614";
src = fetchFromGitHub {
owner = "rubikitch";
repo = "save-load-path";
@@ -52577,7 +53334,7 @@
sha256 = "0rxcg60lxaabdx9gjj17sfxnr09694viphlhhk355dcc4v5ngbdm";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/save-load-path";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/f8e4328cae9b4759a75da0b26ea8b68821bc71af/recipes/save-load-path";
sha256 = "1cl9kkv996m2irm9i5n7f020zqzvrsv9dyscc16ca9jsn16msww2";
name = "save-load-path";
};
@@ -52590,7 +53347,7 @@
save-visited-files = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "save-visited-files";
- version = "20151021.1943";
+ version = "20151021.1243";
src = fetchFromGitHub {
owner = "nflath";
repo = "save-visited-files";
@@ -52598,7 +53355,7 @@
sha256 = "00jvl1npc889f3isi7cbdzwvf9x4rq67zgl7br8npxf8jlc2mwhm";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/save-visited-files";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/3f5979e2c2dbfc4e8e3b4d2881cf860c26f63db5/recipes/save-visited-files";
sha256 = "1pmjz27dlp5yrihgsy8q1bwbhkkj3sn7d79ccvljvzxg5jn1grkd";
name = "save-visited-files";
};
@@ -52611,7 +53368,7 @@
savekill = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "savekill";
- version = "20140418.429";
+ version = "20140417.2129";
src = fetchFromGitHub {
owner = "rubikitch";
repo = "savekill";
@@ -52619,7 +53376,7 @@
sha256 = "0h8bl28p5xrs9daapcjkslm066a4hqlb764i5nz1db0lwrvr0csm";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/savekill";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/f8e4328cae9b4759a75da0b26ea8b68821bc71af/recipes/savekill";
sha256 = "14hfqia7d2v1dn1wdwsphrrkq9hc57721irms9s9vinign0pqx7h";
name = "savekill";
};
@@ -52632,7 +53389,7 @@
say-what-im-doing = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "say-what-im-doing";
- version = "20160512.2055";
+ version = "20160512.1355";
src = fetchFromGitHub {
owner = "benaiah";
repo = "say-what-im-doing";
@@ -52640,7 +53397,7 @@
sha256 = "1gkzgcnh5ib4j5206mx8gbwj5ykay19vqlfg9070m2r09d1a55qf";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/say-what-im-doing";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/4d22ddcd4ad9514fe0c36f299e7463a4b7e771d7/recipes/say-what-im-doing";
sha256 = "1hgh842f7gs2sxy7s6zq57nsqy4jjlnjcga6hwzcx0kw3albgz7x";
name = "say-what-im-doing";
};
@@ -52653,15 +53410,15 @@
sbt-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "sbt-mode";
- version = "20160517.36";
+ version = "20160606.1159";
src = fetchFromGitHub {
owner = "ensime";
repo = "emacs-sbt-mode";
- rev = "6cc666e1822b6e0a33c7afc428308ed399b5a405";
- sha256 = "1lvf7y1n63p8jvnp6ppwmxq2s6h9sk45319576f3s28ixsfa6cp2";
+ rev = "972c22a0c5f80fec5b42c63152da4a63e43da214";
+ sha256 = "00ai9fl3xnkp5i5yri6fdy4anvv0pxj0f5lybl6niymzg6dy3bcj";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/sbt-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/364abdc3829fc12e19f00b534565227dbc30baad/recipes/sbt-mode";
sha256 = "0v0n70czgkdijnw5jd4na41vlrmqcshvr8gdpv0bv55ilqhiihc8";
name = "sbt-mode";
};
@@ -52674,15 +53431,15 @@
scad-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "scad-mode";
- version = "20160205.1943";
+ version = "20160205.1243";
src = fetchFromGitHub {
owner = "openscad";
repo = "openscad";
- rev = "365e399036323207afe1937b9a35c1a532457f66";
- sha256 = "0zpv269ddhcwxqkk4bv7jms8g5n4bbkhcn2529q8x36hmsbwb4dx";
+ rev = "fee7a7292439e563809e1ae0b6b02947739b1d30";
+ sha256 = "1fp3ra77ncihqfyvw27wwab871rx7b6rnrwi5l9qnsk601lw6wha";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/scad-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/2d27782b9ac8474fbd4f51535351207c9c84984c/recipes/scad-mode";
sha256 = "04b4y9jks8sslgmkx54fds8fba9xv54z0cfab52dy99v1301ms3k";
name = "scad-mode";
};
@@ -52695,7 +53452,7 @@
scad-preview = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, scad-mode }:
melpaBuild {
pname = "scad-preview";
- version = "20160206.1436";
+ version = "20160206.736";
src = fetchFromGitHub {
owner = "zk-phi";
repo = "scad-preview";
@@ -52703,7 +53460,7 @@
sha256 = "13x00dls59zshz69260pnqmx6ydrjg8p2jdjn1rzgf5dsmwfy3sc";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/scad-preview";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/18a043064223906510adbb837f1be329252dbd50/recipes/scad-preview";
sha256 = "0wcd2r60ibbc2mzpq8fvyfc1fy172rf9kzdj51p4jyl51r76i86z";
name = "scad-preview";
};
@@ -52716,7 +53473,7 @@
scala-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "scala-mode";
- version = "20160519.1631";
+ version = "20160519.931";
src = fetchFromGitHub {
owner = "ensime";
repo = "emacs-scala-mode";
@@ -52724,7 +53481,7 @@
sha256 = "1ayqdmnp38wvhi3a8r8wivn4z8v6irbz0kwqvgsnpq6m2s3jsbz9";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/scala-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/564aa1637485192a97803af46b3a1f8e0d042c9a/recipes/scala-mode";
sha256 = "12x377iw085fbkjb034dmcsbi7hma17zkkmbgrhkvfkz8pbgaic8";
name = "scala-mode";
};
@@ -52737,7 +53494,7 @@
scf-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "scf-mode";
- version = "20151122.348";
+ version = "20151121.2048";
src = fetchFromGitHub {
owner = "lewang";
repo = "scf-mode";
@@ -52745,7 +53502,7 @@
sha256 = "0m7hanpc2skmsz783m0212xd10y31gkj5n6w8gx9s989l1y4i1b8";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/scf-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/376be7f8903dbea69643600ae14e934ee5e2a11b/recipes/scf-mode";
sha256 = "0acbrw94q6cr9b29mz1wcbwi1g90pbm7ly2xbaqb2g8081r5rgg0";
name = "scf-mode";
};
@@ -52758,15 +53515,15 @@
scheme-complete = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "scheme-complete";
- version = "20160503.139";
+ version = "20160604.733";
src = fetchFromGitHub {
owner = "ashinn";
repo = "scheme-complete";
- rev = "a85aa166633f1d0fac936f727726ee6014d6791b";
- sha256 = "0kd5g76vpxip5ijddaqvp3w3lxr9hy9vaiphrcvvlqjr3xwignnc";
+ rev = "bc7f0bd687c9a6625393053fb6490b4f37c82505";
+ sha256 = "0xa0md847v3qizvf22jrb1rwynrdp7dbxv32rf4vl8yjsh44wspn";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/scheme-complete";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/0fda2b54a0ff0b6fc3bd6d20cfcbbf63cae5380f/recipes/scheme-complete";
sha256 = "1mp9gssd2fx3ra2bjd7w311hwmflhybr5x574qb12603gjkgrp1h";
name = "scheme-complete";
};
@@ -52779,7 +53536,7 @@
scheme-here = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "scheme-here";
- version = "20141028.818";
+ version = "20141028.218";
src = fetchFromGitHub {
owner = "hiddenlotus";
repo = "scheme-here";
@@ -52787,7 +53544,7 @@
sha256 = "09cvrphrnbj8avnlqqv6scjz17cn6zm6mzghjn3vxfr4hql66rir";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/scheme-here";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/7fabdb05de9b8ec18a3a566f99688b50443b6b44/recipes/scheme-here";
sha256 = "04lmkf3zc396anlp9s9irdkqavsc0lzlpzprswd4r2kp4xp7kcks";
name = "scheme-here";
};
@@ -52800,7 +53557,7 @@
scion = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "scion";
- version = "20130315.1355";
+ version = "20130315.755";
src = fetchFromGitHub {
owner = "nominolo";
repo = "scion";
@@ -52808,7 +53565,7 @@
sha256 = "0ark720g0nrdqri5bjdpss6kn6k3hz3w3zdvy334wws05mkb17y4";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/scion";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/faf180d15c3847fc6f832866338494dd99b6654d/recipes/scion";
sha256 = "17qmc7fpvbamqkzyk8jspp2i0nw93iya4iwddvas7vdpjy7mk81d";
name = "scion";
};
@@ -52821,7 +53578,7 @@
sclang-extensions = callPackage ({ auto-complete, dash, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, s }:
melpaBuild {
pname = "sclang-extensions";
- version = "20160509.538";
+ version = "20160508.2238";
src = fetchFromGitHub {
owner = "chrisbarrett";
repo = "sclang-extensions";
@@ -52829,7 +53586,7 @@
sha256 = "164dn5615bxvya4n58lly9r739va1xzm00wyfg4shcwgnwm3byqb";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/sclang-extensions";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/f2095549944ca28d6a2d6a90d5ab3ba9c27997a8/recipes/sclang-extensions";
sha256 = "00nirxawsngvlx7bmf5hqg2wk0l1v5pi09r6phzd0q8gyq3kmbbn";
name = "sclang-extensions";
};
@@ -52842,7 +53599,7 @@
sclang-snippets = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, yasnippet }:
melpaBuild {
pname = "sclang-snippets";
- version = "20130513.951";
+ version = "20130513.251";
src = fetchFromGitHub {
owner = "ptrv";
repo = "sclang-snippets";
@@ -52850,7 +53607,7 @@
sha256 = "0vbcghgapwdf3jgjnjdla17dhf5mkmwapz4a8fmlr7sw1wqvj857";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/sclang-snippets";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/680e5757e074c16efd31084a7dc5dcea339597f5/recipes/sclang-snippets";
sha256 = "0q1bh316v737a0hm9afijk1spvg144cgrf45jm0bpd60zhiv7bb2";
name = "sclang-snippets";
};
@@ -52863,15 +53620,15 @@
scpaste = callPackage ({ fetchFromGitHub, fetchurl, htmlize, lib, melpaBuild }:
melpaBuild {
pname = "scpaste";
- version = "20151209.235";
+ version = "20160613.2143";
src = fetchFromGitHub {
owner = "technomancy";
repo = "scpaste";
- rev = "677f9b7c5a1b533bef44747d6331b671ffcb8a9c";
- sha256 = "1jgg116rhhgs5qrngrmqi8ir7yj1h470f57dc7fyijw0ly5mp6ii";
+ rev = "eb415f7ca56d64c89cf99d5c6f8a442c4ec3912e";
+ sha256 = "1fycdsa93bfiij72cwyc0rp85bwv3lv4r169p9czsph5ns466b65";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/scpaste";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/9007fb32097bc63731c3615dae9342fcef2558a2/recipes/scpaste";
sha256 = "02dqmx6v3jxdn5yz1z74624sc6sz2bm4qjyi78w9akhp2jplwlk1";
name = "scpaste";
};
@@ -52884,7 +53641,7 @@
scratch = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "scratch";
- version = "20120830.1928";
+ version = "20120830.1228";
src = fetchFromGitHub {
owner = "ieure";
repo = "scratch-el";
@@ -52892,7 +53649,7 @@
sha256 = "0ykhr24vpx3byn2n346nqqvmwcg34hk22s3lpdx7lpnkrn5z41aq";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/scratch";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/b3faa25e63d4e1650d785b384a353e1b0ac20e33/recipes/scratch";
sha256 = "1c6vxpd9c24d2flzwgvzqz0wr70xzqqs3f59pp897h0f7j91im5d";
name = "scratch";
};
@@ -52905,7 +53662,7 @@
scratch-ext = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "scratch-ext";
- version = "20140104.616";
+ version = "20140103.2316";
src = fetchFromGitHub {
owner = "kyanagi";
repo = "scratch-ext-el";
@@ -52913,7 +53670,7 @@
sha256 = "0ng0by647r49mia7vmjqc97gwlwgs8kmaz0lw2y54jdz8m0bbngp";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/scratch-ext";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/a142d336a57d075dfd5caf44fa1c1254b83ac728/recipes/scratch-ext";
sha256 = "031wxz10k1q4bi5hywhcw1vzi41d5pv5hc09x8jk9s5nzyssvc0y";
name = "scratch-ext";
};
@@ -52926,7 +53683,7 @@
scratch-log = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "scratch-log";
- version = "20141115.843";
+ version = "20141115.143";
src = fetchFromGitHub {
owner = "mori-dev";
repo = "scratch-log";
@@ -52934,7 +53691,7 @@
sha256 = "030mcq0cmamizvra8jh2x76f71g5apiavwb10c28j62rl0r5bisk";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/scratch-log";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/bec9692973db8853f9d329aebc0cc9e81bb34003/recipes/scratch-log";
sha256 = "1yp3p0dzhmqrd0krqii3x79k4zc3p59148cijhk6my4n1xqnhs69";
name = "scratch-log";
};
@@ -52947,7 +53704,7 @@
scratch-message = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "scratch-message";
- version = "20160526.1209";
+ version = "20160526.509";
src = fetchFromGitHub {
owner = "thisirs";
repo = "scratch-message";
@@ -52955,7 +53712,7 @@
sha256 = "0dq5hqx452vgxi5rsbagm2ckfdzxvc4aw5y1053vhky4i9x6yc72";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/scratch-message";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/24c5ff6b643de9fb79334eff57b702281b20bc10/recipes/scratch-message";
sha256 = "1dl9d4gvicwnb662ir9azywjmmm7xv4d0sz42z7mmwy8hl9hi91b";
name = "scratch-message";
};
@@ -52968,7 +53725,7 @@
scratch-palette = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, popwin }:
melpaBuild {
pname = "scratch-palette";
- version = "20150225.942";
+ version = "20150225.242";
src = fetchFromGitHub {
owner = "zk-phi";
repo = "scratch-palette";
@@ -52976,7 +53733,7 @@
sha256 = "00b4r8bqlxc29k18vig0164d5c9fp5bp5q26d28lwr4f0s4a71d2";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/scratch-palette";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/b737bd93008e10ff446b347f405541a6f4127716/recipes/scratch-palette";
sha256 = "0m6hc2amwnnii4y189kkridhapl9jipkmadvrmwvspgy3lxhlafs";
name = "scratch-palette";
};
@@ -52989,7 +53746,7 @@
scratch-pop = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, popwin }:
melpaBuild {
pname = "scratch-pop";
- version = "20150820.1039";
+ version = "20150820.339";
src = fetchFromGitHub {
owner = "zk-phi";
repo = "scratch-pop";
@@ -52997,7 +53754,7 @@
sha256 = "1yvmfiv1s83r0jcxzbxyrx3b263d73lbap6agansmrhkxp914xr1";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/scratch-pop";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/420fb3408b64f1a3e42316262016728c483bf0c1/recipes/scratch-pop";
sha256 = "0s7g1fbnc5hgz8gqmp1lynj5g7vvxisj7scxx5wil9qpn2zyggq1";
name = "scratch-pop";
};
@@ -53010,7 +53767,7 @@
scratches = callPackage ({ dash, f, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "scratches";
- version = "20151006.616";
+ version = "20151005.2316";
src = fetchFromGitHub {
owner = "cheunghy";
repo = "scratches";
@@ -53018,7 +53775,7 @@
sha256 = "10hmy0p4pkrzvvyisk4rjc6hqqyk2sir1rszqgmkhrdywl010vlc";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/scratches";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/3691aaaed27d0cf67af417f75fbb693ab856bd47/recipes/scratches";
sha256 = "0409v1wi10q48rrh8iib6dw9icmswfrpjx9x7xcma994z080d2fy";
name = "scratches";
};
@@ -53030,13 +53787,13 @@
}) {};
screenshot = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild {
pname = "screenshot";
- version = "20120509.1305";
+ version = "20120509.605";
src = fetchurl {
url = "https://www.emacswiki.org/emacs/download/screenshot.el";
sha256 = "0q7yxaaa0fic4d2xwr0qk28clkinwz4xvw3wf8dv1g322s0xx2cw";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/screenshot";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/24f113097db4cc27a2e9c7b9086af6d263e6fcb7/recipes/screenshot";
sha256 = "0aw2343as38y26r2g7wpn1rq1n6xpw4y5c7ir8qh1crkc1y513hs";
name = "screenshot";
};
@@ -53049,7 +53806,7 @@
scrooge = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, thrift }:
melpaBuild {
pname = "scrooge";
- version = "20160530.420";
+ version = "20160529.2120";
src = fetchFromGitHub {
owner = "cosmicexplorer";
repo = "emacs-scrooge";
@@ -53057,7 +53814,7 @@
sha256 = "0zv1xjjn7pklkla7g26mxmv3148plx8ilw4yqjmc2ghi4br8p0bk";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/scrooge";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/7e3623181fa771dc94a7026eb58ac81fe9d9fc68/recipes/scrooge";
sha256 = "1gisyfzawrgg55jbwrbnri314f6zd38di19iwy0b2dim8in4sjpg";
name = "scrooge";
};
@@ -53070,7 +53827,7 @@
scss-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "scss-mode";
- version = "20150107.2300";
+ version = "20150107.1600";
src = fetchFromGitHub {
owner = "antonj";
repo = "scss-mode";
@@ -53078,7 +53835,7 @@
sha256 = "113pi7nsaksaacy74ngbvrvr6qcl7199xy662nj58bz5307yi9q0";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/scss-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/cae2ac3513e371a256be0f1a7468e38e686c2487/recipes/scss-mode";
sha256 = "1g27xnp6bjaicxjlb9m0njc6fg962j3hlvvzmxvmyk7gsdgcgpkv";
name = "scss-mode";
};
@@ -53091,7 +53848,7 @@
search-web = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "search-web";
- version = "20150312.1203";
+ version = "20150312.603";
src = fetchFromGitHub {
owner = "tomoya";
repo = "search-web.el";
@@ -53099,7 +53856,7 @@
sha256 = "08yc67a4ji7z8s0zh500wiscziqsxi92i1d33fjla2mcr8sxxn0i";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/search-web";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/1f1a3697649ccf69c8eb177c31ec4246b98f503b/recipes/search-web";
sha256 = "0qqx9l8dn1as4gqpq80jfacn6lz0132m91pjzxv0fx6al2iz0m36";
name = "search-web";
};
@@ -53112,7 +53869,7 @@
searchq = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "searchq";
- version = "20150829.1411";
+ version = "20150829.711";
src = fetchFromGitHub {
owner = "boyw165";
repo = "searchq";
@@ -53120,7 +53877,7 @@
sha256 = "0zs08vxmjb3y4dnfq6djnrhmkgyhhwd5zylrjisrd4y7f089fyh4";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/searchq";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/9738c1be0511540bfd8f324334518c72c9c38c94/recipes/searchq";
sha256 = "0flsc07v887pm62mslrv7zqnhl62l6348nkm77mizm1592q3kjgr";
name = "searchq";
};
@@ -53133,7 +53890,7 @@
seclusion-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "seclusion-mode";
- version = "20121119.53";
+ version = "20121118.1753";
src = fetchFromGitHub {
owner = "dleslie";
repo = "seclusion-mode";
@@ -53141,7 +53898,7 @@
sha256 = "15cjhwjiwmrfzmr74hbw5s92si2qdb8i97nmkbsgkj3444rxg239";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/seclusion-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/b087d151b00f5251b15ebb071896995874afb274/recipes/seclusion-mode";
sha256 = "0ff10x6yr37vpp6ffbk1nb027lgmrydwjrb332fskwlf3xmy6v0m";
name = "seclusion-mode";
};
@@ -53153,13 +53910,13 @@
}) {};
second-sel = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild {
pname = "second-sel";
- version = "20160101.53";
+ version = "20151231.1753";
src = fetchurl {
url = "https://www.emacswiki.org/emacs/download/second-sel.el";
sha256 = "143vg6z3aa0znmsx88r675vv5g2c13giz25dcbzazsp4wcr46wvq";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/second-sel";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/a5d15f875b0080b12ce45cf696c581f6bbf061ba/recipes/second-sel";
sha256 = "1nzy5ms5qf5big507kg3z5m6d6zgnsv2fswn359r2j59cval3fvr";
name = "second-sel";
};
@@ -53172,7 +53929,7 @@
seeing-is-believing = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "seeing-is-believing";
- version = "20160602.1618";
+ version = "20160602.918";
src = fetchFromGitHub {
owner = "jcinnamond";
repo = "seeing-is-believing";
@@ -53180,7 +53937,7 @@
sha256 = "1g8avn0vxsjg3fclbgahbjwi71rb81wxd4j0fwabw70lmaqk6f8v";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/seeing-is-believing";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/14bb6de5c051a68284ee1a7e25ecb2c7c19ffd3b/recipes/seeing-is-believing";
sha256 = "05aja5xycb3kpmxyi234l50h98f5m1fil6ll4f2xkpxwv31ba5rb";
name = "seeing-is-believing";
};
@@ -53193,7 +53950,7 @@
seethru = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, shadchen }:
melpaBuild {
pname = "seethru";
- version = "20150218.1929";
+ version = "20150218.1229";
src = fetchFromGitHub {
owner = "Benaiah";
repo = "seethru";
@@ -53201,7 +53958,7 @@
sha256 = "0qd462qbqdx53xh3ddf76chiljxf6s43r28v2ix85gsig7nm5pgr";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/seethru";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/7945732d9789143b386603dd7c96ef14ba68ddaf/recipes/seethru";
sha256 = "1lcwslkki9s15xr2dmh2iic4ax8ia0j20hjnjmkv612wv04b806v";
name = "seethru";
};
@@ -53214,7 +53971,7 @@
sekka = callPackage ({ cl-lib ? null, concurrent, fetchFromGitHub, fetchurl, lib, melpaBuild, popup }:
melpaBuild {
pname = "sekka";
- version = "20150708.1359";
+ version = "20150708.659";
src = fetchFromGitHub {
owner = "kiyoka";
repo = "sekka";
@@ -53222,7 +53979,7 @@
sha256 = "1as3llcs7jgcw9pafz4mbfml1cqd1fw8yl64bb4467nmhq2p18p7";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/sekka";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/350bbb5761b5ba69aeb4acf6d7cdf2256dba95a6/recipes/sekka";
sha256 = "1jj4ly9p7m3xvb31nfn171lbpm9y70y8cbf8p24w0fhv665dx0cp";
name = "sekka";
};
@@ -53235,7 +53992,7 @@
select-themes = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "select-themes";
- version = "20160221.206";
+ version = "20160220.1906";
src = fetchFromGitHub {
owner = "jasonm23";
repo = "emacs-select-themes";
@@ -53243,7 +54000,7 @@
sha256 = "1c9yv1kjcd0jrzgw99q9p4kzj980f261mjcsggbcw806wb0iw1xn";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/select-themes";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/e4e7d01da10a1a1f7fe563031af5d3f9694cea33/recipes/select-themes";
sha256 = "18ydv7240vcqppg1i7n8sy18hy0lhpxz17947kxs7mvj4rl4wd84";
name = "select-themes";
};
@@ -53256,7 +54013,7 @@
selected = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "selected";
- version = "20160428.937";
+ version = "20160428.237";
src = fetchFromGitHub {
owner = "Kungsgeten";
repo = "selected.el";
@@ -53264,7 +54021,7 @@
sha256 = "0qc2lyzmvcgld6vnlnp6a01cw0268c4hs2y7lwzaah2c8cps6n6h";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/selected";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/25a45eb6297168cd0ce4c4db5574362addad5c69/recipes/selected";
sha256 = "0nvrfymb7wd5lcyfpxzh0rc0l3qcwrvh0l32ag7mgs7jzgvnphnx";
name = "selected";
};
@@ -53277,7 +54034,7 @@
selectric-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "selectric-mode";
- version = "20151201.1618";
+ version = "20151201.918";
src = fetchFromGitHub {
owner = "rbanffy";
repo = "selectric-mode";
@@ -53285,7 +54042,7 @@
sha256 = "18xdkisxvdizsk51pnyimp9mwc6k9cpcxqr5hgndkz9q97p5dp79";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/selectric-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/08922071b9854142eab726302e75f1db2d326ec5/recipes/selectric-mode";
sha256 = "1k4l0lr68rqyi37wvqp1cnfci6jfkz0gvrd1hwbgx04cjgmz56n4";
name = "selectric-mode";
};
@@ -53298,15 +54055,15 @@
semi = callPackage ({ fetchFromGitHub, fetchurl, flim, lib, melpaBuild }:
melpaBuild {
pname = "semi";
- version = "20160301.1600";
+ version = "20160701.640";
src = fetchFromGitHub {
owner = "wanderlust";
repo = "semi";
- rev = "f83561fb551fad1f899bf4f0ba68dae739da1761";
- sha256 = "0x4n2d7jsadwknscnwj64s5320wbj4pc0zrcm2c8xfwwgr9wl47k";
+ rev = "225370fd706eeb6d3fd3439c3f5c3736e1d035df";
+ sha256 = "0c3wmm7lf42awdb62365d70xz7jkklxcaw9ryy4q61xj4bcjr346";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/semi";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/e78849c2d1df187b7f0ef4c34985a341e640ad3e/recipes/semi";
sha256 = "01wk3lgln5lac65hp6v83d292bdk7544z23xa1v6a756nhybwv25";
name = "semi";
};
@@ -53319,7 +54076,7 @@
sendto = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "sendto";
- version = "20160425.1450";
+ version = "20160425.750";
src = fetchFromGitHub {
owner = "lujun9972";
repo = "sendto.el";
@@ -53327,7 +54084,7 @@
sha256 = "13qqprxz87cv3sjlq5hj0jp0qcfm3djfgasga8cc84ykrcc47p9f";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/sendto";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/31f7c2f97dd186cb77dc8a106baf5e087792c6ab/recipes/sendto";
sha256 = "00ifasqpmggr4bhdyymzr215840y0ayfnfp0mh7wj99mr6f3zfq0";
name = "sendto";
};
@@ -53340,7 +54097,7 @@
sensitive = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, sequences }:
melpaBuild {
pname = "sensitive";
- version = "20131015.1535";
+ version = "20131015.835";
src = fetchFromGitHub {
owner = "timvisher";
repo = "sensitive.el";
@@ -53348,7 +54105,7 @@
sha256 = "0g4jfcc5k26yh192bmmxnim9mqv993v2jjd9g9ssvnd42ihpx1n3";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/sensitive";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/5e5468ce136fabe59e1434f8a7f265f41c5e64c1/recipes/sensitive";
sha256 = "0v988k0x3mdp7ank2ihghphh8sanvv96s4sg6pnszg5hczak1vr3";
name = "sensitive";
};
@@ -53361,13 +54118,13 @@
sentence-highlight = callPackage ({ fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "sentence-highlight";
- version = "20121026.1650";
+ version = "20121026.950";
src = fetchurl {
url = "https://www.emacswiki.org/emacs/download/sentence-highlight.el";
sha256 = "01qj57zpqpr4rxk9bsx828c7baac1xaa58cz22fncirdx00svn2k";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/sentence-highlight";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/1f41eba284e297177e89b9b7a8da4779eb6fdcba/recipes/sentence-highlight";
sha256 = "16kh6567hb9lczh8zpqwbzz5bikg2fsabifhhky8qwxp4dy07v9m";
name = "sentence-highlight";
};
@@ -53380,7 +54137,7 @@
sentence-navigation = callPackage ({ ample-regexps, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "sentence-navigation";
- version = "20150915.646";
+ version = "20150914.2346";
src = fetchFromGitHub {
owner = "noctuid";
repo = "emacs-sentence-navigation";
@@ -53388,7 +54145,7 @@
sha256 = "1slhm6cn9pp9vkz2i18sn82j5v38315s0wic7qdmk93ss72jhdvj";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/sentence-navigation";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/3d097cf9b6c9c1606505d3988a2afdd7b066abc8/recipes/sentence-navigation";
sha256 = "1p3ch1ab06v038h130fsxpbq45d1yadl67i2ih4l4fh3xah5997m";
name = "sentence-navigation";
};
@@ -53401,7 +54158,7 @@
seoul256-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "seoul256-theme";
- version = "20150715.35";
+ version = "20150714.1735";
src = fetchFromGitHub {
owner = "ChrisDavison";
repo = "seoul256.el";
@@ -53409,7 +54166,7 @@
sha256 = "15vmd1qmj8a6a5mmvdcnbav6mi5rhrp39m85idzv02zm0x9x6lyc";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/seoul256-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/1aff32f498ec4fd765c346f0c9da44cf919723f2/recipes/seoul256-theme";
sha256 = "0mgyq725x5hmhs3h8v5macv8bfkginjghhwr9kli60vdb4skgjvp";
name = "seoul256-theme";
};
@@ -53422,7 +54179,7 @@
sequences = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "sequences";
- version = "20130908.2022";
+ version = "20130908.1322";
src = fetchFromGitHub {
owner = "timvisher";
repo = "sequences.el";
@@ -53430,7 +54187,7 @@
sha256 = "1np6ip28ksms6fig67scwvwj43zgblny50ccvz8aclbl0z8nxswl";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/sequences";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/4cf716df68fb2d6a41fe75fac0b41e356bddcf30/recipes/sequences";
sha256 = "12wnkywkmxfk2sx40h90k53d5qmc8hiky5vhlyf0ws3n39zvhplh";
name = "sequences";
};
@@ -53443,13 +54200,13 @@
sequential-command = callPackage ({ fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "sequential-command";
- version = "20151207.2303";
+ version = "20151207.1603";
src = fetchurl {
url = "https://www.emacswiki.org/emacs/download/sequential-command.el";
sha256 = "0vg8rqzzi29swznhra2mnf45czr2vb77dpcxn3j0fi7gynx3wcwk";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/sequential-command";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/31db031dc8712e89042d4ce80438a4267a241739/recipes/sequential-command";
sha256 = "03qybacgy5fs3lam73x0rds4f68s173mhbah6rr97272nikd50v1";
name = "sequential-command";
};
@@ -53462,7 +54219,7 @@
servant = callPackage ({ ansi, commander, dash, epl, f, fetchFromGitHub, fetchurl, lib, melpaBuild, s, shut-up, web-server }:
melpaBuild {
pname = "servant";
- version = "20140216.1319";
+ version = "20140216.619";
src = fetchFromGitHub {
owner = "cask";
repo = "servant";
@@ -53470,7 +54227,7 @@
sha256 = "15lx6qvmq3vp84ys8dzbx1nzxcnzlq41whawc2yhrnd1dbq4mv2d";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/servant";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/7fabdb05de9b8ec18a3a566f99688b50443b6b44/recipes/servant";
sha256 = "0h8xsg37cvc5r8vkclf7d3gbf6gh4k5pmbiyhwpkbrxwjyl1sl21";
name = "servant";
};
@@ -53483,7 +54240,7 @@
serverspec = callPackage ({ dash, f, fetchFromGitHub, fetchurl, helm, lib, melpaBuild, s }:
melpaBuild {
pname = "serverspec";
- version = "20150623.1355";
+ version = "20150623.655";
src = fetchFromGitHub {
owner = "k1LoW";
repo = "emacs-serverspec";
@@ -53491,7 +54248,7 @@
sha256 = "1h58q41wixjlapia1ggf83jxcllq7492k55mc0fq7hbx3hw1q1y2";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/serverspec";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/5a4f4757d8886d178a85d4bc8ac9399a99d8c4d4/recipes/serverspec";
sha256 = "001d57yd0wmz4d7qmhnanac8g29wls0sqw194003hrgirakg82id";
name = "serverspec";
};
@@ -53504,7 +54261,7 @@
session = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "session";
- version = "20120511.200";
+ version = "20120510.1900";
src = fetchFromGitHub {
owner = "emacsorphanage";
repo = "session";
@@ -53512,7 +54269,7 @@
sha256 = "0sp952abz7dkq8b8kkzzmnwnkq5w15zsx5dr3h8lzxb92lnank9v";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/session";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/5f2a50f62475639af011c99c6cc38928b74b3b0a/recipes/session";
sha256 = "0fghxbnf1d5iyrx1q8xd0lbw9nvkdgg2v2f89j6apnawisrsbhwx";
name = "session";
};
@@ -53525,7 +54282,7 @@
seti-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "seti-theme";
- version = "20150314.922";
+ version = "20150314.322";
src = fetchFromGitHub {
owner = "caisah";
repo = "seti-theme";
@@ -53533,7 +54290,7 @@
sha256 = "18igxblmrbxwhd2d68cz1bpj4524djh2dw2rwhxlij76f9v805wn";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/seti-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/088924b78575359996cf30745497b287cfb11f37/recipes/seti-theme";
sha256 = "1mwkx3hynabwr0a2rm1bh91h7xf38a11h1fb6ys8s3mnr68csd9z";
name = "seti-theme";
};
@@ -53546,7 +54303,7 @@
sexp-move = callPackage ({ fetchFromGitLab, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "sexp-move";
- version = "20150915.1930";
+ version = "20150915.1230";
src = fetchFromGitLab {
owner = "elzair";
repo = "sexp-move";
@@ -53554,7 +54311,7 @@
sha256 = "11h5z2gmwq07c4gqzj2c9apksvqk3k8kpbb9kg78bbif2xfajr3m";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/sexp-move";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/69270c79b47b7d9348bd2ca9fec3aabfd7e694b3/recipes/sexp-move";
sha256 = "0lcxmr2xqh8z7xinxbv1wyrh786zlahhhj5nnbv83i8m23i3ymmd";
name = "sexp-move";
};
@@ -53567,7 +54324,7 @@
shackle = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "shackle";
- version = "20160516.1319";
+ version = "20160516.619";
src = fetchFromGitHub {
owner = "wasamasa";
repo = "shackle";
@@ -53575,7 +54332,7 @@
sha256 = "1xmxms9rhys2k7cl5v0zhqm23my5jv5f0s3541j044hn55rcpig5";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/shackle";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/806e7d00f763f3fc4e3b8ebd483070ac6c5d0f21/recipes/shackle";
sha256 = "159z0cwg7afrmym0xk902d8z093sqv39jig25ds7z4a224yrv5w6";
name = "shackle";
};
@@ -53588,7 +54345,7 @@
shadchen = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "shadchen";
- version = "20141102.1939";
+ version = "20141102.1239";
src = fetchFromGitHub {
owner = "VincentToups";
repo = "shadchen-el";
@@ -53596,7 +54353,7 @@
sha256 = "0phivbhjdw76gzrx35rp0zybqfb0fdy2hjllf72qf1r0r5gxahl8";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/shadchen";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/8a2a36fbfcf457eab05c1ff31cb9c2f68686094e/recipes/shadchen";
sha256 = "1r1mfmv4cdlc8kzjiqz81kpqdrwbnyciwdgg6n5x0yi4apwpvnl4";
name = "shadchen";
};
@@ -53609,7 +54366,7 @@
shader-mode = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "shader-mode";
- version = "20151030.1504";
+ version = "20151030.904";
src = fetchFromGitHub {
owner = "midnightSuyama";
repo = "shader-mode";
@@ -53617,7 +54374,7 @@
sha256 = "0l094nrrvan8v6j1xdgb51cbjvwicvxih29b7iyga13adb9dy9j4";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/shader-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/4396f3c10a38f91d5f98684efbeb02812e479209/recipes/shader-mode";
sha256 = "12y84fa1wc82js53rpadaysmbshhqf6wb97889qkksx19n3xmb9g";
name = "shader-mode";
};
@@ -53630,15 +54387,15 @@
shakespeare-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "shakespeare-mode";
- version = "20150708.1612";
+ version = "20160609.1228";
src = fetchFromGitHub {
owner = "CodyReichert";
repo = "shakespeare-mode";
- rev = "d8c80a8bc91c970563852b723413143844b0881b";
- sha256 = "1y9bgpz96zgjw5fvq2ma7q6392i9j1rrj5axp085ccgn7w24mii7";
+ rev = "ad5f4de2e0b51723deea2c68a2b5aa862bf38022";
+ sha256 = "1daqh496m72l71x24czvzwf92rk310lzxp16l50qxlxif7rgpr78";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/shakespeare-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/b1c547d37422998c01a610f88d62784fbca33523/recipes/shakespeare-mode";
sha256 = "1i9fr9l3x7pwph654hqd8s74swy5gmn3wzs85a2ibmpcjq8mz9rd";
name = "shakespeare-mode";
};
@@ -53651,7 +54408,7 @@
shampoo = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "shampoo";
- version = "20131230.1119";
+ version = "20131230.419";
src = fetchFromGitHub {
owner = "dmatveev";
repo = "shampoo-emacs";
@@ -53659,7 +54416,7 @@
sha256 = "15a8gs4lrqxn0jyfw16rc6vm7z1i10pzzlnp30x6nly9a7xra47x";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/shampoo";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/19f145113a0698466e706a6a4c55d63cec512706/recipes/shampoo";
sha256 = "01ssgw4cnnx8d86g3r1d5hqcib4qyhmpqvcvx47xs7zh0jscps61";
name = "shampoo";
};
@@ -53671,13 +54428,13 @@
}) {};
shell-command = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild {
pname = "shell-command";
- version = "20090621.1532";
+ version = "20090621.832";
src = fetchurl {
url = "https://www.emacswiki.org/emacs/download/shell-command.el";
sha256 = "0jr5sbmg4zrx2dfdrajh2didm6dxx9ri5ib9qnwhc1jlppinyi7l";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/shell-command";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/8b528544841995045fb1f8344aaaa38946bb3915/recipes/shell-command";
sha256 = "1jxn721i4s1k5x1qldiynnl5khsl22x9k3whm698nzv8m786spxl";
name = "shell-command";
};
@@ -53690,7 +54447,7 @@
shell-current-directory = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "shell-current-directory";
- version = "20140102.54";
+ version = "20140101.1754";
src = fetchFromGitHub {
owner = "metaperl";
repo = "shell-current-directory";
@@ -53698,7 +54455,7 @@
sha256 = "1w42j5cdddr0riz1xjq3wiz5i9f71i9jdzd1l92ir0mlj05wjyic";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/shell-current-directory";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/edcb78c3491a5999b39a40087b7f991c2b737e30/recipes/shell-current-directory";
sha256 = "0bj2gs96ivm5x8l7gwvfckyalr1amh4cb1v2dbl323zmrqddhgkd";
name = "shell-current-directory";
};
@@ -53711,7 +54468,7 @@
shell-here = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "shell-here";
- version = "20150728.1904";
+ version = "20150728.1204";
src = fetchFromGitHub {
owner = "ieure";
repo = "shell-here";
@@ -53719,7 +54476,7 @@
sha256 = "0z04z07r7p5p05zhaka37s48y82hg2dbk0ynap4inph3frn4yyfl";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/shell-here";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/88df6e04614547a59aefbeae88c301f3b8394039/recipes/shell-here";
sha256 = "0csi70v89bqdpbsizji6c5z0jmkx4x4vk1zfclkpap4dalmxxcsh";
name = "shell-here";
};
@@ -53731,13 +54488,13 @@
}) {};
shell-history = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild {
pname = "shell-history";
- version = "20100504.1050";
+ version = "20100504.350";
src = fetchurl {
url = "https://www.emacswiki.org/emacs/download/shell-history.el";
sha256 = "0biqjm0fpd7c7jilgkcwp6c32car05r5akimbcdii3clllavma7r";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/shell-history";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/039854cf1b41b18423876170c5f48300bf3fe29a/recipes/shell-history";
sha256 = "1blad7ggv27qzpai2ib1pmr23ljj8asq880g3d7w8fhqv0p1pjs7";
name = "shell-history";
};
@@ -53750,15 +54507,15 @@
shell-pop = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "shell-pop";
- version = "20160425.1654";
+ version = "20160611.740";
src = fetchFromGitHub {
owner = "kyagi";
repo = "shell-pop-el";
- rev = "8041cc758f02b17ba96bda0a47903540fb78d9d0";
- sha256 = "1ddd32f3k1mqk4h88kn0m9c3xd9y6yszkzm4s23fd6d96daw4smc";
+ rev = "38e702f6980f4ac9d8a836cb8b7fe3b406aa52bd";
+ sha256 = "02ga9h8s5lh1z6nqgi4d6icsdc1z46hk713vzfr3q1sdir1nbf58";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/shell-pop";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/44150bddc9b276ab9fb2ab6a92a11383a3ed03b0/recipes/shell-pop";
sha256 = "02s17ln0hbi9gy3di8fksp3mqc7d8ahhf5vwyz4vrc1bg77glxw8";
name = "shell-pop";
};
@@ -53771,7 +54528,7 @@
shell-split-string = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "shell-split-string";
- version = "20151224.1108";
+ version = "20151224.408";
src = fetchFromGitHub {
owner = "10sr";
repo = "shell-split-string-el";
@@ -53779,7 +54536,7 @@
sha256 = "16srngml5xmpaxb0wzhx91jil0r0dmn673bwai3lzxrkmjnl748l";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/shell-split-string";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/84e20f4d02c69f8caf39cd20a581be3b9fa79931/recipes/shell-split-string";
sha256 = "1yj1h7za4ylxh2nikj7s1qqlilpsk05x9571a2fymfyznm3iq77m";
name = "shell-split-string";
};
@@ -53792,7 +54549,7 @@
shell-switcher = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "shell-switcher";
- version = "20160112.835";
+ version = "20160112.135";
src = fetchFromGitHub {
owner = "DamienCassou";
repo = "shell-switcher";
@@ -53800,7 +54557,7 @@
sha256 = "1bcrxq43a45alv6x0wms4d4nykiqz2mzk04kwk5lmf5pw3dqm900";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/shell-switcher";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/a16194f6ddc05350b9875f4e0a3a0383c79e650e/recipes/shell-switcher";
sha256 = "07g9naiv2jk9jxwjywrbb05dy0pbfdx6g8pkra38rn3vqrjzvhyx";
name = "shell-switcher";
};
@@ -53813,7 +54570,7 @@
shell-toggle = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "shell-toggle";
- version = "20150226.1511";
+ version = "20150226.811";
src = fetchFromGitHub {
owner = "knu";
repo = "shell-toggle.el";
@@ -53821,7 +54578,7 @@
sha256 = "0ssaccdacabpja9nqzhr8x8ggfwmlian7y4p0fa6gvr7qsvjpgr9";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/shell-toggle";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/95873d90886d2db5cc1d83d4bcb8dd5c2e65bc3e/recipes/shell-toggle";
sha256 = "1ai0ks7smr8b221j9hmsikswpxqraa9b13fpwv4wwagavnlah446";
name = "shell-toggle";
};
@@ -53834,7 +54591,7 @@
shelldoc = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild, s }:
melpaBuild {
pname = "shelldoc";
- version = "20151115.425";
+ version = "20151114.2125";
src = fetchFromGitHub {
owner = "mhayashi1120";
repo = "Emacs-shelldoc";
@@ -53842,7 +54599,7 @@
sha256 = "1mc7y79h5p9cxqwsl40b1j5la5bm8b70n6fn4rx9wr4bi7rwph5i";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/shelldoc";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/551623175e55629be6cfe44a595f25f09bd889e8/recipes/shelldoc";
sha256 = "1xlp03aaidp7dp8349v8drzhl4lcngvxgdrwwn9cahfqlrvvbbbx";
name = "shelldoc";
};
@@ -53855,7 +54612,7 @@
shelltest-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "shelltest-mode";
- version = "20141227.1148";
+ version = "20141227.448";
src = fetchFromGitHub {
owner = "rtrn";
repo = "shelltest-mode";
@@ -53863,7 +54620,7 @@
sha256 = "0f45q8j9m0ic3l69i7qjhf0l19cprn56fxw61al4xd3wxv4pr9gy";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/shelltest-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/af6dcd4fc0663a255bd85b247bbdf57d425efdb7/recipes/shelltest-mode";
sha256 = "1inb0vq34fbwkr0jg4dv2lljag8djggi8kyssrzhfawri50m81nh";
name = "shelltest-mode";
};
@@ -53876,15 +54633,15 @@
shen-elisp = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "shen-elisp";
- version = "20160602.1412";
+ version = "20160624.540";
src = fetchFromGitHub {
owner = "deech";
repo = "shen-elisp";
- rev = "c92b998aa512660c3ff8320eb38daec265e354c1";
- sha256 = "1rimrvl2887nwwkrvk1yw65f8cdmyykw19aqdswxv4cvww7rdbim";
+ rev = "2896533e07ed072da09a37e9f236141d8f5d4842";
+ sha256 = "1445vv2qj1n0mqx9hn693580af30irsv51i493bn8ab0if80lvxb";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/shen-elisp";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/ed9f0577c6828236582df1781e751b8b81746492/recipes/shen-elisp";
sha256 = "0i6z2icpndv5g5ydmwqskl7vrmdz9qp30l5bw1l7gqr3dippjiyz";
name = "shen-elisp";
};
@@ -53897,7 +54654,7 @@
shift-number = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "shift-number";
- version = "20160419.2157";
+ version = "20160419.1457";
src = fetchFromGitHub {
owner = "alezost";
repo = "shift-number.el";
@@ -53905,7 +54662,7 @@
sha256 = "0dlwcifw5mlski0mbvqqgmpb0jgf5i67x04s8yab1sq9rr07is57";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/shift-number";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/b06be6b25078ddfabc1ef1145c817552f679c41c/recipes/shift-number";
sha256 = "1sbzkmd336d0dcdpk29pzk2b5bhlahrn083x62l6m150n2xzxn4p";
name = "shift-number";
};
@@ -53918,7 +54675,7 @@
shift-text = callPackage ({ cl-lib ? null, es-lib, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "shift-text";
- version = "20130831.1855";
+ version = "20130831.1155";
src = fetchFromGitHub {
owner = "sabof";
repo = "shift-text";
@@ -53926,7 +54683,7 @@
sha256 = "13zsws8gq9a8nfk4yzlvfsvqjh9zbnanmw68rcna93yc5nc634nr";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/shift-text";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/2ad2ea105b895cb958ce0ab2bf2fad2b40d41b2f/recipes/shift-text";
sha256 = "1v9zk7ycc8k1qk1cfs2y1knygl686msmlilqy5a7mh0w0z9f3a2i";
name = "shift-text";
};
@@ -53936,19 +54693,17 @@
license = lib.licenses.free;
};
}) {};
- shimbun = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
- melpaBuild {
+ shimbun = callPackage ({ fetchcvs, fetchurl, lib, melpaBuild }: melpaBuild {
pname = "shimbun";
- version = "20120718.2338";
- src = fetchFromGitHub {
- owner = "emacsorphanage";
- repo = "w3m";
- rev = "5986b51c7c77500fee3349fb0b3f4764d3fc727b";
- sha256 = "1lgvdaghzj1fzh8p6ans0f62zg1bfp086icbsqmyvbgpgcxia9cs";
+ version = "20160422.354";
+ src = fetchcvs {
+ cvsRoot = ":pserver:anonymous@cvs.namazu.org:/storage/cvsroot";
+ module = "emacs-w3m";
+ sha256 = "52e1e998a3bf83fe7bca1d70de5845fdfca04d09467adc3b691987f17a98ff5e";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/shimbun";
- sha256 = "0k54886bh7zxsfnvga3wg3bsij4bixxrah2rrkq1lj0k8ay7nfxh";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/8bbb18b0db057b9cca78ae7280674fd1beb56443/recipes/shimbun";
+ sha256 = "05dxdyh8xvbpjmc19q733jmjd6kgv8rdahjd3bw5wwsb3smqig4x";
name = "shimbun";
};
packageRequires = [];
@@ -53960,15 +54715,15 @@
shm = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "shm";
- version = "20160529.941";
+ version = "20160615.231";
src = fetchFromGitHub {
owner = "chrisdone";
repo = "structured-haskell-mode";
- rev = "bf7a260db4cd385204f408873c5123363eaf1d9f";
- sha256 = "1l6v0zfccms341whl211dh7z6k970simnzfz1909pszrabafmy7f";
+ rev = "e4f3c8f3474bfd1338ba0207c21159910698b63d";
+ sha256 = "1x45d43jnckwfl669ckdb4idkvyzx7qnm96jcnd3843g780pm0ag";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/shm";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/68a2fddb7e000487f022b3827a7de9808ae73e2a/recipes/shm";
sha256 = "1qmp8cc83dcz25xbyqd4987i0d8ywvh16wq2wfs4km3ia8a2vi3c";
name = "shm";
};
@@ -53981,7 +54736,7 @@
shoulda = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "shoulda";
- version = "20140616.2033";
+ version = "20140616.1333";
src = fetchFromGitHub {
owner = "marcwebbie";
repo = "shoulda.el";
@@ -53989,7 +54744,7 @@
sha256 = "19p47a4hwl6h2w5ay09hjhl4kf7cydwqp8s2iyrx2i0k58az8i8i";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/shoulda";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/41497a876c80d81d9562ea4b2cc2a83dba98ae8a/recipes/shoulda";
sha256 = "0lmlhx34nwvn636y2wvw3sprhhh6q3mdg7dzgpjj7ybibvhp1lzk";
name = "shoulda";
};
@@ -54002,7 +54757,7 @@
show-css = callPackage ({ doom, fetchFromGitHub, fetchurl, lib, melpaBuild, s }:
melpaBuild {
pname = "show-css";
- version = "20160210.1508";
+ version = "20160210.808";
src = fetchFromGitHub {
owner = "8cylinder";
repo = "showcss-mode";
@@ -54010,7 +54765,7 @@
sha256 = "11kzjm12hbcdzrshq20r20l29k3555np1sva7afqrhgvd239fdq1";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/show-css";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/7fabdb05de9b8ec18a3a566f99688b50443b6b44/recipes/show-css";
sha256 = "0sq15l58macy2affdgbimnchn491fnrqr3bbgn30k3l3xkvkmc7k";
name = "show-css";
};
@@ -54023,7 +54778,7 @@
show-marks = callPackage ({ fetchFromGitHub, fetchurl, fm, lib, melpaBuild }:
melpaBuild {
pname = "show-marks";
- version = "20130805.1649";
+ version = "20130805.949";
src = fetchFromGitHub {
owner = "vapniks";
repo = "show-marks";
@@ -54031,7 +54786,7 @@
sha256 = "15vkk7lnnfwgzkiwpqz1l1qpnz2d10l82m10m0prbw03k1zx22c7";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/show-marks";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/f2007ab49d123e324c8d7c09bca9de33468d98ab/recipes/show-marks";
sha256 = "1jgxdclj88ca106vcvf1k8zbf7iwamy80c2ad8b3myz0f4zscjzb";
name = "show-marks";
};
@@ -54043,13 +54798,13 @@
}) {};
showkey = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild {
pname = "showkey";
- version = "20160101.59";
+ version = "20151231.1759";
src = fetchurl {
url = "https://www.emacswiki.org/emacs/download/showkey.el";
sha256 = "0pq88kz5h0hzgfk8fyf3lppxalmadg5czbik824bpykp9l9gnf1m";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/showkey";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/e2b5576d501aee95c8f62d721a69077a1f3df424/recipes/showkey";
sha256 = "1m280ll07i5c6s4w0s227jygdlpvd87dq45039v0sljyxm4bfrsv";
name = "showkey";
};
@@ -54061,13 +54816,13 @@
}) {};
showtip = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild {
pname = "showtip";
- version = "20080330.459";
+ version = "20080329.2159";
src = fetchurl {
url = "https://www.emacswiki.org/emacs/download/showtip.el";
sha256 = "01ibg36lvmdk7ac1k0f0r6wyds4rq0wb7gzw26nkiwykn14gxaql";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/showtip";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/19636728b501dadddaad9743635fd51ceb12cc07/recipes/showtip";
sha256 = "1fdhdmkvyz1dcy3x0im1iab6yhhh8gqvxmm6ccwr6rl1r1m5zwc8";
name = "showtip";
};
@@ -54080,7 +54835,7 @@
shpec-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "shpec-mode";
- version = "20150530.1122";
+ version = "20150530.422";
src = fetchFromGitHub {
owner = "shpec";
repo = "shpec-mode";
@@ -54088,7 +54843,7 @@
sha256 = "1mizhbwvnsxxjz6m94qziibvhghhp8v8db3wxrq3z9gsaqqkcndn";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/shpec-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/dd1bfe85b430c3bbb5a7baf11bb9699dad417f60/recipes/shpec-mode";
sha256 = "155hc1nym3fsvflps8d3ixaqw1cafqp97zcaywdppp47n7vj8zjl";
name = "shpec-mode";
};
@@ -54101,7 +54856,7 @@
shrink-whitespace = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "shrink-whitespace";
- version = "20150916.2115";
+ version = "20150916.1415";
src = fetchFromGitHub {
owner = "jcpetkovich";
repo = "shrink-whitespace.el";
@@ -54109,7 +54864,7 @@
sha256 = "07zzyfibs2c7w4gpvdh9003frznbg7zdnrx0nv8bvn0b68d3yz0m";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/shrink-whitespace";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/97fe5a411be1a7d80d50f5a8af44b74c6c7cf9e6/recipes/shrink-whitespace";
sha256 = "12if0000i3rrxcm732layrv2h464wbb4xflbbfc844c83dbx1jmq";
name = "shrink-whitespace";
};
@@ -54122,7 +54877,7 @@
shut-up = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "shut-up";
- version = "20150423.1422";
+ version = "20150423.722";
src = fetchFromGitHub {
owner = "cask";
repo = "shut-up";
@@ -54130,7 +54885,7 @@
sha256 = "00c11s664hwj1l1hw7qshygy3wb6wbd0hn6qqnyq1xr0r87nnhjs";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/shut-up";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/297d3d88a1dad694d5903072adb679f2194ce444/recipes/shut-up";
sha256 = "1bcqrnnafnimfcg1s7vrgq4cb4rxi5sgpd92jj7xywvkalr3kh26";
name = "shut-up";
};
@@ -54143,7 +54898,7 @@
sibilant-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "sibilant-mode";
- version = "20151119.2245";
+ version = "20151119.1545";
src = fetchFromGitHub {
owner = "jbr";
repo = "sibilant-mode";
@@ -54151,7 +54906,7 @@
sha256 = "0cjqh6qbbmgxd6zgqnikw6bh8wpjydydkkqs5wcmblpi5awqmnb6";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/sibilant-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/de12c8a37d6d42103f437e6bd974a94924242e8f/recipes/sibilant-mode";
sha256 = "0jd6dsk93nvwi5yia3623hfc4v6zz4s2n8m1wx9bw8x6kv3h3qbq";
name = "sibilant-mode";
};
@@ -54164,7 +54919,7 @@
sicp = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "sicp";
- version = "20151130.1657";
+ version = "20151130.957";
src = fetchFromGitHub {
owner = "webframp";
repo = "sicp-info";
@@ -54172,7 +54927,7 @@
sha256 = "102ssiz4sp7y816s1iy8i98c314jbn3sy0v87b0qgpgjiq913ffq";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/sicp";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/4e39cd8e8b4f61c04fa967def6a653bb22f45f5b/recipes/sicp";
sha256 = "1q7pbhjk8qgwvj27ianrdbmj98pwf3xv10gmpchh7bypmbyir4wz";
name = "sicp";
};
@@ -54185,7 +54940,7 @@
sift = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "sift";
- version = "20160107.1115";
+ version = "20160107.415";
src = fetchFromGitHub {
owner = "nlamirault";
repo = "sift.el";
@@ -54193,7 +54948,7 @@
sha256 = "1ma6djvhvjai07v1g9a36lfa3nw8zsy6x5vliwcdnkf44gs287ra";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/sift";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/a730e1331b0486c4bd2d309b85d2f8810489eb47/recipes/sift";
sha256 = "0mv5zk140kjilwvzccj75ym7wlkkqryb532mbsy7i9bs3q7m916d";
name = "sift";
};
@@ -54206,7 +54961,7 @@
signal = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "signal";
- version = "20160424.910";
+ version = "20160424.210";
src = fetchFromGitHub {
owner = "Mola-T";
repo = "signal";
@@ -54214,7 +54969,7 @@
sha256 = "1n6mjfw655a5q0ifq52yf6nyc0zxcahr47dvxg0p8x8v3f4jskvz";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/signal";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/e5bad0b4c9a7cd28de44ce60de056330a376b3e6/recipes/signal";
sha256 = "0pvl5qxi0rjbxkpa8kk1q9vz11i9yjmph42si3n7gmm9kc28pk61";
name = "signal";
};
@@ -54227,7 +54982,7 @@
signature = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "signature";
- version = "20140730.2149";
+ version = "20140730.1449";
src = fetchFromGitHub {
owner = "pidu";
repo = "signature";
@@ -54235,7 +54990,7 @@
sha256 = "1g4rr7hpy9r3y4vdpv48xpmy8kqvs4j64kvnhnj2rw2wv1grw78j";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/signature";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/2191b1b46868f9f3b7a98f47411498dd42839347/recipes/signature";
sha256 = "11n3id1iiip99lj8c0iffbrf59s2yvmwlhqbf8xzxkhws7vwdl5q";
name = "signature";
};
@@ -54248,7 +55003,7 @@
silkworm-theme = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "silkworm-theme";
- version = "20160217.1409";
+ version = "20160217.709";
src = fetchFromGitHub {
owner = "mswift42";
repo = "silkworm-theme";
@@ -54256,7 +55011,7 @@
sha256 = "0vzkgrc54j4a3g90jxc7vxkqwqi3047gnn7gng65pfar0i76lzlb";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/silkworm-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/9451d247693c3e991f79315868c73808c0a664d4/recipes/silkworm-theme";
sha256 = "1zbrjqmhf80qs3i910sixirrv42rxkqdrg2z03gnz1g885gpcn13";
name = "silkworm-theme";
};
@@ -54269,7 +55024,7 @@
simp = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "simp";
- version = "20160315.1724";
+ version = "20160315.1124";
src = fetchFromGitHub {
owner = "re5et";
repo = "simp";
@@ -54277,7 +55032,7 @@
sha256 = "177bhvynqsdfwwqhhlh1v0pqvscy3xv6hhxi7fb42l5dmsw5b97z";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/simp";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/45ff5b788e12218f8e2df7e53444796ca4b929fc/recipes/simp";
sha256 = "0x4lssjkj3fk9fw603f0sggvcj25iw0zbzsm5c949lhl4a3wvc9c";
name = "simp";
};
@@ -54287,18 +55042,39 @@
license = lib.licenses.free;
};
}) {};
+ simple-bookmarks = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }:
+ melpaBuild {
+ pname = "simple-bookmarks";
+ version = "20160627.540";
+ src = fetchFromGitHub {
+ owner = "jtkDvlp";
+ repo = "simple-bookmarks";
+ rev = "ef14b49f168caf45be34698d851a061da1f74208";
+ sha256 = "1x1zn4f4k7il8h331lva5gw9vscpw2c7310apn1xwhyj7hz47mf2";
+ };
+ recipeFile = fetchurl {
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/a60dd50c388a75ce21a5aec9acf938835d7afdbc/recipes/simple-bookmarks";
+ sha256 = "0jn5wzm9y4054mr9czd3224s5kbrqpcpcfmj6fi62yhy3p1ys9rb";
+ name = "simple-bookmarks";
+ };
+ packageRequires = [ cl-lib ];
+ meta = {
+ homepage = "https://melpa.org/#/simple-bookmarks";
+ license = lib.licenses.free;
+ };
+ }) {};
simple-call-tree = callPackage ({ anaphora, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "simple-call-tree";
- version = "20160319.1816";
+ version = "20160609.1308";
src = fetchFromGitHub {
owner = "vapniks";
repo = "simple-call-tree";
- rev = "02082ae57c492a8dfb98cb5b73f265d7c2132775";
- sha256 = "0cj4w62b6glz7sfqj08sdlyfnnhy7z1v1gmjkvy1j0fv9i2n2z48";
+ rev = "3f6c2f8052d0c1609ee2452587dce3f0777df96e";
+ sha256 = "1d29c2wrm0mmx2airr18b330h2c66rfk6a3ydx3z2xzcw2k888pb";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/simple-call-tree";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/316a5ffcb3080abd623bbe3065077809e6cbfb74/recipes/simple-call-tree";
sha256 = "1cbv4frsrwd8d3rg8r4sylwnc1hl3hgh595qwbpx0zd3dp5na2yl";
name = "simple-call-tree";
};
@@ -54311,7 +55087,7 @@
simple-httpd = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "simple-httpd";
- version = "20150501.255";
+ version = "20150430.1955";
src = fetchFromGitHub {
owner = "skeeto";
repo = "emacs-web-server";
@@ -54319,7 +55095,7 @@
sha256 = "0jn46fk0ljqs40kz6ngp0sk6hg1334835r2rmagx4qm0mdaqy7p8";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/simple-httpd";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/7fabdb05de9b8ec18a3a566f99688b50443b6b44/recipes/simple-httpd";
sha256 = "1g9m8dx62pql6dqz490pifcli96i5pv6sar18w4lwrfgpfisfz8c";
name = "simple-httpd";
};
@@ -54332,15 +55108,15 @@
simple-mpc = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "simple-mpc";
- version = "20160524.2051";
+ version = "20160605.1208";
src = fetchFromGitHub {
owner = "jorenvo";
repo = "simple-mpc";
- rev = "8669258ecb153ea00853b9c4b975ee85d755ded7";
- sha256 = "0545nnn7mni7755mxkdianmcd4rv9djfmhsdasc1ym7s619zr20i";
+ rev = "e5af3cf2035edfc56b423cd573e4254f388be753";
+ sha256 = "0vdns2flm13rlqgij4mlvd3zagv9j4jv43x5d2f09ka7cdd27a9f";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/simple-mpc";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/62d762308c1ec0c1d8f7b4755b7deb285cbac018/recipes/simple-mpc";
sha256 = "05x2xyys5mf6k7ndh0l6ykyiygaznb4f8bx3npbhvihrsz9ilf8r";
name = "simple-mpc";
};
@@ -54353,13 +55129,13 @@
simple-plus = callPackage ({ fetchurl, lib, melpaBuild, strings }:
melpaBuild {
pname = "simple-plus";
- version = "20160101.100";
+ version = "20151231.1800";
src = fetchurl {
url = "https://www.emacswiki.org/emacs/download/simple+.el";
sha256 = "01fdk790jlpxy95y67yv6944ws4zjh7gs6ymnj1yflf19ccsdsnn";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/simple+";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/a5d15f875b0080b12ce45cf696c581f6bbf061ba/recipes/simple+";
sha256 = "12fsgjk53fq2316j8nm6wvdckpyg9hq3v65j5c52i0g0cwmx62ra";
name = "simple-plus";
};
@@ -54372,7 +55148,7 @@
simple-rtm = callPackage ({ dash, fetchFromGitHub, fetchurl, lib, melpaBuild, rtm }:
melpaBuild {
pname = "simple-rtm";
- version = "20160222.1634";
+ version = "20160222.934";
src = fetchFromGitHub {
owner = "mbunkus";
repo = "simple-rtm";
@@ -54380,7 +55156,7 @@
sha256 = "1kkhnsxr8zrb21k4ckyg69nsndwy4zdkvfw2drk4v1vnbgx8144f";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/simple-rtm";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/fae2c5512242c39f9a1d806fafda85081e84cda3/recipes/simple-rtm";
sha256 = "1aadzaf73clhyny2qiryg6z84k34yx3ghy6pyl0px9qhqc1ak271";
name = "simple-rtm";
};
@@ -54393,7 +55169,7 @@
simple-screen = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "simple-screen";
- version = "20141023.1658";
+ version = "20141023.958";
src = fetchFromGitHub {
owner = "wachikun";
repo = "simple-screen";
@@ -54401,7 +55177,7 @@
sha256 = "0zf9wgyp0n00i00zl1lxr0d60569zgcjdnmdvgpcibvny5s1fp2i";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/simple-screen";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/02db9a649002ed9dec03661a518f74f3c7a176d9/recipes/simple-screen";
sha256 = "16zvsmqn882w320h26hjjz5lcyl9y0x4amkf2zfps77xxmkmi5n0";
name = "simple-screen";
};
@@ -54414,7 +55190,7 @@
simpleclip = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "simpleclip";
- version = "20150804.1910";
+ version = "20150804.1210";
src = fetchFromGitHub {
owner = "rolandwalker";
repo = "simpleclip";
@@ -54422,7 +55198,7 @@
sha256 = "09286h2q9dqghgfj9a4cniz6djw7867vcy3ixs7cn4wghvhyxm8s";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/simpleclip";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/7c921e27d6aafc1b82d37f6beb8407840034377a/recipes/simpleclip";
sha256 = "07qkfwlg8vw5kb097qbsv082hxir047q2bcvc8scbak2dr6pl12s";
name = "simpleclip";
};
@@ -54435,7 +55211,7 @@
simplenote = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "simplenote";
- version = "20141118.1540";
+ version = "20141118.840";
src = fetchFromGitHub {
owner = "dotemacs";
repo = "simplenote.el";
@@ -54443,7 +55219,7 @@
sha256 = "0xq4vy3ggdjiycd3aa62k94kd43zcpm8bfdgi8grwkb1lpvwq9i9";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/simplenote";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/8c1c3189da03541e3bee44847ac5d02c2a56ef98/recipes/simplenote";
sha256 = "0rnvm3q2spfj15kx2c8ic1p8hxg7rwiqgf3x2zg34j1xxayn3h2j";
name = "simplenote";
};
@@ -54456,7 +55232,7 @@
simplenote2 = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, request-deferred }:
melpaBuild {
pname = "simplenote2";
- version = "20160318.1403";
+ version = "20160318.803";
src = fetchFromGitHub {
owner = "alpha22jp";
repo = "simplenote2.el";
@@ -54464,7 +55240,7 @@
sha256 = "0k16sjbrhxbv3fj5rzjzvs03230nwlzmvw18dhdhzzblk08f28dp";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/simplenote2";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/1ac16abd2ce075a8bed4b7b52aed71cb12b38518/recipes/simplenote2";
sha256 = "1qdzbwhzmsga65wmrd0mb3rbs71nlyqqb6f4v7kvfxzyis50cswm";
name = "simplenote2";
};
@@ -54477,7 +55253,7 @@
simplezen = callPackage ({ dash, fetchFromGitHub, fetchurl, lib, melpaBuild, s }:
melpaBuild {
pname = "simplezen";
- version = "20130421.1200";
+ version = "20130421.500";
src = fetchFromGitHub {
owner = "magnars";
repo = "simplezen.el";
@@ -54485,7 +55261,7 @@
sha256 = "0108q2b5h73rjxg9k2kmc8z6la9kgqdnz9z1x7rn61v3vbxlzqvn";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/simplezen";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/eddd3de86e14f56b59fa6f9a08fc89288e0bdbc1/recipes/simplezen";
sha256 = "13f2anhfsxmx1vdd209gxkhpywsi3nn6pazhc6bkswmn27yiig7j";
name = "simplezen";
};
@@ -54498,7 +55274,7 @@
skeletor = callPackage ({ cl-lib ? null, dash, emacs, f, fetchFromGitHub, fetchurl, let-alist, lib, melpaBuild, s }:
melpaBuild {
pname = "skeletor";
- version = "20151221.554";
+ version = "20151220.2254";
src = fetchFromGitHub {
owner = "chrisbarrett";
repo = "skeletor.el";
@@ -54506,7 +55282,7 @@
sha256 = "0kbgxjfdf88h7hfds1kbdxx84wvkvy773r98ym1fzfm54m2kddvq";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/skeletor";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/1e63aefc869900c2af6f958dc138f9c72c63e2b8/recipes/skeletor";
sha256 = "1vfvg5l12dzksr24dxwc6ngawsqzpxjs97drw48qav9dy1vyl10v";
name = "skeletor";
};
@@ -54519,7 +55295,7 @@
skewer-less = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, skewer-mode }:
melpaBuild {
pname = "skewer-less";
- version = "20131015.1522";
+ version = "20131015.822";
src = fetchFromGitHub {
owner = "purcell";
repo = "skewer-less";
@@ -54527,7 +55303,7 @@
sha256 = "16757xz5ank3jsh8xglyly7pwdn5xm0yngampy1n1vgcwsp5080a";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/skewer-less";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/fb63f7417f39bd718972f54e57360708eb48b977/recipes/skewer-less";
sha256 = "0fhv5cnp5bgw3krfmb0jl18kw2hzx2p81falj57lg3p8rn23dryl";
name = "skewer-less";
};
@@ -54540,7 +55316,7 @@
skewer-mode = callPackage ({ emacs, fetchFromGitHub, fetchurl, js2-mode, lib, melpaBuild, simple-httpd }:
melpaBuild {
pname = "skewer-mode";
- version = "20150914.2204";
+ version = "20150914.1504";
src = fetchFromGitHub {
owner = "skeeto";
repo = "skewer-mode";
@@ -54548,7 +55324,7 @@
sha256 = "0dwc3qaqnzjsccvr3gapip4yr17fzgv4w33ydq8hjqn8rs9rqq6l";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/skewer-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/10fba4f7935c78c4fc5eee7dbb161173dea884ba/recipes/skewer-mode";
sha256 = "1zp4myi9f7pw6zkgc0xg12585iihn7khcsf20pvqyc0vn4ajdwqm";
name = "skewer-mode";
};
@@ -54561,15 +55337,15 @@
skewer-reload-stylesheets = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, skewer-mode }:
melpaBuild {
pname = "skewer-reload-stylesheets";
- version = "20160527.1400";
+ version = "20160702.2113";
src = fetchFromGitHub {
owner = "NateEag";
repo = "skewer-reload-stylesheets";
- rev = "ee18c555a7355d5c90d5405281c0ccb20e407565";
- sha256 = "1p5h1yn0rvfivq68lv92vfxb03vr81qhgzi6ppxaxmmxy83r26v0";
+ rev = "df2090cc01d3bea963fd7687e0eccf8f52780431";
+ sha256 = "1nxpl8vv1ybb159838czzjxbk81saz0i0m8k0ddaxf5zgvcr87qh";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/skewer-reload-stylesheets";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/c7a00894cb1398757b90f670a0beb7b7f640b8b8/recipes/skewer-reload-stylesheets";
sha256 = "1rxn0ha2yhvyc195alg31nk1sjghnbha33xrqwc9z3j71w211frm";
name = "skewer-reload-stylesheets";
};
@@ -54582,7 +55358,7 @@
skype = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "skype";
- version = "20131002.618";
+ version = "20131001.2318";
src = fetchFromGitHub {
owner = "kiwanami";
repo = "emacs-skype";
@@ -54590,7 +55366,7 @@
sha256 = "0gzj7cf42nhp3ac1a2gxcfbmn80z1z46zxsfr2f5xil2gjag39fx";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/skype";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/d3448698a35c9d5d25639f62024f89cac03d5830/recipes/skype";
sha256 = "06p5s5agajbm9vg9xxpzv817xmjw2kmcahiw4iypn5yzwhv1aykl";
name = "skype";
};
@@ -54603,15 +55379,15 @@
slack = callPackage ({ alert, circe, emojify, fetchFromGitHub, fetchurl, lib, melpaBuild, oauth2, request, websocket }:
melpaBuild {
pname = "slack";
- version = "20160521.1622";
+ version = "20160623.820";
src = fetchFromGitHub {
owner = "yuya373";
repo = "emacs-slack";
- rev = "44df5544a8b51c7b349adb503ee0c6c5dcec5255";
- sha256 = "00cla208vr3rm9v32hpjylrdl2gnkpbh05z8v3nzpvj5l6mrpbcv";
+ rev = "f93c6123a9acf53dc222ff98154300d3b8001648";
+ sha256 = "0ncfgn7xs0hz724myfyw8n6fs4hy50q0p6l7yx0yflivgha2a29l";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/slack";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/f0258cc41de809b67811a5dde3d475c429df0695/recipes/slack";
sha256 = "0mybjx08yskk9vi06ayiknl5ddyd8h0mnr8c0a3zr61p1x4s6anp";
name = "slack";
};
@@ -54624,7 +55400,7 @@
slamhound = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "slamhound";
- version = "20140507.118";
+ version = "20140506.1818";
src = fetchFromGitHub {
owner = "technomancy";
repo = "slamhound";
@@ -54632,7 +55408,7 @@
sha256 = "108zcb7hdaaq3sxjfr9nrwzqxx71q6aygzik7l3ab854xknkjfad";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/slamhound";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/54c191408ceb09ca21ef52df171f02d700aee5ba/recipes/slamhound";
sha256 = "14zlcw0zw86awd6g98l4h2whav9amz4m8ik877d1wsdjf69g7k9x";
name = "slamhound";
};
@@ -54645,7 +55421,7 @@
slideview = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "slideview";
- version = "20150324.2340";
+ version = "20150324.1740";
src = fetchFromGitHub {
owner = "mhayashi1120";
repo = "Emacs-slideview";
@@ -54653,7 +55429,7 @@
sha256 = "11p1pghx55a4gcn45cadw7c594134b21cdim723k2h99z14f89az";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/slideview";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/b250f977f44a08346ee9715b416c9706375227a1/recipes/slideview";
sha256 = "0zr08yrnrz49zds1651ysmgjqgbnhfdcqbg90sbsb086iw89rxl1";
name = "slideview";
};
@@ -54666,7 +55442,7 @@
slim-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "slim-mode";
- version = "20140611.1850";
+ version = "20140611.1150";
src = fetchFromGitHub {
owner = "slim-template";
repo = "emacs-slim";
@@ -54674,7 +55450,7 @@
sha256 = "0vgyc2ny9qmn8f5r149y4g398mh4gnwsp4yim85z4vmdikqg8vi1";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/slim-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/6a3b59bdbc53d7c0b4c4d6434689f7aab2546678/recipes/slim-mode";
sha256 = "1hip0r22irr9sah3b65ky71ic508bhqvj9hj95a81qvy1zi9rcac";
name = "slim-mode";
};
@@ -54687,15 +55463,15 @@
slime = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, macrostep, melpaBuild }:
melpaBuild {
pname = "slime";
- version = "20160521.1815";
+ version = "20160624.1051";
src = fetchFromGitHub {
owner = "slime";
repo = "slime";
- rev = "330877a6041bc68eb47f1525dea93d3629346bfc";
- sha256 = "1n0m8pvkb2i0alh8mljyd6jj54v185qpqbm3281xnc5y08zjw7v8";
+ rev = "3fa0c6901121036113f2277a9d8f20eda3c19e1c";
+ sha256 = "04cdllay37qb67fyh1q93wcqmd1c67rrps31bxwj64f70h33ighb";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/slime";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/14c60acbfde13d5e9256cea83d4d0d33e037d4b9/recipes/slime";
sha256 = "04zcvjg0bbx5mdbsk9yn7rlprakl89dq6jmnq5v2g0n6q0mh6ign";
name = "slime";
};
@@ -54708,7 +55484,7 @@
slime-annot = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, slime }:
melpaBuild {
pname = "slime-annot";
- version = "20131231.408";
+ version = "20131230.2108";
src = fetchFromGitHub {
owner = "arielnetworks";
repo = "cl-annot";
@@ -54716,7 +55492,7 @@
sha256 = "1wq1gs9jjd5m6iwrv06c2d7i5dvqsfjcljgbspfbc93cg5xahk4n";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/slime-annot";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/498c938a9d5c51f0842fdae317f5b2fae33bb6d5/recipes/slime-annot";
sha256 = "14x9lzpkgkc96jsbfpahl027qh6y5azwdk0cmk9pbd1xm95kxj6n";
name = "slime-annot";
};
@@ -54729,7 +55505,7 @@
slime-company = callPackage ({ company, fetchFromGitHub, fetchurl, lib, melpaBuild, slime }:
melpaBuild {
pname = "slime-company";
- version = "20151210.1514";
+ version = "20151210.814";
src = fetchFromGitHub {
owner = "anwyn";
repo = "slime-company";
@@ -54737,7 +55513,7 @@
sha256 = "0cc8xb2p1j2vs00h4sq6x0mwwrxkidqj4l7kg3n3150bj37v55rs";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/slime-company";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/abe5036c6de996a723bc800e0f031314e1188660/recipes/slime-company";
sha256 = "195s5fi2dl3h2jyy4d45q22jac35sciz81n13b4lgw94mkxx4rq2";
name = "slime-company";
};
@@ -54750,7 +55526,7 @@
slime-docker = callPackage ({ cl-lib ? null, docker-tramp, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, slime }:
melpaBuild {
pname = "slime-docker";
- version = "20160506.2308";
+ version = "20160506.1608";
src = fetchFromGitHub {
owner = "daewok";
repo = "slime-docker";
@@ -54758,7 +55534,7 @@
sha256 = "0swd9rbsag8k18njp741ljg6lmlz949i4bbz5w7bl0spcpc26fs9";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/slime-docker";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/15ec3f7208287161571c8fc3b29369ceabb44e5f/recipes/slime-docker";
sha256 = "13zkkrpww51ndsblpyz2msiwrjnaz6yrk61jbzrwp0r7a2v0djsa";
name = "slime-docker";
};
@@ -54771,7 +55547,7 @@
slime-ritz = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "slime-ritz";
- version = "20130219.37";
+ version = "20130218.1737";
src = fetchFromGitHub {
owner = "pallet";
repo = "ritz";
@@ -54779,7 +55555,7 @@
sha256 = "0rsh0bbhyx74yz1gjfqyi0bkqq5n3scpyh5mmc3d6dkpv8wa7bwz";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/slime-ritz";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/669a4ae76deea86084307ac3c2d26072e4b8fe17/recipes/slime-ritz";
sha256 = "1y1439y07l1a0sp9wn110hw4yyxj8n1cnd6h17rmsr549m2qbg1a";
name = "slime-ritz";
};
@@ -54792,7 +55568,7 @@
slime-theme = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "slime-theme";
- version = "20141116.802";
+ version = "20141116.102";
src = fetchFromGitHub {
owner = "emacsfodder";
repo = "emacs-slime-theme";
@@ -54800,7 +55576,7 @@
sha256 = "13rm9pmshgssmydhpirri38s38z3kvkhqama40qdzqq96dsxlnjx";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/slime-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/641d1959bd31598fcdacd39a3d1bb077dcccfa5c/recipes/slime-theme";
sha256 = "1b709cplxip48a6qjdnzcn5qcgsy0jq1m05d7vc8p5ywgr1f9a00";
name = "slime-theme";
};
@@ -54813,7 +55589,7 @@
slime-volleyball = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "slime-volleyball";
- version = "20140718.641";
+ version = "20140717.2341";
src = fetchFromGitHub {
owner = "fitzsim";
repo = "slime-volleyball";
@@ -54821,7 +55597,7 @@
sha256 = "00v4mh04affd8kkw4rn51djpyga2rb8f63mgy86napglqnkz40r3";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/slime-volleyball";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/853f47f469e372bdbae40f3cea60d9598e966fab/recipes/slime-volleyball";
sha256 = "1dzvj8z3l5l9ixjl3nc3c7zzi23zc2300r7jzw2l3bvg64cfbdg7";
name = "slime-volleyball";
};
@@ -54834,7 +55610,7 @@
slirm = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "slirm";
- version = "20160201.1525";
+ version = "20160201.825";
src = fetchFromGitHub {
owner = "fbie";
repo = "slirm";
@@ -54842,7 +55618,7 @@
sha256 = "0srj0zcvzr0sjcs37zz11xz8w0yv94m69av9ny7mx8ssf4qp0pxa";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/slirm";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/6407db0f265c49fdddaa6e8f85f295e2b90a077b/recipes/slirm";
sha256 = "061xjj3vjdkkvd979fhp7bc12g5zkxqxywvcz3z9dlkgdks41ld7";
name = "slirm";
};
@@ -54855,7 +55631,7 @@
slovak-holidays = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "slovak-holidays";
- version = "20150418.1055";
+ version = "20150418.355";
src = fetchFromGitHub {
owner = "Fuco1";
repo = "slovak-holidays";
@@ -54863,7 +55639,7 @@
sha256 = "1y1gay1h91c0690gly4qibx1my0l1zpb6s3x58lks8m21jdwfw28";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/slovak-holidays";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/d5c6b2208ef209dfe57c2c137a88ce08a4eae475/recipes/slovak-holidays";
sha256 = "1dcw8pa3r9b7n7dc8fgzijz7ywwxb3nlfg7n0by8dnvpjq2c30bg";
name = "slovak-holidays";
};
@@ -54876,15 +55652,15 @@
sly = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "sly";
- version = "20160522.1827";
+ version = "20160629.1251";
src = fetchFromGitHub {
owner = "capitaomorte";
repo = "sly";
- rev = "2dcaeed7b262f1b0f456807f03e9530915179e42";
- sha256 = "11lc5xg8n2kw5ajsgazw3riq113azmyclm83i2lj0sqm9wyj4rhj";
+ rev = "d1d5b04eeb897648dc56e9b185644481b4debd48";
+ sha256 = "09sc63nwz5r10id5q5cnsnkllcsjwmv43ic2km1l271rjcgspvra";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/sly";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/79e7213183df892c5058a766b5805a1854bfbaec/recipes/sly";
sha256 = "1pmyqjk8fdlzwvrlx8h6fq0savksfny78fhmr8r7b07pi20y6n9l";
name = "sly";
};
@@ -54897,7 +55673,7 @@
sly-company = callPackage ({ company, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, sly }:
melpaBuild {
pname = "sly-company";
- version = "20160308.1457";
+ version = "20160308.757";
src = fetchFromGitHub {
owner = "capitaomorte";
repo = "sly-company";
@@ -54905,7 +55681,7 @@
sha256 = "128gb6hsb7zig4czwgwjcm58lgqk6rmj7qi17a9cz5gsnggjcwii";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/sly-company";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/04867a574773e8794335a2664d4f5e8b243f3ec9/recipes/sly-company";
sha256 = "1n8bx0qis2bs49c589cbh59xcv06r8sx6y4lxprc9pfpycx7h6v2";
name = "sly-company";
};
@@ -54918,7 +55694,7 @@
sly-hello-world = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, sly }:
melpaBuild {
pname = "sly-hello-world";
- version = "20160119.1536";
+ version = "20160119.836";
src = fetchFromGitHub {
owner = "capitaomorte";
repo = "sly-hello-world";
@@ -54926,7 +55702,7 @@
sha256 = "1fxsv83fcv5l7cndsysd8salvfwsabvd84sm7zli2ksf678774gp";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/sly-hello-world";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/d52ef4b249a42432eed6a260a758e26b50bc31d6/recipes/sly-hello-world";
sha256 = "03ybjgczp6ssk4hmwd486vshlk7ql27k1lyhmvk26gmrf554z90n";
name = "sly-hello-world";
};
@@ -54939,7 +55715,7 @@
sly-macrostep = callPackage ({ fetchFromGitHub, fetchurl, lib, macrostep, melpaBuild, sly }:
melpaBuild {
pname = "sly-macrostep";
- version = "20160119.1334";
+ version = "20160119.634";
src = fetchFromGitHub {
owner = "capitaomorte";
repo = "sly-macrostep";
@@ -54947,7 +55723,7 @@
sha256 = "00lw6hkxs71abjyi7nhzi8j6n55jyhzsp81ycn6f2liyp4rmqgi7";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/sly-macrostep";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/74a0acfc6261d1c9e62ece0397f6b4d873ef5bb7/recipes/sly-macrostep";
sha256 = "1i004mb0bg13j3zhdsjz1795dh0ry8winzvdghr1wardc9np60h7";
name = "sly-macrostep";
};
@@ -54960,7 +55736,7 @@
sly-named-readtables = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, sly }:
melpaBuild {
pname = "sly-named-readtables";
- version = "20150817.1716";
+ version = "20150817.1016";
src = fetchFromGitHub {
owner = "capitaomorte";
repo = "sly-named-readtables";
@@ -54968,7 +55744,7 @@
sha256 = "1xi625pn3mg77mjvr94v6a5pjyvgjavpkdbbh1lqjx1halaa2qb7";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/sly-named-readtables";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/7e5a29c194bb7fc1a82131b7a9bd4c465660a2bd/recipes/sly-named-readtables";
sha256 = "11ymzbj1ji7avfjqafj9p5zx0m4y1jfjcmyanpjq1frdcz639ir9";
name = "sly-named-readtables";
};
@@ -54981,7 +55757,7 @@
sly-quicklisp = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, sly }:
melpaBuild {
pname = "sly-quicklisp";
- version = "20160204.1715";
+ version = "20160204.1015";
src = fetchFromGitHub {
owner = "capitaomorte";
repo = "sly-quicklisp";
@@ -54989,7 +55765,7 @@
sha256 = "1mb78cdkmik9rwccvzl8slv4dfy8sdq69dkys7q11jyn8lfm476y";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/sly-quicklisp";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/330d04e4e79eee221bcffb8be3e46e097306b175/recipes/sly-quicklisp";
sha256 = "1hpcz84g9c6g0x8qal02xgjj02gxqz3bysyz0l59jxiga0m634v8";
name = "sly-quicklisp";
};
@@ -55002,7 +55778,7 @@
sly-repl-ansi-color = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild, sly }:
melpaBuild {
pname = "sly-repl-ansi-color";
- version = "20160214.918";
+ version = "20160214.218";
src = fetchFromGitHub {
owner = "PuercoPop";
repo = "sly-repl-ansi-color";
@@ -55010,7 +55786,7 @@
sha256 = "194bdibpxpqsag86h583b62ybmfqmq4442a0czbijqwngbgjpj3l";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/sly-repl-ansi-color";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/e2fc906b674e1829e023e6a1c0e4cf87830216a8/recipes/sly-repl-ansi-color";
sha256 = "0wz24kfjl6rp4qss0iq2ilav0mkg2spy2ziikypy7v0iqbssmssi";
name = "sly-repl-ansi-color";
};
@@ -55023,7 +55799,7 @@
smart-comment = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "smart-comment";
- version = "20160322.1939";
+ version = "20160322.1339";
src = fetchFromGitHub {
owner = "paldepind";
repo = "smart-comment";
@@ -55031,7 +55807,7 @@
sha256 = "0r181rdnymr96kj74c73212n6157cfiq1d6hk2lfc54yl6h76zf4";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/smart-comment";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/798c3b42e568bea63edc0c1d3ce2c2d913e3440e/recipes/smart-comment";
sha256 = "0lbrasdrkyj7zybz0f3xick8p0bvci5bhb2kg6pqzz9pw2iaxw12";
name = "smart-comment";
};
@@ -55043,13 +55819,13 @@
}) {};
smart-compile = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild {
pname = "smart-compile";
- version = "20150519.1847";
+ version = "20150519.1147";
src = fetchurl {
url = "https://www.emacswiki.org/emacs/download/smart-compile.el";
sha256 = "0sm4nxynwhwypzw008fz56axai9lrphjczwzfdy7da3akan18rbd";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/smart-compile";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/d2e6c3dd7b8e19193d070fd41c2be4bcd61f1022/recipes/smart-compile";
sha256 = "0vgxqyzl7jw2j96rmjw75b5lmjwrvzajrdvfyabss4xmv96dy2r3";
name = "smart-compile";
};
@@ -55062,7 +55838,7 @@
smart-cursor-color = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "smart-cursor-color";
- version = "20141124.1819";
+ version = "20141124.1119";
src = fetchFromGitHub {
owner = "7696122";
repo = "smart-cursor-color";
@@ -55070,7 +55846,7 @@
sha256 = "1xbd42q60pmg0hw4bn2fndjwgrfgj6ggm757fyp8m08jqh0zkarn";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/smart-cursor-color";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/1da4d66a6cae13464343e35f0aed2cb232ac5fe5/recipes/smart-cursor-color";
sha256 = "11875pwlx2rm8d86541na9g3yiq0j472vg63mryqv6pzq3n8q6jx";
name = "smart-cursor-color";
};
@@ -55083,7 +55859,7 @@
smart-forward = callPackage ({ expand-region, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "smart-forward";
- version = "20140430.913";
+ version = "20140430.213";
src = fetchFromGitHub {
owner = "magnars";
repo = "smart-forward.el";
@@ -55091,7 +55867,7 @@
sha256 = "19l47xqzjhhm9j3izik0imssip5ygg3lnflb9ixsz1js571aaxha";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/smart-forward";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/091dcc3775ec2137cb61d66df4e72aca4900897a/recipes/smart-forward";
sha256 = "032yc45c19fl886jmi5q04r6q47xz5rphb040wjvpd4fnb06hr8c";
name = "smart-forward";
};
@@ -55104,7 +55880,7 @@
smart-indent-rigidly = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "smart-indent-rigidly";
- version = "20141206.115";
+ version = "20141205.1815";
src = fetchFromGitHub {
owner = "re5et";
repo = "smart-indent-rigidly";
@@ -55112,7 +55888,7 @@
sha256 = "0q5hxg265ad9gpclv2kzikg6jvbf3zzb1mrykxn0n7mnvdfdlhsi";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/smart-indent-rigidly";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/3083f497180d2f7d93bb9a4b98af6ae1bcbe57b9/recipes/smart-indent-rigidly";
sha256 = "12qggg1m28mlvkdn52dig8bwv58pvipkvn1mlc4r7w569arar44x";
name = "smart-indent-rigidly";
};
@@ -55125,7 +55901,7 @@
smart-mark = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "smart-mark";
- version = "20150912.410";
+ version = "20150911.2110";
src = fetchFromGitHub {
owner = "cheunghy";
repo = "smart-mark";
@@ -55133,7 +55909,7 @@
sha256 = "0sqvm7iwdjk057fwid4kz6wj71igiqhdarj59s17pzy6xz34afhg";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/smart-mark";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/7a0a35a06aedbfe6f66d9d8498d325540367d3ea/recipes/smart-mark";
sha256 = "1vv65sa0pwl407mbxcp653kycgx8jz87n6wshias1dp9lv21pj6v";
name = "smart-mark";
};
@@ -55146,15 +55922,15 @@
smart-mode-line = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, rich-minority }:
melpaBuild {
pname = "smart-mode-line";
- version = "20160506.1647";
+ version = "20160618.1712";
src = fetchFromGitHub {
owner = "Malabarba";
repo = "smart-mode-line";
- rev = "57c571d9811f3515582140d26a50589fcd5f6819";
- sha256 = "0cp04lxxg7q5c6w0knznz4pjb5h1k0h3zxhlsf6snpi7j2ay4560";
+ rev = "7dec98dde24dec2bb92c7a68e2539f96e550a0f3";
+ sha256 = "065mzjdg8dzaxnzf5r9lwx9bn0fzd6bjp8c9iz8hb4372hx19ff8";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/smart-mode-line";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/1e6aed365c42987d64d0cd9a8a6178339b1b39e8/recipes/smart-mode-line";
sha256 = "0qmhzlkc6mfqyaw4jaw6195b8sw0wg9pfjcijb4p0mlywf5mh5q6";
name = "smart-mode-line";
};
@@ -55167,15 +55943,15 @@
smart-mode-line-powerline-theme = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, powerline, smart-mode-line }:
melpaBuild {
pname = "smart-mode-line-powerline-theme";
- version = "20160520.1754";
+ version = "20160520.1054";
src = fetchFromGitHub {
owner = "Malabarba";
repo = "smart-mode-line";
- rev = "57c571d9811f3515582140d26a50589fcd5f6819";
- sha256 = "0cp04lxxg7q5c6w0knznz4pjb5h1k0h3zxhlsf6snpi7j2ay4560";
+ rev = "7dec98dde24dec2bb92c7a68e2539f96e550a0f3";
+ sha256 = "065mzjdg8dzaxnzf5r9lwx9bn0fzd6bjp8c9iz8hb4372hx19ff8";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/smart-mode-line-powerline-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/60072b183151e519d141ec559b4902d20c87904c/recipes/smart-mode-line-powerline-theme";
sha256 = "0hv3mx39m3l35xhz351zp98321ilr6qq9wzwn1f0ziiv814khcn4";
name = "smart-mode-line-powerline-theme";
};
@@ -55188,7 +55964,7 @@
smart-newline = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "smart-newline";
- version = "20131208.440";
+ version = "20131207.2140";
src = fetchFromGitHub {
owner = "ainame";
repo = "smart-newline.el";
@@ -55196,7 +55972,7 @@
sha256 = "1q74b0mbhly84g252a0arbyxc720rgs9a3yqf8b8s2fpfkzb95sg";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/smart-newline";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/3f729926f82d6b61f07f5c8a5e19d46afdcad568/recipes/smart-newline";
sha256 = "1kyk865vkgh05vzlggs3ii81v86fcbcxybfkv5rkyl3fyqpkza1w";
name = "smart-newline";
};
@@ -55209,7 +55985,7 @@
smart-region = callPackage ({ cl-lib ? null, emacs, expand-region, fetchFromGitHub, fetchurl, lib, melpaBuild, multiple-cursors }:
melpaBuild {
pname = "smart-region";
- version = "20150903.1603";
+ version = "20150903.903";
src = fetchFromGitHub {
owner = "uk-ar";
repo = "smart-region";
@@ -55217,7 +55993,7 @@
sha256 = "0h559cdyln5f4ignx1r86ryi7wizys0gj03dj7lfzaxr7wkd0jaf";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/smart-region";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/cf011493ee3ebc38290ee0349c8475b0588ac928/recipes/smart-region";
sha256 = "1bcvxf62bfi5lmhprma9rh670kka9p9ygbkgmv6dg6ajjfsplgwc";
name = "smart-region";
};
@@ -55230,7 +56006,7 @@
smart-shift = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "smart-shift";
- version = "20150203.825";
+ version = "20150203.125";
src = fetchFromGitHub {
owner = "hbin";
repo = "smart-shift";
@@ -55238,7 +56014,7 @@
sha256 = "0azhfffm1bkgjx4i3p9f6x2gmw8kc3fafzqj4vxxdibhn0nizqk8";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/smart-shift";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/79726ff0fbfa24a44d303cc9719f5962638b47e0/recipes/smart-shift";
sha256 = "0azahlflnh6sk081k5dcqal6nmwkjnj4dq8pv8ckwf8684zp23d3";
name = "smart-shift";
};
@@ -55251,7 +56027,7 @@
smart-tab = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "smart-tab";
- version = "20150703.1817";
+ version = "20150703.1117";
src = fetchFromGitHub {
owner = "genehack";
repo = "smart-tab";
@@ -55259,7 +56035,7 @@
sha256 = "0aighpby8khrljb67m533bwkzlsckyvv7d09cnzr1rfwxiil0ml4";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/smart-tab";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/091dcc3775ec2137cb61d66df4e72aca4900897a/recipes/smart-tab";
sha256 = "0qi8jph2c9fdsv2mqgxd7wb3q4dax3g5x2hc53kbgkjxylagjvp5";
name = "smart-tab";
};
@@ -55272,15 +56048,15 @@
smart-tabs-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "smart-tabs-mode";
- version = "20140401.129";
+ version = "20160629.952";
src = fetchFromGitHub {
owner = "jcsalomon";
repo = "smarttabs";
- rev = "cd19892677ec9a2c378c828aa7cef9a2b2bd1c0e";
- sha256 = "1s65hr7b8aggvdd1i6gkkpz6j1kqilggfnf46xvjnvdw9awmwk6b";
+ rev = "1b2f34cc33335486f2b08b864a8037092c1a2956";
+ sha256 = "07zc2iw5ijyn822z29g5xb6hhhdmg9b98pfrdwrm0kw86pypxyxk";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/smart-tabs-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/d712f0fb9538945713faf773772bb359fe6f509f/recipes/smart-tabs-mode";
sha256 = "1fmbi0ypzhsizzb1vm92hfaq23swiyiqvg0pmibavzqyc9lczhhl";
name = "smart-tabs-mode";
};
@@ -55293,7 +56069,7 @@
smart-window = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "smart-window";
- version = "20130214.2042";
+ version = "20130214.1342";
src = fetchFromGitHub {
owner = "dryman";
repo = "smart-window.el";
@@ -55301,7 +56077,7 @@
sha256 = "15834lnh7dq9kz31k06ifpnc0vz86rycz0ryildi5qd2nb7s3lw9";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/smart-window";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/627e46a75bb25cf6e71785b5dda6b037f2adbb71/recipes/smart-window";
sha256 = "1x1ncldl9njil9hhvzj5ac1l5aiyfm0f7j0d7lw8ady7xx2cy26m";
name = "smart-window";
};
@@ -55314,15 +56090,15 @@
smartparens = callPackage ({ cl-lib ? null, dash, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "smartparens";
- version = "20160521.1408";
+ version = "20160619.522";
src = fetchFromGitHub {
owner = "Fuco1";
repo = "smartparens";
- rev = "1321757dfe774782d13b0c050c292b2477877d0b";
- sha256 = "1bznffl17x2n0k8k6jadnqnjk4r90y50wrvqyygyc3ib414k933x";
+ rev = "89e9833827f02880a2a0ae8a50b9c73ad654b879";
+ sha256 = "1h9qggbxcnk05yd37wi702gayhhna6hwykbfzrpjqwwva498sgdk";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/smartparens";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/bd98f85461ef7134502d4f2aa8ce1bc764f3bda3/recipes/smartparens";
sha256 = "025nfrfw0992024i219jzm4phwf29smc5hib45s6h1s67942mqh6";
name = "smartparens";
};
@@ -55335,7 +56111,7 @@
smartrep = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "smartrep";
- version = "20150509.430";
+ version = "20150508.2130";
src = fetchFromGitHub {
owner = "myuhe";
repo = "smartrep.el";
@@ -55343,7 +56119,7 @@
sha256 = "1sjwqi8w83qxihqmcm7z0vwmrz1az0y266qgj2nwfv39bri6y4i6";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/smartrep";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/81cb649dc49767c21f79668d6bee950567b05aa0/recipes/smartrep";
sha256 = "1ypls52d51lcqhz737rqg73c6jwl6q8b3bwb29z51swyamf37rbn";
name = "smartrep";
};
@@ -55356,7 +56132,7 @@
smartscan = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "smartscan";
- version = "20131230.1639";
+ version = "20131230.939";
src = fetchFromGitHub {
owner = "mickeynp";
repo = "smart-scan";
@@ -55364,7 +56140,7 @@
sha256 = "193cxfnh263yw628ipf9gssvyq3j7mffrdmnjhvzzcsnhd1k145p";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/smartscan";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/26c73e1d15186ebf300c6397fda61a8a885a130f/recipes/smartscan";
sha256 = "0vghgmx8vnjbvsw7q5zs0qz2wm6dcng9m69b8dq81g2cq9dflbwb";
name = "smartscan";
};
@@ -55377,7 +56153,7 @@
smartwin = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "smartwin";
- version = "20160513.956";
+ version = "20160513.256";
src = fetchFromGitHub {
owner = "jerryxgh";
repo = "smartwin";
@@ -55385,7 +56161,7 @@
sha256 = "1jcaspqrm23viigk0701711bmaqsyc5fbpkszf7bg7nvhkl4pfqy";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/smartwin";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/29c5d92b518ad74f4dff2d83fb0230d49e76aaf1/recipes/smartwin";
sha256 = "0rg92j0aa8qxhr91hjj2f4w8vj5w9b4d2nmkggng44nxk8zafdif";
name = "smartwin";
};
@@ -55398,7 +56174,7 @@
smarty-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "smarty-mode";
- version = "20100703.1358";
+ version = "20100703.658";
src = fetchFromGitHub {
owner = "emacsorphanage";
repo = "smarty-mode";
@@ -55406,7 +56182,7 @@
sha256 = "1vl3nx0y2skb8sibqxvmc3wrmmd6z88hknbry348d0ik3cbr0ijx";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/smarty-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/5f2a50f62475639af011c99c6cc38928b74b3b0a/recipes/smarty-mode";
sha256 = "06cyr2330asy2dlx81g3h9gq0yhd4pbnmzfvmla7amh4pfnjg14v";
name = "smarty-mode";
};
@@ -55416,10 +56192,31 @@
license = lib.licenses.free;
};
}) {};
+ smbc = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
+ melpaBuild {
+ pname = "smbc";
+ version = "20160610.1814";
+ src = fetchFromGitHub {
+ owner = "sakshamsharma";
+ repo = "emacs-smbc";
+ rev = "d2ac4558f72bd26b175eec74e1b96b1f1cda9a6b";
+ sha256 = "1r0igbpcr0hkfljsqis6zjw5ci3xr5m0r4ixmzv08w0ri0g74ad4";
+ };
+ recipeFile = fetchurl {
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/05b4f16cd8028edc758ada842432df11c8276fd3/recipes/smbc";
+ sha256 = "0aviqa8mk8dxxnddfskq9jgz3knqhf0frj7gq7nk6ckxkrxrgqn4";
+ name = "smbc";
+ };
+ packageRequires = [];
+ meta = {
+ homepage = "https://melpa.org/#/smbc";
+ license = lib.licenses.free;
+ };
+ }) {};
smblog = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "smblog";
- version = "20160317.1230";
+ version = "20160317.630";
src = fetchFromGitHub {
owner = "aaptel";
repo = "smblog-mode";
@@ -55427,7 +56224,7 @@
sha256 = "1ca8i45dj41vif2hm87ircwm9alxdm98irfi586ybrc72s24036r";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/smblog";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/6469537a11972509fa2bfb10eb3f8816cc98efed/recipes/smblog";
sha256 = "1byalkpc1bcb6p4j4g1cwc4q2i7irxjcphb0hqh1b2k1zixrw5rr";
name = "smblog";
};
@@ -55440,7 +56237,7 @@
smeargle = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "smeargle";
- version = "20151014.742";
+ version = "20151014.42";
src = fetchFromGitHub {
owner = "syohex";
repo = "emacs-smeargle";
@@ -55448,7 +56245,7 @@
sha256 = "1smv91ggvaw37597ilvhra8cnj4p71n6v5pfazii8k85kvs6x460";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/smeargle";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/c5b985b24a23499454dc61bf071073df325de571/recipes/smeargle";
sha256 = "1dy87ah1w21csvrkq5icnx7g7g7nxqkcyggxyazqwwxvh2silibd";
name = "smeargle";
};
@@ -55461,7 +56258,7 @@
smex = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "smex";
- version = "20151212.2309";
+ version = "20151212.1609";
src = fetchFromGitHub {
owner = "nonsequitur";
repo = "smex";
@@ -55469,7 +56266,7 @@
sha256 = "0xrbkpc3w7yadpjih169cpp75gilsnx4y9akgci5vfcggv4ffm26";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/smex";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/cae2ac3513e371a256be0f1a7468e38e686c2487/recipes/smex";
sha256 = "1rwyi7gdzswafkwpfqd6zkxka1mrf4xz17kld95d2ram6cxl6zda";
name = "smex";
};
@@ -55482,14 +56279,14 @@
sml-modeline = callPackage ({ fetchbzr, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "sml-modeline";
- version = "20120110.2140";
+ version = "20120110.1440";
src = fetchbzr {
url = "lp:~nxhtml/nxhtml/main";
rev = "835";
sha256 = "1p10q1b5bvc8fvgfxynrq2kf1ygr6gad92x40zhaa5r1ksf6ryk4";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/sml-modeline";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/3438977c0bf907b7a3480e6b88b277109c663385/recipes/sml-modeline";
sha256 = "086hslzznv6fmlhkf28mcl8nh4xk802mv6w0a4zwd5px2wyyaysd";
name = "sml-modeline";
};
@@ -55502,7 +56299,7 @@
smooth-scroll = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "smooth-scroll";
- version = "20130322.514";
+ version = "20130321.2314";
src = fetchFromGitHub {
owner = "k-talo";
repo = "smooth-scroll.el";
@@ -55510,7 +56307,7 @@
sha256 = "1kkg7qhb2lmwr4siiazqny9w2z9nk799lzl5i159lfivlxcgixmk";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/smooth-scroll";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/4ad6411f76281232848c870e8f4f5bb78e6cf328/recipes/smooth-scroll";
sha256 = "1b0mjpd4dqgk7ij37145ry2jqbn1msf8rrvymn7zyckbccg83zsf";
name = "smooth-scroll";
};
@@ -55523,15 +56320,15 @@
smooth-scrolling = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "smooth-scrolling";
- version = "20160526.1132";
+ version = "20160612.341";
src = fetchFromGitHub {
owner = "aspiers";
repo = "smooth-scrolling";
- rev = "b53137fb0f6fa43e71844fb327c720acdecf5fac";
- sha256 = "01rgv2qivi06bb56jy6l80923syrrjnn9d1z4wrz9rvyamq1g2j7";
+ rev = "dcaaabf834d20e990af0cf471e04d0948cf1ff58";
+ sha256 = "0lcp437135hxpw84vj096i3vw83ckfppdviyyf468mm02ajb4068";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/smooth-scrolling";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/e156f146649a51f6ee636aef95214944a8079a27/recipes/smooth-scrolling";
sha256 = "0zy2xsmr05l2narslfgril36d7qfb55f52qm2ki6fy1r18lfiyc6";
name = "smooth-scrolling";
};
@@ -55544,7 +56341,7 @@
smotitah = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "smotitah";
- version = "20150218.1130";
+ version = "20150218.430";
src = fetchFromGitHub {
owner = "laynor";
repo = "smotitah";
@@ -55552,7 +56349,7 @@
sha256 = "1a097f1x9l0m4dizvnb742svlqsm6hlif73rk7qjar081sk1gjxx";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/smotitah";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/326c213450fc515573b963e794584b7b5ac995fa/recipes/smotitah";
sha256 = "1m5qjl3r96riljp48il8k4rb6rwys1xf1pl93d4qjhprwvz57mv2";
name = "smotitah";
};
@@ -55565,7 +56362,7 @@
smtpmail-multi = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "smtpmail-multi";
- version = "20160219.49";
+ version = "20160218.1749";
src = fetchFromGitHub {
owner = "vapniks";
repo = "smtpmail-multi";
@@ -55573,7 +56370,7 @@
sha256 = "0zknryfpg4791l7d7xv9hn2fx00rmbqw3737lfm75484hr10lymz";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/smtpmail-multi";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/835315ec2781ac90785824630510b9eae80c115a/recipes/smtpmail-multi";
sha256 = "0nc3k8ly4nx7fm3b2apga3p4svz5c9sldnlk86pz2lzra5h3b4ss";
name = "smtpmail-multi";
};
@@ -55586,7 +56383,7 @@
smyx-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "smyx-theme";
- version = "20141127.928";
+ version = "20141127.228";
src = fetchFromGitHub {
owner = "tacit7";
repo = "smyx";
@@ -55594,7 +56391,7 @@
sha256 = "1z2sdnf11wh5hz1rkrbg7fs4ha3zrbj9qnvfzq9005y89d7cs95x";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/smyx-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/40a1aeabb75438252ebea0332fe1deaf028c956d/recipes/smyx-theme";
sha256 = "1r85yxr864df5akqknl3hsrmzikr4085bqr6ijrbdj27nz00vl61";
name = "smyx-theme";
};
@@ -55607,15 +56404,15 @@
snakemake-mode = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, magit-popup, melpaBuild }:
melpaBuild {
pname = "snakemake-mode";
- version = "20160528.352";
+ version = "20160612.2326";
src = fetchFromGitHub {
owner = "kyleam";
repo = "snakemake-mode";
- rev = "3f02d1af5548d15a410ee745b9e7ebc09266a1ab";
- sha256 = "12s3ykb2flnbl6kvjn0yy11y0g5nq2k5arpgf7pqwj4wgx0fl8nb";
+ rev = "a8efc182c1ab68e65f20f7ce801921435ecf1c2f";
+ sha256 = "1hlckgqzqxkmkhzi6dhxwr69padqbfv4jjskyfdn96na5z080fl5";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/snakemake-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/c3a5b51fee1c9e6ce7e21555faa355d118d34b8d/recipes/snakemake-mode";
sha256 = "1xxd3dms5vgvpn18a70wjprka5xvri2pj9cw8qz09s640f5jf3r4";
name = "snakemake-mode";
};
@@ -55628,7 +56425,7 @@
snapshot-timemachine = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "snapshot-timemachine";
- version = "20160222.1032";
+ version = "20160222.332";
src = fetchFromGitHub {
owner = "mrBliss";
repo = "snapshot-timemachine";
@@ -55636,7 +56433,7 @@
sha256 = "0m5j1v9br7vp9m2km8xccy5vv8gis0mcgwjxfc6qhnv7kbx0sx2k";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/snapshot-timemachine";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/69376b802f0687227a78838877d89163b2893c5b/recipes/snapshot-timemachine";
sha256 = "0pvh1ilzv0ambc5cridyhjcxs58wq92bxjkisqv42yar3h3z6f8p";
name = "snapshot-timemachine";
};
@@ -55649,7 +56446,7 @@
snippet = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "snippet";
- version = "20130211.15";
+ version = "20130210.1715";
src = fetchFromGitHub {
owner = "pkazmier";
repo = "snippet.el";
@@ -55657,7 +56454,7 @@
sha256 = "1nyrfbjrg74wrqlh8229rf7ym07k2a0wscjm0kbg3sam9ryc546y";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/snippet";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/38043250c1696f61fed04c5feb6a859c36009a5e/recipes/snippet";
sha256 = "1lgpw69k5a82y70j7nximdj0bl5nzr4jhjr5fkx1cvz8hhvgdz6j";
name = "snippet";
};
@@ -55670,7 +56467,7 @@
soft-charcoal-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "soft-charcoal-theme";
- version = "20140420.1843";
+ version = "20140420.1143";
src = fetchFromGitHub {
owner = "mswift42";
repo = "soft-charcoal-theme";
@@ -55678,7 +56475,7 @@
sha256 = "07056pnjgsgw06c67776qp7jci96iqbzlprbavzz2l1j8ywz8cwm";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/soft-charcoal-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/0945169fa83a185869b905c9f7e4d37f0a5a8099/recipes/soft-charcoal-theme";
sha256 = "0i29ais1m2h9v4ghcg41zfbnaj8klgm4509nkyfkxm7wqnjd166a";
name = "soft-charcoal-theme";
};
@@ -55691,7 +56488,7 @@
soft-morning-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "soft-morning-theme";
- version = "20150918.2241";
+ version = "20150918.1541";
src = fetchFromGitHub {
owner = "mswift42";
repo = "soft-morning-theme";
@@ -55699,7 +56496,7 @@
sha256 = "06q82v1hndvznsqg0r6jrxvgxhycg9m65kay4db4yy0gmc66v2xf";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/soft-morning-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/26f26cb5cd4ed288a042d37039da83b38b9923d0/recipes/soft-morning-theme";
sha256 = "0lzg478ax6idzh6m5sf2ds4gbv096y0c0gn15dai19f58bs63xzr";
name = "soft-morning-theme";
};
@@ -55712,7 +56509,7 @@
soft-stone-theme = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "soft-stone-theme";
- version = "20140614.1035";
+ version = "20140614.335";
src = fetchFromGitHub {
owner = "mswift42";
repo = "soft-stone-theme";
@@ -55720,7 +56517,7 @@
sha256 = "030mf8b0sf9mmzwhg85zh0ccvcg768kckwvbm0yzg7vmq1x46hjl";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/soft-stone-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/e87cea74119e8239662607072a44e5314eeae7ea/recipes/soft-stone-theme";
sha256 = "05jjw9z6hqln9yj8ya2xrmjnylp7psfdj9206n30m3lwnlwx399v";
name = "soft-stone-theme";
};
@@ -55733,15 +56530,15 @@
solarized-theme = callPackage ({ cl-lib ? null, dash, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "solarized-theme";
- version = "20160515.1342";
+ version = "20160515.642";
src = fetchFromGitHub {
owner = "bbatsov";
repo = "solarized-emacs";
- rev = "37cb827e62d37e664ea7b46ef26927fd399a819a";
- sha256 = "0xrrx1lr9gc33skcgdi5hjkdgqrhlas3p22zzkrbkmiajsgmyxdf";
+ rev = "8bc7592721efdc9272029e2a6aaaac8b09104c86";
+ sha256 = "1vrfqzgqh2hdg7w770l9qvxiaxpg72rxl5gx74vvwdfgw727vcwg";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/solarized-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/cae2ac3513e371a256be0f1a7468e38e686c2487/recipes/solarized-theme";
sha256 = "15d8k32sj8i11806byvf7r57rivz391ljr0zb4dx8n8vjjkyja12";
name = "solarized-theme";
};
@@ -55754,7 +56551,7 @@
solidity-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "solidity-mode";
- version = "20160505.1103";
+ version = "20160505.403";
src = fetchFromGitHub {
owner = "ethereum";
repo = "emacs-solidity";
@@ -55762,7 +56559,7 @@
sha256 = "1mlhidfnvs2sph6qavzqz5qng78q2v4n5qc021958s29kx35i603";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/solidity-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/bb9df5ec0692352b6494d435d11166f4ea26c99e/recipes/solidity-mode";
sha256 = "1qdzdivrf5yaa80p61b9r1gryw112v5l2m2jkvkc7glhkhrcvwsx";
name = "solidity-mode";
};
@@ -55775,7 +56572,7 @@
sonic-pi = callPackage ({ cl-lib ? null, dash, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, osc }:
melpaBuild {
pname = "sonic-pi";
- version = "20150919.1230";
+ version = "20150919.530";
src = fetchFromGitHub {
owner = "repl-electric";
repo = "sonic-pi.el";
@@ -55783,7 +56580,7 @@
sha256 = "1ga35d3rhdf6ffd36q58ay6380gjvkmaiid4vscga3v7ca0dkhl1";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/sonic-pi";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/f0536c7e32ef145546e4014a1d418cbac8673eb5/recipes/sonic-pi";
sha256 = "07qxm1rkw2cbxf4g2vqk3s7xnqldqkdm2zw1qh2kqjscg5gwpkqp";
name = "sonic-pi";
};
@@ -55796,7 +56593,7 @@
soothe-theme = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "soothe-theme";
- version = "20141027.1541";
+ version = "20141027.941";
src = fetchFromGitHub {
owner = "jasonm23";
repo = "emacs-soothe-theme";
@@ -55804,7 +56601,7 @@
sha256 = "10gh1hvxq9gm29r6qzlnva7vjidd7n4kih4z2ihyvbvy9za20xqw";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/soothe-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/a63de796e73d255b89b7f311e4ad51645eeb39fc/recipes/soothe-theme";
sha256 = "000hikpsmqpbb6v13az2dv319d0f7jjpkkpgi4vzv59z6cdlrlp3";
name = "soothe-theme";
};
@@ -55817,7 +56614,7 @@
sos = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, org }:
melpaBuild {
pname = "sos";
- version = "20141215.503";
+ version = "20141214.2203";
src = fetchFromGitHub {
owner = "omouse";
repo = "emacs-sos";
@@ -55825,7 +56622,7 @@
sha256 = "086a66jlnkiv044i4japs4czw8gfs8p0n80p42ck83zm2jnznc49";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/sos";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/36e02223b4ff9c0be4662991d734ca4a4e756f4b/recipes/sos";
sha256 = "1gkd0plx7152s3dj8a9lwlwh8bgs1m006s80l10agclx6aay8rvb";
name = "sos";
};
@@ -55838,7 +56635,7 @@
sotclojure = callPackage ({ cider, clojure-mode, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, sotlisp }:
melpaBuild {
pname = "sotclojure";
- version = "20160422.311";
+ version = "20160421.2011";
src = fetchFromGitHub {
owner = "Malabarba";
repo = "speed-of-thought-clojure";
@@ -55846,7 +56643,7 @@
sha256 = "13yn2yadkpmykaly3l3xsq1bhm4sxyk8k1px555y11qi0mfdcjhh";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/sotclojure";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/3a2ccef8af91eada4449d9cd4bda6bd28272722e/recipes/sotclojure";
sha256 = "12byqjzg0pffqyq958265qq8yxxmf3iyy4m7zib492qcj8ccy090";
name = "sotclojure";
};
@@ -55859,7 +56656,7 @@
sotlisp = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "sotlisp";
- version = "20160510.4";
+ version = "20160509.1704";
src = fetchFromGitHub {
owner = "Malabarba";
repo = "speed-of-thought-lisp";
@@ -55867,7 +56664,7 @@
sha256 = "01n943kycazsw9znk7cj17qjlar91i5r25p3cmxcxh75wnh4h1vj";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/sotlisp";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/1e6aed365c42987d64d0cd9a8a6178339b1b39e8/recipes/sotlisp";
sha256 = "0zjnn6hhwy6cjvc5rhvhxcq5pmrhcyil14a48fcgwvg4lv7fbljk";
name = "sotlisp";
};
@@ -55880,15 +56677,15 @@
sound-wav = callPackage ({ cl-lib ? null, deferred, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "sound-wav";
- version = "20140303.1357";
+ version = "20160629.2126";
src = fetchFromGitHub {
owner = "syohex";
repo = "emacs-sound-wav";
- rev = "254d3a7180a65cb33a808c43b70d4e6daa121ac9";
- sha256 = "1h6h65gwxb07pscyhhhdn11h3lx3jgyfw8v1kw5m2qfrv5kh6ylq";
+ rev = "2a8c8a9bd797dfbf4a0aa1c023a464b803227ff8";
+ sha256 = "1ba1r359cb1dms24ajn0xfrqn8c9y08m6m7dwgxpylyyjwh1096y";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/sound-wav";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/8333470e3d84d5433be489a23e065c876bed2ab2/recipes/sound-wav";
sha256 = "1vrwzk6zqma7r0w5ivbx16shys6hsifj52fwlf5rxs6jg1gqdb4f";
name = "sound-wav";
};
@@ -55901,7 +56698,7 @@
soundcloud = callPackage ({ deferred, emms, fetchFromGitHub, fetchurl, json ? null, lib, melpaBuild, request, request-deferred, string-utils }:
melpaBuild {
pname = "soundcloud";
- version = "20150502.526";
+ version = "20150501.2226";
src = fetchFromGitHub {
owner = "thieman";
repo = "soundcloud.el";
@@ -55909,7 +56706,7 @@
sha256 = "1m8wcm6y80gq5rrm4brd3f20kmk54s6ph26j4lz4cmilxk6gj56v";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/soundcloud";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/7fabdb05de9b8ec18a3a566f99688b50443b6b44/recipes/soundcloud";
sha256 = "06cbr1h03k5ixam6lsr82lx3nh2kkp0416mlig0zfkd4b8a9mf8c";
name = "soundcloud";
};
@@ -55929,7 +56726,7 @@
soundklaus = callPackage ({ cl-lib ? null, dash, emacs, emms, fetchFromGitHub, fetchurl, lib, melpaBuild, pkg-info, request, s }:
melpaBuild {
pname = "soundklaus";
- version = "20160314.1331";
+ version = "20160314.731";
src = fetchFromGitHub {
owner = "r0man";
repo = "soundklaus.el";
@@ -55937,7 +56734,7 @@
sha256 = "0w5ac515ymj43p5j19nhfqk0c3251c7x3i97r550g780niby1nc5";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/soundklaus";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/811d0f1d195a0c6533fd412f0e444100e0685f90/recipes/soundklaus";
sha256 = "0b63sbgwp99ff94dxrqqp2p99j268fjkkzx0g42g726hv80d4fxb";
name = "soundklaus";
};
@@ -55950,15 +56747,15 @@
sourcekit = callPackage ({ dash, dash-functional, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "sourcekit";
- version = "20160511.517";
+ version = "20160510.2217";
src = fetchFromGitHub {
owner = "nathankot";
repo = "company-sourcekit";
- rev = "fa537304a0a6f90944d797ce58bc067603b6f987";
+ rev = "0c3ccf910e108b4a69d10b56853959a6cc352018";
sha256 = "0b0qs398kqy6jsq22hahmfrlb6v8v3bcdgi3z2kamczb0a5k0zhf";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/sourcekit";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/45969cd5cd936ea61fbef4722843b0b0092d7b72/recipes/sourcekit";
sha256 = "1lvk3m86awlinivpg89h6zvrwrdqa5ljdp563k3i4h9384w82pks";
name = "sourcekit";
};
@@ -55971,7 +56768,7 @@
sourcemap = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "sourcemap";
- version = "20160512.637";
+ version = "20160511.2337";
src = fetchFromGitHub {
owner = "syohex";
repo = "emacs-sourcemap";
@@ -55979,7 +56776,7 @@
sha256 = "0jbny1vrv3qnam3f69yrwd6n5zngnqirc5fsa3py4bdqvlqsg2rc";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/sourcemap";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/557d18259543263932fccdbaf44c4e7986bd277b/recipes/sourcemap";
sha256 = "0cjg90y6a0l59a9v7d7p12pgmr21gwd7x5msil3h6xkm15f0qcc5";
name = "sourcemap";
};
@@ -55992,7 +56789,7 @@
sourcetalk = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, request }:
melpaBuild {
pname = "sourcetalk";
- version = "20140823.1639";
+ version = "20140823.939";
src = fetchFromGitHub {
owner = "malroc";
repo = "sourcetalk_emacs";
@@ -56000,7 +56797,7 @@
sha256 = "0j4qm1y7rhb95k1zbl3c60a46l9rchzslzq36mayyw61s6yysjnv";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/sourcetalk";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/e51aed64ffd0d2583c54035bd3e822f8adbaedde/recipes/sourcetalk";
sha256 = "0qaf2q784xgl1s3m88jpwdzghpi4f3nybga3lnr1w7sb7b3yvj3z";
name = "sourcetalk";
};
@@ -56013,7 +56810,7 @@
spacegray-theme = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "spacegray-theme";
- version = "20150719.2131";
+ version = "20150719.1431";
src = fetchFromGitHub {
owner = "bruce";
repo = "emacs-spacegray-theme";
@@ -56021,7 +56818,7 @@
sha256 = "1a8jp7m9zarvljg5d9c8ydir3qcmwx05c3frs696p9nwvapf6lsb";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/spacegray-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/fada130a1e2927d98526f4629cc1101d93e787c5/recipes/spacegray-theme";
sha256 = "0khiddpsywpv9qvynpfdmybd80lbrhm68j3py6ranxlv7p79j9dx";
name = "spacegray-theme";
};
@@ -56034,15 +56831,15 @@
spaceline = callPackage ({ cl-lib ? null, dash, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, powerline, s }:
melpaBuild {
pname = "spaceline";
- version = "20160527.1418";
+ version = "20160614.826";
src = fetchFromGitHub {
owner = "TheBB";
repo = "spaceline";
- rev = "2d1a7bfb5bdaf24958f50b4bf93182847916af85";
- sha256 = "1q8r95zfrh0vxna5ml2pq9b9f66clfqcl4d2qy2aizkvzyxg6skl";
+ rev = "2b45f973b70c00cfc4d70eef4b5cb5ce3016aa14";
+ sha256 = "14634nhayhfw752xhz53r0di8rbbh59zpsz24dx2x2qr2sjdv9yv";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/spaceline";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/46e4c876aeeb0bb0d0e81dcbb8363a5db9c3ff61/recipes/spaceline";
sha256 = "0jpcj0i8ckdylrisx9b4l9kam6kkjzhhv1s7mwwi4b744rx942iw";
name = "spaceline";
};
@@ -56055,15 +56852,15 @@
spacemacs-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "spacemacs-theme";
- version = "20160508.2115";
+ version = "20160625.1047";
src = fetchFromGitHub {
owner = "nashamri";
repo = "spacemacs-theme";
- rev = "88d1717ade5364c6c5a54319eb20ae75c855274d";
- sha256 = "1giyni1havfvh6d9gm3n0za2f4b5bg3k01pvxmnri6da12m41b9b";
+ rev = "12aaaf3bb66e0316480660a551a636b6e67726f4";
+ sha256 = "1zsrbgmv4rrm7sbqncilaqnbfpazfxrckh68f98fmc2k1m6d0na6";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/spacemacs-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/6c8ac39214856c1598beca0bd609e011b562346f/recipes/spacemacs-theme";
sha256 = "0riiim6qb6x9g5hz0k3qgdymgikynlb9l07mrbfmybkv4919p992";
name = "spacemacs-theme";
};
@@ -56076,7 +56873,7 @@
spaces = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "spaces";
- version = "20130610.949";
+ version = "20130610.249";
src = fetchFromGitHub {
owner = "chumpage";
repo = "chumpy-windows";
@@ -56084,7 +56881,7 @@
sha256 = "069aqyqzjp5ljqfzm7lxkh8j8firk7041wc2jwzqha8jn9zpvbxs";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/spaces";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/fa5d57074f73cf11607f2f1610f92a0c77367f2a/recipes/spaces";
sha256 = "152x7fzjnjjdk9d9h0hbixdp3haqn5vdx3bq1nfqfrkvzychyr06";
name = "spaces";
};
@@ -56097,7 +56894,7 @@
spark = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "spark";
- version = "20160415.401";
+ version = "20160414.2101";
src = fetchFromGitHub {
owner = "alvinfrancis";
repo = "spark";
@@ -56105,7 +56902,7 @@
sha256 = "1ykqr86j17mi95s08d9fp02d7ych1331b04dcqxzxnmpkhwngyj1";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/spark";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/f4d1529ab86de7c033579b1a1d0084899c16f454/recipes/spark";
sha256 = "0dv7ixv9gw6xxhw5zm4gmv2ll4lja8hmn2pdizlqxaizpm245rkn";
name = "spark";
};
@@ -56118,7 +56915,7 @@
sparkline = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "sparkline";
- version = "20150101.1419";
+ version = "20150101.719";
src = fetchFromGitHub {
owner = "woudshoo";
repo = "sparkline";
@@ -56126,7 +56923,7 @@
sha256 = "1fqd3ycywxxmln2kzqwflc69xmqlvi9gwvmf7frn0rfv73w09cvp";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/sparkline";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/7278ca31ee3c035c8ec754af152127776f04792e/recipes/sparkline";
sha256 = "081jzaxjb32nydvr1kmyafxqxi610n0yf8lwz9vldm84famf3g7y";
name = "sparkline";
};
@@ -56139,7 +56936,7 @@
sparql-mode = callPackage ({ async, cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "sparql-mode";
- version = "20160316.1604";
+ version = "20160316.1004";
src = fetchFromGitHub {
owner = "ljos";
repo = "sparql-mode";
@@ -56147,7 +56944,7 @@
sha256 = "1bwa7vi97xlgwzyrc9cdz8i8rajlvkp4ajs8nklsqwrvzngly9lx";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/sparql-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/c3d729130a41903bb01465d0f01c34fbc508b56e/recipes/sparql-mode";
sha256 = "1xicrfmgxpb31lz30qj450w8v7dl4ipjp7b2wz54s4kn88nsfj7d";
name = "sparql-mode";
};
@@ -56159,13 +56956,13 @@
}) {};
speck = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild {
pname = "speck";
- version = "20140901.2035";
+ version = "20140901.1335";
src = fetchurl {
url = "https://www.emacswiki.org/emacs/download/speck.el";
sha256 = "1i2z57aasljia6xd2xn1mryklc2gc9c2q1fad8wn7982sl277d10";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/speck";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/9cac36b71f3690f65bd0ff78bf4a2fecf2dd5ea2/recipes/speck";
sha256 = "19h3syk4kjmcy7jy9nlsbq6gyxwl4xsi84dy66a3cpvmknm25kyg";
name = "speck";
};
@@ -56178,7 +56975,7 @@
speech-tagger = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "speech-tagger";
- version = "20160224.902";
+ version = "20160224.202";
src = fetchFromGitHub {
owner = "cosmicexplorer";
repo = "speech-tagger";
@@ -56186,7 +56983,7 @@
sha256 = "0v4v2nr680zgljr9k7rgf7mhy49bv5ixc8ksba3g1bbrz0qv5ny6";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/speech-tagger";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/db80aa5d95846ee02a9d762aa68325ab5e37dcf7/recipes/speech-tagger";
sha256 = "0sqil949ny9qjxq7kpb4zmjd7770r0qvq4sz80agw6a27mqnaajc";
name = "speech-tagger";
};
@@ -56199,14 +56996,14 @@
speechd-el = callPackage ({ fetchgit, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "speechd-el";
- version = "20141025.1812";
+ version = "20141025.1112";
src = fetchgit {
url = "git://git.freebsoft.org/git/speechd-el";
rev = "3d729817296b2ed8ad414a6aa044a8aa762259eb";
- sha256 = "0cjw47ziv50b3i95i9y0r8rvgchawzkknv5sqr882aqqb8zgy6rc";
+ sha256 = "044fmr2053vkd8s7kzd2v9qlz6lr8k88kfnxpiwpcbn7pb198iir";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/speechd-el";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/2d28c4550ae3b0f7e5fc032754d698cccda6ac0c/recipes/speechd-el";
sha256 = "07g6jwymmwkx26p3as3r370viz1cqq360cagw9ji6i0hvgrr66a0";
name = "speechd-el";
};
@@ -56219,7 +57016,7 @@
speed-type = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "speed-type";
- version = "20150121.534";
+ version = "20150120.2234";
src = fetchFromGitHub {
owner = "hagleitn";
repo = "speed-type";
@@ -56227,7 +57024,7 @@
sha256 = "102hjyr9ii2rmq8762irbwansbi023s7dg4a8n6lkadcvzfibmag";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/speed-type";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/18d6365232a78877c78b31afb95103e5c3f6971b/recipes/speed-type";
sha256 = "14q423an7v5hhfx1x039fizxcn5hcscqf2jfn9rqifg4jpq8bq5g";
name = "speed-type";
};
@@ -56240,7 +57037,7 @@
sphinx-doc = callPackage ({ cl-lib ? null, dash, fetchFromGitHub, fetchurl, lib, melpaBuild, s }:
melpaBuild {
pname = "sphinx-doc";
- version = "20160116.1217";
+ version = "20160116.517";
src = fetchFromGitHub {
owner = "naiquevin";
repo = "sphinx-doc.el";
@@ -56248,7 +57045,7 @@
sha256 = "1wif9wf8hwxk0q09cdnrmyas7zjg8l5b8jd6sjxd40ypn6dmz2ch";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/sphinx-doc";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/a3b80d346ad4fb415970beddb5f02ae795fbf1b4/recipes/sphinx-doc";
sha256 = "00h3wx2p5hzbw6sggggdrzv4jrn1wc051iqql5y2m1hsh772ic5z";
name = "sphinx-doc";
};
@@ -56261,15 +57058,15 @@
sphinx-frontend = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "sphinx-frontend";
- version = "20151122.1112";
+ version = "20160606.1020";
src = fetchFromGitHub {
owner = "kostafey";
repo = "sphinx-frontend";
- rev = "a46e81ce65fd24c03acab9311b162cad21343744";
- sha256 = "1mfp4777ppg7zg7zqj755zpfk9lmcq73hxv055ig66pz30m7x5rw";
+ rev = "e483773ac6b1366ca43128f727e2b3cc2269997f";
+ sha256 = "0k8dpqp6hzycbd504zkp7j5ar2zvf6lnn0p60i392g9pj573fnsh";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/sphinx-frontend";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/4cf72e71f159b9eaaa0834682d5dd4eb258616cf/recipes/sphinx-frontend";
sha256 = "0hdn6zjnhzyka0lzdxqfzbj3lrj767ij406zha9zw8ibbkk7cmag";
name = "sphinx-frontend";
};
@@ -56282,7 +57079,7 @@
spike-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "spike-theme";
- version = "20160530.1633";
+ version = "20160530.933";
src = fetchFromGitHub {
owner = "m31271n";
repo = "spike-theme";
@@ -56290,7 +57087,7 @@
sha256 = "0ah19a68d6fda3g5zzvqz28cms0yiadykkx7p8hiid4s4mdl41hj";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/spike-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/cd64f15c3fb7eee1bfdd0d7db5affa5c10052a6f/recipes/spike-theme";
sha256 = "06pv0zzw0w12xlafyhakf09cl0hkyzis0g2bh2jn3pv4ac2kmwkp";
name = "spike-theme";
};
@@ -56303,7 +57100,7 @@
splitjoin = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "splitjoin";
- version = "20150505.1632";
+ version = "20150505.932";
src = fetchFromGitHub {
owner = "syohex";
repo = "emacs-splitjoin";
@@ -56311,7 +57108,7 @@
sha256 = "1qdy9nc2h7mwxh7zg2p1x7yg96hxkwxqimjp6zb1119jx0s8grjc";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/splitjoin";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/51e172f46045fbb71b6a13b3521b502339a4a02b/recipes/splitjoin";
sha256 = "0l1x98fvvia8qx8g125h4d76slv0xnb3h1zxiq9xb5qh7a1h069l";
name = "splitjoin";
};
@@ -56324,7 +57121,7 @@
splitter = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "splitter";
- version = "20130705.950";
+ version = "20130705.250";
src = fetchFromGitHub {
owner = "chumpage";
repo = "chumpy-windows";
@@ -56332,7 +57129,7 @@
sha256 = "069aqyqzjp5ljqfzm7lxkh8j8firk7041wc2jwzqha8jn9zpvbxs";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/splitter";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/129f0d20616226c449bdaf672c43a06e8f281869/recipes/splitter";
sha256 = "02vdhvipzwnh6mlj25lirzxkc0shfzqfs1p4gn3smkxqx6g7mdb2";
name = "splitter";
};
@@ -56345,7 +57142,7 @@
spotify = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "spotify";
- version = "20160128.1006";
+ version = "20160128.306";
src = fetchFromGitHub {
owner = "remvee";
repo = "spotify-el";
@@ -56353,7 +57150,7 @@
sha256 = "185zkdghi10yjmzxlfafjk9d9cq760432h2y5z373ksshxc3pdpa";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/spotify";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/fb57a2d7dc46f7b0663a030e240f81c758a44e6a/recipes/spotify";
sha256 = "0pmsvxi1dsi580wkhhx8iw329agkh5yzk61bqvxzign3cd6fbq6k";
name = "spotify";
};
@@ -56366,7 +57163,7 @@
spotlight = callPackage ({ counsel, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, swiper }:
melpaBuild {
pname = "spotlight";
- version = "20150929.955";
+ version = "20150929.255";
src = fetchFromGitHub {
owner = "benmaughan";
repo = "spotlight.el";
@@ -56374,7 +57171,7 @@
sha256 = "05knlca2dvpyqp9lw8dc47fl5kh2jb04q57cygkzfjjkzvywdwq8";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/spotlight";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/26e0eba715c869c5bd295afb8971d490e80f6e2b/recipes/spotlight";
sha256 = "0mmr1spr21pi8sfy95dsgqcxn8qfsphdkfjm5w5q97lh7496z65p";
name = "spotlight";
};
@@ -56387,7 +57184,7 @@
spray = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "spray";
- version = "20160304.2320";
+ version = "20160304.1620";
src = fetchFromGitHub {
owner = "ian-kelling";
repo = "spray";
@@ -56395,7 +57192,7 @@
sha256 = "0anidv7w2vwsjv8rwkvhs3x51av3y8dp435456czy5yfq6i6vfbl";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/spray";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/d0947317319c8ccfee59461ee628eb8ae9f261fc/recipes/spray";
sha256 = "11b3wn53309ws60w8sfpfxij7vnibj6kxxsx6w1agglqx9zqngz4";
name = "spray";
};
@@ -56408,7 +57205,7 @@
springboard = callPackage ({ fetchFromGitHub, fetchurl, helm, lib, melpaBuild }:
melpaBuild {
pname = "springboard";
- version = "20160329.2009";
+ version = "20160329.1309";
src = fetchFromGitHub {
owner = "jwiegley";
repo = "springboard";
@@ -56416,7 +57213,7 @@
sha256 = "0p13q8xax2h3m6rddvmh1p9biw3d1shvwwmqfhg0c93xajlwdfqi";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/springboard";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/138b8a589725ead2fc1de9ea76c55e3eb2473872/recipes/springboard";
sha256 = "17rmsidsbb4p08vr07mfn25m17wnpadcwr4nxvp79glp5a0wyyib";
name = "springboard";
};
@@ -56429,7 +57226,7 @@
sprintly-mode = callPackage ({ fetchFromGitHub, fetchurl, furl, lib, melpaBuild }:
melpaBuild {
pname = "sprintly-mode";
- version = "20121006.734";
+ version = "20121006.34";
src = fetchFromGitHub {
owner = "sprintly";
repo = "sprintly-mode";
@@ -56437,7 +57234,7 @@
sha256 = "06rk07h92s5sljprs41y3q31q64cprx9kgs56c2j6v4c8cmsq5h6";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/sprintly-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/8730956d3f00e030e06ef54c3f2aecc10bb40f9d/recipes/sprintly-mode";
sha256 = "15i3rrv27ccpn12wwj9raaxpj7nlnrrj3lsp8vdfwph6ydvnfza4";
name = "sprintly-mode";
};
@@ -56450,7 +57247,7 @@
sproto-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "sproto-mode";
- version = "20151115.1905";
+ version = "20151115.1205";
src = fetchFromGitHub {
owner = "m2q1n9";
repo = "sproto-mode";
@@ -56458,7 +57255,7 @@
sha256 = "11igl9n2zwwar1xg651g5v0r0w6xl0grm8xns9wg80351ijrci7x";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/sproto-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/ac2b4207c4eaa3a048e245242489462a69b4af67/recipes/sproto-mode";
sha256 = "19l6si3sx2i542r5lyr9axby9hblx76m77f17vnsjf32n3r0qgma";
name = "sproto-mode";
};
@@ -56471,7 +57268,7 @@
sprunge = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild, request }:
melpaBuild {
pname = "sprunge";
- version = "20160301.343";
+ version = "20160229.2043";
src = fetchFromGitHub {
owner = "tomjakubowski";
repo = "sprunge.el";
@@ -56479,7 +57276,7 @@
sha256 = "03wjzk1ljclfjgqzkg6m7v8saaajgavyd0xskd8fg8rdkx13ki0l";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/sprunge";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/f7b9f8cc2f2f8f8e1cf80b3e76c89b9f12cacf95/recipes/sprunge";
sha256 = "199vfl6i881aks8fi9d9w4w7mnc7n443h79p3s4srcpmbyfg6g3w";
name = "sprunge";
};
@@ -56492,7 +57289,7 @@
spu = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, signal, timp }:
melpaBuild {
pname = "spu";
- version = "20160515.1057";
+ version = "20160515.357";
src = fetchFromGitHub {
owner = "mola-T";
repo = "SPU";
@@ -56500,7 +57297,7 @@
sha256 = "0ng8q1k5kwqk01h4yzqnqgv2q7hb6qvh7rdhlvncwdh68y6bdgbl";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/spu";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/8f2ef1e83c924d5411b47a931432f129db95ff2c/recipes/spu";
sha256 = "0g7j0rz6ga6x6akiijp4vg5iymvqx5d08d60cz6dccq120fi95v8";
name = "spu";
};
@@ -56513,15 +57310,15 @@
sql-impala = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "sql-impala";
- version = "20160428.158";
+ version = "20160427.1858";
src = fetchFromGitHub {
owner = "jterk";
repo = "sql-impala";
- rev = "90f1061f3604c99b303f5654e7ed0e9a01734c35";
- sha256 = "0kxnwmdwx25inyprldw3sjwjxvrmran6wpm80ghai374j3arkabw";
+ rev = "e7a2d79d60b0a6339d730fc39ca024c3d6c56de7";
+ sha256 = "0d1ksh1rslzn93b8g6p48ca27f3d0ls4kxjcadjmd700x4vzv88i";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/sql-impala";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/147b6d7a58cab128509589a84fb7938e56aa0604/recipes/sql-impala";
sha256 = "1jr9k48d0q00d1x5lqv0n971mla2ymnqmjfn8pw0s0vxkldq4ibi";
name = "sql-impala";
};
@@ -56534,7 +57331,7 @@
sql-indent = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "sql-indent";
- version = "20150425.216";
+ version = "20150424.1916";
src = fetchFromGitHub {
owner = "bsvingen";
repo = "sql-indent";
@@ -56542,7 +57339,7 @@
sha256 = "17nbcaqx58fq4rz501xcqqcjhmibdlkaavmmzwcfwra7jv8hqljy";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/sql-indent";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/500ec53f14b8b0dca8ff80e8a2b1b60f4266562c/recipes/sql-indent";
sha256 = "13s38zdd9j127p6jxbcj4d4va8mkri5dx5zh39g465mnlzx7fp8g";
name = "sql-indent";
};
@@ -56555,7 +57352,7 @@
sql-mssql = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "sql-mssql";
- version = "20160512.1037";
+ version = "20160512.337";
src = fetchFromGitHub {
owner = "tumashu";
repo = "sql-mssql";
@@ -56563,7 +57360,7 @@
sha256 = "02jsz69j1mi082s0xfk99qrm6wskdfz20na3jc7c35f564l493hs";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/sql-mssql";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/f4df28e4f5fe01a7c4e02744c4a335047779fe1d/recipes/sql-mssql";
sha256 = "15z60d2244mxhigr52g332qzjj5ygqyl1i6c19q6vfv2z2vcvy7x";
name = "sql-mssql";
};
@@ -56576,7 +57373,7 @@
sqlite = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "sqlite";
- version = "20150417.715";
+ version = "20150417.15";
src = fetchFromGitHub {
owner = "cnngimenez";
repo = "sqlite.el";
@@ -56584,7 +57381,7 @@
sha256 = "0zlrx8sk7gwwr6a23mc22d7iinwf8p9ff16r9krqp86fyzbhnq1d";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/sqlite";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/e90b62bf61bcaf1596428ac1a40aa63a6403c161/recipes/sqlite";
sha256 = "1j23rqgq00as90nk6csi489ida6b83h1myl3icxivj2iw1iikgj1";
name = "sqlite";
};
@@ -56596,13 +57393,13 @@
}) {};
sqlplus = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild {
pname = "sqlplus";
- version = "20141009.1639";
+ version = "20141009.939";
src = fetchurl {
url = "https://www.emacswiki.org/emacs/download/sqlplus.el";
sha256 = "0xixdddcrzx6k0s8w9rp6q7b9qjpdb4l888gmcis42yvawb1i53d";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/sqlplus";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/41b1fc299cf8eeba1916a58ad8f50eb4560f0252/recipes/sqlplus";
sha256 = "1z9pf36b1581flykis9cjv7pynnp94fm4ijzjy6hvqyj81aikxpz";
name = "sqlplus";
};
@@ -56615,15 +57412,15 @@
sqlup-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "sqlup-mode";
- version = "20160531.1353";
+ version = "20160624.1307";
src = fetchFromGitHub {
owner = "Trevoke";
repo = "sqlup-mode.el";
- rev = "dc85c7bbf472b535270e2ca053dbb082a09788b6";
- sha256 = "07xz6s6c24hdgsdv96f9h91ys2v5ya4117djh7qx5lwmrnd6vi90";
+ rev = "6295ec413a2e3cc50644b342aa77ec85d744448c";
+ sha256 = "0ajixsfxpyy37k7kbaqz3dqazwc371yfd9fqdhanwn9lz6w390kk";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/sqlup-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/7fabdb05de9b8ec18a3a566f99688b50443b6b44/recipes/sqlup-mode";
sha256 = "0ngs58iri3fwv5ny707kvb6xjq98x19pzak8c9nq4qnpw3nkr83b";
name = "sqlup-mode";
};
@@ -56635,13 +57432,13 @@
}) {};
sr-speedbar = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild {
pname = "sr-speedbar";
- version = "20150804.1851";
+ version = "20150804.1151";
src = fetchurl {
url = "https://www.emacswiki.org/emacs/download/sr-speedbar.el";
sha256 = "1ffnm2kfh8cg5rdhrkqmh4krggbxvqg3s6lc1nssv88av1c5cs3i";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/sr-speedbar";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/e1f3e11958db5ecf764d6e659608220af2166fb3/recipes/sr-speedbar";
sha256 = "1zq3ysz1vpc98sz2kpq307v1fp1l4ivwgrfh2kdqkkdjm4fkya23";
name = "sr-speedbar";
};
@@ -56654,7 +57451,7 @@
srefactor = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "srefactor";
- version = "20160420.933";
+ version = "20160420.233";
src = fetchFromGitHub {
owner = "tuhdo";
repo = "semantic-refactor";
@@ -56662,7 +57459,7 @@
sha256 = "02jr9cgar2r71rrrx13rj83nd19bxajmzzgj4awzn0d93i4l5qkc";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/srefactor";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/e23115ab231ab108678608f2ad0a864f896cd0f2/recipes/srefactor";
sha256 = "01cd40jm4h00c5q2ix7cskp7klbkcd3n5763y5lqfv59bjxwdqd2";
name = "srefactor";
};
@@ -56675,7 +57472,7 @@
ssh = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "ssh";
- version = "20120904.2242";
+ version = "20120904.1542";
src = fetchFromGitHub {
owner = "ieure";
repo = "ssh-el";
@@ -56683,7 +57480,7 @@
sha256 = "1rdhdkwdhb727rj53xyxk6i00sjr58a48hfig14m12niy1k739vd";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ssh";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/b9700178edf36c4bbaf2b91f7138fbd6fb5f9ea3/recipes/ssh";
sha256 = "1jywn8wlqzc2mfylp0kbpzxv3kwzak3vxdbjabiawqv1m4bfpk5g";
name = "ssh";
};
@@ -56696,7 +57493,7 @@
ssh-agency = callPackage ({ dash, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "ssh-agency";
- version = "20160101.2335";
+ version = "20160101.1635";
src = fetchFromGitHub {
owner = "magit";
repo = "ssh-agency";
@@ -56704,7 +57501,7 @@
sha256 = "0076g1yb8xvn6s8gz5jxiz8mn448fmab574yizgakbxaxd91s1dj";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ssh-agency";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/b9a9e4bd0205908bfb99762c7daaf3be276bb03a/recipes/ssh-agency";
sha256 = "0lci3fhl2p9mwilvq1njzy13dkq5cp5ighymf3zs4gzm3w0ih3h8";
name = "ssh-agency";
};
@@ -56717,7 +57514,7 @@
ssh-config-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "ssh-config-mode";
- version = "20160326.1352";
+ version = "20160326.752";
src = fetchFromGitHub {
owner = "jhgorrell";
repo = "ssh-config-mode-el";
@@ -56725,7 +57522,7 @@
sha256 = "08nx1iwvxqs1anng32w3c2clhnjf45527j0gxz5fy6h9svmb921q";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ssh-config-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/9ce38cac422ad82f8b77a1757490daa1f5e284b0/recipes/ssh-config-mode";
sha256 = "0aihyig6q3pmk9ld519f4n3kychrg3l7r29ijd2dpvs0530md4wb";
name = "ssh-config-mode";
};
@@ -56738,7 +57535,7 @@
ssh-tunnels = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "ssh-tunnels";
- version = "20141219.1218";
+ version = "20141219.518";
src = fetchFromGitHub {
owner = "death";
repo = "ssh-tunnels";
@@ -56746,7 +57543,7 @@
sha256 = "10a5havjg4yjshpfzkhgjdwbrvl44narg09ddzynczmyzm4f01wh";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ssh-tunnels";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/b093a3a9a836bae8ce37a21188c64e9a878066e8/recipes/ssh-tunnels";
sha256 = "0zlf22wg9adkhycsasv6bfim2h0cknsvihyi1q2l2l4pjdp9ypqj";
name = "ssh-tunnels";
};
@@ -56759,7 +57556,7 @@
stack-mode = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, flycheck, haskell-mode, lib, melpaBuild }:
melpaBuild {
pname = "stack-mode";
- version = "20150923.1723";
+ version = "20150923.1023";
src = fetchFromGitHub {
owner = "commercialhaskell";
repo = "stack-ide";
@@ -56767,7 +57564,7 @@
sha256 = "1f2dxlc3dsf9ay417h1l43fxjkrb0a4gg96zd3asx9v2alpzgcim";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/stack-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/1328a676140e4b8d01af126c4043bcfa8d1b2a8c/recipes/stack-mode";
sha256 = "0s0m2lj40php7bc2i3fy9ikd5rmx4v7zbxfkp9vadmlc5s7w25gf";
name = "stack-mode";
};
@@ -56780,15 +57577,15 @@
stan-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "stan-mode";
- version = "20160117.747";
+ version = "20160626.1718";
src = fetchFromGitHub {
owner = "stan-dev";
repo = "stan-mode";
- rev = "f490f907bde35062e43872fba3eda97ea78de0e2";
- sha256 = "0nkrpx1rmzg48mi5871mgdizasv80vpald513ycx4nshyln0ymv2";
+ rev = "62109483b39c6dc20e1b55bd833c9f8ea38e7118";
+ sha256 = "0jnfhb49hi6fydffhdj1kkhrsc45zjsnm43djbsgzdnd6abbfhnr";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/stan-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/67a44a0abe675238b10decdd612b67e418caf34b/recipes/stan-mode";
sha256 = "17ph5khwwrcpyl96xnp3rsbmnk7mpwmgskxka3cfgkm190qihfqy";
name = "stan-mode";
};
@@ -56801,15 +57598,15 @@
stan-snippets = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, stan-mode, yasnippet }:
melpaBuild {
pname = "stan-snippets";
- version = "20160117.747";
+ version = "20160626.1718";
src = fetchFromGitHub {
owner = "stan-dev";
repo = "stan-mode";
- rev = "f490f907bde35062e43872fba3eda97ea78de0e2";
- sha256 = "0nkrpx1rmzg48mi5871mgdizasv80vpald513ycx4nshyln0ymv2";
+ rev = "62109483b39c6dc20e1b55bd833c9f8ea38e7118";
+ sha256 = "0jnfhb49hi6fydffhdj1kkhrsc45zjsnm43djbsgzdnd6abbfhnr";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/stan-snippets";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/eda8539b7d8da3a458a38f7536ed03580f9088c3/recipes/stan-snippets";
sha256 = "021skkvak645483s7haz1hsz98q3zd8hqi9k5zdzaqlabwdjwh85";
name = "stan-snippets";
};
@@ -56822,7 +57619,7 @@
standoff-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "standoff-mode";
- version = "20150629.142";
+ version = "20150628.1842";
src = fetchFromGitHub {
owner = "lueck";
repo = "standoff-mode";
@@ -56830,7 +57627,7 @@
sha256 = "0jq2hn4gqp71ynk0s2i21wp975in3xv2q18xx1fwd4p0yw8h5dig";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/standoff-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/98858a45f72c28eec552b119a66479ea99b60f93/recipes/standoff-mode";
sha256 = "127bzpm1cz103f1pb860yqrh7mr0rdaivrm9p6ssd01kchl9nskp";
name = "standoff-mode";
};
@@ -56843,7 +57640,7 @@
start-menu = callPackage ({ cl-lib ? null, config-parser, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "start-menu";
- version = "20160426.1425";
+ version = "20160426.725";
src = fetchFromGitHub {
owner = "lujun9972";
repo = "el-start-menu";
@@ -56851,7 +57648,7 @@
sha256 = "1w3l8ahal9hjisny382bcw9w1nh2swpb1jzf2djww5h0i4r2h36c";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/start-menu";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/88d965f6789d3f5ba3856cbf10edbc46e37b12ae/recipes/start-menu";
sha256 = "1k1lc9i9vcl2am9afq0ksrxwsy6kppl4i0v10h0w2fq5z374rdkv";
name = "start-menu";
};
@@ -56864,7 +57661,7 @@
stash = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "stash";
- version = "20151117.1527";
+ version = "20151117.827";
src = fetchFromGitHub {
owner = "vermiculus";
repo = "stash.el";
@@ -56872,7 +57669,7 @@
sha256 = "0cl2y72iagmv87kg72a46a3kap2xigwnrbk2hjgvsbxv2ng5f9cr";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/stash";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/d3837ac3f1ac82e08a5ad7193766074a4d1bfa3d/recipes/stash";
sha256 = "116k40ispv7sq3jskwc1lvmhmk3jjz4j967r732s07f5h11vk1z9";
name = "stash";
};
@@ -56885,7 +57682,7 @@
state = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "state";
- version = "20160422.1450";
+ version = "20160422.750";
src = fetchFromGitHub {
owner = "thisirs";
repo = "state";
@@ -56893,7 +57690,7 @@
sha256 = "1rjp1zsbh476njjznbsxr47x4lqs4i887yi9xvwvpcb2wcwfly81";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/state";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/82e955112089569c775e11888d9811119f84a4f8/recipes/state";
sha256 = "19y3n8wnbpgbpz4jxy2p7hjqxykg09arjp7s5v22yz7il3gn48l2";
name = "state";
};
@@ -56906,7 +57703,7 @@
status = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "status";
- version = "20151230.1508";
+ version = "20151230.808";
src = fetchFromGitHub {
owner = "tromey";
repo = "emacs-status";
@@ -56914,7 +57711,7 @@
sha256 = "0jpxmzfvg4k5q3h3gn6lrg891wjzlcps2kkij1jbdjk4jkgq386i";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/status";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/dca8976de7060fcfc37a1623280869e0cef7b0a2/recipes/status";
sha256 = "0a9lqa7a5nki5711bjrmx214kah5ndqpwh3i240gdd08mcm07ps3";
name = "status";
};
@@ -56927,7 +57724,7 @@
steam = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "steam";
- version = "20160427.1131";
+ version = "20160427.431";
src = fetchFromGitHub {
owner = "Kungsgeten";
repo = "steam.el";
@@ -56935,7 +57732,7 @@
sha256 = "142jamr8mi1nkjvivvkh2qgh5fch89xpg5wwi8q0b6hcqcsy8nqn";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/steam";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/25a45eb6297168cd0ce4c4db5574362addad5c69/recipes/steam";
sha256 = "10k408spgbxi266jk8x57zwav989is16nvwg41dknz91l76v63gw";
name = "steam";
};
@@ -56948,7 +57745,7 @@
stekene-theme = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "stekene-theme";
- version = "20141108.2111";
+ version = "20141108.1411";
src = fetchFromGitHub {
owner = "Fanael";
repo = "stekene-theme";
@@ -56956,7 +57753,7 @@
sha256 = "0w1qb8r6nrxi5hbf8l4247yqq754zfbxz64pqqcnw43cxk0qd4j3";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/stekene-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/a4be17a072d4e878c510e3ef2c73bad166375195/recipes/stekene-theme";
sha256 = "0v1kwlnrqaygzaz376a5njg9kv4yf5l35k87xga4wdd2mxfwrmf1";
name = "stekene-theme";
};
@@ -56969,7 +57766,7 @@
stem = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "stem";
- version = "20131102.1209";
+ version = "20131102.609";
src = fetchFromGitHub {
owner = "yuutayamada";
repo = "stem";
@@ -56977,7 +57774,7 @@
sha256 = "1xc4v8a35c2vpfhza15j4f89x7vyg9bbgm7xnprij7814k8iy7p0";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/stem";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/8d9c38d0d4dac86848ad0fec0aeeced009c5eac7/recipes/stem";
sha256 = "1625nbi2bmb7vzjz0s7y1cy7dp8lp83dayiib3nr2bfkv76fwkcq";
name = "stem";
};
@@ -56989,14 +57786,14 @@
}) {};
stgit = callPackage ({ fetchgit, fetchurl, lib, melpaBuild }: melpaBuild {
pname = "stgit";
- version = "20140213.1248";
+ version = "20140213.548";
src = fetchgit {
url = "git://repo.or.cz/stgit.git";
rev = "e4e04764009f749665636c4d11e0cafd9c4971e1";
- sha256 = "02sh1cwh9rnrpnsg56qrwl1q4ffh9719v2l8wccjqgd39krj9m65";
+ sha256 = "0s7si3f9b06d6pnpz412sjxryqpibxzvpmb3f91ziaycib69zg23";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/stgit";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/4ed7cc025d22d8e1e63464e43f733c78421c91c7/recipes/stgit";
sha256 = "102s9lllrcxsqs0lgbrcljwq1l3s8ri4276wck6rcypck5zgzj89";
name = "stgit";
};
@@ -57008,13 +57805,13 @@
}) {};
sticky = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild {
pname = "sticky";
- version = "20101130.352";
+ version = "20101129.2052";
src = fetchurl {
url = "https://www.emacswiki.org/emacs/download/sticky.el";
sha256 = "18izyia1j3w2c07qhkp9h6rnvw35m5k1brrrjhm51fpdv2xj65fy";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/sticky";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/1c3a9689703b8c8edbffdc966cded9ea98fc8762/recipes/sticky";
sha256 = "1xjkdwphq3m4jrazsfnzrrcrqikfdxzph3jdzkpbzk3grd4af96w";
name = "sticky";
};
@@ -57027,7 +57824,7 @@
stickyfunc-enhance = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "stickyfunc-enhance";
- version = "20150429.2014";
+ version = "20150429.1314";
src = fetchFromGitHub {
owner = "tuhdo";
repo = "semantic-stickyfunc-enhance";
@@ -57035,7 +57832,7 @@
sha256 = "16dxjsr5nj20blww4xpd4jzgjprzzh1nwvb810ggdmp9paf4iy0g";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/stickyfunc-enhance";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/e24454febf90ec18a587b2c187a2bd2101e1b7b5/recipes/stickyfunc-enhance";
sha256 = "13dh19c3bljs83l847syqlg07g33hz6sapg6j4s4xv4skix8zfks";
name = "stickyfunc-enhance";
};
@@ -57048,7 +57845,7 @@
stock-ticker = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, request, s }:
melpaBuild {
pname = "stock-ticker";
- version = "20150204.1152";
+ version = "20150204.452";
src = fetchFromGitHub {
owner = "hagleitn";
repo = "stock-ticker";
@@ -57056,7 +57853,7 @@
sha256 = "191sg32z1iagyxmbn49i1lpfihld9g9741cw2kj830s4vag4kinx";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/stock-ticker";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/75e654f7b3f785bdfead3c594fdc09730c5d33b9/recipes/stock-ticker";
sha256 = "1slcjk2avybr4v9s7gglizmaxbb3yqg6s6gdbg12m3vvj3b72lfi";
name = "stock-ticker";
};
@@ -57069,7 +57866,7 @@
strie = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "strie";
- version = "20160211.2322";
+ version = "20160211.1622";
src = fetchFromGitHub {
owner = "jcatw";
repo = "strie.el";
@@ -57077,7 +57874,7 @@
sha256 = "1kcbkf0wbmqy9slxfqg7wsyw5n2rsaz832ibrxszb642j0l8s7pr";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/strie";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/7fabdb05de9b8ec18a3a566f99688b50443b6b44/recipes/strie";
sha256 = "1ngvpbws7laqxk6mm023r5295msap12h8bh9zrsbr05yxfzhlx83";
name = "strie";
};
@@ -57090,7 +57887,7 @@
string-edit = callPackage ({ dash, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "string-edit";
- version = "20160411.856";
+ version = "20160411.156";
src = fetchFromGitHub {
owner = "magnars";
repo = "string-edit.el";
@@ -57098,7 +57895,7 @@
sha256 = "1xm7bb3cp99ahr5jrwi0p0258qcvlbddy98wmbq00kk5pihqbzsg";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/string-edit";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/20fd24f22ef734fe064c66692bf3e18eb896f1ac/recipes/string-edit";
sha256 = "1l1hqsfyi6pp4x4g1rk4s7x9zjc03wfmhy16izia8nkjhzz88fi8";
name = "string-edit";
};
@@ -57111,7 +57908,7 @@
string-inflection = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "string-inflection";
- version = "20150805.1156";
+ version = "20150805.456";
src = fetchFromGitHub {
owner = "akicho8";
repo = "string-inflection";
@@ -57119,7 +57916,7 @@
sha256 = "06qs8v2pai3pyg0spmarssmrq06xg9q60wjj46s5xxichlw9pgcf";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/string-inflection";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/5c2e2b6dba8686236c2595475cfddac5fd700e60/recipes/string-inflection";
sha256 = "1vrjcg1fa5adw16s4v9dq0fid0gfazxk15z9cawz0kmnpyzz3fg2";
name = "string-inflection";
};
@@ -57132,7 +57929,7 @@
string-utils = callPackage ({ fetchFromGitHub, fetchurl, lib, list-utils, melpaBuild }:
melpaBuild {
pname = "string-utils";
- version = "20140508.2241";
+ version = "20140508.1541";
src = fetchFromGitHub {
owner = "rolandwalker";
repo = "string-utils";
@@ -57140,7 +57937,7 @@
sha256 = "1frdspm1qgksa8cpx5gkj50xk9mgz8202pgp11lqir6l3yjcj3wq";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/string-utils";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/c9db386ab3910940addae6e925b2ac17e64e0f87/recipes/string-utils";
sha256 = "1vsvxc06fd3wardldb83i5hjfibvmiqnxvcgdns7i5i8qlsrsx4v";
name = "string-utils";
};
@@ -57152,13 +57949,13 @@
}) {};
strings = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild {
pname = "strings";
- version = "20160101.107";
+ version = "20151231.1807";
src = fetchurl {
url = "https://www.emacswiki.org/emacs/download/strings.el";
sha256 = "1sa6wd2z2qkcnjprkkm9b945qz8d0l702sv9w15wl0lngbhw84na";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/strings";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/a5d15f875b0080b12ce45cf696c581f6bbf061ba/recipes/strings";
sha256 = "0n3239y7biq3rlg74m7nqimhf654w4snnw2zm7z84isgwzz2dphk";
name = "strings";
};
@@ -57171,7 +57968,7 @@
stripe-buffer = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "stripe-buffer";
- version = "20141208.1608";
+ version = "20141208.908";
src = fetchFromGitHub {
owner = "sabof";
repo = "stripe-buffer";
@@ -57179,7 +57976,7 @@
sha256 = "0dxajh72wdcwdb9ydbcm19fmp0p1drmh1niq4r69jnbn8sah0zax";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/stripe-buffer";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/fa948128841a1cd3c5fd4c30da3841629b17d3c7/recipes/stripe-buffer";
sha256 = "02wkb9y6vykrn6a5nfnimaplj7ig8i8h6m2rvwv08f5ilbccj16a";
name = "stripe-buffer";
};
@@ -57192,14 +57989,14 @@
stumpwm-mode = callPackage ({ fetchgit, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "stumpwm-mode";
- version = "20140131.316";
+ version = "20140130.2016";
src = fetchgit {
url = "git://git.savannah.nongnu.org/stumpwm.git";
rev = "61a7cf27e49e0779a53c018b2342f5f1c5cc70b4";
- sha256 = "0wc2zfn0lrric9xbzdi8hj1fl3gfb2ag5fsb044zv52nkrmn2irm";
+ sha256 = "03is0690p7aw77c30j4r2b5gi5rv5f70wvpixy5qhcchlaxhaw82";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/stumpwm-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/3a1e6358c529e3b9e51bcfa6e2e294acbf662882/recipes/stumpwm-mode";
sha256 = "0a77mh7h7033adfbwg2fbx84789962par43q31s9msjlqw15gs86";
name = "stumpwm-mode";
};
@@ -57212,14 +58009,14 @@
stupid-indent-mode = callPackage ({ fetchgit, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "stupid-indent-mode";
- version = "20130816.2254";
+ version = "20130816.1554";
src = fetchgit {
url = "https://gist.github.com/5487564.git";
rev = "e26ff5a2c4a582c6c1940bbcd204cfeed8e65222";
sha256 = "0sw7r4sbg0vmm7gqisjdp1wansn9k64djz3p83fwmyq3qkj90ar4";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/stupid-indent-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/68cd648bde8028a39849f7beae8deae78bfb877b/recipes/stupid-indent-mode";
sha256 = "12y8qxxs04qzy09m734qg0857g4612qdswx2bh9jk7dp886fpd7p";
name = "stupid-indent-mode";
};
@@ -57232,7 +58029,7 @@
stylus-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, sws-mode }:
melpaBuild {
pname = "stylus-mode";
- version = "20150313.1612";
+ version = "20150313.1012";
src = fetchFromGitHub {
owner = "brianc";
repo = "jade-mode";
@@ -57240,7 +58037,7 @@
sha256 = "0p6pfxbl98kkwa3lgx82h967w4p0wbd9s96gvs72d74ryan07ij1";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/stylus-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/877b5a3e612e1b1d6d51e60c66b0b79f231abdb2/recipes/stylus-mode";
sha256 = "152k74q6qn2xa38v2zyd5y7ya5n26nvai5v7z5fmq7jrcndp27r5";
name = "stylus-mode";
};
@@ -57253,7 +58050,7 @@
subatomic-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "subatomic-theme";
- version = "20160126.1638";
+ version = "20160126.938";
src = fetchFromGitHub {
owner = "cryon";
repo = "subatomic";
@@ -57261,7 +58058,7 @@
sha256 = "1j63rzxnrzzqizh7fpd99dcgsy5hd7w4d2lpwl5armmixlycl5m8";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/subatomic-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/de7f6009bab3e9a5b14b7b96ab16557e81e7f078/recipes/subatomic-theme";
sha256 = "0mqas67qms492n3hn74c5nrkjpsgf9b42lp02s2dh366c075dpqc";
name = "subatomic-theme";
};
@@ -57274,7 +58071,7 @@
subatomic256-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "subatomic256-theme";
- version = "20130621.410";
+ version = "20130620.2110";
src = fetchFromGitHub {
owner = "d11wtq";
repo = "subatomic256";
@@ -57282,7 +58079,7 @@
sha256 = "1w7mimyqc25phlww20l49wlafnxp6c7dwibvphg3vwl61g0llpq8";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/subatomic256-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/06a6bdf12623847600d87a624c224b233fdf3536/recipes/subatomic256-theme";
sha256 = "1whjlkpkkirpnvvjryhlpzwphr1syz5zfyg4pb66i0db03hxwwcy";
name = "subatomic256-theme";
};
@@ -57295,7 +58092,7 @@
subemacs = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "subemacs";
- version = "20160105.1259";
+ version = "20160105.559";
src = fetchFromGitHub {
owner = "kbauer";
repo = "subemacs";
@@ -57303,7 +58100,7 @@
sha256 = "10pirwc7g9vii5cyk4vg6m5g5hlap0yg9w4qy257744c67jmaxvg";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/subemacs";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/18714a6b5ca4dcc51fa509fee1dc9afb0595c707/recipes/subemacs";
sha256 = "0sqh80jhh3v37l5af7w6k9lqvj39bd91pn6a9rwdlfk389hp90zm";
name = "subemacs";
};
@@ -57316,7 +58113,7 @@
sublime-themes = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "sublime-themes";
- version = "20160111.1022";
+ version = "20160111.322";
src = fetchFromGitHub {
owner = "owainlewis";
repo = "emacs-color-themes";
@@ -57324,7 +58121,7 @@
sha256 = "0q9p974xvswr2sijz1rs858x9sdx0rb00lkhj5cd90abn33lb260";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/sublime-themes";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/648d250c7d341b31581c839f77c1084ac29d3163/recipes/sublime-themes";
sha256 = "1nahcfcy831c7w3c69i2na0r8jsdgprffgfdvh4c41cnk4rkgdqj";
name = "sublime-themes";
};
@@ -57337,7 +58134,7 @@
sublimity = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "sublimity";
- version = "20151230.1627";
+ version = "20151230.927";
src = fetchFromGitHub {
owner = "zk-phi";
repo = "sublimity";
@@ -57345,7 +58142,7 @@
sha256 = "1kpq7kpmhgq3vjd62rr4qsc824qcyjxm50m49r7invgnmgd78h4x";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/sublimity";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/c1e78cd1e5366a9b6d04237e9bf6a7e73424be52/recipes/sublimity";
sha256 = "1xwggaalad65cxcfvmy30f141bxhpzc3fgvwziwbzi8fygbdv4nw";
name = "sublimity";
};
@@ -57357,13 +58154,13 @@
}) {};
subr-plus = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild {
pname = "subr-plus";
- version = "20160101.107";
+ version = "20151231.1807";
src = fetchurl {
url = "https://www.emacswiki.org/emacs/download/subr+.el";
sha256 = "1xxf8kgxzcwwjm96isj4zg31vw63ahivr6xch5dw8wsvk0mjks9y";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/subr+";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/400c7aede8fee84660b5010eacb93536f1c0b0a4/recipes/subr+";
sha256 = "1vrv64768f7rk58mqr4pq1fjyi5n5kfqk90hzrwbvblkkrmilmfs";
name = "subr-plus";
};
@@ -57376,7 +58173,7 @@
subshell-proc = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "subshell-proc";
- version = "20130122.2222";
+ version = "20130122.1522";
src = fetchFromGitHub {
owner = "andrewmains12";
repo = "subshell-proc";
@@ -57384,7 +58181,7 @@
sha256 = "09izm28jrzfaj469v6yd1xgjgvy6pmxarcy0rzn2ihn3c0z7mdg4";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/subshell-proc";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/bb904557529c5d9658039a10456812810541bfed/recipes/subshell-proc";
sha256 = "1fnp49yhnhsj7paj0b25vr6r03hr5kpgcrci439ffpbd2c85fkw2";
name = "subshell-proc";
};
@@ -57397,7 +58194,7 @@
sudden-death = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "sudden-death";
- version = "20140829.1438";
+ version = "20140829.738";
src = fetchFromGitHub {
owner = "yewton";
repo = "sudden-death.el";
@@ -57405,7 +58202,7 @@
sha256 = "1007xz4x1wgvxilv1qwf0a4y7hd7sqnnzwk2bdr12kfk7vq9cw2b";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/sudden-death";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/24c94bff44029b6493575a9e09d7deb78db095a9/recipes/sudden-death";
sha256 = "1wrhb3d27j07i64hvjggyajm752w4mhrhq09lfvyhz6ykp1ly3fh";
name = "sudden-death";
};
@@ -57418,15 +58215,15 @@
sudo-edit = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "sudo-edit";
- version = "20160304.726";
+ version = "20160627.1403";
src = fetchFromGitHub {
owner = "nflath";
repo = "sudo-edit";
- rev = "ba33dbcff6746b988a58e38d4f72e52364f0ba79";
- sha256 = "0bscj6nziansx846rmmrpbc4wbsngq1jg70g5ncf0f14b3achaq3";
+ rev = "2d5c7340eff4c88f29cd123a544ea2b88d14d9d9";
+ sha256 = "0hdv9sphsrvknz9w6pkds2rbv4lp14z4k3x6kl6iipdh60lgywc7";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/sudo-edit";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/3b08d4bbdb23b988db5ed7cb5a2a925b7c2e242e/recipes/sudo-edit";
sha256 = "10vz7q8m0l2dyhiy9r9nj17qlwyv032glshzljzhm1n20w8y1fq4";
name = "sudo-edit";
};
@@ -57439,7 +58236,7 @@
sudo-ext = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "sudo-ext";
- version = "20110117.810";
+ version = "20110117.110";
src = fetchFromGitHub {
owner = "rubikitch";
repo = "sudo-ext";
@@ -57447,7 +58244,7 @@
sha256 = "1ym3j9mxc8k9akk9z1m6i0gqsfcgr8k8xzz5gniw8jfarf7f4isq";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/sudo-ext";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/f8e4328cae9b4759a75da0b26ea8b68821bc71af/recipes/sudo-ext";
sha256 = "1zlnz68kzdrc7p90qmzs7fsr9ry4rl259xpyv55jh5icry290z4x";
name = "sudo-ext";
};
@@ -57459,13 +58256,13 @@
}) {};
summarye = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild {
pname = "summarye";
- version = "20130328.1127";
+ version = "20130328.527";
src = fetchurl {
url = "https://www.emacswiki.org/emacs/download/summarye.el";
sha256 = "0q5m8d6p9aqbfx17zgznkqw2jgh027xix4894wrdz91670zxd3py";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/summarye";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/85e28911e6b8173188f45331c6540681691223f2/recipes/summarye";
sha256 = "1znd96ixg1n90yjiny84igb7m8qsbiibn7s6bky8g6n2k7zzmq65";
name = "summarye";
};
@@ -57478,7 +58275,7 @@
sunny-day-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "sunny-day-theme";
- version = "20140413.2325";
+ version = "20140413.1625";
src = fetchFromGitHub {
owner = "mswift42";
repo = "sunny-day-theme";
@@ -57486,7 +58283,7 @@
sha256 = "0mhyhkjjwszwl5wzkys9pgvgx9sps9r46k1s1hpzzf4s3vi015mc";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/sunny-day-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/11642803ccc5c8dde839508c91dea2728b2b78de/recipes/sunny-day-theme";
sha256 = "1wsfnmmbzzyggzip66vr38yyzy27blxp91wx97bafj7jpg5cyhzw";
name = "sunny-day-theme";
};
@@ -57499,7 +58296,7 @@
sunshine = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "sunshine";
- version = "20160410.2217";
+ version = "20160410.1517";
src = fetchFromGitHub {
owner = "aaronbieber";
repo = "sunshine.el";
@@ -57507,7 +58304,7 @@
sha256 = "0jv1shacpxqbw6pv9rlkk8z84si85alhillhb9a2s6s36kjmybk0";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/sunshine";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/4a0ff9a4ef4bbe8de722a4f77f4a56a851497ff1/recipes/sunshine";
sha256 = "1lxiqw7k8cpq0v6p5whgxgzqrbx3sd9174r0d4qlkrpn6rcp44vv";
name = "sunshine";
};
@@ -57520,7 +58317,7 @@
suomalainen-kalenteri = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "suomalainen-kalenteri";
- version = "20151129.1204";
+ version = "20151129.504";
src = fetchFromGitHub {
owner = "tlikonen";
repo = "suomalainen-kalenteri";
@@ -57528,7 +58325,7 @@
sha256 = "1b637p2cyc8a83qv9vba4yamzhk08f62zykqh5p35jwvym8wkann";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/suomalainen-kalenteri";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/181adf1b16253481674663fd28b195172231b7da/recipes/suomalainen-kalenteri";
sha256 = "1wzijbgcr3jc47ccr7nrdkqha16s6gw0xiccnmdczi48cvnvvlkh";
name = "suomalainen-kalenteri";
};
@@ -57541,7 +58338,7 @@
super-save = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "super-save";
- version = "20160426.1629";
+ version = "20160426.929";
src = fetchFromGitHub {
owner = "bbatsov";
repo = "super-save";
@@ -57549,7 +58346,7 @@
sha256 = "1frm90kssrp4s6x0g4vq4jkssh8rnrfjbgwa05igsjnsbnnfxxd1";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/super-save";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/9730b65787b26d3909952cf246a01bd349e5fbab/recipes/super-save";
sha256 = "0ikfw7n2rvm3xcgnj1si92ly8w75x26071ki551ims7a8sawh52p";
name = "super-save";
};
@@ -57562,7 +58359,7 @@
supergenpass = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "supergenpass";
- version = "20130329.648";
+ version = "20130329.48";
src = fetchFromGitHub {
owner = "ober";
repo = "sgpass";
@@ -57570,7 +58367,7 @@
sha256 = "0m02snzka243adhwwgriml133n4312lhdia3wdqjcq8y2mlp3331";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/supergenpass";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/091dcc3775ec2137cb61d66df4e72aca4900897a/recipes/supergenpass";
sha256 = "0ldy6j6l6rf72w0hl195rdnrabml2a5k91200s186k0r5aja4b95";
name = "supergenpass";
};
@@ -57583,15 +58380,15 @@
suscolors-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "suscolors-theme";
- version = "20160603.30";
+ version = "20160605.406";
src = fetchFromGitHub {
owner = "TheSuspiciousWombat";
repo = "suscolors-emacs";
- rev = "f63434bd79dc15c96b387e360cf0cd4e48d0ffad";
- sha256 = "0bbvhxg64mchh3kzryx8ji7vgvm981i95qfbvajzabbdj6cmnfyw";
+ rev = "15931dac6ece2a42d7be78e4d448d25d55990d54";
+ sha256 = "1av0ysw3l56sf8f0fg3mldx9ifw1rd74mw92cyvqvqx1k7na5pmz";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/suscolors-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/100c3244cfce8691240b11bc8a1d95ede3aae4fe/recipes/suscolors-theme";
sha256 = "08sh20lmhqzpxb55nmqwsfv4xd6sjirh592in7s6vl52r3hl0jkh";
name = "suscolors-theme";
};
@@ -57604,7 +58401,7 @@
svg-mode-line-themes = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, xmlgen }:
melpaBuild {
pname = "svg-mode-line-themes";
- version = "20150425.2206";
+ version = "20150425.1506";
src = fetchFromGitHub {
owner = "sabof";
repo = "svg-mode-line-themes";
@@ -57612,7 +58409,7 @@
sha256 = "14h40s0arc2i898r9yysn256z6l8jkrnmqvrdg7p7658c0klz5ic";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/svg-mode-line-themes";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/2ca54d78b5e87c3bb582b178e4892af2bf447d1e/recipes/svg-mode-line-themes";
sha256 = "12lnszcb9bl32n9wir7vf8xiyyv7njw4xg21aj9x4dasmidyx506";
name = "svg-mode-line-themes";
};
@@ -57622,10 +58419,31 @@
license = lib.licenses.free;
};
}) {};
+ swagger-to-org = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, json ? null, lib, melpaBuild }:
+ melpaBuild {
+ pname = "swagger-to-org";
+ version = "20160610.1956";
+ src = fetchFromGitHub {
+ owner = "ahungry";
+ repo = "swagger-to-org";
+ rev = "181357c71ea24bede263f5706d8781ad65e16877";
+ sha256 = "0x1mxxvlhhs34j869cy68gy5pgmvpfliyl9vlrlwm3z8apbip9gp";
+ };
+ recipeFile = fetchurl {
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/4d5a7f017593e73ea48c0e535ecf3809536bcde5/recipes/swagger-to-org";
+ sha256 = "1m40f5njxcxmc2snaz2q43b4scwgp51y761kq6klixjvafi0pv86";
+ name = "swagger-to-org";
+ };
+ packageRequires = [ cl-lib emacs json ];
+ meta = {
+ homepage = "https://melpa.org/#/swagger-to-org";
+ license = lib.licenses.free;
+ };
+ }) {};
swap-buffers = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "swap-buffers";
- version = "20150506.2339";
+ version = "20150506.1639";
src = fetchFromGitHub {
owner = "ekazakov";
repo = "swap-buffers";
@@ -57633,7 +58451,7 @@
sha256 = "1kn70570r6x0h1xfs1vr8as27pjfanyhml140yms60gdjb4ssf9r";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/swap-buffers";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/2a0172aaebdf4e0b6f6dd3093482e3cf3eb796d4/recipes/swap-buffers";
sha256 = "0ih5dhnqy3c9nlfz9m2zwy4q4jaam09ykbdqhsxx2hnwjk7p35bw";
name = "swap-buffers";
};
@@ -57646,7 +58464,7 @@
swap-regions = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "swap-regions";
- version = "20160413.1923";
+ version = "20160413.1223";
src = fetchFromGitHub {
owner = "xuchunyang";
repo = "swap-regions.el";
@@ -57654,7 +58472,7 @@
sha256 = "1m0apxjcj6xhbic36il1mbbril6pw2h6d9kmsb0jhibyy6mc8r78";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/swap-regions";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/6805c7710618ed1178ffd3488295d4d6b33e8ebe/recipes/swap-regions";
sha256 = "0gl4vr7wjh5gjskrwbqypaqyfigpgh379bm4l2gvbsbhahsmbj67";
name = "swap-regions";
};
@@ -57666,13 +58484,13 @@
}) {};
swbuff-x = callPackage ({ fetchurl, lib, melpaBuild, swbuff }: melpaBuild {
pname = "swbuff-x";
- version = "20130607.1214";
+ version = "20130607.514";
src = fetchurl {
url = "https://www.emacswiki.org/emacs/download/swbuff-x.el";
sha256 = "1fkicyjvanh8yk2y27sq075sarcyqhsdz0r4xhillpnv34ji98r5";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/swbuff-x";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/42bac16fa83eb3df693835326444f4bd4255cf1d/recipes/swbuff-x";
sha256 = "1wglcxgfr839lynwsl8i7fm70sxxjidy3ib6ibz0kgiwr41rh49y";
name = "swbuff-x";
};
@@ -57685,7 +58503,7 @@
sweetgreen = callPackage ({ cl-lib ? null, dash, fetchFromGitHub, fetchurl, helm, lib, melpaBuild, request }:
melpaBuild {
pname = "sweetgreen";
- version = "20151207.1816";
+ version = "20151207.1116";
src = fetchFromGitHub {
owner = "CestDiego";
repo = "sweetgreen.el";
@@ -57693,7 +58511,7 @@
sha256 = "10blwlwg1ry9jznf1a6iss5s0z8sj9gc02ayf5qv92mgxvjhrhdn";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/sweetgreen";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/63812707948e6dcc00e00ebc3c423469593e80fd/recipes/sweetgreen";
sha256 = "1v75wk0gq5fkz8i1r8pl4gqnxbv1d80isyn48w2hxj2fmdn2xhpy";
name = "sweetgreen";
};
@@ -57706,7 +58524,7 @@
swift-mode = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "swift-mode";
- version = "20160124.1136";
+ version = "20160124.436";
src = fetchFromGitHub {
owner = "chrisbarrett";
repo = "swift-mode";
@@ -57714,7 +58532,7 @@
sha256 = "08397a8y8hgyzwny4z9f6kgwy8d37h0iypcjps3l6lhnk35mshv0";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/swift-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/19cb133191cd6f9623e99e958d360113595e756a/recipes/swift-mode";
sha256 = "1imr53f8agfza9zxs1h1mwyhg7yaywqqffd1lsvm1m84nvxvri2d";
name = "swift-mode";
};
@@ -57727,15 +58545,15 @@
swiper = callPackage ({ emacs, fetchFromGitHub, fetchurl, ivy, lib, melpaBuild }:
melpaBuild {
pname = "swiper";
- version = "20160602.918";
+ version = "20160630.1502";
src = fetchFromGitHub {
owner = "abo-abo";
repo = "swiper";
- rev = "c960de51ce4e868daedb91e523ff6267a3113c3a";
- sha256 = "0zlcfyw7wi5djg54bzxnyqnqsf5pa2c3v96bas76n08k9fazk9m8";
+ rev = "aaad35472a5b74dfaeca93aa0de2327cf06ffe3d";
+ sha256 = "1f570vxp5gp28wpxq92050n6vx0lvz8288x4sp8pfpizz9dyxd9p";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/swiper";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/swiper";
sha256 = "0qaia5pgsjsmrfmcdj72jmj39zq82wg4i5l2mb2z6jlf1jpbk6y9";
name = "swiper";
};
@@ -57748,7 +58566,7 @@
swiper-helm = callPackage ({ emacs, fetchFromGitHub, fetchurl, helm, lib, melpaBuild, swiper }:
melpaBuild {
pname = "swiper-helm";
- version = "20151116.1230";
+ version = "20151116.530";
src = fetchFromGitHub {
owner = "abo-abo";
repo = "swiper-helm";
@@ -57756,7 +58574,7 @@
sha256 = "1fr9vs0574g93mq88d25nmj93hrx4d4s2d0im6wk156k2yb8ha2b";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/swiper-helm";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/674c709490e13267e09417e08953ff76bfbaddb7/recipes/swiper-helm";
sha256 = "011ln6vny7z5vw67cpzldxf5n6sk2hjdkllyf7v6sf4m62ws93ph";
name = "swiper-helm";
};
@@ -57769,7 +58587,7 @@
switch-window = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "switch-window";
- version = "20160229.1234";
+ version = "20160229.534";
src = fetchFromGitHub {
owner = "dimitri";
repo = "switch-window";
@@ -57777,7 +58595,7 @@
sha256 = "09ba45zbya2a72prq13pjg9pgbs86c6kayf8q2papvr9f5yv57xa";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/switch-window";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/7d2204e3b53ade1e400e143ac219f3c7ab63a1e9/recipes/switch-window";
sha256 = "02f0zjvlzms66w1ryhk1cbr4rqwklzvgcjfiicj0lcnqqx61m2k2";
name = "switch-window";
};
@@ -57790,7 +58608,7 @@
swoop = callPackage ({ async, emacs, fetchFromGitHub, fetchurl, ht, lib, melpaBuild, pcre2el }:
melpaBuild {
pname = "swoop";
- version = "20160120.1815";
+ version = "20160120.1115";
src = fetchFromGitHub {
owner = "ShingoFukuyama";
repo = "emacs-swoop";
@@ -57798,7 +58616,7 @@
sha256 = "10ka6f86n07xlf0z7w35db0mzp2zk4xhr6jd19kjdrn2j0ynlcw5";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/swoop";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/3a0a1f6e4ce4b06d4282f1cbb33d45f507a12c30/recipes/swoop";
sha256 = "0r265rwfbl1iyclnspxpbzf2w1q0w8dnc0wv5mz5g6hhcrr0iv6g";
name = "swoop";
};
@@ -57811,7 +58629,7 @@
sws-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "sws-mode";
- version = "20150317.2045";
+ version = "20150317.1445";
src = fetchFromGitHub {
owner = "brianc";
repo = "jade-mode";
@@ -57819,7 +58637,7 @@
sha256 = "0p6pfxbl98kkwa3lgx82h967w4p0wbd9s96gvs72d74ryan07ij1";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/sws-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/877b5a3e612e1b1d6d51e60c66b0b79f231abdb2/recipes/sws-mode";
sha256 = "0b12dsad0piih1qygjj0n7rni0pl8cizbzwqm9h1dr8imy53ak4i";
name = "sws-mode";
};
@@ -57832,7 +58650,7 @@
sx = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, json ? null, let-alist, lib, markdown-mode, melpaBuild }:
melpaBuild {
pname = "sx";
- version = "20160126.101";
+ version = "20160125.1801";
src = fetchFromGitHub {
owner = "vermiculus";
repo = "sx.el";
@@ -57840,7 +58658,7 @@
sha256 = "0d0c2i8hh0wrz8vnhxpxzwj7vlrjx6lrb3cx56pn4ny9qyqfzmw3";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/sx";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/f16958a09820233fbe2abe403561fd9a012d0046/recipes/sx";
sha256 = "1ml1rkhhk3hkd16ij2zwng591rxs2yppsfq9gwd4ppk02if4v517";
name = "sx";
};
@@ -57853,7 +58671,7 @@
symon = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "symon";
- version = "20160515.404";
+ version = "20160514.2104";
src = fetchFromGitHub {
owner = "zk-phi";
repo = "symon";
@@ -57861,7 +58679,7 @@
sha256 = "1q7di9s8k710nx98wnqnbkkhdimrn0jf6z4xkm4c78l6s5idjwlz";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/symon";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/3f4bbc6b3d7b2e2a9fbe7ff7f1d47cda9c859cc0/recipes/symon";
sha256 = "11llnvngyc3xz8nd6nj86ism0hhs8p54wkscvs4yycbakbyn61lz";
name = "symon";
};
@@ -57874,7 +58692,7 @@
symon-lingr = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild, symon }:
melpaBuild {
pname = "symon-lingr";
- version = "20150719.1542";
+ version = "20150719.842";
src = fetchFromGitHub {
owner = "zk-phi";
repo = "symon-lingr";
@@ -57882,7 +58700,7 @@
sha256 = "030bglxnvrkf1f9grbhd8n11j4c6sxpabpjdr1ryx522v01fvx8j";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/symon-lingr";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/936e9a83ed73d3b6090e5c401076b6cff5d9732d/recipes/symon-lingr";
sha256 = "0kyhmw25cn10b4jv2yx7bvp8zkwcswiidpk4amyaisw25820gkv1";
name = "symon-lingr";
};
@@ -57895,7 +58713,7 @@
sync-recentf = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "sync-recentf";
- version = "20160326.2101";
+ version = "20160326.1501";
src = fetchFromGitHub {
owner = "ffevotte";
repo = "sync-recentf";
@@ -57903,7 +58721,7 @@
sha256 = "006siydqxqds0qqds0zxn821dk4pw14wyymyp03n594wgqzw7m8q";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/sync-recentf";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/9858ea35f2a3faacab56b6ccba5672956560456b/recipes/sync-recentf";
sha256 = "17aji2vcw6zfd823anzwj8pcgyxamxr87bnni085jvlz0vx6gh9c";
name = "sync-recentf";
};
@@ -57916,7 +58734,7 @@
syndicate = callPackage ({ evil, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "syndicate";
- version = "20160603.1723";
+ version = "20160603.1023";
src = fetchFromGitHub {
owner = "KNX32542";
repo = "syndicate";
@@ -57924,7 +58742,7 @@
sha256 = "1w0na1p9drdmbci7adj20amrabcpny9fb2v4bd967ils4f2wly75";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/syndicate";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/626bda1691d9c7a97fcf549f7a3f0d41d832cfde/recipes/syndicate";
sha256 = "06nmldcw5dy2shhpk6nyix7gs57gsr5s9ksj57xgg8y2j3j0da95";
name = "syndicate";
};
@@ -57937,7 +58755,7 @@
synonymous = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, request }:
melpaBuild {
pname = "synonymous";
- version = "20150909.1734";
+ version = "20150909.1034";
src = fetchFromGitHub {
owner = "toroidal-code";
repo = "synonymous.el";
@@ -57945,7 +58763,7 @@
sha256 = "02xnfkmpvjicckmp9is42fnavy9pd95s99zmf1wylxdji2hhpjxw";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/synonymous";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/ecf2c44c63e9f41f1733849bdef0d0c301485580/recipes/synonymous";
sha256 = "0vawa9qwvv6z1i7vzhkjdl1l9r1yham48yn5y8w8g1xyhxxp6rs5";
name = "synonymous";
};
@@ -57957,13 +58775,13 @@
}) {};
synonyms = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild {
pname = "synonyms";
- version = "20160328.1554";
+ version = "20160328.854";
src = fetchurl {
url = "https://www.emacswiki.org/emacs/download/synonyms.el";
sha256 = "1zkrh1krhjmhb924dlihfnmjf4gigk9lqkai8aal67h90g2q2dsz";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/synonyms";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/fd538439982dd7bd281bf78e96373b93f4d4a6b8/recipes/synonyms";
sha256 = "0rnq97jpr047gpkxhw22jj3gw09r45vn6fwkzxnxjzcmsyk492d0";
name = "synonyms";
};
@@ -57976,7 +58794,7 @@
synosaurus = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "synosaurus";
- version = "20151119.1949";
+ version = "20151119.1249";
src = fetchFromGitHub {
owner = "hpdeifel";
repo = "synosaurus";
@@ -57984,7 +58802,7 @@
sha256 = "1zz9rnwaclr95fpjyabv5rlhk36n2k8f1lzz6yqh964hv8i9562s";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/synosaurus";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/7fabdb05de9b8ec18a3a566f99688b50443b6b44/recipes/synosaurus";
sha256 = "06a48ajpickf4qr1bc14skfr8khnjjph7c35b7ajfy8jw2zwavpn";
name = "synosaurus";
};
@@ -57994,10 +58812,31 @@
license = lib.licenses.free;
};
}) {};
+ synquid = callPackage ({ emacs, fetchFromGitHub, fetchurl, flycheck, lib, melpaBuild }:
+ melpaBuild {
+ pname = "synquid";
+ version = "20160617.2356";
+ src = fetchFromGitHub {
+ owner = "cpitclaudel";
+ repo = "synquid-emacs";
+ rev = "328e50261a6d95ed046e2f07e933746ed0e606a1";
+ sha256 = "1r0ch4w8m1p9j43rciq3wdzwn1zggj959irvrp3n7hr1z6fkq4z0";
+ };
+ recipeFile = fetchurl {
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/6ccd9f265d90a5f6a95942938532f556b223e4da/recipes/synquid";
+ sha256 = "10kmd9g3qbfnyfl2bdf2s70f5sd3pyzalq18dpgq5ijkwqi019k7";
+ name = "synquid";
+ };
+ packageRequires = [ emacs flycheck ];
+ meta = {
+ homepage = "https://melpa.org/#/synquid";
+ license = lib.licenses.free;
+ };
+ }) {};
syntactic-sugar = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "syntactic-sugar";
- version = "20140508.2241";
+ version = "20140508.1541";
src = fetchFromGitHub {
owner = "rolandwalker";
repo = "syntactic-sugar";
@@ -58005,7 +58844,7 @@
sha256 = "0zi11540wwcl93xcgd2yf6b72zv01zkaqbf1jfbksg82k9038m2d";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/syntactic-sugar";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/b32b9b3b3e820e498d7531a1f82da36e5e8f4e74/recipes/syntactic-sugar";
sha256 = "12b2vpvz5h4wzxrk8jrbgc8v0w6bzzvxcyfs083fi1791qq1rw7r";
name = "syntactic-sugar";
};
@@ -58018,14 +58857,14 @@
syntax-subword = callPackage ({ fetchhg, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "syntax-subword";
- version = "20160519.2105";
+ version = "20160519.1405";
src = fetchhg {
url = "https://bitbucket.com/jpkotta/syntax-subword";
rev = "ad0db0fcb464";
sha256 = "1wcgr6scvwwfmhhjbpq3riq0gmp4g08ffbl91fpgp72j8zrc1c6x";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/syntax-subword";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/5b7972602399f9df9139cff177e38653bb0f43ed/recipes/syntax-subword";
sha256 = "1as89ffqz2h69fdwybgs5wibnrvskm7hd58vagfjkla9pjlpffpm";
name = "syntax-subword";
};
@@ -58038,7 +58877,7 @@
syslog-mode = callPackage ({ fetchFromGitHub, fetchurl, hide-lines, lib, melpaBuild }:
melpaBuild {
pname = "syslog-mode";
- version = "20160526.414";
+ version = "20160525.2114";
src = fetchFromGitHub {
owner = "vapniks";
repo = "syslog-mode";
@@ -58046,7 +58885,7 @@
sha256 = "1k3lh920p62ji5n5bvgxcfr6vc5ljssn9j0n4zydhh6ybk9j5f9n";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/syslog-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/478b307f885a06d9ced43758d8c117370152baae/recipes/syslog-mode";
sha256 = "15kh2v8jsw04vyh2lmh1ndpxli3cwp6yq66hl8mwb1i3g429az19";
name = "syslog-mode";
};
@@ -58059,7 +58898,7 @@
system-specific-settings = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "system-specific-settings";
- version = "20140818.1657";
+ version = "20140818.957";
src = fetchFromGitHub {
owner = "DarwinAwardWinner";
repo = "emacs-system-specific-settings";
@@ -58067,7 +58906,7 @@
sha256 = "1hixilnnybv2v3p1wpn7a0ybwah17grawszs3jycsjgzahpgckv7";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/system-specific-settings";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/3f52c584d7435c836ba3c95c598306ba0f5c06da/recipes/system-specific-settings";
sha256 = "1ydmxi8aw2lf78wv4m39yswbqkmcadqg0wmzg9s8b5h9bxxwvppp";
name = "system-specific-settings";
};
@@ -58080,15 +58919,15 @@
systemd = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "systemd";
- version = "20160514.1615";
+ version = "20160628.2248";
src = fetchFromGitHub {
owner = "holomorph";
repo = "systemd-mode";
- rev = "b03e616f0d0fbd512c32afcf87a596eae509abc2";
- sha256 = "0wqmpvqv5dbnniv7xpvmhw75h9xh3q5ndkrpzz3pk5b94drgm5s3";
+ rev = "0e793b05e2767f1737bd4085874cf1ba6cf07ced";
+ sha256 = "02kjq9ayp9rkhfw5xlyvs1md2zkmdmb76w1ml3bbg0dyp46nk06p";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/systemd";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/ca810e512c357d1d0130aeeb9b46b38c595e3351/recipes/systemd";
sha256 = "1ykvm8mfi3fjvrkfcy9qn0sr9mhwm9x1svrmrd0gyqk418clk5i3";
name = "systemd";
};
@@ -58101,7 +58940,7 @@
systemtap-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "systemtap-mode";
- version = "20151122.2040";
+ version = "20151122.1340";
src = fetchFromGitHub {
owner = "ruediger";
repo = "systemtap-mode";
@@ -58109,7 +58948,7 @@
sha256 = "0343ss3y9i40y3i9rr7p7bb4k9dj950zyvdv44q1abw2xrfd2xwd";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/systemtap-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/b1df01b4cccfb234971933d24de21a2b5648fd8c/recipes/systemtap-mode";
sha256 = "1l2jx6mvph0q2pdlhq7p4vwfw72rfl8k1rwi504bbkr5n5xwhhhz";
name = "systemtap-mode";
};
@@ -58122,15 +58961,15 @@
ta = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "ta";
- version = "20150604.1924";
+ version = "20160619.1145";
src = fetchFromGitHub {
owner = "kuanyui";
repo = "ta.el";
- rev = "0d946b15a88239982ec66eaa8a55ad53d85e7c3f";
- sha256 = "054l3imxk9ivq361cr15q1wym07mw3s8xzjkzqlihrfvadsq37ym";
+ rev = "668ad41e71f374f8c32c8d0532f3d8485b355d35";
+ sha256 = "1lk7hpdp6c74sdwkg2azfvj4qmbl1ghmhms3r0j4296dj8bl5k63";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ta";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/847693b5952e99597bd77223e1058536d1beeb5c/recipes/ta";
sha256 = "0kn2k4n0xfwsrniaqb36v3rxj2pf2sai3bmjksbn1g2kf5g156ll";
name = "ta";
};
@@ -58143,7 +58982,7 @@
tab-group = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "tab-group";
- version = "20140306.1550";
+ version = "20140306.850";
src = fetchFromGitHub {
owner = "tarao";
repo = "tab-group-el";
@@ -58151,7 +58990,7 @@
sha256 = "0lfvgbgvsm61kv5mcjnhnfjcnr7fy1015y0hndkf9xvdlw4hahr4";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/tab-group";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/ad758d865bde8c97d27c0d57cabe1606f8b36974/recipes/tab-group";
sha256 = "1i5lxpf3wmqnqj9mzgcn4gp1gjxp737awrzl1dml5wnarbbj4fs9";
name = "tab-group";
};
@@ -58164,7 +59003,7 @@
tab-jump-out = callPackage ({ dash, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "tab-jump-out";
- version = "20151006.330";
+ version = "20151005.2030";
src = fetchFromGitHub {
owner = "cheunghy";
repo = "tab-jump-out";
@@ -58172,7 +59011,7 @@
sha256 = "0h7sfbca1nzcjylwl7zp25yj6wxnlx8g8a50zc6sg6jg4rggi2fm";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/tab-jump-out";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/3691aaaed27d0cf67af417f75fbb693ab856bd47/recipes/tab-jump-out";
sha256 = "0nlbyzym8l8g9w2xvykpcl5r449v30gal2k1dnz74rq4y8w4rh7n";
name = "tab-jump-out";
};
@@ -58185,7 +59024,7 @@
tabbar = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "tabbar";
- version = "20160524.2301";
+ version = "20160524.1601";
src = fetchFromGitHub {
owner = "dholm";
repo = "tabbar";
@@ -58193,7 +59032,7 @@
sha256 = "1akvwm4dqq4ihphlsdn8d1mm08q923y2iqh15lvc0cd0hxp3ni0q";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/tabbar";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/806420d75561cbeffbc1b387345a56c21cc20179/recipes/tabbar";
sha256 = "1y376nz1xmchwns4fz8dixbb7hbqh4mln78zvsh7y32il98wzvx9";
name = "tabbar";
};
@@ -58206,7 +59045,7 @@
tabbar-ruler = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild, mode-icons, powerline, tabbar }:
melpaBuild {
pname = "tabbar-ruler";
- version = "20160527.648";
+ version = "20160526.2348";
src = fetchFromGitHub {
owner = "mattfidler";
repo = "tabbar-ruler.el";
@@ -58214,7 +59053,7 @@
sha256 = "1rf7qahc2h9v5r75cj8y4vn88xqgwxpdqxkh2cd1f6hy5m1p4cam";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/tabbar-ruler";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/1d69d1ef8dbab8394be01153cf9ebe8e49bf9912/recipes/tabbar-ruler";
sha256 = "10dwjj6r74g9rzdd650wa1wxhqc0q6dmff4j0qbbhmjsxvsr3y0d";
name = "tabbar-ruler";
};
@@ -58227,7 +59066,7 @@
tablist = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "tablist";
- version = "20160424.1135";
+ version = "20160424.435";
src = fetchFromGitHub {
owner = "politza";
repo = "tablist";
@@ -58235,7 +59074,7 @@
sha256 = "013gkl672vmrji03wd74azcq390lgcr71i5c5qbs0p1v4rcbvqd2";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/tablist";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/5fc0c6c02d609fb22710560337bd577f4b1e0c8f/recipes/tablist";
sha256 = "0c10g86xjhzpmc2sqjmzcmi393qskyw6d9bydqzjk3ffjzklm45p";
name = "tablist";
};
@@ -58248,7 +59087,7 @@
tabula-rasa = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "tabula-rasa";
- version = "20141216.647";
+ version = "20141215.2347";
src = fetchFromGitHub {
owner = "idomagal";
repo = "Tabula-Rasa";
@@ -58256,7 +59095,7 @@
sha256 = "1dbjfq9a7a5s9c18nrp4kcda64jkg5cp8na31kxw0hjcn98dgqa8";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/tabula-rasa";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/7fabdb05de9b8ec18a3a566f99688b50443b6b44/recipes/tabula-rasa";
sha256 = "14j92inssmm61bn475gyn0dn0rv8kvfnqyl1zq3xliy7a0jn58zz";
name = "tabula-rasa";
};
@@ -58269,7 +59108,7 @@
tagedit = callPackage ({ dash, fetchFromGitHub, fetchurl, lib, melpaBuild, s }:
melpaBuild {
pname = "tagedit";
- version = "20160516.1654";
+ version = "20160516.954";
src = fetchFromGitHub {
owner = "magnars";
repo = "tagedit";
@@ -58277,7 +59116,7 @@
sha256 = "104n6dmiis6w2psm2rxah9hg5jwaqzna6973ijr5a5rxyp4rcsz7";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/tagedit";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/8968e2cd0bd49d54a5479b2467bd4f0a97d7a969/recipes/tagedit";
sha256 = "0vfkbrxmrw4fwdz324s734zxdxm2nj3df6i8m6lgb9pizqyp2g6z";
name = "tagedit";
};
@@ -58290,7 +59129,7 @@
take-off = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, web-server }:
melpaBuild {
pname = "take-off";
- version = "20140531.1117";
+ version = "20140531.417";
src = fetchFromGitHub {
owner = "tburette";
repo = "take-off";
@@ -58298,7 +59137,7 @@
sha256 = "13zwlb5805cpv0pbr7fj5b4crlg7lb0ibslvcpszm0cz6rlifcvf";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/take-off";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/3d129ad161d8538c9db022bbd4e90eacda998cf4/recipes/take-off";
sha256 = "05vlajmirbp62rpbdwa2bimpzyl9xc331gg0lhn2rkivc0hma2ar";
name = "take-off";
};
@@ -58311,14 +59150,14 @@
tango-2-theme = callPackage ({ fetchgit, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "tango-2-theme";
- version = "20120312.2125";
+ version = "20120312.1525";
src = fetchgit {
url = "https://gist.github.com/2024464.git";
rev = "64e44c98e41ebbe3b827d54280e3b9615787daaa";
sha256 = "1lqkazis9pfcfdsb2lar4l1n4pd085v60xmnlkdrdllwamqachkk";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/tango-2-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/ab432b0eac0bcf0d40c5b3c8a78475bc0fea47d2/recipes/tango-2-theme";
sha256 = "1a9qmz99h99gpd0sxqb71c08wr8pm3bzsg3p4cvf3vcirvav9lq6";
name = "tango-2-theme";
};
@@ -58331,7 +59170,7 @@
tango-plus-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "tango-plus-theme";
- version = "20140426.11";
+ version = "20140425.1711";
src = fetchFromGitHub {
owner = "tmalsburg";
repo = "tango-plus-theme";
@@ -58339,7 +59178,7 @@
sha256 = "1gfn1yyyb9p2fi17wra1yf2j96cfjw0sifgk3c0vl63h3vmiyvjf";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/tango-plus-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/b069fa60d3bbf41168b938f71f4903e313b2c6ac/recipes/tango-plus-theme";
sha256 = "1bx9qcwvybgd0rg8a9rag8xvb5ljrwfnm5nvq793ncvbdvq6vrh5";
name = "tango-plus-theme";
};
@@ -58352,7 +59191,7 @@
tangotango-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "tangotango-theme";
- version = "20150702.1004";
+ version = "20150702.304";
src = fetchFromGitHub {
owner = "juba";
repo = "color-theme-tangotango";
@@ -58360,7 +59199,7 @@
sha256 = "11xb7xpmxvgv7mrjd2vlbjz3h5fa541aydv6bdxngjq6y3qn6wsp";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/tangotango-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/ebfcfa3ba4ca77443667a9478d59214810cd8cc2/recipes/tangotango-theme";
sha256 = "05cnvyqmh5h5mqys7qs7d9knzxzmi2x0j1avp77x5l5njzzv59s2";
name = "tangotango-theme";
};
@@ -58373,15 +59212,15 @@
tao-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "tao-theme";
- version = "20160330.1550";
+ version = "20160608.415";
src = fetchFromGitHub {
owner = "11111000000";
repo = "tao-theme-emacs";
- rev = "d6879082413f38c36a1d7f76e1c4dead676ce2dc";
- sha256 = "0y9dd39wajiafh7kql870wg2da60nvls35pymhmzrvnwnbsw8pys";
+ rev = "3aad9b4f41985d8da90432885380d94c24dd772a";
+ sha256 = "04baqjk3vg09x3p5v1mnn9yn4wzb4qa2ag9jc8baabrp19xbcl2v";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/tao-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/94b70f11655944080507744fd06464607727ecef/recipes/tao-theme";
sha256 = "0gl6zzk5ha6vl2xxf5fcnv1k42cw4axdjdcirr1c4r8jwdq3nl3a";
name = "tao-theme";
};
@@ -58394,7 +59233,7 @@
tawny-mode = callPackage ({ cider, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "tawny-mode";
- version = "20160504.1946";
+ version = "20160504.1246";
src = fetchFromGitHub {
owner = "phillord";
repo = "tawny-owl";
@@ -58402,7 +59241,7 @@
sha256 = "1cdiw4p0b18zd21vasvs6hayk9rr5mz2rsgr8j0ifsamasl7vmgw";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/tawny-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/ea9a114ff739f7d6f5d4c3167f5635ddf79bf60c/recipes/tawny-mode";
sha256 = "1xaw1six1n6rw1283fdyl15xcf6m7ngvq6gqlz0xzpf232c4b0kr";
name = "tawny-mode";
};
@@ -58415,7 +59254,7 @@
tbx2org = callPackage ({ cl-lib ? null, dash, fetchFromGitHub, fetchurl, lib, melpaBuild, s }:
melpaBuild {
pname = "tbx2org";
- version = "20140224.1659";
+ version = "20140224.959";
src = fetchFromGitHub {
owner = "istib";
repo = "tbx2org";
@@ -58423,7 +59262,7 @@
sha256 = "1jp80qywcphql1ngd4fr24lqdfwrw0bw6q9hgq5vmzgjwfxwxwd4";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/tbx2org";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/d616cbf4ad7e49807afd2f7acf0a0fd2f2a0bac4/recipes/tbx2org";
sha256 = "1yvkw65la4w12c4w6l9ai73lzng170wv4b8gry99m2bakw3wr8m8";
name = "tbx2org";
};
@@ -58436,7 +59275,7 @@
tc = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "tc";
- version = "20150114.426";
+ version = "20150113.2126";
src = fetchFromGitHub {
owner = "kozo2";
repo = "tc";
@@ -58444,7 +59283,7 @@
sha256 = "1xpkrlfqb0np9zyxk41f3pxfkw98ii4q0xh8whq4llv5bmfxynzk";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/tc";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/55fa57c74237ec7afe651d162228fae595579fe5/recipes/tc";
sha256 = "13qdnfslnik4f97lz9bxayyhgcp1knh5gaqy00ps863j3vpzjb9s";
name = "tc";
};
@@ -58457,7 +59296,7 @@
tco = callPackage ({ dash, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "tco";
- version = "20140412.1512";
+ version = "20140412.812";
src = fetchFromGitHub {
owner = "Wilfred";
repo = "tco.el";
@@ -58465,7 +59304,7 @@
sha256 = "1krway6iw62dlr4ak3kj9llqh48xjf3d84nlincap7gkrw886l4q";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/tco";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/ca33f97f0394585c8ccb31cab0ee776d1655907c/recipes/tco";
sha256 = "0hfrzwjlgynk3mydrpmic9mckak37r22fdglrfas6zdihgrg152f";
name = "tco";
};
@@ -58478,7 +59317,7 @@
tdd-status-mode-line = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "tdd-status-mode-line";
- version = "20131123.1816";
+ version = "20131123.1116";
src = fetchFromGitHub {
owner = "algernon";
repo = "tdd-status-mode-line";
@@ -58486,7 +59325,7 @@
sha256 = "1jyz6z5bk1gvmknphcnvjvbl329zm8m40yl0a1hfaj8fvhwyzdw5";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/tdd-status-mode-line";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/e2da68159ebd2301b42ac52235563a5eaaf6d2cc/recipes/tdd-status-mode-line";
sha256 = "0z1q1aw14xq72nfx7mmvz7pr2x4960l45z02jva35zxzvb1mvsgq";
name = "tdd-status-mode-line";
};
@@ -58499,7 +59338,7 @@
tea-time = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "tea-time";
- version = "20120331.1020";
+ version = "20120331.320";
src = fetchFromGitHub {
owner = "konzeptual";
repo = "tea-time";
@@ -58507,7 +59346,7 @@
sha256 = "0b4cwkwkc4i8lc4j30xc9d6xskm3gqrc2dij60ya75h92aj0lj40";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/tea-time";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/7fabdb05de9b8ec18a3a566f99688b50443b6b44/recipes/tea-time";
sha256 = "0qypwf0pgsixq6c5avbwp81i3ayy9dd2fngzdvq14pax913q8pg1";
name = "tea-time";
};
@@ -58520,7 +59359,7 @@
telepathy = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "telepathy";
- version = "20131209.1358";
+ version = "20131209.658";
src = fetchFromGitHub {
owner = "NicolasPetton";
repo = "telepathy.el";
@@ -58528,7 +59367,7 @@
sha256 = "16kr1p4lzi1ysd5r2dh0mxk60zsm5fvwa9345nfyrgdic340yscc";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/telepathy";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/485ef1745f07f29c45bf0d489eeb4fcdfda80b33/recipes/telepathy";
sha256 = "0c3d6vk7d6vqzjndlym2kk7d2zm0b15ac4142ir03p6f19rqq9pr";
name = "telepathy";
};
@@ -58541,7 +59380,7 @@
telephone-line = callPackage ({ cl-generic, cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, seq }:
melpaBuild {
pname = "telephone-line";
- version = "20160303.15";
+ version = "20160302.1715";
src = fetchFromGitHub {
owner = "dbordak";
repo = "telephone-line";
@@ -58549,7 +59388,7 @@
sha256 = "1m5224k1chb788mgj7j6cbma2xh5p7avvb1ax0jdafv5lfgikka4";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/telephone-line";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/9c998b70365fb0a210c3b9639db84034c7d45097/recipes/telephone-line";
sha256 = "0dyh9h1yk9y0217b6rxsm7m372n910vpfgw5w23lkkrwa8x8qpx3";
name = "telephone-line";
};
@@ -58562,7 +59401,7 @@
ten-hundred-mode = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "ten-hundred-mode";
- version = "20160409.1451";
+ version = "20160409.751";
src = fetchFromGitHub {
owner = "aaron-em";
repo = "ten-hundred-mode.el";
@@ -58570,7 +59409,7 @@
sha256 = "17633jachcgnibmvx433ygcfmz3j6hzli5mqbqg83r27chiq5mjx";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ten-hundred-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/4a0534044ff9ce0740414bf5dc3b104bbdbdacce/recipes/ten-hundred-mode";
sha256 = "17v38h33ka70ynq72mvma2chvlnm1k2amyvk62c65iv67rwilky3";
name = "ten-hundred-mode";
};
@@ -58583,7 +59422,7 @@
term-alert = callPackage ({ alert, emacs, f, fetchFromGitHub, fetchurl, lib, melpaBuild, term-cmd }:
melpaBuild {
pname = "term-alert";
- version = "20160517.1248";
+ version = "20160517.548";
src = fetchFromGitHub {
owner = "CallumCameron";
repo = "term-alert";
@@ -58591,7 +59430,7 @@
sha256 = "195jghl1c8ncl15nix275r4x61zlii90pnwgx4m9q2bnbwsz3ycm";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/term-alert";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/term-alert";
sha256 = "02qvfhklysfk1fd4ibdngf4crp9k5ab11zgg90hi1sp429a53f3m";
name = "term-alert";
};
@@ -58604,7 +59443,7 @@
term-cmd = callPackage ({ dash, emacs, f, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "term-cmd";
- version = "20160517.1245";
+ version = "20160517.545";
src = fetchFromGitHub {
owner = "CallumCameron";
repo = "term-cmd";
@@ -58612,7 +59451,7 @@
sha256 = "08qiipjsqc9dfbha6r2yijjbrg2s4i2mkn6zn5616086550v3kpj";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/term-cmd";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/e08ea89cf193414cce5073fc9c312f2b382bc842/recipes/term-cmd";
sha256 = "0pbz9fy9rjfpzspwq78ggf1wcvjslwvj8fvc05w4g56ydza0gqi4";
name = "term-cmd";
};
@@ -58625,15 +59464,15 @@
term-manager = callPackage ({ dash, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "term-manager";
- version = "20160602.136";
+ version = "20160605.2309";
src = fetchFromGitHub {
owner = "IvanMalison";
repo = "term-manager";
- rev = "5ee3555c2396a4cfe9089bd7fd5f10ca96b53b3b";
- sha256 = "0j2a20vl8ms657m3v9n4inr1v7l3mm70acqiqbpl6k3xb0fllxg2";
+ rev = "102dacb8c1329b3e4919636279d808ca99113c4e";
+ sha256 = "07f9bjvlgb5iaflnkh87xih0yf89cs7m58mqijyj81p0p546cw15";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/term-manager";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/0b2f7d8c8fcbb535432f8e70729d69a572e49a1a/recipes/term-manager";
sha256 = "0ab388ki7vr1wpz81bvbl2fskq9zz5bicdf5gqfg01qzv5l75iza";
name = "term-manager";
};
@@ -58646,7 +59485,7 @@
term-plus = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "term-plus";
- version = "20160404.1255";
+ version = "20160404.555";
src = fetchFromGitHub {
owner = "tarao";
repo = "term-plus-el";
@@ -58654,7 +59493,7 @@
sha256 = "0ca82vj61inn41xzk36a91g73gpg38nya4r9ajc2ldjqa5z1zdj8";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/term+";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/091dcc3775ec2137cb61d66df4e72aca4900897a/recipes/term+";
sha256 = "12lvfspqmyrapmbz3x997vf160927d325y50kxdx3s6p81r7n2n8";
name = "term-plus";
};
@@ -58667,7 +59506,7 @@
term-plus-key-intercept = callPackage ({ fetchFromGitHub, fetchurl, key-intercept, lib, melpaBuild, term-plus }:
melpaBuild {
pname = "term-plus-key-intercept";
- version = "20140211.850";
+ version = "20140211.150";
src = fetchFromGitHub {
owner = "tarao";
repo = "term-plus-ki-el";
@@ -58675,7 +59514,7 @@
sha256 = "1dql2w8xkdw52zlrc2p9x391zn8wv4dj8a6293p4s08if7gg260w";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/term+key-intercept";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/ad758d865bde8c97d27c0d57cabe1606f8b36974/recipes/term+key-intercept";
sha256 = "1564a86950xdwsrwinrs118bjsfmbv8gicq0c2dfr827v5b6zrlb";
name = "term-plus-key-intercept";
};
@@ -58688,7 +59527,7 @@
term-plus-mux = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, tab-group, term-plus }:
melpaBuild {
pname = "term-plus-mux";
- version = "20140211.849";
+ version = "20140211.149";
src = fetchFromGitHub {
owner = "tarao";
repo = "term-plus-mux-el";
@@ -58696,7 +59535,7 @@
sha256 = "12gfvcf7hl29xhg231cx76q04ll7cvfpvhkb0qs3qn1sqb50fs2q";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/term+mux";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/ad758d865bde8c97d27c0d57cabe1606f8b36974/recipes/term+mux";
sha256 = "129kzjpi5nzagqkjfikx9i7k6489dy7d3pd7ggn59p4cnh3r2rhh";
name = "term-plus-mux";
};
@@ -58706,10 +59545,31 @@
license = lib.licenses.free;
};
}) {};
+ term-projectile = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, projectile, term-manager }:
+ melpaBuild {
+ pname = "term-projectile";
+ version = "20160620.504";
+ src = fetchFromGitHub {
+ owner = "IvanMalison";
+ repo = "term-manager";
+ rev = "102dacb8c1329b3e4919636279d808ca99113c4e";
+ sha256 = "07f9bjvlgb5iaflnkh87xih0yf89cs7m58mqijyj81p0p546cw15";
+ };
+ recipeFile = fetchurl {
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/5260876280148fae28a459f07932cebb059b560e/recipes/term-projectile";
+ sha256 = "1mzyzjxkdfvf1kq9m3c1f6y6xzj1qq53rixawmnzmil5cmznvwag";
+ name = "term-projectile";
+ };
+ packageRequires = [ emacs projectile term-manager ];
+ meta = {
+ homepage = "https://melpa.org/#/term-projectile";
+ license = lib.licenses.free;
+ };
+ }) {};
term-run = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "term-run";
- version = "20151228.1005";
+ version = "20151228.305";
src = fetchFromGitHub {
owner = "10sr";
repo = "term-run-el";
@@ -58717,7 +59577,7 @@
sha256 = "149pl3zxg5kriydk5h6j95jyly6i23w4w4g4a99s4zi6ljiny6c6";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/term-run";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/7cad6343104bfe5724e068660af79a6249010164/recipes/term-run";
sha256 = "1bx3s68rgr9slsw9k01gfg7sxd4z7sarg4pi2ivril7108mhg2cs";
name = "term-run";
};
@@ -58730,7 +59590,7 @@
termbright-theme = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "termbright-theme";
- version = "20151031.335";
+ version = "20151030.2135";
src = fetchFromGitHub {
owner = "bmastenbrook";
repo = "termbright-theme-el";
@@ -58738,7 +59598,7 @@
sha256 = "0gfsqpza8phvma5y3ck0n6p197x1i33w39m3c7jmja4ml121n73d";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/termbright-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/a7151773de39fe570e3e9b351daad89db9dd267f/recipes/termbright-theme";
sha256 = "14q88qdbnyzxr8sr8i5glj674sb4150b9y6nag0dqrxs629is6xj";
name = "termbright-theme";
};
@@ -58751,15 +59611,15 @@
tern = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, json ? null, lib, melpaBuild }:
melpaBuild {
pname = "tern";
- version = "20160425.1559";
+ version = "20160607.544";
src = fetchFromGitHub {
owner = "ternjs";
repo = "tern";
- rev = "ead32cf20d976f0490043f1b85e556c499f8c688";
- sha256 = "1f03mrc8gm61vrz8w3rb1g5hvibyj52hjgknj6jrzhb7b84z1z9z";
+ rev = "ae87257ae7ddbef2dfef70b0bfd2818b5d9f6bb6";
+ sha256 = "1z5q3nnyb9an2w9184ig4186jvawpsz3bynar3izkc9z7ppvvwya";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/tern";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/eaecd67af24050c72c5df73c3a12e717f95d5059/recipes/tern";
sha256 = "1am97ssslkyijpvgk4nldi67ws48g1kpj6gisqzajrrlw5q93wvd";
name = "tern";
};
@@ -58772,15 +59632,15 @@
tern-auto-complete = callPackage ({ auto-complete, cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, tern }:
melpaBuild {
pname = "tern-auto-complete";
- version = "20151123.1553";
+ version = "20151123.853";
src = fetchFromGitHub {
owner = "ternjs";
repo = "tern";
- rev = "ead32cf20d976f0490043f1b85e556c499f8c688";
- sha256 = "1f03mrc8gm61vrz8w3rb1g5hvibyj52hjgknj6jrzhb7b84z1z9z";
+ rev = "ae87257ae7ddbef2dfef70b0bfd2818b5d9f6bb6";
+ sha256 = "1z5q3nnyb9an2w9184ig4186jvawpsz3bynar3izkc9z7ppvvwya";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/tern-auto-complete";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/eaecd67af24050c72c5df73c3a12e717f95d5059/recipes/tern-auto-complete";
sha256 = "1i99b4awph50ygcqsnppm1h48hbf8cpq1ppd4swakrwgmcy2mn26";
name = "tern-auto-complete";
};
@@ -58793,7 +59653,7 @@
tern-django = callPackage ({ emacs, f, fetchFromGitHub, fetchurl, lib, melpaBuild, tern }:
melpaBuild {
pname = "tern-django";
- version = "20160221.2023";
+ version = "20160221.1323";
src = fetchFromGitHub {
owner = "proofit404";
repo = "tern-django";
@@ -58801,7 +59661,7 @@
sha256 = "00nv6j18s6983raajfcrxfg5rfz68cgf88zrdp7fhf9l0iicim1q";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/tern-django";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/e9e128a795e4949e3d4c2f01db0161a34935f635/recipes/tern-django";
sha256 = "1pjaaffadaw8h2n7yv01ks19gw59dmh8bp8vw51hx1082r3yfvv0";
name = "tern-django";
};
@@ -58814,15 +59674,15 @@
terraform-mode = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, hcl-mode, lib, melpaBuild }:
melpaBuild {
pname = "terraform-mode";
- version = "20160503.217";
+ version = "20160621.609";
src = fetchFromGitHub {
owner = "syohex";
repo = "emacs-terraform-mode";
- rev = "3458515359c1f3c82b40e72317b7dd49c05ea873";
- sha256 = "1k0v56v7mwpb5p228c0g252szpxvpqswrmjfpk75kh32v56wp5xi";
+ rev = "a3c76a45456140b54a7f14896472e19b2cfffa00";
+ sha256 = "0m3lbm43x05sb097wcdbzmys9m1hnzikb6x5yycz456qpjy6xxd5";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/terraform-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/93e06adf34bc613edf95feaca64c69a0a2a4b567/recipes/terraform-mode";
sha256 = "1m3s390mn4pba7zk17xfk045dqr4rrpv5gw63jm18fyqipsi6scn";
name = "terraform-mode";
};
@@ -58835,7 +59695,7 @@
test-case-mode = callPackage ({ fetchFromGitHub, fetchurl, fringe-helper, lib, melpaBuild }:
melpaBuild {
pname = "test-case-mode";
- version = "20130525.1634";
+ version = "20130525.934";
src = fetchFromGitHub {
owner = "ieure";
repo = "test-case-mode";
@@ -58843,7 +59703,7 @@
sha256 = "1r3fmb8cshgh9pppdvydfcrzlmb9cgz4m04rgv69c5xv8clwcmbr";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/test-case-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/d2e0bf342713cbdf30cf98d0bbc7476b0abeb7f5/recipes/test-case-mode";
sha256 = "1iba97yvbi5vr7gvc58gq2ah6jg2s7apc9ssq7mdzki823n8z2qi";
name = "test-case-mode";
};
@@ -58856,7 +59716,7 @@
test-kitchen = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "test-kitchen";
- version = "20160516.2248";
+ version = "20160516.1548";
src = fetchFromGitHub {
owner = "jjasghar";
repo = "test-kitchen-el";
@@ -58864,7 +59724,7 @@
sha256 = "004rd6jkaklsbgka9mf2zi5qzxsl2shwl1kw0vgb963xkmk9zaz8";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/test-kitchen";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/420d18c76f593338fb28807fcbe3b884be5b1634/recipes/test-kitchen";
sha256 = "1bl3yvj56dq147yplrcwphcxiwvmx5n97y4qpkm9imiv8cnjm1g0";
name = "test-kitchen";
};
@@ -58877,7 +59737,7 @@
test-simple = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "test-simple";
- version = "20160303.936";
+ version = "20160303.236";
src = fetchFromGitHub {
owner = "rocky";
repo = "emacs-test-simple";
@@ -58885,7 +59745,7 @@
sha256 = "0i38pzqi2ih3ckfjz323d3bc3p8y9syfjr96im16wxrs1c77h814";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/test-simple";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/a4b76e053faee299f5b770a0e41aa615bf5fbf10/recipes/test-simple";
sha256 = "1l6y77fqd0l0mh2my23psi66v5ya6pbr2hgvcbsaqjnpmfm90w3g";
name = "test-simple";
};
@@ -58898,7 +59758,7 @@
textile-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "textile-mode";
- version = "20151203.953";
+ version = "20151203.253";
src = fetchFromGitHub {
owner = "juba";
repo = "textile-mode";
@@ -58906,7 +59766,7 @@
sha256 = "1qcd7vdg63q80zwz8ziaznllq1x7micmljm72s6sh3720rb5aiz2";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/textile-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/3ebe5e52bc9bb8875ca390b34ac32eb47f4e1252/recipes/textile-mode";
sha256 = "0c1l7ml9b1zipk5fhmhirrh070h0qwwiagdk84i04yvdmmcjw2nf";
name = "textile-mode";
};
@@ -58919,7 +59779,7 @@
textmate = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "textmate";
- version = "20110816.2346";
+ version = "20110816.1646";
src = fetchFromGitHub {
owner = "defunkt";
repo = "textmate.el";
@@ -58927,7 +59787,7 @@
sha256 = "1b7xxz1i84azmbz8rqpxdn18avmnqlj87hfrpbngbf6pj5h9jqjh";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/textmate";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/ad3923ac8948de75a159e916ecc22005a17458ad/recipes/textmate";
sha256 = "119w944pwarpqzcr9vys17svy1rkfs9hiln8903q9ff4lnjkpf1v";
name = "textmate";
};
@@ -58940,7 +59800,7 @@
textmate-to-yas = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "textmate-to-yas";
- version = "20160409.1908";
+ version = "20160409.1208";
src = fetchFromGitHub {
owner = "mattfidler";
repo = "textmate-to-yas.el";
@@ -58948,7 +59808,7 @@
sha256 = "1bz5ys36wd00clq9w3ahqpras368aj2b9d4bl32qc6dyp8jfknmz";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/textmate-to-yas";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/487c461bf658d50135428d72fbfbb2573a00eb7d/recipes/textmate-to-yas";
sha256 = "04agz4a41h0givfdw88qjd3c7pd418qyigsij4la5f37j5rh338l";
name = "textmate-to-yas";
};
@@ -58960,13 +59820,13 @@
}) {};
tfs = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild {
pname = "tfs";
- version = "20120508.2020";
+ version = "20120508.1320";
src = fetchurl {
url = "https://www.emacswiki.org/emacs/download/tfs.el";
sha256 = "16byw8ix7bjh5ldr8rymisq2bhc5sh7db6rhpf0x28yd6mmzn73v";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/tfs";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/800aa22df0142a7e39b2d2c3c01321f880878655/recipes/tfs";
sha256 = "10szb9mni37s2blvhl1spj96narmkrv8zhrryw9q1251z8laq5v0";
name = "tfs";
};
@@ -58979,7 +59839,7 @@
theme-changer = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "theme-changer";
- version = "20130726.419";
+ version = "20130725.2119";
src = fetchFromGitHub {
owner = "hadronzoo";
repo = "theme-changer";
@@ -58987,7 +59847,7 @@
sha256 = "0njmn5dy773v9kmwclw1m79rh52xnxl8mswcaagni2z3dvlvw4m8";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/theme-changer";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/d08b24a2aec1012751054c68f7d55bac1bd1fd11/recipes/theme-changer";
sha256 = "1qbmsghkl5gs728q0gaalc7p8q7nzv3l045jc0jdxxnb7na3gc5w";
name = "theme-changer";
};
@@ -59000,7 +59860,7 @@
theme-looper = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "theme-looper";
- version = "20150723.2004";
+ version = "20150723.1304";
src = fetchFromGitHub {
owner = "myTerminal";
repo = "theme-looper";
@@ -59008,7 +59868,7 @@
sha256 = "1kd4mazrcy5xamkvvrwsmcx63g0gp5w4264kxbk3d25bjqcf8rmj";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/theme-looper";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/861c3b96189233956b15f222702ff034ed2d8cd1/recipes/theme-looper";
sha256 = "02hz9k4ybpp4i8ik2av9rg240sjgicbf6w24zn67dmw4nc4lp9c5";
name = "theme-looper";
};
@@ -59021,7 +59881,7 @@
therapy = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "therapy";
- version = "20151113.2053";
+ version = "20151113.1353";
src = fetchFromGitHub {
owner = "abingham";
repo = "therapy";
@@ -59029,7 +59889,7 @@
sha256 = "12kz4alyf3y2i7lkvi26hcxy55v0blsrxv5srx9fv5jhxkdz1vq1";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/therapy";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/34e1bfdc684aaa7ebfbaa0ed60f8322c3de8a40d/recipes/therapy";
sha256 = "0y040ghb0y6aq0nchqr09vapz6h6112rkwxkqsx0v7xmqrqfjvhh";
name = "therapy";
};
@@ -59041,13 +59901,13 @@
}) {};
thesaurus = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild {
pname = "thesaurus";
- version = "20121125.2037";
+ version = "20121125.1337";
src = fetchurl {
url = "https://www.emacswiki.org/emacs/download/thesaurus.el";
sha256 = "0zcyasdzb7dvmld8418cy2mg8mpdx01bv44cm0sp5950scrypsaq";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/thesaurus";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/9734291106ca0bcf018175af8051fe9d2b1cbfa9/recipes/thesaurus";
sha256 = "1nyjk9jr1xvdkil13ylfsgg7q2sx71za05gi8m2v5f45pbmbi50h";
name = "thesaurus";
};
@@ -59060,13 +59920,13 @@
thing-cmds = callPackage ({ fetchurl, hide-comnt, lib, melpaBuild }:
melpaBuild {
pname = "thing-cmds";
- version = "20160101.109";
+ version = "20151231.1809";
src = fetchurl {
url = "https://www.emacswiki.org/emacs/download/thing-cmds.el";
sha256 = "1nclwxb63ffbc4wsga9ngkfcxsw88za0c4663fh9x64rl4db4hn8";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/thing-cmds";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/a5d15f875b0080b12ce45cf696c581f6bbf061ba/recipes/thing-cmds";
sha256 = "133bm2cw9ar6m2amj0rrq4wbj9c3zl61gaprx0vlasxj2cyxs7yw";
name = "thing-cmds";
};
@@ -59078,13 +59938,13 @@
}) {};
thingatpt-plus = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild {
pname = "thingatpt-plus";
- version = "20160101.110";
+ version = "20160620.1153";
src = fetchurl {
url = "https://www.emacswiki.org/emacs/download/thingatpt+.el";
- sha256 = "0ijz0mj095wycpc3as5fiikrwazljk0c04rh089ch0mzc95g3vqq";
+ sha256 = "1j6p089b2zdzf2mps642my24aa79ldpfa79rxpz1za8ixrk4333l";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/thingatpt+";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/a5d15f875b0080b12ce45cf696c581f6bbf061ba/recipes/thingatpt+";
sha256 = "0w031lzjl5phvzsmbbxn2fpziwkmdyxsn08h6b9lxbss1prhx7aa";
name = "thingatpt-plus";
};
@@ -59097,7 +59957,7 @@
thingopt = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "thingopt";
- version = "20160521.118";
+ version = "20160520.1818";
src = fetchFromGitHub {
owner = "m2ym";
repo = "thingopt-el";
@@ -59105,7 +59965,7 @@
sha256 = "12zpn0sy2yg37jjjx12h3kln56241b3z09bn5zavmjfdwnr9jd0a";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/thingopt";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/1b82d4102fa2c7622e76dae1154aaa8340b7f4b8/recipes/thingopt";
sha256 = "0yvzq1z2nrldr8vhcvxqgzvh4gbrjjwfmprg59p4v5hlxvhxsb1y";
name = "thingopt";
};
@@ -59118,7 +59978,7 @@
thread-dump = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "thread-dump";
- version = "20130323.1825";
+ version = "20130323.1225";
src = fetchFromGitHub {
owner = "nd";
repo = "thread-dump.el";
@@ -59126,7 +59986,7 @@
sha256 = "0rjcrvw9v2y10ahycra53bwbccpwqxxwn2c21wjj1kfs0kdwhs9p";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/thread-dump";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/091dcc3775ec2137cb61d66df4e72aca4900897a/recipes/thread-dump";
sha256 = "0dzr86jyf2j49gq40q6qd6lppa57n65n94xzpdjjbs182hxzavp2";
name = "thread-dump";
};
@@ -59139,15 +59999,15 @@
thrift = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "thrift";
- version = "20140312.2148";
+ version = "20140312.1548";
src = fetchFromGitHub {
owner = "apache";
repo = "thrift";
- rev = "39a09ac5e49481d39dd1bcb6757ffe182e3df20a";
- sha256 = "12cyzzf32k1x8fnj987va0qb9amjwrg205znc6gaz87av7w8riq8";
+ rev = "0e9fed1e12ed066865e46c6903782b2ef95f4650";
+ sha256 = "19a1477638cdq5si418qy07i1q1hvdbrxd0q0lfvlxa6rikxx6lz";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/thrift";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/857ab7e3a5c290265d88ebacb9685b3faee586e5/recipes/thrift";
sha256 = "0p1hxmm7gvhyigz8aylncgqbhk6cyf75rbcqis7x552g605mhiy9";
name = "thrift";
};
@@ -59160,13 +60020,13 @@
thumb-frm = callPackage ({ fetchurl, frame-cmds, frame-fns, lib, melpaBuild }:
melpaBuild {
pname = "thumb-frm";
- version = "20160101.112";
+ version = "20151231.1812";
src = fetchurl {
url = "https://www.emacswiki.org/emacs/download/thumb-frm.el";
sha256 = "0nyp1sp55l3mlhlxw8kyp6hxan3rbgwc4fmfs174n6hlj3zr5vg8";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/thumb-frm";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/a5d15f875b0080b12ce45cf696c581f6bbf061ba/recipes/thumb-frm";
sha256 = "1fjjd80drm8banni909lww9zqazr1kk9m40xwwa1ln2zicaf091c";
name = "thumb-frm";
};
@@ -59179,7 +60039,7 @@
thumb-through = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "thumb-through";
- version = "20120119.634";
+ version = "20120118.2334";
src = fetchFromGitHub {
owner = "apg";
repo = "thumb-through";
@@ -59187,7 +60047,7 @@
sha256 = "0nypcryqwwsdawqxi7hgsv6fp28zqslj9phw7zscqqxzc3svaywn";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/thumb-through";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/7fabdb05de9b8ec18a3a566f99688b50443b6b44/recipes/thumb-through";
sha256 = "1544xw9lar199idk135z4d6i3n9w0v7g2bq7fnz0rjjw10kxvpcx";
name = "thumb-through";
};
@@ -59197,22 +60057,22 @@
license = lib.licenses.free;
};
}) {};
- tide = callPackage ({ dash, emacs, fetchFromGitHub, fetchurl, flycheck, lib, melpaBuild, typescript-mode }:
+ tide = callPackage ({ cl-lib ? null, dash, emacs, fetchFromGitHub, fetchurl, flycheck, lib, melpaBuild, typescript-mode }:
melpaBuild {
pname = "tide";
- version = "20160528.632";
+ version = "20160625.7";
src = fetchFromGitHub {
owner = "ananthakumaran";
repo = "tide";
- rev = "0ca8a68619540fbb2fd9ac32f3610d79ab19193b";
- sha256 = "0q09c31ry6l6ksfsw9zrsbg38z3xx3l2ndfvwcdabdahlk8r5y6m";
+ rev = "9ffcab13f5c8d82945fcd47e553b1b4d99cb9dcf";
+ sha256 = "1qbi1snaa1pa54c4drg0cp2ap5mmm5laqj6nfcfwd086nyrr036d";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/tide";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/a21e063011ebbb03ac70bdcf0a379f9e383bdfab/recipes/tide";
sha256 = "1z2xr25s23sz6nrzzw2xg1l2j8jvjhxi53qh7nvxmmq6n6jjpwg1";
name = "tide";
};
- packageRequires = [ dash emacs flycheck typescript-mode ];
+ packageRequires = [ cl-lib dash emacs flycheck typescript-mode ];
meta = {
homepage = "https://melpa.org/#/tide";
license = lib.licenses.free;
@@ -59220,13 +60080,13 @@
}) {};
tidy = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild {
pname = "tidy";
- version = "20111222.1856";
+ version = "20111222.1156";
src = fetchurl {
url = "https://www.emacswiki.org/emacs/download/tidy.el";
sha256 = "0psci55a3angwv45z9i8wz8jw634rxg1xawkrb57m878zcxxddwa";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/tidy";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/bf079dbd04675ecd5f511b940d7cc5f80ccc94c4/recipes/tidy";
sha256 = "09xb2k3k99hp3m725f31s6hlaxgl4fsaa1dylahxvdfddhbh290m";
name = "tidy";
};
@@ -59239,7 +60099,7 @@
time-ext = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "time-ext";
- version = "20100516.240";
+ version = "20100515.1940";
src = fetchFromGitHub {
owner = "rubikitch";
repo = "time-ext";
@@ -59247,7 +60107,7 @@
sha256 = "1iz3723sirazlrr9d5rpk4v0s1s9ajbx5j4i8jf1p54z8h7asjw5";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/time-ext";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/f8e4328cae9b4759a75da0b26ea8b68821bc71af/recipes/time-ext";
sha256 = "133vd63p8258wam4fvblhfg37w2zqy4a5c5c5nafwx0cy90sngwz";
name = "time-ext";
};
@@ -59260,15 +60120,15 @@
timecop = callPackage ({ cl-lib ? null, datetime-format, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "timecop";
- version = "20160520.1252";
+ version = "20160520.552";
src = fetchFromGitHub {
owner = "zonuexe";
repo = "emacs-datetime";
- rev = "3a1871613facc928ff250ed8f12fbc7073e46b75";
- sha256 = "0pabb260d3vcr57jqqxqk90vp2qnm63sky37rgvhv508zix2hbva";
+ rev = "e6427538b547cbe02e1bd6ed4b765c73620bdae8";
+ sha256 = "1573z8wq5m8qzbzmnsz2fmbwrj9c0ava0jjfchzmwm2b3jyvqh5r";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/timecop";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/c367c756a02e161a2f6ce6c422802c9f74102a07/recipes/timecop";
sha256 = "0kcjx3silk9vwysaawhcvpb7c82dzb2y7ns8x50jznylqg8c4zh5";
name = "timecop";
};
@@ -59281,7 +60141,7 @@
timer-revert = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "timer-revert";
- version = "20150122.2132";
+ version = "20150122.1432";
src = fetchFromGitHub {
owner = "yyr";
repo = "timer-revert";
@@ -59289,7 +60149,7 @@
sha256 = "1hidvbd1xzz9m0fc55wac1mpv4dpcf8qnw1myh3646bfvivj9c2q";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/timer-revert";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/991e68c59d1fbaef06ba2583f07499ecad05586d/recipes/timer-revert";
sha256 = "0lvm2irfx9rb5psm1lf53fv2jjx745n1c172xmyqip5xwgmf6msy";
name = "timer-revert";
};
@@ -59302,7 +60162,7 @@
timesheet = callPackage ({ auctex, fetchFromGitHub, fetchurl, lib, melpaBuild, org, s }:
melpaBuild {
pname = "timesheet";
- version = "20160530.2345";
+ version = "20160530.1645";
src = fetchFromGitHub {
owner = "tmarble";
repo = "timesheet.el";
@@ -59310,7 +60170,7 @@
sha256 = "028d1sn29idznzsc95w2c1sdz3rpmf3vgk2365li0vvs99s51hi2";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/timesheet";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/40009ef2f6845c83242ca5d0a8c9c2c1e4ef8a9d/recipes/timesheet";
sha256 = "1gy6bf4wqvp8cw2wjnrr9ijnzwav3p7j46m7qrn6l0517shwl506";
name = "timesheet";
};
@@ -59323,15 +60183,15 @@
timp = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, fifo-class, lib, melpaBuild, signal }:
melpaBuild {
pname = "timp";
- version = "20160521.1053";
+ version = "20160618.303";
src = fetchFromGitHub {
owner = "mola-T";
repo = "timp";
- rev = "a90ce9f90f853ca8c8981315d901c4c66c8e7b23";
- sha256 = "0yinzv5v82rx1jx10gdcx93rgqz5q1pz0jyghm9xg5d9j5hv317b";
+ rev = "66b21934b1eb8ee428c06dd64b3562ad44776a35";
+ sha256 = "1jbmc356cqmjann2wdjnikyb0l136lpjka6bjim0rjhipdnw2acn";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/timp";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/27896aeb813215a43aec07a5ddf0ab2176df38fb/recipes/timp";
sha256 = "1vh2wsgd8bclkbzn59zqbzzfzs0xx6x82004l7vnma8z97swvhgs";
name = "timp";
};
@@ -59344,7 +60204,7 @@
tinkerer = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, s }:
melpaBuild {
pname = "tinkerer";
- version = "20150220.749";
+ version = "20150220.49";
src = fetchFromGitHub {
owner = "yyr";
repo = "tinkerer.el";
@@ -59352,7 +60212,7 @@
sha256 = "0rf177kr0qfhg8g5xrpi405dhp2va1yk170zm3f8hghi2575ciy2";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/tinkerer";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/8a28e1dfe987287bac7c45f83ae6e754bc13e345/recipes/tinkerer";
sha256 = "0qh6pzjn98jlpxcm9zf25ga0y3d3v53275a9zgswyhz33mafd7pd";
name = "tinkerer";
};
@@ -59365,7 +60225,7 @@
tiny = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "tiny";
- version = "20151208.1105";
+ version = "20151208.405";
src = fetchFromGitHub {
owner = "abo-abo";
repo = "tiny";
@@ -59373,7 +60233,7 @@
sha256 = "0mmz8b0fzffybc2jws9fif982zfx0l6kn1l4qxc67mf9nafbdca3";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/tiny";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/d3029dab001fff5d12e8a2bace6ddbf897842c26/recipes/tiny";
sha256 = "183qczyb6c8zmdgmsjsj4hddmvnzzq4c7syslm861xcyxia94icy";
name = "tiny";
};
@@ -59386,15 +60246,15 @@
tiny-menu = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "tiny-menu";
- version = "20160601.32";
+ version = "20160606.1911";
src = fetchFromGitHub {
owner = "aaronbieber";
repo = "tiny-menu.el";
- rev = "551c695b00926ab269cc651820e8ef6fa9b5134d";
- sha256 = "1c3xxzk1xz43dzrplva4cb5m96vpk9jpgnqvhhrcz2527ba79494";
+ rev = "9820cff69d3b605813f609a0db8e6c860bfb9c72";
+ sha256 = "1l3cz16lnq5rw57m4j0x29j6nkrcxnz2ppar5xnpwlcaf600wqki";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/tiny-menu";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/82700c97ca40130e7508c151f60220d3f23bf23c/recipes/tiny-menu";
sha256 = "1nngf6vsqfr9fx82mj8dl8zw0fpwf4kr74sflxxk7qxj4aw1jirk";
name = "tiny-menu";
};
@@ -59407,7 +60267,7 @@
tinysegmenter = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "tinysegmenter";
- version = "20141124.1113";
+ version = "20141124.413";
src = fetchFromGitHub {
owner = "myuhe";
repo = "tinysegmenter.el";
@@ -59415,7 +60275,7 @@
sha256 = "1n8cn6mr26hgmsm2mkbj5gs6dv61d0pap8ija4g0n1vsibfhzd8j";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/tinysegmenter";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/4f189290799f84282ff7cdecbb12a2a7cdfd1043/recipes/tinysegmenter";
sha256 = "005yy2f8vghvwdcwakz5sr9n1gzk6cfyglm6d8b74y90d8fng0r6";
name = "tinysegmenter";
};
@@ -59428,7 +60288,7 @@
tj-mode = callPackage ({ emacs, fetchFromGitHub, fetchurl, js2-mode, lib, melpaBuild, tern }:
melpaBuild {
pname = "tj-mode";
- version = "20150826.1751";
+ version = "20150826.1051";
src = fetchFromGitHub {
owner = "katspaugh";
repo = "tj-mode";
@@ -59436,7 +60296,7 @@
sha256 = "1zvykanmn065rlk9hlv85vary1l6y52bsnaa51fkpckpr6dicmcl";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/tj-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/1b16dd25c0c1031923717d4fe23bbb9276f75885/recipes/tj-mode";
sha256 = "1i7dvxgj00p4n2fh8irgdfsjl2dpvfjjnkkv0cw71441f79p79mf";
name = "tj-mode";
};
@@ -59449,7 +60309,7 @@
tldr = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "tldr";
- version = "20160312.1508";
+ version = "20160312.808";
src = fetchFromGitHub {
owner = "kuanyui";
repo = "tldr.el";
@@ -59457,7 +60317,7 @@
sha256 = "0z94m84q7j35dffpnbz1yh6axd6c787hj358bkq2qk0irsvh5n79";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/tldr";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/45af2c5d1a36fcbf739812594c5cc878bf319a26/recipes/tldr";
sha256 = "1f1xsmkbf4j1c876qqr9h8fgx3zxjgdfzvzf6capxlx2svhxzvc9";
name = "tldr";
};
@@ -59470,7 +60330,7 @@
tmmofl = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "tmmofl";
- version = "20121025.1301";
+ version = "20121025.601";
src = fetchFromGitHub {
owner = "phillord";
repo = "tmmofl";
@@ -59478,7 +60338,7 @@
sha256 = "1ypbv9jbdnwv3xjsfzq8i3nmqdvziynv2rqsd6fm2r1xw0q06xd6";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/tmmofl";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/8d29def44ae42dc4b60c1d254a57572bd09faf51/recipes/tmmofl";
sha256 = "1idflc5ky8hwdkps1rihdqy3i6cmhrh83sxz3kgf2kqjh365yr8b";
name = "tmmofl";
};
@@ -59491,15 +60351,15 @@
toc-org = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "toc-org";
- version = "20160422.1505";
+ version = "20160630.913";
src = fetchFromGitHub {
owner = "snosov1";
repo = "toc-org";
- rev = "114dcc9813e2d8784b8c21165c95408c1b26d86e";
- sha256 = "084nqdrpzgg1qpbqgvi893iglmz9dk3r0vwqxjkyxa3z3a0f5v17";
+ rev = "7c54f809d64183124a865aa32fd8f90f49318cbf";
+ sha256 = "1iblb4rxbhh0v7bf1qy1xj0xr4s8q96wfzmqvihc839wfw0gj76b";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/toc-org";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/1305d88eca984a66039444da1ea64f29f1950206/recipes/toc-org";
sha256 = "06mx2b0zjck82vp3i4bwbqlrzn05i2rkf8080cn34nkizi59wlbs";
name = "toc-org";
};
@@ -59511,13 +60371,13 @@
}) {};
todochiku = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild {
pname = "todochiku";
- version = "20150112.2154";
+ version = "20150112.1454";
src = fetchurl {
url = "https://www.emacswiki.org/emacs/download/todochiku.el";
sha256 = "0fhlyjl0a3fd25as185j6dmch0wsrf1zc59q29lhjximg9lk3hr5";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/todochiku";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/4327b4dd464ebb00c2acdd496274dedf912cdf92/recipes/todochiku";
sha256 = "1iq08s5ji6hd8as80qxqkbavnjbx0kcmmjjvhjchmvv93vsn1f96";
name = "todochiku";
};
@@ -59530,7 +60390,7 @@
todotxt = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "todotxt";
- version = "20150514.429";
+ version = "20150513.2129";
src = fetchFromGitHub {
owner = "rpdillon";
repo = "todotxt.el";
@@ -59538,7 +60398,7 @@
sha256 = "0ms4mapjg9mbpmcmpn68r0mhwaibwfr4v25sin74b2281h4q7gal";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/todotxt";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/f934da448463e672de3c87b2ee514a370f67107d/recipes/todotxt";
sha256 = "13jcbkasvcczf7qnrh89ncqp6az6hm1s0ycrv7msva145n5bk1kr";
name = "todotxt";
};
@@ -59551,7 +60411,7 @@
todotxt-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "todotxt-mode";
- version = "20150424.1604";
+ version = "20150424.904";
src = fetchFromGitHub {
owner = "avillafiorita";
repo = "todotxt-mode";
@@ -59559,7 +60419,7 @@
sha256 = "1k9ywi7cdgb6i600wr04r2l00423l6vr7k93qa7i7svv856nbbc7";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/todotxt-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/cdc1926c5de86749caba1ad2d1e75225a31a8558/recipes/todotxt-mode";
sha256 = "1bs4air13ifx3xkhcfi80z29alsd63r436gnyvjyxlph2ip37v7k";
name = "todotxt-mode";
};
@@ -59572,7 +60432,7 @@
togetherly = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "togetherly";
- version = "20150820.1038";
+ version = "20150820.338";
src = fetchFromGitHub {
owner = "zk-phi";
repo = "togetherly";
@@ -59580,7 +60440,7 @@
sha256 = "1falf86mm2206szkkwiwa5yk65y12asv84j1pdbcy6n8y6hha796";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/togetherly";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/05da36e2d57a57255423a24a34742cbac2f6c9a5/recipes/togetherly";
sha256 = "01ks160dfmgh05lx0lmyg020hba8nw49mj51dp1afcsmx4dkis2f";
name = "togetherly";
};
@@ -59593,15 +60453,15 @@
toggle = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "toggle";
- version = "20160331.1000";
+ version = "20160331.300";
src = fetchFromGitHub {
owner = "zenspider";
repo = "elisp";
- rev = "df58c83a5f1e0b9889858407eae0e383bd759473";
- sha256 = "184ghdi2m4hagddi71c1pmc408fad1cmw0q2n4k737w6j8537hph";
+ rev = "164ae0f8302c1e1938a9e30597901b1164b43f96";
+ sha256 = "1mgkwaa0q672r3lmw267ax54z4bvc3v3zji3q9asygni9bymkfyz";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/toggle";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/bd02426ce7ab46361363c7a6c56b1575642003e0/recipes/toggle";
sha256 = "08lk8h2dk5s8k93j5vmxdlgg453pif8wbcx2w3xkjlh43dw1vdfq";
name = "toggle";
};
@@ -59614,7 +60474,7 @@
toggle-quotes = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "toggle-quotes";
- version = "20140710.1126";
+ version = "20140710.426";
src = fetchFromGitHub {
owner = "toctan";
repo = "toggle-quotes.el";
@@ -59622,7 +60482,7 @@
sha256 = "1w1lmqgzn9bp59h9y9plv80y53k6qhjgfmnnlqyyqfl45z3si7kg";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/toggle-quotes";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/0f6e83e3184d336891f76c4740f64646d58ea980/recipes/toggle-quotes";
sha256 = "16w453v4g7ww93bydim62p785x7w4vssp9l5liy0h3ppfmgvmxhp";
name = "toggle-quotes";
};
@@ -59635,7 +60495,7 @@
toggle-test = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "toggle-test";
- version = "20140723.737";
+ version = "20140723.37";
src = fetchFromGitHub {
owner = "rags";
repo = "toggle-test";
@@ -59643,7 +60503,7 @@
sha256 = "0sgaslqxj806byidh06h5pqmqz8jzjfz9ky8jvkif3cq3a479jby";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/toggle-test";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/8ea51a54b745d9978c5177182cd8501912aa2d01/recipes/toggle-test";
sha256 = "0n8m325jcjhz8g75ysb9whsd12gpxw8598y5065j7c7gxjzv45l1";
name = "toggle-test";
};
@@ -59656,7 +60516,7 @@
toggle-window = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "toggle-window";
- version = "20141207.1648";
+ version = "20141207.948";
src = fetchFromGitHub {
owner = "deadghost";
repo = "toggle-window";
@@ -59664,7 +60524,7 @@
sha256 = "0f86aij1glmvgpbhmfpi441zy0r37zblb0q3ycgq0dp92x8yny5r";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/toggle-window";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/5505f778052353abce10f9ceef56ce95f5a5b662/recipes/toggle-window";
sha256 = "1z080jywqj99xiwbvfclr6gjkc6spr3dqjb9kq1g4971vx4w8n9g";
name = "toggle-window";
};
@@ -59677,7 +60537,7 @@
tomatinho = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "tomatinho";
- version = "20160531.2228";
+ version = "20160531.1528";
src = fetchFromGitHub {
owner = "konr";
repo = "tomatinho";
@@ -59685,7 +60545,7 @@
sha256 = "1rp866s1b9ycjiv3h0jzrwr6p5ssfr0l8ry38kzi090c9hk84z0p";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/tomatinho";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/3fe20de5b2b5e5abe5be7468cea7c87f5b26b237/recipes/tomatinho";
sha256 = "1ad3kr73v75vjrc09mdvb7a3ws834k5y5xha3v0ldah38cl1pmjz";
name = "tomatinho";
};
@@ -59698,7 +60558,7 @@
toml = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "toml";
- version = "20130903.1455";
+ version = "20130903.755";
src = fetchFromGitHub {
owner = "gongo";
repo = "emacs-toml";
@@ -59706,7 +60566,7 @@
sha256 = "1b3bkla6i5nvanifxchph6ab6ldrskdf240hy4d27dkmmnr3pban";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/toml";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/bab369a63ca0e7fcfacfcb9ac3847ac4e631b28c/recipes/toml";
sha256 = "0kqv6zkywa7kqh8kg1dzcgkbi91lwx335przdakndm1lfai38i9b";
name = "toml";
};
@@ -59719,7 +60579,7 @@
toml-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "toml-mode";
- version = "20150818.1020";
+ version = "20150818.320";
src = fetchFromGitHub {
owner = "dryman";
repo = "toml-mode.el";
@@ -59727,7 +60587,7 @@
sha256 = "1w9vkh6c4g80zykcy77k3r0bdc99mq8yh58bqkyd6gsr7pnp16gj";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/toml-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/f8157d7d11f1e1848f0ba384249b4b8c6354830b/recipes/toml-mode";
sha256 = "0yghf2ixl3dkcaxnkr4qzxfa9k1rrac7w5qpw1jx2bvic0cfs40l";
name = "toml-mode";
};
@@ -59740,7 +60600,7 @@
tommyh-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "tommyh-theme";
- version = "20131005.130";
+ version = "20131004.1830";
src = fetchFromGitHub {
owner = "wglass";
repo = "tommyh-theme";
@@ -59748,7 +60608,7 @@
sha256 = "0pwbd5gzmpr6js20438870w605671930291070nhmhswvxfcdvay";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/tommyh-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/da9b40184e1559c33edd5e6dac6447013710cb79/recipes/tommyh-theme";
sha256 = "0nb9r407h08yxxdihxqx0c645bcz6qywbh2l654s3zfzdsqi1aj4";
name = "tommyh-theme";
};
@@ -59760,13 +60620,13 @@
}) {};
tool-bar-plus = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild {
pname = "tool-bar-plus";
- version = "20160101.115";
+ version = "20151231.1815";
src = fetchurl {
url = "https://www.emacswiki.org/emacs/download/tool-bar+.el";
sha256 = "1sqflxj3hzxdlwn5qmpqm4dwik5vsyp7lypkvshcghdplxymb38a";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/tool-bar+";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/a5d15f875b0080b12ce45cf696c581f6bbf061ba/recipes/tool-bar+";
sha256 = "07nsas600w5kxx7yzg52ax9avry8kq429mqlrs38jg5ycf3b1l6d";
name = "tool-bar-plus";
};
@@ -59778,13 +60638,13 @@
}) {};
top-mode = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild {
pname = "top-mode";
- version = "20130605.1939";
+ version = "20130605.1239";
src = fetchurl {
url = "https://www.emacswiki.org/emacs/download/top-mode.el";
sha256 = "0a5rl1cgznycqwx4r48mh69lgm8ixbnlfzbqdyvclgm8fldbannn";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/top-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/8b528544841995045fb1f8344aaaa38946bb3915/recipes/top-mode";
sha256 = "0hrjlbiz827v9yf4086wlghw64rhvvlsbzv8lzs6pprdwbpr9pdx";
name = "top-mode";
};
@@ -59797,7 +60657,7 @@
tornado-template-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "tornado-template-mode";
- version = "20141128.1108";
+ version = "20141128.408";
src = fetchFromGitHub {
owner = "paradoxxxzero";
repo = "tornado-template-mode";
@@ -59805,7 +60665,7 @@
sha256 = "0wv49gn1daylnjmnallpqsqy7630ynrp45agpiwi6kwyyqk1kdvv";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/tornado-template-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/f329baae028fd17618824128f312a49aa0a0807e/recipes/tornado-template-mode";
sha256 = "1sdv9rlhnabydws2sppsjcgqr0lg6bjapv753ksq5aaq21qsps0h";
name = "tornado-template-mode";
};
@@ -59818,7 +60678,7 @@
totd = callPackage ({ cl-lib ? null, fetchFromGitLab, fetchurl, lib, melpaBuild, s }:
melpaBuild {
pname = "totd";
- version = "20150519.1640";
+ version = "20150519.940";
src = fetchFromGitLab {
owner = "egh";
repo = "emacs-totd";
@@ -59826,7 +60686,7 @@
sha256 = "188cdgic25wrb4jdgdcj070a0pxsh3m0rd9d2r6i1s1n1nalrs6g";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/totd";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/9dc1e001585e1743047108ace180dfd7664ab8f1/recipes/totd";
sha256 = "1bp07xl9yh9x6bi6cn8wz11x90jhv1rhxaig540iydjn5b0ny9m0";
name = "totd";
};
@@ -59839,7 +60699,7 @@
tox = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "tox";
- version = "20141004.2303";
+ version = "20141004.1603";
src = fetchFromGitHub {
owner = "chmouel";
repo = "tox.el";
@@ -59847,7 +60707,7 @@
sha256 = "16217i8rjhgaa5kv8iq0s14b42v5rs8m2qlr60a0x6qzy65chq39";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/tox";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/08a7433e16f2a9a2c04168600a9c99bc21c68ddf/recipes/tox";
sha256 = "1z81x8fs5q6r19hpqphsilk8wdwwnfr8w78x5x298x74s9mcsywl";
name = "tox";
};
@@ -59860,14 +60720,14 @@
toxi-theme = callPackage ({ emacs, fetchhg, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "toxi-theme";
- version = "20160424.2326";
+ version = "20160424.1626";
src = fetchhg {
url = "https://bitbucket.com/postspectacular/toxi-theme";
rev = "b322fc7497a5";
sha256 = "1pnsky541m8kzcv81w98jkv0hgajh04hxqlmgddc1y0wbvi849j0";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/toxi-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/5b7972602399f9df9139cff177e38653bb0f43ed/recipes/toxi-theme";
sha256 = "032m3qbxfd0qp81qwayd5g9k7vz55g4yhw0d35qkxzf4qf58x9sd";
name = "toxi-theme";
};
@@ -59880,7 +60740,7 @@
traad = callPackage ({ deferred, fetchFromGitHub, fetchurl, lib, melpaBuild, popup, python-environment, request, request-deferred }:
melpaBuild {
pname = "traad";
- version = "20151226.834";
+ version = "20151226.134";
src = fetchFromGitHub {
owner = "abingham";
repo = "emacs-traad";
@@ -59888,7 +60748,7 @@
sha256 = "1yh9dxf986dl74sgn71qxwxsg67lr0yg1z7b9h2254lmxq0mgni6";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/traad";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/2b3eb31c077fcaff94b74b757c1ce17650333943/recipes/traad";
sha256 = "08gxh5c01xfbbj9g4992jah494rw3d3bbs8j79r3mpqxllkp2znf";
name = "traad";
};
@@ -59907,15 +60767,15 @@
tracking = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "tracking";
- version = "20151129.1219";
+ version = "20151129.519";
src = fetchFromGitHub {
owner = "jorgenschaefer";
repo = "circe";
- rev = "9a4f3c9a554f99de0eb9e5f2b3e545b3e6390918";
- sha256 = "008fz7829mvjlid93hvs5xwwvigh5lnq2fxf2w9ghnw9lygkv5bq";
+ rev = "0564dfae13590d183889950724a7ef2e8df5b1df";
+ sha256 = "1nwdbm9dnybghcv2rjw9c8783k5r060cmxzklsn9by4l7i1x9k2r";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/tracking";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/a2b295656d53fddc76cacc86b239e5648e49e3a4/recipes/tracking";
sha256 = "096h5bl7jcwz5hpbm2139bf8a784hijfy40vzf42y1c9794al46z";
name = "tracking";
};
@@ -59928,7 +60788,7 @@
tracwiki-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, xml-rpc }:
melpaBuild {
pname = "tracwiki-mode";
- version = "20150119.1721";
+ version = "20150119.1021";
src = fetchFromGitHub {
owner = "merickson";
repo = "tracwiki-mode";
@@ -59936,7 +60796,7 @@
sha256 = "1m25l1lyff4h0h4vjrcsziwbf8svqg2llvvgl8i2b4jbh7k7pk5f";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/tracwiki-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/2e1e7315ee0e8d90df046e16948398f6f78aa3b2/recipes/tracwiki-mode";
sha256 = "1k983f0lj42rxr5szpq9l9harykfn8jr13y3y6fav86zzd1fb8j0";
name = "tracwiki-mode";
};
@@ -59949,7 +60809,7 @@
tramp-hdfs = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "tramp-hdfs";
- version = "20151029.436";
+ version = "20151028.2236";
src = fetchFromGitHub {
owner = "raghavgautam";
repo = "tramp-hdfs";
@@ -59957,7 +60817,7 @@
sha256 = "0llzfn9y3yyz2wwdbv8whx8vy2lazbnww6hjj0r621gkfxjml7wd";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/tramp-hdfs";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/4c185553314a2a9fe18907fd9251077777b33538/recipes/tramp-hdfs";
sha256 = "1l7s2z8yk3cbnffig9fds75jkjlkng76qglx5ankzva61dz1kf2b";
name = "tramp-hdfs";
};
@@ -59970,7 +60830,7 @@
tramp-term = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "tramp-term";
- version = "20141104.2245";
+ version = "20141104.1545";
src = fetchFromGitHub {
owner = "randymorris";
repo = "tramp-term.el";
@@ -59978,7 +60838,7 @@
sha256 = "0cgx6h9a49qj7x6bgsnsa20hi1yj5k080x4x0jpn6l9bj5nqiaip";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/tramp-term";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/5c84660c641f0bdf3cca8ad2a0f8f6e5d18b59c3/recipes/tramp-term";
sha256 = "1vbdwj8q66j6h5ijqzxhyaqf8wf9rbs03x8ppfijxl5qd2bhc1dy";
name = "tramp-term";
};
@@ -59991,15 +60851,15 @@
transmission = callPackage ({ emacs, fetchFromGitHub, fetchurl, let-alist, lib, melpaBuild }:
melpaBuild {
pname = "transmission";
- version = "20160528.556";
+ version = "20160626.2241";
src = fetchFromGitHub {
owner = "holomorph";
repo = "transmission";
- rev = "7467dac2c44c355eed0774abfc6295a066018099";
- sha256 = "0jgdydl7lm8ypymfpk9j3wjf10z77q52gfwhq6k1k2x0y92kh0sh";
+ rev = "6f9b1d80b6e690550232ee95196a4044df48143c";
+ sha256 = "0nri1limkshqq5xqd5gbf07xzywmk471kr8k55c83iig5qc3x1mh";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/transmission";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/9ed7e414687c0bd82b140a1bd8044084d094d18f/recipes/transmission";
sha256 = "0w0hlr4y4xpcrpvclqqqasggkgrwnzrdib51mhkh3f3mqyiw8gs9";
name = "transmission";
};
@@ -60011,13 +60871,13 @@
}) {};
transpose-frame = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild {
pname = "transpose-frame";
- version = "20151126.1526";
+ version = "20151126.826";
src = fetchurl {
url = "https://www.emacswiki.org/emacs/download/transpose-frame.el";
sha256 = "1f67yksgw9s6j0033hmqzaxx2a93jm11sd5ys7cc3li5gfh680m4";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/transpose-frame";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/7682372c9075e19fcef2a2462c30010ee324cd14/recipes/transpose-frame";
sha256 = "0bqip7vckic3kfq3d31ifs1zics1djxwj2jadafj6f1agv02sdz5";
name = "transpose-frame";
};
@@ -60030,7 +60890,7 @@
transpose-mark = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "transpose-mark";
- version = "20150405.916";
+ version = "20150405.216";
src = fetchFromGitHub {
owner = "kwrooijen";
repo = "transpose-mark";
@@ -60038,7 +60898,7 @@
sha256 = "03wc50vn1kmrgnzzhs06pwpap2p2rx84wwzxw0hawsg1f1l35m2x";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/transpose-mark";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/e997b356b009b3d2ab467fe49b79d728a8cfe24b/recipes/transpose-mark";
sha256 = "1q1icp1szm1bxz9ywwyrfbsm1wmx0h4cvzywrh9q0fj1fq387qvv";
name = "transpose-mark";
};
@@ -60051,7 +60911,7 @@
travis = callPackage ({ dash, fetchFromGitHub, fetchurl, lib, melpaBuild, pkg-info, request, s }:
melpaBuild {
pname = "travis";
- version = "20150825.1338";
+ version = "20150825.638";
src = fetchFromGitHub {
owner = "nlamirault";
repo = "emacs-travis";
@@ -60059,7 +60919,7 @@
sha256 = "1jd7xsvs4m55fscp62a9lk59ip4sgifv4kazl55b7543nz1i31bz";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/travis";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/c064a0dc7922cbe4cff2ae65665c4f10e6dbff27/recipes/travis";
sha256 = "1km496cq1vni9gy2d3z4c9524q62750ywz745rjz4r7178ip9mix";
name = "travis";
};
@@ -60071,13 +60931,13 @@
}) {};
tree-mode = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild {
pname = "tree-mode";
- version = "20151104.1431";
+ version = "20151104.731";
src = fetchurl {
url = "https://www.emacswiki.org/emacs/download/tree-mode.el";
sha256 = "0hffnzvzbvmzf23z9z7n7y53l5i7kza9hgfl39qqcnw4njg48llx";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/tree-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/dc67872b6463bebbf06ef9a44521ab2a029fa359/recipes/tree-mode";
sha256 = "0xwyhlc5lagj46nd70l81rvb43hs08pic96grk62zknig8354c24";
name = "tree-mode";
};
@@ -60090,7 +60950,7 @@
trident-mode = callPackage ({ dash, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, skewer-mode, slime }:
melpaBuild {
pname = "trident-mode";
- version = "20130726.2107";
+ version = "20130726.1407";
src = fetchFromGitHub {
owner = "johnmastro";
repo = "trident-mode.el";
@@ -60098,7 +60958,7 @@
sha256 = "08484fhc69rk16g52f9bzc1kzpif61ddfchxjbj1qqqammbx11ym";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/trident-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/091dcc3775ec2137cb61d66df4e72aca4900897a/recipes/trident-mode";
sha256 = "0l81hs7bp46jlk41b9fk1lkvlp17fqc5hcz8k8kkal7rh7ari1fd";
name = "trident-mode";
};
@@ -60111,7 +60971,7 @@
tronesque-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "tronesque-theme";
- version = "20150125.1141";
+ version = "20150125.441";
src = fetchFromGitHub {
owner = "aurelienbottazini";
repo = "tronesque";
@@ -60119,7 +60979,7 @@
sha256 = "06wm3qwxjhzwjn9nnrqm5wwj1z5gfghg9d2qbg8w3zyqzva5dmvm";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/tronesque-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/c7e488c08c56a879d0c20f0e8c271b7179faee8a/recipes/tronesque-theme";
sha256 = "1bk73zawl1922aq739r3rz30flxd6nq87k8ahzbix139g7gxf19j";
name = "tronesque-theme";
};
@@ -60132,15 +60992,15 @@
trr = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "trr";
- version = "20160602.1823";
+ version = "20160620.1705";
src = fetchFromGitHub {
owner = "kawabata";
repo = "emacs-trr";
- rev = "a684e599b704f79ea3db2158cfcf46a4e778e994";
- sha256 = "0ypznnpk8a4qh0izbmv0q8ahkdqn16vlqnmicy6hm3j2wfmrvzlx";
+ rev = "8c63eaae802066bdce9976fe195a445051f2dda9";
+ sha256 = "0pcny9rfzvsn82n0ryhfpc9gn4jy1cg0nb467xcckgv6pcxzsf2g";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/trr";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/56fa3c0b65e4e300f01804df7779ba6f1cb18cec/recipes/trr";
sha256 = "068vqsyx8riqzfrmjk8wr81f68r2y2b6ymc2vvl6vka9rprvsfwr";
name = "trr";
};
@@ -60153,7 +61013,7 @@
truthy = callPackage ({ fetchFromGitHub, fetchurl, lib, list-utils, melpaBuild }:
melpaBuild {
pname = "truthy";
- version = "20140508.2241";
+ version = "20140508.1541";
src = fetchFromGitHub {
owner = "rolandwalker";
repo = "truthy";
@@ -60161,7 +61021,7 @@
sha256 = "1mm6rrprsmx4hc622qmllm7c81yhwbqmdr0n6020krq92zmilmlm";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/truthy";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/f7a7e319dbe17e2b31353e7d7cab51d557d86e9d/recipes/truthy";
sha256 = "1a56zmqars9fd03bkqzwpvgblq5fvq19n4jw04c4hpga92sq8wqg";
name = "truthy";
};
@@ -60174,7 +61034,7 @@
try = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "try";
- version = "20160226.1630";
+ version = "20160226.930";
src = fetchFromGitHub {
owner = "larstvei";
repo = "Try";
@@ -60182,7 +61042,7 @@
sha256 = "0gvwavsq9s4a75qz7xq9wl219fnzz085zjqpnrxxgmaqbi9m8l7a";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/try";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/13c0ed40ad02fa0893cbf4dd9617dccb624f064b/recipes/try";
sha256 = "0dv0i77agva215bf1gj1x1k7f7g3pvccyyd7vslapf9z8brccn7n";
name = "try";
};
@@ -60195,7 +61055,7 @@
tss = callPackage ({ auto-complete, fetchFromGitHub, fetchurl, json-mode, lib, log4e, melpaBuild, yaxception }:
melpaBuild {
pname = "tss";
- version = "20150913.1608";
+ version = "20150913.908";
src = fetchFromGitHub {
owner = "aki2o";
repo = "emacs-tss";
@@ -60203,7 +61063,7 @@
sha256 = "1bk5v9dffs65qsay0dp336s2ly065nd0cg572zz058ikwxd44zd3";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/tss";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/d52e20f5ca38ed399d19f18f778b8601baf78460/recipes/tss";
sha256 = "0d16x5r2xfy6mrwy0mqzpr9b3inqmyyxgawrxlfh83j1xb903dhm";
name = "tss";
};
@@ -60216,7 +61076,7 @@
tt-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "tt-mode";
- version = "20130804.1310";
+ version = "20130804.610";
src = fetchFromGitHub {
owner = "davorg";
repo = "tt-mode";
@@ -60224,7 +61084,7 @@
sha256 = "1gvqxk67cf779szyg907815i4m9jzrpmn5cnsmnwd62k3r3z4nxm";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/tt-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/62959f554db7aa24b2565baded19766b01e61f62/recipes/tt-mode";
sha256 = "02dzyycn5znbibbz50b243bh1kcccp8xwknjqwljk00gpf196vzf";
name = "tt-mode";
};
@@ -60236,14 +61096,14 @@
}) {};
ttl-mode = callPackage ({ fetchhg, fetchurl, lib, melpaBuild }: melpaBuild {
pname = "ttl-mode";
- version = "20160505.1032";
+ version = "20160505.332";
src = fetchhg {
url = "https://bitbucket.com/nxg/ttl-mode";
rev = "d790eb85ef4d";
sha256 = "14kfnpp7fcd84ly9ng7hm5hzx2sdpn2x6d8frwbkdxfb0x81kmmf";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ttl-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/d56140a50abeab0953825d3646122d6e6ed19a7c/recipes/ttl-mode";
sha256 = "1nnn2y0n9rj3a8r85y2vp6qja5rm4drcbnj9q793zzqfjl9akqd4";
name = "ttl-mode";
};
@@ -60256,7 +61116,7 @@
ttrss = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "ttrss";
- version = "20130409.1949";
+ version = "20130409.1249";
src = fetchFromGitHub {
owner = "pedros";
repo = "ttrss.el";
@@ -60264,7 +61124,7 @@
sha256 = "0a8f9p1im6k7mnp2bq733rfx2x246gfwpvi5ccym1y5lakx37fil";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ttrss";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/d918a5aa26c890fd138323ac6a446c0722e8b4c6/recipes/ttrss";
sha256 = "08921cssvwpq33w87v08dafi2rz2rl1b3bhbhijn4bwjqgxi9w7z";
name = "ttrss";
};
@@ -60274,22 +61134,22 @@
license = lib.licenses.free;
};
}) {};
- tuareg = callPackage ({ caml, fetchFromGitHub, fetchurl, lib, melpaBuild }:
+ tuareg = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "tuareg";
- version = "20160408.2031";
+ version = "20160607.1817";
src = fetchFromGitHub {
owner = "ocaml";
repo = "tuareg";
- rev = "f1eb7b500e892662a970ecdaf592c33949e43ba7";
- sha256 = "0hscvsdp25aw7h4x8kq1ws72zx08bs2kw1s6axsi5576cl4d5yvg";
+ rev = "93b9c6cdba3a8f333cc817c3822fc76b71ff4dcd";
+ sha256 = "14l0y7gahbz1l4ag5nvswj7cl4skchvzr6r7zc1a5k000skdmv69";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/tuareg";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/01fb6435a1dfeebdf4e7fa3f4f5928bc75526809/recipes/tuareg";
sha256 = "0wx723dmjlpm86xdabl9n8p22zbbxpapyfn6ifz0b0pvhh49ip7q";
name = "tuareg";
};
- packageRequires = [ caml ];
+ packageRequires = [];
meta = {
homepage = "https://melpa.org/#/tuareg";
license = lib.licenses.free;
@@ -60298,7 +61158,7 @@
tumble = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, http-post-simple, lib, melpaBuild }:
melpaBuild {
pname = "tumble";
- version = "20160112.829";
+ version = "20160112.129";
src = fetchFromGitHub {
owner = "febuiles";
repo = "tumble";
@@ -60306,7 +61166,7 @@
sha256 = "1xdkgvr1pnlg3nrjmma4ra80ysr8xbslvczg7cq1x1mqw6gn9xq5";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/tumble";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/579a441d153c4c7d9f8172be94983a632d6fab8f/recipes/tumble";
sha256 = "1c9ybq0mb2a0pw15fmm13vfwcnr2h9fb1xsm5nrff1cg7913pgv9";
name = "tumble";
};
@@ -60319,7 +61179,7 @@
tumblesocks = callPackage ({ fetchFromGitHub, fetchurl, htmlize, lib, markdown-mode, melpaBuild, oauth }:
melpaBuild {
pname = "tumblesocks";
- version = "20140215.2147";
+ version = "20140215.1447";
src = fetchFromGitHub {
owner = "gcr";
repo = "tumblesocks";
@@ -60327,7 +61187,7 @@
sha256 = "1g7y7czan7mcs5lwc5r6cllgksrj3b9lpn1bj7khwkd1ll391jc2";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/tumblesocks";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/5561a3284d861048251dc58182c95d16367e4744/recipes/tumblesocks";
sha256 = "11ky69icsnxwsinv2j3f4c0764wm6i9g9mlvwsdrd6w1lchq1dg9";
name = "tumblesocks";
};
@@ -60340,7 +61200,7 @@
tup-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "tup-mode";
- version = "20140410.1814";
+ version = "20140410.1114";
src = fetchFromGitHub {
owner = "ejmr";
repo = "tup-mode";
@@ -60348,7 +61208,7 @@
sha256 = "0y1b9zvwbw3vp41siyzj04bis939fgz3j27hc5ljjzy92kd39nzm";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/tup-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/bda3260dad1c766c5b6ae9124f966bf441e24f2f/recipes/tup-mode";
sha256 = "0pzpn1ljfcc2dl9fg7jc8lmjwz2baays4axjqk1qsbj0kqbc8j0l";
name = "tup-mode";
};
@@ -60361,7 +61221,7 @@
turkish = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "turkish";
- version = "20160324.1123";
+ version = "20160324.523";
src = fetchFromGitHub {
owner = "emres";
repo = "turkish-mode";
@@ -60369,7 +61229,7 @@
sha256 = "1jb6par116mm5l4z27wk6m2sfh6j9nmgrya352sdagcvjbcpnzcl";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/turkish";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/4c305076082d17db90647577137d76128b15defa/recipes/turkish";
sha256 = "0pdapxjbpj3lg3hxvwjn9v51jqaiz7a8053z2bmk4485vzs34532";
name = "turkish";
};
@@ -60382,7 +61242,7 @@
turnip = callPackage ({ dash, fetchFromGitHub, fetchurl, lib, melpaBuild, s }:
melpaBuild {
pname = "turnip";
- version = "20150309.729";
+ version = "20150309.129";
src = fetchFromGitHub {
owner = "kljohann";
repo = "turnip.el";
@@ -60390,7 +61250,7 @@
sha256 = "0khl4q22x6vdn87xdqqg5f535d4dqpnfbhk6qhlh187p1w7qaiq4";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/turnip";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/73c341fec986ed965a46954b898f92a4725fdee6/recipes/turnip";
sha256 = "1vfqv71j47fn53klz3jl8r8hscywd01kkl4w96a308sac3lhbrps";
name = "turnip";
};
@@ -60403,7 +61263,7 @@
twig-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "twig-mode";
- version = "20130220.1950";
+ version = "20130220.1250";
src = fetchFromGitHub {
owner = "moljac024";
repo = "twig-mode";
@@ -60411,7 +61271,7 @@
sha256 = "0wvmih2y3hy7casxx2y1w8csmzfnfgbb5ivpggr94sc86p6bg8sa";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/twig-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/400c75bf336b8d610f0a2c1732cc78beb502e1f3/recipes/twig-mode";
sha256 = "1m3xjgmkqg8aj536wcg2f2hf4y6whscbsh7z7448hl4b5qjwii4n";
name = "twig-mode";
};
@@ -60424,15 +61284,15 @@
twilight-anti-bright-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "twilight-anti-bright-theme";
- version = "20140810.934";
+ version = "20160622.348";
src = fetchFromGitHub {
owner = "jimeh";
repo = "twilight-anti-bright-theme";
- rev = "c3a7b4177416031284da73f53b4dddaa27570bd7";
- sha256 = "1bj2mpiklqcangjzbnz5wz7klsfvp0x397lidvf42awn7s2aax0n";
+ rev = "523b95fcdbf4a6a6483af314ad05354a3d80f23f";
+ sha256 = "0g6qqfgbg507r8lgq99zj2b5n3r9m23hpx19m36c3i55mh94dl2h";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/twilight-anti-bright-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/4dfafdd43a22320c619f481e2bbe162459b48990/recipes/twilight-anti-bright-theme";
sha256 = "1qfybk5akaxdahmjffqaw712v8d7kk4jqkj3hzp96kys2zv1r6f9";
name = "twilight-anti-bright-theme";
};
@@ -60445,7 +61305,7 @@
twilight-bright-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "twilight-bright-theme";
- version = "20130605.1043";
+ version = "20130605.343";
src = fetchFromGitHub {
owner = "jimeh";
repo = "twilight-bright-theme.el";
@@ -60453,7 +61313,7 @@
sha256 = "1awqc4rvg8693myynb1d4y4dfdaxkd5blnixxs3mdv81l07zyn8c";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/twilight-bright-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/03c59c8fcf706fcdb34762e74ad1449540c357e2/recipes/twilight-bright-theme";
sha256 = "074cqs55gwy5jlaay3m9bpdpdfb45nmlijvapz96nibl64pyk83d";
name = "twilight-bright-theme";
};
@@ -60466,7 +61326,7 @@
twilight-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "twilight-theme";
- version = "20120412.1503";
+ version = "20120412.803";
src = fetchFromGitHub {
owner = "developernotes";
repo = "twilight-theme";
@@ -60474,7 +61334,7 @@
sha256 = "0d7vd1h0rwwgrh7f9kmdgy2ni0p20da9c8ylwlg33nsb26345wfs";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/twilight-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/40e5497d05a7c83dc659cd1213dc9e8ea5d90f65/recipes/twilight-theme";
sha256 = "1wkca66q4k94h9njsy15n83wjzn90rcbmv44x0hdwqj92yxjf3y7";
name = "twilight-theme";
};
@@ -60487,15 +61347,15 @@
twittering-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "twittering-mode";
- version = "20160313.1736";
+ version = "20160703.1014";
src = fetchFromGitHub {
owner = "hayamiz";
repo = "twittering-mode";
- rev = "7c67fe66e7ccaf2ca6021ecc12dc0d2036ee2f60";
- sha256 = "1dk2s16p33fjx29la1zg35ax1mmwmrl33ww9qmg88ssxfcdj2jr0";
+ rev = "4dc7b7513a0024f88743ea5e5cc1cb24b98a3307";
+ sha256 = "1789lbai6w3miy5536148469p02wc252r2rmfyg9y7ibs7mnp4np";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/twittering-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/091dcc3775ec2137cb61d66df4e72aca4900897a/recipes/twittering-mode";
sha256 = "0v9ijxw5jazh2hc0qab48y71za2l9ryff0mpkxhr3f79irlqy0a1";
name = "twittering-mode";
};
@@ -60508,7 +61368,7 @@
typed-clojure-mode = callPackage ({ cider, clojure-mode, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "typed-clojure-mode";
- version = "20151003.2022";
+ version = "20151003.1322";
src = fetchFromGitHub {
owner = "typedclojure";
repo = "typed-clojure-mode";
@@ -60516,7 +61376,7 @@
sha256 = "1i826xq77nh4s7qlj63r2iznbn319l1l3fzpbjb2nj0m00bwvxl6";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/typed-clojure-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/961471c194b508a5025f00a5be02d316b26f330a/recipes/typed-clojure-mode";
sha256 = "1579zkhk2lwl5ij7dm9n2drggs5fmhpljrshc4ghhvig7nlyqjy3";
name = "typed-clojure-mode";
};
@@ -60529,15 +61389,15 @@
typescript-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "typescript-mode";
- version = "20160126.1308";
+ version = "20160616.2207";
src = fetchFromGitHub {
owner = "ananthakumaran";
repo = "typescript.el";
- rev = "d81cc7278276b8d3a163e14fe5396126eff0475d";
- sha256 = "17q7f433x8i484scwdbfsd0vh8lshzkwjlarhqw6ic53mzakgjiq";
+ rev = "b6e993513c4f00d05041f707cbd6f0c0c835b785";
+ sha256 = "0zpn1agnblvvji8s9lpkxiziwliv9isymdfq7h74iap3w1iwnqky";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/typescript-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/d3f534a1e2cee4ad2e32e32802c5080207417b3d/recipes/typescript-mode";
sha256 = "01jyqy44ir59n9c2f6gh4xzwfmzdpnys1lw4lnsy6kirqgbsq9ha";
name = "typescript-mode";
};
@@ -60549,13 +61409,13 @@
}) {};
typing = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild {
pname = "typing";
- version = "20121026.2318";
+ version = "20121026.1618";
src = fetchurl {
url = "https://www.emacswiki.org/emacs/download/typing.el";
sha256 = "0mgvpdp3vlvjy32d163h2mzsf9j2ij2f542sdr3rsy8l80n6nx31";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/typing";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/1bc0c7b53431a9d2bc41c9a7a755bdad0fa0f5cf/recipes/typing";
sha256 = "0b72lbzji105wzvsi58l6pjc08qcwrm5ddf42irdxi956081pzp3";
name = "typing";
};
@@ -60568,7 +61428,7 @@
typing-game = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "typing-game";
- version = "20160426.1420";
+ version = "20160426.720";
src = fetchFromGitHub {
owner = "lujun9972";
repo = "el-typing-game";
@@ -60576,7 +61436,7 @@
sha256 = "0dkrnn9fzqv793wvd3nc7dbslayj37q5na1w1g63g32z2s8aq09j";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/typing-game";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/e6ced22932f0462c77d121a631c494c01a0a4eaa/recipes/typing-game";
sha256 = "0k85j9bcqp0gbzdh44q5a9wlkv5mc0g0m42ziq1bzmp6993wkmy2";
name = "typing-game";
};
@@ -60589,7 +61449,7 @@
typit = callPackage ({ emacs, f, fetchFromGitHub, fetchurl, lib, melpaBuild, mmt }:
melpaBuild {
pname = "typit";
- version = "20160531.1831";
+ version = "20160531.1131";
src = fetchFromGitHub {
owner = "mrkkrp";
repo = "typit";
@@ -60597,7 +61457,7 @@
sha256 = "1jv5qmp3xs37py7d9aln4jn85j65h9pp5vb2dcmd8rlszhplsrng";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/typit";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/d17d019155e19c156f123dcd702f18cfba488701/recipes/typit";
sha256 = "05m7ymcq6fgbhh93ninrf3qi7csdnf2ahhf01mkm8gxxyaqq6m4n";
name = "typit";
};
@@ -60610,7 +61470,7 @@
typo = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "typo";
- version = "20160121.1230";
+ version = "20160121.530";
src = fetchFromGitHub {
owner = "jorgenschaefer";
repo = "typoel";
@@ -60618,7 +61478,7 @@
sha256 = "0bn1bvs334wb64bli9h613zf1vzjyi0pz8bgyq1wy12qmbwwmfwk";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/typo";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/8cf02f5c8cb29265e9c83be9c959b8a9012a369d/recipes/typo";
sha256 = "07hmqrnbxbrhcbxdls8i4786lkqmfr3hv6va41xih1lxj0mk60bx";
name = "typo";
};
@@ -60628,10 +61488,31 @@
license = lib.licenses.free;
};
}) {};
+ typoscript-mode = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
+ melpaBuild {
+ pname = "typoscript-mode";
+ version = "20160621.406";
+ src = fetchFromGitHub {
+ owner = "ksjogo";
+ repo = "typoscript-mode";
+ rev = "afbf94464080d6084f52cc51efcb908ecfbd2278";
+ sha256 = "0z3p1yf1fy9ic00gr1xp8i68azd0v4zn2sp5k1cchqj3hbazlwcv";
+ };
+ recipeFile = fetchurl {
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/701de09cb97cbfa49a3a81aaeb9577817566efa2/recipes/typoscript-mode";
+ sha256 = "18i2wwbn8vj5dbgxp2ds29n12v8ldvxjd1zb6h1g9lfh8iyrnjmx";
+ name = "typoscript-mode";
+ };
+ packageRequires = [ emacs ];
+ meta = {
+ homepage = "https://melpa.org/#/typoscript-mode";
+ license = lib.licenses.free;
+ };
+ }) {};
ubuntu-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "ubuntu-theme";
- version = "20150805.1706";
+ version = "20150805.1006";
src = fetchFromGitHub {
owner = "rocher";
repo = "ubuntu-theme";
@@ -60639,7 +61520,7 @@
sha256 = "1v8d1pc0vjc7wz0prr5w5vp2qb19f3gcyl6jx5130plajbvv23rc";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ubuntu-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/091dcc3775ec2137cb61d66df4e72aca4900897a/recipes/ubuntu-theme";
sha256 = "160z59aaxb2v6c24nki6bn7pjm9r4jl1mgxs4h4sivzxkaw811s2";
name = "ubuntu-theme";
};
@@ -60651,13 +61532,13 @@
}) {};
ucs-cmds = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild {
pname = "ucs-cmds";
- version = "20160101.116";
+ version = "20151231.1816";
src = fetchurl {
url = "https://www.emacswiki.org/emacs/download/ucs-cmds.el";
sha256 = "0qy211rxrmzhwl9qfrcmfnwayysvb5rghjginbvx3wf2s6hrbpya";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ucs-cmds";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/a5d15f875b0080b12ce45cf696c581f6bbf061ba/recipes/ucs-cmds";
sha256 = "1n0f0qf8w8ark78fs67aaxnqpk0km97hy59pnxwfyahgjl2qz6d1";
name = "ucs-cmds";
};
@@ -60670,7 +61551,7 @@
ucs-utils = callPackage ({ fetchFromGitHub, fetchurl, lib, list-utils, melpaBuild, pcache, persistent-soft }:
melpaBuild {
pname = "ucs-utils";
- version = "20150826.1614";
+ version = "20150826.914";
src = fetchFromGitHub {
owner = "rolandwalker";
repo = "ucs-utils";
@@ -60678,7 +61559,7 @@
sha256 = "0qw9vwl1p0pjw1xmshxar1a8kn6gmin5rdvvnnly8b5z9hpkjf3m";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ucs-utils";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/c9db386ab3910940addae6e925b2ac17e64e0f87/recipes/ucs-utils";
sha256 = "111fwg2cqqzpa79rcqxidppb12c8g12zszppph2ydfvkgkryb6z2";
name = "ucs-utils";
};
@@ -60691,7 +61572,7 @@
uimage = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "uimage";
- version = "20160426.1426";
+ version = "20160426.726";
src = fetchFromGitHub {
owner = "lujun9972";
repo = "uimage";
@@ -60699,7 +61580,7 @@
sha256 = "13zznakgqyy3hw385f6w40rz4agxz6fmgaxzgmrz3kjpn19bc2fa";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/uimage";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/346cb25abdfdd539d121a9f34bce75b2fc5a16be/recipes/uimage";
sha256 = "0i6qpk6v4pmpk3zswygdy0dd7rxy8kl7qn8a1xanpi4aqg7wlbmd";
name = "uimage";
};
@@ -60712,15 +61593,15 @@
ujelly-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "ujelly-theme";
- version = "20160521.2001";
+ version = "20160620.2008";
src = fetchFromGitHub {
owner = "marktran";
repo = "color-theme-ujelly";
- rev = "43b2e0e9bd8419d00f2500b421efb218fc2e4e36";
- sha256 = "0zwayin4fjswl1xmbsgvkkssnx97c6h230m5a7hl4a7llx9l5c6s";
+ rev = "1f1043199d979c4aacd72795addb761873b33cdf";
+ sha256 = "087zaglf03ikdssdmqkp8vlipqbcs5m52bncdyc0v3p75s6v4cdc";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ujelly-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/091dcc3775ec2137cb61d66df4e72aca4900897a/recipes/ujelly-theme";
sha256 = "0b7zgmpsdn5p3jx4kif7phxz8pb85snmmfr3yz98xf6p7h6w60gw";
name = "ujelly-theme";
};
@@ -60733,7 +61614,7 @@
ukrainian-holidays = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "ukrainian-holidays";
- version = "20130720.1549";
+ version = "20130720.849";
src = fetchFromGitHub {
owner = "abo-abo";
repo = "ukrainian-holidays";
@@ -60741,7 +61622,7 @@
sha256 = "033v4ck979lhkpwblci5clacfc1xnkq03p5d1m566wff8dp5flwz";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ukrainian-holidays";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/8a8b5ec722600bcd5bf5fcc2b20262597a9e8c40/recipes/ukrainian-holidays";
sha256 = "0kbfj2l1rcv74c88nabkwkcl7k9pkim835l24q61zv3i6wf9sykf";
name = "ukrainian-holidays";
};
@@ -60753,13 +61634,13 @@
}) {};
unbound = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild {
pname = "unbound";
- version = "20160506.855";
+ version = "20160506.155";
src = fetchurl {
url = "https://www.emacswiki.org/emacs/download/unbound.el";
sha256 = "0awmzz9cfr17ggpzsgxqqhz5946l7705vvkfaiz7qx9wg0pbch18";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/unbound";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/118e8df30e4caf2a5ef668af8970cfbfc2327004/recipes/unbound";
sha256 = "1ys6pgb3lhx4ihhv8i28vrchp1ad37md7lnana40macf5n72d77x";
name = "unbound";
};
@@ -60772,7 +61653,7 @@
uncrustify-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "uncrustify-mode";
- version = "20130707.1559";
+ version = "20130707.859";
src = fetchFromGitHub {
owner = "koko1000ban";
repo = "emacs-uncrustify-mode";
@@ -60780,7 +61661,7 @@
sha256 = "0366h4jfi0c7yda9wcrz4zxgf2qqdd08b8z2dr8c1rkvkdd67iam";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/uncrustify-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/5327aa1a1143c2257e9454663ff140f2371d07e3/recipes/uncrustify-mode";
sha256 = "0amdxdfc8i99zjrw4iqmxzb47h0airs60fwmc32bc8b0ds66c3kd";
name = "uncrustify-mode";
};
@@ -60793,7 +61674,7 @@
undercover = callPackage ({ dash, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, shut-up }:
melpaBuild {
pname = "undercover";
- version = "20160329.1637";
+ version = "20160329.937";
src = fetchFromGitHub {
owner = "sviridov";
repo = "undercover.el";
@@ -60801,7 +61682,7 @@
sha256 = "1860hnsbvndaahqs233adk8piz7nyj8v3b0gziv1lrnq864hrq5i";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/undercover";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/d58ad9eb863494f609114e3c6af8c14c891b83a5/recipes/undercover";
sha256 = "1s30c3i6y4r3mgrrs3lda3rrwmy9ff11ihdmshyziv9v5879sdjf";
name = "undercover";
};
@@ -60814,7 +61695,7 @@
underwater-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "underwater-theme";
- version = "20131118.102";
+ version = "20131117.1802";
src = fetchFromGitHub {
owner = "jmdeldin";
repo = "underwater-theme.el";
@@ -60822,7 +61703,7 @@
sha256 = "1ypxpv5vw2ls757iwrq3zld6k0s29q3kg3spcsl5ks4aqpnkxpva";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/underwater-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/e7dccc77d082181629b8f0c45404ac5d8bd97590/recipes/underwater-theme";
sha256 = "0ab2bcqfdi9ml3z9d511pbfwcbp8hkkd36xxp61k36gkyi3acvlr";
name = "underwater-theme";
};
@@ -60835,14 +61716,14 @@
undo-tree = callPackage ({ fetchgit, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "undo-tree";
- version = "20140509.1422";
+ version = "20140509.722";
src = fetchgit {
url = "http://www.dr-qubit.org/git/undo-tree.git";
rev = "a3e81b682053a81e082139300ef0a913a7a610a2";
- sha256 = "1qla7njkb7gx5aj87i8x6ni8jfk1k78ivwfiiws3gpbnyiydpx8y";
+ sha256 = "014x3gnv4l0p7jbz34dmdrcksw4dfww9lkp9d7nx5q3fsbvsx35z";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/undo-tree";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/4327b4dd464ebb00c2acdd496274dedf912cdf92/recipes/undo-tree";
sha256 = "0vrjxprpk854989wcp4wjb07jhhxqi25p6c758gz264z3xa8g9cr";
name = "undo-tree";
};
@@ -60855,7 +61736,7 @@
undohist = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "undohist";
- version = "20150315.1342";
+ version = "20150315.742";
src = fetchFromGitHub {
owner = "m2ym";
repo = "undohist-el";
@@ -60863,7 +61744,7 @@
sha256 = "1c0daw246ky7b1x5b8h55x79pl1pjqk1k348l487bdd8zdj4w9wx";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/undohist";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/aebd16ca1ac51d9982eae5437c6084a2a3946b88/recipes/undohist";
sha256 = "0zzfzh8sf2dkz8h3kidv7zmwz2c2qq9n9qz2mab2lk0y44njzwhn";
name = "undohist";
};
@@ -60876,7 +61757,7 @@
unfill = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "unfill";
- version = "20131103.1113";
+ version = "20131103.413";
src = fetchFromGitHub {
owner = "purcell";
repo = "unfill";
@@ -60884,7 +61765,7 @@
sha256 = "0fd9k5m1yw2274m2w9rkrg7vqagzf0rjbybglqi7d200b3hmjin3";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/unfill";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/2ade389a20419b3e29a613409ac73a16b7c5bddb/recipes/unfill";
sha256 = "0b21dk45vbz4vqdbdx0n6wx30rm38w1jjqbsxfj7b96p3i5shwqv";
name = "unfill";
};
@@ -60897,7 +61778,7 @@
unicode-emoticons = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "unicode-emoticons";
- version = "20150204.1208";
+ version = "20150204.508";
src = fetchFromGitHub {
owner = "hagleitn";
repo = "unicode-emoticons";
@@ -60905,7 +61786,7 @@
sha256 = "015gjf8chd6h9azhyarmskk41cm0cmg981jif7q81hakl9av6rhh";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/unicode-emoticons";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/5847a8ec892a1d00627a90a509bdde5a8a558df3/recipes/unicode-emoticons";
sha256 = "15s6qjhrrqrhm87vmvd6akdclzba19613im85kfkhc24p6nxyhbn";
name = "unicode-emoticons";
};
@@ -60918,7 +61799,7 @@
unicode-enbox = callPackage ({ fetchFromGitHub, fetchurl, lib, list-utils, melpaBuild, pcache, persistent-soft, string-utils, ucs-utils }:
melpaBuild {
pname = "unicode-enbox";
- version = "20140508.2241";
+ version = "20140508.1541";
src = fetchFromGitHub {
owner = "rolandwalker";
repo = "unicode-enbox";
@@ -60926,7 +61807,7 @@
sha256 = "0936dqxyp72if9wvn2dcci670yp1gqrmpnll9xq00skp85yq9zs5";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/unicode-enbox";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/c9db386ab3910940addae6e925b2ac17e64e0f87/recipes/unicode-enbox";
sha256 = "1phb2qq3pg6z6bl96kl9yfq4jxhgardjpaa4lhgqbxymmqdm7gzv";
name = "unicode-enbox";
};
@@ -60942,10 +61823,31 @@
license = lib.licenses.free;
};
}) {};
+ unicode-escape = callPackage ({ dash, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, names }:
+ melpaBuild {
+ pname = "unicode-escape";
+ version = "20160614.734";
+ src = fetchFromGitHub {
+ owner = "kosh04";
+ repo = "unicode-escape.el";
+ rev = "fc69ec780d9e54c364a9252bd0cf1d2507f3fab7";
+ sha256 = "1bqknk6y7r0dqhmwhq3ac56cqf0albp18h222klnijv4bazjfcjw";
+ };
+ recipeFile = fetchurl {
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/b2ae00434b80357dc62cd0177dbd714b25fb3ac7/recipes/unicode-escape";
+ sha256 = "0gcwkv7qbdnvak10jfzj9irb7nkfqsfxv2n5fi8vvrk90j1a2i2k";
+ name = "unicode-escape";
+ };
+ packageRequires = [ dash emacs names ];
+ meta = {
+ homepage = "https://melpa.org/#/unicode-escape";
+ license = lib.licenses.free;
+ };
+ }) {};
unicode-fonts = callPackage ({ fetchFromGitHub, fetchurl, font-utils, lib, list-utils, melpaBuild, pcache, persistent-soft, ucs-utils }:
melpaBuild {
pname = "unicode-fonts";
- version = "20150827.32";
+ version = "20150826.1732";
src = fetchFromGitHub {
owner = "rolandwalker";
repo = "unicode-fonts";
@@ -60953,7 +61855,7 @@
sha256 = "0fbwncna6gxlynq9196djpkjhayzk8kxlsxg0gasdgqx1nyxl0mk";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/unicode-fonts";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/83459421dd2eb3d60ec668c3d5bb38d99ee64aff/recipes/unicode-fonts";
sha256 = "0plipwb30qqay8691qzqdyg6smpbs9dsxxi49psb8sq0xnxl84q3";
name = "unicode-fonts";
};
@@ -60972,14 +61874,14 @@
unicode-input = callPackage ({ fetchhg, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "unicode-input";
- version = "20141219.820";
+ version = "20141219.120";
src = fetchhg {
url = "https://bitbucket.com/m00nlight/unicode-input";
rev = "e76ccb549e6a";
sha256 = "0kzcg1wxi1z424jdn7pibk9zyfyi85kligav08sl1c2hdldzya4l";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/unicode-input";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/5b7972602399f9df9139cff177e38653bb0f43ed/recipes/unicode-input";
sha256 = "17sf3xnl8yyx4ln4mrjlrvfinb8dvabh81l3qyr9pkn5skpgqgj8";
name = "unicode-input";
};
@@ -60992,7 +61894,7 @@
unicode-progress-reporter = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, list-utils, melpaBuild, pcache, persistent-soft, ucs-utils }:
melpaBuild {
pname = "unicode-progress-reporter";
- version = "20140508.2241";
+ version = "20140508.1541";
src = fetchFromGitHub {
owner = "rolandwalker";
repo = "unicode-progress-reporter";
@@ -61000,7 +61902,7 @@
sha256 = "16jgm70ldsngxldiagjkw3ragypalpiidnf82g5hss9ciybkd3j4";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/unicode-progress-reporter";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/83459421dd2eb3d60ec668c3d5bb38d99ee64aff/recipes/unicode-progress-reporter";
sha256 = "03z7p27470fqy3gd356l9cpp44a35sfrxz94dxmx388rzlygk7y7";
name = "unicode-progress-reporter";
};
@@ -61013,7 +61915,7 @@
unicode-troll-stopper = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "unicode-troll-stopper";
- version = "20151024.331";
+ version = "20151023.2031";
src = fetchFromGitHub {
owner = "camsaul";
repo = "emacs-unicode-troll-stopper";
@@ -61021,7 +61923,7 @@
sha256 = "0ny260mr1h810fvqsfj2hpd3zql4g309m60qj4vk6kmd83p5b60f";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/unicode-troll-stopper";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/b463925a98b7dde78d85693c7681fd2346d90895/recipes/unicode-troll-stopper";
sha256 = "0a10lq0xsfyp052iw4xjbhsdkbyg25x2gk68gys4k7p6l92la0k5";
name = "unicode-troll-stopper";
};
@@ -61034,7 +61936,7 @@
unicode-whitespace = callPackage ({ fetchFromGitHub, fetchurl, lib, list-utils, melpaBuild, pcache, persistent-soft, ucs-utils }:
melpaBuild {
pname = "unicode-whitespace";
- version = "20140508.2241";
+ version = "20140508.1541";
src = fetchFromGitHub {
owner = "rolandwalker";
repo = "unicode-whitespace";
@@ -61042,7 +61944,7 @@
sha256 = "1ayb15nd5vqr0xaghrnp55kqw7bblrjipmfrag6bqpn7jk9bvbdz";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/unicode-whitespace";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/f9892a826f3ac335d12bd1a07202334e28a44f40/recipes/unicode-whitespace";
sha256 = "1b3jgha8va42b89pdp41sab2w9wllp7dicqg4lxl67bg6wn147wy";
name = "unicode-whitespace";
};
@@ -61055,7 +61957,7 @@
unidecode = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "unidecode";
- version = "20140318.518";
+ version = "20140317.2318";
src = fetchFromGitHub {
owner = "sindikat";
repo = "unidecode";
@@ -61063,7 +61965,7 @@
sha256 = "1jvr1k8zd40m1rvwmxzidz1dvr4j8cbh78nqgc3vfb410fj619gw";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/unidecode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/2a5265b00464bcd2bb397229e87385d172856474/recipes/unidecode";
sha256 = "0h058mvb6x53zywpwg85dzhaynlgq577yyqhrn5qqyqjg1n8lhc1";
name = "unidecode";
};
@@ -61076,7 +61978,7 @@
unify-opening = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "unify-opening";
- version = "20151117.148";
+ version = "20151116.1848";
src = fetchFromGitHub {
owner = "DamienCassou";
repo = "unify-opening";
@@ -61084,7 +61986,7 @@
sha256 = "1vbx10s2zmhpxjg26ik947bcg9f7w3g2w45wmm0shjp743fsdq8p";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/unify-opening";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/0a2faab13744262ef4d12750f70b300b3afd2835/recipes/unify-opening";
sha256 = "1gpmklbdbmv8va8d3yr94r1ydkcyvdzcgxv56rp0bxwbcgmk0as8";
name = "unify-opening";
};
@@ -61097,7 +61999,7 @@
unipoint = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "unipoint";
- version = "20140113.2324";
+ version = "20140113.1624";
src = fetchFromGitHub {
owner = "apg";
repo = "unipoint";
@@ -61105,7 +62007,7 @@
sha256 = "1wl9rzys1zr2c41h5i57y6hxsavix1b26f453l2izmb6r0b1dvh0";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/unipoint";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/7fabdb05de9b8ec18a3a566f99688b50443b6b44/recipes/unipoint";
sha256 = "0fm7anwcmga9adyfwlri7x014rpvfl1r6nccyi6lrpx126wy008s";
name = "unipoint";
};
@@ -61115,10 +62017,31 @@
license = lib.licenses.free;
};
}) {};
+ unison = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
+ melpaBuild {
+ pname = "unison";
+ version = "20160701.1317";
+ src = fetchFromGitHub {
+ owner = "unhammer";
+ repo = "unison.el";
+ rev = "0f45daef84207bf4d12966991bb838830866090d";
+ sha256 = "0ihwa6vjcbjx47vawv0p8wcl001vn2cyfrpj68sclh6il75dg58i";
+ };
+ recipeFile = fetchurl {
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/ee7ee1a68486f822c1627fb0bf066c4ae8bc0776/recipes/unison";
+ sha256 = "03v10r6d4r6z66s9q7mg1iyxh53f3l6q7dij7pfbf32migqjgpir";
+ name = "unison";
+ };
+ packageRequires = [ emacs ];
+ meta = {
+ homepage = "https://melpa.org/#/unison";
+ license = lib.licenses.free;
+ };
+ }) {};
unison-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "unison-mode";
- version = "20160513.1701";
+ version = "20160513.1001";
src = fetchFromGitHub {
owner = "impaktor";
repo = "unison-mode";
@@ -61126,7 +62049,7 @@
sha256 = "1snbvhvx2csw1f314dbdwny8yvfq834plpkzx0vl4k3wddmr3a66";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/unison-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/bd5b5c16e504ee8e511bbc65acbc0ff65f99eaf4/recipes/unison-mode";
sha256 = "03kyr1h5pm51vn4bykj13rm4ybln266rpnxh65y2ygw8f8md88gl";
name = "unison-mode";
};
@@ -61139,7 +62062,7 @@
unkillable-scratch = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "unkillable-scratch";
- version = "20160505.403";
+ version = "20160504.2103";
src = fetchFromGitHub {
owner = "EricCrosson";
repo = "unkillable-scratch";
@@ -61147,7 +62070,7 @@
sha256 = "0bhdqpxq6cly4b6v4ya1ksw0yfdb9g2f2ifbjn4gfcq6j4zszbdm";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/unkillable-scratch";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/822ac5610f333e41b676a29ef45a6f8bfea3162e/recipes/unkillable-scratch";
sha256 = "0ghbpa9pf7k6vd2mjxkpqg2qfl4sd40ir6mrk1rxr1rv8s0afkf7";
name = "unkillable-scratch";
};
@@ -61160,7 +62083,7 @@
url-shortener = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "url-shortener";
- version = "20160405.459";
+ version = "20160404.2159";
src = fetchFromGitHub {
owner = "yuyang0";
repo = "url-shortener";
@@ -61168,7 +62091,7 @@
sha256 = "179hi6hsp2naczlcym3qxx9wbqx96bkkzvqygf3iffa0rmik4j7h";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/url-shortener";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/ac2d564ebebda3c7c5b5da278355dd242199427a/recipes/url-shortener";
sha256 = "12r01dyk55bs01jk0ab9f24lfvm63h8kvix223pii5y9890dr6ys";
name = "url-shortener";
};
@@ -61181,7 +62104,7 @@
urlenc = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "urlenc";
- version = "20140116.1556";
+ version = "20140116.856";
src = fetchFromGitHub {
owner = "buzztaiki";
repo = "urlenc-el";
@@ -61189,7 +62112,7 @@
sha256 = "0xwr0v4f64d7hi5ldig4r5yjn8h3f8by49g5820187lsp7ng2nw4";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/urlenc";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/5c36c416a13328ab762041dd62407b7b0696de93/recipes/urlenc";
sha256 = "0n6shh95m11162zsnf62zy1ljswdjznjilxx2dbqyqdrn7qr2dgh";
name = "urlenc";
};
@@ -61201,13 +62124,13 @@
}) {};
usage-memo = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild {
pname = "usage-memo";
- version = "20110722.1751";
+ version = "20110722.1051";
src = fetchurl {
url = "https://www.emacswiki.org/emacs/download/usage-memo.el";
sha256 = "00g1zj5fjykdi6gh2wkswpwx132xa6jmwfnrgfg5r96zwb8pib4i";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/usage-memo";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/ae8f3adf42300fc0d8f0c5474edf839614d84978/recipes/usage-memo";
sha256 = "05n50adjnavl7ag24wfjwlnbv5x55qlhmplgsm8j57gjig01nd95";
name = "usage-memo";
};
@@ -61220,15 +62143,15 @@
use-package = callPackage ({ bind-key, diminish, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "use-package";
- version = "20160403.2029";
+ version = "20160614.1003";
src = fetchFromGitHub {
owner = "jwiegley";
repo = "use-package";
- rev = "22c63c8f98fc318c357b51a658cee62d64601e16";
- sha256 = "19vc1hblbqlns2c28aqwjpmj8k35ih7akqi04wrqv1b6pljfy3jg";
+ rev = "56687f58c499db608167065b8d94a371902f3ed4";
+ sha256 = "0dr8zkx6nr4n7i02l7v5k36cckiwjrrxafh72pi2qzk3b7n1yvrm";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/use-package";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/3f9b52790e2a0bd579c24004873df5384e2ba549/recipes/use-package";
sha256 = "0z7k77yfvsndql719qy4vypnwvi9izal8k8vhdx0pw8msaz4xqd8";
name = "use-package";
};
@@ -61241,7 +62164,7 @@
use-package-chords = callPackage ({ bind-chord, bind-key, fetchFromGitHub, fetchurl, lib, melpaBuild, use-package }:
melpaBuild {
pname = "use-package-chords";
- version = "20160530.1942";
+ version = "20160530.1242";
src = fetchFromGitHub {
owner = "waymondo";
repo = "use-package-chords";
@@ -61249,7 +62172,7 @@
sha256 = "0d69hckz6xbll1x2mll385kcw7mwx8cwxg1wdhphnww0s810isgp";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/use-package-chords";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/92fbae4e0bcc1d5ad9f3f42d01f08ab4c3450f1f/recipes/use-package-chords";
sha256 = "18av8gkz3nzyqigyd88ajvylsz2nswsfywxrk2w8d0ykc3p37ass";
name = "use-package-chords";
};
@@ -61262,7 +62185,7 @@
utop = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "utop";
- version = "20151105.1147";
+ version = "20151105.447";
src = fetchFromGitHub {
owner = "diml";
repo = "utop";
@@ -61270,7 +62193,7 @@
sha256 = "1vacc4l5jsyxdfcinxja3r1qyc4cskmd9xvxp6zxkjfw4x6nr71c";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/utop";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/30489fe52b4031184e54f994770aa3291257bc9d/recipes/utop";
sha256 = "0lv16kl29gc9hdcpn04l85pf7x93vkl41s4mgqp678cllzyr0cq7";
name = "utop";
};
@@ -61283,7 +62206,7 @@
uuid = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "uuid";
- version = "20120910.1051";
+ version = "20120910.351";
src = fetchFromGitHub {
owner = "nicferrier";
repo = "emacs-uuid";
@@ -61291,7 +62214,7 @@
sha256 = "0r74gw8gcbrr62rvj4anz0c3n6kwi1xpb42d3pkzlh4igblhi5zj";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/uuid";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/a717d05d3158658c8e57670ee630a9cc16a4aea0/recipes/uuid";
sha256 = "13xjnawir9i83j2abxxkl12gz3wapgbk56cps3qyfgql02bfk2rw";
name = "uuid";
};
@@ -61304,7 +62227,7 @@
uuidgen = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "uuidgen";
- version = "20140919.101";
+ version = "20140918.1801";
src = fetchFromGitHub {
owner = "kanru";
repo = "uuidgen-el";
@@ -61312,7 +62235,7 @@
sha256 = "19bf6vpc2b9hfjkjanji96fflvk1lbillasnpwcb6zzyq0cs47bw";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/uuidgen";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/8bdeb5848d0b160a74e834ed918e83653d7342bf/recipes/uuidgen";
sha256 = "1qaz7hg0wsdkl0jb7v7vrkjs554i2zgpxl8xq2f8q7m4bs2m5k48";
name = "uuidgen";
};
@@ -61325,7 +62248,7 @@
uzumaki = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "uzumaki";
- version = "20150120.206";
+ version = "20150119.1906";
src = fetchFromGitHub {
owner = "geyslan";
repo = "uzumaki";
@@ -61333,7 +62256,7 @@
sha256 = "0fx18m688wfflbzwv8h3051439fwql69v1ip5q6xn958rdq4pi3x";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/uzumaki";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/6d63f9408e3bb581a47c8ab1f729f9ee087933d6/recipes/uzumaki";
sha256 = "1fvhzz2qpyc819rjvzyf42jmb70hlg7a9ybqwi81w7rydpabg61q";
name = "uzumaki";
};
@@ -61343,10 +62266,31 @@
license = lib.licenses.free;
};
}) {};
+ v2ex-mode = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, let-alist, lib, melpaBuild, request }:
+ melpaBuild {
+ pname = "v2ex-mode";
+ version = "20160628.2054";
+ src = fetchFromGitHub {
+ owner = "aborn";
+ repo = "v2ex-mode";
+ rev = "24288b04ca239b51ef7988605fc25d00b13d492b";
+ sha256 = "04jd8fgzndcq835crk7jk22qyq4q9aqnf9z07ixpxzxmc3fr6arj";
+ };
+ recipeFile = fetchurl {
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/b27b7d777415aa350c8c30822e239b9a4c02e77d/recipes/v2ex-mode";
+ sha256 = "04frd6jbnf9g7ak2fdbik9iji7b0903cpbg1hx7rai1853af7gh1";
+ name = "v2ex-mode";
+ };
+ packageRequires = [ cl-lib let-alist request ];
+ meta = {
+ homepage = "https://melpa.org/#/v2ex-mode";
+ license = lib.licenses.free;
+ };
+ }) {};
vagrant = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "vagrant";
- version = "20160505.1030";
+ version = "20160505.330";
src = fetchFromGitHub {
owner = "ottbot";
repo = "vagrant.el";
@@ -61354,7 +62298,7 @@
sha256 = "1661fwfx2gpxjriy3ngi9raz8c2kkk3rgg51irdi591jr2zqmw6s";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/vagrant";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/091dcc3775ec2137cb61d66df4e72aca4900897a/recipes/vagrant";
sha256 = "0g6sqzsx3lixcn09fkxhhcfp45qnqgf1ms0l7nkzyljavb7151cf";
name = "vagrant";
};
@@ -61367,7 +62311,7 @@
vagrant-tramp = callPackage ({ dash, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "vagrant-tramp";
- version = "20160428.132";
+ version = "20160427.1832";
src = fetchFromGitHub {
owner = "dougm";
repo = "vagrant-tramp";
@@ -61375,7 +62319,7 @@
sha256 = "138gw90wa2qyzyicig3cwhpb1xc5bh9g0vb87y91afjlykhzr6a5";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/vagrant-tramp";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/baea9f16e245aec3f62e55471358c7208f61372d/recipes/vagrant-tramp";
sha256 = "0ij7k27zj22sl7inx141l4dg0ymywnvyabjvaqzc0xjdj0cky5c5";
name = "vagrant-tramp";
};
@@ -61388,7 +62332,7 @@
vala-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "vala-mode";
- version = "20150324.2325";
+ version = "20150324.1725";
src = fetchFromGitHub {
owner = "emacsorphanage";
repo = "vala-mode";
@@ -61396,7 +62340,7 @@
sha256 = "10vs4d8csww781j1ps3f6dczy5zzza36z7a8zqk40fg4x57ikw44";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/vala-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/cea26fa67a524b7c14be2952cfbd4f657431415f/recipes/vala-mode";
sha256 = "164dhlsiflhpdymk3q5x0bv8gpbwfp34lnkhm2x90kdakfzqf91p";
name = "vala-mode";
};
@@ -61409,7 +62353,7 @@
vala-snippets = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, yasnippet }:
melpaBuild {
pname = "vala-snippets";
- version = "20150429.552";
+ version = "20150428.2252";
src = fetchFromGitHub {
owner = "gopar";
repo = "vala-snippets";
@@ -61417,7 +62361,7 @@
sha256 = "0iscaz8lm4fk6w13f68ysqk8ppng2wj9fkkkq1rfqz77ws66f8nq";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/vala-snippets";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/70f130c5751f47c1ead5f8915680e817e0239a2a/recipes/vala-snippets";
sha256 = "14hmmic0px3z38dm2dg0kis6cz1p3p1hj7xaqnqjmv02dkx2mmcy";
name = "vala-snippets";
};
@@ -61430,7 +62374,7 @@
vbasense = callPackage ({ auto-complete, fetchFromGitHub, fetchurl, lib, log4e, melpaBuild, yaxception }:
melpaBuild {
pname = "vbasense";
- version = "20140222.53";
+ version = "20140221.1753";
src = fetchFromGitHub {
owner = "aki2o";
repo = "emacs-vbasense";
@@ -61438,7 +62382,7 @@
sha256 = "19j5q2f6pybvjq3ryjcyihzlw348hqyjhfcy3qflry6w786dqcgn";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/vbasense";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/8e7dd1e985d55149f48e4f93a31fb28ec01a4add/recipes/vbasense";
sha256 = "1440q2bi4arpl5lbqh7zscg7v3884clqx54p2fdfcfkz47ky4z9n";
name = "vbasense";
};
@@ -61451,7 +62395,7 @@
vc-auto-commit = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "vc-auto-commit";
- version = "20160108.1115";
+ version = "20160108.415";
src = fetchFromGitHub {
owner = "thisirs";
repo = "vc-auto-commit";
@@ -61459,7 +62403,7 @@
sha256 = "09h7yg44hbxv3pyazfypkvk8j3drlwz0zn8x1wj0kbsviksl1wxk";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/vc-auto-commit";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/770ab1e99fe63789726fc6c8c5d7e9a0287bc5fa/recipes/vc-auto-commit";
sha256 = "1xpp7vbld3jgcr249m5h7il919kfg7d5ap3zs64i27axzdhv26zk";
name = "vc-auto-commit";
};
@@ -61472,7 +62416,7 @@
vc-check-status = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "vc-check-status";
- version = "20160108.1116";
+ version = "20160108.416";
src = fetchFromGitHub {
owner = "thisirs";
repo = "vc-check-status";
@@ -61480,7 +62424,7 @@
sha256 = "0icc4kqfpimxlja4jgcy9gjj4myc8y84vbvacyf79lxixygpaxi1";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/vc-check-status";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/0387e08dd7ed69b291e896d85bd975c4f5dcbd09/recipes/vc-check-status";
sha256 = "1kwnxa0ndfj8b211xy5d47sxkwmsay0kk8q7azfm5ag5dkg56zgi";
name = "vc-check-status";
};
@@ -61493,7 +62437,7 @@
vc-darcs = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "vc-darcs";
- version = "20151225.2128";
+ version = "20151225.1428";
src = fetchFromGitHub {
owner = "velkyel";
repo = "vc-darcs";
@@ -61501,7 +62445,7 @@
sha256 = "1zpvinbc3nrnjm931fgzrlkl31xcsg9ikh041s1fkfjkhfq0h82h";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/vc-darcs";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/54f89c50ae45365e86bdadcf67b2411c0f4c5603/recipes/vc-darcs";
sha256 = "1xskl9wjxkbdpi0fm769ymbvya70vssi944x5252w2d3layibm6m";
name = "vc-darcs";
};
@@ -61514,7 +62458,7 @@
vc-osc = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "vc-osc";
- version = "20120910.1111";
+ version = "20120910.411";
src = fetchFromGitHub {
owner = "aspiers";
repo = "vc-osc";
@@ -61522,7 +62466,7 @@
sha256 = "0whzfzg0m03wbmqsxml8hislnbfvawcniq83hj66lbrnbivxsqj4";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/vc-osc";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/70a1fa5fdfdfa9ec5607524be62eb44fe82e91b0/recipes/vc-osc";
sha256 = "0rp33945xk5d986brganqnn55psmlkj6glbimxakhgv9a1r85sxz";
name = "vc-osc";
};
@@ -61535,15 +62479,15 @@
vcl-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "vcl-mode";
- version = "20151213.2023";
+ version = "20160613.946";
src = fetchFromGitHub {
owner = "ssm";
repo = "vcl-mode";
- rev = "9f315654ec2ab13e5a14b752cac57dc832bef893";
- sha256 = "1jfis26lmghl30ydzq1xdkrrj3d85q7g44ns6kmfg119ccapllbj";
+ rev = "5c3d4bff510c3eaf08fe30e9bac99be9ec0a97bf";
+ sha256 = "1478marxzl3kq79ssnfzjv5yxcqipkmckls1h65vm8mf5f86svgf";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/vcl-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/bcbe3892fd20e624117de534ca92ba3fba1669a1/recipes/vcl-mode";
sha256 = "1h0a1briinp9ka7ga3ipdhyf7yfinwvf7babv36myi720900wcq5";
name = "vcl-mode";
};
@@ -61556,7 +62500,7 @@
vcomp = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "vcomp";
- version = "20140907.8";
+ version = "20140906.1708";
src = fetchFromGitHub {
owner = "tarsius";
repo = "vcomp";
@@ -61564,7 +62508,7 @@
sha256 = "0fzz26c1pdaz3i58ndhzd2520mhny487daqs21yajxi9x2m00zrl";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/vcomp";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/561442ea9f75ebe8444db1a0c40f7756fcbca482/recipes/vcomp";
sha256 = "02cj2nlyxvgvl2rjfgacljvcsnfm9crmmkhcm2pznj9xw10y8pq0";
name = "vcomp";
};
@@ -61577,7 +62521,7 @@
vdirel = callPackage ({ emacs, fetchFromGitHub, fetchurl, helm, lib, melpaBuild, org-vcard, seq }:
melpaBuild {
pname = "vdirel";
- version = "20151216.755";
+ version = "20151216.55";
src = fetchFromGitHub {
owner = "DamienCassou";
repo = "vdirel";
@@ -61585,7 +62529,7 @@
sha256 = "1lh8nv0ayl9ipl2aqc8npzz84g5q7w6v60l14v61mmk34fc23lnc";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/vdirel";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/72b5ea3f4444c3de73d986a28e1d12bf47c40246/recipes/vdirel";
sha256 = "11cc7bw7x5h3bwnlsjyhw6k5fh2fk7wffarrcny562v4cmr013cj";
name = "vdirel";
};
@@ -61598,7 +62542,7 @@
vector-utils = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "vector-utils";
- version = "20140508.2241";
+ version = "20140508.1541";
src = fetchFromGitHub {
owner = "rolandwalker";
repo = "vector-utils";
@@ -61606,7 +62550,7 @@
sha256 = "1wa03gb98x650q798aqshm43kh6gfxaz1rlyrmvka5dxgf48whmf";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/vector-utils";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/081aa3e1d50c2c9e5a9b9ce0716258a93279f605/recipes/vector-utils";
sha256 = "07armr23pq5pd47lqhir6a59r86c84zikbc51d8vfcaw8y71yr5n";
name = "vector-utils";
};
@@ -61619,7 +62563,7 @@
verify-url = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "verify-url";
- version = "20160426.1428";
+ version = "20160426.728";
src = fetchFromGitHub {
owner = "lujun9972";
repo = "verify-url";
@@ -61627,7 +62571,7 @@
sha256 = "1y6vjw5qzaxr37spg5d4nxffmhiipzsrd7mvh8bs3jcfrsg3080n";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/verify-url";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/2070f7b1901c83e59468f6498bd5f79077ccb79d/recipes/verify-url";
sha256 = "1gd83rb1q0kywchd0345p5axqj1sv4f5kadympx5pbp4n5p1dqb2";
name = "verify-url";
};
@@ -61640,7 +62584,7 @@
vertica = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, sql ? null }:
melpaBuild {
pname = "vertica";
- version = "20131217.1611";
+ version = "20131217.911";
src = fetchFromGitHub {
owner = "r0man";
repo = "vertica-el";
@@ -61648,7 +62592,7 @@
sha256 = "1mp71axs3vdrdwlhgywfldvnr6a1g2qbxiywmpfmcv59n5n58p1j";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/vertica";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/f98a06b794ef0936db953f63679a63232295a849/recipes/vertica";
sha256 = "1ljjk6zrbr2k0s0iaqd9iq3j45cavijcx0rqdidliswnfllav4ng";
name = "vertica";
};
@@ -61661,7 +62605,7 @@
vertigo = callPackage ({ dash, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "vertigo";
- version = "20160430.605";
+ version = "20160429.2305";
src = fetchFromGitHub {
owner = "noctuid";
repo = "vertigo.el";
@@ -61669,7 +62613,7 @@
sha256 = "044vy6yi9yfk3h2gd3a718w50py02h1b5fr0i7a08rjlq4l3srka";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/vertigo";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/f1957e7fa03b6b8eb2f3250bd814d707bce3cfa3/recipes/vertigo";
sha256 = "0x0wy1z601sk1x96bl2xx18qm4avd77iybq1a3ss8x8ykwqlgf83";
name = "vertigo";
};
@@ -61682,7 +62626,7 @@
vhdl-capf = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "vhdl-capf";
- version = "20160221.1834";
+ version = "20160221.1134";
src = fetchFromGitHub {
owner = "sh-ow";
repo = "vhdl-capf";
@@ -61690,7 +62634,7 @@
sha256 = "185a7962h94122q783ih7s8r28xifm0bcrqvkd0g4p64mijlbh3d";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/vhdl-capf";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/6192f5777bc8be6ddc5523f92ab641ed3af1a504/recipes/vhdl-capf";
sha256 = "06dkw5ra9wnscpgrnx851vyfgr5797xd60qdimsr2v1bqd8si9km";
name = "vhdl-capf";
};
@@ -61703,15 +62647,15 @@
vhdl-tools = callPackage ({ emacs, fetchFromGitHub, fetchurl, ggtags, helm, lib, melpaBuild, outshine, projectile }:
melpaBuild {
pname = "vhdl-tools";
- version = "20160501.1911";
+ version = "20160629.835";
src = fetchFromGitHub {
owner = "csantosb";
repo = "vhdl-tools";
- rev = "f456ad2b1ce5efa04d22b22d60c0321dfd1e56a4";
- sha256 = "1syfmx7gzphy08h2py3789xwkqwgirfg189h8s6400q9sznzm6fc";
+ rev = "c0d03f45cd2c394aeeff10473a38edf1c4126440";
+ sha256 = "1yg9hjn8y3m2y7xcfkd06nr8zz45alfy18q9d01fyhndjx87zvaa";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/vhdl-tools";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/69fe2f8fb98ac1af1d3185f62ae1c89e646cfebf/recipes/vhdl-tools";
sha256 = "006d9xv60a90xalagczkziiimwsr1np9nn25zvnc4nlbf8j3fbbw";
name = "vhdl-tools";
};
@@ -61724,7 +62668,7 @@
vi-tilde-fringe = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "vi-tilde-fringe";
- version = "20141028.342";
+ version = "20141027.2142";
src = fetchFromGitHub {
owner = "syl20bnr";
repo = "vi-tilde-fringe";
@@ -61732,7 +62676,7 @@
sha256 = "0wdm8k49zl6i6wnh7vjkswdh5m9lix56jv37xvc90inipwgs402z";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/vi-tilde-fringe";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/8b3359d57148f8205f8a863a21d92fe4912f31cc/recipes/vi-tilde-fringe";
sha256 = "0jhwv46gjwjbs1ai65nm6k15y0q4yl9m5mawgp3n4f45dh02cawp";
name = "vi-tilde-fringe";
};
@@ -61745,7 +62689,7 @@
viewer = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "viewer";
- version = "20141021.2036";
+ version = "20141021.1336";
src = fetchFromGitHub {
owner = "rubikitch";
repo = "viewer";
@@ -61753,7 +62697,7 @@
sha256 = "1ch8lr514f9lp3wdhy1z4dqcbnqkbqkgflnchwd82r5ylzbdxy2a";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/viewer";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/f8e4328cae9b4759a75da0b26ea8b68821bc71af/recipes/viewer";
sha256 = "10rw3b8akd2fl8gsqf1m24zi6q4n0z68lvvv1vx9c9b7ghqcqxw1";
name = "viewer";
};
@@ -61766,7 +62710,7 @@
viking-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "viking-mode";
- version = "20160529.1237";
+ version = "20160529.537";
src = fetchFromGitHub {
owner = "tlinden";
repo = "viking-mode";
@@ -61774,7 +62718,7 @@
sha256 = "1fmjcm33hvm7d9ppf8lnbdqcqda8xj332hqdm50pvl0qfj90mp94";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/viking-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/5805575f353c14a62d00543a23eb4c638d9d52dc/recipes/viking-mode";
sha256 = "13g6gw8yc4pgi1zjig6nlpnsh52dzmprisq95r6lx6hk0xbzrx16";
name = "viking-mode";
};
@@ -61787,7 +62731,7 @@
vim-empty-lines-mode = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "vim-empty-lines-mode";
- version = "20150111.526";
+ version = "20150110.2226";
src = fetchFromGitHub {
owner = "jmickelin";
repo = "vim-empty-lines-mode";
@@ -61795,7 +62739,7 @@
sha256 = "11qh6fpf6269j9syf06v5wnkgi65wnn7dbyjwb6yz72rvq7ihhcz";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/vim-empty-lines-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/e93a8dcd2ff159203288e71da6b8f28eab0d2006/recipes/vim-empty-lines-mode";
sha256 = "17bl1g4ais73ws596mha0l8dgckfqhx9k2v9m9k0gw7kg7dcjhnb";
name = "vim-empty-lines-mode";
};
@@ -61808,7 +62752,7 @@
vim-region = callPackage ({ expand-region, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "vim-region";
- version = "20140329.1724";
+ version = "20140329.1124";
src = fetchFromGitHub {
owner = "ongaeshi";
repo = "emacs-vim-region";
@@ -61816,7 +62760,7 @@
sha256 = "13g2hin100c8h5bd7hzhyqzj02ab9c35giyv963l7y044v7sbwig";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/vim-region";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/23249b485ca8e66a21f858712f46aa76b8554f28/recipes/vim-region";
sha256 = "1dcnx799lpjsdnnjxqzgskkfj2nx7f4kwf0xjhbg35ny4nyn81dx";
name = "vim-region";
};
@@ -61829,7 +62773,7 @@
vimgolf = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "vimgolf";
- version = "20140814.2348";
+ version = "20140814.1648";
src = fetchFromGitHub {
owner = "timvisher";
repo = "vimgolf";
@@ -61837,7 +62781,7 @@
sha256 = "1i407ilhmk2qrk66ygbvizq964bdk502x7lvrzs4wxwfr5y8ciyj";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/vimgolf";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/0bded518d1544a9442c13c5cbfab64f0f1cbdb6d/recipes/vimgolf";
sha256 = "1hvw2pfa5a984hm6wd33bf6zz6hmlprc6qs3g789dfx91qm890vn";
name = "vimgolf";
};
@@ -61850,7 +62794,7 @@
vimish-fold = callPackage ({ cl-lib ? null, emacs, f, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "vimish-fold";
- version = "20160531.1832";
+ version = "20160531.1132";
src = fetchFromGitHub {
owner = "mrkkrp";
repo = "vimish-fold";
@@ -61858,7 +62802,7 @@
sha256 = "1n8aw5g0a38irx2m93fgqll99n6w59h6nzkrmzb9747bvar4mpsg";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/vimish-fold";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/b4862b0a3d43f073e645803cbbf11d973a4b51d5/recipes/vimish-fold";
sha256 = "017by9w53d8pqlsazfycmhdv16yylks308p5vxp1rcw2qacpc5m3";
name = "vimish-fold";
};
@@ -61871,7 +62815,7 @@
vimrc-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "vimrc-mode";
- version = "20150607.1813";
+ version = "20150607.1113";
src = fetchFromGitHub {
owner = "mcandre";
repo = "vimrc-mode";
@@ -61879,7 +62823,7 @@
sha256 = "000fs2h5zcv8aq8an16r6zwwf9x1qnfs7xxn39iahiwfzvnljqp0";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/vimrc-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/81521d8020d55d75014302b1e5cf0d7126a34bc6/recipes/vimrc-mode";
sha256 = "06hisgsn0czvzbq8m4dz86h4q75j54a0gxkg5shnr8s654d450bp";
name = "vimrc-mode";
};
@@ -61892,7 +62836,7 @@
virtualenv = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "virtualenv";
- version = "20140221.1";
+ version = "20140220.1701";
src = fetchFromGitHub {
owner = "aculich";
repo = "virtualenv.el";
@@ -61900,7 +62844,7 @@
sha256 = "0rd7hyv66278dj32yva5q9z1749y84c6fwl2iqrns512j1l4kl8q";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/virtualenv";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/923e4fcf29423ad55b13132d53759bc436466ef9/recipes/virtualenv";
sha256 = "1djqzzlbwsp9xyjqjbjwdck73wzikbpq19irzamybk90nc98wirl";
name = "virtualenv";
};
@@ -61913,7 +62857,7 @@
virtualenvwrapper = callPackage ({ dash, fetchFromGitHub, fetchurl, lib, melpaBuild, s }:
melpaBuild {
pname = "virtualenvwrapper";
- version = "20151127.1521";
+ version = "20151127.821";
src = fetchFromGitHub {
owner = "porterjamesj";
repo = "virtualenvwrapper.el";
@@ -61921,7 +62865,7 @@
sha256 = "05rzjlb04h7xyq7l7z87hqqcsf907p2nsxqnh7r6wm24kddfb0ab";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/virtualenvwrapper";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/acc9b816796b9f142c53f90593952b43c962d2d8/recipes/virtualenvwrapper";
sha256 = "0rn5vwncx8z69xp8hspr06nzkf28l9flchpb2936c2nalmhx6m8i";
name = "virtualenvwrapper";
};
@@ -61934,7 +62878,7 @@
visible-mark = callPackage ({ fetchFromGitLab, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "visible-mark";
- version = "20150624.650";
+ version = "20150623.2350";
src = fetchFromGitLab {
owner = "iankelling";
repo = "visible-mark";
@@ -61942,7 +62886,7 @@
sha256 = "15zdbvv6c114mv6hdq375l7ax70sss06p9d7m86hgssc3kiv9vsv";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/visible-mark";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/76ac7178ee5381e08ae881f3fc6061106eeb1c1d/recipes/visible-mark";
sha256 = "1rp0gnz28m1drwb1hhsf0mwxzdppdi88hscf788qw8cw65gckv80";
name = "visible-mark";
};
@@ -61955,7 +62899,7 @@
visual-ascii-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "visual-ascii-mode";
- version = "20150129.1146";
+ version = "20150129.446";
src = fetchFromGitHub {
owner = "Dewdrops";
repo = "visual-ascii-mode";
@@ -61963,7 +62907,7 @@
sha256 = "1cv8mf3l92a9p8qmkfiphk3r81f2ihg2gyw2r4jbbd5ppwbxkl0n";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/visual-ascii-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/21df748a3f383d62c921e184e2a4c9ae4118ca98/recipes/visual-ascii-mode";
sha256 = "1h0143h39dq61afswlzlgpknk0gv574x91ar6klqmnaf1snab59g";
name = "visual-ascii-mode";
};
@@ -61976,7 +62920,7 @@
visual-fill-column = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "visual-fill-column";
- version = "20160411.1420";
+ version = "20160411.720";
src = fetchFromGitHub {
owner = "joostkremers";
repo = "visual-fill-column";
@@ -61984,7 +62928,7 @@
sha256 = "0r1iylk7r25wmlba4vlrc6k1apbkrbplb9id1h9q91wqhwdnxqal";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/visual-fill-column";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/c7628c805840c4687686d0b9dc5007342864721e/recipes/visual-fill-column";
sha256 = "19y0pwaybjal2rc7migdbnafpi4dfbxvrzgfqr8dlvd9q68v08y5";
name = "visual-fill-column";
};
@@ -61997,15 +62941,15 @@
visual-regexp = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "visual-regexp";
- version = "20160520.1300";
+ version = "20160624.520";
src = fetchFromGitHub {
owner = "benma";
repo = "visual-regexp.el";
- rev = "db0aab0346d0feba467f16ba08c1a71a0b00ecea";
- sha256 = "1l3p7fypl5abwmsks0ms66xxq3zc78dp9gpbvwv5pqzh8b2f4xdq";
+ rev = "2cf4dc5a2dff0736eb2e2da95997d7274bbb5766";
+ sha256 = "0zz83l97xkna2yqiiywxyhj2zwil2a0xqzdsdxw0ai951jql1j5r";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/visual-regexp";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/091dcc3775ec2137cb61d66df4e72aca4900897a/recipes/visual-regexp";
sha256 = "16bdqq2j7pnjq3j6qa4rhxzidqdhyg80c7nazd93smis8rcv5d0z";
name = "visual-regexp";
};
@@ -62018,7 +62962,7 @@
visual-regexp-steroids = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, visual-regexp }:
melpaBuild {
pname = "visual-regexp-steroids";
- version = "20160516.2138";
+ version = "20160516.1438";
src = fetchFromGitHub {
owner = "benma";
repo = "visual-regexp-steroids.el";
@@ -62026,7 +62970,7 @@
sha256 = "0bc44z8y1jmw7jlz785bisy36v08jichj53nwhmp2wjyv40xy321";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/visual-regexp-steroids";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/7f105ebce741956b7becc86e4bdfcafecf59af74/recipes/visual-regexp-steroids";
sha256 = "1xkrzyyll8wmb67m75lfm9k8qcm068km8r1k8hcsadpkd01bx1lr";
name = "visual-regexp-steroids";
};
@@ -62039,7 +62983,7 @@
vkill = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "vkill";
- version = "20091203.1922";
+ version = "20091203.1222";
src = fetchFromGitHub {
owner = "emacsmirror";
repo = "vkill";
@@ -62047,7 +62991,7 @@
sha256 = "0hb845pnh2yska6alca8hbbxh65x7g81pr7852h8fddm0qd1agkd";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/vkill";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/1fe8711711d5c7e1dfdf81b8153a193e6940a16c/recipes/vkill";
sha256 = "09siqsip6d2h3jrxbdbhylkqm42dx3d2dqlkkdw3a81c7ga9lpwm";
name = "vkill";
};
@@ -62060,7 +63004,7 @@
vlf = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "vlf";
- version = "20150101.1618";
+ version = "20150101.918";
src = fetchFromGitHub {
owner = "m00natic";
repo = "vlfi";
@@ -62068,7 +63012,7 @@
sha256 = "0vl0hwxzzvgna8sysf517qq08fi1zsff3dmcgwvsgzhc47sq8mng";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/vlf";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/9116b11eb513dd9e1dc9542d274dd60f183b24c4/recipes/vlf";
sha256 = "1ipkv5kmda0l39xwbf7ns9p0mx3kb781mxsm9vmbkhr5x577s2j8";
name = "vlf";
};
@@ -62080,13 +63024,13 @@
}) {};
vline = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild {
pname = "vline";
- version = "20120108.1345";
+ version = "20120108.645";
src = fetchurl {
url = "https://www.emacswiki.org/emacs/download/vline.el";
sha256 = "1ys6928fgk8mswa4gv10cxggir8acck27g78cw1z3pdz5gakbgnj";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/vline";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/aa860c2ccbaeb19d8b866919cdc45549d9cf9537/recipes/vline";
sha256 = "0p59xhyrv7fmcn3qi51sp8v9v2y71ray2s756zbhzgzg63h3nbjp";
name = "vline";
};
@@ -62099,7 +63043,7 @@
vmd-mode = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "vmd-mode";
- version = "20160601.219";
+ version = "20160531.1919";
src = fetchFromGitHub {
owner = "blak3mill3r";
repo = "vmd-mode";
@@ -62107,7 +63051,7 @@
sha256 = "0wjfpgypdii7y2zp2c3yb6pmgpcza11ds2x3dya4syn6ll7zhgz9";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/vmd-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/a305ed69dbad1a5f456acd1aad2fb9409d6d1fd6/recipes/vmd-mode";
sha256 = "1hd4bqgmrrznixmig5p9c3rl09r8z5d1jmmia2001i0r59wi61wb";
name = "vmd-mode";
};
@@ -62120,7 +63064,7 @@
voca-builder = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "voca-builder";
- version = "20150625.2033";
+ version = "20150625.1333";
src = fetchFromGitHub {
owner = "yitang";
repo = "voca-builder";
@@ -62128,7 +63072,7 @@
sha256 = "183pvfp5nnqpgdmfxm84qrnid0lijgk79l5lhwzmnznzkrb7bgxw";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/voca-builder";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/42a930e024ce525b2890ccd5a1eb4844859faafd/recipes/voca-builder";
sha256 = "0mbw87mpbb8rw7xzhmg6yjla2c80x9820kw4q00x00ny5rbhm76y";
name = "voca-builder";
};
@@ -62141,15 +63085,15 @@
volatile-highlights = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "volatile-highlights";
- version = "20160521.506";
+ version = "20160611.2055";
src = fetchFromGitHub {
owner = "k-talo";
repo = "volatile-highlights.el";
- rev = "eab9774fa301b6103c3f95fa0812e9241102c163";
- sha256 = "0k5n241zf4h9339iwjkngcjmi1qhfgaz73376ry5lvdq48izcgkg";
+ rev = "9a20091f0ce7fc0a6b3e641a6a46d5f3ac4d8392";
+ sha256 = "1dsa6769lphyyv7yg92vkkpk395w52q4m7hdn8xy7s6lh5c6a955";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/volatile-highlights";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/cae2ac3513e371a256be0f1a7468e38e686c2487/recipes/volatile-highlights";
sha256 = "1r6in919aqdziv6bgzp4k7jqa87bd287pacq615sd5m1nzva1a4d";
name = "volatile-highlights";
};
@@ -62162,7 +63106,7 @@
volume = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "volume";
- version = "20150718.2209";
+ version = "20150718.1509";
src = fetchFromGitHub {
owner = "dbrock";
repo = "volume-el";
@@ -62170,7 +63114,7 @@
sha256 = "0ymibjq6iwab5ia1fglhz4gm5cnbi792018fmrabcqkisj2zsjb7";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/volume";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/bde261750a2754c5bcf01b9a9260429609b8c2bf/recipes/volume";
sha256 = "1r01v453bpyh561j8ja36609hy60gc30arvmz4z3c1cybhv8sk1i";
name = "volume";
};
@@ -62183,7 +63127,7 @@
vue-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, mmm-mode }:
melpaBuild {
pname = "vue-mode";
- version = "20160412.554";
+ version = "20160411.2254";
src = fetchFromGitHub {
owner = "CodeFalling";
repo = "vue-mode";
@@ -62191,7 +63135,7 @@
sha256 = "1d9rwgyvizn1zas8v98v86g5kck0m567cprpcakdawwamn155k49";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/vue-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/2e5e0a9fff332aeec09f6d3d758e2b67dfdf8397/recipes/vue-mode";
sha256 = "0gy7a5sliaijq0666l55vbkg15anrw7k1828szdn1ppkraw14bn0";
name = "vue-mode";
};
@@ -62203,13 +63147,13 @@
}) {};
w32-browser = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild {
pname = "w32-browser";
- version = "20160101.120";
+ version = "20151231.1820";
src = fetchurl {
url = "https://www.emacswiki.org/emacs/download/w32-browser.el";
sha256 = "0vb5ss30mz0kqq8cscjckw647vqn6xprp2sfjcbpg2fx59z4agma";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/w32-browser";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/a5d15f875b0080b12ce45cf696c581f6bbf061ba/recipes/w32-browser";
sha256 = "14vc2cipwlwwc0b5ld4x0zvydkg8nbjmp0z2x6ca0nmxw8sfsnc6";
name = "w32-browser";
};
@@ -62222,13 +63166,13 @@
w32browser-dlgopen = callPackage ({ fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "w32browser-dlgopen";
- version = "20160101.121";
+ version = "20151231.1821";
src = fetchurl {
url = "https://www.emacswiki.org/emacs/download/w32browser-dlgopen.el";
sha256 = "0nyara81bnd0rvgyljqrrbvjvndkngdc7qzf6scl5iz3vlglfgy7";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/w32browser-dlgopen";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/a5d15f875b0080b12ce45cf696c581f6bbf061ba/recipes/w32browser-dlgopen";
sha256 = "0dnvsnahnbnvjlhfmb0q6agzikv9d42fbnfrwsz6hni92937gz39";
name = "w32browser-dlgopen";
};
@@ -62238,19 +63182,17 @@
license = lib.licenses.free;
};
}) {};
- w3m = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
- melpaBuild {
+ w3m = callPackage ({ fetchcvs, fetchurl, lib, melpaBuild }: melpaBuild {
pname = "w3m";
- version = "20121224.2047";
- src = fetchFromGitHub {
- owner = "emacsorphanage";
- repo = "w3m";
- rev = "5986b51c7c77500fee3349fb0b3f4764d3fc727b";
- sha256 = "1lgvdaghzj1fzh8p6ans0f62zg1bfp086icbsqmyvbgpgcxia9cs";
+ version = "20160422.354";
+ src = fetchcvs {
+ cvsRoot = ":pserver:anonymous@cvs.namazu.org:/storage/cvsroot";
+ module = "emacs-w3m";
+ sha256 = "52e1e998a3bf83fe7bca1d70de5845fdfca04d09467adc3b691987f17a98ff5e";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/w3m";
- sha256 = "0vh882b44vxnij3l01sig87c1jmbymgirf6s98mvag1p9rm8agxw";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/8bbb18b0db057b9cca78ae7280674fd1beb56443/recipes/w3m";
+ sha256 = "17mzs126fvlnsvxgfpbil9wmka0i87psblq49phky7dywcwz27lc";
name = "w3m";
};
packageRequires = [];
@@ -62262,7 +63204,7 @@
wacspace = callPackage ({ cl-lib ? null, dash, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "wacspace";
- version = "20140827.732";
+ version = "20140827.32";
src = fetchFromGitHub {
owner = "shosti";
repo = "wacspace.el";
@@ -62270,7 +63212,7 @@
sha256 = "0nvlni3iy2sq76z8d4kj5492m0w7qv96shjqkynvlj0avf528hv4";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/wacspace";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/58e5ff4c5853c5350d0534894ddb358daa83cee9/recipes/wacspace";
sha256 = "1xy0mprvyi37zmgj1yrlh5ni08j47lpag1jm3a76cgghgmlfjxrl";
name = "wacspace";
};
@@ -62283,7 +63225,7 @@
waher-theme = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "waher-theme";
- version = "20141115.1330";
+ version = "20141115.630";
src = fetchFromGitHub {
owner = "emacsfodder";
repo = "emacs-waher-theme";
@@ -62291,7 +63233,7 @@
sha256 = "0w59ix8cbbcyhh882c8vkrbh84i8d03h9w7dchr3qy233b8wcxlc";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/waher-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/c734ba401d7d9255e0934c31ca5269866af035db/recipes/waher-theme";
sha256 = "091kipkb6z6x9ic4chprim9rvnmx4yj4419ijmvpn70w69aspnb5";
name = "waher-theme";
};
@@ -62304,7 +63246,7 @@
wakatime-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "wakatime-mode";
- version = "20160417.1009";
+ version = "20160417.309";
src = fetchFromGitHub {
owner = "wakatime";
repo = "wakatime-mode";
@@ -62312,7 +63254,7 @@
sha256 = "06d6ywc0hq6jn5ahq96qa8v8fnps464f2gjmdhsgvj8b0d0c5jl1";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/wakatime-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/a46036a0e53afbebacafd3bc9545c99af79ccfcc/recipes/wakatime-mode";
sha256 = "1rhy2bwkqlha4bj3zmb0iassiglch7yb2kbas0bbpl3d0hdki2i8";
name = "wakatime-mode";
};
@@ -62325,7 +63267,7 @@
wand = callPackage ({ dash, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "wand";
- version = "20141105.145";
+ version = "20141104.1845";
src = fetchFromGitHub {
owner = "cmpitg";
repo = "wand";
@@ -62333,7 +63275,7 @@
sha256 = "09gqsssc2sk0vwfg0h4zxq9a779sdjdgvxsw7p6n2k0g4wk0phri";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/wand";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/38be840bbb32094b753ec169b717a70817006655/recipes/wand";
sha256 = "052zq5dp800hynd9fb6c645kjb9rp3bpkz41ifazjnx4h4864r0l";
name = "wand";
};
@@ -62346,7 +63288,7 @@
wandbox = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, request, s }:
melpaBuild {
pname = "wandbox";
- version = "20160418.2014";
+ version = "20160418.1314";
src = fetchFromGitHub {
owner = "kosh04";
repo = "emacs-wandbox";
@@ -62354,7 +63296,7 @@
sha256 = "06jqlvy2078fd8py59z5rraf2ymlkv6wizmw91vq63f87vpw71zg";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/wandbox";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/091dcc3775ec2137cb61d66df4e72aca4900897a/recipes/wandbox";
sha256 = "0myyln82nx462bj79acvqxwvmblxild4vbygcrzw5chcwy6crvlz";
name = "wandbox";
};
@@ -62367,7 +63309,7 @@
wanderlust = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, semi }:
melpaBuild {
pname = "wanderlust";
- version = "20160430.138";
+ version = "20160429.1838";
src = fetchFromGitHub {
owner = "wanderlust";
repo = "wanderlust";
@@ -62375,7 +63317,7 @@
sha256 = "01zwk4rh18fmgrj75kyhkny1s3r0cmnjjnxa3ljbw1yy6q90acga";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/wanderlust";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/426172b72026d1adeb1bf3fcc6b0407875047333/recipes/wanderlust";
sha256 = "0lq7fvqc0isv49lcm7ql6prc3hpcj5cx4kf8f4gcnfv5k8159cq9";
name = "wanderlust";
};
@@ -62388,7 +63330,7 @@
warm-night-theme = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "warm-night-theme";
- version = "20150607.1641";
+ version = "20150607.941";
src = fetchFromGitHub {
owner = "mswift42";
repo = "warm-night-theme";
@@ -62396,7 +63338,7 @@
sha256 = "1x472s5qr6wvla7nj5i9mas8z9qhkj4zj5qghfwn5chb9igvfkif";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/warm-night-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/312e3298d51b8ed72028df34dbd7620cdd03d8dd/recipes/warm-night-theme";
sha256 = "1nrjkrr64rry6fjya22b0lcs0f8a2ijvr87192z311y9mw5rvb29";
name = "warm-night-theme";
};
@@ -62409,7 +63351,7 @@
watch-buffer = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "watch-buffer";
- version = "20120331.2244";
+ version = "20120331.1544";
src = fetchFromGitHub {
owner = "mjsteger";
repo = "watch-buffer";
@@ -62417,7 +63359,7 @@
sha256 = "0i84ndnxma8s07kf5ixqyhv5f89mzc4iymgazj5inmxhvbc7s7r2";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/watch-buffer";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/577ff702b17f93e0db383a92e9bb3221e08de31c/recipes/watch-buffer";
sha256 = "18sxgihmqmkrbgs66qgnrsjqbp90l93531hns31fbnif10bkx2j5";
name = "watch-buffer";
};
@@ -62430,7 +63372,7 @@
wavefront-obj-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "wavefront-obj-mode";
- version = "20150501.2016";
+ version = "20150501.1316";
src = fetchFromGitHub {
owner = "abend";
repo = "wavefront-obj-mode";
@@ -62438,7 +63380,7 @@
sha256 = "0zw8z2r82986likz0b0zy37bywicrvz9dizzw9p52gs1lx0is1fy";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/wavefront-obj-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/d48e4fdc6c7079a1ca70c1e879473a98c11bbe6c/recipes/wavefront-obj-mode";
sha256 = "0qqismh6g2fvi45q2q52lq0n9nrh95wgamlsy5j4rx4syfgzxbrk";
name = "wavefront-obj-mode";
};
@@ -62451,7 +63393,7 @@
wc-goal-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "wc-goal-mode";
- version = "20140829.1559";
+ version = "20140829.859";
src = fetchFromGitHub {
owner = "bnbeckwith";
repo = "wc-goal-mode";
@@ -62459,7 +63401,7 @@
sha256 = "0p7j4hvcxfyjf0na9s3xv29dvmwq82s56lincfasd0ydcpz4fbwc";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/wc-goal-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/6f003b6d6bc91e6f9e510de8f5f5f9189d1c7334/recipes/wc-goal-mode";
sha256 = "0l3gh96njjldp7n13jn1zjrp17h7ivjak102j6wwspgg6v2h5419";
name = "wc-goal-mode";
};
@@ -62472,7 +63414,7 @@
wc-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "wc-mode";
- version = "20131121.1726";
+ version = "20131121.1026";
src = fetchFromGitHub {
owner = "bnbeckwith";
repo = "wc-mode";
@@ -62480,7 +63422,7 @@
sha256 = "1j1k3ab0ymr66w23z3r4yd1g6410n5y80jfyg2f9i9rdk7vq18gd";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/wc-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/0fda2b54a0ff0b6fc3bd6d20cfcbbf63cae5380f/recipes/wc-mode";
sha256 = "191dmxfpqnj7d43cr0fhdmj5ldfs7w9zg5pb2lv9wvlfl7asdid6";
name = "wc-mode";
};
@@ -62493,7 +63435,7 @@
wcheck-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "wcheck-mode";
- version = "20160208.2036";
+ version = "20160208.1336";
src = fetchFromGitHub {
owner = "tlikonen";
repo = "wcheck-mode";
@@ -62501,7 +63443,7 @@
sha256 = "0irw76inj3gdmi88hiayplv6fzjjjsvvvmr121ahh3p73mb14cjd";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/wcheck-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/5d10b59f568fdedf248c2e8eaa06c4a74032ca56/recipes/wcheck-mode";
sha256 = "0cmdvhgax6r5svn3wkwll4j271qj70g8182c58riwnkhiajxmn3k";
name = "wcheck-mode";
};
@@ -62514,7 +63456,7 @@
weather-metno = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "weather-metno";
- version = "20150901.307";
+ version = "20150831.2007";
src = fetchFromGitHub {
owner = "ruediger";
repo = "weather-metno-el";
@@ -62522,7 +63464,7 @@
sha256 = "05gfc67724b0mwg8kvk3dsazx3dld50b9xjq8h1nc6jvdz3zxb9z";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/weather-metno";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/75beac314565b9becb701ddd9bc85660e268c3ae/recipes/weather-metno";
sha256 = "0h7p4l8y75h27pgk45f0mk3gjd43jk8q97gjf85a9b0afd63d3f6";
name = "weather-metno";
};
@@ -62535,7 +63477,7 @@
web = callPackage ({ dash, fetchFromGitHub, fetchurl, lib, melpaBuild, s }:
melpaBuild {
pname = "web";
- version = "20141231.2101";
+ version = "20141231.1401";
src = fetchFromGitHub {
owner = "nicferrier";
repo = "emacs-web";
@@ -62543,7 +63485,7 @@
sha256 = "03xcadplw1hg5hxw6bfrhw5xkkxk3i4105f114c6m3d2525jq4y5";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/web";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/32b7ca528c0038909cee4271eb40bd92d97bfb56/recipes/web";
sha256 = "0ynnmqw0vsf7wyhp9m5a05dfb19vkj8dnj5glhjdzjvg30dhjp3a";
name = "web";
};
@@ -62556,7 +63498,7 @@
web-beautify = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "web-beautify";
- version = "20160410.1905";
+ version = "20160410.1205";
src = fetchFromGitHub {
owner = "yasuyk";
repo = "web-beautify";
@@ -62564,7 +63506,7 @@
sha256 = "0j8v8p4w586wz80q9scdby6b80sbxz4lqg9zb5pbr2w8bsps8n4m";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/web-beautify";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/0d528d3e20b1656dff40860cac0e0fa9dc1a3e87/recipes/web-beautify";
sha256 = "06ky2svhca8hjgmvxrg3h6ya7prl72q1r88x967yc6b0qq3r7g0f";
name = "web-beautify";
};
@@ -62577,7 +63519,7 @@
web-completion-data = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "web-completion-data";
- version = "20160318.948";
+ version = "20160318.348";
src = fetchFromGitHub {
owner = "osv";
repo = "web-completion-data";
@@ -62585,7 +63527,7 @@
sha256 = "19nzjgvd2i5745283ck3k2vylrr6lnk9h3ggzwrwdhyd3m9433vm";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/web-completion-data";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/604f155a3ce7e5375dcf8b9c149c5af403ef48bd/recipes/web-completion-data";
sha256 = "1zzdmhyn6bjaidk808s4pdk25a5rn4287949ps5vbpyniaf6gny9";
name = "web-completion-data";
};
@@ -62598,15 +63540,15 @@
web-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "web-mode";
- version = "20160529.2048";
+ version = "20160702.918";
src = fetchFromGitHub {
owner = "fxbois";
repo = "web-mode";
- rev = "1445f400c154d5f9eff10311c8ac7dd935a0fe26";
- sha256 = "1l0fr7yfb15i1jxmcf4bis6krw31s4vvckffpx3jpnkzjcxnk8is";
+ rev = "229cdaad141ee0cc7526c2d946abb5aaa6ee7a0d";
+ sha256 = "022hjma4lc7jqiddwh9d0kfzsmci8whv83xrhkn6gr4p21c69p45";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/web-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/6f0565555eaa356141422c5175d6cca4e9eb5c00/recipes/web-mode";
sha256 = "1vyhyc5nf4yj2m63inpwmcqvlsihaqw8nn8xvfdg44nhl6vjz97i";
name = "web-mode";
};
@@ -62619,7 +63561,7 @@
web-server = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "web-server";
- version = "20140906.206";
+ version = "20140905.1906";
src = fetchFromGitHub {
owner = "eschulte";
repo = "emacs-web-server";
@@ -62627,7 +63569,7 @@
sha256 = "0mbhyk7sgisx0l0xiz2xgy4jfbgwazlnxjvajsh4nysyig5rys05";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/web-server";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/70e724b4e6c76d0299d5ea8d2211f48c1c611afe/recipes/web-server";
sha256 = "1f0iyvwq1kq3zfxx2v596cmah7jfk2a04g2rjllbgxxnzwms29z3";
name = "web-server";
};
@@ -62640,14 +63582,14 @@
weblogger = callPackage ({ fetchbzr, fetchurl, lib, melpaBuild, xml-rpc }:
melpaBuild {
pname = "weblogger";
- version = "20110926.1818";
+ version = "20110926.1118";
src = fetchbzr {
url = "lp:weblogger-el";
rev = "38";
sha256 = "1z7ld9d0crwdh778fyaapx75vpnlnslsh9nf07ywkylhz4w68yyv";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/weblogger";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/4e08837a9af8185951df9b44b9b94a799f0de923/recipes/weblogger";
sha256 = "189zs1321rybgi4zihps7d2jll5z13726jsg5mi7iycg85nkv2fk";
name = "weblogger";
};
@@ -62660,7 +63602,7 @@
websocket = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "websocket";
- version = "20160511.501";
+ version = "20160510.2201";
src = fetchFromGitHub {
owner = "ahyatt";
repo = "emacs-websocket";
@@ -62668,7 +63610,7 @@
sha256 = "0ly12vy93m6jk6r62006ykjcrk966qk0ah0fk0hjxf8fx8shhsig";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/websocket";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/091dcc3775ec2137cb61d66df4e72aca4900897a/recipes/websocket";
sha256 = "1v8jlpahp30lihz7mdznwl6pyrbsdbqznli2wb5gfblnlxil04lg";
name = "websocket";
};
@@ -62681,7 +63623,7 @@
wedge-ws = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "wedge-ws";
- version = "20140714.2349";
+ version = "20140714.1649";
src = fetchFromGitHub {
owner = "aes";
repo = "wedge-ws";
@@ -62689,7 +63631,7 @@
sha256 = "19hgb5knqqc4rb8yl8s604xql8ar6m9r4d379cfakn15jvwqnl98";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/wedge-ws";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/42fb11fe717b5fe73f4a6fa4e199ef4c58a85eb2/recipes/wedge-ws";
sha256 = "07i2dr807np4fwq3ryxlw11vbc1sik1iv7x5740q258jyc9zfgll";
name = "wedge-ws";
};
@@ -62702,7 +63644,7 @@
weechat = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, s, tracking }:
melpaBuild {
pname = "weechat";
- version = "20160229.2148";
+ version = "20160229.1448";
src = fetchFromGitHub {
owner = "the-kenny";
repo = "weechat.el";
@@ -62710,7 +63652,7 @@
sha256 = "0vg3w18xj6i320jsivsml3mi1fdxr8dgxmn7qy2780ajy5ndxnw1";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/weechat";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/e38255a31a4ca31541c97a506a55f82e2670abe6/recipes/weechat";
sha256 = "0sxrms5024bi4irv8x8s8j1zcyd62cpqm0zv4dgpm65wnpc7xc46";
name = "weechat";
};
@@ -62723,7 +63665,7 @@
weechat-alert = callPackage ({ alert, cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild, weechat }:
melpaBuild {
pname = "weechat-alert";
- version = "20160416.1448";
+ version = "20160416.748";
src = fetchFromGitHub {
owner = "Kungi";
repo = "weechat-alert";
@@ -62731,7 +63673,7 @@
sha256 = "1hkhim2jfdywx6ks4qfcizycp5qsx4ms6929kbgmzzb8i7j380x6";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/weechat-alert";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/7a69ad48eabb166f66e6eb5c5cdc75aefc8b989f/recipes/weechat-alert";
sha256 = "026hkddvd4a6wy7s8s0lklw8b99fpjawdgi7amvpcrn79ylwbf22";
name = "weechat-alert";
};
@@ -62744,7 +63686,7 @@
weibo = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "weibo";
- version = "20150307.2342";
+ version = "20150307.1642";
src = fetchFromGitHub {
owner = "austin-----";
repo = "weibo.emacs";
@@ -62752,7 +63694,7 @@
sha256 = "0hc5iyjpcik996ns84akrl28scndmn0gd1zfdf1nnqq6n2m5zvgh";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/weibo";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/21f4c1b34f86331ecbcdbdc39858a191232902f2/recipes/weibo";
sha256 = "1ndgfqqb0gvy8p2fisi57s9bsa2nrnv80smg78m89i4cwagbz6yd";
name = "weibo";
};
@@ -62765,7 +63707,7 @@
wgrep = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "wgrep";
- version = "20141017.156";
+ version = "20141016.1856";
src = fetchFromGitHub {
owner = "mhayashi1120";
repo = "Emacs-wgrep";
@@ -62773,7 +63715,7 @@
sha256 = "075z0glain0dp56d0cp468y5y88wn82ab26aapsrdzq8hmlshwn4";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/wgrep";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/9648e3df896fcd97b3757a727108bc78261973cc/recipes/wgrep";
sha256 = "09xs420lvbsmz5z28rf6f1iwa0ixkk0w24qbj6zhl9hidh4mv9y4";
name = "wgrep";
};
@@ -62786,7 +63728,7 @@
wgrep-ack = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, wgrep }:
melpaBuild {
pname = "wgrep-ack";
- version = "20141012.1211";
+ version = "20141012.511";
src = fetchFromGitHub {
owner = "mhayashi1120";
repo = "Emacs-wgrep";
@@ -62794,7 +63736,7 @@
sha256 = "075z0glain0dp56d0cp468y5y88wn82ab26aapsrdzq8hmlshwn4";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/wgrep-ack";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/9648e3df896fcd97b3757a727108bc78261973cc/recipes/wgrep-ack";
sha256 = "03l1a681cwnn06m77xg0a547892gy8mh415v9rg3h6lkxwcld8wh";
name = "wgrep-ack";
};
@@ -62807,7 +63749,7 @@
wgrep-ag = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, wgrep }:
melpaBuild {
pname = "wgrep-ag";
- version = "20141012.1211";
+ version = "20141012.511";
src = fetchFromGitHub {
owner = "mhayashi1120";
repo = "Emacs-wgrep";
@@ -62815,7 +63757,7 @@
sha256 = "075z0glain0dp56d0cp468y5y88wn82ab26aapsrdzq8hmlshwn4";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/wgrep-ag";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/2c50b704343c4cac5e2a62a67e284ba6d8e15f8a/recipes/wgrep-ag";
sha256 = "1b2mj06kws29ha7g16l5d1s3p3nwyw8rprbpaiijdk9nxqcm0a8a";
name = "wgrep-ag";
};
@@ -62828,7 +63770,7 @@
wgrep-helm = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, wgrep }:
melpaBuild {
pname = "wgrep-helm";
- version = "20140528.2327";
+ version = "20140528.1627";
src = fetchFromGitHub {
owner = "mhayashi1120";
repo = "Emacs-wgrep";
@@ -62836,7 +63778,7 @@
sha256 = "075z0glain0dp56d0cp468y5y88wn82ab26aapsrdzq8hmlshwn4";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/wgrep-helm";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/9648e3df896fcd97b3757a727108bc78261973cc/recipes/wgrep-helm";
sha256 = "1hh7isc9xifkrdfw88jw0z0xmfazrbcis6d355bcaxlnjy6fzm8b";
name = "wgrep-helm";
};
@@ -62849,7 +63791,7 @@
wgrep-pt = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, wgrep }:
melpaBuild {
pname = "wgrep-pt";
- version = "20140511.31";
+ version = "20140510.1731";
src = fetchFromGitHub {
owner = "mhayashi1120";
repo = "Emacs-wgrep";
@@ -62857,7 +63799,7 @@
sha256 = "075z0glain0dp56d0cp468y5y88wn82ab26aapsrdzq8hmlshwn4";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/wgrep-pt";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/c39faef3b9c2e1867cd48341d9878b714dbed4eb/recipes/wgrep-pt";
sha256 = "1gphdf85spsywj3s3ypb7dwrqh0zd70n2vrbgjqkbnfbwqjp9qbg";
name = "wgrep-pt";
};
@@ -62870,7 +63812,7 @@
what-the-commit = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "what-the-commit";
- version = "20150901.1516";
+ version = "20150901.816";
src = fetchFromGitHub {
owner = "danielbarbarito";
repo = "what-the-commit.el";
@@ -62878,7 +63820,7 @@
sha256 = "04w62davpqqqvympkr52bg54c2i45p09q9bs70p9ff5jvc6i3g76";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/what-the-commit";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/6d22725c2fce506c659bd33aabca182be0048905/recipes/what-the-commit";
sha256 = "0nnyb6hq6r21wf1x3q41ab48b3dmcz5lyli771a59dk1gs8qpgak";
name = "what-the-commit";
};
@@ -62891,15 +63833,15 @@
which-key = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "which-key";
- version = "20160527.1535";
+ version = "20160617.742";
src = fetchFromGitHub {
owner = "justbur";
repo = "emacs-which-key";
- rev = "13316578c8483740ecfe97f9f069fc364e4f97d9";
- sha256 = "0i25y5j5qwmj3v3cd16v1c81y5bwhgar379bjy4052mfm870b90d";
+ rev = "9184b1bcbf316e8d619d72ae140efa48c5e6595d";
+ sha256 = "1dw3syln6rbbd2f54qlxxs1w66af9yhg0k0jvblkdvf99q1704hi";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/which-key";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/315865a3df97c0694f648633d44b8b34df1ac76d/recipes/which-key";
sha256 = "0vqbhfzcv9m58w41zdhpiymhgl38n15c6d7ffd99narxlkckcj59";
name = "which-key";
};
@@ -62912,7 +63854,7 @@
whitaker = callPackage ({ dash, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "whitaker";
- version = "20150814.1322";
+ version = "20150814.622";
src = fetchFromGitHub {
owner = "Fuco1";
repo = "whitaker";
@@ -62920,7 +63862,7 @@
sha256 = "1y75cylvqgn54h8yqahz4wi1qj5yhbs66i7x23jmbmah3q0rycab";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/whitaker";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/4b5d717e2eaf35ce33b26be049a39f2f75a7de72/recipes/whitaker";
sha256 = "17fnvb3jh6fi4wddn5qnp6i6ndidg8jf9ac69q9j032c2msr07nj";
name = "whitaker";
};
@@ -62933,7 +63875,7 @@
white-sand-theme = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "white-sand-theme";
- version = "20151117.1748";
+ version = "20151117.1048";
src = fetchFromGitHub {
owner = "mswift42";
repo = "white-sand-theme";
@@ -62941,7 +63883,7 @@
sha256 = "0sh92g5vd518f80klvljqkjpw4ji909439dpc3sfaccf5jiwn9xn";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/white-sand-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/b124575c4a4f783b6726d0526b83e67b4ad65cc9/recipes/white-sand-theme";
sha256 = "19qsiic6yf7g60ygjmw7kg1i28nqpm3zja8cmdh33ny2bbkwxsz5";
name = "white-sand-theme";
};
@@ -62954,7 +63896,7 @@
whitespace-cleanup-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "whitespace-cleanup-mode";
- version = "20150603.1347";
+ version = "20150603.647";
src = fetchFromGitHub {
owner = "purcell";
repo = "whitespace-cleanup-mode";
@@ -62962,7 +63904,7 @@
sha256 = "15yhbyyr0ksd9ziinlylyddny2szlj35x2548awj9ijnqqgjd23r";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/whitespace-cleanup-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/b461cfe450d7ce6bd0c14be3460cacffc1a32e6f/recipes/whitespace-cleanup-mode";
sha256 = "1fhdjrxxyfx4xsgfjqq9p7vhj98wmqf2r00mv8k27vdaxwsnm5p3";
name = "whitespace-cleanup-mode";
};
@@ -62975,7 +63917,7 @@
whole-line-or-region = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "whole-line-or-region";
- version = "20110901.1030";
+ version = "20110901.330";
src = fetchFromGitHub {
owner = "purcell";
repo = "whole-line-or-region";
@@ -62983,7 +63925,7 @@
sha256 = "0ip0vkqb4dm88xqzgwc9yaxzf4sc4x006m6z73a3lbfmrncy2c1d";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/whole-line-or-region";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/71addc88ce814ed4f413bcd8632402ac750009a1/recipes/whole-line-or-region";
sha256 = "1vs2i4cy1zc6nj660i9h36jbfgc3kvqivjnzlq5zwlxk5hcibqa1";
name = "whole-line-or-region";
};
@@ -62995,13 +63937,13 @@
}) {};
wid-edit-plus = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild {
pname = "wid-edit-plus";
- version = "20160101.122";
+ version = "20151231.1822";
src = fetchurl {
url = "https://www.emacswiki.org/emacs/download/wid-edit+.el";
sha256 = "18bnwwjk8jj4ns08sxhnznj0d8n1bxm2kj43r06nwyibh6ajpl7f";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/wid-edit+";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/a5d15f875b0080b12ce45cf696c581f6bbf061ba/recipes/wid-edit+";
sha256 = "1wwrsk14hc0wrvy7hm94aw6zg50n2smlqwr6frwpi7yp8y394wiv";
name = "wid-edit-plus";
};
@@ -63014,7 +63956,7 @@
wide-column = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "wide-column";
- version = "20120814.1012";
+ version = "20120814.312";
src = fetchFromGitHub {
owner = "phillord";
repo = "wide-column";
@@ -63022,7 +63964,7 @@
sha256 = "0bq39sfipad16skh5q26gp7z24kk93hgnaxb378dzfq1306kmn8q";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/wide-column";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/8d29def44ae42dc4b60c1d254a57572bd09faf51/recipes/wide-column";
sha256 = "1kyyvq9fgaypvhiy9vbvr99xsac5vhylkbjsxn5fhylyc5n867sb";
name = "wide-column";
};
@@ -63035,7 +63977,7 @@
widget-mvc = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "widget-mvc";
- version = "20150102.506";
+ version = "20150101.2206";
src = fetchFromGitHub {
owner = "kiwanami";
repo = "emacs-widget-mvc";
@@ -63043,7 +63985,7 @@
sha256 = "0036alzp66k7w3z45lj8qzh3plxv9vwcw17wibkz90mlb27vy6yz";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/widget-mvc";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/76d3c38e205076a22628f490d8e8ddd80d091eab/recipes/widget-mvc";
sha256 = "0njzvdlxb7z480r6dvmksgivhz7rvnil517aj86qx0jbc5mr3l2f";
name = "widget-mvc";
};
@@ -63056,7 +63998,7 @@
wiki-nav = callPackage ({ button-lock, fetchFromGitHub, fetchurl, lib, melpaBuild, nav-flash }:
melpaBuild {
pname = "wiki-nav";
- version = "20150223.1454";
+ version = "20150223.754";
src = fetchFromGitHub {
owner = "rolandwalker";
repo = "button-lock";
@@ -63064,7 +64006,7 @@
sha256 = "06qjvybf65ffrcnhhbqs333lg51fawaxnva3jvdg7zbrsv4m9acl";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/wiki-nav";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/baa49e7d2d5c07ebf77e7941c240b88fcfd0fc8b/recipes/wiki-nav";
sha256 = "19mabz0y3fcqsm68ijwwbbqylxgp71anc0a31zgc1blha9jivvwy";
name = "wiki-nav";
};
@@ -63077,7 +64019,7 @@
wiki-summary = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "wiki-summary";
- version = "20150408.2322";
+ version = "20150408.1622";
src = fetchFromGitHub {
owner = "jozefg";
repo = "wiki-summary.el";
@@ -63085,7 +64027,7 @@
sha256 = "02bczc1mb1cs1aryz5pw6cmpydjmxja2zj91893cz8rnfn1r031i";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/wiki-summary";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/31877f182ab82fd5bb73ec4ddd8526a032d9edf9/recipes/wiki-summary";
sha256 = "1hiyi3w6rvins8hfxd96bgpihxarmv192q96sadqcwshcqi14zmw";
name = "wiki-summary";
};
@@ -63098,7 +64040,7 @@
wilt = callPackage ({ dash, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, s }:
melpaBuild {
pname = "wilt";
- version = "20151105.1418";
+ version = "20151105.718";
src = fetchFromGitHub {
owner = "sixty-north";
repo = "emacs-wilt";
@@ -63106,7 +64048,7 @@
sha256 = "1n45m8xn65a2lg8ff7m6hbqnp2j49n9sfyr924laljvhjbi37knd";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/wilt";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/eea4f2ca8b4f9ea93cc02151fdda6cfee5b68b70/recipes/wilt";
sha256 = "0nw6zr06zq60j72qfjmbqrxyz022fnisb0bsh6xmlnd1k1kqlrz6";
name = "wilt";
};
@@ -63118,13 +64060,13 @@
}) {};
wimpy-del = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild {
pname = "wimpy-del";
- version = "20160101.123";
+ version = "20151231.1823";
src = fetchurl {
url = "https://www.emacswiki.org/emacs/download/wimpy-del.el";
sha256 = "142ql6886h418f73h3wjblhnd16qvbap7mfr4g2yv4xybh88d4x2";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/wimpy-del";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/a5d15f875b0080b12ce45cf696c581f6bbf061ba/recipes/wimpy-del";
sha256 = "10qw5lfq2392fr5sdz5a9bc6rvsg0j4dkrwvdhip1kqvajznw49x";
name = "wimpy-del";
};
@@ -63137,7 +64079,7 @@
win-switch = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "win-switch";
- version = "20150209.411";
+ version = "20150208.2111";
src = fetchFromGitHub {
owner = "genovese";
repo = "win-switch";
@@ -63145,7 +64087,7 @@
sha256 = "0ib20zl8l1fs69ca9rry27qz69sgf6ws1ca5nhm5llvpkjcgv53i";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/win-switch";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/091dcc3775ec2137cb61d66df4e72aca4900897a/recipes/win-switch";
sha256 = "1s6inp5kf763rngn58r02fd7n7z3dd55j6hb7s9dgvc856d5z3my";
name = "win-switch";
};
@@ -63157,13 +64099,13 @@
}) {};
windata = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild {
pname = "windata";
- version = "20080412.1655";
+ version = "20080412.955";
src = fetchurl {
url = "https://www.emacswiki.org/emacs/download/windata.el";
sha256 = "0dcbnqcqw7jzwwdn0rxxlixga1zw1x3a2zbpxvd90xp7zig4f0yz";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/windata";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/8a813e89fc19130d9cdc68f16bba00a0a501427b/recipes/windata";
sha256 = "0xq51rdanq5as6kfyi97hsqmig5g35w7xv8c96bhzyflranw7jw5";
name = "windata";
};
@@ -63176,7 +64118,7 @@
window-end-visible = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "window-end-visible";
- version = "20140508.2241";
+ version = "20140508.1541";
src = fetchFromGitHub {
owner = "rolandwalker";
repo = "window-end-visible";
@@ -63184,7 +64126,7 @@
sha256 = "0g69r64gyz4p3k6n8l0i1837mszycbrp23acnp0iy0y3mg67x3pn";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/window-end-visible";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/c9db386ab3910940addae6e925b2ac17e64e0f87/recipes/window-end-visible";
sha256 = "1p78n7yysj18404cdc6vahfrzwn5pixyfnja8ch48rj4fm4jbxwq";
name = "window-end-visible";
};
@@ -63197,7 +64139,7 @@
window-jump = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "window-jump";
- version = "20150213.2136";
+ version = "20150213.1436";
src = fetchFromGitHub {
owner = "chumpage";
repo = "chumpy-windows";
@@ -63205,7 +64147,7 @@
sha256 = "069aqyqzjp5ljqfzm7lxkh8j8firk7041wc2jwzqha8jn9zpvbxs";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/window-jump";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/d44fc32e12f00bbaa799b4054e9ff0fc0d3bfbfb/recipes/window-jump";
sha256 = "1gmqb7j5fb3q3krgx7arrln5nvyg9vcpph6wlxj6py679wfa3lwr";
name = "window-jump";
};
@@ -63218,7 +64160,7 @@
window-layout = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "window-layout";
- version = "20150717.707";
+ version = "20150717.7";
src = fetchFromGitHub {
owner = "kiwanami";
repo = "emacs-window-layout";
@@ -63226,7 +64168,7 @@
sha256 = "08chi9b4bap78n069aavvx3850kabk2jflrgymy4jxv08ybqikdg";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/window-layout";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/3b17efdf8b7306eadf37e331fc1d585b42f37b09/recipes/window-layout";
sha256 = "1n4a6z00lxsffirjrmbaaw432w798b9vv34qawgn1k17y9l7gb85";
name = "window-layout";
};
@@ -63239,7 +64181,7 @@
window-number = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "window-number";
- version = "20141107.329";
+ version = "20141106.2029";
src = fetchFromGitHub {
owner = "nikolas";
repo = "window-number";
@@ -63247,7 +64189,7 @@
sha256 = "0n6a4kriwx7c8shvns3fcdp8l1i66bsca5mgd00p7nllnxvldhn3";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/window-number";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/74523af6e22ebae2f5fe7c4da4e8af8fac5fa074/recipes/window-number";
sha256 = "1ivd701h6q48i263fxxi44haacaz8cjg562ry8dxd10rbhhsjsq0";
name = "window-number";
};
@@ -63260,7 +64202,7 @@
window-numbering = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "window-numbering";
- version = "20150228.2147";
+ version = "20150228.1447";
src = fetchFromGitHub {
owner = "nschum";
repo = "window-numbering.el";
@@ -63268,7 +64210,7 @@
sha256 = "1f4c6q4larifm745fr8f3w8sxs1sbs77vna29rw120jz8rnlz0jy";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/window-numbering";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/ce1dc80f69894736b276885e4ec3ce571a8612c9/recipes/window-numbering";
sha256 = "0x3n0ni16q69lfpyjz61spqghmhvc3cwa4aj80ihii3pk80f769x";
name = "window-numbering";
};
@@ -63280,13 +64222,13 @@
}) {};
window-plus = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild {
pname = "window-plus";
- version = "20160101.124";
+ version = "20151231.1824";
src = fetchurl {
url = "https://www.emacswiki.org/emacs/download/window+.el";
sha256 = "0mqdcgk6mdxgl9if7jzgg16zqdwnsp8icrdhnygphw5m9h2dqcnm";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/window+";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/a5d15f875b0080b12ce45cf696c581f6bbf061ba/recipes/window+";
sha256 = "0fhzb0ay9g9qgcaxpb2qaw15dh0lfmv3x4akyipi3zx11446d06j";
name = "window-plus";
};
@@ -63299,7 +64241,7 @@
window-purpose = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, imenu-list, let-alist, lib, melpaBuild }:
melpaBuild {
pname = "window-purpose";
- version = "20160310.1328";
+ version = "20160310.628";
src = fetchFromGitHub {
owner = "bmag";
repo = "emacs-purpose";
@@ -63307,7 +64249,7 @@
sha256 = "16471dng4iknh5wa3931iz9mm8bgd6lsrnhrjkd5ava2bv484gz6";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/window-purpose";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/cfaba6ff48d5548d5d355b3a1a8f44f541f8a3fc/recipes/window-purpose";
sha256 = "1ib5ia7armghvmcw8qywcil4nxzwwakmfsp7ybawb0xr53h1w96d";
name = "window-purpose";
};
@@ -63320,7 +64262,7 @@
windsize = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "windsize";
- version = "20151121.1440";
+ version = "20151121.740";
src = fetchFromGitHub {
owner = "grammati";
repo = "windsize";
@@ -63328,7 +64270,7 @@
sha256 = "0hijf56ahbc5inn7n39nj96d948c4d05n9d5ci3g3vbl5hsyb121";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/windsize";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/37924b239c1e883103c0cdfd429ddb6c2d40d3d7/recipes/windsize";
sha256 = "1xhfw77168942rcn246qndii0hv0q6vkgzj67jg4mxh8n46m50m9";
name = "windsize";
};
@@ -63341,7 +64283,7 @@
winpoint = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "winpoint";
- version = "20131023.1913";
+ version = "20131023.1213";
src = fetchFromGitHub {
owner = "jorgenschaefer";
repo = "winpoint";
@@ -63349,7 +64291,7 @@
sha256 = "1qrbvidnmgg7jyasb28bc0z1x4a4ayzq5jmv38dsx0qs080s85wy";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/winpoint";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/665e24e490618c7caeae4a9d17d1f614dc0a2617/recipes/winpoint";
sha256 = "10ji7xd9ipmy6c2qxljqdxgqf5sb8h7lwz43mr6ixbn7v1b7pp6w";
name = "winpoint";
};
@@ -63362,7 +64304,7 @@
winring = callPackage ({ fetchFromGitLab, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "winring";
- version = "20150804.2008";
+ version = "20150804.1308";
src = fetchFromGitLab {
owner = "warsaw";
repo = "winring";
@@ -63370,7 +64312,7 @@
sha256 = "1igld3zkvm3qbg1k77cn7rlxi8jqy8cvvp7z5mqwx9ifyihiwd0b";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/winring";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/2476a28c33502f908b7161c5a9c63c86b8d7b57d/recipes/winring";
sha256 = "1mgr5z4h7mf677xx8md3pqd31k17qs62z9iamfih206fcwgh24k4";
name = "winring";
};
@@ -63383,14 +64325,14 @@
wisp-mode = callPackage ({ fetchhg, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "wisp-mode";
- version = "20160419.2132";
+ version = "20160419.1432";
src = fetchhg {
url = "https://bitbucket.com/ArneBab/wisp";
- rev = "f23c198f7086";
- sha256 = "1nfyi9grkl9vhf8rs6r53g5f1p2wsk5jggw0m4i3z60yfflmkqi7";
+ rev = "1b716d725f97";
+ sha256 = "0ax5carrmrppy9q01ngj8c6bhx5wmsnmpac77da42s3ybglyzg16";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/wisp-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/5b7972602399f9df9139cff177e38653bb0f43ed/recipes/wisp-mode";
sha256 = "10zkp1qbvl8dmxij7zz4p1fixs3891xr1nr57vyb3llar9fgzglc";
name = "wisp-mode";
};
@@ -63403,7 +64345,7 @@
wispjs-mode = callPackage ({ clojure-mode, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "wispjs-mode";
- version = "20140103.2332";
+ version = "20140103.1632";
src = fetchFromGitHub {
owner = "krisajenkins";
repo = "wispjs-mode";
@@ -63411,7 +64353,7 @@
sha256 = "188h1sy4mxzrkwi3zgiw108c5f71rkj5agdkf9yy9v8c1bkawm4x";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/wispjs-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/a628330ee8deeab2bd5c2d4b61b33f119c4549d8/recipes/wispjs-mode";
sha256 = "0qzm0dcvjndasnbqpkdc56f1qv66gxv8dfgfcwq5l1bp5wyx813p";
name = "wispjs-mode";
};
@@ -63424,7 +64366,7 @@
with-editor = callPackage ({ async, dash, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "with-editor";
- version = "20160408.1101";
+ version = "20160408.401";
src = fetchFromGitHub {
owner = "magit";
repo = "with-editor";
@@ -63432,7 +64374,7 @@
sha256 = "0rzq2fbz523fyy2p6ddx9iws89sfgw3pwillw8yz965f3hxx3dj3";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/with-editor";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/8c52c840dc35f3fd17ec660e113ddbb53aa99076/recipes/with-editor";
sha256 = "1wsl1vwvywlc32r5pcc9jqd0pbzq1sn4fppxk3vwl0s5h40v8rnb";
name = "with-editor";
};
@@ -63445,7 +64387,7 @@
with-namespace = callPackage ({ dash, fetchFromGitHub, fetchurl, lib, loop, melpaBuild }:
melpaBuild {
pname = "with-namespace";
- version = "20130407.2022";
+ version = "20130407.1322";
src = fetchFromGitHub {
owner = "Wilfred";
repo = "with-namespace.el";
@@ -63453,7 +64395,7 @@
sha256 = "1c7g8f3jr7bb0xxprammfg433gd63in5iiiaq8rjmc94h6hdcys3";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/with-namespace";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/091dcc3775ec2137cb61d66df4e72aca4900897a/recipes/with-namespace";
sha256 = "1199k1xvvv7ald6ywrh2sfpw2v42ckpcsw6mcj617bg3b5m7770i";
name = "with-namespace";
};
@@ -63466,7 +64408,7 @@
wn-mode = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "wn-mode";
- version = "20151110.652";
+ version = "20151109.2352";
src = fetchFromGitHub {
owner = "luismbo";
repo = "wn-mode";
@@ -63474,7 +64416,7 @@
sha256 = "12rfpkyjkhikjh0mihhp5h5pzbm4br68nwf8k1ja9djl77vfzv36";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/wn-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/6213c01e6954985daff8cd1a5a3ef004431f0477/recipes/wn-mode";
sha256 = "1qy1pkfdnm4pska4cnff9cx2c812ilymajhpmsfc9jdbvhzwrwg3";
name = "wn-mode";
};
@@ -63487,7 +64429,7 @@
wolfram-mode = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "wolfram-mode";
- version = "20140118.1657";
+ version = "20140118.957";
src = fetchFromGitHub {
owner = "kawabata";
repo = "wolfram-mode";
@@ -63495,7 +64437,7 @@
sha256 = "1xna0cjgi9m87pws2h0cza67qbpdhjmdi5h4wv6v4g14nr26hi3w";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/wolfram-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/299fe35d0a5a11d20f0b917bc8f406bd0f011c93/recipes/wolfram-mode";
sha256 = "1bq95lamzz45macpklnq1kxw9ak4x4f41kx16f472dn650ff0zlf";
name = "wolfram-mode";
};
@@ -63508,7 +64450,7 @@
wonderland = callPackage ({ dash, dash-functional, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, multi }:
melpaBuild {
pname = "wonderland";
- version = "20130913.319";
+ version = "20130912.2019";
src = fetchFromGitHub {
owner = "kurisuwhyte";
repo = "emacs-wonderland";
@@ -63516,7 +64458,7 @@
sha256 = "0hacc8ha5w44cgwkipa3nwh1q5gdrcxhjkmw2gnvb1l01crgnack";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/wonderland";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/ed02d5e4cba10023ebc7c26f90ba8d1e8ee32a08/recipes/wonderland";
sha256 = "1b4p49mbzqffm2b2y8sbbi56vnkxap2jscsmla9l6l8brybqjppi";
name = "wonderland";
};
@@ -63529,7 +64471,7 @@
wordnut = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "wordnut";
- version = "20151002.2357";
+ version = "20151002.1657";
src = fetchFromGitHub {
owner = "gromnitsky";
repo = "wordnut";
@@ -63537,7 +64479,7 @@
sha256 = "1b9pya342ikyxnlyxp86wx8xk6zcdws7jsqs7a9xk027prwkfngj";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/wordnut";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/321c5e171eb4da85980968ac3c8ef4300101c0b1/recipes/wordnut";
sha256 = "1gqmjb2f9izra0x9ds1jyk7h204qsll6viwkvdnmxczyyc0wx44n";
name = "wordnut";
};
@@ -63550,7 +64492,7 @@
wordsmith-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "wordsmith-mode";
- version = "20151117.1136";
+ version = "20151117.436";
src = fetchFromGitHub {
owner = "istib";
repo = "wordsmith-mode";
@@ -63558,7 +64500,7 @@
sha256 = "0d2byl3si2r0zh5ih6xpsgcd9r114ry0lzg5vcf31rr2gqf0j06h";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/wordsmith-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/d9f8f01f1807de24fb6e92b355d05b81be4bab07/recipes/wordsmith-mode";
sha256 = "1570h1sjjaks6bnhd4xrbx6nna4v7hz6dmrzwjq37rwvallasg1n";
name = "wordsmith-mode";
};
@@ -63571,15 +64513,15 @@
worf = callPackage ({ ace-link, fetchFromGitHub, fetchurl, hydra, lib, melpaBuild, swiper }:
melpaBuild {
pname = "worf";
- version = "20160422.1616";
+ version = "20160703.815";
src = fetchFromGitHub {
owner = "abo-abo";
repo = "worf";
- rev = "8e5c45d7435a5f15e3c03f0b09fb45808203d3d6";
- sha256 = "1ndvwribh0i49rc6v89sfmxv5alr43995ccslviid563xn3yskii";
+ rev = "e44ff28122b130091bcccb4bcd4cf68a6593bdeb";
+ sha256 = "1kj56zj76s6vci73vwwr3w73pspwvp94fvi9403ykwnb2zgz610f";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/worf";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/f00f8765e35c21dd1a4b5c01c239ed4d15170ab7/recipes/worf";
sha256 = "1fkb2ddl684dijsb0cqgmfbg1nz4xv43rb7g5rah05rchy5sgkpi";
name = "worf";
};
@@ -63592,7 +64534,7 @@
workgroups = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "workgroups";
- version = "20110726.1841";
+ version = "20110726.1141";
src = fetchFromGitHub {
owner = "tlh";
repo = "workgroups.el";
@@ -63600,7 +64542,7 @@
sha256 = "0q32z54qafj8ap3ybx82i3fm1msmzwvpxgmkaglzhi8nccgzbn2n";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/workgroups";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/585d3f522920b41845294af50b1da99dff256f8d/recipes/workgroups";
sha256 = "1v01yr3lk6l0qn80i3r8fq3di0a8bmqjyhwx19hcgiap57xl80h8";
name = "workgroups";
};
@@ -63613,7 +64555,7 @@
workgroups2 = callPackage ({ anaphora, cl-lib ? null, dash, f, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "workgroups2";
- version = "20141102.2022";
+ version = "20141102.1322";
src = fetchFromGitHub {
owner = "pashinin";
repo = "workgroups2";
@@ -63621,7 +64563,7 @@
sha256 = "0prj2b33h6rya7y9ff91r72bva1y6hg0sv9l11bn1gikmc6lc18n";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/workgroups2";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/4f9cfb740cce05a6805d9a047e4c1380305da4df/recipes/workgroups2";
sha256 = "0vhj6mb3iflli0l3rjlvlbxz5yk6z3ii5r71gx0m4vp4lhxncy3v";
name = "workgroups2";
};
@@ -63634,7 +64576,7 @@
world-time-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "world-time-mode";
- version = "20140627.1007";
+ version = "20140627.307";
src = fetchFromGitHub {
owner = "nicferrier";
repo = "emacs-world-time-mode";
@@ -63642,7 +64584,7 @@
sha256 = "0i00xm4rynbp2v3gm6h46ajgj8h8nxnsjh6db1659b0hbpnah0ji";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/world-time-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/f1429650400baf2b1523b5556eaf6a2178d515d4/recipes/world-time-mode";
sha256 = "10gdlz4l9iqw1zdlk5i3knysn36iqxdh3xabjq8kq04jkl7i36dl";
name = "world-time-mode";
};
@@ -63655,7 +64597,7 @@
wrap-region = callPackage ({ dash, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "wrap-region";
- version = "20140117.820";
+ version = "20140117.120";
src = fetchFromGitHub {
owner = "rejeep";
repo = "wrap-region.el";
@@ -63663,7 +64605,7 @@
sha256 = "09fzbbrdgq19c3gylj4i0c5g070k65w943wz28mzis8b403vzh3n";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/wrap-region";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/7fabdb05de9b8ec18a3a566f99688b50443b6b44/recipes/wrap-region";
sha256 = "058518smxj3j3mr6ljzh7c9x5g23d24104p58sl9nhpw0cq9k28i";
name = "wrap-region";
};
@@ -63676,7 +64618,7 @@
writegood-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "writegood-mode";
- version = "20150325.1915";
+ version = "20150325.1315";
src = fetchFromGitHub {
owner = "bnbeckwith";
repo = "writegood-mode";
@@ -63684,7 +64626,7 @@
sha256 = "1nnjn1r669hvvzfycllwap4w04m8rfsk4nzcg8057m1f263kj31b";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/writegood-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/75c5a4304999fc3f5a02235a1c2c904238d2ce4f/recipes/writegood-mode";
sha256 = "1lxammisaj04g5vr5lwms64ywf39w8knrq72x4i94wwzwx5ywi1d";
name = "writegood-mode";
};
@@ -63697,15 +64639,15 @@
writeroom-mode = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, visual-fill-column }:
melpaBuild {
pname = "writeroom-mode";
- version = "20160413.2133";
+ version = "20160613.1811";
src = fetchFromGitHub {
owner = "joostkremers";
repo = "writeroom-mode";
- rev = "aed9803e8eb7178361fbac75df98c19a45eff4ee";
- sha256 = "11a3h5v7knj8y360cxin59c1ipd9y4qsqlanrw69yb5k4816ayyr";
+ rev = "63fff51a2be84addd5253176fc42ad96524313f8";
+ sha256 = "0x7y2j6wx6amj41jx2iwq1r00d0zg7dlrpkf6bmb4gkysydgfnb6";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/writeroom-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/4e39cd8e8b4f61c04fa967def6a653bb22f45f5b/recipes/writeroom-mode";
sha256 = "1kpsrp3agw8bg3qbf5rf5k1a7ww30q5xsa8z5ywxajsaywjzx1bk";
name = "writeroom-mode";
};
@@ -63718,15 +64660,15 @@
ws-butler = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "ws-butler";
- version = "20150126.1659";
+ version = "20150126.959";
src = fetchFromGitHub {
owner = "lewang";
repo = "ws-butler";
- rev = "a998a23ee8713808ac1fe3d1523ea1861be4da57";
- sha256 = "1x2ybnv0h52i24vd1n95s4vglc6p79cyxh91a20cwza34svhz152";
+ rev = "7e2f32dcfcd7986fcee07f1413c6d8eae7ceb8f4";
+ sha256 = "1ld5s45f9xh20z9z9k1fhlllzl6jgflcqkzys4x09vvax3mmynr8";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ws-butler";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/f1645a51d487c8902eb6e59fb1884f85f48cec6f/recipes/ws-butler";
sha256 = "072k67z2lx0ampwzdiszi64xs0w6frp4nbmrd2r0wpx0pd211vbn";
name = "ws-butler";
};
@@ -63739,7 +64681,7 @@
wsd-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "wsd-mode";
- version = "20160511.751";
+ version = "20160511.51";
src = fetchFromGitHub {
owner = "josteink";
repo = "wsd-mode";
@@ -63747,7 +64689,7 @@
sha256 = "14f87rgvh8rmdd7gp53iaibi1liiag10si2znbhiy1hf93ssd2pq";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/wsd-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/04867a574773e8794335a2664d4f5e8b243f3ec9/recipes/wsd-mode";
sha256 = "07vclmnj18wx9wlrcnsl99f9jlk3sb9g6pcdv8x1smk84gccpakc";
name = "wsd-mode";
};
@@ -63760,7 +64702,7 @@
wttrin = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, xterm-color }:
melpaBuild {
pname = "wttrin";
- version = "20160414.1737";
+ version = "20160414.1037";
src = fetchFromGitHub {
owner = "bcbcarl";
repo = "emacs-wttrin";
@@ -63768,7 +64710,7 @@
sha256 = "1bq552mxlhq9sd2c9p2yir52p0jnfdav6vcdgs3xklcf89b1403m";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/wttrin";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/1b2b6876562f1fadd4af1ea9b279ac4dc1b21660/recipes/wttrin";
sha256 = "0msp8lja9nz6khz3dkasv8hnhkaayqxd7m58kma03hpkcjxnaxil";
name = "wttrin";
};
@@ -63781,7 +64723,7 @@
wwtime = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "wwtime";
- version = "20151122.1710";
+ version = "20151122.1010";
src = fetchFromGitHub {
owner = "ndw";
repo = "wwtime";
@@ -63789,7 +64731,7 @@
sha256 = "0ba193ilqmp7l35hhzfym4kvbnj9h57m8mwsxdj6rdj2cwrifx8r";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/wwtime";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/28f034fbabe9de76e2e4ae44be8c8240b08f0535/recipes/wwtime";
sha256 = "0n37k23lkjgaj9wxnr41yk3mwvy62mc9im5l86czqmw5gy4l63ic";
name = "wwtime";
};
@@ -63802,7 +64744,7 @@
x-dict = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "x-dict";
- version = "20091203.1923";
+ version = "20091203.1223";
src = fetchFromGitHub {
owner = "emacsmirror";
repo = "x-dict";
@@ -63810,7 +64752,7 @@
sha256 = "0i7bgbhk4lvdkdjh6z4xs69mbdi49985j82cjikzyyskjcqd2klq";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/x-dict";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/0567fcc7b7aff08094095292fb701da3be8403c3/recipes/x-dict";
sha256 = "1w51xhiaxk50wlch262dxs2ybjvjj8qzx01xlgiimvggb8h5arlc";
name = "x-dict";
};
@@ -63823,15 +64765,15 @@
x86-lookup = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "x86-lookup";
- version = "20160526.321";
+ version = "20160624.1304";
src = fetchFromGitHub {
owner = "skeeto";
repo = "x86-lookup";
- rev = "7a2f43908985590ab8b904004cd4c41e341216be";
- sha256 = "0fks0bnil7m4m56k267f0awqnyq3vr2ywd81rsmbk1154g3acndc";
+ rev = "70c5b1092484a031f3a3d9334399f14aef449df8";
+ sha256 = "0q31mcz9bx19y517y1pli4znqxflvmvjf2k5wsi8sld7f5w4wwix";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/x86-lookup";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/27757b9b5673f5581e678e8cad719138db654415/recipes/x86-lookup";
sha256 = "1clv1npvdkzsy0a08xrb880yflwzl4d5cc2c5xrs7b837mqpj8hd";
name = "x86-lookup";
};
@@ -63844,15 +64786,15 @@
xah-elisp-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "xah-elisp-mode";
- version = "20160409.1227";
+ version = "20160630.127";
src = fetchFromGitHub {
owner = "xahlee";
repo = "xah-elisp-mode";
- rev = "4b36e58e1e6268b5b3a3f9c76747860d20518fec";
- sha256 = "1x3h69c2n82db8jkmd66c5i3x4rhmas5difm73msbx198w5i6lm7";
+ rev = "ca4597ad42b0d60583248f2a3a786e49cf6e472f";
+ sha256 = "0wsn0nc1yljy0kpwyssv8c84cympiyrbfpq5l2fffr3g0vkl1rxv";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/xah-elisp-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/f2e996dd5b0061371662490e0b21d3c5bb506550/recipes/xah-elisp-mode";
sha256 = "0cl07hw1hd3hj7wrzkh20m8vcs7mqsajxjmnlbnk2yg927yyijij";
name = "xah-elisp-mode";
};
@@ -63865,7 +64807,7 @@
xah-find = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "xah-find";
- version = "20160211.402";
+ version = "20160210.2102";
src = fetchFromGitHub {
owner = "xahlee";
repo = "xah-find";
@@ -63873,7 +64815,7 @@
sha256 = "00ydkpkdgnj9v6dkf4pw9wj5skbq2v5y71xsr37d1fqmdzsb03g7";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/xah-find";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/1d94ffd9c3380cd56770f253e43d566a95083e37/recipes/xah-find";
sha256 = "1d3x9yhm7my3yhvgqnjxr2v28g5w1h4ri40sy6dqcx09bjf3jhyq";
name = "xah-find";
};
@@ -63886,15 +64828,15 @@
xah-fly-keys = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "xah-fly-keys";
- version = "20160601.1236";
+ version = "20160619.933";
src = fetchFromGitHub {
owner = "xahlee";
repo = "xah-fly-keys";
- rev = "3338f54458d58e77abbbe563e19b874901371ebf";
- sha256 = "1n20gs4gxgsiavfdg4mrcyn8316d1dryjjj7xgd6nxm6ncwlyxkj";
+ rev = "fae5278bd08014113d9da1f7bd51b7db7b74a2ea";
+ sha256 = "0d5k682760wgfvy2x1b8603gz154ij9viwh1vxnnaripjgkj2cmj";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/xah-fly-keys";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/fc1683be70d1388efa3ce00adc40510e595aef2b/recipes/xah-fly-keys";
sha256 = "0bzfz8q7yd1jai0pgngxwjp82nsfx5ivn24cb20vc5r8hhzj17cs";
name = "xah-fly-keys";
};
@@ -63907,7 +64849,7 @@
xah-get-thing = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "xah-get-thing";
- version = "20150712.2330";
+ version = "20150712.1630";
src = fetchFromGitHub {
owner = "xahlee";
repo = "xah-get-thing-or-selection";
@@ -63915,7 +64857,7 @@
sha256 = "0abknznp2si80zq5pc0hqr3w3pca2vrv3msm6jz1s8l8zi2hwx72";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/xah-get-thing";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/9e8dc32a5317f0ff0e72fa87220243dd742eb1ef/recipes/xah-get-thing";
sha256 = "0m61bmfgqy19h4ivw655mqj547ga8hrpaswcp48hx00hx8mqzcvg";
name = "xah-get-thing";
};
@@ -63928,7 +64870,7 @@
xah-lookup = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "xah-lookup";
- version = "20150602.2046";
+ version = "20150602.1346";
src = fetchFromGitHub {
owner = "xahlee";
repo = "lookup-word-on-internet";
@@ -63936,7 +64878,7 @@
sha256 = "1adyww9jbjvcn9p3z9ggs3gijdmnab275a81ch8sir1xp59pfm3s";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/xah-lookup";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/38e6609a846a3c7781e0f03730b79bbf8d0355a9/recipes/xah-lookup";
sha256 = "0z0h1myw6wmybyd0z2lw4l59vgm6q6kh492q77kf3s0fssc0facc";
name = "xah-lookup";
};
@@ -63949,7 +64891,7 @@
xah-math-input = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "xah-math-input";
- version = "20160127.2308";
+ version = "20160127.1608";
src = fetchFromGitHub {
owner = "xahlee";
repo = "xah-math-input";
@@ -63957,7 +64899,7 @@
sha256 = "1wsdnqpfgk7f1dbz90k6sf13hjh0x3xjjgappfkmhcy36g7sshl7";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/xah-math-input";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/95d57e33e6d60dc20d6452b407ea1486604ba23a/recipes/xah-math-input";
sha256 = "1afikjk46sjf97fb5fc8h63h7b9af010wxhsbpnmabsb4j72rx5a";
name = "xah-math-input";
};
@@ -63970,7 +64912,7 @@
xah-replace-pairs = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "xah-replace-pairs";
- version = "20150522.1233";
+ version = "20150522.533";
src = fetchFromGitHub {
owner = "xahlee";
repo = "xah-replace-pairs";
@@ -63978,7 +64920,7 @@
sha256 = "18msj947w6msma6zm23slk2v0h92n5ych5j12zbzkzzir49sffql";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/xah-replace-pairs";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/0e7de2fe0e55b1a546f105aa1aac44fde46c8f44/recipes/xah-replace-pairs";
sha256 = "0r4aq9davh3ypzcjixr3aw9g659dhiblwbmcyhm8iqhkavcpqr1x";
name = "xah-replace-pairs";
};
@@ -63991,7 +64933,7 @@
xahk-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "xahk-mode";
- version = "20150505.111";
+ version = "20150504.1811";
src = fetchFromGitHub {
owner = "xahlee";
repo = "xahk-mode.el";
@@ -63999,7 +64941,7 @@
sha256 = "0dc74kqwi0hpihdbb9a9lrqb7823w6j96mah47zyd9d4rd3vx850";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/xahk-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/3d6422756b435f59ead15fa7e8081f5c88b2e93f/recipes/xahk-mode";
sha256 = "1bs12z7lnqlhm44hq0l98d0ka1bjgvm2yv97yivaj9akd53znca9";
name = "xahk-mode";
};
@@ -64012,7 +64954,7 @@
xbm-life = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "xbm-life";
- version = "20160103.1117";
+ version = "20160103.417";
src = fetchFromGitHub {
owner = "wasamasa";
repo = "xbm-life";
@@ -64020,7 +64962,7 @@
sha256 = "08hzsqf4gawcr9q2h3rxrf1igvdja84aaa821657k04kdq4dpcbj";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/xbm-life";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/6cb4c55583338dafee61fd9c266d2ee7cae2b1ed/recipes/xbm-life";
sha256 = "1pglxjd4cs630sayx17ai1xflpbyj3hry3156682bgwhqs1vw68q";
name = "xbm-life";
};
@@ -64030,18 +64972,39 @@
license = lib.licenses.free;
};
}) {};
+ xcode-mode = callPackage ({ dash, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, multiple-cursors, s }:
+ melpaBuild {
+ pname = "xcode-mode";
+ version = "20160702.832";
+ src = fetchFromGitHub {
+ owner = "nicklanasa";
+ repo = "xcode-mode";
+ rev = "3d4ce61f88a7e0d0e897972986c606dfb44ae5fe";
+ sha256 = "09zl382wcsgmrp0ajaqvmh1wjrd0fzdk0by7dwrdlljafczwxlfl";
+ };
+ recipeFile = fetchurl {
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/845c731bed7dbe9c41c09e47e219299f17d0d489/recipes/xcode-mode";
+ sha256 = "1d8r2bc7fiwma1lcrzd9gxhdpvyf2pc6kplx7nyr40ghsb9jlpiw";
+ name = "xcode-mode";
+ };
+ packageRequires = [ dash emacs multiple-cursors s ];
+ meta = {
+ homepage = "https://melpa.org/#/xcode-mode";
+ license = lib.licenses.free;
+ };
+ }) {};
xcscope = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "xcscope";
- version = "20160513.2106";
+ version = "20160629.124";
src = fetchFromGitHub {
owner = "dkogan";
repo = "xcscope.el";
- rev = "9dee0f3b20115dfaf9f8486937b4db013ec1903f";
- sha256 = "0xqw0yhm08alaaqma3ymnihzyp2wg0hxsjzmrb2vmak5q1qqnkrp";
+ rev = "1e4c8e60eb841a3ecb56ff4115b6a8ae5c0bf779";
+ sha256 = "1cc3bmi4fxlgqha7sxswn9lcc126xnr2j8xz6wszjnqh5w274fpp";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/xcscope";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/068c7846e70b91ce7e88330937fc64a60281802a/recipes/xcscope";
sha256 = "06xh29cm5v3b5xwj32y0i0h0kvvy995840db4hvab2wn9jw68m8w";
name = "xcscope";
};
@@ -64054,7 +65017,7 @@
xkcd = callPackage ({ fetchFromGitHub, fetchurl, json ? null, lib, melpaBuild }:
melpaBuild {
pname = "xkcd";
- version = "20160419.1330";
+ version = "20160419.630";
src = fetchFromGitHub {
owner = "vibhavp";
repo = "emacs-xkcd";
@@ -64062,7 +65025,7 @@
sha256 = "0p9p3w8i5w1pzh3y3yxz0rg5gywfq4m5anbiyrdn84vdd42jij4x";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/xkcd";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/4ac99eee00b76501d830373a13369f6a2a1239b5/recipes/xkcd";
sha256 = "1r88yhs8vnkak8xl16vw3xdpm7ncz4ydkml8932bqk8xix8l8f0w";
name = "xkcd";
};
@@ -64075,7 +65038,7 @@
xml-plus = callPackage ({ dash, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "xml-plus";
- version = "20160211.442";
+ version = "20160210.2142";
src = fetchFromGitHub {
owner = "bddean";
repo = "xml-plus";
@@ -64083,7 +65046,7 @@
sha256 = "0c30xh7qxg3y2p5jqkbssz5z53rx0yp64qqyy9f87qzgkcd2jd8k";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/xml+";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/244388d158efda6fe8c1362a65b89b352c444422/recipes/xml+";
sha256 = "0xgqyfdn6kkp89zj4h54r009a44sbff0nrhh582zw5rlklypwdz1";
name = "xml-plus";
};
@@ -64096,7 +65059,7 @@
xml-quotes = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "xml-quotes";
- version = "20151230.2349";
+ version = "20151230.1649";
src = fetchFromGitHub {
owner = "ndw";
repo = "xml-quotes";
@@ -64104,7 +65067,7 @@
sha256 = "0z3yd3dzcsd7584jchv9q55fx04ig4yjzp8ay2pa112lykv4jxxd";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/xml-quotes";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/ab315d783765730aceab43b4fd8c4872a1f1cc05/recipes/xml-quotes";
sha256 = "1lmafa695xkhd90k6yiv8a57ch1jx33l1zpm39z0kj546mn6y8aq";
name = "xml-quotes";
};
@@ -64117,7 +65080,7 @@
xml-rpc = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "xml-rpc";
- version = "20160430.2358";
+ version = "20160430.1658";
src = fetchFromGitHub {
owner = "hexmode";
repo = "xml-rpc-el";
@@ -64125,7 +65088,7 @@
sha256 = "0g52bmamcd54acyk6i47ar5jawad6ycvm9g656inb994wprnjin9";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/xml-rpc";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/547d773e07d6229d2135d1b081b5401039ffad39/recipes/xml-rpc";
sha256 = "14r6xgnpqsb2jlv52vgrhqf3qw8a6gmdyap3ylhilyxw71lxf1js";
name = "xml-rpc";
};
@@ -64138,7 +65101,7 @@
xmlgen = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "xmlgen";
- version = "20130219.1119";
+ version = "20130219.419";
src = fetchFromGitHub {
owner = "philjackson";
repo = "xmlgen";
@@ -64146,7 +65109,7 @@
sha256 = "1nk50iwb6az01r1s2l9wwdqrz3k4ywr00q0zmd9vvi3y9v4cjah0";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/xmlgen";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/cd19fded2de4e7549121485e81f7405c0176e203/recipes/xmlgen";
sha256 = "1mvnjqb9zxf9ml605w10v4cbbajwv9if93apr4xrh79l00scj383";
name = "xmlgen";
};
@@ -64159,7 +65122,7 @@
xmlunicode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "xmlunicode";
- version = "20160319.1712";
+ version = "20160319.1112";
src = fetchFromGitHub {
owner = "ndw";
repo = "xmlunicode";
@@ -64167,7 +65130,7 @@
sha256 = "178bdfwiinhf98qm88ivmgy6rd0qjx5gnckkclanybva0r8l6832";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/xmlunicode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/b636126a389a337a3685f9d0dcbca9bf8e784f20/recipes/xmlunicode";
sha256 = "1ylpvx2p5l863r9qv9jdsm9rbv989c8xn0zpjl8zkcfxqxix4h4p";
name = "xmlunicode";
};
@@ -64180,7 +65143,7 @@
xo = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "xo";
- version = "20160403.846";
+ version = "20160403.146";
src = fetchFromGitHub {
owner = "j-em";
repo = "xo-emacs";
@@ -64188,7 +65151,7 @@
sha256 = "0761amc73mbgaydp3iyfzgyjxp77yk440s24h69hvk87c5vn1cz3";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/xo";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/fd8cec754da662e4873186c23c1ba13c52cccbba/recipes/xo";
sha256 = "0kpbnxh8sa2dk8anrvgc7d39qap13pyjxh154gpm8xdb9zhfwl25";
name = "xo";
};
@@ -64201,7 +65164,7 @@
xquery-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "xquery-mode";
- version = "20140121.1843";
+ version = "20140121.1143";
src = fetchFromGitHub {
owner = "mblakele";
repo = "xquery-mode";
@@ -64209,7 +65172,7 @@
sha256 = "09fpxr55b2adqmca8xhpy8z5cify5091fjdjyxjd1jh5wdp1658v";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/xquery-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/c7c145039be872cd5a19383232180ba481e4e144/recipes/xquery-mode";
sha256 = "0b5k2ihbjm5drv4lf64ap31yj873x1fcq85y6yq1ayahn6s52rql";
name = "xquery-mode";
};
@@ -64222,7 +65185,7 @@
xquery-tool = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "xquery-tool";
- version = "20160203.1853";
+ version = "20160203.1153";
src = fetchFromGitHub {
owner = "paddymcall";
repo = "xquery-tool.el";
@@ -64230,7 +65193,7 @@
sha256 = "1yy759qc4njc8bqh8hmgc0mq5vk5spz5syxgflqhjijk8nrvyfgl";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/xquery-tool";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/cc71e5ea4a0ecb006f62617f5b6caadc9b3c77b2/recipes/xquery-tool";
sha256 = "069injmvv9zzcbqbms94qx5wjj740jnik6sf3b4xjhln7z1yskp0";
name = "xquery-tool";
};
@@ -64243,7 +65206,7 @@
xref-js2 = callPackage ({ emacs, fetchFromGitHub, fetchurl, js2-mode, lib, melpaBuild }:
melpaBuild {
pname = "xref-js2";
- version = "20160521.1348";
+ version = "20160521.648";
src = fetchFromGitHub {
owner = "NicolasPetton";
repo = "xref-js2";
@@ -64251,7 +65214,7 @@
sha256 = "0xs7wi29kxy2rjpimrlmigsk5sm03is4cd2snc4gsqfns769bjp0";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/xref-js2";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/b5dab444ead98210b4ab3a6f9a61d013aed6d5b7/recipes/xref-js2";
sha256 = "1mfyszdi1wx2lqd9fyqm0ra227dcsjs8asc1dw2li0alwh7n4xs3";
name = "xref-js2";
};
@@ -64264,7 +65227,7 @@
xresources-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "xresources-theme";
- version = "20160331.1602";
+ version = "20160331.902";
src = fetchFromGitHub {
owner = "CQQL";
repo = "xresources-theme";
@@ -64272,7 +65235,7 @@
sha256 = "171vffga2yzxqmgh77vila6x96bz1i6818f1pfaxblw1hz2ga341";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/xresources-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/4cef3a5683ea572f823d915ec2a94d591ac915d6/recipes/xresources-theme";
sha256 = "0spqa3xn3p2lmvlc5hdn7prq4vb70nkyrryx1kavha9igzhlyaga";
name = "xresources-theme";
};
@@ -64285,15 +65248,15 @@
xterm-color = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "xterm-color";
- version = "20160402.525";
+ version = "20160703.1046";
src = fetchFromGitHub {
owner = "atomontage";
repo = "xterm-color";
- rev = "8e8bfca742d21f3b9bc76089cbd3aa736e86a46a";
- sha256 = "19l9w373ysh1avakz4pmisn0d2mpym8pdxgz7k0m1bbqqzf2war7";
+ rev = "c4b388469ee84aa825f5d787a89005f86a03cb87";
+ sha256 = "0a6sbimnh211i21yvhg5bfh84i9qlmi7fnz7sm69xnfxy4416986";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/xterm-color";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/b34a42f1bf5641871da8ce2b688325023262b643/recipes/xterm-color";
sha256 = "0bvzi1mkxgm4vbq2va1sr0k9h3fdmppq79hkvbizc2xgk72sazpj";
name = "xterm-color";
};
@@ -64306,7 +65269,7 @@
xterm-frobs = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "xterm-frobs";
- version = "20091212.55";
+ version = "20091211.1755";
src = fetchFromGitHub {
owner = "emacsmirror";
repo = "xterm-frobs";
@@ -64314,7 +65277,7 @@
sha256 = "10dsf2lgjjqvjzzyc5kwggfk511v8ypmx173bixry3djcc15dsf3";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/xterm-frobs";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/b7bb3be63b798967f5525cf118579a1cc756ee1a/recipes/xterm-frobs";
sha256 = "02v8kh2g6a2fpxy911630zsg985hyakvqbd6v2xyfbz0vnd6i1lf";
name = "xterm-frobs";
};
@@ -64327,7 +65290,7 @@
xterm-keybinder = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, let-alist, lib, melpaBuild }:
melpaBuild {
pname = "xterm-keybinder";
- version = "20160523.256";
+ version = "20160522.1956";
src = fetchFromGitHub {
owner = "yuutayamada";
repo = "xterm-keybinder-el";
@@ -64335,7 +65298,7 @@
sha256 = "0ya7c73acwp29glwjd1hf19h8jij2afwmwq7a3h91qx5zdn09wvh";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/xterm-keybinder";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/656f8e27b4e6055a634249f134a4fc0667fa0e95/recipes/xterm-keybinder";
sha256 = "1n0zp1mc7x7z0671lf7p9r4qxic90bkf5q3zwz4vinpiw2qh88lz";
name = "xterm-keybinder";
};
@@ -64348,7 +65311,7 @@
xterm-title = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "xterm-title";
- version = "20091203.1923";
+ version = "20091203.1223";
src = fetchFromGitHub {
owner = "emacsmirror";
repo = "xterm-title";
@@ -64356,7 +65319,7 @@
sha256 = "06cbr7y3wp7j8lnbys57g6md4fdx9xhlnxl73pj7xpfa5i2x9ifl";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/xterm-title";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/bc25d156c8631b552a463f5088a99a3370166e03/recipes/xterm-title";
sha256 = "08z8qg9x6vjpybbhxa8x46qnp3951miz1264fivg776y76cg3ck6";
name = "xterm-title";
};
@@ -64369,7 +65332,7 @@
xtest = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "xtest";
- version = "20141214.1806";
+ version = "20141214.1106";
src = fetchFromGitHub {
owner = "promethial";
repo = "xtest";
@@ -64377,7 +65340,7 @@
sha256 = "09mn8s7gzzxgs7kskld8l68zjrcgnvml3fqj69wrfq7b1g62hhxy";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/xtest";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/378fe14c66072ecb899a074c56f95077dfc9667e/recipes/xtest";
sha256 = "1vbs4sb4frzg8d3l96ip9cc6lc86nbj50vpdfqazvxmdfd1sg4i7";
name = "xtest";
};
@@ -64390,7 +65353,7 @@
yabin = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "yabin";
- version = "20140206.451";
+ version = "20140205.2151";
src = fetchFromGitHub {
owner = "d5884";
repo = "yabin";
@@ -64398,7 +65361,7 @@
sha256 = "0f6pvwzhncycw8gnjy24h6q1qglfgvdjfs5dzqx9s43j3yg63lzm";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/yabin";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/cc44b28e32ff9b35f60744a175c2d1e3036db8bc/recipes/yabin";
sha256 = "1kmpm2rbb43c9cgp44qwd24d90mj48k3gyiir3vb6zf6k3syrc17";
name = "yabin";
};
@@ -64411,7 +65374,7 @@
yafolding = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "yafolding";
- version = "20141203.556";
+ version = "20141202.2256";
src = fetchFromGitHub {
owner = "zenozeng";
repo = "yafolding.el";
@@ -64419,7 +65382,7 @@
sha256 = "0b252m7vb5kg5bjhpgag6nhm32cac8dhlmy4pr0kpa860lh2xlz7";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/yafolding";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/51bfd6465ee8ee553e8fd466a3bc4e65ab98faed/recipes/yafolding";
sha256 = "1z70ismfwmh9a83a7h5lbhw7iywfib5fis7y8gx8020wfjq9g2yq";
name = "yafolding";
};
@@ -64432,7 +65395,7 @@
yagist = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "yagist";
- version = "20160418.708";
+ version = "20160418.8";
src = fetchFromGitHub {
owner = "mhayashi1120";
repo = "yagist.el";
@@ -64440,7 +65403,7 @@
sha256 = "0lgy9b893mq4harxh80n0n2zia00s2c6ga8p654q563idrskgz17";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/yagist";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/97ea1250ffbf159d7870710b9348ef26616dbedb/recipes/yagist";
sha256 = "1mz86fq0pb4w54c66vd19m2492mkrzq2qi6ssnn2xwmn8vv02wdd";
name = "yagist";
};
@@ -64453,7 +65416,7 @@
yahoo-weather = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "yahoo-weather";
- version = "20160426.1429";
+ version = "20160426.729";
src = fetchFromGitHub {
owner = "lujun9972";
repo = "yahoo-weather-mode";
@@ -64461,7 +65424,7 @@
sha256 = "1r29x9gkj5cfcg2ac4j5vw55n1niainhl2316mfq0zpxjjp2bhwq";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/yahoo-weather";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/ae5ca93d48a2d24787c3d4ed7ab3a65aa8023f4f/recipes/yahoo-weather";
sha256 = "1kzi6yp186wfcqh5q1v9vw6b1h8x89sba6wlnacfpjbarwapfif0";
name = "yahoo-weather";
};
@@ -64474,7 +65437,7 @@
yalinum = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "yalinum";
- version = "20130217.1143";
+ version = "20130217.443";
src = fetchFromGitHub {
owner = "tm8st";
repo = "emacs-yalinum";
@@ -64482,7 +65445,7 @@
sha256 = "12dd4ahg9f1493982d49g7sxx0n6ss4xcfhxwzyaqxckwzfranp0";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/yalinum";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/091dcc3775ec2137cb61d66df4e72aca4900897a/recipes/yalinum";
sha256 = "0jzsvkcvy2mkfmri4bzgrlgw2y0z3hxz44md83s5zmw09mshkahf";
name = "yalinum";
};
@@ -64495,7 +65458,7 @@
yaml-mode = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "yaml-mode";
- version = "20160528.2300";
+ version = "20160528.1600";
src = fetchFromGitHub {
owner = "yoshiki";
repo = "yaml-mode";
@@ -64503,7 +65466,7 @@
sha256 = "1ql4bjqblij78cgasxdyr19w75xnl8cfxq047qi8r8847zy5w5wg";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/yaml-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/cae2ac3513e371a256be0f1a7468e38e686c2487/recipes/yaml-mode";
sha256 = "0afp83xcr8h153cayyaszwkgpap0iyk351dlykmv6bv9d2m774mc";
name = "yaml-mode";
};
@@ -64516,7 +65479,7 @@
yaml-tomato = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, s }:
melpaBuild {
pname = "yaml-tomato";
- version = "20151123.853";
+ version = "20151123.153";
src = fetchFromGitHub {
owner = "RadekMolenda";
repo = "yaml-tomato";
@@ -64524,7 +65487,7 @@
sha256 = "1xgqqgg4q3hrhiap8gmr8iifdr1mg4dl0j236b6alhrgmykbhimy";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/yaml-tomato";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/0bfbef31df9d75964378448ac3c0d35bd36a6a3a/recipes/yaml-tomato";
sha256 = "0bja213l6mvh8ap5d04x8dik1z9px5jr52zpw1py7shw5asvp5s2";
name = "yaml-tomato";
};
@@ -64537,7 +65500,7 @@
yandex-weather = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "yandex-weather";
- version = "20160311.2137";
+ version = "20160311.1437";
src = fetchFromGitHub {
owner = "abstractionlayer";
repo = "yandex-weather.el";
@@ -64545,7 +65508,7 @@
sha256 = "0pw44klm8ldsdjphybzkknv8yh23xhzwg76w3d9cqs79jkd0rw8w";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/yandex-weather";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/5221cee4c89dde5cebd9cddb3b4e4c5814b898d7/recipes/yandex-weather";
sha256 = "11hspadm520cjlv1wk2bdpzg7hg2g0chbh26qijj9jgvca26x0md";
name = "yandex-weather";
};
@@ -64558,15 +65521,15 @@
yankpad = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "yankpad";
- version = "20160517.1627";
+ version = "20160604.1104";
src = fetchFromGitHub {
owner = "Kungsgeten";
repo = "yankpad";
- rev = "83d1939568609236c1947368f334cb105f3c3f89";
- sha256 = "1nm0wad4jblirc8jvaa6kyk2g00a16mmp2q0x6ks6adqhylnlzdf";
+ rev = "efbae7893c6170d92f9607d604a7eb289de1ad5e";
+ sha256 = "07g19pqx769bwly18flijryv8648k6jdw0bxhrp1dflf86cknyng";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/yankpad";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/e64746d10f9e0158621a7c4dc41dc2eca6ad573c/recipes/yankpad";
sha256 = "1w5r9zk33cjgsmk45znfg32ym06nyqj5q3knr59jmn1fafx7a3z4";
name = "yankpad";
};
@@ -64578,13 +65541,13 @@
}) {};
yaoddmuse = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild {
pname = "yaoddmuse";
- version = "20150712.1321";
+ version = "20150712.621";
src = fetchurl {
url = "https://www.emacswiki.org/emacs/download/yaoddmuse.el";
sha256 = "0svy6zp5f22z7mblap4psh7h4i52d1qasi9yk22l39przhsrjar4";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/yaoddmuse";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/e7dcbe43b65944968a882705ff4b3b2c9f40b6d2/recipes/yaoddmuse";
sha256 = "07sqcsad3k23agwwws7hxnc46cp9mkc9qinzva7qvjgs8pa9dh54";
name = "yaoddmuse";
};
@@ -64594,10 +65557,31 @@
license = lib.licenses.free;
};
}) {};
+ yapfify = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
+ melpaBuild {
+ pname = "yapfify";
+ version = "20160616.1540";
+ src = fetchFromGitHub {
+ owner = "JorisE";
+ repo = "yapfify";
+ rev = "ae48d638f6f9faf3f00d99d0676efa8423bd8219";
+ sha256 = "09xgv2p17n1jxw26qaf78srr3zwc4dvlwvkln83pkhayfnc93lwk";
+ };
+ recipeFile = fetchurl {
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/060c32d8e9fdc56fe702d265a935d74d76082f86/recipes/yapfify";
+ sha256 = "0scl8lk1c5i7jp1qj5gg8zf3zyi8lkb57ijkmvcs4czzlyv3y9bm";
+ name = "yapfify";
+ };
+ packageRequires = [];
+ meta = {
+ homepage = "https://melpa.org/#/yapfify";
+ license = lib.licenses.free;
+ };
+ }) {};
yard-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "yard-mode";
- version = "20160310.1750";
+ version = "20160310.1050";
src = fetchFromGitHub {
owner = "pd";
repo = "yard-mode.el";
@@ -64605,7 +65589,7 @@
sha256 = "096ay60hrd14b459cyxxcf9g7i1ivsxg6yhc0q162px6kl1x0m2y";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/yard-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/afad2677f901b8d27922389afb1d235d5c8edc39/recipes/yard-mode";
sha256 = "0jmlcba8qapjwaaliz9gzs99if3wglkhmlpjzcdy3icx18sw8kzx";
name = "yard-mode";
};
@@ -64618,7 +65602,7 @@
yari = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "yari";
- version = "20151128.839";
+ version = "20151128.139";
src = fetchFromGitHub {
owner = "hron";
repo = "yari.el";
@@ -64626,7 +65610,7 @@
sha256 = "0w9a6j0ndpfwaz1g974vv5jqgbzxw26l19kq51j3ah73063cavpf";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/yari";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/091dcc3775ec2137cb61d66df4e72aca4900897a/recipes/yari";
sha256 = "0sch9x899mzwdacg55w5j583k2r4vn71ish7gqpghd7cj13ii66h";
name = "yari";
};
@@ -64639,7 +65623,7 @@
yascroll = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "yascroll";
- version = "20150315.1405";
+ version = "20150315.805";
src = fetchFromGitHub {
owner = "m2ym";
repo = "yascroll-el";
@@ -64647,7 +65631,7 @@
sha256 = "08wa97hsfy1rc8ify3rz2ncfij4z6l16p4s20naygqccjv3ir6z5";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/yascroll";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/091dcc3775ec2137cb61d66df4e72aca4900897a/recipes/yascroll";
sha256 = "11g7wn4hgdwnx3n7ra0sh8gk6rykwvrg9g2cihvcv7mjbqgcv53f";
name = "yascroll";
};
@@ -64660,15 +65644,15 @@
yasnippet = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "yasnippet";
- version = "20160531.221";
+ version = "20160629.2122";
src = fetchFromGitHub {
owner = "capitaomorte";
repo = "yasnippet";
- rev = "e23a053b0041e4f615649b7acf8c1b2ce35fd3fb";
- sha256 = "1lc7jjk31kp4apcf349nrjac10c2nxi4w8ws6g5brhbzxgdhr217";
+ rev = "4296a86139b204f02fd3765e6b40ff69bd41b2f8";
+ sha256 = "030xaw45sglhmxwhgpc8z1frxpgnwb8xi5hcabdgf1m8l6xvs2mp";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/yasnippet";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/489687c6c41399a3bca8148a62d25581726a847d/recipes/yasnippet";
sha256 = "1j6hcpzxljz1axh0xfbwr4ysbixkwgxawsvsgicls8r8kl2xvjvf";
name = "yasnippet";
};
@@ -64681,15 +65665,15 @@
yatemplate = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, yasnippet }:
melpaBuild {
pname = "yatemplate";
- version = "20160601.2303";
+ version = "20160630.1636";
src = fetchFromGitHub {
owner = "mineo";
repo = "yatemplate";
- rev = "ed53362fb29544b0fd7c0f1dcd70c4e0c581d8ae";
- sha256 = "0hlm31fqn53sqkvzrsah11p738mhq4l2bx4bq4nrnf92hs4xjjv2";
+ rev = "fa8b3d79e4a619310658ee87da1aa3d301972dab";
+ sha256 = "1jw7d21n0wg5nn7cm3jgy3frpdffnhy9hgl9w9jgrsd2g4car0zl";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/yatemplate";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/8ba3cdb74f121cbf36b6d9d5a434c363905ce526/recipes/yatemplate";
sha256 = "05gd9sxdiqpw2p1kdagwgxd94wiw1fmmcsp9v4p74i9sqmf6qn6q";
name = "yatemplate";
};
@@ -64701,14 +65685,14 @@
}) {};
yatex = callPackage ({ fetchhg, fetchurl, lib, melpaBuild }: melpaBuild {
pname = "yatex";
- version = "20160108.19";
+ version = "20160107.1719";
src = fetchhg {
url = "https://www.yatex.org/hgrepos/yatex/";
rev = "e78a87bc2c9e";
sha256 = "08iwfpsjs36pqr2l85avxhsjx8z0sdfw8cqwwf3brn7i4x67f7z5";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/yatex";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/04867a574773e8794335a2664d4f5e8b243f3ec9/recipes/yatex";
sha256 = "17np4am7yan1bh4706azf8in60c41158h3z591478j5b1w13y5a6";
name = "yatex";
};
@@ -64721,7 +65705,7 @@
yaxception = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "yaxception";
- version = "20150105.1552";
+ version = "20150105.852";
src = fetchFromGitHub {
owner = "aki2o";
repo = "yaxception";
@@ -64729,7 +65713,7 @@
sha256 = "0nqyn1b01v1qxv7rcf46qypca61lmpm8d7kqv63jazw3n05qdnj8";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/yaxception";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/1da5261081fc66910d935b81e52391c071e52379/recipes/yaxception";
sha256 = "18n2kjbgfhkhcwigxmv8dk72jp57vsqqd20lc26v5amx6mrhgh58";
name = "yaxception";
};
@@ -64742,7 +65726,7 @@
ycm = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "ycm";
- version = "20150822.2036";
+ version = "20150822.1336";
src = fetchFromGitHub {
owner = "neuromage";
repo = "ycm.el";
@@ -64750,7 +65734,7 @@
sha256 = "0znchya89zzk30mwl4qfm0q9sfa5m3jspapb892ydj0mck5n4nyj";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ycm";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/44e168f757cb51249db2deb9f781eff99cf6fb7c/recipes/ycm";
sha256 = "16ahgvi85ddjlrjxld14zm2vvam0m89mwskizjd5clcz0snk51sc";
name = "ycm";
};
@@ -64763,15 +65747,15 @@
ycmd = callPackage ({ cl-lib ? null, dash, deferred, emacs, fetchFromGitHub, fetchurl, let-alist, lib, melpaBuild, popup, request, request-deferred, s }:
melpaBuild {
pname = "ycmd";
- version = "20160530.942";
+ version = "20160625.953";
src = fetchFromGitHub {
owner = "abingham";
repo = "emacs-ycmd";
- rev = "69ef8e615ae64b49e6955adfafd12037df01cd9f";
- sha256 = "18v546yq65sf75a46k7slqh5dz12ifh30linm0m9gv65yrjpv02j";
+ rev = "a9cb3a6893cff7059058f25f06e75d38584084f1";
+ sha256 = "03vfg56qmj68y702c94p914fqrx68szykj8nm12d26p0rjnky2b8";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ycmd";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/4b25378540c64d0214797348579671bf2b8cc696/recipes/ycmd";
sha256 = "10jqr6xz2fnrd1ihips9jmbcd28zha432h4pxjpswz3ivwjqhxna";
name = "ycmd";
};
@@ -64794,7 +65778,7 @@
yesql-ghosts = callPackage ({ cider, dash, fetchFromGitHub, fetchurl, lib, melpaBuild, s }:
melpaBuild {
pname = "yesql-ghosts";
- version = "20150220.1337";
+ version = "20150220.637";
src = fetchFromGitHub {
owner = "magnars";
repo = "yesql-ghosts";
@@ -64802,7 +65786,7 @@
sha256 = "1fyvvkx6pa41bcr9cyh4yclwdzc5bs742s9fxr6wb4a5scq3hg9m";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/yesql-ghosts";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/3c652657be0f9b9dcb236e01c3abd2fd717190d7/recipes/yesql-ghosts";
sha256 = "1hxzbnfd15f0ifdqjbw9nhxd0z46x705v2bc0xl71nav78fgpswf";
name = "yesql-ghosts";
};
@@ -64815,15 +65799,15 @@
yoshi-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "yoshi-theme";
- version = "20160305.18";
+ version = "20160608.1623";
src = fetchFromGitHub {
owner = "ryuslash";
repo = "yoshi-theme";
- rev = "8e8f2f5f37c071bff36e68c83d9ca2ef80575995";
- sha256 = "1a40kpl5b4sar15s7l8vkfm2iyr5ma3c1n6w5r4z37w5kn59bkk5";
+ rev = "660b9368f448372330722985d1c869966c034652";
+ sha256 = "13p1rzi9l4k6gjvdsls0kg0c8rdkwinfrl2ns9y5fn4pbr2lwba5";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/yoshi-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/6e9a549e31c4097ee24b4bff12ec5d20d3beac68/recipes/yoshi-theme";
sha256 = "1kzdjs3rzg9rxrjgsk0wk75rwvbip6ixg1apcxv2c1a6biqqf2hv";
name = "yoshi-theme";
};
@@ -64836,7 +65820,7 @@
youdao-dictionary = callPackage ({ chinese-word-at-point, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, names, popup }:
melpaBuild {
pname = "youdao-dictionary";
- version = "20150914.844";
+ version = "20150914.144";
src = fetchFromGitHub {
owner = "xuchunyang";
repo = "youdao-dictionary.el";
@@ -64844,7 +65828,7 @@
sha256 = "0016qff7hdnd0xkyhxakfzzscwlwkpzppvc4wxfw0iacpjkz1fnr";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/youdao-dictionary";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/712bdf83f71c2105754f9b549a889ffc5b7ba565/recipes/youdao-dictionary";
sha256 = "1qfk7s18br9jask1bpida0cjxks098qpz0ssmw8misi3bjax0fym";
name = "youdao-dictionary";
};
@@ -64857,7 +65841,7 @@
z3-mode = callPackage ({ emacs, fetchFromGitHub, fetchurl, flycheck, lib, melpaBuild }:
melpaBuild {
pname = "z3-mode";
- version = "20151120.2355";
+ version = "20151120.1655";
src = fetchFromGitHub {
owner = "zv";
repo = "z3-mode";
@@ -64865,7 +65849,7 @@
sha256 = "1k7m3xk5ksbr2s3ypz5yqafz9sfav1m0qk2jz1xyi3fdaw2j0w2z";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/z3-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/e056fb14b46b97ff31b1db3b8bd31e395a54cd87/recipes/z3-mode";
sha256 = "183lzhgjj480ca2939za3rlnsbfn24mgi501n66h5wim950v7vgd";
name = "z3-mode";
};
@@ -64878,7 +65862,7 @@
zeal-at-point = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "zeal-at-point";
- version = "20151231.948";
+ version = "20151231.248";
src = fetchFromGitHub {
owner = "jinzhu";
repo = "zeal-at-point";
@@ -64886,7 +65870,7 @@
sha256 = "16k8hha798hrs0qfdwqdr6n7y13ffgm6jj3msrk0zl8117jhaany";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/zeal-at-point";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/4bcb472b6b18b75acd9c68e1fc7ecce4c2a40d8f/recipes/zeal-at-point";
sha256 = "1cz53plk5bax5azm13y7xz530qcfh0scm0cgrkrgwja2wwlxirnw";
name = "zeal-at-point";
};
@@ -64899,14 +65883,14 @@
zeitgeist = callPackage ({ fetchgit, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "zeitgeist";
- version = "20131228.1909";
+ version = "20131228.1209";
src = fetchgit {
url = "git://anongit.freedesktop.org/zeitgeist/zeitgeist-datasources";
rev = "cdd1c219ed3afa9500403c3c499f49583d599034";
sha256 = "0xg67asvgav5js03i3bqmh7apndrn0jy5vai0bsh22pq8wgvq083";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/zeitgeist";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/fb5f96d92b33fe97573334038f2fe4f984f37cca/recipes/zeitgeist";
sha256 = "0m6drp3c6hp70ypbva3ji2dndl9an1jm2zlhnpwmjxsmw47cd732";
name = "zeitgeist";
};
@@ -64919,7 +65903,7 @@
zen-and-art-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "zen-and-art-theme";
- version = "20120622.1637";
+ version = "20120622.937";
src = fetchFromGitHub {
owner = "developernotes";
repo = "zen-and-art-theme";
@@ -64927,7 +65911,7 @@
sha256 = "0dnaxhsw549k54j0mgydm7qbl4pizgipfyzc15f9afsxa107rpnl";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/zen-and-art-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/692cfa0e9edbc1b7114e2ae2f36bef34b20ad17c/recipes/zen-and-art-theme";
sha256 = "0b2lflji955z90xl9iz2y1vm04yljghbw4948gh5vv5p7mwibgf2";
name = "zen-and-art-theme";
};
@@ -64940,7 +65924,7 @@
zenburn-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "zenburn-theme";
- version = "20160501.1649";
+ version = "20160501.949";
src = fetchFromGitHub {
owner = "bbatsov";
repo = "zenburn-emacs";
@@ -64948,7 +65932,7 @@
sha256 = "1bjjmmplzjl17aqyz89s3z44vxpvik5ibv7004kp5678gf1vv5rs";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/zenburn-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/091dcc3775ec2137cb61d66df4e72aca4900897a/recipes/zenburn-theme";
sha256 = "1kb371j9aissj0vy07jw4ydfn554blc8b2rbi0x1dvfksr2rhsn9";
name = "zenburn-theme";
};
@@ -64961,7 +65945,7 @@
zencoding-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "zencoding-mode";
- version = "20140213.922";
+ version = "20140213.222";
src = fetchFromGitHub {
owner = "rooney";
repo = "zencoding";
@@ -64969,7 +65953,7 @@
sha256 = "1y3wj15kfbgskl29glmba6lzq43rcm141p4i5s180aqcw7ydp5vr";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/zencoding-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/e7f2ebb9d860aa4f0797cdaadaa35fb3f5c4460b/recipes/zencoding-mode";
sha256 = "1fclad1dyngyg9ncfkcqfxybvy8482i2bd409cgxi9y4h1wc7ws7";
name = "zencoding-mode";
};
@@ -64982,14 +65966,14 @@
zenity-color-picker = callPackage ({ emacs, fetchgit, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "zenity-color-picker";
- version = "20160302.1254";
+ version = "20160302.554";
src = fetchgit {
url = "https://bitbucket.org/Soft/zenity-color-picker.el.git";
rev = "4f4f46676a461ebc881487fb70c8c181e323db5e";
- sha256 = "1abm0wmfkhbwdnqnvjd9r0pm7ahkcj7ip7jcz6rm49qam815g7rk";
+ sha256 = "14i2k52qz77dv04w39fyp9hfq983fwa3803anqragk608xgwpf4s";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/zenity-color-picker";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/e7c8f99ac93f2b828ded420a2fbcd18356ea641e/recipes/zenity-color-picker";
sha256 = "1v6ks922paacdgpv5v8cpic1g66670x73ixsy2nixs5qdw241wzl";
name = "zenity-color-picker";
};
@@ -65002,7 +65986,7 @@
zerodark-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "zerodark-theme";
- version = "20160518.1527";
+ version = "20160518.827";
src = fetchFromGitHub {
owner = "NicolasPetton";
repo = "zerodark-theme";
@@ -65010,7 +65994,7 @@
sha256 = "1kdsyki7i7x0ypq0iabdv1bnx0gd45acqcixvrxi3rf9j4chyvls";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/zerodark-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/72ef967a9bea2e100ae17aad1a88db95820f4f6a/recipes/zerodark-theme";
sha256 = "1nqzswmnq6h0av4rivqm237h7ghp7asa2nvls7nz4ma467p9qhp9";
name = "zerodark-theme";
};
@@ -65023,7 +66007,7 @@
zlc = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "zlc";
- version = "20151011.357";
+ version = "20151010.2057";
src = fetchFromGitHub {
owner = "mooz";
repo = "emacs-zlc";
@@ -65031,7 +66015,7 @@
sha256 = "1gb51bqdf87yibs1zngk6q090p05293cpwlwbwzhnih9sl6wkq8x";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/zlc";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/cae2ac3513e371a256be0f1a7468e38e686c2487/recipes/zlc";
sha256 = "0qw0qf14l09mcnw7h0ccbw17psfpra76qfawkc10zpdb5a2167d0";
name = "zlc";
};
@@ -65041,22 +66025,22 @@
license = lib.licenses.free;
};
}) {};
- znc = callPackage ({ cl-lib ? null, erc ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }:
+ znc = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "znc";
- version = "20140722.2321";
+ version = "20160627.1532";
src = fetchFromGitHub {
owner = "sshirokov";
repo = "ZNC.el";
- rev = "94c8e4cdcfb51b75d5f95cb51ce21c6274325e19";
- sha256 = "1xsxmvbh3xm3zh9yc6q28h48nar6pwyd51xw04b1x7amwkp8qdnp";
+ rev = "ce468d185e4a949c45fdd7586313144bc69d4fe5";
+ sha256 = "0jh11lbzsndsz9i143av7510417nzwy4j3mmpq7cjixfbmnxdq06";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/znc";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/933bfffbfa6a5b777e7820684e4c115e7798941a/recipes/znc";
sha256 = "1z2kzbapgh55wwr5jp7v1wz5kpz4l7n3k94mkh3s068xag9xs6zz";
name = "znc";
};
- packageRequires = [ cl-lib erc ];
+ packageRequires = [ cl-lib ];
meta = {
homepage = "https://melpa.org/#/znc";
license = lib.licenses.free;
@@ -65065,7 +66049,7 @@
zombie = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "zombie";
- version = "20141222.1716";
+ version = "20141222.1016";
src = fetchFromGitHub {
owner = "zk-phi";
repo = "zombie";
@@ -65073,7 +66057,7 @@
sha256 = "1gm3ly6czbw4vrxcslm50jy6nxf2qsl656cjwbyhw251wppn75cg";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/zombie";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/0da12385908c0e2ecd087ea7572fedf0a2dcf03f/recipes/zombie";
sha256 = "0ji3nsxwbxmmygd6plpbc1lkw6i5zw4y6x3r5n2ah3ds4vjr7cnv";
name = "zombie";
};
@@ -65086,7 +66070,7 @@
zombie-trellys-mode = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, haskell-mode, lib, melpaBuild }:
melpaBuild {
pname = "zombie-trellys-mode";
- version = "20150304.1548";
+ version = "20150304.848";
src = fetchFromGitHub {
owner = "david-christiansen";
repo = "zombie-trellys-mode";
@@ -65094,7 +66078,7 @@
sha256 = "04m53hzk5n9vxh0gxi8jzpdhsdjlxnvz7hmsisr3bs99v603ha01";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/zombie-trellys-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/e66db80ab82a69542688cd57c9e0ec10e6616c87/recipes/zombie-trellys-mode";
sha256 = "19xzvppw7f35s82hm0y7sga8dyjjyy0dxy6vji4hxdpjziz7lggv";
name = "zombie-trellys-mode";
};
@@ -65107,7 +66091,7 @@
zone-nyan = callPackage ({ esxml, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "zone-nyan";
- version = "20160102.2356";
+ version = "20160102.1656";
src = fetchFromGitHub {
owner = "wasamasa";
repo = "zone-nyan";
@@ -65115,7 +66099,7 @@
sha256 = "0b8m0mdxbskkqsx86i6942235i8x0pk67a7s8lhsp2anahksazla";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/zone-nyan";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/38262704e1045c21ee73ca9dc87656936382004a/recipes/zone-nyan";
sha256 = "165sgjaahz038isii971m02hr2g5iqhbhiwf5kdn8c739cjaa17b";
name = "zone-nyan";
};
@@ -65128,7 +66112,7 @@
zone-rainbow = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "zone-rainbow";
- version = "20160120.1434";
+ version = "20160120.734";
src = fetchFromGitHub {
owner = "kawabata";
repo = "zone-rainbow";
@@ -65136,7 +66120,7 @@
sha256 = "0w550l9im3mhxhja1b7cr9phdcbvx5lprw551lj0d1lv7qvjasz0";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/zone-rainbow";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/c8f678d32c8cd1bcc8ec042e7e68ca3a5259da65/recipes/zone-rainbow";
sha256 = "0l51fmhvx9vsxbs62cbjgqphb691397f651nqin7cj3dfvchzh4j";
name = "zone-rainbow";
};
@@ -65149,7 +66133,7 @@
zone-select = callPackage ({ dash, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "zone-select";
- version = "20160118.1519";
+ version = "20160118.819";
src = fetchFromGitHub {
owner = "kawabata";
repo = "zone-select";
@@ -65157,7 +66141,7 @@
sha256 = "17mrzf85ym0x5ih4l6sjdjlcmviabf8c8rpvpkd90gp9qxd8pyx1";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/zone-select";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/ecad1475d9a04ddd84f86ed950f742f68bcf71f8/recipes/zone-select";
sha256 = "05kc211invmy4ajwf71vgr2b7bdgn99c4a26m95gcjqgy3sh5xzz";
name = "zone-select";
};
@@ -65170,7 +66154,7 @@
zone-sl = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "zone-sl";
- version = "20160201.1310";
+ version = "20160201.610";
src = fetchFromGitHub {
owner = "kawabata";
repo = "zone-sl";
@@ -65178,7 +66162,7 @@
sha256 = "0m1q45pza61j0fp8cxkgmds5fyjrk0nqpwhg8m91610m3pvyc3ap";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/zone-sl";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/11c976519e0cb320e48f40f4d735e557b3dfc1b9/recipes/zone-sl";
sha256 = "04rwd6vj3abk3bzhq3swxwcq5da2n9cldrcmvnqgjr975np4cgs3";
name = "zone-sl";
};
@@ -65190,13 +66174,13 @@
}) {};
zones = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild {
pname = "zones";
- version = "20160209.1820";
+ version = "20160209.1120";
src = fetchurl {
url = "https://www.emacswiki.org/emacs/download/zones.el";
sha256 = "1g6dpyihwaz28ppndhkw3jzmph6pmcnfhaff926j0zr1j701sqdd";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/zones";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/f768556f3fbe2537d6ebb08a5285d040e851e85d/recipes/zones";
sha256 = "08sl7i7cy22nd1jijc5l7lp75k9z83gfr8q41n72l0vxrpdasc9w";
name = "zones";
};
@@ -65209,7 +66193,7 @@
zonokai-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "zonokai-theme";
- version = "20160322.325";
+ version = "20160321.2125";
src = fetchFromGitHub {
owner = "ZehCnaS34";
repo = "zonokai-emacs";
@@ -65217,7 +66201,7 @@
sha256 = "16ni0va1adpqdnrkiwmpxwrhyanxp5jwbknii2wnbhgq62s7gv43";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/zonokai-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/80c7b1e01eb23f2f9b71fbeeea7d54ac36bae992/recipes/zonokai-theme";
sha256 = "1hrpgh03mp7yynqamgzkw7fa70c5pmyjfmfblkfhspnsif8j4v29";
name = "zonokai-theme";
};
@@ -65230,13 +66214,13 @@
zoom-frm = callPackage ({ fetchurl, frame-cmds, frame-fns, lib, melpaBuild }:
melpaBuild {
pname = "zoom-frm";
- version = "20160101.125";
+ version = "20151231.1825";
src = fetchurl {
url = "https://www.emacswiki.org/emacs/download/zoom-frm.el";
sha256 = "1whpd97yjby5zbcr4fcn0nxhqvn6k3jn8k2d15i6ss579kziwdqn";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/zoom-frm";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/8b528544841995045fb1f8344aaaa38946bb3915/recipes/zoom-frm";
sha256 = "111lr29zhj8w8j7dbzl58iisqxjhccxpw4spfxx08zxh4623g5mk";
name = "zoom-frm";
};
@@ -65249,7 +66233,7 @@
zoom-window = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "zoom-window";
- version = "20160527.1638";
+ version = "20160527.938";
src = fetchFromGitHub {
owner = "syohex";
repo = "emacs-zoom-window";
@@ -65257,7 +66241,7 @@
sha256 = "13393bd5lqpbv7m3p6ihg0ghx1w4w6mrnybx4m8hcfvcn17dr3hw";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/zoom-window";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/8a55cc66cc0deb1c24023f638b8e920c9d975859/recipes/zoom-window";
sha256 = "0l9683nk2bdm49likk9c55c23qfy6f1pn04drqwd1vhpanz4l4b3";
name = "zoom-window";
};
@@ -65270,7 +66254,7 @@
zop-to-char = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "zop-to-char";
- version = "20160212.1008";
+ version = "20160212.308";
src = fetchFromGitHub {
owner = "thierryvolpiatto";
repo = "zop-to-char";
@@ -65278,7 +66262,7 @@
sha256 = "1hq5ycnj0kwqs25z5rm095d55r768458vc5h5dpjhka5n6c099p1";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/zop-to-char";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/b0a9277f1a5f1aef8886e739c73dea91d3f81dc5/recipes/zop-to-char";
sha256 = "0jnspvqqvnaplld083j7cqqxw122qazh88ab7hymci36m3ka9hga";
name = "zop-to-char";
};
@@ -65291,7 +66275,7 @@
zossima = callPackage ({ fetchFromGitHub, fetchurl, inf-ruby, lib, melpaBuild }:
melpaBuild {
pname = "zossima";
- version = "20121124.135";
+ version = "20121123.1835";
src = fetchFromGitHub {
owner = "technomancy";
repo = "zossima";
@@ -65299,7 +66283,7 @@
sha256 = "0fgwxw7r3zfv0b7xi8bx7kxff2r5hdw9gxf16kwq04fnh18nhi39";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/zossima";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/b7566fe6fffc38981ea33582d783c58f3842fe28/recipes/zossima";
sha256 = "11kmnbqv4s8arindg7cxcdhbvfxsckks332wn7aiyb3bjhcgzwjb";
name = "zossima";
};
@@ -65312,7 +66296,7 @@
zotelo = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "zotelo";
- version = "20160602.1149";
+ version = "20160602.449";
src = fetchFromGitHub {
owner = "vspinu";
repo = "zotelo";
@@ -65320,7 +66304,7 @@
sha256 = "1gff44nwiqhqhppwmsn38njkph4g9bw669p95m8p2avb7x7kiybl";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/zotelo";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/7fabdb05de9b8ec18a3a566f99688b50443b6b44/recipes/zotelo";
sha256 = "0y6s5ma7633h5pf9zj7vkazidlf211va7nk47ppb1q0iyfkyln36";
name = "zotelo";
};
@@ -65333,7 +66317,7 @@
zotxt = callPackage ({ fetchFromGitLab, fetchurl, lib, melpaBuild, request-deferred }:
melpaBuild {
pname = "zotxt";
- version = "20160428.422";
+ version = "20160427.2122";
src = fetchFromGitLab {
owner = "egh";
repo = "zotxt-emacs";
@@ -65341,7 +66325,7 @@
sha256 = "0qksa67aazs9vx7v14nlakr34z6l0h6mhfzi2c0vhrr0c210r6hp";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/zotxt";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/b633453e77a719f6b6b6564e66c1c1260db38aa6/recipes/zotxt";
sha256 = "18jla05g2k8zfrmp7q9kpr1mpw6smxzdyn8nfghm306wvv9ff8y5";
name = "zotxt";
};
@@ -65354,7 +66338,7 @@
ztree = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "ztree";
- version = "20160128.42";
+ version = "20160127.1742";
src = fetchFromGitHub {
owner = "fourier";
repo = "ztree";
@@ -65362,7 +66346,7 @@
sha256 = "1sxjpbgi7ydmrlv34l16n40qpg969wfcb6kknndrh3fgjjc3p41b";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ztree";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/f151e057c05407748991f23c021e94c178b87248/recipes/ztree";
sha256 = "1fk5xz8qq3azc66f954x5qvym94xnv4fg6wy83ihdfwycsas7j20";
name = "ztree";
};
@@ -65375,7 +66359,7 @@
zygospore = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "zygospore";
- version = "20140703.1052";
+ version = "20140703.352";
src = fetchFromGitHub {
owner = "LouisKottmann";
repo = "zygospore.el";
@@ -65383,7 +66367,7 @@
sha256 = "0v73fgb0gf81vlihiicy32v6x86rr2hv0bxlpw7d3pk4ng1a0l3z";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/zygospore";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/7fabdb05de9b8ec18a3a566f99688b50443b6b44/recipes/zygospore";
sha256 = "0n9qs6fymdjly0i4rmx87y8gapfn5sqivsivcffi42vcb5f17kxj";
name = "zygospore";
};
@@ -65396,7 +66380,7 @@
zzz-to-char = callPackage ({ avy, cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "zzz-to-char";
- version = "20160122.1340";
+ version = "20160122.640";
src = fetchFromGitHub {
owner = "mrkkrp";
repo = "zzz-to-char";
@@ -65404,7 +66388,7 @@
sha256 = "1wphpxnh7sisqfx7ngil3ixnjkfgwy3j2bvv33bxcwslvfggimi6";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/zzz-to-char";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/7063cbc1f1501ce81552d7ef1d42d1309f547c42/recipes/zzz-to-char";
sha256 = "16vwp0krshmn5x3ry1j512g4kydx39znjqzri4j7wgg49bz1n7vh";
name = "zzz-to-char";
};
diff --git a/pkgs/applications/editors/emacs-modes/melpa-packages.nix b/pkgs/applications/editors/emacs-modes/melpa-packages.nix
index 026ba7caea3..6081c96006a 100644
--- a/pkgs/applications/editors/emacs-modes/melpa-packages.nix
+++ b/pkgs/applications/editors/emacs-modes/melpa-packages.nix
@@ -36,10 +36,6 @@ self:
});
overrides = {
- ac-php = super.ac-php.override {
- inherit (self.melpaPackages) popup;
- };
-
# upstream issue: mismatched filename
ack-menu = markBroken super.ack-menu;
diff --git a/pkgs/applications/editors/emacs-modes/melpa-stable-generated.nix b/pkgs/applications/editors/emacs-modes/melpa-stable-generated.nix
index af480af6e5c..52db37ab592 100644
--- a/pkgs/applications/editors/emacs-modes/melpa-stable-generated.nix
+++ b/pkgs/applications/editors/emacs-modes/melpa-stable-generated.nix
@@ -10,7 +10,7 @@
sha256 = "1xigpz2aswlmpcsc1f7gfakyw7041pbyl9zfd8nz38iq036n5b96";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/0blayout";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/6521ec44ae8b0ba2e0523517f0f3d5b94ddbe1be/recipes/0blayout";
sha256 = "027k85h34998i8vmbg2hi4q1m4f7jfva5jm38k0g9m1db700gk92";
name = "_0blayout";
};
@@ -31,7 +31,7 @@
sha256 = "13f4l9xzx4xm5m80kkb49zh31w0bn0kw9m5ca28rrx4aysqmwryv";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/abc-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/aaee9dc5de06747374f311d86a550d3cc15beed1/recipes/abc-mode";
sha256 = "0qf5lbszyscmagiqhc0d05vzkhdky7ini4w33z1h3j5417sscrcx";
name = "abc-mode";
};
@@ -52,7 +52,7 @@
sha256 = "1yr6cqycd7ljkqzfp4prz9ilcpjq8wxg5yf645m24gy9v4w365ia";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/abyss-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/f390e5153b6360a27abc74983f5fef11226634f3/recipes/abyss-theme";
sha256 = "0ckrgfd7fjls6g510v8fqpkd0fd18lr0spg3lf5s88gky8ihdg6c";
name = "abyss-theme";
};
@@ -73,7 +73,7 @@
sha256 = "0a8widshsm39cbala17pmnk1sazazhhyqppwalysli170whk49c5";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ac-alchemist";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/ef9037aa41a8d9467838495bb235db32c19cc417/recipes/ac-alchemist";
sha256 = "02ll3hcixgdb8zyszn78714gy1h2q0vkhpbnwap9302mr2racwl0";
name = "ac-alchemist";
};
@@ -94,7 +94,7 @@
sha256 = "0vrd6g9cl02jjxrjxpshq4pd748b5xszhpmakywrw8s08nh8jf44";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ac-anaconda";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/0eb23a75c8b57b4af1737c0508f03e66430e6076/recipes/ac-anaconda";
sha256 = "124nvigk6y3iw0lj2r7div88rrx8vz59xwqph1063jsrc29x8rjf";
name = "ac-anaconda";
};
@@ -115,7 +115,7 @@
sha256 = "12z8nq797hjy0bq5vzpcm7z7bdn0ixc3ma4cj3v51xnwmgknzk6c";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ac-cake";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/2257db76719cb1e3e2f79aff2b61073b655f9061/recipes/ac-cake";
sha256 = "0s2pgf0m98ixgadsnn201vm5gnawanpvxv56sf599f33krqnxzkl";
name = "ac-cake";
};
@@ -136,7 +136,7 @@
sha256 = "0mlmhdl9s28z981y8bnpj8jpfzm6bgfiyl0zmpgvhyqw1wzqywwv";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ac-cake2";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/b8b728c2caed96d7505cafc42d0d7ed49d6cadcd/recipes/ac-cake2";
sha256 = "0qxilldx23wqf8ilif2nin119bvd0l7b6f6wifixx28a6kl1vsgy";
name = "ac-cake2";
};
@@ -157,7 +157,7 @@
sha256 = "0nyq34yq4jcp3p30ygma3iz1h0q551p33792byj76pa5ps09g1da";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ac-capf";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/929da263f57b904c50f5f17b09d4c4b480999c97/recipes/ac-capf";
sha256 = "1drgk5iz2wp3rxzd39pj0n4cfmm5z8zqlp50jw5z7ffbbg35qxbm";
name = "ac-capf";
};
@@ -178,7 +178,7 @@
sha256 = "12s7wy7fyk5z9q287j871gcsrvj90f4c81h39p66d99jw0cl93qj";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ac-cider";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/e8adefaf2e284ef91baec3dbd3e10c868de69926/recipes/ac-cider";
sha256 = "1dszpb706h34miq2bxqyq1ycbran5ax36vcniwp8vvhgcjsw5sz6";
name = "ac-cider";
};
@@ -199,7 +199,7 @@
sha256 = "1sdgpyq5p824dnxv6r7djwvhyhdmnis8k6992klr8iz7anhxzdam";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ac-clang";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/ffe0485048b85825f5e8ba95917d8c9dc64fe5de/recipes/ac-clang";
sha256 = "070s06xhkzaqfc3j8c4i44rks6gn8z66lwd54j17p8d91x3qjpr4";
name = "ac-clang";
};
@@ -220,7 +220,7 @@
sha256 = "0a3s880nswc2s6yh2v5zsmws550q917i7av8nrxc5sp1d03xqwmn";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ac-dcd";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/64142a4b14531409f45f02a8053ed8948f48221d/recipes/ac-dcd";
sha256 = "086jp9c6bilc361n1hscza3pbhgvqlq944z7cil2jm1kicsf8s7r";
name = "ac-dcd";
};
@@ -241,7 +241,7 @@
sha256 = "0cc3jpc4pihbyznyzvf6i3xwc2x78gb5m36ba9gkvxhabsljnlfg";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ac-emoji";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/15f591f9cba367b071046fef5ae01bbbd0475ce3/recipes/ac-emoji";
sha256 = "0msh3dh89jzk6hxva34gp9d5pazchgdknxjbi72z26rss9bkp1mw";
name = "ac-emoji";
};
@@ -262,7 +262,7 @@
sha256 = "0ijni3qgd68jhznhirhgcl59cr7hwfvbwgf6z120x56jmp8h01d2";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ac-etags";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/fda9c7def8bc54af4ab17dc049dd94324c8f10fa/recipes/ac-etags";
sha256 = "0ag49k9izrs4ikzac9lifvvwhcn5n89lr2vb20pngsvg1czdyhzb";
name = "ac-etags";
};
@@ -283,7 +283,7 @@
sha256 = "02ifz25rq64z0ifxs52aqdz0iz4mi6xvj88hcn3aakkmsj749vvn";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ac-geiser";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/586ef409e3ae758b459b625d4bf0108f0525a085/recipes/ac-geiser";
sha256 = "0v558qz1mp8b1bgk8kgdk5sx5mpd353mw77n5b0pw4b2ikzpz2mx";
name = "ac-geiser";
};
@@ -304,7 +304,7 @@
sha256 = "0m33v9iy3y37sicfmpx7kvmn8v1a8k6cs7d0v9v5k93p4d5ila41";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ac-haskell-process";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/98bd259b6bfd9b49a8ae421807a4ab3821f09608/recipes/ac-haskell-process";
sha256 = "0kv4z850kv03wiax1flnrp6sgqja25j23l719w7rkr7ck110q8rw";
name = "ac-haskell-process";
};
@@ -325,7 +325,7 @@
sha256 = "1gw38phyaslpql7szvlpwgyfngdgd21f6lq406vq0gjwwmxgig34";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ac-helm";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50427d365c79aff84ac759d19ce177b4f7ed2751/recipes/ac-helm";
sha256 = "16ajxlhcah5zbvywpc6l4l1arr308gjpgvdx6l1nrv2zvpckhlwq";
name = "ac-helm";
};
@@ -346,7 +346,7 @@
sha256 = "19v9515ixg22m7h7riix8w3vyhzax1m2pbwdirp59v532xn9b0cz";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ac-html";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/ce370d60b2f4dd0570b631f6ca92a221e1fe2de6/recipes/ac-html";
sha256 = "0qf8f75b6dvy844dq8vh8d9c6k599rh1ynjcif9bwvdpf6pxwvqa";
name = "ac-html";
};
@@ -367,7 +367,7 @@
sha256 = "1zmjqnlbfchnb7n2v7ms7q06xma1lmf9ry3v6f4pfnwlmz5lsf3a";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ac-html-bootstrap";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/6cf8aed547ca2390395dcf52d6c542b6944697af/recipes/ac-html-bootstrap";
sha256 = "0z71m6xws0k9smhsswaivpikr64mv0wh6klnmi5cwhwcqas6kdi1";
name = "ac-html-bootstrap";
};
@@ -388,7 +388,7 @@
sha256 = "0p18wxyyc1jmcwx9y5i77s25v4jszv7cmm4bkwm4dzhkxd33kh1f";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ac-html-csswatcher";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/fba8b9bf212e6fa389eae8394d0b3bbce9eb0f92/recipes/ac-html-csswatcher";
sha256 = "0jb9dnm2lxadrxssf0rjqw8yvvskcq4hys8c21shjyj3gkvwbfqn";
name = "ac-html-csswatcher";
};
@@ -409,7 +409,7 @@
sha256 = "1acm13n59sdgvvzicscxzrr5j1x5sa5x4rc4cnkbwb28nw5a5ysm";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ac-inf-ruby";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/1a72abe0fe1253149afb45b0d9e81b6846a926c0/recipes/ac-inf-ruby";
sha256 = "04jclf0yxz78x1fsaf5sh1p466947nqrcx337kyhqn0nkj3hplqr";
name = "ac-inf-ruby";
};
@@ -430,7 +430,7 @@
sha256 = "16qsj3wni4xhcrjx2rnxdzq6jb7jrl4bngi4an37vgdlrx3w8m6l";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ac-ispell";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/b41acb7387ebef9af2906fa16298b64d6431bfb0/recipes/ac-ispell";
sha256 = "1vsy2qjh60n5lavivpqhhcpg5pk8zz2r0wy1sb65capn841zdi67";
name = "ac-ispell";
};
@@ -451,7 +451,7 @@
sha256 = "19cb8kq8gmrplkxil22ahvbyq5cng1l2vh2lrfiyqpjsap7zfjz5";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ac-mozc";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/4b3f74039d397037e640cc371d24bdb60ac90bf1/recipes/ac-mozc";
sha256 = "1v3iiid8cq50i076q98ycks9m827xzncgxqwqs2rqhab0ncy3h0f";
name = "ac-mozc";
};
@@ -472,7 +472,7 @@
sha256 = "16f8hvdz6y8nsfj7094yrvw194ag3w1jvz81h287vcgcvmyb7wdf";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ac-octave";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/634bd324148d6b74e1098362e06dc512456cde31/recipes/ac-octave";
sha256 = "1g5s4dk1rcgkjn17jfw6g201pw0vfhqcx1nhigmnizpnzy0man9z";
name = "ac-octave";
};
@@ -493,8 +493,8 @@
sha256 = "0ca4viakvc09mvhk7d01pxnc3v3ydra6413asvdjx555njm9ic0f";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ac-php";
- sha256 = "1dlz4cv54ynl4ql5l2sa5lazlzq6rrlbz61k20l5lcljjwvj5xja";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/ac283f1b65c3ba6278e9d3236e5a19734e42b123/recipes/ac-php";
+ sha256 = "1wqwwgdln98snlq5msdx94b7985krvqfn264hxs1h94r85kgn1ba";
name = "ac-php";
};
packageRequires = [
@@ -514,6 +514,27 @@
license = lib.licenses.free;
};
}) {};
+ ac-php-core = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
+ melpaBuild {
+ pname = "ac-php-core";
+ version = "1.7.3";
+ src = fetchFromGitHub {
+ owner = "xcwen";
+ repo = "ac-php";
+ rev = "76f0f559905bfb63100aa5d8ddd4d567fff9e5bf";
+ sha256 = "0ca4viakvc09mvhk7d01pxnc3v3ydra6413asvdjx555njm9ic0f";
+ };
+ recipeFile = fetchurl {
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/ac283f1b65c3ba6278e9d3236e5a19734e42b123/recipes/ac-php-core";
+ sha256 = "0vk3jsxb7dgk5a6pap3bdqkqwpszil0rck1c3y0wyxrlj2y1jcvn";
+ name = "ac-php-core";
+ };
+ packageRequires = [];
+ meta = {
+ homepage = "https://melpa.org/#/ac-php-core";
+ license = lib.licenses.free;
+ };
+ }) {};
ac-racer = callPackage ({ auto-complete, cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild, racer }:
melpaBuild {
pname = "ac-racer";
@@ -525,7 +546,7 @@
sha256 = "0g7xbfsfqpmcay56y8xbmif52ccz430s3rjxf5bgl9ahkk7zgkzl";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ac-racer";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/e4318daf4dbb6864ee41f41287c89010fb811641/recipes/ac-racer";
sha256 = "1vkvh8y3ckvzvqxj4i2k6jqri94121wbfjziybli74qba8dca4yp";
name = "ac-racer";
};
@@ -546,7 +567,7 @@
sha256 = "13yghv7p6c91fn8mrxbwrb6ldk5n3b6nj6a7pwsvks1q73i1pl88";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ac-slime";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/cae2ac3513e371a256be0f1a7468e38e686c2487/recipes/ac-slime";
sha256 = "0mk3k1lcbqa16xvsbgk28x09vzqyaidqaqpq934xdbrwhdgwgckg";
name = "ac-slime";
};
@@ -567,7 +588,7 @@
sha256 = "1pzh5l8dybrrmglj55nbff6065pxlbx14501p3a1qx1wvf24g1sv";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ace-flyspell";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/1ea85eca9cf2df3f8c06709dfb44b339b8bdbc6c/recipes/ace-flyspell";
sha256 = "0f24qrpcvyg7h6ylyggn4zrbydci537iigshac1d8yywsr0j47gd";
name = "ace-flyspell";
};
@@ -588,7 +609,7 @@
sha256 = "0233ai62zhsy5yhv72016clygwp2pcg80y6kr4cjm2k1k2wwy7m9";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ace-isearch";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/344f0cf784a027cde196b7d766024fb415fa1968/recipes/ace-isearch";
sha256 = "0n8qf08z9n8c2sp5ks29nxcfks5mil1jj6wq348apda8safk36hm";
name = "ace-isearch";
};
@@ -609,7 +630,7 @@
sha256 = "1z82a0lrb61msamqpsy7rxcgs2nfhhckkk4zw0aw49l248p2nrgs";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ace-jump-buffer";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/31100b5b899e942de7796bcbf6365625d1b62574/recipes/ace-jump-buffer";
sha256 = "0hkxa0ps0v1hwmjafqbnyr6rc4s0w95igk8y3w53asl7f5sj5mpi";
name = "ace-jump-buffer";
};
@@ -630,7 +651,7 @@
sha256 = "1d4bxxcnjbdr6cjr3jmz2zrnzjv5pwrypbp4xqgqyv9rz02n7ac1";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ace-jump-helm-line";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/8925f3daa92ff39776b55642aa9ec0e49245c0c7/recipes/ace-jump-helm-line";
sha256 = "04q8wh6jskvbiq6y2xsp2ir23vgz5zw09rm127sgiqrmn0jc61b9";
name = "ace-jump-helm-line";
};
@@ -651,7 +672,7 @@
sha256 = "1bwvzh056ls2v7y26a0s4j5mj582dmds04lx4x6iqihs04ss74bb";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ace-jump-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/cae2ac3513e371a256be0f1a7468e38e686c2487/recipes/ace-jump-mode";
sha256 = "0yk0kppjyblr5wamncrjm3ym3n8jcl0r0g0cbnwni89smvpngij6";
name = "ace-jump-mode";
};
@@ -672,7 +693,7 @@
sha256 = "0yng6qayzqadk4cdviri84ghld4can35q134hm3n3j3vprhpbmca";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ace-jump-zap";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/3b435db3b79333a20aa27a72f33c431f0a019ba1/recipes/ace-jump-zap";
sha256 = "07bkmly3lvlbby2m13nj3m1q0gcnwy5sas7d6ws6vr9jh0d36byb";
name = "ace-jump-zap";
};
@@ -693,7 +714,7 @@
sha256 = "1mrlwkls80blispg5hdgnif42rck3iqhcm1f3khq14nm09yqwdk9";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ace-link";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/68032f40c0ce4170a22db535be4bfa7099f61f85/recipes/ace-link";
sha256 = "1jl805r2s3wa0xyhss1q28rcy6y2fngf0yfcrcd9wf8kamhpajk5";
name = "ace-link";
};
@@ -714,7 +735,7 @@
sha256 = "1d2g873zwq78ggs47954lccmaky20746wg0gafyj93d1qyc3m8rn";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ace-pinyin";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/10bb2de9c6b938fa12deff1e2748bfd0a345891a/recipes/ace-pinyin";
sha256 = "18gmj71zd0i6yx8ifjxsqz2v81jx0j37f5kxllf31w7fj32ymbkc";
name = "ace-pinyin";
};
@@ -735,7 +756,7 @@
sha256 = "1qiiivkwa95bhyym8ly7fnwwglc9dcifkyr314bsq8m4rp1mgry4";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ace-popup-menu";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/53742e2242101c4b3b3901f5c74e24facf62c7d6/recipes/ace-popup-menu";
sha256 = "1cq1mpv7v98bqrpsm598krq1741b6rwih71cx3yjifpbagrv4m5s";
name = "ace-popup-menu";
};
@@ -756,7 +777,7 @@
sha256 = "07mcdzjmgrqdvjs94f2n5bkrf5vrq2fwzz256wbm3wzqxqkfy1q6";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ace-window";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/42fe131d3c2ea498e4df30ba539a6b91c00f5b07/recipes/ace-window";
sha256 = "1k0x8m1phmvgdxb5aj841iai9q96a5lfq8i4b5vnlbc3w888n3xa";
name = "ace-window";
};
@@ -777,7 +798,7 @@
sha256 = "0hib4a8385q2czi1yqs0hwnva2xi7kw0bdfnrgha1hrl30rilp2f";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ack-menu";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/8ff331ed45e5b7697e4862e723408602ecc98bc7/recipes/ack-menu";
sha256 = "1d2kw04ndxji2qjcm1b65qnxpp08zx8gbia8bl6x6mnjb2isc2d9";
name = "ack-menu";
};
@@ -798,7 +819,7 @@
sha256 = "0zybch8hz3mj63i0pxynb4d76ywqcy7b4fsa4hh71c2kb0bnczb3";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/actionscript-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/2c11e74f2156f109b713380cebf83022d7159d4a/recipes/actionscript-mode";
sha256 = "1dkiay9jmizvslji5kzab4dxm1dq0jm8ps7sjq6710g7a5aqdvwq";
name = "actionscript-mode";
};
@@ -819,7 +840,7 @@
sha256 = "0kp2aafjhqxz3mjr9hkkss85r4n51chws5a2qj1xzb63dh36liwm";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/adoc-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/70a3b6a7b43c76b0ce3b350f5c8d657bf4f7fb04/recipes/adoc-mode";
sha256 = "0wgagcsh0fkb51fy17ilrs20z2vzdpmz97vpwijcfy2b9rypxq15";
name = "adoc-mode";
};
@@ -840,7 +861,7 @@
sha256 = "1y9bw2vkl952pha2dsi18swyr94mihgwlcg5m8hg4d5bfg2fzcb2";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/aes";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/33ca3106852f82624b36c7e3f03f5c0c620f304f/recipes/aes";
sha256 = "11vl9x3ldrv7q7rd29xk4xmlvfxs0m6iys84f6mlgf00190l5r5v";
name = "aes";
};
@@ -861,7 +882,7 @@
sha256 = "15kp99vwyi7hb1jkq3lwvqzw3v62ycixsq6y4pd1x0nn2v5p5m5r";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ag";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/67f410ac3a58a038e194bcf174bc0a8ceceafb9a/recipes/ag";
sha256 = "1r4ai09vdckkg4h4i7dp781qqmm4kky53p4q8azp3n2c78i1vz6g";
name = "ag";
};
@@ -882,7 +903,7 @@
sha256 = "03mpg4ksvcc5zs540rgnf3gssyx97aiiv60lwdn3934al4125vnq";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/aggressive-indent";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/1e6aed365c42987d64d0cd9a8a6178339b1b39e8/recipes/aggressive-indent";
sha256 = "1qi8jbr28gax35siim3hnnkiy8pa2vcrzqzc6axr98wzny46x0i2";
name = "aggressive-indent";
};
@@ -903,7 +924,7 @@
sha256 = "02nkcin0piv7s93c9plhy361dbqr78m0gd19myc7qb7gnm36kzpn";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ahk-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/d8674b54ad5e17d1da1e499c7d8113f8acd8fd5d/recipes/ahk-mode";
sha256 = "066l4hsb49wbyv381qgn9k4hn8gxlzi20h3qaim9grngjj5ljbni";
name = "ahk-mode";
};
@@ -924,7 +945,7 @@
sha256 = "0blrpqn8wy9pwzikgzb0v6x4hk7axv93j4byfci62fh1905zfkkb";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/airline-themes";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/addeb923176132a52807308fa5e71d41c9511802/recipes/airline-themes";
sha256 = "0jkhb6nigyjmwqny7g59h4ssfy64vl3qnwcw46wnx5k9i73cjyih";
name = "airline-themes";
};
@@ -945,7 +966,7 @@
sha256 = "1y5nmcrlsmniv37x7w6yhihmb335n82d96yz7xclhwg59n652pjx";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/alchemist";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/6616dc61d17c5bd89bc4d226baab24a1f8e49b3e/recipes/alchemist";
sha256 = "18jxw0zb7y34qbm4bcpfpb2656f0h9grmrbfskgp4ra4q5q3n369";
name = "alchemist";
};
@@ -966,7 +987,7 @@
sha256 = "1pk5dgjqrynap85700wdivq41bdqvwd5hkfimgmcd48l5lhj9pbj";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/alect-themes";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/84c25a290ae4bcc4674434c83c66ae128e4c4282/recipes/alect-themes";
sha256 = "04fq65qnxlvl5nc2q037c6yb4nf422dfw2913gv6zfh9rdmxsks8";
name = "alect-themes";
};
@@ -987,7 +1008,7 @@
sha256 = "1vpc3q40m6dcrslki4bg725j4kv6c6xfxwjjl1ilg7la49fwwf26";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/alert";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/113953825ac4ff98d90a5375eb48d8b7bfa224e7/recipes/alert";
sha256 = "0x3cvczq09jvshz435jw2fjm69457x2wxdvvbbjq46nfnybhi118";
name = "alert";
};
@@ -1008,7 +1029,7 @@
sha256 = "1q49gfs98djwjxw2sr8q08jf5glf9d3ks9014gjjwa1dpf98mpy3";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/amd-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/e4d6e9935e4935c9de769c7bf1c1b6dd256e10da/recipes/amd-mode";
sha256 = "17ry6vm5xlmdfs0mykdyn05cik38yswq5axdgn8hxrvvb6f58d06";
name = "amd-mode";
};
@@ -1038,7 +1059,7 @@
sha256 = "1mwdlvpyxmnsf3zkqlcjln6ryd88czw5hdssz1acg2yi24k4j44d";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/anaconda-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/e03b698fd3fe5b80bdd24ce01f7fba28e9da0da8/recipes/anaconda-mode";
sha256 = "0gz16aam4zrm3s9ms13h4qcdflf55506kgkpyncq3bi54cvv8n1r";
name = "anaconda-mode";
};
@@ -1059,7 +1080,7 @@
sha256 = "0fnxxvw81c34zhmiyr5awl92wr5941n4gklvzjc4jphaf2nhkg4w";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/anaphora";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/8505db1945071a15ba0f2bb74b58d4a6875ca7d6/recipes/anaphora";
sha256 = "1wb7fb3pc4gxvpjlm6gjbyx0rbhjiwd93qwc4vfw6p865ikl19y2";
name = "anaphora";
};
@@ -1080,7 +1101,7 @@
sha256 = "0gjynmzqlqz0d57fb4np6xrklqdn11y4vjbm18rlpvmk92bgw740";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/android-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/77633aa340803a433570327943fbe31b396f4355/recipes/android-mode";
sha256 = "1nqrvq411yg4b9xb5cvc7ai7lfalwc2rfhclzprvymc4vxh6k4cc";
name = "android-mode";
};
@@ -1101,7 +1122,7 @@
sha256 = "1798nv4djhxzbin68zf6w7dbfm9sc39d0kygky52ii36arg5r1zp";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/angular-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/7b120c7f97e8d313387d2e9d9210e7fcdd10523b/recipes/angular-mode";
sha256 = "1bwfmjldnxki0lqi3ys6r2a3nlhbwm1dibsg2dvzirq8qql02w1i";
name = "angular-mode";
};
@@ -1122,7 +1143,7 @@
sha256 = "0h9i0iimanbvhbqy0cj9na335rs961pvhxjj4k8y53qc73xm102a";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/angular-snippets";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/96a0ad5fdbc52f803846e580856fb9c58181c020/recipes/angular-snippets";
sha256 = "057phgizn1c6njvdfigb23ljs31knq247gr0rcpqfrdaxsnnzm5c";
name = "angular-snippets";
};
@@ -1143,7 +1164,7 @@
sha256 = "18ninv1z8zdqpqnablbds4zgxgk4c1nmznlfdicj6qs738c5c30s";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/annotate";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/3aae88b8e3b080501195d291012deab31aaf35f7/recipes/annotate";
sha256 = "1ajykgara2m713blj2kfmdz12fzm8jw7klyakkyi6i3c3a9m44jy";
name = "annotate";
};
@@ -1164,7 +1185,7 @@
sha256 = "1ppq3kszzj2fgr7mwj565bjs8bs285ymy384cnnw7paddgcr9z02";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/annoying-arrows-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/8b528544841995045fb1f8344aaaa38946bb3915/recipes/annoying-arrows-mode";
sha256 = "13bwqv3mv7kgi1gms58f5g03q5g7q98n4vv6n28zqmppxm5z33s7";
name = "annoying-arrows-mode";
};
@@ -1185,7 +1206,7 @@
sha256 = "1hbddxarr40ygvaw4pwaivq2l4f0brszw73w1r50lkjlggb7bl3g";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ansi";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/7fabdb05de9b8ec18a3a566f99688b50443b6b44/recipes/ansi";
sha256 = "0b5xnv6z471jm53g37njxin6l8yflsgm80y4wxahfgy8apipcq89";
name = "ansi";
};
@@ -1206,7 +1227,7 @@
sha256 = "03d240jngxw51ybrsjw8kdxygrr0ymdckzwga2jr1bqf26v559j2";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ansible";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/8e45bf58b980ff542a5e887707a6361eb5ac0492/recipes/ansible";
sha256 = "1xdc05fdglqfbizra6s1zl6knnvaq526dkxqnw9g7w269j8f4z8g";
name = "ansible";
};
@@ -1227,7 +1248,7 @@
sha256 = "05z379k6a7xq9d2zapf687x3f37jpmh6kfghpgxdd18v0hzca8ds";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ansible-doc";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/1daaaa7462f0b83c15ed9d9e7e6d0ee94434b8e9/recipes/ansible-doc";
sha256 = "03idvnn79fr9id81aivkm7g7cmlsg0c520wcq4da8g013xvi342w";
name = "ansible-doc";
};
@@ -1248,7 +1269,7 @@
sha256 = "06cn81sksvl88l1g3cfgp1kf8xzfv00b31j2rf58f45zlbl5ckv9";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/anti-zenburn-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/6f6f803dc99a1b1fdb5b4e79f1c9cf72b702d091/recipes/anti-zenburn-theme";
sha256 = "1sp9p6m2jy4m9fdn1hz25cmasy0mwwgn46qmvm92i56f5x6jlzzk";
name = "anti-zenburn-theme";
};
@@ -1269,7 +1290,7 @@
sha256 = "1z6l72dn98icqsmxb3rrj6l63ijc3xgfa3vdl19yqa2rfy6ya721";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/anyins";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/a367da2cb71fc0b144f9e608dc4857624991f19c/recipes/anyins";
sha256 = "0ncf3kn8rackcidkgda2zs60km3hx87rwr9daj7ksmbb6am09s7c";
name = "anyins";
};
@@ -1286,10 +1307,10 @@
src = fetchgit {
url = "http://repo.or.cz/r/anything-config.git";
rev = "6b9718fba257e6c2912ba70f9895251ab1926928";
- sha256 = "08f7qxwnvykmxwrii3nv1fnai4mqs2ir5419k0llj6mkrik0gfc6";
+ sha256 = "040znq4qv6rqjw05klriasysvsx6s6xn00ssc3acbqdqjgjk8l2a";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/anything";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/e1700e86cb35617178f5d7c61c88718ac7849f9b/recipes/anything";
sha256 = "13pmks0bsby57v3vp6jcvvzwb771d4qq62djgvrw4ykxqzkcb8fj";
name = "anything";
};
@@ -1310,7 +1331,7 @@
sha256 = "01lw9159axg5w9bpdy55m4zc902zmsqvk213ky1nmgnln0fvq3rd";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/anything-exuberant-ctags";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/66cae648d534468e5e9f125679847fb876935f68/recipes/anything-exuberant-ctags";
sha256 = "0p0jq2ggdgaxv2gd9m5iza0y3mjjc82xmgp899yr15pfffa4wihk";
name = "anything-exuberant-ctags";
};
@@ -1331,7 +1352,7 @@
sha256 = "1834yj2vgs4dasdfnppc8iw8ll3yif948biq9hj0sbpsa2d8y44k";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/anything-replace-string";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/39b7f3a8de2f7728b374c09a1387beb3f7595d2e/recipes/anything-replace-string";
sha256 = "1fagi6cn88p6sf1yhx1qsi7nw9zpyx9hdfl66iyskqwddfvywp71";
name = "anything-replace-string";
};
@@ -1352,7 +1373,7 @@
sha256 = "1bcvin2694ypqgiw0mqk82riq7gw6ra10vbkzng1yp9jp2qr6wmm";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/anything-sage";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/07be4b11bbddb376e11616525e7b226c5a9f2296/recipes/anything-sage";
sha256 = "1878vj8hzrwfyd2yvxcm0f1vm9m0ndwnj0pcq7j8zm9lxj0w48p3";
name = "anything-sage";
};
@@ -1365,15 +1386,15 @@
anzu = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "anzu";
- version = "0.60";
+ version = "0.61";
src = fetchFromGitHub {
owner = "syohex";
repo = "emacs-anzu";
- rev = "dde4d83cfa4887db7deaf74232c9e051afb33050";
- sha256 = "1dxaf68przg0hh0p1zhxsq2dysp3ln178yxhbqalxw67bjy8ikny";
+ rev = "324c3e2db48a3036cce95988e656a99154821c2d";
+ sha256 = "015d03w88w79iy28ary7iif20qrizi0j5hpg5pycjzsg69ar1dps";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/anzu";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/04ac359d02d91725c8fc451b17bc2f06a7fe57a5/recipes/anzu";
sha256 = "0i2ia0jisj31vc2pjx9bhv8jccbp24q7c406x3nhh9hxjzs1f41i";
name = "anzu";
};
@@ -1394,7 +1415,7 @@
sha256 = "13j2r4nx2x6j3qx50d5rdnqd8nl5idxdkhizsk7ccz3v2607fbyy";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/apples-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/5ca765a6a2f312f585624ec8b82dc9eb6b9bbc0c/recipes/apples-mode";
sha256 = "05ssnxs9ybc26jhr69xl9jpb41bz1688minmlc9msq2nvyfnj97s";
name = "apples-mode";
};
@@ -1415,7 +1436,7 @@
sha256 = "1wyz8jvdy4m0cn75mm3zvxagm2gl10q51479f91gnqv14b4rndfc";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/aproject";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/de10c48976352f273e8363c2f6fa60602ee86c9b/recipes/aproject";
sha256 = "0v3gx2mff2s7knm69y253pm1yr4svy8w00pqbn1chrvymb62jhp2";
name = "aproject";
};
@@ -1436,7 +1457,7 @@
sha256 = "133c1n4ra7z3vb6y47400y71a6ac19pyji0bgd4kr9fcbx0flx91";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/artbollocks-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/22b237ab91ddd3c17986ea12e6a32f2ce62d3a79/recipes/artbollocks-mode";
sha256 = "0dlnxicn6nzyiz44y92pbl4nzr9jxfb9a99wacjrwq2ahdrwhhjp";
name = "artbollocks-mode";
};
@@ -1457,7 +1478,7 @@
sha256 = "1yvirfmvf6v5khl7zhx2ddv9bbxnx1qhwfzi0gy2nmbxlykb6s2j";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/arview";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/31574cd756f4f93e2c6bcad5eca33a3294cccd54/recipes/arview";
sha256 = "0d935lj0x3rbar94l7288xrgbcp1wmz6r2l0b7i89r5piczyiy1y";
name = "arview";
};
@@ -1478,7 +1499,7 @@
sha256 = "1s973vzivibaqjb8acn4ylrdasxh17jcfmmvqp4wm05nwhg75597";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/asilea";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/858e673c66e876d80f41d47d307c944d7bdb147d/recipes/asilea";
sha256 = "1lb8nr6r6yy06m4pxg8w9ja4zv8k5xwhl95v2wv95y1qwhgnwg3j";
name = "asilea";
};
@@ -1491,15 +1512,15 @@
assess = callPackage ({ dash, emacs, fetchFromGitHub, fetchurl, lib, m-buffer, melpaBuild }:
melpaBuild {
pname = "assess";
- version = "0.2";
+ version = "0.3.2";
src = fetchFromGitHub {
owner = "phillord";
repo = "assess";
- rev = "387e5cfe2f010fb3da7f1b670fc27c19ace99b4a";
- sha256 = "1qfrrw6vgz93xiyy0xiaw0hh97lmv3365gm6a9cr5g0h4012z8pq";
+ rev = "4a5eee8ba9db3e61b860b8b70236e385d3cf344a";
+ sha256 = "0255sa5fzg069n1pf09sn5nypqw0ll5rmxfigw30xhh95w40nx8y";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/assess";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/6f917a34506193f2674b195569dfd3c13ba62c1d/recipes/assess";
sha256 = "0xj3f48plwxmibax00qn15ya7s0h560xzwr8nkwl5r151v1mc9rr";
name = "assess";
};
@@ -1520,7 +1541,7 @@
sha256 = "1dgw075pdzfrb5wjba7iwal8crxpxm642fkfwj8389a5hpsj7v2n";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/async";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/6a0fe448e82f42cad0fdaa40c964032892fedd83/recipes/async";
sha256 = "063ci4f35x1zm9ixy110i5ds0vsrcafpixrz3xkvpnfqdn29si3f";
name = "async";
};
@@ -1541,7 +1562,7 @@
sha256 = "1xyn8qiikng6vf5rbpfqz9ac10c69aip0w6v9l46w0qxsy8svyaj";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/atom-one-dark-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/3ba1c4625c9603372746a6c2edb69d65f0ef79f5/recipes/atom-one-dark-theme";
sha256 = "0wwnkhq7vyysqiqcxc1jsn98155ri4mf4w03k7inl1f8ffpwahvw";
name = "atom-one-dark-theme";
};
@@ -1562,7 +1583,7 @@
sha256 = "0dqr1yrzf7a8655dsbcch4622rc75j9yjbn9zhkyikqjicddnlda";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/aurel";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/d1612acd2cf1fea739739608113923ec51d307e9/recipes/aurel";
sha256 = "13zyi55ksv426pcksbm3l9s6bmp102w7j1xbry46bc48al6i2nnl";
name = "aurel";
};
@@ -1583,7 +1604,7 @@
sha256 = "0ns1xhpk1awbj3kv946dv11a99p84dhm54vjk72kslxwx42nia28";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/aurora-config-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/7fabdb05de9b8ec18a3a566f99688b50443b6b44/recipes/aurora-config-mode";
sha256 = "1hpjwidqmjxanijsc1imc7ww9abbylmkin1p0846fbz1hz3a603c";
name = "aurora-config-mode";
};
@@ -1604,7 +1625,7 @@
sha256 = "1b6g7qvrxv6gkl4izq1y7k0x0l7izyfnpki10di5vdv3jp6xg9b2";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/auth-password-store";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/0f4d2a28373ba93da5b280ebf40c5a3fa758ea11/recipes/auth-password-store";
sha256 = "118ll12dhhxmlsp2mxmy5cd91166a1qsk406yhap5zw1qvyg58w5";
name = "auth-password-store";
};
@@ -1625,7 +1646,7 @@
sha256 = "05crb8cm7s1nggrqq0xcs2xiabjw3vh44fnkdiilq1c5cnajdcrj";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/auto-compile";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/e00dcd4f8c59c748cc3c85af1607dd19b85d7813/recipes/auto-compile";
sha256 = "1cdv41hg71mi5ixxi4kiizyg03xai2gyhk0vz7gw59d9a7482yks";
name = "auto-compile";
};
@@ -1646,7 +1667,7 @@
sha256 = "04i9b11iksg6acn885wl3qgi5xpsm3yszlqmd2x21yhprndlz7gb";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/auto-complete";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/083fb071191bccd6feb3fb84569373a597440fb1/recipes/auto-complete";
sha256 = "1c4ij5bnclg94jdzhkqvq2vxwv6wvs051mbki1ibjm5f2hlacvh3";
name = "auto-complete";
};
@@ -1667,7 +1688,7 @@
sha256 = "1kp2l1cgzlg2g3wllz4gl1ssn4lnx2sn26xqigfrpr8y5rj2bsfj";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/auto-complete-clang-async";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/23aa24b025216359c5e600eee2f2cd4ecc7556e3/recipes/auto-complete-clang-async";
sha256 = "1jj0jn1v3070g7g0j5gvpybv145kki8nsjxqb8fjf9qag8ilfkjh";
name = "auto-complete-clang-async";
};
@@ -1688,7 +1709,7 @@
sha256 = "1fqgyg986fg1dzac5wa97bx82mfddqb6qrfnpr3zksmw3vgykxr0";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/auto-complete-exuberant-ctags";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/1cc9786ed8cea2461b592f860d8e2a0897c57068/recipes/auto-complete-exuberant-ctags";
sha256 = "1i2s3ycc8jafkzdsz3kbvx1hh95ydi5s6rq6n0wzw1kyy3km35gd";
name = "auto-complete-exuberant-ctags";
};
@@ -1709,7 +1730,7 @@
sha256 = "18bf1kw85mab0zp7rn85cm1nxjxg5c1dmiv0j0mjwzsv8an4px5y";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/auto-complete-nxml";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/c89dcbf03a802a4361e44174a332a312e352be36/recipes/auto-complete-nxml";
sha256 = "0viscr5k1carn9vhflry16kgihr6fvh6h36b049pgnk6ww085k6a";
name = "auto-complete-nxml";
};
@@ -1730,7 +1751,7 @@
sha256 = "1hf2f903hy9afahrgy2fx9smgn631drs6733188zgqi3nkyizj26";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/auto-complete-pcmp";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/f5c53a8aeaaab23e032a8e7cb5cad7e531a1662c/recipes/auto-complete-pcmp";
sha256 = "1mpgkwj8jwpvxphlm6iaprwjrldmihbgg97jav0fbm1kjnm4azna";
name = "auto-complete-pcmp";
};
@@ -1751,7 +1772,7 @@
sha256 = "0l49ciic7g30vklxq6l1ny3mz87l5p8qc30rmkjvkzvg8r52ksn3";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/auto-complete-sage";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/f1cd78dcd58d559c47873f8fcfcab089a8493dd6/recipes/auto-complete-sage";
sha256 = "02sxbir3arvmnkvxgndlkln9y05jnlv6i8czd6a0wcxk4nj43lq1";
name = "auto-complete-sage";
};
@@ -1772,7 +1793,7 @@
sha256 = "191294k92qp8gmfypf0q8j8qrym96aqikzvyb9p03wqvbr3r1dsk";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/auto-dictionary";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/1711d710ac09fe407fde89ee351ccdcb78555d35/recipes/auto-dictionary";
sha256 = "1va485a8lxvb3507kr83cr6wpssxnf8y4l42mamn9daa8sjx3q16";
name = "auto-dictionary";
};
@@ -1793,7 +1814,7 @@
sha256 = "1hlsgsdxpx42kmqkjgy9b9ldz5i4dbi879v87pjd2qbkj8iywb6y";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/auto-indent-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/49af78177278e7072c70fde0eaa5bb82490ebe9d/recipes/auto-indent-mode";
sha256 = "1nk78p8lqs8cx90asfs8iaqnwwyy8fi5bafaprm9c0nrxz299ibz";
name = "auto-indent-mode";
};
@@ -1814,7 +1835,7 @@
sha256 = "05llpa6g4nb4qswmcn7j3bs7hnmkrkax7hsk7wvklr0wrljyg9a2";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/auto-package-update";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/78f549a299a06941edce13381f597f3a61e8c723/recipes/auto-package-update";
sha256 = "0fdcniq5mrwbc7yvma4088r0frdfvc2ydfil0s003faz0nrjcp8k";
name = "auto-package-update";
};
@@ -1835,7 +1856,7 @@
sha256 = "1h8zsgw30axprs7a5kkygbhvilillzazxgqz01ng36il65fi28s6";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/auto-shell-command";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/ea710bfa77fee7c2688eea8258ca9d2105d1896e/recipes/auto-shell-command";
sha256 = "1i78fh72i8yv91rnabf0vs78r43qrjkr36hndmn5ya2xs3b1g41j";
name = "auto-shell-command";
};
@@ -1856,7 +1877,7 @@
sha256 = "0n3r7j83csby2s7284hy5pycynazyrkljxkn6xqn08gvxbbbdpdq";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/auto-yasnippet";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/d33c0aee6a5d27217bbae28fc8f448c3badc8a4b/recipes/auto-yasnippet";
sha256 = "02281gyy07cy72a29fjsixg9byqq3izb9m1jxv98ni8pcy3bpsqa";
name = "auto-yasnippet";
};
@@ -1877,7 +1898,7 @@
sha256 = "1pf2mwnicj5x2kksxwmrzz2vfxj9y9r6rzgc1fl8028mfrmrmg8s";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/autodisass-java-bytecode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/a094845521d76754a29435012af5fba9f7975a8e/recipes/autodisass-java-bytecode";
sha256 = "1k19nkbxnysm3qkpdhz4gv2x9nnrp94xl40x84q8n84s6xaan4dc";
name = "autodisass-java-bytecode";
};
@@ -1898,7 +1919,7 @@
sha256 = "1hyp49bidwc53cr25wwwyzcd0cbbqzxkfcpnccimphv24qfsai85";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/autodisass-llvm-bitcode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/657e8f6bd0e44f11db8480ca42fb29d85fc3ec29/recipes/autodisass-llvm-bitcode";
sha256 = "0bh73nzll9jp7kiqfnb5dwkipw85p3c3cyq58s0nghig02z63j01";
name = "autodisass-llvm-bitcode";
};
@@ -1919,7 +1940,7 @@
sha256 = "0g6kd1r0wizamw26bhp5jkvpsd98rcybkfchc622b9v5b89a07nq";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/autopair";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/091dcc3775ec2137cb61d66df4e72aca4900897a/recipes/autopair";
sha256 = "161qhk8rc1ldj9hpg0k9phka0gflz9vny7gc8rnylk90p6asmr28";
name = "autopair";
};
@@ -1940,7 +1961,7 @@
sha256 = "0rq9ab264565z83cly743nbhrd9m967apmnlhqr1gy8dm4hcy7nm";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/avy";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/77fac7a702d4086fb860514e377037acedc60412/recipes/avy";
sha256 = "0gjq79f8jagbngp0shkcqmwhisc3hpgwfk34kq30nb929nbnlmag";
name = "avy";
};
@@ -1961,7 +1982,7 @@
sha256 = "1564yv9330vjymw3xnikc2lz20f65n40fbl8m1zs1gp4nlgzkk38";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/avy-menu";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/2f0b4cfb30c405d44803b36ebcaccef0cf87fe2d/recipes/avy-menu";
sha256 = "1g2bsm0jpig51jwn9f9mx6z5glb0bn4s21194xam768qin0rf4iw";
name = "avy-menu";
};
@@ -1982,7 +2003,7 @@
sha256 = "0s6m44b49jm5cnrx1pvk7rfw3zhwiw5xasdlgmlvv7wws7m5snd9";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/avy-migemo";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/6a02db29eb3e4b76b4a9cdbc966df5a1bd35dec0/recipes/avy-migemo";
sha256 = "1zvgkhma445gj1zjl8j25prw95bdpjbvfy8yr0r5liay6g2hf296";
name = "avy-migemo";
};
@@ -2003,7 +2024,7 @@
sha256 = "0lmv34pi9qdh76fi3w4lrfyfhzr824nsiif4nyjvpnmrabxgk309";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/avy-zap";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/10a2a57c78ac1d8ab621031caa21e8574daeb9a0/recipes/avy-zap";
sha256 = "1zbkf21ggrmg1w0xaw40i3swgc1g4fz0j8p0r9djm9j120d94zkx";
name = "avy-zap";
};
@@ -2024,7 +2045,7 @@
sha256 = "0px1xggk6qyrwkma1p3d7b4z2id2gbrsxkliw3nwc1q4zndg1zr7";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/babel";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/b0d748fa06b3cbe336cb01a7e3ed7b0421d885cc/recipes/babel";
sha256 = "0sdpp4iym61ni32zv75n48ylj4jib8ca6n9hyqwj1b7nqg76mm1c";
name = "babel";
};
@@ -2045,7 +2066,7 @@
sha256 = "0hmn3jlsqgpc602lbcs9wzw0hgr5qpjdcxi2hjlc1cp27ilyscnf";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/back-button";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/c9db386ab3910940addae6e925b2ac17e64e0f87/recipes/back-button";
sha256 = "0vyhvm445d0rs14j5xi419akk5nd88d4hvm4251z62fmnvs50j85";
name = "back-button";
};
@@ -2072,7 +2093,7 @@
sha256 = "1plh7i4zhs5p7qkv7p7lnfrmkszn8b3znwvbxgp7wpxay5safc5j";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/badwolf-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/01f3deade0759830ed2e70e00e596915be5f5c11/recipes/badwolf-theme";
sha256 = "03plkzpmlh0pgfp1c9padsh4w2g23clsznym8x4jabxnk0ynhq41";
name = "badwolf-theme";
};
@@ -2093,7 +2114,7 @@
sha256 = "11rlmrjdpa3vnf0h9vcd75946q9jyf1mpbm7h12hmpj6g2pavgdd";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/bash-completion";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/8b528544841995045fb1f8344aaaa38946bb3915/recipes/bash-completion";
sha256 = "0l41yj0sb87i27hw6dh35l32hg4qkka6r3bpkckjnfm0xifrd9hj";
name = "bash-completion";
};
@@ -2114,7 +2135,7 @@
sha256 = "1xvxz9sk9l57a4kiiavxxdp0v241mfgiy2lg5ilacq1cd6xrrhky";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/bbcode-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/acc9b816796b9f142c53f90593952b43c962d2d8/recipes/bbcode-mode";
sha256 = "0ixxavmilr6na56yc148prbh3nlhcwir6rxqvh332cr8vr9gmp89";
name = "bbcode-mode";
};
@@ -2135,7 +2156,7 @@
sha256 = "17nbnkg0zn6p89r27mk9hl6qhv6xscwdsq8iyikdw03svpr16lnp";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/bbdb-";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/01e7a8cc1dde506cb2fcfd9270f15dc61c43ec17/recipes/bbdb-";
sha256 = "1vzbalcchay4pxl9f1sxg0zclgc095f59dlj15pj0bqq61sbl9jf";
name = "bbdb-";
};
@@ -2156,7 +2177,7 @@
sha256 = "0fg72qnb40djyciy4gzj359lqlcbbrq0indbkzd0dj09zipkx0df";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/bbdb-vcard";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/dd5d9027c49beae89f78d2a30dfa4bd070dff1bd/recipes/bbdb-vcard";
sha256 = "1kn98b7mh9a28933r4yl8qfl9p92rpix4vkp71sar9cka0m71ilj";
name = "bbdb-vcard";
};
@@ -2177,7 +2198,7 @@
sha256 = "1zkh7dcas80wwjvigl27wj8sp4b5z6lh3qj7zkziinwamwnxbdbs";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/bbdb2erc";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/04867a574773e8794335a2664d4f5e8b243f3ec9/recipes/bbdb2erc";
sha256 = "0k1f6mq9xd3568vg01dqqvcdbdshbdsi4ivkjyxis6dqfnqhlfdd";
name = "bbdb2erc";
};
@@ -2198,7 +2219,7 @@
sha256 = "01d10algmi9a4xd7mzf7n3zxfs2qf5as66wx17mff5cd8dahxj1q";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/beeminder";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/7fabdb05de9b8ec18a3a566f99688b50443b6b44/recipes/beeminder";
sha256 = "1cb8xmgsv23b464hpchm9f9i64p3fyf7aillrwk1aa2l1008kyww";
name = "beeminder";
};
@@ -2219,7 +2240,7 @@
sha256 = "1agrci37bni1vfkxg171l53fvsnjdryhf05v54wj07jngnwf3cw9";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/beginend";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/31c1157d4fd9e47a780bbd91075252acdc7899dd/recipes/beginend";
sha256 = "1y81kr9q0zrsr3c3s14rm6l86y5wf1a0kia6d98112fy4fwdm7kq";
name = "beginend";
};
@@ -2240,7 +2261,7 @@
sha256 = "1rxznx2l0cdpiz8mad8s6q17m1fngpgb1cki7ch6yh18r3qz8ysr";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/better-defaults";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/7bb729c1ad8602a5c0c27e81c9442981a54a924a/recipes/better-defaults";
sha256 = "13bqcmx2gagm2ykg921ik3awp8zvw5d4lb69rr6gkpjlqp7nq2cm";
name = "better-defaults";
};
@@ -2261,7 +2282,7 @@
sha256 = "0skg8wcgdfzd59ay4fbbbdd258cm8q7v321iml46bdipzk0r5lnw";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/biblio";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/c5fbaa8c59b0e64d13beb0e0f18b0734afa84f51/recipes/biblio";
sha256 = "0ym7xvcfd7hh3qdpfb8zpa7w8s4lpg0vngh9d0ns3s3lnhz4mi0g";
name = "biblio";
};
@@ -2282,7 +2303,7 @@
sha256 = "0skg8wcgdfzd59ay4fbbbdd258cm8q7v321iml46bdipzk0r5lnw";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/biblio-core";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/f4f086d3e8fd6a95ce198e148cd3ede35dd73fb8/recipes/biblio-core";
sha256 = "0zpfamrb2gka41h834a05hxdbw4h55777kh6rhjikjfmy765nl97";
name = "biblio-core";
};
@@ -2303,7 +2324,7 @@
sha256 = "07vwg0bg719gb8ln1n5a33103903vvrphnkbvvfn43904pkrf14w";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/bind-key";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/d39d33af6b6c9af9fe49bda319ea05c711a1b16e/recipes/bind-key";
sha256 = "1qw2c27016d3yfg0w10is1v72y2jvzhq07ca4h6v17yi94ahj5xm";
name = "bind-key";
};
@@ -2316,15 +2337,15 @@
bind-map = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "bind-map";
- version = "1.0.4";
+ version = "1.1.0";
src = fetchFromGitHub {
owner = "justbur";
repo = "emacs-bind-map";
- rev = "6f84c0254f9ef7580ee32fb66190cc694cc05629";
- sha256 = "047qzylycx3r06dd0q9q9f37pvfigmlv59gi3wqvlg6k3gcmdvy0";
+ rev = "ffe5e636178ab9878fa8213fd1a1d4862ccb3d5f";
+ sha256 = "1h07s8g4vpq6c8sl5m6vxvd598iks160bksv0wn51680gh05f0pa";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/bind-map";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/f58800af5965a6e7c9314aa00e971196ea0d036e/recipes/bind-map";
sha256 = "1jzkp010b4vs1bdhccf5igmymfxab4vxs1pccpk9n5n5a4xaa358";
name = "bind-map";
};
@@ -2345,7 +2366,7 @@
sha256 = "0pmpg54faq0l886f2cmnmwm28d2yfg8adk7gp7623gx0ifggn332";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/bing-dict";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/5653d2b6c2a9b33cfed867e7f6e552d4ed90b181/recipes/bing-dict";
sha256 = "0s5pd08rcnvmgi1hw17xbzvswlv0yni6h2h2gccrjmf6izi8whh1";
name = "bing-dict";
};
@@ -2366,7 +2387,7 @@
sha256 = "1r3f5d67x257g8kvdbdsl4w3y1dvc1d6s9x8bygbkvyahfi5m5hn";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/birds-of-paradise-plus-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/3932853232c269f158806aebe416b456c752a9bb/recipes/birds-of-paradise-plus-theme";
sha256 = "0vdv2siy30kf1qhzrc39sygjk17lwm3ix58pcs3shwkg1y5amj3m";
name = "birds-of-paradise-plus-theme";
};
@@ -2376,6 +2397,27 @@
license = lib.licenses.free;
};
}) {};
+ bnfc = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
+ melpaBuild {
+ pname = "bnfc";
+ version = "0.4";
+ src = fetchFromGitHub {
+ owner = "jmitchell";
+ repo = "bnfc-mode";
+ rev = "1b58df1dd0cb9b81900632fb2843a03b94f56fdb";
+ sha256 = "0lmqrcy80nw6vmf81kh6q39x8pwhzrj6lbk31xpl8mvwnpqaykmn";
+ };
+ recipeFile = fetchurl {
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/7871b6372a391ace76edea40c6f92ceb10b70bf9/recipes/bnfc";
+ sha256 = "0h6qhyi7vcikg7zhv8lywdz033kp27a8z1ymq5wgs4aqs184igm6";
+ name = "bnfc";
+ };
+ packageRequires = [ emacs ];
+ meta = {
+ homepage = "https://melpa.org/#/bnfc";
+ license = lib.licenses.free;
+ };
+ }) {};
bog = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "bog";
@@ -2387,7 +2429,7 @@
sha256 = "0414kdwgvmz0bmbaaz7zxf83rdjzmzcvvk5b332c679hk0b9kxg7";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/bog";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/19fd0bf2f8e52c79120c492a6dcabdd51b465d35/recipes/bog";
sha256 = "1ci8xxca7dclmi5v37y5k45qlmzs6a9hi6m7czgiwxii902w5pkl";
name = "bog";
};
@@ -2408,7 +2450,7 @@
sha256 = "1q3ws2vn062dh7ci6jn2k2bcn7szh3ap64sgwkzdd6f1pas37fnr";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/bongo";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/692428769cd792dc0644641682c2793103dd00c6/recipes/bongo";
sha256 = "07i9gw067r2igp6s2g2iakm1ybvw04q6zznna2cfdf08nax64ghv";
name = "bongo";
};
@@ -2429,7 +2471,7 @@
sha256 = "1apxgj14hgfpz6hjp3384yjf2zrkv4pcncf2zklijs668igvaskq";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/boon";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/091dcc3775ec2137cb61d66df4e72aca4900897a/recipes/boon";
sha256 = "0gryw7x97jd46jgrm93cjagj4p7w93cjc36i2ps9ajf0d8m4gajb";
name = "boon";
};
@@ -2450,7 +2492,7 @@
sha256 = "0235l4f1cxj7nysfnay4fz52mg0c13pzqxbhw65vdpfzz1gl1p73";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/boxquote";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/d2148f8f17b16154bfc337df69a5ad31e25a9b05/recipes/boxquote";
sha256 = "0s6cxb8y1y8w9vxxhj1izs8d0gzk4z2zm0cm9gkw1h7k2kyggx6s";
name = "boxquote";
};
@@ -2471,7 +2513,7 @@
sha256 = "0y9m6cv70pzcm0v2v8nwmyh1xx40831chx72m85h5ic5db03gy7b";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/browse-kill-ring";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/294dc32a672e6b6b0ebfc46cdf0ff9ceacf73e89/recipes/browse-kill-ring";
sha256 = "1d97ap0vrg5ymp96z7y6si98fspxzy02jh1i4clvw5lggjfibhq4";
name = "browse-kill-ring";
};
@@ -2492,7 +2534,7 @@
sha256 = "08qz9l0gb7fvknzkp67srhldzkk8cylnbn0qwkflxgcs6ndfk95y";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/browse-url-dwim";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/a082c2dc0458e3007a947923f5b97e88217199e8/recipes/browse-url-dwim";
sha256 = "13bv2ka5pp9k4kwrxfqfawwxzsqlakvpi9a32gxgx7qfi0dcb1rf";
name = "browse-url-dwim";
};
@@ -2513,7 +2555,7 @@
sha256 = "0s43cvkr1za5sd2cvl55ig34wbp8xyjf85snmf67ps04swyyk92q";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/buffer-flip";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/3924870cac1392a7eaeeda34b92614c26c674d63/recipes/buffer-flip";
sha256 = "0ka9ynj528yp1p31hbhm89627v6dpwspybly806n92vxavxrn098";
name = "buffer-flip";
};
@@ -2534,7 +2576,7 @@
sha256 = "0xdks4jfqyhkh34y48iq3gz8swp0f526kwnaai5mhgvazvs4za8c";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/buffer-move";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/e30e053eab078a8bef73e42b90299231ea0997ee/recipes/buffer-move";
sha256 = "0wysywff2bggrha7lpl83c8x6ln7zgdj9gsqmjva6gramqb260fg";
name = "buffer-move";
};
@@ -2555,7 +2597,7 @@
sha256 = "0rp9hiysy13c4in7b420r7yjza2knlmvphj7l01xbxphbilplqk5";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/buffer-utils";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/a082c2dc0458e3007a947923f5b97e88217199e8/recipes/buffer-utils";
sha256 = "0cfipdn4fc4fvz513mwiaihvbdi05mza3z5z1379wlljw6r539z2";
name = "buffer-utils";
};
@@ -2576,7 +2618,7 @@
sha256 = "0x9q4amsmawi8jqj9xxg81khvb3gyyf9hjvb0w6vhrgjwpxiq8sy";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/bufshow";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/543a734795eed11aa47a8e1348d14e362b341af0/recipes/bufshow";
sha256 = "027cd0jzb8yxm66q1bhyi75f2m9f2pq3aswgav1d18na3ybwg65h";
name = "bufshow";
};
@@ -2597,7 +2639,7 @@
sha256 = "07jzg58a3jxs4mmsgb35f5f8awazlvzak9wrhif6xb60jq1wrp0v";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/bug-reference-github";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/5dfce86371692dddef78a6c1d772138b487b82cb/recipes/bug-reference-github";
sha256 = "18yzxwanbrxsab6ba75z1196x0m6dapdhbvy6df5b5x5viz99cf6";
name = "bug-reference-github";
};
@@ -2618,7 +2660,7 @@
sha256 = "18d74nwcpk1i8adxzfwz1lgqqcxsc4wkrb490v64pph79dxsi80h";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/bundler";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/ade7d0f0f0e553b48634e60ecaf7b91d0776d5f0/recipes/bundler";
sha256 = "0i5ybc6i8ackxpaa75kwrg44zdq3jkvy48c42vaaafpddjwjnsy4";
name = "bundler";
};
@@ -2639,7 +2681,7 @@
sha256 = "03hab3iw2jjckal20zwsw7cm38nf7pan0m96d8ab4i75phy6liyw";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/bury-successful-compilation";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/f66e2e23c7a1fa0ce6fa8a0e814242b7c46c299c/recipes/bury-successful-compilation";
sha256 = "1gkq4r1573m6m57fp7x69k7kcpqchpcqfcz3792v0wxr22zhkwr3";
name = "bury-successful-compilation";
};
@@ -2660,7 +2702,7 @@
sha256 = "1pii9dw4skq7nr4na6qxqasl36av8cwjp71bf1fgppqpcd9z8skj";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/butler";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/c86e3f5083e59568afac69eed9aa8c1a0bd76e2e/recipes/butler";
sha256 = "1jv74l9jy55qpwf5np9nlj6a1wqsm3xirm7wm89d1h2mbsfcr0mq";
name = "butler";
};
@@ -2681,7 +2723,7 @@
sha256 = "0wkivh8x75gfsks6hy1ps9mlk101hrwsk8hqxx7qhs7f5iv0a082";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/buttercup";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/d4b187cb5b3cc5b546bfa6b94b6792e6363242d1/recipes/buttercup";
sha256 = "1grrrdk5pl9l1jvnwzl8g0102gipvxb5qn6k2nmv28jpl57v8dkb";
name = "buttercup";
};
@@ -2702,7 +2744,7 @@
sha256 = "1kqcc1d56jz107bswlzvdng6ny6qwp93yck2i2j921msn62qvbb2";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/button-lock";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/83459421dd2eb3d60ec668c3d5bb38d99ee64aff/recipes/button-lock";
sha256 = "1arrdmb3nm570hgs18y9sz3z9v0wlkr3vwa2zgfnc15lmf0y34mp";
name = "button-lock";
};
@@ -2723,7 +2765,7 @@
sha256 = "1k2hmc87ifww95k3m8ksiswkk2z0y8grssba7381g8dnlp6jgprx";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/cacoo";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/2bd55f5c29876c2483001cd9deaca68cab5054b9/recipes/cacoo";
sha256 = "0kri4vi6dpsf0zk24psm16f3aa27cq5b54ga7zygmr02csq24a6z";
name = "cacoo";
};
@@ -2744,7 +2786,7 @@
sha256 = "0bvrwzjx93qyx97qqw0imvnkkx4w91yk99rnhcmk029zj1fy0kzg";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/cake";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/86ed5054ee2392a0e384443c945a5d4824238e95/recipes/cake";
sha256 = "06qlqrazz2jr08g44q73hx9vpp6xnjvkpd6ky108g0xc5p9q2hcr";
name = "cake";
};
@@ -2765,7 +2807,7 @@
sha256 = "1w7yq35gzzwyf480d8gc5r6jbnawg09l6663q068ir6zr9pp4far";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/cake-inflector";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/77c46238b632047160d6dfac9b257f57b0c4283b/recipes/cake-inflector";
sha256 = "04mrqcm1igb638skaq2b3nr5yzxnck2vwhln61rnh7lkfxq7wbwf";
name = "cake-inflector";
};
@@ -2786,7 +2828,7 @@
sha256 = "15w21r0gqblbn9wlvb4wlm3706wf01r38mp465snjzi839f6sazb";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/cake2";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/18e38d9cdb9f1a8cc05545c52c3a76265a9aa2ab/recipes/cake2";
sha256 = "03q8vqqjlhahgnyy976c46x52splwdjpmb9ngrj5c2z7d8n9145x";
name = "cake2";
};
@@ -2807,7 +2849,7 @@
sha256 = "1rv6slk3a7ca2q16isjlkmgxbxmbqx4lx2ip7z33fvnq10r5h60n";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/calfw";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/1d1aaab9844413a5fff992509935b399b5154c3d/recipes/calfw";
sha256 = "1lyb0jzpx19mx50d8xjv9sx201518vkvskxbglykaqpjm9ik2ai8";
name = "calfw";
};
@@ -2828,7 +2870,7 @@
sha256 = "0v927m3l5cf0j0rs0nfk5whwqmmxs941d8qalxi19j1ihspjz8d6";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/camcorder";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/1e6aed365c42987d64d0cd9a8a6178339b1b39e8/recipes/camcorder";
sha256 = "1kbnpz3kn8ycpy8nlp8bsnnd1k1h7m02h7w5f7raw97sk4cnpvbi";
name = "camcorder";
};
@@ -2849,7 +2891,7 @@
sha256 = "0xgnq21fb37y05535ipy0z584pnaglxy5bfqzdppyzsy7lpbb4k3";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/cargo";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/e997b356b009b3d2ab467fe49b79d728a8cfe24b/recipes/cargo";
sha256 = "06zq657cxfk5l4867qqsvhskcqc9wswyl030wj27a43idj8n41jx";
name = "cargo";
};
@@ -2870,7 +2912,7 @@
sha256 = "0mg49rpz362ipn5qzqhyfs3d6fpb51rfa73kna3gxdw0wxq2sa7g";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/caseformat";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/ba158fbeebcda6b6122b18c97ab8042b1c0a0bc0/recipes/caseformat";
sha256 = "1qwyr74jbx4jpfcw8sccg47q1vdg094rr06m111gsz2yaj9m0gfk";
name = "caseformat";
};
@@ -2891,7 +2933,7 @@
sha256 = "1hvm6r6a8rgjwnn2mcamwqrmhz424vlr4mbvbri3wmn0ikbk510l";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/cask";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/b86c666ee9b0620390a250dddd42b17cbec2409f/recipes/cask";
sha256 = "11nr6my3vlb1xiyai7qwii3nszda2mnkhkjlbh3d0699h0yw7dk5";
name = "cask";
};
@@ -2912,7 +2954,7 @@
sha256 = "09y4cr32i2cw06lnq698lajxmqyzq2ah426f4dm176xfbrim89d5";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/cask-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/2d8bc1afaf69b4f29ba1bb0243c25574bc1197cc/recipes/cask-mode";
sha256 = "0fs9zyihipr3klnh3w22h43qz0wnxplm62x4kx7pm1chq9bc9kz6";
name = "cask-mode";
};
@@ -2933,7 +2975,7 @@
sha256 = "0padb1zfjkmx9kbqnqh744qvpd3ln0khwxifxld9cpcpdp5k04vc";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/cask-package-toolset";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/ed71e45389626e700b93b29d5e2659b6706274d8/recipes/cask-package-toolset";
sha256 = "13ix093c0a58rjqj7zfp3914xj3hvj276gb2d8zhvrx9vvs1345g";
name = "cask-package-toolset";
};
@@ -2954,7 +2996,7 @@
sha256 = "1j1lw5zifp7q1ykm6si0nzxfp7n3z2lzla2njkkxmc2s6m7w4x1a";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/caskxy";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/1d61aea505e4913879f68081497e85542e9fd786/recipes/caskxy";
sha256 = "0x4s3c8m75zxsvqpgfc5xwll0489zzdnngmnq048z9gkgcd7pd2s";
name = "caskxy";
};
@@ -2967,15 +3009,15 @@
cbm = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "cbm";
- version = "0.3";
+ version = "0.3.2";
src = fetchFromGitHub {
owner = "akermu";
repo = "cbm.el";
- rev = "2f319b3ea6d434f9f9f9ace53a0ca968f3787a4c";
- sha256 = "125d5i7ycdn2hgffc1l3jqcfzvk70m1ciywj4h53qakkl15r9m38";
+ rev = "3c7f33d26336776f94877974f5f7e1470ea1cbdd";
+ sha256 = "0rrgi765x9p9wa14p2b5jhsk86cmiicx2a239jkxm00w3sdn7rn8";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/cbm";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/f28dbc97dc23cdb0b4c74f8805775c787635871e/recipes/cbm";
sha256 = "02ch0gdw610c8dfxxjxs7ijsc9lzbhklj7hqgwfwksnyc36zcjmn";
name = "cbm";
};
@@ -2996,7 +3038,7 @@
sha256 = "1jj9vmhc4s3ych08bjm1c2xwi81z1p20rj7bvxrgvb5aga2ghi9d";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/cdlatex";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/193956c26050e15ddd7fb6579a053262d1de1e30/recipes/cdlatex";
sha256 = "1jsfmzl13fykbg7l4wv9si7z11ai5lzvkndzbxh9cyqlvznq0m64";
name = "cdlatex";
};
@@ -3017,7 +3059,7 @@
sha256 = "07h5g905i1jglsryl0dnqxz8yya5kkyjjggzbk4nl3rcj41lyas7";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/celery";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/4b896b2b89d990a7ce2f4bf4ce0aee0d126f3e55/recipes/celery";
sha256 = "0m3hmvp6xz2m7z1kbb0ii0j3c95zi19652gfixq5a5x23kz8y59h";
name = "celery";
};
@@ -3038,7 +3080,7 @@
sha256 = "08hqgsjvs62l1cfzshbpj80xd8365qmx2b5r5jq20d5cj68s36wl";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/cerbere";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/4145e270a2113f30f8bb4d0f6c335f1c76f77b1c/recipes/cerbere";
sha256 = "1g3svmh5dlh5mvyag3hmiy90dfkk6f7ppd9qpwckxqyll9vl7r06";
name = "cerbere";
};
@@ -3059,7 +3101,7 @@
sha256 = "1pkbg1zlcfbzsxl0yhz1g9cn77lgw5p9g8xfvdm4ilsia9zy7d29";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/cfengine-code-style";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/c737839aeda583e61257ad40157e24df7f918b0f/recipes/cfengine-code-style";
sha256 = "1ny8xvdnz740qmw9m81xnwd0gh0a516arpvl3nfimglaai5bfc9a";
name = "cfengine-code-style";
};
@@ -3080,7 +3122,7 @@
sha256 = "0n93qz5hzsnrs6c3y5yighfpdpkkmabxyi5i755hfcs5007v199v";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/chapel-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/ff32db72ad55a7191b5105192480e17535c7edde/recipes/chapel-mode";
sha256 = "0hmnsv8xf85fc4jqkaqz5j3sf56hgib4jp530vvyc2dl2sps6vzz";
name = "chapel-mode";
};
@@ -3101,7 +3143,7 @@
sha256 = "0vb03k10i8vwy5wv65xl15kcsh9zz4y2xhpgndih87ssckdnhhlw";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/char-menu";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/f6676747e853045b3b19e7fc9524c793c6a08303/recipes/char-menu";
sha256 = "11jkwghrmmvpv7piznkpa0wilwjdsps9rix3950pfabhlllw268l";
name = "char-menu";
};
@@ -3122,7 +3164,7 @@
sha256 = "0crnd64cnsnaj5mcy55q0sc1rnamxa1xbpwpmirhyhxz780klww6";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/charmap";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/11c549fca81c4276054f614d86d17fa7af4ab32e/recipes/charmap";
sha256 = "1j7762d2i17ysn9ys8j7wfv989avmax8iylml2hc26mwbpyfpm84";
name = "charmap";
};
@@ -3143,7 +3185,7 @@
sha256 = "09ypxhfad3v1pz0xhw4xgxvfj7ad2kb3ff9zy1mnw7fzsa7gw6nj";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/checkbox";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/81c4a9d10238836865716f5ea45f8e0e625a87c6/recipes/checkbox";
sha256 = "17gw6w1m6bs3sfx8nqa8nzdq26m8w85a0fca5qw3bmd18bcmknqa";
name = "checkbox";
};
@@ -3153,6 +3195,48 @@
license = lib.licenses.free;
};
}) {};
+ chinese-pyim = callPackage ({ async, chinese-pyim-basedict, cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild, popup, pos-tip }:
+ melpaBuild {
+ pname = "chinese-pyim";
+ version = "0.5";
+ src = fetchFromGitHub {
+ owner = "tumashu";
+ repo = "chinese-pyim";
+ rev = "915f77912f0f8cfe064c6872cae5c0709e4e094e";
+ sha256 = "004xnn6j4jc607h5qcl9jr0dqvhvqvgm77wrbdmdxpwd6hwp2sf4";
+ };
+ recipeFile = fetchurl {
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/157a264533124ba05c161aa93a32c7209f002fba/recipes/chinese-pyim";
+ sha256 = "0zdx5zhgj1ly89pl48vigjzd8g74fxnxcd9bxrqykcn7y5qvim8l";
+ name = "chinese-pyim";
+ };
+ packageRequires = [ async chinese-pyim-basedict cl-lib popup pos-tip ];
+ meta = {
+ homepage = "https://melpa.org/#/chinese-pyim";
+ license = lib.licenses.free;
+ };
+ }) {};
+ chinese-pyim-basedict = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
+ melpaBuild {
+ pname = "chinese-pyim-basedict";
+ version = "0.1";
+ src = fetchFromGitHub {
+ owner = "tumashu";
+ repo = "chinese-pyim-basedict";
+ rev = "f13b6d20629a0b691ead626cca249b227622fa83";
+ sha256 = "1ddld5jkhqarm31p6qjdvdha36k6yqaz3jzg3lyzd0nkavcmdq57";
+ };
+ recipeFile = fetchurl {
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/e2315ffe7d13928eddaf217a5f67a3e0dd5e62a1/recipes/chinese-pyim-basedict";
+ sha256 = "1qmr71lnpn06mcbb6gfr3dh78pav0sk9mld956cvnkg82vg7nmpv";
+ name = "chinese-pyim-basedict";
+ };
+ packageRequires = [];
+ meta = {
+ homepage = "https://melpa.org/#/chinese-pyim-basedict";
+ license = lib.licenses.free;
+ };
+ }) {};
chinese-word-at-point = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "chinese-word-at-point";
@@ -3164,7 +3248,7 @@
sha256 = "1jsy43avingxxccs0zw2qm5ysx8g76xhhh1mnyypxskl9m60qb4j";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/chinese-word-at-point";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/c9b7785eca577218feade982c979694389f37ec3/recipes/chinese-word-at-point";
sha256 = "0pjs4ckncv84qrdj0pyibrbiy86f1gmjla9n2cgh10xbc7j9y0c4";
name = "chinese-word-at-point";
};
@@ -3185,7 +3269,7 @@
sha256 = "0pbgfm9hkryanb4fly74w417h6bw9mnad5k5raj9ypiwgcz2r0n8";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/cider";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/55a937aed818dbe41530037da315f705205f189b/recipes/cider";
sha256 = "1a6hb728a3ir18c2dn9zfd3jn79fi5xjn5gqr7ljy6qb063xd4qx";
name = "cider";
};
@@ -3206,7 +3290,7 @@
sha256 = "1rkd76561h93si4lpisz3qnaj48dx8x01nd59a3lgpqsbbibnccf";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/cider-eval-sexp-fu";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/947f4d106d70f95ca8aac124ab0d90b2975208df/recipes/cider-eval-sexp-fu";
sha256 = "1n4sgv042qd9560pllabysx0c5snly6i22bk126y8f8rn0zj58iq";
name = "cider-eval-sexp-fu";
};
@@ -3219,15 +3303,15 @@
cil-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "cil-mode";
- version = "0.3";
+ version = "0.4";
src = fetchFromGitHub {
owner = "ForNeVeR";
repo = "cil-mode";
- rev = "1cacd8bca125dbdeb97fdf156e32c2b74bac2186";
- sha256 = "1w0ya0446rqsg1j59fd1mp4wavv2f3h1k3mw9svm5glymdirw4d1";
+ rev = "a78a88ca9a66a82f069329a96e34b67478ae2d9b";
+ sha256 = "06p6hz6jrnvnlbxdr1pjgf5wh4n34kf6al4589qg1s88r2lf86bl";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/cil-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/ccbf4a7c9df3c85207c7160ee68ecc4ba4f3801a/recipes/cil-mode";
sha256 = "1h18r086bqspyn5n252yzw8x2zgyaqzdd8pbcf5gqlh1w8kapq4y";
name = "cil-mode";
};
@@ -3248,7 +3332,7 @@
sha256 = "008fz7829mvjlid93hvs5xwwvigh5lnq2fxf2w9ghnw9lygkv5bq";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/circe";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/a2b295656d53fddc76cacc86b239e5648e49e3a4/recipes/circe";
sha256 = "1f54d8490gfx0r0cdvgmcjdxqpni43msy0k2mgqd1qz88a4b5l07";
name = "circe";
};
@@ -3269,7 +3353,7 @@
sha256 = "108s96viral3s62a77jfgvjam08hdk97frfmxjg3xpp2ifccjs7h";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/cl-format";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/7a12bd6769ce7a5745c2da06dcd57ed3ba2ed891/recipes/cl-format";
sha256 = "1259ykj6z6m6gaqhkmj5f3q9vyk7idpvlvlma5likpknxj5f444v";
name = "cl-format";
};
@@ -3290,7 +3374,7 @@
sha256 = "12vgi5dicx3lxzngjcg9g3nflrhfy9wdw6ldm72zarp1h96jy5cw";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/cl-lib-highlight";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/696c79669478b0d1c9769cc6f0fe581ee056cf32/recipes/cl-lib-highlight";
sha256 = "13qdrvpxq928p27b1xdcbsscyhqk042rwfa17037gp9h02fd42j8";
name = "cl-lib-highlight";
};
@@ -3311,7 +3395,7 @@
sha256 = "0w34ixzk8vs2nv5xr7l1b3k0crl1lqvbq6gs5r4b8rhsx9b6c1mb";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/click-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/1859bb26e3efd66394d7d9f4d2296cbeeaf5ba4d/recipes/click-mode";
sha256 = "1p5dz4a74w5zxdlw17h5z9dglapia4p29880liw3bif2c7dzkg0r";
name = "click-mode";
};
@@ -3332,7 +3416,7 @@
sha256 = "0h856l6rslawf3vg37xhsaw5w56r9qlwzbqapg751qg0v7wf0860";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/cliphist";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/82d86dae4ad8efc8ef342883c164c56e43079171/recipes/cliphist";
sha256 = "0mg6pznijba3kvp3r57pi54v6mgih2vfwj2kg6qmcy1abrc0xq29";
name = "cliphist";
};
@@ -3353,7 +3437,7 @@
sha256 = "0i6sj5rs4b9v8aqq9l6wr15080qb101hdxspx6innhijhajgmssd";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/clips-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/d28484bf5e9ad72778ad63f73deeea1eb1263236/recipes/clips-mode";
sha256 = "083wrhjn04rg8vr6j0ziffdbdhbfn63wzl4q7yzpkf8qckh6mxhf";
name = "clips-mode";
};
@@ -3374,7 +3458,7 @@
sha256 = "0qjj40h8ryrs02rj73hkyhcjxdz926qxgvnjidav3sw2ggn8vdl3";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/clj-refactor";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/3a2db268e55d10f7d1d5a5f02d35b2c27b12b78e/recipes/clj-refactor";
sha256 = "1qvds6dylazvrzz1ji2z2ldw72pa2nxqacb9d04gasmkqc32ipvz";
name = "clj-refactor";
};
@@ -3406,7 +3490,7 @@
sha256 = "18gv8vmmpiyq16cq4nr9nk2bmc5y2rsv21wjl4ji29rc7566shha";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/cljr-helm";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/d99b67e295ef59916211bf22b57b4d093e3d53ab/recipes/cljr-helm";
sha256 = "108a1xgnc6qy088vs41j3npwk25a5vny0xx4r3yh76jsmpdpcgnc";
name = "cljr-helm";
};
@@ -3427,7 +3511,7 @@
sha256 = "0hz6a7gj0zfsdaifkhwf965c96rkjc3kivvqlf50zllsw0ysbnn0";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/clocker";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/dadd3f5abad2e1f7863c4d654ff065f641395f64/recipes/clocker";
sha256 = "0cckrk40k1labiqjh7ghzpx5zi136xz70j3ipp117x52qf24k10k";
name = "clocker";
};
@@ -3448,7 +3532,7 @@
sha256 = "1x1kfycf3023z0r3v7xqci59k8jv5wn2vqc9y0nx7k5qgifmswrx";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/clojure-cheatsheet";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/0569da79bd8145df334965c5d4364a50b6b548fa/recipes/clojure-cheatsheet";
sha256 = "05sw3bkdcadslpsk64ds0ciavmdgqk7fr5q3z505vvafmszfnaqv";
name = "clojure-cheatsheet";
};
@@ -3461,15 +3545,15 @@
clojure-mode = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "clojure-mode";
- version = "5.4.0";
+ version = "5.5.0";
src = fetchFromGitHub {
owner = "clojure-emacs";
repo = "clojure-mode";
- rev = "8739cea528699ae80d04867d588be42a786ee58f";
- sha256 = "1hz0dna07yw04swzr42fbv1384mq88j5npcgxj9db0ghdbnibq7g";
+ rev = "3671254fb1ee453706ff8df74235d258c237da24";
+ sha256 = "0lxwbsl5cl5jm9jk0plyw2j02l6z14f300jkq6f5194jgr7m6rr3";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/clojure-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/5e3cd2e6ee52692dc7b2a04245137130a9f521c7/recipes/clojure-mode";
sha256 = "11n0rjhs1mmlzdqy711g432an5ybdka5xj0ipsk8dx6xcyab70np";
name = "clojure-mode";
};
@@ -3482,15 +3566,15 @@
clojure-mode-extra-font-locking = callPackage ({ clojure-mode, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "clojure-mode-extra-font-locking";
- version = "5.4.0";
+ version = "5.5.0";
src = fetchFromGitHub {
owner = "clojure-emacs";
repo = "clojure-mode";
- rev = "8739cea528699ae80d04867d588be42a786ee58f";
- sha256 = "1hz0dna07yw04swzr42fbv1384mq88j5npcgxj9db0ghdbnibq7g";
+ rev = "3671254fb1ee453706ff8df74235d258c237da24";
+ sha256 = "0lxwbsl5cl5jm9jk0plyw2j02l6z14f300jkq6f5194jgr7m6rr3";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/clojure-mode-extra-font-locking";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/5e3cd2e6ee52692dc7b2a04245137130a9f521c7/recipes/clojure-mode-extra-font-locking";
sha256 = "00nff9mkj61i76dj21x87vhz0bbkzgvkx1ypkxcv6yf3pfhq7r8n";
name = "clojure-mode-extra-font-locking";
};
@@ -3511,7 +3595,7 @@
sha256 = "0sw34yjp8934xd2n76lbwyvxkbyz5pxszj6gkflas8lfjvms9z7d";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/clojure-quick-repls";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/e618430057eb3ac235ab4a44767524919c870036/recipes/clojure-quick-repls";
sha256 = "10glzyd4y3918pwp048pc1y7y7fa34fkqckn1nbys841dbssmay0";
name = "clojure-quick-repls";
};
@@ -3532,7 +3616,7 @@
sha256 = "1p0w83m9j4a6va4g68a4gcfbdkp8nic0q8cm28l8nr7czd5s0yl6";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/clojure-snippets";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/4898fc6746b30b0d0453b3b56d02479bfb0f70b9/recipes/clojure-snippets";
sha256 = "15622mdd6b3fpwp22d32p78yap08pyscs2vc83sv1xz4338i0lij";
name = "clojure-snippets";
};
@@ -3553,7 +3637,7 @@
sha256 = "1p251vyh8fc6xzaf0v7yvf4wkrvcfjdb3qr88ll4xcb61gj3vi3a";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/closql";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/c97468a71910ba6709792c060c1fb714004e24da/recipes/closql";
sha256 = "0a8fqw8n03x9mygvzb95m8mmfqp3j8hynwafvryjsl0np0695b6l";
name = "closql";
};
@@ -3574,7 +3658,7 @@
sha256 = "1rwln3ms71fys3rdv3sx8w706aqn874im3kqcfrkxz86wiazm2d5";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/cm-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/42dda804ec0c7338c39c57eec6ba479609a38555/recipes/cm-mode";
sha256 = "1rgfpxbnp8wiq9j8aywm2n07rxzkhqljigwynrkyvrnsgxlq2a9x";
name = "cm-mode";
};
@@ -3584,22 +3668,22 @@
license = lib.licenses.free;
};
}) {};
- cmake-ide = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
+ cmake-ide = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, levenshtein, lib, melpaBuild, seq }:
melpaBuild {
pname = "cmake-ide";
- version = "0.3";
+ version = "0.5";
src = fetchFromGitHub {
owner = "atilaneves";
repo = "cmake-ide";
- rev = "b6953102d022adb60678eb5c4186008de987cdce";
- sha256 = "14z5izpgby7lak6hzjwsph31awg5126hcjzld21ihknhlg09sw7q";
+ rev = "a2e476ad42e61075cae9beb35fb83e3c1bf8619e";
+ sha256 = "0n169i4y2c450bk5r284bakjk3hsg74pply5fqxvdm6p5p1z2vr1";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/cmake-ide";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/17e8a8a5205d222950dc8e9245549a48894b864a/recipes/cmake-ide";
sha256 = "0xvy7l80zw67jgvk1rkhwzjvsqjqckmd8zj6s67rgbm56z6ypmcg";
name = "cmake-ide";
};
- packageRequires = [ emacs ];
+ packageRequires = [ cl-lib emacs levenshtein seq ];
meta = {
homepage = "https://melpa.org/#/cmake-ide";
license = lib.licenses.free;
@@ -3608,15 +3692,15 @@
cmake-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "cmake-mode";
- version = "3.6.0pre1";
+ version = "3.6.0pre4";
src = fetchFromGitHub {
owner = "Kitware";
repo = "CMake";
- rev = "9703b32c1c75b0b343bb5043030a08a1b1345a20";
- sha256 = "17s0ggv8cv7yslpdvfq3rvrj4r7zphv9ldqab9gak0c5c8n73ilp";
+ rev = "dd71ec2c93fdf34f8bbcaafbc05f000ef6ed6cab";
+ sha256 = "11i49slzzc79ikkydw7122gckyikm200yqb5ak9k3i5n720y47db";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/cmake-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/598723893ae4bc2e60f527a072efe6ed9d4e2488/recipes/cmake-mode";
sha256 = "0zbn8syb5lw5xp1qcy3qcl75zfiyik30xvqyl38gdqddm9h7qmz7";
name = "cmake-mode";
};
@@ -3637,7 +3721,7 @@
sha256 = "10xlny2agxjknvnjdnw41cyb3d361yy0wvpc8l1d0xwnmmfh3bxk";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/cmake-project";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/0857c4db1027981ea73bc32bcaa15e5df53edea3/recipes/cmake-project";
sha256 = "13n6j9ljvzjzkknbm9zkhxljcn12avl39gxqq95hah44dr11rns3";
name = "cmake-project";
};
@@ -3658,7 +3742,7 @@
sha256 = "14jcxrs3b02pbppvdsabr7c74i3c6d1lmd6l1p9dj8gv413pghsz";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/codic";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/acc9b816796b9f142c53f90593952b43c962d2d8/recipes/codic";
sha256 = "0fq2qfqhkd6injgl66vcpd61j67shl9xj260aj6cgb2nriq0jxgn";
name = "codic";
};
@@ -3679,7 +3763,7 @@
sha256 = "0yhmg5j051mviqp5laz7y1zjs1w9ykbbxqm7vrgf2py0hpd1kcrg";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/coffee-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/cae2ac3513e371a256be0f1a7468e38e686c2487/recipes/coffee-mode";
sha256 = "1px50hs0x30psa5ljndpcc22c0qwcaxslpjf28cfgxinawnp74g1";
name = "coffee-mode";
};
@@ -3700,7 +3784,7 @@
sha256 = "1zwgyp65jivds9zvbp5k5q3gazffh3w0mvs739ddq93lkf165rwh";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/color-identifiers-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/5c735755e414fdf169aca5ec6f742533d21472e0/recipes/color-identifiers-mode";
sha256 = "1hxp8lzn7kfckn5ngxic6qiz3nbynilqlxhlq9k1n1llfg216gfq";
name = "color-identifiers-mode";
};
@@ -3721,7 +3805,7 @@
sha256 = "0apvqrva3f7valjrxpslln8460kpr82z4zazj3lg3j82k102zla9";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/color-theme-modern";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/2db82e101916d8709b711034da5ca6e4072e1077/recipes/color-theme-modern";
sha256 = "0f662ham430fgxpqw96zcl1whcm28cv710g6wvg4fma60sblaxcm";
name = "color-theme-modern";
};
@@ -3742,7 +3826,7 @@
sha256 = "13jmg05skv409z8pg5m9rzkajj9knyln0ff8a3i1pbpyrnpngmmc";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/color-theme-sanityinc-solarized";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/cae2ac3513e371a256be0f1a7468e38e686c2487/recipes/color-theme-sanityinc-solarized";
sha256 = "0xg79hgb893f1nqx6q4q6hp4w6rvgp1aah1v2r3scg2jk057qxkf";
name = "color-theme-sanityinc-solarized";
};
@@ -3763,7 +3847,7 @@
sha256 = "0w99ypq048xldl1mrgc7qr4n2770dm48aknhp7q0176l43nvxnqf";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/color-theme-sanityinc-tomorrow";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/cae2ac3513e371a256be0f1a7468e38e686c2487/recipes/color-theme-sanityinc-tomorrow";
sha256 = "1k8iwjc7iidq5sxybs47rnswa6c5dwqfdzfw7w0by2h1id2z6nqd";
name = "color-theme-sanityinc-tomorrow";
};
@@ -3784,7 +3868,7 @@
sha256 = "18hzm7yzwlfjlbkx46rgdl31p9xyfqnxlvg8337h2bicpks7kjia";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/colorsarenice-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/3ac373bc7d1c4d3e49523d587d279968995e164c/recipes/colorsarenice-theme";
sha256 = "09zlglldjbjr97clwyzyz7c0k8hswclnk2zbkm03nnn9n9yyg2qi";
name = "colorsarenice-theme";
};
@@ -3805,7 +3889,7 @@
sha256 = "1j6hhyzww7wfwk6bllbb5mk4hw4qs8hsgfbfdifsam9c6i4spm45";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/commander";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/8b308e05dd85856addbc04a9438f5026803cebd7/recipes/commander";
sha256 = "17y0hg6a90hflgwn24ww23qmvc1alzivpipca8zvpf0nih4fl393";
name = "commander";
};
@@ -3826,7 +3910,7 @@
sha256 = "0kzlv2my0cc7d3nki2rlm32nmb2nyjb38inmvlf13z0m2kybg2ps";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/comment-dwim-2";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/4ac6ac97875117013515a36c9a4452fbd6c0d74c/recipes/comment-dwim-2";
sha256 = "1w9w2a72ygsj5w47vjqcljajmmbz0mi8dhz5gjnpwxjwsr6fn6lj";
name = "comment-dwim-2";
};
@@ -3847,7 +3931,7 @@
sha256 = "1jwd3whag39qhzhbsfivzdlcr6vj37dv5ychkhmilw8v6dfdnpdb";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/commenter";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/437afab17b22c0c559617afa06923b5bc73a3ae8/recipes/commenter";
sha256 = "01bm8jbj6xw23nls4fps6zwjkgvcsjhmn3l3ncqd764kwhxdx8q3";
name = "commenter";
};
@@ -3868,7 +3952,7 @@
sha256 = "1cc9ak9193m92g6l4mrfxbkkmvljl3c51d0xzdidwww978q3x6ad";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/common-lisp-snippets";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/48d0166ccd3dcdd3df4719349778c6c5ab6872ca/recipes/common-lisp-snippets";
sha256 = "0ig8cz00cbfx0jckqk1xhsvm18ivl2mjvcn65s941nblsywfvxjl";
name = "common-lisp-snippets";
};
@@ -3881,15 +3965,15 @@
company = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "company";
- version = "0.8.12";
+ version = "0.9.0";
src = fetchFromGitHub {
owner = "company-mode";
repo = "company-mode";
- rev = "e085a333867959a1b36015a3ad8e12e5bd6550d9";
- sha256 = "08rrjfp2amgya1hswjz3vd5ja6lg2nfmm7454p0h1naz00hlmmw0";
+ rev = "212c8fc3101781a2f1c55ca61772eb75a2046e87";
+ sha256 = "04ffjwhk9y6slmxgmir08ilppy3q86qzhqg7v9kp0fzkwaap5fyf";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/company";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/96e7b4184497d0d0db532947f2801398b72432e4/recipes/company";
sha256 = "0v4x038ly970lkzb0n8fbqssfqwx1p46xldr7nss32jiqvavr4m4";
name = "company";
};
@@ -3910,7 +3994,7 @@
sha256 = "1i6788qfinh47c5crgr57ykgbp6bvk1afcl00c8gywxsf8srvnvy";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/company-anaconda";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/0eb23a75c8b57b4af1737c0508f03e66430e6076/recipes/company-anaconda";
sha256 = "1s7y47ghy7q35qpfqavh4p9wr91i6r579mdbpvv6h5by856yn4gl";
name = "company-anaconda";
};
@@ -3931,7 +4015,7 @@
sha256 = "1dds3fynbd6yb0874aw6g4qk5zmq3pgl3jmcp38md027qalgqmym";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/company-ansible";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/7b44cd4bd9f9a7c942ca3f3bd88b2ce61ffff130/recipes/company-ansible";
sha256 = "084l9dr2hvm00952y4m3jhchzxjhcd61sfn5ywj9b9a1d4sr110d";
name = "company-ansible";
};
@@ -3952,7 +4036,7 @@
sha256 = "1pja44g15d11kl47abzykrp28j782nkbmb0db0ilpc96xf1fjlsw";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/company-cabal";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/ee888b1ba57b6af3a3330607898810cd248862db/recipes/company-cabal";
sha256 = "0pbjidj88c9qri6xw8023yqwnczad5ig224cbsz6vsmdla2nlxra";
name = "company-cabal";
};
@@ -3973,7 +4057,7 @@
sha256 = "0s6gzdmxlsl1l0vh52xspxys1wmsq063p6nva6qisg1r622gjzjl";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/company-coq";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/7f89e3097c654774981953ef125679fec0b5b7c9/recipes/company-coq";
sha256 = "1iagm07ckf60kg4i8m4n0gfmv0brqc4dcn7lkcz229r3f4kyqksa";
name = "company-coq";
};
@@ -3994,7 +4078,7 @@
sha256 = "16ai8ljp0i75kby1knj7ldysd8s6kd6drmlh9ygyddxbi2i35x61";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/company-dict";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/212c077def5b4933c6001056132181e1a5850a7c/recipes/company-dict";
sha256 = "1377b40f1j4rmw7lnhy1zsm6r234ds5zsn02v1ajm3bzrpkkmin0";
name = "company-dict";
};
@@ -4015,7 +4099,7 @@
sha256 = "1f8sjjms9kxni153pia6b45p2ih2mhm2r07d0j3fmxmz3q2jdldd";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/company-emoji";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/5733dccdffe97911a30352fbcda2900c33d79810/recipes/company-emoji";
sha256 = "1mflqqw9gnfcqjb6g8ivdfl7s4mdyjg7j0457hamgyvgvpxsh8x3";
name = "company-emoji";
};
@@ -4036,7 +4120,7 @@
sha256 = "0y9i0q37xjbnlnlxq7xjvnpn6ykzbd55g6nbw10z1wg0m2v7f96r";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/company-ghc";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/28f6a983444f796c81df7e5ee94d74c480b21298/recipes/company-ghc";
sha256 = "07adykza4dqs64bk8vjmgryr54khxmcy28hms5z8i1qpsk9vmvnn";
name = "company-ghc";
};
@@ -4057,7 +4141,7 @@
sha256 = "03snnra31b5j6iy94gql240vhkynbjql9b4b5j8bsqp9inmbsia3";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/company-go";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/04867a574773e8794335a2664d4f5e8b243f3ec9/recipes/company-go";
sha256 = "1ncy5wlg3ywr17zrxb1d1bap4gdvwr35w9a8b0crz5h3l3y4cp29";
name = "company-go";
};
@@ -4078,7 +4162,7 @@
sha256 = "17zi0xx8p2diwy1wgrhl6j8p57alwz24rjpz4apyyrqjk09ippq4";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/company-irony";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/d2b6a8d57b192325dcd30fddc9ff8dd1516ad680/recipes/company-irony";
sha256 = "15adamk1b9y1i6k06i5ahf1wn70cgwlhgk0x6fk8pl5izg05z1km";
name = "company-irony";
};
@@ -4099,7 +4183,7 @@
sha256 = "1ihqapp4dv92794rsgyq0rmhwika60cmradqd4bn9b72ss6plxs1";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/company-jedi";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/bded1840a39fbf1e014c01276eb2f9c5a4fc218f/recipes/company-jedi";
sha256 = "1krrgrjq967c3j02y0i345yx6w4crisnj1k3bhih6j849fvy3fvj";
name = "company-jedi";
};
@@ -4120,7 +4204,7 @@
sha256 = "0k6bx4i3d2x6kmkzififc8r7vid74bxsvgxp19z7bv1fh6m1f3aa";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/company-math";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/fadff01600d57f5b9ea9c0c47ed109e058114998/recipes/company-math";
sha256 = "0chig8k8l65bnd0a6734fiy0ikl20k9v2wlndh3ckz5a8h963g87";
name = "company-math";
};
@@ -4133,15 +4217,15 @@
company-ngram = callPackage ({ cl-lib ? null, company, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "company-ngram";
- version = "0.6.6";
+ version = "0.7.5";
src = fetchFromGitHub {
owner = "kshramt";
repo = "company-ngram";
- rev = "15418f2551e1449ba3c1e74d7bb5260688961028";
- sha256 = "172aah6vnwsij6h8c668l0jrncmd9wszbf55bv3snnw80wnqikmr";
+ rev = "966e5e78a3f31f41e6f007a79d9d7594e89835ad";
+ sha256 = "1a1lngsyssdjdd3vlb9izf1l8rw86b7al4hkw7fbc3w421kg2399";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/company-ngram";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/937e6a23782450525c4a90392c414173481e101b/recipes/company-ngram";
sha256 = "1y9k9s8c248m91xld4f5l75j4swml333rpwq590bsx7mrsq131xx";
name = "company-ngram";
};
@@ -4162,7 +4246,7 @@
sha256 = "1lm7rkgf7q5g4ji6v1masfbhxdpwni8d77dapsy5k9p73cr2aqld";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/company-nixos-options";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/6846c7d86e70a9dd8300b89b61435aa7e146be96/recipes/company-nixos-options";
sha256 = "1yrqqdadmf7qfxpqp8wwb325zjnwwjmn2hhnl7i3j0ckg6hqyqf0";
name = "company-nixos-options";
};
@@ -4183,7 +4267,7 @@
sha256 = "1b2v84ss5k43nnbsnvabgvb19ardsacbs1prn2h9i1k2d5mb8icw";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/company-quickhelp";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/022cc4fee54bb0194822947c70058145e2980b94/recipes/company-quickhelp";
sha256 = "042bwv0wd4hksbm528zb7pbllzk83p8qjq5f8z46p84c8mmxfp9g";
name = "company-quickhelp";
};
@@ -4204,7 +4288,7 @@
sha256 = "0i1fh5lvqwlgn3g3fzh0xacxyljx6gkryipn133vfkv4jbns51n4";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/company-restclient";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/3dd063bc3789772fdcc6a8555817588962e60825/recipes/company-restclient";
sha256 = "1md0n4k4wmbh9rmbwqh3kg2fj0c34rzqfd56jsq8lcdg14k0kdcb";
name = "company-restclient";
};
@@ -4231,7 +4315,7 @@
sha256 = "1ynyxrpl9qd2l60dpn9kb04zxgq748fffb0yj8pxvm9q3abblf3m";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/company-sourcekit";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/45969cd5cd936ea61fbef4722843b0b0092d7b72/recipes/company-sourcekit";
sha256 = "0hr5j1ginf43h4qf3fvsh3z53z0c7w5a9lhrvdwmlzj396qhqmzs";
name = "company-sourcekit";
};
@@ -4252,7 +4336,7 @@
sha256 = "11cinjsyf24d4a682ikniprxd1vkwn6mynsp5dzab6yzq09np78i";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/company-tern";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/acc9b816796b9f142c53f90593952b43c962d2d8/recipes/company-tern";
sha256 = "17pw4jx3f1hymj6sc0ri18jz9ngggj4a41kxx14fnmmm8adqn6wh";
name = "company-tern";
};
@@ -4273,7 +4357,7 @@
sha256 = "0b0k75rg43h48dbcqiid947nspqiqxkiqcmvph9aqpxlfr67bz5r";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/company-web";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/2cda69dc7d45087fa9a3e0460d2b12a1dce1a7b3/recipes/company-web";
sha256 = "0dj0m6wcc8cyvblp9b5b3am95gc18j9y4va44hvljxv1h7l5hhvy";
name = "company-web";
};
@@ -4294,7 +4378,7 @@
sha256 = "094alkjrh285qy3sds8dkvxsbnaxnppz1ab0i5r575lyhli9lxia";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/company-ycmd";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/1138c8cc239183a2435ce8c1a6df5163e5fed2ea/recipes/company-ycmd";
sha256 = "0fqmkb0q8ai605jzn2kwd585b2alwxbmnb3yqnn9fgkcvyc9f0pk";
name = "company-ycmd";
};
@@ -4315,7 +4399,7 @@
sha256 = "1mii790r6gaz0nidlaib50wj4vryfvw7ls6b4mg1nw5km7hplpgq";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/composable";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/1fc0f076198e4be46a33a26eea9f2d273dda12b8/recipes/composable";
sha256 = "1fs4pczjn9sv12sladf6zbkz0cmzxr0jaqkiwryydal1l5nqqxcy";
name = "composable";
};
@@ -4336,7 +4420,7 @@
sha256 = "1br4yys803x3ng4vzhhvblhkqabs46lx8a3ajycqy555q20zqzrf";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/concurrent";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/8bc29a8d518ce7a584277089bd4654f52ac0f358/recipes/concurrent";
sha256 = "09wjw69bqrr3424h0mpb2kr5ixh96syjjsqrcyd7z2lsas5ldpnf";
name = "concurrent";
};
@@ -4357,7 +4441,7 @@
sha256 = "0sz3qx1bn0lwjhka2l6wfl4b5486ji9dklgjs7fdlkg3dgpp1ahx";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/conkeror-minor-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/1e6aed365c42987d64d0cd9a8a6178339b1b39e8/recipes/conkeror-minor-mode";
sha256 = "1ch108f20k7xbf79azsp31hh4wmw7iycsxddcszgxkbm7pj11933";
name = "conkeror-minor-mode";
};
@@ -4378,7 +4462,7 @@
sha256 = "05xfgn9sabi1ykk8zbk2vza1g8pdrg08j5cb58f50nda3q8ndf4s";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/connection";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/5b08ed7b90e3283e177eff57cb02b12a093dc258/recipes/connection";
sha256 = "1y68d2kay8p5vapailxhrc5dl7b8k8nkvp7pa54md3fsivwp1d0q";
name = "connection";
};
@@ -4399,7 +4483,7 @@
sha256 = "0s4b7dkndhnh8q3plvg2whjx8zd7ffz4hnbn3xh86xd3k7sch7av";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/contextual";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/44e5b799e411b8e2d89c8e9aeb4720126ac908b7/recipes/contextual";
sha256 = "0vribs0fa1xf5kwkmvzjwhiawni0p3v56c5l4dkz8d7wn2g6wfdx";
name = "contextual";
};
@@ -4409,6 +4493,48 @@
license = lib.licenses.free;
};
}) {};
+ copyit = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
+ melpaBuild {
+ pname = "copyit";
+ version = "0.0.1";
+ src = fetchFromGitHub {
+ owner = "zonuexe";
+ repo = "emacs-copyit";
+ rev = "4f869e13b3e2b1498bd13fe037480f1ccd8e2600";
+ sha256 = "16i8py34wapphknj5xl8a07gq4gk77w1ayjz4swlvn3b2wwxlqy6";
+ };
+ recipeFile = fetchurl {
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/69bd50fd1f3865d48cec9fe2680d260d746248e5/recipes/copyit";
+ sha256 = "1m28irqixzl44c683dxvc5x6l3qcqlpy6jzk6629paqkdi5mx1c0";
+ name = "copyit";
+ };
+ packageRequires = [ cl-lib emacs ];
+ meta = {
+ homepage = "https://melpa.org/#/copyit";
+ license = lib.licenses.free;
+ };
+ }) {};
+ copyit-pandoc = callPackage ({ copyit, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, pandoc }:
+ melpaBuild {
+ pname = "copyit-pandoc";
+ version = "0.0.1";
+ src = fetchFromGitHub {
+ owner = "zonuexe";
+ repo = "emacs-copyit";
+ rev = "4f869e13b3e2b1498bd13fe037480f1ccd8e2600";
+ sha256 = "16i8py34wapphknj5xl8a07gq4gk77w1ayjz4swlvn3b2wwxlqy6";
+ };
+ recipeFile = fetchurl {
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/69bd50fd1f3865d48cec9fe2680d260d746248e5/recipes/copyit-pandoc";
+ sha256 = "03v448gh6glq126r95w4y6s2p08jgjhkc6zgsplx0v9d5f2mwaqk";
+ name = "copyit-pandoc";
+ };
+ packageRequires = [ copyit emacs pandoc ];
+ meta = {
+ homepage = "https://melpa.org/#/copyit-pandoc";
+ license = lib.licenses.free;
+ };
+ }) {};
corral = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "corral";
@@ -4420,7 +4546,7 @@
sha256 = "00055gzv032xxzqm1hffipljy8fzgsm58cbv8dzajh035jvdgpv7";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/corral";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/7b0d7e326f0401de0488b77d39af7bd7b8e8fdd4/recipes/corral";
sha256 = "1drccqk4qzkgvkgkzlrrfd1dcgj8ziqriijrjihrzjgjsbpzv6da";
name = "corral";
};
@@ -4441,7 +4567,7 @@
sha256 = "19vfj01x7b8f7wyx7m51z00la2r7jcwzv0n06srkvcls0wm5s1h3";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/counsel";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/06c50f32b8d603db0d70e77907e36862cd66b811/recipes/counsel";
sha256 = "0y8cb2q4mqvzan5n8ws5pjpm7bkjcghg5q19mzc3gqrq9vrvyzi6";
name = "counsel";
};
@@ -4462,7 +4588,7 @@
sha256 = "1ma67lc4y9y3byrz8v6635w8q2scp6f2cqagq09k723k5nnwisfj";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/counsel-dash";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/0f8af4d854f972bfed3d2122b4c089f72d8b5f2a/recipes/counsel-dash";
sha256 = "0pzh8ww1p2jb859gdjr5ypya3rwhiyg3c79xhx8filxrqxgjv5fk";
name = "counsel-dash";
};
@@ -4483,7 +4609,7 @@
sha256 = "01545iy2gaxyd4i8gawgxqi9gbkrjk20djhvc59finnjrblzccn3";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/coverage";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/cd70e138534551dd12ba4d165ba56fbd1e033241/recipes/coverage";
sha256 = "0ja7wsx2sj0h01sk1l3c0aidbs1ld4gj3kiwq6brs7r018sz45pm";
name = "coverage";
};
@@ -4504,7 +4630,7 @@
sha256 = "0ji8n4sv0zqmfn4g7ay927d8ya6wrvqdzvd5sc6vicma9gn27lvj";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/coverlay";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/b2f92804e67fac780a0be850fcd0d0e93992ea7a/recipes/coverlay";
sha256 = "0p5k9254r3i247h6ll6kjsgw3naiff5lgfkmb2wkc870lzggq0m4";
name = "coverlay";
};
@@ -4525,7 +4651,7 @@
sha256 = "1rk0bwdvfrp24z69flh7jg3c8vgvwk6vciixmmmldnrlwhpnbh6i";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/cpputils-cmake";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/9b84a159e97f7161d0705da5dd5e8c34ae5cb848/recipes/cpputils-cmake";
sha256 = "0fswmmmrjv897n51nidmn8gs8yp00595g35vwjafsq6rzfg58j60";
name = "cpputils-cmake";
};
@@ -4546,7 +4672,7 @@
sha256 = "169ai0xkh3988racnhaapxw0v1pbxvcaq470x1qacdzdpka4a7bs";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/creds";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/81b032049ccc3837e8693f010b39716912f76bba/recipes/creds";
sha256 = "0n11xxaf93bbc9ih25wj09zzw4sj32wb99qig4zcy8bpkl5y3llk";
name = "creds";
};
@@ -4559,15 +4685,15 @@
cricbuzz = callPackage ({ enlive, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "cricbuzz";
- version = "0.2.2";
+ version = "0.2.3";
src = fetchFromGitHub {
owner = "lepisma";
repo = "cricbuzz.el";
- rev = "6f80f90a8916216b4c98d13f3605f50b5f6e64af";
- sha256 = "12qs9z1cnwhmks7x7fhymg21hbpjwgbdfz20pz2jgrl48hm6mmk5";
+ rev = "7c0c495312c18bc6c8db9ddad94efbd4b6328a9b";
+ sha256 = "0jvr6ya40qq9q064k2gzkrqw00xffjmslfjxa2xz2vi25m6jyv92";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/cricbuzz";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/906b144e01aed96d62efbc34a8af2973135f6194/recipes/cricbuzz";
sha256 = "1ad2afyn3xny3rgb8yy6w87f33idlrmis1vx0b6s8ppafv9z74j0";
name = "cricbuzz";
};
@@ -4588,7 +4714,7 @@
sha256 = "1kl6blr4dlz40gfc845071nhfms4fm59284ja2177bhghy3wmw6r";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/crm-custom";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/5e0752ba601a8d518d3c7fb54fd008602e7dc19f/recipes/crm-custom";
sha256 = "14w15skxr44p9ilhpswlgdbqfw8jghxi69l37yk4m449m7g9694c";
name = "crm-custom";
};
@@ -4609,7 +4735,7 @@
sha256 = "0809pb8626i6z1dics3i1cs30p4qd8bzqcgr20lx9k3yq2abq2k7";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/crux";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/575e3442a925500a5806e0b900208c1e6bfd11ae/recipes/crux";
sha256 = "10lim1sngqbdqqwyq6ksqjjqpkm97aj1jk550sgwj28338lnw73c";
name = "crux";
};
@@ -4630,7 +4756,7 @@
sha256 = "00wgbcw09xn9xi52swi4wyi9dj9p9hyin7i431xi6zkhxysw4q7w";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/cryptol-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/de12333bb429d84b2c214ac7ebb0219f67838f4f/recipes/cryptol-mode";
sha256 = "08iq69gqmps8cckybhj9065b8a2a49p0rpzgx883qxnypsmjfmf2";
name = "cryptol-mode";
};
@@ -4651,7 +4777,7 @@
sha256 = "0dqih7cy57sciqn5vz5fiwynpld96qldyl7jcgn9qpwnzb401ayx";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/csharp-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/736716bbcfd9c9fb1d10ce290cb4f66fe1c68f44/recipes/csharp-mode";
sha256 = "17j84qrprq492dsn103dji8mvh29mbdlqlpsszbgfdgnpvfr1rv0";
name = "csharp-mode";
};
@@ -4672,7 +4798,7 @@
sha256 = "13zq8kym1y6bzrpxbcdz32323a6azy5px4ridff6xh8bfprwlay3";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ctable";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/8bc29a8d518ce7a584277089bd4654f52ac0f358/recipes/ctable";
sha256 = "040qmlgfvjc1f908n52m5ll2fizbrhjzbd0kgrsw37bvm3029rx1";
name = "ctable";
};
@@ -4691,7 +4817,7 @@
sha256 = "1xgrb4ivgz7gmingfafmclqqflxdvkarmfkqqv1zjk6yrjhlcvwf";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ctags";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/5b7972602399f9df9139cff177e38653bb0f43ed/recipes/ctags";
sha256 = "11fp8l99rj4fmi0vd3hkffgpfhk1l82ggglzb74jr3qfzv3dcn6y";
name = "ctags";
};
@@ -4712,7 +4838,7 @@
sha256 = "05vhryqcydvcfm18fwby344931kzzh47x4l5ixy95xkcjkzrj8c7";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ctags-update";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/23f6ae3d3c8e414031bf524ff75d9d6f8d8c3fe9/recipes/ctags-update";
sha256 = "1k43l667mvr2y33nblachdlvdqvn256gysc1iwv5zgv7gj9i65qf";
name = "ctags-update";
};
@@ -4733,7 +4859,7 @@
sha256 = "1jlr2miwqsg06hk2clvsrw9fa98m2n76qfq8qv5svrb8dpil04wb";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ctxmenu";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/6fc4f51bb6ce8fa9e37c0aeb51696b1980aece0c/recipes/ctxmenu";
sha256 = "03g9px858mg19wapqszwav3599slljdyam8bvn1ri85fpa5ydvdp";
name = "ctxmenu";
};
@@ -4754,7 +4880,7 @@
sha256 = "1y685qfdkjyl7dwyvivlgc2lwp102vy6hvcb9zynw84c49f726sn";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/cuda-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/d21cf17a4a9ae391e2e9cf9be3399095fa23ef55/recipes/cuda-mode";
sha256 = "0ip4vax93x72bjrh6prik6ddmrvszpsmgm0fxfz772rp24smc300";
name = "cuda-mode";
};
@@ -4775,7 +4901,7 @@
sha256 = "1yhizh8j745hv5ancpvijds9dasvsr2scwjscksp2x3krnd26ssp";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/cyberpunk-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/4c632d1e501d48dab54432ab111ce589aa229125/recipes/cyberpunk-theme";
sha256 = "0l2bwb5afkkhrbh99v2gns1vil9s5911hbnlq5w35nmg1wvbmbc9";
name = "cyberpunk-theme";
};
@@ -4796,7 +4922,7 @@
sha256 = "04add8i0g4x5kzi1yd49i5viq9i2f5r5gzq33k05q6rimsp2ga02";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/cyphejor";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/ad7cacfa39d8f85e26372ef21898663aebb68e43/recipes/cyphejor";
sha256 = "18l5km4xm5j3vv19k3fxs8i3rg4qnhrvx7b62vmyfcqmpiasrh6g";
name = "cyphejor";
};
@@ -4817,7 +4943,7 @@
sha256 = "11ddx5c535a76pnxqdfahchi839v59iwvpiyswigskyfhzxn5ic1";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/cython-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/be9bfabe3f79153cb859efc7c3051db244a63879/recipes/cython-mode";
sha256 = "0asai1f1pncrfxx296fn6ky09hj1qam5j0dpxxkzhy0a34xz0k2i";
name = "cython-mode";
};
@@ -4838,7 +4964,7 @@
sha256 = "0kbncsaxj93jd79sd6dkap29fz8z100wi1nk0njd568glm8q4k5g";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/d-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/3c13e9ccc358743de660b1f0e89d6bb709c42bff/recipes/d-mode";
sha256 = "060k9ndjx0n5vlpzfxlv5zxnizx72d7y9vk7gz7gdvpm6w2ha0a2";
name = "d-mode";
};
@@ -4859,7 +4985,7 @@
sha256 = "1gdh4izwhyly6dyrmh7lfpd12gnb8hpnafj8br51ksijsssrf21f";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/darcula-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/23c8f10205187babb17e3abc3dc40eb1938e6640/recipes/darcula-theme";
sha256 = "1n9mpkdyf5jpxc5azfs38ccp9p0b5ii87sz4c7z4khs94y0gxqh3";
name = "darcula-theme";
};
@@ -4880,7 +5006,7 @@
sha256 = "1p7ih9fmcxnnxkj2mz56xa403m828wyyqvliabf5amklzjlhb3z9";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/darktooth-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/b7f62ac1566ced7332e83253f79078dc30cb7889/recipes/darktooth-theme";
sha256 = "1vss0mg1vz4wvsal1r0ya8lid2c18ig11ip5v9nc80b5slbixzvs";
name = "darktooth-theme";
};
@@ -4901,7 +5027,7 @@
sha256 = "1vkn95dyc0pppnflyqlrlx32g9zc7wdcgc9fgf1hgvqp313ydfcs";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/dart-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/7d9cb763cb8e929d9442be8d06e9af02de90714a/recipes/dart-mode";
sha256 = "0wxfh8v716dhrmx1klhpnsrlsj66llk8brmwryjg2h7c391sb5ff";
name = "dart-mode";
};
@@ -4922,7 +5048,7 @@
sha256 = "1njv5adcm96kdch0jb941l8pm51yfdx7mlz83y0pq6jlzjs9mwaa";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/dash";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/57eed8767c3e98614259c408dc0b5c54d3473883/recipes/dash";
sha256 = "0azm47900bk2frpjsgy108fr3p1jk4h9kmp4b5j5pibgsm26azgz";
name = "dash";
};
@@ -4943,7 +5069,7 @@
sha256 = "1njv5adcm96kdch0jb941l8pm51yfdx7mlz83y0pq6jlzjs9mwaa";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/dash-functional";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/57eed8767c3e98614259c408dc0b5c54d3473883/recipes/dash-functional";
sha256 = "0hx36hs12mf4nmskaaqrqpcgwrfjdqj6qcxn6bwb0s5m2jf9hs8p";
name = "dash-functional";
};
@@ -4964,7 +5090,7 @@
sha256 = "06aprbhhxb6bbzmf0r5yq2ry6x7708vp4d94ja3ir6zcwc96wn0k";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/date-at-point";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/a6dbeddd236f312fac1d5542dfd2edf81df8fad2/recipes/date-at-point";
sha256 = "0r26df6px6q5jlxj29nhl3qbp6kzy9hs5vd72kpiirgn4wlmagp0";
name = "date-at-point";
};
@@ -4985,7 +5111,7 @@
sha256 = "1lmwnj2fnvijj9qp4rjggl7c4x91vnpb47rqaam6m2wmr5wbrx3w";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/date-field";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/fe790729a67d2210cbccefce43805daa20db647d/recipes/date-field";
sha256 = "0fmw13sa4ajs1xkrkdpcjpbp0jl9d81cgvwh93myg8yjjn7wbmvk";
name = "date-field";
};
@@ -5006,7 +5132,7 @@
sha256 = "1w8qzj8qrgkygprb3ibyx28j951lv7k1frbpdwz69cg23whi3s30";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/datetime";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/fff9f0748b0ef76130b24e85ed109325256f956e/recipes/datetime";
sha256 = "0mnkckibymc5dswmzd1glggna2fspk06ld71m7aaz6j78nfrm850";
name = "datetime";
};
@@ -5027,7 +5153,7 @@
sha256 = "0wm24ndiyhrayg1gz456s0s1ddlpcvg4vp555g4zzl3zcpsy94bg";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/decide";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/6adcd300e2ac2c718989cf855fd7b3eef654df00/recipes/decide";
sha256 = "1gjkays48lhrifi9jwja5n2dpxjbl7f9rmka1nsqg9vf7s59vhhc";
name = "decide";
};
@@ -5048,7 +5174,7 @@
sha256 = "0pba9s0h37sxyqh733vi6k5raa4cs7aradipf3826inw36jcw414";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/dedicated";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/5f2a50f62475639af011c99c6cc38928b74b3b0a/recipes/dedicated";
sha256 = "1ka8n02r3nd2ksbid23g2qd6707c7xsjx7lbbdi6pcmwam5mglw9";
name = "dedicated";
};
@@ -5069,7 +5195,7 @@
sha256 = "031f8ls1q80j717cg6b4pjd37wk7vrl5hcycsn8ca7yssmqa8q81";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/default-text-scale";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/db5e0b70e2d9c80aa41ae2c397f822789c2d3cc2/recipes/default-text-scale";
sha256 = "18r90ic38fnlsbg4gi3r962vban398x2bf3rqhrc6z4jk4aiv3mi";
name = "default-text-scale";
};
@@ -5090,7 +5216,7 @@
sha256 = "1br4yys803x3ng4vzhhvblhkqabs46lx8a3ajycqy555q20zqzrf";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/deferred";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/0e9a114d85f630648d05a7b552370fa8413da0c2/recipes/deferred";
sha256 = "0axbvxrdjgxk4d1bd9ar4r5nnacsi8r0d6649x7mnhqk12940mnr";
name = "deferred";
};
@@ -5111,7 +5237,7 @@
sha256 = "1lyqd9cgj7cb2lasf6ycw5j8wnsx2nrfm8ra4sg3dgcspm01a89g";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/define-word";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/e318b30d8b2b89981f4b89d78e5a46e77d3de412/recipes/define-word";
sha256 = "035fdfwnxw0mir1dyvrimygx2gafcgnvlcsmwmry1rsfh39n5b9a";
name = "define-word";
};
@@ -5127,10 +5253,10 @@
src = fetchgit {
url = "git://jblevins.org/git/deft.git";
rev = "4001a55cf5f79cdbfa00f1405e8a4645af4acd40";
- sha256 = "1s71xk5c1hck7lh780lpa1q1c8qdpf2wdahl2406mgf06y1ifp7b";
+ sha256 = "157c6ck6gb59i7dikbdnaq7cwlh3nnk0vqgil4v1294s2xbpp46n";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/deft";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/4327b4dd464ebb00c2acdd496274dedf912cdf92/recipes/deft";
sha256 = "1c9kps0lw97nl567ynlzk4w719a86a18q697rcmrbrg5imdx4y5p";
name = "deft";
};
@@ -5151,7 +5277,7 @@
sha256 = "13jfhc9gavvb9dxmgi3k7ivp5iwh4yw4m11r2s8wpwn6p056bmfl";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/demangle-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/6ced9f4ffb051a8474d3f72695156416cf2dd8be/recipes/demangle-mode";
sha256 = "0ky0bb6rc99vrdli4lhs656qjndnla9b7inc2ji9l4n1zki5qxzk";
name = "demangle-mode";
};
@@ -5172,7 +5298,7 @@
sha256 = "13fasbhdjwc4jh3cy25gm5sbbg56hq8la271098qpx6dhqm2wycq";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/describe-number";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/d5ed9063f7e9f540bc90c1df4e3604d4af9bcfe5/recipes/describe-number";
sha256 = "0gvriailni2ppz69g0bwnb1ik1ghjkj341k45vllz30j0frp9iji";
name = "describe-number";
};
@@ -5193,7 +5319,7 @@
sha256 = "184zi5fv7ranghfx1hpx7j2wnk6kim8ysliyw2c5c1294sxxq3f3";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/desktop+";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/0b009b42c73490d56d4613dcf5a57447fb4ccab4/recipes/desktop+";
sha256 = "0w7i6k4814hwb19l7ly9yq59674xiw57ylrwxq7yprwx52sgs2r8";
name = "desktop-plus";
};
@@ -5214,7 +5340,7 @@
sha256 = "11qvhbz7149vqh61fgqqn4inw0ic6ib9lz2xgr9m54pdw9a901mp";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/desktop-registry";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/0fda2b54a0ff0b6fc3bd6d20cfcbbf63cae5380f/recipes/desktop-registry";
sha256 = "1sfj0w6hlrx37js63fn1v5xc9ngmahv07g42z68717md6w3c8g0v";
name = "desktop-registry";
};
@@ -5235,7 +5361,7 @@
sha256 = "05xfgn9sabi1ykk8zbk2vza1g8pdrg08j5cb58f50nda3q8ndf4s";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/dictionary";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/5b08ed7b90e3283e177eff57cb02b12a093dc258/recipes/dictionary";
sha256 = "0zr9sm5rmr0frxdr0za72wiffip9391fn9dm5y5x0aj1z4c1n28w";
name = "dictionary";
};
@@ -5248,15 +5374,15 @@
diff-hl = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "diff-hl";
- version = "1.8.3";
+ version = "1.8.4";
src = fetchFromGitHub {
owner = "dgutov";
repo = "diff-hl";
- rev = "f4edea201bc4c38d082ec3143ceec87d2dcadb37";
- sha256 = "0sjwpvzd4x9c1b9iv66b33llvp96ryyzyp8pn1rnhvxfvjv43cnz";
+ rev = "e93367512080e540dc5dd126dfcb38b4a5e9415b";
+ sha256 = "03pvh213w0sgyvv0xrkj43bs53p2xfr7162yhzdh24qwa8dd23qv";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/diff-hl";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/cf8fc25abd2fb91ec6a6ba951d89a19ca4f5571f/recipes/diff-hl";
sha256 = "0kw0v9xcqidhf26qzrqwdlav2zhq32xx91k7akd2536jpji5pbn6";
name = "diff-hl";
};
@@ -5277,7 +5403,7 @@
sha256 = "1ci2gmyl0i736b2sxh77fyg4hs2pkn6rn9z7v2hzv6xlgqd6j3z6";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/diffview";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/0ea5dd4c9c114618ac20f565c878f509ce8d9872/recipes/diffview";
sha256 = "0vlzmykvxjwjww313brl1nr13kz41jypsk0s3l8q3rbsnkpfic5k";
name = "diffview";
};
@@ -5298,7 +5424,7 @@
sha256 = "0jzwaivsqh66py9hd3dg1ys5rc3p6pn8ndpwpvgyivk4pg6zhhj6";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/digistar-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/851fa17152b664df99b80a654e5c055bb5227181/recipes/digistar-mode";
sha256 = "0khzxlrm09h31i1nqz6rnzhrdssb3kppc4klpxza612l306fih0s";
name = "digistar-mode";
};
@@ -5319,7 +5445,7 @@
sha256 = "1vrd74vmm60gb69a4in412mjncnhkjbfpakpaa6w9rj7w4kyfiz1";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/dim";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/3a740ab40cab3a1890f56df808f41a2d541aa77c/recipes/dim";
sha256 = "0gsyily47g3g55qmhp1wzfz319l1pkgjz4lbigafjzlzqxyclz52";
name = "dim";
};
@@ -5340,7 +5466,7 @@
sha256 = "0jn3hwnqg455fz85m79mbwsiv93ps4sfr1fcfjfwj3qhhbhq7d82";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/dim-autoload";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/66b1a81dfd09a2859ae996d5d8e3d704857a340f/recipes/dim-autoload";
sha256 = "0lhzzjrgfvbqnzwhjywrk3skdb7x10xdq7d21q6kdk3h5r0np9f9";
name = "dim-autoload";
};
@@ -5361,7 +5487,7 @@
sha256 = "0qpgfgp8hrzz4vdifxq8h25n0a0jlzgf7aa1fpy6r0080v5rqbb6";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/diminish";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/1bfb4acb381cada46458cf60eae9b88d007294d5/recipes/diminish";
sha256 = "1h6a31jllypk47akjflz89xk6h47na96pim17d6g4rpqcafc2k43";
name = "diminish";
};
@@ -5382,7 +5508,7 @@
sha256 = "1xg9cschjd2m0zal296q54ifk5i4s1s3azwfdkbgshxxgvxaky0w";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/dionysos";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/890445eca3c555acd2639a6f509c8e83b687f2bd/recipes/dionysos";
sha256 = "1wjgj74dnlwd79gc3l7ymbx75jka8rw9smzbb10dsfppw3rrzfmz";
name = "dionysos";
};
@@ -5403,7 +5529,7 @@
sha256 = "1d813b4wiamif48v0za5invnss52mn7yw3hzrlxd4918gy5y2r74";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/dired-atool";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/dired-atool";
sha256 = "0qljx6fmz1hal9r2smjyc957wcvcpg16vp5mv65ip6d26k5qsj0w";
name = "dired-atool";
};
@@ -5424,7 +5550,7 @@
sha256 = "1m0nx8wd6q56qbp5mbp9n466kyglrz34nflwvgd1qnmi08jwswgv";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/dired-efap";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/5669ca2adc48f3349eb59276850e6174e37f9de7/recipes/dired-efap";
sha256 = "01j5v6584qi8ia7zmk03kx3i3kmm6hn6ycfgqlh5va6lp2h9sr00";
name = "dired-efap";
};
@@ -5445,7 +5571,7 @@
sha256 = "0lrc4082ghg77x5jl26hj8c7cp48yjvqhv4g3j0pznpzb4qyfnq0";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/dired-fdclone";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/8a0ddc10b11772d72a473e8d24ab4641bf4239a4/recipes/dired-fdclone";
sha256 = "11aikq2q3m9h4zpgl24f8npvpwd98jgh8ygjwy2x5q8as8i89vf9";
name = "dired-fdclone";
};
@@ -5466,7 +5592,7 @@
sha256 = "088h9yn6wndq4pq6f7q4iz17f9f4ci29z9nh595idljp3vwr7qid";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/dired-imenu";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/e346de86b7f7fd5dad548f0936cde54ac11e3f79/recipes/dired-imenu";
sha256 = "09yix4fkr03jq6j2rmvyg6gkmcnraw49a8m9649r3m525qdnhxs1";
name = "dired-imenu";
};
@@ -5487,7 +5613,7 @@
sha256 = "0rpln6m3j4xbhrmmz18hby6xpzpzbf1c5hr7bxvna265cb0i5rn7";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/dired-k";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/7f8a828b2fbfa11c4b74192d9d0cfa0ad34b3da7/recipes/dired-k";
sha256 = "0lghdmy9qcjykscfxvfrz8cpp87qc0vfd03vw8nfpvwcs2sd28i8";
name = "dired-k";
};
@@ -5508,7 +5634,7 @@
sha256 = "1a9r1kz5irpvb2byabbf27sy7rjzaygfpqimpag41sj955wlgy9a";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/dired-quick-sort";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/4d278178128deb03a7b1d2e586dc38da2c7af857/recipes/dired-quick-sort";
sha256 = "01vrk3wqq2zmcblyp9abi2lvrzr2a5ca8r8gjjnr5223037ppl3l";
name = "dired-quick-sort";
};
@@ -5529,7 +5655,7 @@
sha256 = "0mfvyjbx7l7a1sfq47m6rb507xxw92nykkkpzmi2mpwv30f1c22j";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/dired-single";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/41669decbb7ad5c4dbe152a863f16d87e7bba493/recipes/dired-single";
sha256 = "13h8dsn7bkz8ji2rrb7vyrqb2znxarpiynqi65mfli7dn5k086vf";
name = "dired-single";
};
@@ -5539,6 +5665,27 @@
license = lib.licenses.free;
};
}) {};
+ dired-toggle-sudo = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
+ melpaBuild {
+ pname = "dired-toggle-sudo";
+ version = "1.0";
+ src = fetchFromGitHub {
+ owner = "renard";
+ repo = "dired-toggle-sudo";
+ rev = "02449dbda4e168f99fe5352c9628df5d39e11483";
+ sha256 = "0ajj8d6k5in2hclcrqckinfh80ylddplva0ryfbkzsjkfq167cv2";
+ };
+ recipeFile = fetchurl {
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/5cdee2d52c0c53566fdd77a5d42edf365764acff/recipes/dired-toggle-sudo";
+ sha256 = "0fy05af9aq9791ij4j9pscdk5j44pbg0kmhpqli41qiazjw7v2va";
+ name = "dired-toggle-sudo";
+ };
+ packageRequires = [];
+ meta = {
+ homepage = "https://melpa.org/#/dired-toggle-sudo";
+ license = lib.licenses.free;
+ };
+ }) {};
diredful = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "diredful";
@@ -5550,7 +5697,7 @@
sha256 = "1d8n8wj5k82a1sfg93kn3ajci804mpp9j206x5f185zd48wb25z8";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/diredful";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/76f3d178e7c3982b53c7ee0096c839397534d732/recipes/diredful";
sha256 = "0y8x6q1yfsk0srxsh4g5nbsms1g9pk9d103jx7cfdac79mcigw7x";
name = "diredful";
};
@@ -5571,7 +5718,7 @@
sha256 = "0p8c2hjgr81idm1psv3i3v5hr5rv0875ig8app2yqjwzvl0nn73f";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/direx";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/a4b0903466d63b1c87abc002b0e064e36a8cddd3/recipes/direx";
sha256 = "1x3rnrhhyrrvgry9n7kc0734la1zp4gc4bpy50f2qpfd452jwqdm";
name = "direx";
};
@@ -5592,7 +5739,7 @@
sha256 = "0swdh0qynpijsv6a2d308i42hfa0jwqsnmf4sm8vrhaf3vv25f5h";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/direx-grep";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/6a88a29090a0d6c636f4aeb5214433db66367d9e/recipes/direx-grep";
sha256 = "0y2wrzq06prm55akwgaqjg56znknyvbayav13asirqzg258skvm2";
name = "direx-grep";
};
@@ -5602,6 +5749,27 @@
license = lib.licenses.free;
};
}) {};
+ disable-mouse = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
+ melpaBuild {
+ pname = "disable-mouse";
+ version = "0.2";
+ src = fetchFromGitHub {
+ owner = "purcell";
+ repo = "disable-mouse";
+ rev = "d1c52d80ed2149d0751afd948ffc2d9f80f589ac";
+ sha256 = "1v1y5hf6k6ng7xsvgb27nh740d14m6l4krr0paccda8zgm4mw357";
+ };
+ recipeFile = fetchurl {
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/dbbc396373212fdf731e135cde391f27708ff015/recipes/disable-mouse";
+ sha256 = "0c0ps39s6wg3grspvgck0cwxnas73nfaahfa87l0mmgsrsvas5m7";
+ name = "disable-mouse";
+ };
+ packageRequires = [];
+ meta = {
+ homepage = "https://melpa.org/#/disable-mouse";
+ license = lib.licenses.free;
+ };
+ }) {};
discover = callPackage ({ fetchFromGitHub, fetchurl, lib, makey, melpaBuild }:
melpaBuild {
pname = "discover";
@@ -5613,7 +5781,7 @@
sha256 = "0qxw30zrlcxhxb0alrgyiclrk44dysal8xsbz2mvgrb6jli8wg18";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/discover";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/688e32e98758aa6fd31218e98608bd54a76c3e83/recipes/discover";
sha256 = "1hf57p90jn1zzhjl63zv9ascbgkcbr0p0zmd3fvzpjsw84235dga";
name = "discover";
};
@@ -5634,7 +5802,7 @@
sha256 = "1wlqyl03hhnflbyay3qlvdzqzvv5rbybcjpfddggda7ias9h0pr4";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/discover-my-major";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/274185fa94a3442c56593f3c8b99bdc6b9bd4994/recipes/discover-my-major";
sha256 = "0ch2y4grdjp7pvw2kxqnqdl7jd3q609n3pm3r0gn6k0xmcw85fgg";
name = "discover-my-major";
};
@@ -5655,7 +5823,7 @@
sha256 = "1b1a1bwc6nv6wkd8jg1cqmjb9m9pxi5i2wbrz97fgii23dwfmlnl";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/dispass";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/84d19999b8387e8b71215675cf1c15873314d90e/recipes/dispass";
sha256 = "08c1s4zgl4rha10mva48cfkxzrqnpdhy03pxq51ihw94v6vxzg3z";
name = "dispass";
};
@@ -5676,7 +5844,7 @@
sha256 = "0q35p9p26ywfaw6k8q05zmr8vmkiakykwns4ffgyl57dafkpjfj0";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/dix";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/149eeba213b82aa0bcda1073aaf1aa02c2593f91/recipes/dix";
sha256 = "0c5fmknpy6kwlz7nx0csbbia1maz0szj7yha1p7wq28s3a5426xq";
name = "dix";
};
@@ -5697,7 +5865,7 @@
sha256 = "0q35p9p26ywfaw6k8q05zmr8vmkiakykwns4ffgyl57dafkpjfj0";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/dix-evil";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/d9dcceb57231bf2082154cab394064a59d84d3a5/recipes/dix-evil";
sha256 = "1jscaksnl5qmpqgkjkv6sx56llz0w4p5h7j73c4a1hld94gwklh3";
name = "dix-evil";
};
@@ -5718,7 +5886,7 @@
sha256 = "1wkgb6wq3crnpnd747ilwl2kbz5fjk5q5z1xza8j4bf1ic2aybb8";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/docker";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/6c74bf8a41c17bc733636f9e7c05f3858d17936b/recipes/docker";
sha256 = "10x05vli7lg1w3fdbkrl34y4mwbhp2c7nqdwnbdy53i81jisw2lk";
name = "docker";
};
@@ -5739,7 +5907,7 @@
sha256 = "1cmh8pwwa6dhl4w66wy8s5yqxs326mnaalg1ig2yhl4bjk8gi4m2";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/dockerfile-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/1406f5a24115d29e3b140c360a51b977a369e4f9/recipes/dockerfile-mode";
sha256 = "1dxvzn35a9qd3x8pjvrvb2g71yf84404g6vz81y0p353rf2zknpa";
name = "dockerfile-mode";
};
@@ -5760,7 +5928,7 @@
sha256 = "04h1hlsc83w4dppw9m44jq7mkcpy0bblvnzrhvsh06pibjywdd73";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/doom";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/7e41ed64142be89a62fddeceee5e39603a18525c/recipes/doom";
sha256 = "098q77lix7kwpmarv26yndyk1yy1h4k3l9kaf3g7sg6ji6k7d3wl";
name = "doom";
};
@@ -5781,7 +5949,7 @@
sha256 = "13czcxmmvy4g9ysfjr6lb91c0fqv1xv8ppd27wbfsrgxm3aaqimb";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/downplay-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50d67ea3c4d92b4093373d5e4ff07b7d5a3dc537/recipes/downplay-mode";
sha256 = "1v6nga101ljzza8qj3lkmkzzl0vvzj4lsh1m69698s8prnczxr9b";
name = "downplay-mode";
};
@@ -5796,14 +5964,14 @@
pname = "dracula-theme";
version = "1.2.5";
src = fetchFromGitHub {
- owner = "zenorocha";
- repo = "dracula-theme";
- rev = "ad3191b11603898d275450e5f7fca711617c82c8";
- sha256 = "10a8z7bqn6dmj9pgkrx5pq7kbh4i1n2vvv6600a8wp8n8wqbc2i5";
+ owner = "dracula";
+ repo = "emacs";
+ rev = "509293bebeaf26ee662ff35a28a7af019190f286";
+ sha256 = "0ddznxn75qk22g0ah4490ysghvb9r6nin1a005y0zmschz46bar8";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/dracula-theme";
- sha256 = "0ayv00wvajia8kbfrqkrkpb3qp3k70qcnqkav7am16p5kbvzp10r";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/d63cb8906726f106e65f7d9895b49a38ffebf8d5/recipes/dracula-theme";
+ sha256 = "1px162v7h7136rasafq875yzw0h8n6wvzbyh73c3w093kd30bmh8";
name = "dracula-theme";
};
packageRequires = [ emacs ];
@@ -5823,7 +5991,7 @@
sha256 = "0z3w58zplm5ks195zfsaq8kwbc944p3kbzs702jgz02wcrm4c28y";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/draft-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/d5ee50f467025fb8b9a3b4577fc471a2b2ee191a/recipes/draft-mode";
sha256 = "1wg9cx39f4dhrykb4zx4fh0x5cfrh5aicwwfh1h3yzpc4zlr7xfh";
name = "draft-mode";
};
@@ -5844,7 +6012,7 @@
sha256 = "131ww26pb97q2gyjhfrsf7nw2pi5b1kba0cgl97qc017sfhg92v6";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/drag-stuff";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/7fabdb05de9b8ec18a3a566f99688b50443b6b44/recipes/drag-stuff";
sha256 = "1q67q20gfhixzkmddhzp6fd8z2qfpsmyyvymmaffjcscnjaz21w4";
name = "drag-stuff";
};
@@ -5865,7 +6033,7 @@
sha256 = "1hbm3zdmd28fjl8fky0kq4gs2bxsrn2zxk9rd1wa2wky43ycnd35";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/drupal-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/13e16af340868048eb1f51f9865dfc707e57abe8/recipes/drupal-mode";
sha256 = "14jvk4phq3wcff3yvhygix0c9cpbphh0dvm961i93jpsx7g9awgn";
name = "drupal-mode";
};
@@ -5886,7 +6054,7 @@
sha256 = "156cscpavrp695lp8pgjg5jnq3b8n9c2h8qg8w89dd4vfkc3iikd";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/drupal-spell";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/bb859d9755bde3fd852bc7d08f2fab2429ba31b3/recipes/drupal-spell";
sha256 = "117rr2bfnc99g3qsr127grxwaqp54cxjaj3nl2nr6z78nja0fij3";
name = "drupal-spell";
};
@@ -5907,7 +6075,7 @@
sha256 = "17yldk76mxakhb90bma7r4z9jgx02wankgk17r2di196mc04bj7b";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ducpel";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/2d64adac965e1dac0f29dab9a587cd6ce9c3bb3a/recipes/ducpel";
sha256 = "1cqrkgg7n9bhjswnpl7yc6w6yjs4gfbliaqsimmf9z43wk2ml4pc";
name = "ducpel";
};
@@ -5917,22 +6085,22 @@
license = lib.licenses.free;
};
}) {};
- dumb-jump = callPackage ({ dash, f, fetchFromGitHub, fetchurl, lib, melpaBuild, popup, s }:
+ dumb-jump = callPackage ({ dash, emacs, f, fetchFromGitHub, fetchurl, lib, melpaBuild, popup, s }:
melpaBuild {
pname = "dumb-jump";
- version = "0.3.9";
+ version = "0.4.0";
src = fetchFromGitHub {
owner = "jacktasia";
repo = "dumb-jump";
- rev = "5313ef651b58dd9b8b9fcb388856b8dcbf1b791b";
- sha256 = "1czw5z6w8pcc7ra5d82v06padyiy7c3ds00chw5xgyvq6s73gzn4";
+ rev = "910e4b2fd870e5e4a701fdd39af04e819cca4ddb";
+ sha256 = "0m9m1vfbxhnpayhs34k4q3isyz630gv6vswqv3cj3rjprnzn8ccs";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/dumb-jump";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/2a60e7c166c2d68e4f719d293014a22139593dde/recipes/dumb-jump";
sha256 = "1pgbs2k1g8w7gr65w50fazrmcky6w37c9rvyxqfmh06yx90nj4kc";
name = "dumb-jump";
};
- packageRequires = [ dash f popup s ];
+ packageRequires = [ dash emacs f popup s ];
meta = {
homepage = "https://melpa.org/#/dumb-jump";
license = lib.licenses.free;
@@ -5949,7 +6117,7 @@
sha256 = "033yqc19xxirbva65lz8hnwxj7pn7fx7dlnf70kq71iqclqa4v25";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/dummy-h-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/0fda2b54a0ff0b6fc3bd6d20cfcbbf63cae5380f/recipes/dummy-h-mode";
sha256 = "10lzfzq7md6s28w2zzlhswn3d6765g4vqzyjn2q5ms8pd2i4b4in";
name = "dummy-h-mode";
};
@@ -5969,7 +6137,7 @@
sha256 = "19aid1rqpqj0fvln98db5imfk1griqld55xsr9plm6kwrr174syq";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/dyalog-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/5b7972602399f9df9139cff177e38653bb0f43ed/recipes/dyalog-mode";
sha256 = "1y17nd2xd8b3mhaybws8dr7yanzwqij9gzfywisy65ckflm9kfyq";
name = "dyalog-mode";
};
@@ -5990,7 +6158,7 @@
sha256 = "1ppwlill1z4vqd566h9zi6zx5jb7hggmnmqrga84j5n7fwqvgz7f";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/dynamic-fonts";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/c9db386ab3910940addae6e925b2ac17e64e0f87/recipes/dynamic-fonts";
sha256 = "0a210ca41maa755lv1n7hhpxp0f7lfxrxbi0x34icbkfkmijhl6q";
name = "dynamic-fonts";
};
@@ -6011,7 +6179,7 @@
sha256 = "09skp2d5likqjlrsfis3biqw59sjkgid5249fld9ahqm5f1wq296";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/dynamic-ruler";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/926c43867120db429807ff5aaacc8af65a1738c8/recipes/dynamic-ruler";
sha256 = "13jc3xbsyc3apkdfy0iafmsfvgqs0zfa5w8jxp7zj4dhb7pxpnmc";
name = "dynamic-ruler";
};
@@ -6032,7 +6200,7 @@
sha256 = "0g0cz5a0vf31w27ljq5sn52mq15ynadl6cfbb97ja5zj1zxsxgjl";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/e2wm";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/8da85815c39f58552a968ae68ee07c08c53b0f61/recipes/e2wm";
sha256 = "0dp360jr3fgxqywkp7g88cp02g37kw2hdsc0f70hjak9n3sy03la";
name = "e2wm";
};
@@ -6053,7 +6221,7 @@
sha256 = "1yf081rac0chvkjha9z9xi1p983gmhjph0hai6ppsz5hzf2vikpp";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/e2wm-R";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/9a3ba9843bdf275815b149e4c4b0a947bbc5e614/recipes/e2wm-R";
sha256 = "09v4fz178lch4d6m801ipclfxm2qrap5601aysnzyvc2apvyr3sh";
name = "e2wm-R";
};
@@ -6074,7 +6242,7 @@
sha256 = "09i7d2rc9zd4s3nqrhd3ggs1ykdpxf0pyhxixxw2xy0q6nbswjia";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/e2wm-direx";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/8320cf626050cf455c97ef22e7a8ccfb253e3243/recipes/e2wm-direx";
sha256 = "0nv8aciq0swxi9ahwc2pvk9c7i3rmlp7vrzqcan58ml0i3nm17wg";
name = "e2wm-direx";
};
@@ -6095,7 +6263,7 @@
sha256 = "1vrlfzy1wynm7x4m7pl8vim7ykqd6qkcilwz7sjc1lbckz11ig0d";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/e2wm-pkgex4pl";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/8f84b421cb1673d2a9fe820cee11dc4a6e72adad/recipes/e2wm-pkgex4pl";
sha256 = "0hgdbqfw3015fr929m36kfiqqzsid6afs3222iqq0apg7gfj7jil";
name = "e2wm-pkgex4pl";
};
@@ -6116,7 +6284,7 @@
sha256 = "0mz43mwcgyc1c9p9b7nflnjxdxjm2nxbhl0scj6llzphikicr35g";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/e2wm-sww";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/cc873e8271e9f372e08da5d0e4b77c8ba0e3a8cb/recipes/e2wm-sww";
sha256 = "0x45j62cjivf9v7jp1b41yya3f9akp92md6cbv0v7bwz98g2vsk8";
name = "e2wm-sww";
};
@@ -6137,7 +6305,7 @@
sha256 = "0qv3kh6q3q7vgfsd8x25x8agi3fp96dkpjnxdidkwk6k8h9n0jzw";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/e2wm-term";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/c9a800f5af893cb670cedb47e4a723c407be8429/recipes/e2wm-term";
sha256 = "0wrq06yap80a96l9l0hs7x7rng7sx6vi1hz778kknb6il4f2f45g";
name = "e2wm-term";
};
@@ -6158,7 +6326,7 @@
sha256 = "0r56nqrj6iaz57ys6hqdq5qkyliv7dj6dv274l228r7x0axrwd9m";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/easy-kill";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/7d0a74c2a7d8859e9311bc8d71f5e6cf5a8063b6/recipes/easy-kill";
sha256 = "10jcv7a4vcnaj3wkabip2xwzcwlmvdlqkl409a9lnzfasxcpf32i";
name = "easy-kill";
};
@@ -6179,7 +6347,7 @@
sha256 = "18fdlxz9k961k8wafdw0gq0y514bvrfvx6qc1lmm4pk3gdcfbbi0";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/easy-kill-extras";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/7b55d93f78fefde47a2bd4ebbfd93c028fab1f40/recipes/easy-kill-extras";
sha256 = "0xzlzv57nvrc142saydwfib51fyqcdzjccc1hj6xvgcdbwadlnjy";
name = "easy-kill-extras";
};
@@ -6200,7 +6368,7 @@
sha256 = "18bm5ns1qrxq0rrz9sylshr62wkymh1m6b7ch2y74f8rcwdwjgnq";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/easy-repeat";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/f1f5e0d19043f6a24ab4069c9c850e96cbe61a8f/recipes/easy-repeat";
sha256 = "1vx57gpw0nbxh976s18va4ali1nqxqffhaxv1c5rhf4pwlk2fa06";
name = "easy-repeat";
};
@@ -6221,7 +6389,7 @@
sha256 = "0ysym38xaqyx1wc7xd3fvjm62dmiq4727dnjvyxv7hs4czff1gcb";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ebal";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/629aa451162a0085488caad4052a56366b7ce392/recipes/ebal";
sha256 = "1kqnlp5n1aig1qbqdq9q50wgqkzd1l6h9wi1gv43cif8qa1kxhwg";
name = "ebal";
};
@@ -6242,7 +6410,7 @@
sha256 = "16hiwz8a1hyyiflzn53v97704v783pg18yxapn7pqk90fbcf7czw";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ebf";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/22e2f6383f2a7a01778c0524af19a68af57796ae/recipes/ebf";
sha256 = "072w1hczzb4z0dadvqy8px9zfnfd2z0w8nwa7q2qm5njg30rrqpb";
name = "ebf";
};
@@ -6263,7 +6431,7 @@
sha256 = "1kcmbr4a2jxd62s4nc8xshrksb36xwb17j6c0hjzvb75r544xy6s";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ebib";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/4e39cd8e8b4f61c04fa967def6a653bb22f45f5b/recipes/ebib";
sha256 = "1kdqf5nk9l6mr3698nqngrkw5dicgf7d24krir5wrcfbrsqrfmid";
name = "ebib";
};
@@ -6284,7 +6452,7 @@
sha256 = "1s9r1qj7cjsjvvphdpyjff6y598xpbrm9qjv5ncq15w6ac7yxzvc";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ecb";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/c0a4c225c05166572de4538f7ee9e4e0d088a409/recipes/ecb";
sha256 = "097hdskhfh255znrqamcssx4ns1sgkxchlbc7pjqwzpflsi0fx89";
name = "ecb";
};
@@ -6305,7 +6473,7 @@
sha256 = "1r5hlcspznvfm111l1z0r4isd582qj64sa8cqk6hyi3y1hyp1xxs";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ecukes";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/14cf66e6929db2a0f377612e786aaed9eb12b799/recipes/ecukes";
sha256 = "0ava8hrc7r1mzv6xgbrb84qak5xrf6fj8g9qr4i4g0cr7843nrw0";
name = "ecukes";
};
@@ -6326,7 +6494,7 @@
sha256 = "0xy3q68i47a3s81jwr0rdvc1722bp78ng56xm53pri05g1z0db9s";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/edbi";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/238a11afa52d2c01d69eb16ffd7d07ccd6dff403/recipes/edbi";
sha256 = "0qq0j16n8lyvkqqlcsrq1m7r7f0in6b92d74mpx5c6siv6z2vxlr";
name = "edbi";
};
@@ -6347,7 +6515,7 @@
sha256 = "145knahvvxbm8qmcdb69ilrg14w7130vav2pqjd7anr1l8n2i6gz";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/edit-indirect";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/acc9b816796b9f142c53f90593952b43c962d2d8/recipes/edit-indirect";
sha256 = "0q5jjmrvx5kaajllmhaxihsab2kr1vmcsfqrhxdhw3x3nf41s439";
name = "edit-indirect";
};
@@ -6368,7 +6536,7 @@
sha256 = "0981hy1n50yizc3k06vbxqrpfml817a67kab1hkgkw5v6ymm1hc9";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/edit-list";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/6c8aa348ce5289a8b1238f186affac1d544af755/recipes/edit-list";
sha256 = "0mi12jfgx06i0yr8k5nk80xryqszjv0xykdnri505862rb90xakv";
name = "edit-list";
};
@@ -6389,7 +6557,7 @@
sha256 = "12dp1xj09jrp0kxp9xb6cak9dn6zkyis1wfn4fnhzmxxnrd8c5rn";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/edit-server";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/d98d69008b5ca8b92fa7a6045b9d1af86f269386/recipes/edit-server";
sha256 = "0ffxcgmnz0f2c1i3vfwm8vlm6jyd7ibf4kq5z8c6n50zkwfdmns0";
name = "edit-server";
};
@@ -6410,7 +6578,7 @@
sha256 = "1zb8f6gfflwzh1zkhcd1nhan9wxmdm0gpp96fm5gjn639zs88539";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/editorconfig";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50d4f2ed288ef38153a7eab44c036e4f075b51d0/recipes/editorconfig";
sha256 = "0zv96m07ml8i3k7zm7sdci4hn611n3ypna7zppfkwbdyr7d5k2gc";
name = "editorconfig";
};
@@ -6420,6 +6588,27 @@
license = lib.licenses.free;
};
}) {};
+ editorconfig-custom-majormode = callPackage ({ editorconfig, fetchFromGitHub, fetchurl, lib, melpaBuild }:
+ melpaBuild {
+ pname = "editorconfig-custom-majormode";
+ version = "0.0.1";
+ src = fetchFromGitHub {
+ owner = "10sr";
+ repo = "editorconfig-custom-majormode-el";
+ rev = "338742889240bad23f8e90c0a89b8e641ce2befa";
+ sha256 = "0f3cdg5pdwghm7vyg3kxhddfk0rmjpg30h330pa20pf7qnk3gwip";
+ };
+ recipeFile = fetchurl {
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/fcd47bf4630442ad1a941ad432cef64c7746aa71/recipes/editorconfig-custom-majormode";
+ sha256 = "0ykvjg3gwxky6w5cm0y5s63q9820b7d25fy9plw8sarxwy2a5lxy";
+ name = "editorconfig-custom-majormode";
+ };
+ packageRequires = [ editorconfig ];
+ meta = {
+ homepage = "https://melpa.org/#/editorconfig-custom-majormode";
+ license = lib.licenses.free;
+ };
+ }) {};
edn = callPackage ({ cl-lib ? null, dash, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, peg, s }:
melpaBuild {
pname = "edn";
@@ -6431,7 +6620,7 @@
sha256 = "06v34l9dkykrrdfpnm3zi5wjm0fdvy76pbkfnk92wqkjp8fqimhd";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/edn";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/305dd770d9db86d5ee602e6bd571b7c4f6c4ddbe/recipes/edn";
sha256 = "00cy8axhy2p3zalzl8k2083l5a7s3aswb9qfk9wsmf678m8pqwqg";
name = "edn";
};
@@ -6452,7 +6641,7 @@
sha256 = "1a1apa48n24yisd2zw5k4lfkngx3016x6y11qi80hg75vrnmg7f1";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/edts";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/782db7fba2713bfa17d9305ae15b0a9e1985445b/recipes/edts";
sha256 = "0f0rbd0mqqwn743qmr1g5mmi1sbmlcglclww8jxvbvb61jq8vspr";
name = "edts";
};
@@ -6473,7 +6662,7 @@
sha256 = "1ryb7smvf66hk307yazkjn9bqzbwzbyyb5db200fq6j2zdjwsmaj";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/egg";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/a1c97870c2641d73685f07a12f010530cc186544/recipes/egg";
sha256 = "144g1fvs2cmn3px0a98nvxl5cz70kx30v936k5ppyi8gvbj0md5i";
name = "egg";
};
@@ -6494,7 +6683,7 @@
sha256 = "07vdvjy4x21gyw2r4rxrj929hj1jp4a8igwgb2m5a5x50capwzhy";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/egison-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/f543dd136e2af6c36b12073ea75b3c4d4bc79769/recipes/egison-mode";
sha256 = "0x11fhv8kkx34h831k2q70y5qfz7wnfia4ka5mbmps7mpr68zcwi";
name = "egison-mode";
};
@@ -6513,7 +6702,7 @@
sha256 = "0w9j5q5pzw55nwsw5wic7dl7psvg75vk1cxhrz2isgra6gissh9z";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/eide";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/d384f185f76039b06a1b5b12c792b346c6d47a22/recipes/eide";
sha256 = "16cf32n2l4wy1px7fm6x4vxx7pbqdp7zh2jn3bymg0b40i2321sz";
name = "eide";
};
@@ -6534,7 +6723,7 @@
sha256 = "0w2j0bbqnba1wr12f0zk87zwnxf6xhchx224fwgwqd3kg0x5z0r3";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ein";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/3201516c0158c47d0226ef9c5d324d29ac7b088b/recipes/ein";
sha256 = "1nksj1cpf4d9brr3rb80bgp2x05qdq9xmlp8mwbic1s27mw80bpp";
name = "ein";
};
@@ -6555,7 +6744,7 @@
sha256 = "0m7qsk378c30fva2n2ag99rsdklx5nsqc395msg1ab11sbpxvis0";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/eink-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/a1349c3f93ab60983f77c28f97048fa258b612a6/recipes/eink-theme";
sha256 = "0z437cpf1b8bqyi7bv0w0dnc52q4f5g17530lwdcxjkr38s9b1zn";
name = "eink-theme";
};
@@ -6576,7 +6765,7 @@
sha256 = "0dbp2zz993cm7mrd58c4iflbzqwg50wzgn2cpwfivk14w1mznh4n";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/el-autoyas";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/cc4845343dbb8f8294394f6850788e4f1fe6b99b/recipes/el-autoyas";
sha256 = "0hh5j79f3z82nmb3kqry8k8lgc1qswk6ni3g9jg60pasc3wkbh6c";
name = "el-autoyas";
};
@@ -6597,7 +6786,7 @@
sha256 = "1awyh9ffd6a4cia239s89asb88ddqlnrv757d76vcb701pq412bz";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/el-get";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/1c61197a2b616d6d3c6b652248cb166196846b44/recipes/el-get";
sha256 = "1438v2sw5n67q404c93y2py226v469nagqwp4w9l6yyy40h4myhz";
name = "el-get";
};
@@ -6618,7 +6807,7 @@
sha256 = "1mzla7ijmq1mgzr6bf16mjdycbf8ylsf4zdk4j6fh5kw5n4k6c5n";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/el-init";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/f0c18cc62ffaaf839284ed7b261cc6f375fab813/recipes/el-init";
sha256 = "121n6z8p9kzi7axp4i2kyi621gw20635w4j81i1bryblaqrv5kl5";
name = "el-init";
};
@@ -6639,7 +6828,7 @@
sha256 = "1488wv0f9ihzzf9fl8cki044k61b0kva604hdwpb2qk9gnjr4g1l";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/el-init-viewer";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/f90e6be757783352c4a7732177ff2e2c0a066247/recipes/el-init-viewer";
sha256 = "0kkmsml9xf2n8nlrcicfg2l78s3dlhd6ssx0s62v77v4wdpl297m";
name = "el-init-viewer";
};
@@ -6660,7 +6849,7 @@
sha256 = "13mv1rhgkwiww2wh5w926jz7idppp492wir1vdl245c5x50dh4f7";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/el-mock";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/b1989beb927657c0ff7e79fe448f62ac58c11be7/recipes/el-mock";
sha256 = "07m7w7n202nijnxidy0j0r4nbcvlnbkm9b0n8qb2bwi3d4cfp77l";
name = "el-mock";
};
@@ -6681,7 +6870,7 @@
sha256 = "0390pfgfgj7hwfmkwikwhip0hmwkgx784l529cqvalc31jchi94i";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/el-spice";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/4666eee9f6837d6d9dba77e04aa4c8c4a93b47b5/recipes/el-spice";
sha256 = "0i0l3y9w1q9pf5zhvmsq4h427imix67jgcfwq21b6j82dzg5l4hg";
name = "el-spice";
};
@@ -6702,7 +6891,7 @@
sha256 = "1i6j44ssxm1xdg0mf91nh1lnprwsaxsx8vsrf720nan7mfr283h5";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/el-x";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/0346f6349cf39a0414cd055b06d8ed193f4972d4/recipes/el-x";
sha256 = "1721d9mljlcbdwb5b9934q7a48y30x6706pp4bjvgys0r64dml5g";
name = "el-x";
};
@@ -6723,7 +6912,7 @@
sha256 = "0hlj6jn9gmi00sqghxswkxpgk65c4gy2k7010vpkr2257rd4f3gq";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/elang";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/1cb66c2a6272a804d7a81fc506643e80f11da306/recipes/elang";
sha256 = "0frhn3hm8351qzljicpzars28af1fghgv45717ml79rwb4vi6yiy";
name = "elang";
};
@@ -6744,7 +6933,7 @@
sha256 = "1fh9dx669czkwy4msylcg64azz3az27akx55ipnazb5ghmsi7ivk";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/eldoc-eval";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/63ba2004d3db4c5a71676dca82ad880328cf6073/recipes/eldoc-eval";
sha256 = "0z4scgi2xgrgd47aqqmyv1ww8alh43s0qny5qmh3f1nnppz3nd7c";
name = "eldoc-eval";
};
@@ -6765,7 +6954,7 @@
sha256 = "1ji6rdbqwk8j0nl6yk3rdqrpgxir99lj9pf6i9rx55l63qyrdfc4";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/electric-operator";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/906cdf8647524bb76f644373cf8b65397d9053a5/recipes/electric-operator";
sha256 = "043bkpvvk42lmkll5jnz4q8i0m44y4wdxvkz6hiqhqcp1rv03nw2";
name = "electric-operator";
};
@@ -6786,7 +6975,7 @@
sha256 = "0zqrh8ycrk7768mj0d5b9dkz72559a36yhddb6idhik1v4q836sw";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/elfeed";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/407ae027fcec444622c2a822074b95996df9e6af/recipes/elfeed";
sha256 = "1psga7fcjk2b8xjg10fndp9l0ib72l5ggf43gxp62i4lxixzv8f9";
name = "elfeed";
};
@@ -6807,7 +6996,7 @@
sha256 = "0zqrh8ycrk7768mj0d5b9dkz72559a36yhddb6idhik1v4q836sw";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/elfeed-web";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/62459d16ee44d5fcf170c0ebc981ca2c7d4672f2/recipes/elfeed-web";
sha256 = "14ydwvjjc6wbhkj4g4xdh0c3nh4asqsz8ln7my5vjib881vmaq1n";
name = "elfeed-web";
};
@@ -6817,39 +7006,18 @@
license = lib.licenses.free;
};
}) {};
- elisp-format = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
- melpaBuild {
- pname = "elisp-format";
- version = "0.5.7";
- src = fetchFromGitHub {
- owner = "emacsmirror";
- repo = "elisp-format";
- rev = "640316f4930978a632b16d24c1a2fa75798e0ff0";
- sha256 = "0pyf1zja696bgl46bqrksdzw94za08icd3qfzal58hf3zgil99ay";
- };
- recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/elisp-format";
- sha256 = "1x6dmjhds8smqkmg11ndiiir78714w4z2vrz04cnzq2v3wx1yiv4";
- name = "elisp-format";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/elisp-format";
- license = lib.licenses.free;
- };
- }) {};
elisp-slime-nav = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "elisp-slime-nav";
- version = "0.8";
+ version = "0.9";
src = fetchFromGitHub {
owner = "purcell";
repo = "elisp-slime-nav";
- rev = "551a6045969756d4aaee9e82b44cfbcdd0670cea";
- sha256 = "1k7kprdknqm18dc0nwl7gachm0rivcpa8ng7p7ximalja3nsg2j1";
+ rev = "0e96d9f1f0d334f09414b509d44d5c000b51f432";
+ sha256 = "11vyy0bvzbs1h1kggikrvhd658j7c730w0pdp6qkm60rigvfi1ih";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/elisp-slime-nav";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/cae2ac3513e371a256be0f1a7468e38e686c2487/recipes/elisp-slime-nav";
sha256 = "009zgp68i4naprpjr8lcp06lh3i5ickn0nh0lgvrqs0niprnzh8c";
name = "elisp-slime-nav";
};
@@ -6870,7 +7038,7 @@
sha256 = "06bi68x49v6f7flpz279mm4jpg31ll3s274givm3pvr8slcxs6xg";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/elixir-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/6374ced0de38d83bf99147f702f30706615480ed/recipes/elixir-mode";
sha256 = "1dba3jfg210i2rw8qy866396xn2xjgmbcyl006d6fibpr3j4lxaf";
name = "elixir-mode";
};
@@ -6891,7 +7059,7 @@
sha256 = "0dx5h3sfccc2bp1jxnqqki95x5hp1skw8n5n4lnh703yjga5gkrz";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/elixir-yasnippets";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/6c37a13d56e9a0a4e7e2c11349ed87610a0f6b2c/recipes/elixir-yasnippets";
sha256 = "0vmkcd88wfafv31lyw0983p4qjj387qf258q7py1ij47fcmfp579";
name = "elixir-yasnippets";
};
@@ -6904,15 +7072,15 @@
elm-mode = callPackage ({ emacs, f, fetchFromGitHub, fetchurl, let-alist, lib, melpaBuild, s }:
melpaBuild {
pname = "elm-mode";
- version = "0.16.0";
+ version = "0.17.0";
src = fetchFromGitHub {
owner = "jcollard";
repo = "elm-mode";
- rev = "5e2e70436d4e5be6725a43b1f09eb68db7400f02";
- sha256 = "0wzxk4p9rxgv2k3z5k5zyi46mfvax658j7p29q2ii5hyj9imcjka";
+ rev = "3112ff7964b596022de94c12b4676c6ca7a69c80";
+ sha256 = "1n6gp3c4b3ryprw7hxd7447gkgjafxnlbfg75mjm96vfgxkb7abx";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/elm-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/5d1a4d786b137f61ed3a1dd4ec236d0db120e571/recipes/elm-mode";
sha256 = "1gw9szkyr1spcx7qijddhxlm36h0hmfd53b4yzp1336yx44mlnd1";
name = "elm-mode";
};
@@ -6933,7 +7101,7 @@
sha256 = "0l2iincskpks9yvj3y9zh1b48xli1q39wybr5n96rys5gv0drc9h";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/elmacro";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/566cc5bc0f71c5a4191ad93b917dc268f6e1a2da/recipes/elmacro";
sha256 = "0644rgwawivrq1shsjx1x2p53z7jgr6bxqgn2smzql8pp6azy7xz";
name = "elmacro";
};
@@ -6954,7 +7122,7 @@
sha256 = "080nnw6ddsczbm7gk50x4dkahi77fsybfiki5iyp39fjpa7lfzq3";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/elmine";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/29c24259817bf4b7caf51f1cfc163e6b7c63504b/recipes/elmine";
sha256 = "1gi94dyz9x50swkvryd4vj36rqgz4s58nrb4h4vwwviiiqmc8fvz";
name = "elmine";
};
@@ -6975,7 +7143,7 @@
sha256 = "1q4krfrc2dy0vr7q148msfpkcwj55mlsrn4n5xjnya4xj0134ib7";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/elpa-audit";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/c351c97e5b2c0595c82d65a7075176f9ebe44638/recipes/elpa-audit";
sha256 = "0l8har14zrlh9kdkh9vlmkmzg49vb0r8j1wnznryaidalvk84a52";
name = "elpa-audit";
};
@@ -6985,6 +7153,27 @@
license = lib.licenses.free;
};
}) {};
+ elpa-clone = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }:
+ melpaBuild {
+ pname = "elpa-clone";
+ version = "0.0.2";
+ src = fetchFromGitHub {
+ owner = "dochang";
+ repo = "elpa-clone";
+ rev = "ee3249cb47658caa170d6a6ef14ef74f0d97bc10";
+ sha256 = "0fvadc5fdnpph163w67bn4pc8k856lyhlr1pnmjhpnnmzrrs36ch";
+ };
+ recipeFile = fetchurl {
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/11861edd9c7f9deebd44fd1f8ef648e7a04caf2b/recipes/elpa-clone";
+ sha256 = "172gpmpwf75y41n3v05l47w34x83vy63bqk97fd8a6b4dkj91lqa";
+ name = "elpa-clone";
+ };
+ packageRequires = [ cl-lib ];
+ meta = {
+ homepage = "https://melpa.org/#/elpa-clone";
+ license = lib.licenses.free;
+ };
+ }) {};
elpa-mirror = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "elpa-mirror";
@@ -6996,7 +7185,7 @@
sha256 = "0h2xhys3cc9z61ax0ymg5fbsjg6192hwdvfhgmyq7vwibi402r1f";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/elpa-mirror";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/d64ce7042c45f29fb394be25ce415912182bac8b/recipes/elpa-mirror";
sha256 = "1jnviav2ybr13cgllg26kfjrwrl25adggnqiiwyjwgbbzxfycah8";
name = "elpa-mirror";
};
@@ -7017,7 +7206,7 @@
sha256 = "1x4asq5zqv8wbp034gzcrza9y2nbbwx1nrwi4jnwak0x0yn3c2dj";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/elpy";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/a36daf2b034653cd73ee2db2bc30df2a5be6f3d1/recipes/elpy";
sha256 = "0n802bh7jj9zgz84xjrxvy33jl6s3hj5dqxafyfr87fank97hb6d";
name = "elpy";
};
@@ -7044,7 +7233,7 @@
sha256 = "14hwl5jzmm43qa4jbpsyswbz4hk1l2iwqh3ank6502bz58877k6c";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/elscreen-mew";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/47404ea3cfb591b780ca7e31095951a708b0a6b7/recipes/elscreen-mew";
sha256 = "06g4wcfjs036nn64ac0zsvr08cfmak2hyj83y7a0r35yxr1853w4";
name = "elscreen-mew";
};
@@ -7065,7 +7254,7 @@
sha256 = "06g7fl2c7cvwsrgi462wf6j13ny56y6zvgkizz9f256xjjq77ymf";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/elscreen-persist";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/c30ec71dcc29d1d0fd6c54de512c8c4636a7e0a6/recipes/elscreen-persist";
sha256 = "1rjfvpsx0y5l9b76wa1ilj5lx39jd0m78nb1a4bqn81z0rkfpl4k";
name = "elscreen-persist";
};
@@ -7086,7 +7275,7 @@
sha256 = "1k7npf93xbmrsq607x8zlgrpzqvplgia3ixz5w1lr1jlv1m2m8x2";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/elwm";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/0eb45a6141b797243973695be4c0582c9ad6965d/recipes/elwm";
sha256 = "0rf663ih3lfg4n4pj4dpp133967zha5m1wr46riaxpha7xr59al9";
name = "elwm";
};
@@ -7107,7 +7296,7 @@
sha256 = "07k8kq444ki7pxbz3vnrwqgycm9hfcdxgsnvf7qihqvzs2y1qm3d";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/elx";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/91430562ecea439af020e96405ec3f21d768cf9f/recipes/elx";
sha256 = "02nq66c0sds61k2p8cn2l0p2l8ysb38ibr038qn41l9hg1dq065x";
name = "elx";
};
@@ -7128,7 +7317,7 @@
sha256 = "0b9hr3xg53nap6sik9d2cwqi8vfwzv8yqjcin4hab6rg2fkr5mra";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/emacs-eclim";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/a38eea3d0fd02c12f6ec8aef6e4cc46eedf25753/recipes/emacs-eclim";
sha256 = "1l55jhz5mb3bqw90cbf4jhcqgwj962br706qhm2wn5i2a1mg8xlv";
name = "emacs-eclim";
};
@@ -7149,7 +7338,7 @@
sha256 = "15l3ab11vcmzqibkd6h5zqw5a83k8dmgcp4n26px29c0gv6bkpy8";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/emacs-setup";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/abb7101b2d48af56af09d1dc85c540300dba7b3c/recipes/emacs-setup";
sha256 = "1x4rh8vx6fsb2d6dz2g9j6jamin1vmpppwy3yzbl1dnf7w4hx4kh";
name = "emacs-setup";
};
@@ -7170,7 +7359,7 @@
sha256 = "0ciqxyahlzaxq854jm25zbrbmrhcaj5csdhxa0az9crwha8wkmw2";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/emacsagist";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/07612d46faebb28e1eeb8ddae2ac20e2dc0175f6/recipes/emacsagist";
sha256 = "1cyz7nf0zxa21979jf5kdmkgwiyd17vsmpcmrw1af37ly27l8l64";
name = "emacsagist";
};
@@ -7191,7 +7380,7 @@
sha256 = "1r6cpb7fck5znb7q7zrxcsjn7d3xiqhq8dp1ar1rsd6k4h05by4j";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/emacsc";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/acc9b816796b9f142c53f90593952b43c962d2d8/recipes/emacsc";
sha256 = "1fbf9al3yds0il18jz6hbpj1fsjlpb1kgp450gb6r09lc46x77mk";
name = "emacsc";
};
@@ -7212,7 +7401,7 @@
sha256 = "1wc5hkirza6b4c0v557ihzbffvxy97pfcn5samcggbmrir5kpshw";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/emacsql";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/9cc47c05fb0d282531c9560252090586e9f6196e/recipes/emacsql";
sha256 = "1x4rn8dmgz871dhz878i2mqci576zccf9i2xmq2ishxgqm0hp8ax";
name = "emacsql";
};
@@ -7233,7 +7422,7 @@
sha256 = "1wc5hkirza6b4c0v557ihzbffvxy97pfcn5samcggbmrir5kpshw";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/emacsql-mysql";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/9cc47c05fb0d282531c9560252090586e9f6196e/recipes/emacsql-mysql";
sha256 = "1c20zhpdzfqjds6kcjhiq1m5ch53fsx6n1xk30i35kkg1wxaaqzy";
name = "emacsql-mysql";
};
@@ -7254,7 +7443,7 @@
sha256 = "1wc5hkirza6b4c0v557ihzbffvxy97pfcn5samcggbmrir5kpshw";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/emacsql-psql";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/9cc47c05fb0d282531c9560252090586e9f6196e/recipes/emacsql-psql";
sha256 = "1aa1g9jyjmz6w0lmi2cf67926ad3xvs0qsg7lrccnllr9k0flly3";
name = "emacsql-psql";
};
@@ -7275,7 +7464,7 @@
sha256 = "1wc5hkirza6b4c0v557ihzbffvxy97pfcn5samcggbmrir5kpshw";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/emacsql-sqlite";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/9cc47c05fb0d282531c9560252090586e9f6196e/recipes/emacsql-sqlite";
sha256 = "1vywq3ypcs61s60y7x0ac8rdm9yj43iwzxh8gk9zdyrcn9qpis0i";
name = "emacsql-sqlite";
};
@@ -7296,7 +7485,7 @@
sha256 = "00q344vgihl2s0snibfwsjvxqkbvy2jlqnnid7qw5gcni673b2hl";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/emacsshot";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/efdd85accc6053f92efcbfdb7ddc37b23a07a3b0/recipes/emacsshot";
sha256 = "08xqx017yfizdj8wz7nbh9i7qpar6398sri78abzf78inv828s9j";
name = "emacsshot";
};
@@ -7317,7 +7506,7 @@
sha256 = "1a9925n0jcgxcgiz2kmh9zbb1rg9039rlrbr9fr80by9znfwmy67";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/emamux";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/6de1ed3dfccb9f7e7b8586e8334af472a4988840/recipes/emamux";
sha256 = "1pg0gzi8rn0yafssrsiqdyj5dbfy984srq1r4dpp8p3bi3n0fkfz";
name = "emamux";
};
@@ -7338,7 +7527,7 @@
sha256 = "1sagmgcarg7d7b7hv3bqgkxg39fzgxaaq7wz9cf7fpwz0pv8vfy6";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/embrace";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/e8f07e3b5ba4ec4b0b79fba5a2cca5a3986218b6/recipes/embrace";
sha256 = "1w9zp9n91703d6jd4adl2xk574wsr7fm2a9v32b1i9bi3hr0hdjc";
name = "embrace";
};
@@ -7359,7 +7548,7 @@
sha256 = "1dsa85bk33j90h1ypaz1ylqh9yp2xvlga237h3kwa5y3sb0d5ydi";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/emmet-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/7fabdb05de9b8ec18a3a566f99688b50443b6b44/recipes/emmet-mode";
sha256 = "0wjv4hqddjvbdrmsxzav5rpwnm2n6lr86jzkrnav8f2kyzypdsnr";
name = "emmet-mode";
};
@@ -7375,10 +7564,10 @@
src = fetchgit {
url = "git://git.sv.gnu.org/emms.git";
rev = "c1e1a843c3389fc585908de367ff00fdd6470965";
- sha256 = "04gdji7gjpwg8mfpah0z7hvghs2p4k0qi90ln6cq48z927dpa4ip";
+ sha256 = "0q8grh20mzz8yashvzwx8s8hr761xmi6s81mjw8cjqzajm4ky8q3";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/emms";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/205eeed002b0848809a4c5f8ad99d925b48799ec/recipes/emms";
sha256 = "0kzli8b0z5maizfwhlhph1f5w3v6pwxvs2dfs90l8c0h97m4yy2m";
name = "emms";
};
@@ -7399,7 +7588,7 @@
sha256 = "0q80f0plch6k4lhs8c9qm3mfycfbp3kn5sjrk9zxgxwnn901y9mp";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/emms-mode-line-cycle";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/dab676acd774616a32a0373f30647f3cb4522afc/recipes/emms-mode-line-cycle";
sha256 = "1jdmfh1i9v84iy7bj2dbc3s2wfzkrby3pabd99gnqzd9gn1cn8ca";
name = "emms-mode-line-cycle";
};
@@ -7412,15 +7601,15 @@
emms-player-mpv = callPackage ({ emms, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "emms-player-mpv";
- version = "0.0.8";
+ version = "0.0.9";
src = fetchFromGitHub {
owner = "dochang";
repo = "emms-player-mpv";
- rev = "69ebe6d9539769d4c4daa484693ec0d6f67a3cca";
- sha256 = "104iw4bl6y33diqs5ayrvdljkhb6f9g2m5p5kh8klgy7z1yjhp4p";
+ rev = "d8535614f340cd9f0ff7db3404439b58f028ca9e";
+ sha256 = "1k3jmmg3jy691b3vraaxv9qncfa3698g9kalb7fyrpmdvy1p2cc6";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/emms-player-mpv";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/9679cb8d4b3b9dce1e0bff16647ea3f3e02c4189/recipes/emms-player-mpv";
sha256 = "175rmqx3bgys4chw8ylyf9rk07sg0llwbs9ivrv2d3ayhcz1lg9y";
name = "emms-player-mpv";
};
@@ -7441,7 +7630,7 @@
sha256 = "15bb8fp2lwr5brfrsjwa47yvja5g2wyaac5a4sh5rn734s64x2sq";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/emms-player-simple-mpv";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/f4eaa866ba6b0ad2b590fb15c30f81b9fdbef6dd/recipes/emms-player-simple-mpv";
sha256 = "15aljprjd74ha7wpzsmv3d873i6fy3x1jwhzm03hvw0sw18m25i1";
name = "emms-player-simple-mpv";
};
@@ -7462,7 +7651,7 @@
sha256 = "1kipxa9ax8zi9qqk19mknpg7nnlzgr734kh9bnklydipwnsy00pi";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/emms-state";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/8f2798e22c6ccbadf73e65d8a8d901e47f55cb83/recipes/emms-state";
sha256 = "080y02hxxqfn0a0dhq5vm0r020v2q3h1612a2zkq5fxi8ssvhp9i";
name = "emms-state";
};
@@ -7483,7 +7672,7 @@
sha256 = "1rk7am0xvpnv98yi7a62wlyh576md4n2ddj7nm201bjd4wdl2yxk";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/emoji-cheat-sheet-plus";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/ffbfae9577673ef8d50b55624f94288e315deba4/recipes/emoji-cheat-sheet-plus";
sha256 = "1ciwlbw0ihm0p5gnnl3safcj7dxwiy53bkj8cmw3i334al0gjnnv";
name = "emoji-cheat-sheet-plus";
};
@@ -7504,7 +7693,7 @@
sha256 = "0qi7p1grann3mhaq8kc0yc27cp9fm983g2gaqddljchn7lmgagrr";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/emoji-fontset";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/60df435eb82fcc9a8a02a0a271bb6a2d5a161bc4/recipes/emoji-fontset";
sha256 = "19affsvlm1rzrzdh1k6xsv79icdkzx4izxivrd2ia6y2wcg9wc5d";
name = "emoji-fontset";
};
@@ -7525,7 +7714,7 @@
sha256 = "0nrf6p4h66i17nz850kpdrnk5h5ra4l3icjjrq34sxvmsssp6zhp";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/emojify";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/488d2751b5fd3bf00f5a6f0545530f44563b86d7/recipes/emojify";
sha256 = "1sgd32qm43hwby75a9q2pz1yfzj988i35d8p9f18zvbxypy7b2yp";
name = "emojify";
};
@@ -7546,7 +7735,7 @@
sha256 = "0pl7i2a0mf2s33qpsc14dcvqbl6jm5xrvcnrhfr7visvnih29cy4";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/emr";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/2cd2ebec5bd6465bffed284130e1d534f52169a9/recipes/emr";
sha256 = "05vpfxg6lviclnms2zyrza8dc87m60mimlwd11ihvsbngi9gcw8x";
name = "emr";
};
@@ -7577,7 +7766,7 @@
sha256 = "1dsa3r39ip20ddbw0m9vq8z3r4ahrxvb37adyqi4mbdgyr6fq6sw";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/engine-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/ea1b5dfb6628cf17e77369f25341835aad425f54/recipes/engine-mode";
sha256 = "1gg7i93163m7k7lr3pnal1svymnhzwrfpfcdc0798d7ybv26gg8c";
name = "engine-mode";
};
@@ -7598,7 +7787,7 @@
sha256 = "08j6b79vy8ry4ad1abk3hvxjbb4ylrhkvrbrnq1gcikl4h1p2v63";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/enlive";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/388fa2580e687d9608b11cdc069841831b414b29/recipes/enlive";
sha256 = "1dyayk37zik12qfh8zbjmhsch64yqsx3acrlm7hcnavx465hmhnz";
name = "enlive";
};
@@ -7619,7 +7808,7 @@
sha256 = "1in4wbwkxn8qfcsfjbczzk73z74w4ixlml61wk666dw0kpscgbs5";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/enotify";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/f10631b740eea56e7209d7e84f0da8613274ef1d/recipes/enotify";
sha256 = "0mii6m6zw9y8njgzi79rcf1n251iw7qz3yqjjij3c19rk3zpm5qi";
name = "enotify";
};
@@ -7640,7 +7829,7 @@
sha256 = "1yn9jn6jl6rmknj50g18z5yvpa1d8mzzx3j1pfdwfn36ak4nc9ba";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/eopengrok";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/2b87ea158a6fdbc6b4e40fd7c0f6814d135f8545/recipes/eopengrok";
sha256 = "0756x78113286hwk1i1m5s8xq04gh7zxb4fkmw58lg2ssff8q6av";
name = "eopengrok";
};
@@ -7661,7 +7850,7 @@
sha256 = "05r2m7zghbdrgscg0x78jnhk1g6fq8iylar4cx699zm6pzvlq98z";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/epc";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/8bc29a8d518ce7a584277089bd4654f52ac0f358/recipes/epc";
sha256 = "1l9rcx07pa4b9z5654gyw6b64c95lcigzg15amphwr56v2g3rbzx";
name = "epc";
};
@@ -7682,7 +7871,7 @@
sha256 = "18am0nc2kjxbnkls7dl9j47cynwiiafx8w6rqa4d9dyx7khl2rmp";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/epkg";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/c97468a71910ba6709792c060c1fb714004e24da/recipes/epkg";
sha256 = "0vc1g29rfmgd2ks4lbz4599rbgcax7rgdva53ahhvp6say8fy22q";
name = "epkg";
};
@@ -7703,7 +7892,7 @@
sha256 = "0sjxd5y5hxhrbgfkpwx6m724r3841b53hgc61a0g5zwispw5pmrr";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/epl";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/9c6cf24e86d8865bd2e4b405466118de1894851f/recipes/epl";
sha256 = "0zr3r2hn9jaxscrl83hyixznb8l5dzfr6fsac76aa8x12xgsc5hn";
name = "epl";
};
@@ -7716,15 +7905,15 @@
epm = callPackage ({ emacs, epl, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "epm";
- version = "0.1beta1";
+ version = "0.1beta2";
src = fetchFromGitHub {
owner = "xuchunyang";
repo = "epm";
- rev = "2ee9a69d725a77ac4e57cc652ce4b4cfd1fef63a";
- sha256 = "1kjkb2cvpkbbcvlq64imnv5ispkf3yrj4f5acagd32jx7gcgxfj8";
+ rev = "ee004d00c8c8fbe32c4e5baf6279c5e68dc5f201";
+ sha256 = "0llkgjqr9hl66nya1ppvrlcvmy3rh4pwc25ywq4zi0fbl25qsf5d";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/epm";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/e12e8ae2e8e8aff7cbd75a951dd328cb9ccf58b0/recipes/epm";
sha256 = "0k94qhzxjzw5d0c53jnyx1xfciwr9qib845awyjaybzzs34s8r08";
name = "epm";
};
@@ -7745,7 +7934,7 @@
sha256 = "1xw56sir6gkr0p9g4s6p4qc0rajnl6ifbzrky07j28y9vsa59nsz";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/erc-crypt";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/a1a71b46c0370d2ed25aa3f39983048a04576ad5/recipes/erc-crypt";
sha256 = "1mzzqcxjnll4d9r9n5z80zfb3ywkd8jx6b49g02vwf1iak9h7hv3";
name = "erc-crypt";
};
@@ -7765,7 +7954,7 @@
sha256 = "11a64rvhd88val6vg9l1d5j3zdjd0bbbwcqilj0wp6rbn57xy0w8";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/erc-hipchatify";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/b60e01e7064ce486fdac3d1b39fd4a1296b0dac5/recipes/erc-hipchatify";
sha256 = "1a4gl05i757vvap0rzrfwms7mhw80sa84gvbwafrvj3x11rja24x";
name = "erc-hipchatify";
};
@@ -7786,7 +7975,7 @@
sha256 = "1k0g3bwp3w0dd6zwdv6k2wpqs2krjayilrzsr1hli649ljcx55d7";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/erc-hl-nicks";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/321ae5999351637a2cd97ec1bf4668d68f569ee4/recipes/erc-hl-nicks";
sha256 = "1lhw77n2nrjnb5yhnpm6yhbcp022xxjcmdgqf21z9rd0igss9mja";
name = "erc-hl-nicks";
};
@@ -7807,7 +7996,7 @@
sha256 = "1xsxykmhz34gmyj4jb26qfai7j95kzlc7vfydrajc6is7xlrwhfk";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/erc-twitch";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/46f8640b24bade45cc729eeb370adf959f99526f/recipes/erc-twitch";
sha256 = "08vlwcxrzc2ndm52112z1r0qnz6jlmjhiwq2j3j59fbw82ys61ia";
name = "erc-twitch";
};
@@ -7828,7 +8017,7 @@
sha256 = "0kh4amx3l3a14qaiyvjyak1jbybs6n49mdvzjrd1i2vd1y74zj5w";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/erc-youtube";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/a80ee9617a30a8ad1d457a0b0c7f35e6ec1c0bb2/recipes/erc-youtube";
sha256 = "12ylxkskkgfv5x7vlkib963ichb3rlmdzkf4zh8a39cgl8wsmacx";
name = "erc-youtube";
};
@@ -7849,7 +8038,7 @@
sha256 = "19jninbf0dhdw3kn4d38bxmklg0v7sh3m9dwj6z69w99r5pcw480";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ercn";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/a12f264653d79224adeb5d0ae76518dc408ff1e9/recipes/ercn";
sha256 = "0yvis02bypw6v1zv7i326y8s6j0id558n0bdri52hr5pw85imnlp";
name = "ercn";
};
@@ -7870,7 +8059,7 @@
sha256 = "17i567nfm0rykimh6bpcc5f2l7wsf8zcdy2jzd7sgrl54dvb0g9i";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/erefactor";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/18063e16a6f556b1871e1a5b74e353a85a794e63/recipes/erefactor";
sha256 = "0ma9sbrq4n8y5w7vvbhhgmw25aiykbq5yhxzm0knj32bgpviprw7";
name = "erefactor";
};
@@ -7891,7 +8080,7 @@
sha256 = "19m6chwc2awbsk5z03q1yhq84m481pff2609a8bxymcvm6yaamvf";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ergoemacs-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/02920517987c7fc698de9952cbb09dfd41517c40/recipes/ergoemacs-mode";
sha256 = "0h99m0n3q41lw5fm33pc1405lrxyc8rzghnc6c7j4a6gr1d82s62";
name = "ergoemacs-mode";
};
@@ -7904,15 +8093,15 @@
erlang = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "erlang";
- version = "19.0pre2";
+ version = "19.0.1";
src = fetchFromGitHub {
owner = "erlang";
repo = "otp";
- rev = "2c9dba638a8bda92e3db2d5c07e6ba251330c7ca";
- sha256 = "1iix7lnz8crza36yk7kmfh4qw84jjqmdbiflcm52rrq9jmpw176y";
+ rev = "0573efbc18fc20f8646cf3ff64d2affd06e03cb8";
+ sha256 = "12hi5x6lycss83i8pskill1s2c3lyxvj2cljd1hrm0pzd3kjnidd";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/erlang";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/04867a574773e8794335a2664d4f5e8b243f3ec9/recipes/erlang";
sha256 = "1gmrdkfanivb9l5lmkl0853snlhl62w34537r82w11z2fbk9lxhc";
name = "erlang";
};
@@ -7933,7 +8122,7 @@
sha256 = "0hn9i405nfhjd1h9vnwj43nxbbz00khrwkjq0acfyxjaz1shfac9";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ert-async";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/2ec669e3fc73b0b499b84cec87d0f8621274732e/recipes/ert-async";
sha256 = "004798ckri5j72j0xvzkyciss1iz4lw9gya2749hkjxlamg14cn5";
name = "ert-async";
};
@@ -7950,10 +8139,10 @@
src = fetchgit {
url = "https://bitbucket.org/olanilsson/ert-junit";
rev = "341c755e7b60f8d2081303951377968b1d1a6c23";
- sha256 = "1hsp0jp9gyfr6rhfsjgi55x4lqjlh1w13y90rrlnbxb0499zpa33";
+ sha256 = "0y06i97bbim6lmvk8l3adifwzhkjyrgyxv02ksshk4npr0b627gx";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ert-junit";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/27c627eacab54896a1363dbabc56250a65343dd8/recipes/ert-junit";
sha256 = "0bv22mhh1ahbjwi6s1csxkh11dmy0srabkddjd33l4havykxlg6g";
name = "ert-junit";
};
@@ -7974,7 +8163,7 @@
sha256 = "0rdgdslspzb4s0n4a68hnwfm8vm8baasa8nzrdinf0nryn7rrhbf";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ert-runner";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/0a1acc68f296e80b6ed99a1783e9f67be54ffac9/recipes/ert-runner";
sha256 = "0fnb8rmjr5lvc3dq0fnyxhws8ync1lj5xp8ycs63z4ax6gmdqr48";
name = "ert-runner";
};
@@ -7995,7 +8184,7 @@
sha256 = "0jq4yp80wiphlpsc0429rg8n50g8l4lf78q0l3nywz2p93smjy9b";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/es-lib";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/f10631b740eea56e7209d7e84f0da8613274ef1d/recipes/es-lib";
sha256 = "0mwvgf5385qsp91zsdw75ipif1h90xy277xdmrpwixsxd7abbn0n";
name = "es-lib";
};
@@ -8016,7 +8205,7 @@
sha256 = "04lll5sscbpqcq3sv5gsfky5qcj6asqql7fw1bp6g12qqf9r02nd";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/es-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/85445b59329bfd81a3fd913d7d6fe7784c31744c/recipes/es-mode";
sha256 = "1541c7d8gbi4mgxwk886hgsxhq7bfx8is7hjjg80sfn40z6kdwcp";
name = "es-mode";
};
@@ -8037,7 +8226,7 @@
sha256 = "0cjchwrhk7bw87bg10zgcwkga50rvs0jn5v2jf6bbsxbcqx2nfc9";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/es-windows";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/944d4cd54e040d2a58e1778cb282727deee83f92/recipes/es-windows";
sha256 = "112ngkan0hv3y7m71479f46x5gwdmf0vhbqrzs5kcjwlacqlrahx";
name = "es-windows";
};
@@ -8058,7 +8247,7 @@
sha256 = "0cairmqsaghl2ddb2v8zhcwy5ik756m7gkair8xrbigz4jklpcv9";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/esa";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/f40e277af4001d367099360d4342d9c1ab925f59/recipes/esa";
sha256 = "1kbsv4xsp7p9v0g22had0dr7w5zsr24bgi2xzryy76699pxq4h6c";
name = "esa";
};
@@ -8079,7 +8268,7 @@
sha256 = "0nkmwwx224r50y2xnrz3v26l3ngqshvy5hs861gy4zagwllqfmvc";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/eshell-autojump";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/68bd1a8ec9d17eff2d23e15b3686f7c0b8723126/recipes/eshell-autojump";
sha256 = "09l2680hknmdbwr4cncv1v4b0adik0c3sm5i9m3qbwyyxm8m41i5";
name = "eshell-autojump";
};
@@ -8100,7 +8289,7 @@
sha256 = "179xqh0rs8w3d03gygg9sy4qp5xqgfgl4c0ycrknip9zrnbmph4i";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/eshell-z";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/8079cecaa59ad2ef22812960838123effc46a9b3/recipes/eshell-z";
sha256 = "14ixazj0nscyqsdv7brqnfr0q8llir1pwb91yhl9jdqypmadpm6d";
name = "eshell-z";
};
@@ -8121,7 +8310,7 @@
sha256 = "16r4j27j9yfdiy841w9q5ykkc6n3wrm7hvfacagb32mydk821ijg";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/espuds";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/14cf66e6929db2a0f377612e786aaed9eb12b799/recipes/espuds";
sha256 = "16yzw9l64ahf5v92jzb7vyb4zqxxplq6qh0y9rkfmvm59s4nhk6c";
name = "espuds";
};
@@ -8142,7 +8331,7 @@
sha256 = "0lvr14xlxsdad4ihywkpbwwj9lyal0w4p616ska5rk7gg5i8v74p";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ess";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/12997b9e2407d782b3d2fcd2843f7c8b22442c0a/recipes/ess";
sha256 = "02kz4fjxr0vrj5mg13cq758nzykizq4dmsijraxv46snvh337v5i";
name = "ess";
};
@@ -8163,7 +8352,7 @@
sha256 = "1ya2ay52gkrd31pmw45ban8kkxgnzhhwkzkypwdhjfccq3ys835x";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ess-R-data-view";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/492c90bd0ee97c0b895efa0c5e647b2becc6db11/recipes/ess-R-data-view";
sha256 = "0r2fzwayf3yb7fqk6f31x4xfqiiczwik8qw4rrvkqx2h3s1kz7i0";
name = "ess-R-data-view";
};
@@ -8184,7 +8373,7 @@
sha256 = "0q8pbaa6wahli6fh0kng5zmnypsxi1fr2bzs2mfk3h8vf4nikpv0";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ess-R-object-popup";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/8783caab9019623ade5c369a4713eba996507bd0/recipes/ess-R-object-popup";
sha256 = "1dxwgahfki6d6ywh85ifk3kq6f2a1114kkd8xcv4lcpzqykp93zj";
name = "ess-R-object-popup";
};
@@ -8205,7 +8394,7 @@
sha256 = "1avb6dng4xgw3bp7bw0j60wl6s4y26alfys9vwwj29rlzvjrlh74";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ess-smart-underscore";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/b4d6166f5c80cf37c79256402fa633ad2274d065/recipes/ess-smart-underscore";
sha256 = "01pki1xa8zpgvldcbjwg6vmslj7ddf44hsx976xipc95vrdk15r2";
name = "ess-smart-underscore";
};
@@ -8226,7 +8415,7 @@
sha256 = "1pzbd2ka6h5ipiivfwfgq1hq80ww59xvyldmx406mdd5vn7yqk5z";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/esup";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/b9d2948a42da5d4864404d2d11a924a4f235fc3b/recipes/esup";
sha256 = "0cv3zc2zzm38ki3kxq58g9sp4gsk3dffa398wky6z83a3zc02zs0";
name = "esup";
};
@@ -8247,7 +8436,7 @@
sha256 = "0k4vqlbk3h2snfiriraxhnjpdxgs49vcaazl191p9s2f799msd8p";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/esxml";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/fd4381bbb725cb4a17d741f604698b38c95da475/recipes/esxml";
sha256 = "0nn074abkxz7p4w59l1za586p5ya392xhl3sx92yys8a3194n6hz";
name = "esxml";
};
@@ -8268,7 +8457,7 @@
sha256 = "1xqc4lqzirpmr21w766g8vmcvvsq8b3hv9i7r27i5x1g0j4jabja";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ethan-wspace";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/9454f3a58e3416fa60d8411b0db19c408935408f/recipes/ethan-wspace";
sha256 = "0k4kqkf5c6ysyhh1vpi9v4220yxm5ir3ippq2gmvvhnk77pg6hws";
name = "ethan-wspace";
};
@@ -8289,7 +8478,7 @@
sha256 = "077rj7yj6laxyhcsmrmlpg438962jv0fm2yiqx6i365fbgyx0hck";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/eval-in-repl";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/0bee5fb7a7874dd20babd1de7f216c5bda3e0115/recipes/eval-in-repl";
sha256 = "10h5vy9wdiqf9dgk1d1bsvp93y8sfcxghzg8zbhhn7m5cqg2wh63";
name = "eval-in-repl";
};
@@ -8310,7 +8499,7 @@
sha256 = "0lwpl9akdxml9f51pgsv0g7k7mr8dvqm94l01i7vq8jl6vd6v6i5";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/eval-sexp-fu";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/4b1a896521cac1f54f7571ad5837ff215d01044d/recipes/eval-sexp-fu";
sha256 = "17cazf81z4cszflnfp66zyq2cclw5sp9539pxskdf267cf7r0ycs";
name = "eval-sexp-fu";
};
@@ -8331,7 +8520,7 @@
sha256 = "1a3y69s7lb24zdivxcpsjh9l6adxyjqxbpgradnj0q1n6kdyq679";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/evalator";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/544a503d72c0a501f9ca854cd11181a7783294a3/recipes/evalator";
sha256 = "0k6alxwg89gc4v5m2bxmzmj7l6kywhbh4036xgz19q28xnlbr9xk";
name = "evalator";
};
@@ -8347,11 +8536,11 @@
version = "1.2.12";
src = fetchhg {
url = "https://bitbucket.com/lyro/evil";
- rev = "136e0e5a8fc4";
- sha256 = "1f5kdaj0gh3kcqlsxly8kiq2a9k75j6nwnvjwwxl6c8n6rljly3a";
+ rev = "3f1515976813";
+ sha256 = "1wjw3pg44axqa72mvpifsqch96pg722x16cvnhlq2i8a6y42fms5";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/evil";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/5b7972602399f9df9139cff177e38653bb0f43ed/recipes/evil";
sha256 = "09qrhy7l229w0qk3ba1i2xg4vqz8525v8scrbm031lqp30jp54hc";
name = "evil";
};
@@ -8372,7 +8561,7 @@
sha256 = "0lw7fg4gqwj30r0l6k2ni36sxqkf65zf0d0z3rxnpwbxlf8dlkrr";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/evil-anzu";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/06b0609b56016d938b28d56d9eeb6305116b38af/recipes/evil-anzu";
sha256 = "19cmc61l370mm4h2m6jw5pdcsvj4wcv9zpa8z7k1fjg57mwmmn70";
name = "evil-anzu";
};
@@ -8393,7 +8582,7 @@
sha256 = "1nh7wa4ynr7ln42x32znzqsmh7ijzy5ymd7rszf49l8677alvazq";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/evil-args";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/0976c82a22f1a8701b9da0b8ba4753ed48191376/recipes/evil-args";
sha256 = "1bwdvf1i3jc77bw2as1wr1djm8z3a7wms60694xkyqh0m909hs2w";
name = "evil-args";
};
@@ -8414,7 +8603,7 @@
sha256 = "183fdg7rmnnbps0knnj2kmhf1hxk0q91wbqx1flhciq6wq4rilni";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/evil-commentary";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/fe5b05152c919d49ddd920b1bd5ffc351141fa0d/recipes/evil-commentary";
sha256 = "151iiimmkpn58pl9zn40qssfahbrqy83axyl9dcd6kx2ywv5gcxz";
name = "evil-commentary";
};
@@ -8435,7 +8624,7 @@
sha256 = "0cj17gk7cxia2p9xzqnlnmqqbw2afd3x61gfw9fpf65j9wik5hbz";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/evil-escape";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/770fc6dd82c4d30f98e973958044e4d47b8fd127/recipes/evil-escape";
sha256 = "0rlwnnshcvsb5kn7db5qy39s89qmqlllvg2z8cnxyri8bsssks4k";
name = "evil-escape";
};
@@ -8456,7 +8645,7 @@
sha256 = "0r9gif2sgf84z8qniz6chr32av9g2i38rlyms81m8ssghf0j86ss";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/evil-iedit-state";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/b0b6b7d09c023cfe34da65fa1eb8f3fdbe7b1290/recipes/evil-iedit-state";
sha256 = "1dihyh7vqcp7kvfic613k7v33czr93hz04d635awrsyzgy8savhl";
name = "evil-iedit-state";
};
@@ -8477,7 +8666,7 @@
sha256 = "1k2zinchs0jjllp8zkpggckyy63dkyi5yig3p46vh4w45jdzysk5";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/evil-leader";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/cae2ac3513e371a256be0f1a7468e38e686c2487/recipes/evil-leader";
sha256 = "154s2nb170hzksmc87wnzlwg3ic3w3ravgsfvwkyfi2q285vmra6";
name = "evil-leader";
};
@@ -8498,7 +8687,7 @@
sha256 = "1n6r8xs670r5qp4b5f72nr9g8nlqcrx1v7yqqlbkgv8gns8n5xgh";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/evil-lisp-state";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/4ef683cb1707a481e26dc89b5491ec18e5b20ad1/recipes/evil-lisp-state";
sha256 = "117irac05fs73n7sgja3zd7yh4nz9h0gw5b1b57lfkav6y3ndgcy";
name = "evil-lisp-state";
};
@@ -8519,7 +8708,7 @@
sha256 = "040iam8ayb4q5f2w2cn40y9rgljv2gsa5yf0vky1ayjf1zl57g3n";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/evil-magit";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/cfc6cc3581323c81d5f347895aaddfdc71001f22/recipes/evil-magit";
sha256 = "10mhq6mzpklk5sj28lvd478dv9k84s81ax5jkwwxj26mqdw1ybg6";
name = "evil-magit";
};
@@ -8540,7 +8729,7 @@
sha256 = "01hccc49xxb6lnzr0lwkkwndbk4sv0jyyz3khbcxsgkpzjiydihv";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/evil-mark-replace";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/089accfa2646fc4f265cb8e9b9a05dcf5aa4c4f6/recipes/evil-mark-replace";
sha256 = "03cq43vlv1b53w4kw7mjvk026i8rzhhryfb27ddn6ipgc6xh68a0";
name = "evil-mark-replace";
};
@@ -8561,7 +8750,7 @@
sha256 = "0x6rc98g7hvvmlgq31n7qanylrld6dzvg6n8qgzp4s544l0dwfw6";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/evil-matchit";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/aeab4a998bffbc784e8fb23927d348540baf9951/recipes/evil-matchit";
sha256 = "01z69n20qs4gngd28ry4kn825cax5km9hn96i87yrvq7nfa64swq";
name = "evil-matchit";
};
@@ -8582,7 +8771,7 @@
sha256 = "118a9bkj2i95xi4axa39mwm3nh519jzznzahbvlncf2279v8mrzr";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/evil-multiedit";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/997f5a6999d1add57fae33ba8eb3e3bc60d7bb56/recipes/evil-multiedit";
sha256 = "0p02q9skqw2zhx7sfadqgs7vn518s72856962dam0xw4sqasplfp";
name = "evil-multiedit";
};
@@ -8603,7 +8792,7 @@
sha256 = "16wn74690572n3xpxvnvka524fzswxxni3dy98bwpvsqj6yx2ds5";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/evil-nerd-commenter";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/a3e1ff69e7cc95a5b5d628524ad836833f4ee736/recipes/evil-nerd-commenter";
sha256 = "1pa5gh065hqn5mhs47qvjllwdwwafl0clk555mb6w7svq58r6i8d";
name = "evil-nerd-commenter";
};
@@ -8624,7 +8813,7 @@
sha256 = "13jg2xbh4p02x1nj77b6csb93hh56c1nv8kslcq2hjj3caipk4m8";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/evil-numbers";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/cae2ac3513e371a256be0f1a7468e38e686c2487/recipes/evil-numbers";
sha256 = "1lpmkklwjdf7ayhv99g9zh3l9hzrwm0hr0ijvbc7yz3n398zn1b2";
name = "evil-numbers";
};
@@ -8645,7 +8834,7 @@
sha256 = "09l0ph9rc941kr718zq0dw27fq6l7rb0h2003ihw7q0a5yr8fpk7";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/evil-org";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/5ec54af16e3dadce43ece7da3acb1cf2eab5d14b/recipes/evil-org";
sha256 = "18w07fbafry3wb87f55kd8y0yra3s18a52f3m5kkdlcz5zwagi1c";
name = "evil-org";
};
@@ -8666,7 +8855,7 @@
sha256 = "1ja9ggj70wf0nmma4xnc1zdzg2crq9h1cv3cj7cgwjmllflgkfq7";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/evil-quickscope";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/ec118caf243c74d243f533c9e12f7de0d6c43bc4/recipes/evil-quickscope";
sha256 = "0xym1mh4p68i00l1lshywf5fdg1vw3szxp3fk9fwfcg04z6vd489";
name = "evil-quickscope";
};
@@ -8687,7 +8876,7 @@
sha256 = "1xz629qv1ss1fap397k48piawcwl8lrybraq5449bw1vvn1a4d9f";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/evil-rsi";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/24f438b47e8ede0ef84261424c122d2ac28b90cb/recipes/evil-rsi";
sha256 = "0mc39n72420n36kwyf9zpw1pgyih0aigfnmkbywb0yxgj7myc345";
name = "evil-rsi";
};
@@ -8708,7 +8897,7 @@
sha256 = "1jfi2k9dm0cc9bx8klppm965ydhdw17a2n664199vhxrap6g27yk";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/evil-search-highlight-persist";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/91361f95852910968b395423e16377c70189fc55/recipes/evil-search-highlight-persist";
sha256 = "0iia136js364iygi1mydyzwvizhic6w5z9pbwmhva4654pq8dzqy";
name = "evil-search-highlight-persist";
};
@@ -8729,7 +8918,7 @@
sha256 = "0j2m3rsszivyjhv8bjid5fdqaf1vwp8rf55b27y4vc2489wrw415";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/evil-smartparens";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/850898fbfc8e0aeb779e8feae56476d989110e79/recipes/evil-smartparens";
sha256 = "1viwrd6gfqmwhlil80pk68dikn3cjf9ddsy0z781z3qfx0j35qza";
name = "evil-smartparens";
};
@@ -8750,7 +8939,7 @@
sha256 = "1ip2ibgsir6rhj7ci2f128z18n1yrwd6pg0i42j1flc3m4shs6ap";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/evil-snipe";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/6748f3febbe2f098761e967b4dc67791186d0aa7/recipes/evil-snipe";
sha256 = "0gcmpjw3iw7rjk86b2k6clfigp48vakfjd1a9n8qramhnc85rgkn";
name = "evil-snipe";
};
@@ -8771,7 +8960,7 @@
sha256 = "1rchanv0vq9rx6x69608dlpdybvkn8a9ymx8wzm7gqpz9qh6xqrk";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/evil-space";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/4e5a4b9427038f90898ac0e237e71ba7152501f5/recipes/evil-space";
sha256 = "1asvh873r1xgffvz3nr653yn8h5ifaphnafp6wf1b1mja6as7f23";
name = "evil-space";
};
@@ -8792,7 +8981,7 @@
sha256 = "0vsf7yzlb2j7c5c7cnk81y1979psy6a9v7klg6c2j9lkcn3cqpvj";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/evil-textobj-anyblock";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/36b734960313d4cb484cebaac0f112781436631c/recipes/evil-textobj-anyblock";
sha256 = "03vk30s2wkcszcjxmh5ww39rihnag9cp678wdzq4bnqy0c6rnjwa";
name = "evil-textobj-anyblock";
};
@@ -8813,7 +9002,7 @@
sha256 = "1rskvkmz30xyy8xfjf2i35f3dxh663gb3plfy3f0j6z17i086jl2";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/evil-tutor";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/4b7bfffdc34e181893b8cf4d1cc091f6c3f91126/recipes/evil-tutor";
sha256 = "1hvc2w5ykrgh62n4sxqqqcdk5sd7nmh6xzv4mir5vf9y2dgqcvsn";
name = "evil-tutor";
};
@@ -8834,7 +9023,7 @@
sha256 = "07cmql8zsqz1qchq2mp3qybbay499dk1yglisig6jfddcmrbbggz";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/evil-visual-mark-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/293cdd3387f26e4c8f21582d75a194963ac9cff7/recipes/evil-visual-mark-mode";
sha256 = "1qgr2dfhfz6imnlznicl7lplajd1s8wny7mlxs1bkms3xjcjfi48";
name = "evil-visual-mark-mode";
};
@@ -8855,7 +9044,7 @@
sha256 = "11y2jrwbsw4fcx77zkhj1cn2hl1zcdqy00bv3mpbcrs03jywssrk";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/evil-visualstar";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/578d33f3f8e68ef1b3ca3fb8af9b9ff77b649bd3/recipes/evil-visualstar";
sha256 = "135l9hjfbpn0a6p53picnpydi9qs5vrk2rfn64gxa5ag2apcyycy";
name = "evil-visualstar";
};
@@ -8876,7 +9065,7 @@
sha256 = "0739v0m9vj70a55z0canslyqgafzys815i7a0r6bxj2f9iwq6rhb";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/evm";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/bbcead697f745d197459f90ee05b172e35af2411/recipes/evm";
sha256 = "19l6cs5schbnph0pwhhj66gkxsswd4bmjpy79l9kxzpjf107wc03";
name = "evm";
};
@@ -8897,7 +9086,7 @@
sha256 = "0gs6bi3s2sszc6v2b26929azmn5513kvyin99n4d0ark1jdbjmv2";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/eww-lnum";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/62ffcf48bdb2df2bc9e6dd767c4ed9d605a5c839/recipes/eww-lnum";
sha256 = "1y745z4wa90snizq2g0amdwwgjafd6hkrayn93ca50f1wghdbk79";
name = "eww-lnum";
};
@@ -8910,15 +9099,15 @@
exec-path-from-shell = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "exec-path-from-shell";
- version = "1.10";
+ version = "1.11";
src = fetchFromGitHub {
owner = "purcell";
repo = "exec-path-from-shell";
- rev = "30c793b388312e5044afb7549b50996bf2b71941";
- sha256 = "0nhc3m88i6rl2y426ksmjbbaqwfrjnwbzqq1bvd6r0bkcwgfwfml";
+ rev = "4d6a6aa18031a4bbdd5b3bfad8686dc5ff942ab2";
+ sha256 = "0n86zj350jw1lxnaa450qmggza0za3a1zg9k9clwb9cjz4wwghsi";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/exec-path-from-shell";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/3d8545191031bece15cf1706d81ad1d064f2a4bd/recipes/exec-path-from-shell";
sha256 = "1j6f52qs1m43878ikl6nplgb72pdbxfznkfn66wyzcfiz2hrvvm9";
name = "exec-path-from-shell";
};
@@ -8939,7 +9128,7 @@
sha256 = "0rvkhjfkhamr3ys9iarblfwvwq7n4wishdjgnwj1lx7m80h1hzbg";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/expand-region";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/cae2ac3513e371a256be0f1a7468e38e686c2487/recipes/expand-region";
sha256 = "1c7f1nqsqdc75h22fxxnyg0m4yxj6l23sirk3c71fqj14paxqnwg";
name = "expand-region";
};
@@ -8960,7 +9149,7 @@
sha256 = "106yh793scbyharsk1dvrirkj3c6666w8jqilpkaz78vwyw3zs5y";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/express";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/9a97f5f81af13c49f5bea31455d7da0bf2c12e4f/recipes/express";
sha256 = "0lhisy4ds96bwpc7k8w9ws1zi1qh0d36nhxsp36bqzfi09ig0nb9";
name = "express";
};
@@ -8981,7 +9170,7 @@
sha256 = "1k2j8szavyq2wy5c0skvs03a88cr9njy7y63b7knh2m92nw4830d";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/extend-dnd";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/f2d866ca12cb997b7fad878808c0966f3413b73d/recipes/extend-dnd";
sha256 = "0rknpvp8yw051pg3blvmjpp3c9a82jw7f10mq67ggbz98w227417";
name = "extend-dnd";
};
@@ -8994,15 +9183,15 @@
eyebrowse = callPackage ({ dash, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "eyebrowse";
- version = "0.6.9";
+ version = "0.7.0";
src = fetchFromGitHub {
owner = "wasamasa";
repo = "eyebrowse";
- rev = "6d75409a81a6447765ad2171e3d0b5a272e1f207";
- sha256 = "0jc5wv2hkc89yh5ypa324xlfqdna20msr63g30njxq4g2vd0iqa7";
+ rev = "eb7dac9dba845cd73b57b9046761804969adec11";
+ sha256 = "0ynd4mq2vckyczfblw3r92lcbn4518jh3mzv5r11drlra9sdjnl8";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/eyebrowse";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/90d052bfc0b94cf177e33b2ffc01a45d254fc1b1/recipes/eyebrowse";
sha256 = "09fkzm8z8nkr4s9fbmfcjc80h50051f48v6n14l76xicglr5p861";
name = "eyebrowse";
};
@@ -9023,7 +9212,7 @@
sha256 = "095ka87144jms5gi9spjcmkq346a56kzzy3in6naaha0djd4d607";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/f";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/22ddcf536af597b688d8edb70b3636ed6c265bf5/recipes/f";
sha256 = "0s7fqav0dc9g4y5kqjjyqjs90gi34cahaxyx2s0kf9fwcgn23ja2";
name = "f";
};
@@ -9044,7 +9233,7 @@
sha256 = "0crhkdbxz1ldbrvppi95g005ni5zg99z1271rkrnk5i6cvc4hlq5";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/fabric";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/83939d2a4d5874244a4916eee9ae6b327af18b5d/recipes/fabric";
sha256 = "1mkblsakdhvi10b67bv3j0jsf7hr8lf9sibmprvx8smqsih7l88m";
name = "fabric";
};
@@ -9065,7 +9254,7 @@
sha256 = "01l8dlfpyy97b17djbza46rq11xlbkhd5kn2r26r2xac8klj4pka";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/factlog";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/9075a42edee1ac7de0812d2eefcba5681859eb6e/recipes/factlog";
sha256 = "163482vfpa52b5ya5xps4qnclbaql1x0q54gqdwwmm04as8qbfz7";
name = "factlog";
};
@@ -9086,7 +9275,7 @@
sha256 = "05lwcwf412m717yhwpjrswqkm8c3i7391rmiwv2k8xc1vk6dpp4g";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/fancy-battery";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/eae3af4145c534992d1c1ee5bb6420651c7c5d82/recipes/fancy-battery";
sha256 = "03rkfdkrzyal9abdiv8c73w10sm974hxf3xg5015hibfi6kzg8ii";
name = "fancy-battery";
};
@@ -9107,7 +9296,7 @@
sha256 = "10ds6nlzm1s5xsp53a52qlzrnph7in6gib67qhgnwpj33wp8gs91";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/fancy-narrow";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/1e6aed365c42987d64d0cd9a8a6178339b1b39e8/recipes/fancy-narrow";
sha256 = "15i86jz6rdpva1az7gqp1wbm8kispcfc8h6v9fqsbag9sbzvgcyv";
name = "fancy-narrow";
};
@@ -9120,15 +9309,15 @@
fastdef = callPackage ({ fetchFromGitHub, fetchurl, ivy, lib, melpaBuild, w3m }:
melpaBuild {
pname = "fastdef";
- version = "0.1.0";
+ version = "0.1.1";
src = fetchFromGitHub {
owner = "redguardtoo";
repo = "fastdef";
- rev = "602808385974db7a8e57b2980b3adc1bc61e4aec";
- sha256 = "0kidb2kwjyrz93yy9gnwwsb60xx3k6npni2gj8q38w50lql5ja2l";
+ rev = "b9e7427d65ca5a14db0d318cb799f6cc34c5c58a";
+ sha256 = "196agfqcd943wmd3kq6g0dwrqwrx93zn1r7yqj1wri60vv6b9p8q";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/fastdef";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/f6effb2fbccc71e8a44c53138e3c21f10dc55fbc/recipes/fastdef";
sha256 = "1cf4slxhcp2z7h9k3l31h06nnqsyb4smwnj55ivil2lm0fa0vlzj";
name = "fastdef";
};
@@ -9149,7 +9338,7 @@
sha256 = "0h32w63vv451797zi6206j529fd4j8l3fp7rqip3s8xn8d4728x1";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/fastnav";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/d2a7dce6617bf4ed250dba150e6787bf48891c64/recipes/fastnav";
sha256 = "08hg256w8k9f5nzgpyl1jykbf28vmvv09kkhzs0s2zhwbl2158a5";
name = "fastnav";
};
@@ -9162,15 +9351,15 @@
fcitx = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "fcitx";
- version = "0.2.1";
+ version = "0.2.2";
src = fetchFromGitHub {
owner = "cute-jumper";
repo = "fcitx.el";
- rev = "5e216df6df652599d921e00afb6e52a050f8cb50";
- sha256 = "03w68zbgprly45i6ps7iviwvjf3acbc7f7acvjpzj2plf0g5i19z";
+ rev = "77f1e187b9cecb6975bedcfe91c8c81f1b133686";
+ sha256 = "0n0v9jwswcc16cigyffvy3m9y7qqrs8qzjs11sq3d420zrv16b39";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/fcitx";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/e8c40f09d9397b3ca32a7ed37203f490497dc984/recipes/fcitx";
sha256 = "0a8wd588c26p3czfp5hn2n46f2vwyg5v301sv0y07b55b1i3ynmx";
name = "fcitx";
};
@@ -9191,7 +9380,7 @@
sha256 = "1cxjygg05v8s96c8z6plk3hl34jaiwg7s7dl7dsk20rj5f54kgw7";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/feature-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/0a70991695f9ff305f12cfa45e0a597f4a782ba3/recipes/feature-mode";
sha256 = "0ryinmpqb3c91qcna6gbijcmqv3skxdc947dlr5s1w623z9nxgqg";
name = "feature-mode";
};
@@ -9212,7 +9401,7 @@
sha256 = "0fghhy5xqsdwal4fwlr6hxr5kpnfw71q79mxpp9db59ldnj9f5y9";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/fill-column-indicator";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/4ea0c00a7784621fcca0391a9c8ea85e9dd43852/recipes/fill-column-indicator";
sha256 = "0w8cmijv7ihij9yyncz6lixb6awzzl7n9qpjj2bks1d5rx46blma";
name = "fill-column-indicator";
};
@@ -9233,7 +9422,7 @@
sha256 = "1r9y9zschavi28c5ysrlh56vxszjfyhh5r36fhn74i0b5iiy15rx";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/finalize";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/1b55869b5183644de02687d2e56f9b68854ccda3/recipes/finalize";
sha256 = "1n0w4kdzc4hv4pprv13lr88gh46slpxdvsc162nqm5mrqp9giqqq";
name = "finalize";
};
@@ -9254,7 +9443,7 @@
sha256 = "1xjb66pydm3yf0jxnm2mri98pxq3b26xvwjkaj1488qgj27i05jr";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/find-by-pinyin-dired";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/0aa68b4603bf4071d7d12b40de0138ecab1989d7/recipes/find-by-pinyin-dired";
sha256 = "150hvih3mdd1dqffgdcv3nn4qhy86s4lhjkfq0cfzgngfwif8qqq";
name = "find-by-pinyin-dired";
};
@@ -9264,22 +9453,22 @@
license = lib.licenses.free;
};
}) {};
- find-file-in-project = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, swiper }:
+ find-file-in-project = callPackage ({ emacs, fetchFromGitHub, fetchurl, ivy, lib, melpaBuild }:
melpaBuild {
pname = "find-file-in-project";
- version = "4.9.1";
+ version = "5.1.0";
src = fetchFromGitHub {
owner = "technomancy";
repo = "find-file-in-project";
- rev = "32e291c4d741a520234c77c227954b2d6430ef19";
- sha256 = "13myami3vm5py9pp957kbfl9dd11z1a4vy0bbzqqnkgliim7pbsb";
+ rev = "d9ca58db5b0d66287d834965fe4f1710670ff620";
+ sha256 = "1f134dslhmi273j355hc6ixs8zbhf9zla49hz6395k8645lzh5bg";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/find-file-in-project";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/cae2ac3513e371a256be0f1a7468e38e686c2487/recipes/find-file-in-project";
sha256 = "0aznnv82xhnilc9j4cdmcgh6ksv7bhjjm3pa76hynnyrfn7kq7wy";
name = "find-file-in-project";
};
- packageRequires = [ emacs swiper ];
+ packageRequires = [ emacs ivy ];
meta = {
homepage = "https://melpa.org/#/find-file-in-project";
license = lib.licenses.free;
@@ -9296,7 +9485,7 @@
sha256 = "0wbmmrd7brf4498pdyilz17rzv7221cj8sd4h11gac2r72f1q2md";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/find-file-in-repository";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/58705ac6201b73851ce4ce9ebeb0e65463765961/recipes/find-file-in-repository";
sha256 = "0q1ym06w2yn3nzpj018dj6h68f7rmkxczyl061mirjp8z9c6a9q6";
name = "find-file-in-repository";
};
@@ -9317,7 +9506,7 @@
sha256 = "0lwgbd9zwdv7qs39c3fp4hrc17d9wrwwjgba7a14zwrhb27m7j07";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/fiplr";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/7fabdb05de9b8ec18a3a566f99688b50443b6b44/recipes/fiplr";
sha256 = "1a4w0yqdkz477lfyin4lb9k9qkfpx4350kfxmrqx6dj3aadkikca";
name = "fiplr";
};
@@ -9338,7 +9527,7 @@
sha256 = "0icgl88pwizwzkdqsxbwhnc6pdyqsfd7wgjnkvg3206i7hcqwpsp";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/firefox-controller";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/70a69c20f8dcf73c878f2172dcc9f1796fdc0408/recipes/firefox-controller";
sha256 = "03y96b3l75w9al8ylijnlb8pcfkwddyfnh8xwig1b6k08zxfgal6";
name = "firefox-controller";
};
@@ -9359,7 +9548,7 @@
sha256 = "174x0qyrwswppc9p1q1nn4424r3zg7g49zk329k5aq18vyjz52d7";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/fireplace";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/4c1ac52c1cfe7ccf46092c2d299ebbffdc1b7609/recipes/fireplace";
sha256 = "1apcypznq23fc7xgy4xy1c5hvfvjx1xhyq3aaq1lf59v99zchciw";
name = "fireplace";
};
@@ -9380,7 +9569,7 @@
sha256 = "0s8rml5xbskvnjpi8qp7vqflxhh5yis6zr6ay2bxmd2chjlhli55";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/firestarter";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/5b046eb3b63220b937e1b70f633cb5424dc782a1/recipes/firestarter";
sha256 = "1cpx664hyrdnpb1jps1x6lm7idwlfjblkfygj48cjz9pzd6ld5mp";
name = "firestarter";
};
@@ -9401,7 +9590,7 @@
sha256 = "17djaz79spms9il71m4xdfjhm58dzswb6fpncngkgx8kxvcy9y24";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/fish-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/efac97c0f54a3300251020c4626056526c18b441/recipes/fish-mode";
sha256 = "0l6k06bs0qdhj3h8vf5fv8c3rbhiqfwszrpb0v2cgnb6xhwzmq14";
name = "fish-mode";
};
@@ -9422,7 +9611,7 @@
sha256 = "16rd23ygh76fs4i7rni94k8gwa9n360h40qmhm65snp31kqnpr1p";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/fix-input";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/7d31f907997d1d07ec794a4f09824f43818f035c/recipes/fix-input";
sha256 = "03xpr7rlv0xq1d9126j1fk0c2j7ssf366n0yc8yzm9vq32n9pp4p";
name = "fix-input";
};
@@ -9443,7 +9632,7 @@
sha256 = "1hj5jp4vbkcmnc8l2hqsvjc76f7c9zcsq8znwcwv2nv9xj9hlbkr";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/fix-word";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/22636390e8a15c09293a1506a901286dd72e565f/recipes/fix-word";
sha256 = "0a8w09cx8p5pkkd4533nd199axkhdhs2a7blp7syfn40bkscx6xc";
name = "fix-word";
};
@@ -9464,7 +9653,7 @@
sha256 = "1hnxdmzqmnp3dr7mpr58pjmigykb3cxwphxzia013kfi37ipf5a0";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/fixmee";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/f5d06db82e237e6c6babd92a1fd2b58c29662e4f/recipes/fixmee";
sha256 = "0wnp6h8f547fsi1lkk4ajny7g21dnr76qfhxl82n0l5h1ps4w8mp";
name = "fixmee";
};
@@ -9484,15 +9673,15 @@
floobits = callPackage ({ fetchFromGitHub, fetchurl, highlight, json ? null, lib, melpaBuild }:
melpaBuild {
pname = "floobits";
- version = "1.7.1";
+ version = "1.7.2";
src = fetchFromGitHub {
owner = "Floobits";
repo = "floobits-emacs";
- rev = "052cce8506b5cbb8f0281442af8624d5847c7157";
- sha256 = "0acgyxl4kpfld6h6j54415ac8crk7byfs5lcysil9s5l3qrxjl3h";
+ rev = "6fea6eb2a1841d163acdeb5d9d59e51a5d7f61c4";
+ sha256 = "1n6x8n3fzxfwgpkvvnbxv6w3b08zzmx95pwv9yhqxl5b4pwyl31i";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/floobits";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/95c859e8440049579630b4c2bcc31e7eaa13b1f1/recipes/floobits";
sha256 = "1jpk0q4mkf9ag1rqyai993nz5ngzfvxq9n9avmaaq59gkk9cjraf";
name = "floobits";
};
@@ -9513,7 +9702,7 @@
sha256 = "0sjybrcnb2sl33swy3q664vqrparajcl0m455gciiih2j87hwadc";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/flx";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/63bdf3ae2f861e333a8f9c5997f5cc52869d3b3a/recipes/flx";
sha256 = "04plfhrnw7jx2jaxhbhw4ypydfcb8v0x2m5hyacvrli1mca2iyf9";
name = "flx";
};
@@ -9534,7 +9723,7 @@
sha256 = "0sjybrcnb2sl33swy3q664vqrparajcl0m455gciiih2j87hwadc";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/flx-ido";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/63bdf3ae2f861e333a8f9c5997f5cc52869d3b3a/recipes/flx-ido";
sha256 = "00wcwbvfjbcx8kyap7rl1b6nsgqdwjzlpv6al2cdpdd19rm1vgdc";
name = "flx-ido";
};
@@ -9547,15 +9736,15 @@
flycheck = callPackage ({ dash, emacs, fetchFromGitHub, fetchurl, let-alist, lib, melpaBuild, pkg-info, seq }:
melpaBuild {
pname = "flycheck";
- version = "27";
+ version = "28";
src = fetchFromGitHub {
owner = "flycheck";
repo = "flycheck";
- rev = "0040538d275ba388ef8114bda486e5150e67a9bd";
- sha256 = "1igsnps6yc4lh05ka17nwfl03yn26varglm5xhgka8p6vk1z906b";
+ rev = "0b6d258cc8907d9bf6c3dc111a39ff14c892ad36";
+ sha256 = "1bwx7ka79kggk180rjf6fcdndfhlfayvibyjyha9cxpvg78dafkl";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/flycheck";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/649f9c3576e81409ae396606798035173cc6669f/recipes/flycheck";
sha256 = "045k214dq8bmrai13da6gwdz97a2i998gggxqswqs4g52l1h6hvr";
name = "flycheck";
};
@@ -9576,7 +9765,7 @@
sha256 = "14idjjz6fhmq806mmncmqnr9bvcjks6spin8z6jb0gqcg1dbhm06";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/flycheck-apertium";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/7f6cec0d312f0e86e17829e6fd8f87acabc0174f/recipes/flycheck-apertium";
sha256 = "1cc15sljqs6gvb3wiw7n1wkd714qkvfpw6l1kg4lfx9r4jalcvw7";
name = "flycheck-apertium";
};
@@ -9597,7 +9786,7 @@
sha256 = "1c3igqfd42dm42kfjm2q2xgr673vws10n9jn2jjlsk4g33brc7h4";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/flycheck-cask";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/43224eef52bb316102fea524ba87b0e9e43dc6e6/recipes/flycheck-cask";
sha256 = "1lq559nyhkpnagncj68h84i3cq85vhdikr534kj018n2zcilsyw7";
name = "flycheck-cask";
};
@@ -9618,7 +9807,7 @@
sha256 = "1s2zq97d7ryif6rlbvriz36dh23wmwi67v4q6krl77dfzcs705b3";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/flycheck-checkbashisms";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/f5678ea5aef4dc8a517d6d9381a64f182645d344/recipes/flycheck-checkbashisms";
sha256 = "1rq0ymlr1dl39v0sfyjmdv4pq3q9116cz9wvgpvfgalq8759q5sz";
name = "flycheck-checkbashisms";
};
@@ -9631,15 +9820,15 @@
flycheck-clojure = callPackage ({ cider, emacs, fetchFromGitHub, fetchurl, flycheck, let-alist, lib, melpaBuild }:
melpaBuild {
pname = "flycheck-clojure";
- version = "0.1.3";
+ version = "0.1.5";
src = fetchFromGitHub {
owner = "clojure-emacs";
repo = "squiggly-clojure";
- rev = "9e07fd2526ab6e2c4db7d7d6b8c9e44be6e90298";
- sha256 = "1i824iyjsg4d786kx5chsb64wlqd8vn2vsrhq6rmdx2x3gzdfcsx";
+ rev = "fc0f1473c85b5287c8a62c1eee86894c98fbb84c";
+ sha256 = "0dqnv7l82h09janakq2b3ncz3jj99418pb91w0gabvfylww3pm21";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/flycheck-clojure";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/c9c642a234f93ed4cf5edcf27a552a8916984946/recipes/flycheck-clojure";
sha256 = "1b20gcs6fvq9pm4nl2qwsf34sg6wxngdql921q2pyh5n1xsxhm28";
name = "flycheck-clojure";
};
@@ -9660,7 +9849,7 @@
sha256 = "11xc08xld758xx9myqjsiqz8vk3gh4d9c4yswswvky6mrx34c0y5";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/flycheck-color-mode-line";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/02b5b60b74581ff0d1815155223e0c6e94a851a1/recipes/flycheck-color-mode-line";
sha256 = "0hw19nsh5h2l8qbp7brqmml2fhs8a0x850vlvq3qfd7z248gvhrq";
name = "flycheck-color-mode-line";
};
@@ -9681,7 +9870,7 @@
sha256 = "1ap5hgvaccmf2xkfvyp7rqcfjwmiy6mhr6ccgahxm2z0vm51kpyh";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/flycheck-dmd-dub";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/a812594901c1099283bdf51fbea1aa077cfc588d/recipes/flycheck-dmd-dub";
sha256 = "0pg3sf7h6xqv65yqclhlb7fx1mp2w0m3qk4vji6m438kxy6fhzqm";
name = "flycheck-dmd-dub";
};
@@ -9702,7 +9891,7 @@
sha256 = "0frgyj57mrggq5ib6xi71696m97ch0bw6cc208d2qbnb55sf4fgb";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/flycheck-gometalinter";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/8bfe9f2d030c04fb292297eb9226072bfea2ac64/recipes/flycheck-gometalinter";
sha256 = "1bnvj5kwgbh0dv989rsjcvmcij1ahwcz0vpr6a8f2p6wwvksw1h2";
name = "flycheck-gometalinter";
};
@@ -9723,7 +9912,7 @@
sha256 = "0yryd346cp5zir3icldkhjzwjb0bkq8rlidbr62dry1cw9bic6z0";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/flycheck-haskell";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/6ca601613788ae830655e148a222625035195f55/recipes/flycheck-haskell";
sha256 = "12lgirz3j6n5ns2ikq4n41z0d33qp1lb5lfz1q11qvpbpn9d0jn7";
name = "flycheck-haskell";
};
@@ -9744,7 +9933,7 @@
sha256 = "136mdg21a8sqxhijsjsvpli7r7sb40nmf80p6gmgb1ghwmhlm8k3";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/flycheck-hdevtools";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/9e210eb2405cc85dd1d03e9119d2249178950398/recipes/flycheck-hdevtools";
sha256 = "0ahvai1q4x59ryiyccvqvjisgqbaiahx4gk8ssaxhblhj0sqga93";
name = "flycheck-hdevtools";
};
@@ -9765,7 +9954,7 @@
sha256 = "0qa5a8wzvzxwqql92ibc9s43k8sj3vwn7skz9hfr8av0skkhx996";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/flycheck-irony";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/1e367afce9a792c168ef1e7e20cc5903f7b570d8/recipes/flycheck-irony";
sha256 = "0qk814m5s7mjba659llml0gy1g3045w8l1g73w2pnm1pbpqdfn3z";
name = "flycheck-irony";
};
@@ -9786,7 +9975,7 @@
sha256 = "1pdssw5k88ym5fczllfjv26sp4brlyrywnlzq5baha5pq91h9cb6";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/flycheck-ledger";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/dc715e6849aa5d6017e2478514c4a0d84c7ddbe5/recipes/flycheck-ledger";
sha256 = "0807pd2km4r60wgd6jakscbx63ab22d9kvf1cml0ad8wynsap7jl";
name = "flycheck-ledger";
};
@@ -9796,6 +9985,27 @@
license = lib.licenses.free;
};
}) {};
+ flycheck-mix = callPackage ({ elixir-mode, fetchFromGitHub, fetchurl, flycheck, lib, melpaBuild }:
+ melpaBuild {
+ pname = "flycheck-mix";
+ version = "1.0.0";
+ src = fetchFromGitHub {
+ owner = "tomekowal";
+ repo = "flycheck-mix";
+ rev = "c565ebb12a48fcd49cc65656d79295c3288fcb84";
+ sha256 = "1yncail979sfljmib7b1m9aw376xd4b76apz4d50hj83lrfy169c";
+ };
+ recipeFile = fetchurl {
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/fd2a4d71b7f4c0082b687a23fd367d55186625a9/recipes/flycheck-mix";
+ sha256 = "1wp8lp45lc519w3xsws2c91jlbfmc0pc8764kxsifk74akwcizfl";
+ name = "flycheck-mix";
+ };
+ packageRequires = [ elixir-mode flycheck ];
+ meta = {
+ homepage = "https://melpa.org/#/flycheck-mix";
+ license = lib.licenses.free;
+ };
+ }) {};
flycheck-ocaml = callPackage ({ emacs, fetchFromGitHub, fetchurl, flycheck, let-alist, lib, melpaBuild, merlin }:
melpaBuild {
pname = "flycheck-ocaml";
@@ -9807,7 +10017,7 @@
sha256 = "1phfarws2aajkgcl96hqa4ydmb1yncg10q2ldzf8ff6yd6mvk51l";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/flycheck-ocaml";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/8ce9283eb1285953a2578eb7c4d280b4d98c801f/recipes/flycheck-ocaml";
sha256 = "1cv2bb66aql2kj1y1gsl4xji8yrzrq6rd8hxxs5vpfsk47052lf7";
name = "flycheck-ocaml";
};
@@ -9828,7 +10038,7 @@
sha256 = "0aa8cnh9f0f2zr2kkba2kf9djzjnsd51fzj8l578pbj016zdarwd";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/flycheck-package";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/d17ec69c9f192625e74dfadf03b11d0d7dc575e7/recipes/flycheck-package";
sha256 = "0068kpia17rsgjdmzsjnw0n6x5z9jvfxggxlzkszvwsx73mvcs2d";
name = "flycheck-package";
};
@@ -9849,7 +10059,7 @@
sha256 = "1da10q378k5kbcj0rrpzhm7r3ym4rfwc7v1ialcndbmflsn09m5s";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/flycheck-pony";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/e2bcb82f4ddb92243058c9ab1a67d4f7ef87b155/recipes/flycheck-pony";
sha256 = "18w1d7y3jsmsc4wg0909p72cnvbxzsmnirmrahhwgsb963fij5qk";
name = "flycheck-pony";
};
@@ -9870,7 +10080,7 @@
sha256 = "0v23yc8znzjp44lrpfzqb4hc3psad14hsnvqcp8f1yyhgvdx35n8";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/flycheck-pos-tip";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/698843f75e17b9e6160487c0153f9d6b4af288f6/recipes/flycheck-pos-tip";
sha256 = "09i2jmwj8b915fhyczwdb1j7c551ggbva33avis77ga1s9v3nsf9";
name = "flycheck-pos-tip";
};
@@ -9891,7 +10101,7 @@
sha256 = "1xxvri9ax5cjrkxhjqhs7zqbch9cx8kvrn7sg611frl68qawkjsm";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/flycheck-status-emoji";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/5abd6aaa8d2bf55ae75cd217820763531f91958b/recipes/flycheck-status-emoji";
sha256 = "0p42424b1fsmfcjyl252vhblppmpjwd6br2yqh10fi60wmprvn2p";
name = "flycheck-status-emoji";
};
@@ -9912,7 +10122,7 @@
sha256 = "0azjr5mfb3hnb66m1b2319i035mn5i9qz24y7fj5crhnc9vp8w3s";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/flycheck-tip";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/024f1e588e94014734fa252ee7bdb00b4991ede9/recipes/flycheck-tip";
sha256 = "0zab1zknrnsw5xh5pwzzcpz7p40bbywkf9zx99sgsd6b5j1jz656";
name = "flycheck-tip";
};
@@ -9933,7 +10143,7 @@
sha256 = "094alkjrh285qy3sds8dkvxsbnaxnppz1ab0i5r575lyhli9lxia";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/flycheck-ycmd";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/332e5585963c04112a55894fe7151c380930b17c/recipes/flycheck-ycmd";
sha256 = "0m99ssynrqxgzf32d35n17iqyh1lyc6948inxpnwgcb98rfamchv";
name = "flycheck-ycmd";
};
@@ -9954,7 +10164,7 @@
sha256 = "1svj5n7mmzhq03azlv4n33rz0nyqb00qr8ihdbc8hh2xnp63j5rc";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/flymake-coffee";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/cae2ac3513e371a256be0f1a7468e38e686c2487/recipes/flymake-coffee";
sha256 = "1aig1d4fgjdg31vrg8k43z5hbqiydgfvxi45p1695s3kbdm8pr2d";
name = "flymake-coffee";
};
@@ -9975,7 +10185,7 @@
sha256 = "054ws88fcfz3hf3cha7dvndm52v5n4jc4vzif1lif44xq0iggwqa";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/flymake-css";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/cae2ac3513e371a256be0f1a7468e38e686c2487/recipes/flymake-css";
sha256 = "0kqm3wn9symqc9ivnh11gqgq8ql2bhpqvxfm86d8vwm082hd92c5";
name = "flymake-css";
};
@@ -9996,7 +10206,7 @@
sha256 = "1j35k52na02b59yglfb48w6m5qzydvzqfsylb8ax5ks0f287yf0c";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/flymake-easy";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/bd115612b61895f98b0659e9edc1e590967b6337/recipes/flymake-easy";
sha256 = "19p6s9fllgvs35v167xf624k5dn16l9fnvaqcj9ks162gl9vymn7";
name = "flymake-easy";
};
@@ -10017,7 +10227,7 @@
sha256 = "002s01cymgx4z4l3j2pqirg7899pljdx2hmbz8k6cksdxlymzmkd";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/flymake-gjshint";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/b4673825b15519e9eb2204ade5cc045751771c52/recipes/flymake-gjshint";
sha256 = "19jcd5z4883z3fzlrdn4fzmsvn16f4hfnhgw4vbs5b0ma6a8ka44";
name = "flymake-gjshint";
};
@@ -10038,7 +10248,7 @@
sha256 = "1b3lf5jwan03k7rb97g4bb982dacdwsfdddnwc0inx9gs3qq1zni";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/flymake-haml";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/cae2ac3513e371a256be0f1a7468e38e686c2487/recipes/flymake-haml";
sha256 = "0dmdhh12h4xrx6mc0qrwavngk2sx0l4pfqkjjyavabsgcs9wlgp1";
name = "flymake-haml";
};
@@ -10059,7 +10269,7 @@
sha256 = "0k1qc0r0gr7f9l5if2a67cv4k73z5yxd6vxd6l1bqw500y0aajxz";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/flymake-haskell-multi";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/e879eca5eb11b2ae77ee2cb8d8150d85e9e93ebd/recipes/flymake-haskell-multi";
sha256 = "0cyzmmghwkkv6020s6n436lwymi6dr49i7gkci5n0hw5pdywcaij";
name = "flymake-haskell-multi";
};
@@ -10080,7 +10290,7 @@
sha256 = "1ygg51r4ym4x7h4svizwllsvr72x9np6jvjqpk8ayv3w2fpb9l31";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/flymake-hlint";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/17820f32d46e845cc44b237d0bfd5c2d898721de/recipes/flymake-hlint";
sha256 = "0wq1ijhn3ypy31yk8jywl5hnz0r0vlhcxjyznzccwqbdc5vf7b2x";
name = "flymake-hlint";
};
@@ -10101,7 +10311,7 @@
sha256 = "00zkm3wqlss386qd6jiq0siga7c48n5ykh0vf9q5v83rmpd79yri";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/flymake-jslint";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/cae2ac3513e371a256be0f1a7468e38e686c2487/recipes/flymake-jslint";
sha256 = "1cq8fni4p0qhigx0qh34ypmcsbnilra1ixgnrn9mgg8x3cvcm4cm";
name = "flymake-jslint";
};
@@ -10122,7 +10332,7 @@
sha256 = "0rzlw80mi39147yqnpzcvw9wvr5svksd3kn6s3w8191f2kc6xzzv";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/flymake-json";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/acb0a4d29159aa6d74f754911f63152dac3425bd/recipes/flymake-json";
sha256 = "1p5kajiycpqy2id664bs0fb1mbf73a43qqfdi4c57n6j9x7fxp4d";
name = "flymake-json";
};
@@ -10143,7 +10353,7 @@
sha256 = "0ggvmsjj6p6a7cwr2bzhlcf8ab4v6a2bz5djsscd2ryy570p367z";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/flymake-less";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/6d4eae8b7b7d81ebf4d85f38fc3a17b4bc918318/recipes/flymake-less";
sha256 = "05k5daphxy94164c73ia7f4l1gv2cmlw8xzs8xnddg7ly22gjhi0";
name = "flymake-less";
};
@@ -10164,7 +10374,7 @@
sha256 = "11r982h5fhjkmm9ld8wfdip0ghinw523nm1w4fmy830g0bbkgkrq";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/flymake-perlcritic";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/ca7bf43ef8893bf04e9658390e306ef69e80a156/recipes/flymake-perlcritic";
sha256 = "0hibnh463wzhvpix7gygpgs04gi6salwjrsjc6d43lxlsn3y1im8";
name = "flymake-perlcritic";
};
@@ -10185,7 +10395,7 @@
sha256 = "0dzyid0av9icp77wv0zcsygpw46z24qibq1ra0iwnkzl3kqvkyzh";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/flymake-php";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/cae2ac3513e371a256be0f1a7468e38e686c2487/recipes/flymake-php";
sha256 = "12ds2l5kvs7fz38syp4amasbjkpqd36rlpajnb3xxll0hbk6vffk";
name = "flymake-php";
};
@@ -10206,7 +10416,7 @@
sha256 = "0l8qpcbzfi32h3vy7iwydx3hg2w60x9l3v3rabzjx412m5d00gsh";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/flymake-python-pyflakes";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/49091c0eca4158b80269b6ff5f7f3fc8e981420b/recipes/flymake-python-pyflakes";
sha256 = "0asbjxv03zkbcjayanv13qzbv4z7b6fi0z1j6yv7fl6q9mgvm497";
name = "flymake-python-pyflakes";
};
@@ -10227,7 +10437,7 @@
sha256 = "0d2vmpgr5c2cbpxcqm5x1ckfysbpwcbaa9frcnp2yfp8scvkvqj0";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/flymake-ruby";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/cae2ac3513e371a256be0f1a7468e38e686c2487/recipes/flymake-ruby";
sha256 = "1shr6d03vx85nmyxnysglzlc1pz0zy3n28nrcmxqgdm02g197bzr";
name = "flymake-ruby";
};
@@ -10248,7 +10458,7 @@
sha256 = "0c74qdgy9c4hv3nyjnbqdzypbg9399vq3p5ngp5lasc7iz6vi0h8";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/flymake-sass";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/cae2ac3513e371a256be0f1a7468e38e686c2487/recipes/flymake-sass";
sha256 = "0sz6n5r9pdphgvvaljg9zdwj3dqayaxzxmb4s8x4b05c8yx3ba0d";
name = "flymake-sass";
};
@@ -10269,7 +10479,7 @@
sha256 = "0c2lz1p91yhprmlbmp0756d96yiy0w92zf0c9vlp0i9abvd0cvkc";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/flymake-shell";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/cae2ac3513e371a256be0f1a7468e38e686c2487/recipes/flymake-shell";
sha256 = "13ff4r0k29yqgx8ybxz7hh50cjsadcjb7pd0075s9xcrzia5x63i";
name = "flymake-shell";
};
@@ -10279,6 +10489,90 @@
license = lib.licenses.free;
};
}) {};
+ flyspell-correct = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
+ melpaBuild {
+ pname = "flyspell-correct";
+ version = "0.1";
+ src = fetchFromGitHub {
+ owner = "d12frosted";
+ repo = "flyspell-correct";
+ rev = "4993404b971fb0e58082d93d505fa9df29c8507a";
+ sha256 = "04f0vfsf4wazq8gzgrb42bkbcwfjbzyzzid8jwsyzf2pqhls0xj4";
+ };
+ recipeFile = fetchurl {
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/ef7b9302d8f804c77eb81fee7ed27f13cb1176f6/recipes/flyspell-correct";
+ sha256 = "0j7fp2r1463517716d070wmgwxyj8p59b4ybqh106lmpc5w1i9nj";
+ name = "flyspell-correct";
+ };
+ packageRequires = [];
+ meta = {
+ homepage = "https://melpa.org/#/flyspell-correct";
+ license = lib.licenses.free;
+ };
+ }) {};
+ flyspell-correct-helm = callPackage ({ fetchFromGitHub, fetchurl, flyspell-correct, helm, lib, melpaBuild }:
+ melpaBuild {
+ pname = "flyspell-correct-helm";
+ version = "0.1";
+ src = fetchFromGitHub {
+ owner = "d12frosted";
+ repo = "flyspell-correct";
+ rev = "4993404b971fb0e58082d93d505fa9df29c8507a";
+ sha256 = "04f0vfsf4wazq8gzgrb42bkbcwfjbzyzzid8jwsyzf2pqhls0xj4";
+ };
+ recipeFile = fetchurl {
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/ef7b9302d8f804c77eb81fee7ed27f13cb1176f6/recipes/flyspell-correct-helm";
+ sha256 = "18s2bzszy6x31avqg7j2lsll2cf4asb8njwhmx4mm215agack976";
+ name = "flyspell-correct-helm";
+ };
+ packageRequires = [ flyspell-correct helm ];
+ meta = {
+ homepage = "https://melpa.org/#/flyspell-correct-helm";
+ license = lib.licenses.free;
+ };
+ }) {};
+ flyspell-correct-ivy = callPackage ({ fetchFromGitHub, fetchurl, flyspell-correct, ivy, lib, melpaBuild }:
+ melpaBuild {
+ pname = "flyspell-correct-ivy";
+ version = "0.1";
+ src = fetchFromGitHub {
+ owner = "d12frosted";
+ repo = "flyspell-correct";
+ rev = "4993404b971fb0e58082d93d505fa9df29c8507a";
+ sha256 = "04f0vfsf4wazq8gzgrb42bkbcwfjbzyzzid8jwsyzf2pqhls0xj4";
+ };
+ recipeFile = fetchurl {
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/ef7b9302d8f804c77eb81fee7ed27f13cb1176f6/recipes/flyspell-correct-ivy";
+ sha256 = "1n5iyab6bj761w6vxncyqvqzwh9k60pzq5f2n00ifrz74pqs537i";
+ name = "flyspell-correct-ivy";
+ };
+ packageRequires = [ flyspell-correct ivy ];
+ meta = {
+ homepage = "https://melpa.org/#/flyspell-correct-ivy";
+ license = lib.licenses.free;
+ };
+ }) {};
+ flyspell-correct-popup = callPackage ({ fetchFromGitHub, fetchurl, flyspell-correct, lib, melpaBuild, popup }:
+ melpaBuild {
+ pname = "flyspell-correct-popup";
+ version = "0.1";
+ src = fetchFromGitHub {
+ owner = "d12frosted";
+ repo = "flyspell-correct";
+ rev = "4993404b971fb0e58082d93d505fa9df29c8507a";
+ sha256 = "04f0vfsf4wazq8gzgrb42bkbcwfjbzyzzid8jwsyzf2pqhls0xj4";
+ };
+ recipeFile = fetchurl {
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/ef7b9302d8f804c77eb81fee7ed27f13cb1176f6/recipes/flyspell-correct-popup";
+ sha256 = "1fr8ajwldcl58i8xm31dz1mjwbi9f4q8s58x5jrqhqha0x4p4h9l";
+ name = "flyspell-correct-popup";
+ };
+ packageRequires = [ flyspell-correct popup ];
+ meta = {
+ homepage = "https://melpa.org/#/flyspell-correct-popup";
+ license = lib.licenses.free;
+ };
+ }) {};
flyspell-lazy = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "flyspell-lazy";
@@ -10290,7 +10584,7 @@
sha256 = "1g09s57b773nm9xqslzbin5i2h18k55nx00s5nnkvx1qg0n0mzkm";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/flyspell-lazy";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/a082c2dc0458e3007a947923f5b97e88217199e8/recipes/flyspell-lazy";
sha256 = "0lzazrhsfh5m7n57dzx0v46d5mg87wpwwkjzf5j9gpv1mc1xfg1y";
name = "flyspell-lazy";
};
@@ -10311,7 +10605,7 @@
sha256 = "1rk7fsill0salrhb4anbf698nd21nxj8pni35brbmv64nj9fhfic";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/flyspell-popup";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/186d00724137c055b521a5f5c54acf71c4b16c32/recipes/flyspell-popup";
sha256 = "0wp15ra1ry6xpwal6mb53ixh3f0s4nps0rdyfli7hhaiwbr9bhql";
name = "flyspell-popup";
};
@@ -10332,7 +10626,7 @@
sha256 = "0r2j238iyxnww60xpbxggjmz6y2waayw4m51f0l39hszbhags2cv";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/fm";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/e4a74b87c05b408433545a2236000ac081af36bf/recipes/fm";
sha256 = "118d8fbhlv6i2rsyfqdhi841p96j7q4fab5qdg95ip40wq02dg4f";
name = "fm";
};
@@ -10353,7 +10647,7 @@
sha256 = "0aj5qxzlfxxp7z27fiw9bvir5yi2zj0xzj5kbh17ix4wnhi03bhc";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/focus";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/4e8f1217224514f9b048b7101c89e3b1a305821e/recipes/focus";
sha256 = "0jw26j8npyl3dgsrs7ap2djxmkafn2hl6gfqvi7v76bccs4jkyv8";
name = "focus";
};
@@ -10374,7 +10668,7 @@
sha256 = "1k8z30imlxvqm7lv12kgqdfgc5znxyvl9jxi8j2ymmwlgy11f726";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/fold-dwim";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/ebbbc23a29b2040c587e2f60dbfb7a9b45058751/recipes/fold-dwim";
sha256 = "0c9yxx45zlhb1h4ldgkjv7bndwlagpyingaaqn9dcsxidrvp3p5x";
name = "fold-dwim";
};
@@ -10395,7 +10689,7 @@
sha256 = "14jvbkahwvv4wb0s9vp8gqmlpv1d4269j5rsjxn79q5pawjzslxw";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/fold-dwim-org";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/97d22d9feaf521ce576b80d2933ecbc166c1dbe7/recipes/fold-dwim-org";
sha256 = "0812p351rzvqcfn00k92nfhlg3y772y4z4b9f0xqnpa935y6harn";
name = "fold-dwim-org";
};
@@ -10416,7 +10710,7 @@
sha256 = "1cbabpyp66nl5j8yhyj2jih4mhaljxvjh9ij05clai71z4598ahn";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/fold-this";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/9853fcb99bd8717c77fa2b3bafb6e85d0d5d491c/recipes/fold-this";
sha256 = "1iri4a6ixw3q7qr803cj2ik7rvmww1b6ybj5q2pvkf1v25r8655d";
name = "fold-this";
};
@@ -10437,7 +10731,7 @@
sha256 = "1k90w8v5rpswqb8fn1cc8sq5w12gf4sn6say5dhvqd63512b0055";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/font-utils";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/2af0a1644116e89c5a705ffe0885ffe3ee874eaf/recipes/font-utils";
sha256 = "0k33jdchjkj7j211a23kfp5axg74cfsrrq4axsb1pfp124swh2n5";
name = "font-utils";
};
@@ -10458,7 +10752,7 @@
sha256 = "0qq13jhn9i2ls6n3fbay4i2r0hfs426pkmmif43b87gjxb510irc";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/fontawesome";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/93b92f10802ceffc353db3d220dccfd47ea7fa41/recipes/fontawesome";
sha256 = "07hn4s929xklc74j8s6pd61rxmxw3911dq47wql77vb5pijv6dr3";
name = "fontawesome";
};
@@ -10479,7 +10773,7 @@
sha256 = "1x4l24cbgc4apv9cfzf6phmj5pm32hfdgv37wpbh7ml8v3p8xm0w";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/forecast";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/e6ff6a4ee29b96bccb2e4bc0644f2bd2e51971ee/recipes/forecast";
sha256 = "0whag2n1120384w304g0w4bqr7svdxxncdhnz4rznfpxlgiw2rsc";
name = "forecast";
};
@@ -10500,7 +10794,7 @@
sha256 = "199kybf2bvywqfnwr5w893km82829k1j7sp079y6s2601hq8ylw9";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/foreman-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/edeeb2b52ac70f8bdad38d3af62a7e434853c504/recipes/foreman-mode";
sha256 = "0p3kwbld05wf3dwcv0k6ynz727fiy0ik2srx4js9wvagy57x98kv";
name = "foreman-mode";
};
@@ -10521,7 +10815,7 @@
sha256 = "171jna631b2iqcimfsik9c66gii8nc0zdb58m077w00rn7rcxbh2";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/form-feed";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/468503d8103766e8196e977325e3bcb696219f6b/recipes/form-feed";
sha256 = "1abwjkzi3irw0jwpv3f584zc72my9n8iq8zp5s0354xk6iwrl1rh";
name = "form-feed";
};
@@ -10542,7 +10836,7 @@
sha256 = "0mikksamljps1czacgqavlnzzhgs8s3f8q4jza6v3csf8kgp5zd0";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/format-sql";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/085c03104aa5a809a112525547eec51100b6fb09/recipes/format-sql";
sha256 = "0684xqzs933vj9d3n3lv7afk4gii41kaqykbb05cribaswapsanj";
name = "format-sql";
};
@@ -10555,15 +10849,15 @@
fountain-mode = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, s }:
melpaBuild {
pname = "fountain-mode";
- version = "2.0.1";
+ version = "2.1.0";
src = fetchFromGitHub {
owner = "rnkn";
repo = "fountain-mode";
- rev = "4627868e70408b9608a47980d6cfda10024221d5";
- sha256 = "1zy45s1m1injwr4d1qvpnvfvv4nkkv9mricshxjannsjfbz09ra7";
+ rev = "12f61706711c18ccdbc7fbbc061fd29f702003f1";
+ sha256 = "1kfv7wn50yzrfg3sn65xfy069g7kvbihhdjl8yspwdryvh9b3bnq";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/fountain-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/913386ac8d5049d37154da3ab32bde408a226511/recipes/fountain-mode";
sha256 = "1i55gcjy8ycr1ww2fh1a2j0bchx1bsfs0zd6v4cv5zdgy7vw6840";
name = "fountain-mode";
};
@@ -10584,7 +10878,7 @@
sha256 = "1vznkbly0lyh5kri9lcgy309ws96q3d5m1lghck9l8ain8hphhqz";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/frame-restore";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/50ab397e8841f686e098caf6dae5dfafb0550581/recipes/frame-restore";
sha256 = "0b321iyf57nkrm6xv8d1aydivrdapdgng35zcnrg298ws2naysvm";
name = "frame-restore";
};
@@ -10605,7 +10899,7 @@
sha256 = "1c3yx9j3q8fkfiay4nzcabsq9i4ydqf6vxk8vv80h78gg9afrzrj";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/fringe-helper";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/22a334294660e8625cfeeeb7108517e163d8e443/recipes/fringe-helper";
sha256 = "1vki5jd8jfrlrjcfd12gisgk12y20q3943i2qjgg4qvcj9k28cbv";
name = "fringe-helper";
};
@@ -10626,7 +10920,7 @@
sha256 = "00api7q86mrfv8z2g7skh34mhlkxwymf4gfpxa6zcvirhlpglyxr";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/fsharp-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/dc45611e2b629d8bc5f74555368f964420b79541/recipes/fsharp-mode";
sha256 = "07pkj30cawh0diqhrp3jkshgsd0i3y34rdnjb4af8mr7dsbsxb6z";
name = "fsharp-mode";
};
@@ -10642,10 +10936,10 @@
src = fetchgit {
url = "git://factorcode.org/git/factor.git";
rev = "905ec06d864537fb6be9c46ad98f1b6d101dfbf0";
- sha256 = "146iqy3rjr5yv19wbaq5dqm3kjxyjly7i27qjvk0yj1yja2y4j5k";
+ sha256 = "0ip7azxi5nvp8vvi15ds46mgs0fmi7gq97f2iz1c7m67ml5wi2g7";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/fuel";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/0c3633c23baa472560a489fc663a0302f082bcef/recipes/fuel";
sha256 = "0m24p2788r4xzm56hm9kmpzcskwh82vgbs3hqfb9xygpl4isp756";
name = "fuel";
};
@@ -10666,7 +10960,7 @@
sha256 = "0c3w3xs2jbdqgsqw0qmdbwii6p395qfznird4gg0hfr7lby2kmjq";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/full-ack";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/cae2ac3513e371a256be0f1a7468e38e686c2487/recipes/full-ack";
sha256 = "09ikhyhpvkcl6yl6pa4abnw6i7yfsx5jkmzypib94w7khikvb309";
name = "full-ack";
};
@@ -10687,7 +10981,7 @@
sha256 = "1narmlcd8ycwkmsrgk64l7q0ljsbq2fsikl8hjbrsc20nma032m4";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/fullframe";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/13d1dc5c39543b65c6bb4150c3690211872c00dc/recipes/fullframe";
sha256 = "08sh8lmb6g8asv28fcb36ilcn0ka4fc6ka0pnslid0h4c32fxp2a";
name = "fullframe";
};
@@ -10708,7 +11002,7 @@
sha256 = "0m7fcw0cswypiwi5abg6vhw7a3agx9vhp10flbbbji6lblb0fya8";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/function-args";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/80688d85a34b77783140ad2b8a47ef60c762b084/recipes/function-args";
sha256 = "13yfscr993pll5yg019v9dwy71g123a166w114n2m78h0rbnzdak";
name = "function-args";
};
@@ -10729,7 +11023,7 @@
sha256 = "1g7my9ha5cnwg3pjwa86wncg5gphv18xpnpmj3xc3vg7z5m45rss";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/fuzzy";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/9e0197df173fbd7ec1e7e35c47476fcf2aaa483f/recipes/fuzzy";
sha256 = "1hwdh9bx4g4vzzyc20vdwxsii611za37kc9ik40kwjjk62qmll8h";
name = "fuzzy";
};
@@ -10750,7 +11044,7 @@
sha256 = "0c3g0yfclczdh6nxmg9lljjf288zibqy51bhh1b1cgdmxcbpg8bv";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/fvwm-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/ac39130f8a031d6fe7df4411a5f94f2cdf652449/recipes/fvwm-mode";
sha256 = "07y32cnp4qfhncp7s24gmlxljdrj5miicinfaf4gc7hihb4bkrkb";
name = "fvwm-mode";
};
@@ -10771,7 +11065,7 @@
sha256 = "1c7h043lz10mw1hdsx9viksy6q79jipz2mm18y1inlbqhmg33n2b";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/fwb-cmds";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/fe40cdeb5e19628937820181479897acdad40200/recipes/fwb-cmds";
sha256 = "0wnjvi0v0l2h1mhwlsk2d8ggwh3nk7pks48l55gp18nmj00jxycx";
name = "fwb-cmds";
};
@@ -10792,7 +11086,7 @@
sha256 = "0vfh4azibv71mj86bgl4rfbm96pw9l95r87mwhzx42j36rxffl73";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/fxrd-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/796eb6b2126ec616c0de6af6abb7598900557c12/recipes/fxrd-mode";
sha256 = "17zimg64lqc1yh9gnp5izshkvviz996aym7q6n9p61a4kqq37z4r";
name = "fxrd-mode";
};
@@ -10813,7 +11107,7 @@
sha256 = "0rjn4z7ssl1jy0brvsci44mhpig3zkdbcj8gcylzznhz0qfk1ljj";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/fzf";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/1671e17c99ef1932c6a2e83fc4fa2e4eb6674bc8/recipes/fzf";
sha256 = "0jjzm1gq85fx1gmj6nqaijnjws9bm8hmk40ws3x7fmsp41qq5py0";
name = "fzf";
};
@@ -10834,7 +11128,7 @@
sha256 = "16x3fz2ljrmqhjy7w96fhp3j9ja2gib042c363yfrzwa7q5rxzd2";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/gams-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/c895a716636b00c2a158d33aab18f664a8601833/recipes/gams-mode";
sha256 = "0hx9mv4sqskz4nn7aks64hqd4vn3m7b34abzhy9bnmyw6d5zzfci";
name = "gams-mode";
};
@@ -10855,7 +11149,7 @@
sha256 = "1q9bz294bc6bplwfrfzsczh444v9152wv7zm2l1pcpwv8n8581p6";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/gather";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/595e40c7102294684badf86deb72d86bbc3c1426/recipes/gather";
sha256 = "1f0cqqp1a7w8g1pfvzxxb0hjrxq4m79a4n85dncqj2xhjxrkm0xk";
name = "gather";
};
@@ -10865,6 +11159,48 @@
license = lib.licenses.free;
};
}) {};
+ geben = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
+ melpaBuild {
+ pname = "geben";
+ version = "1.0.3";
+ src = fetchFromGitHub {
+ owner = "ahungry";
+ repo = "geben";
+ rev = "5d79cfd7cdf79367f2e360cc77c33ff31e31e0e2";
+ sha256 = "124p2aybyc9zwl2acn579j2qii5xyfw1cblb6wjrishw7531dhvv";
+ };
+ recipeFile = fetchurl {
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/6f8648609e160f7dcefe4a963e8b00475f2fff78/recipes/geben";
+ sha256 = "1ai1qcx76m8xh80c8zixq9cqbhnqmj3jk3r7lj3ngbiwx4pnlnwf";
+ name = "geben";
+ };
+ packageRequires = [ cl-lib emacs ];
+ meta = {
+ homepage = "https://melpa.org/#/geben";
+ license = lib.licenses.free;
+ };
+ }) {};
+ geben-helm-projectile = callPackage ({ emacs, fetchFromGitHub, fetchurl, geben, helm-projectile, lib, melpaBuild }:
+ melpaBuild {
+ pname = "geben-helm-projectile";
+ version = "0.0.3";
+ src = fetchFromGitHub {
+ owner = "ahungry";
+ repo = "geben-helm-projectile";
+ rev = "14db489efcb20c5aa9102288c94cec3c5a87c35d";
+ sha256 = "1nd1jhy393vkn2g65zhygxkpgna0l8gkndxr8jb6qjkkapk58k8l";
+ };
+ recipeFile = fetchurl {
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/b7d28c45304a69e6ca78b3d00df2563171c027ee/recipes/geben-helm-projectile";
+ sha256 = "11zhapys6wx2cadflvjimsmilwvjpfd4ihwzzmap8shxpyllsq9r";
+ name = "geben-helm-projectile";
+ };
+ packageRequires = [ emacs geben helm-projectile ];
+ meta = {
+ homepage = "https://melpa.org/#/geben-helm-projectile";
+ license = lib.licenses.free;
+ };
+ }) {};
geiser = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "geiser";
@@ -10876,7 +11212,7 @@
sha256 = "1667zln7bav0bdhrc4b5z36n8rn36xvwh4y9ffgns67zfgwi64kk";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/geiser";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/b0fe32d24cedd5307b4cccfb08a7095d81d639a0/recipes/geiser";
sha256 = "067rrjvyn5sz60w9h7qn542d9iycm2q4ryvx3n6xlard0dky5596";
name = "geiser";
};
@@ -10897,7 +11233,7 @@
sha256 = "08cw1fa25kbhbq2sp1cpn90bz38i9hjfdj93xf6wvki55b52s0nn";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/genrnc";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/dd2d908ba5fa96d90643091573939e54d9165aaa/recipes/genrnc";
sha256 = "1nwbdscl0yh9j1n421can93m6s8j9dkyb3xmpampr6x528g6z0lm";
name = "genrnc";
};
@@ -10918,7 +11254,7 @@
sha256 = "0344w4sbd6wlgl13j163v0hzjw9nwhvpr5s7658xsdd90wp4i701";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/german-holidays";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/bf5b3807ff989b13f95e8d6fad2f26a42ff0643c/recipes/german-holidays";
sha256 = "0fgrxdgyl6va6axjc5l4sp90pyqaz5zha1g73xyhbxblshm5dwxn";
name = "german-holidays";
};
@@ -10939,7 +11275,7 @@
sha256 = "1m9ra9qp7bgf6anfqyn56n3xa9a25ran10k9wd355qknd5skq1zz";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ggo-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/e055994c3c3042eab11f11ec916ad5b56689809f/recipes/ggo-mode";
sha256 = "1403x530n90jlfz3lq2vfiqx84cxsrhgs6hhmniq960cjj31q35p";
name = "ggo-mode";
};
@@ -10960,7 +11296,7 @@
sha256 = "1qjh7av046ax4240iw40hv5fc0k23c36my9hili7fp4y2ak99l8n";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ggtags";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/b158bb1bc2fbe3de61a6b21174eac7b1457edda2/recipes/ggtags";
sha256 = "1cmry4knxbx9257ivhfxsd09z07z3g3wjihi99nrwmhb9h4mpqyw";
name = "ggtags";
};
@@ -10970,22 +11306,22 @@
license = lib.licenses.free;
};
}) {};
- gh = callPackage ({ eieio ? null, fetchFromGitHub, fetchurl, lib, logito, melpaBuild, pcache }:
+ gh = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, logito, melpaBuild, pcache }:
melpaBuild {
pname = "gh";
- version = "0.9.2";
+ version = "0.10.0";
src = fetchFromGitHub {
owner = "sigma";
repo = "gh.el";
- rev = "33b88251e8989069cc08f3f5d6886635f276f42e";
- sha256 = "0a5v91k9gm9vv15d3m8czicv8n39f0hvqhcr6lfw0w82n26xwsms";
+ rev = "d0471dd1ba279072cbf8caf6368f3008d7120f25";
+ sha256 = "099msgsxdqyjrd18jv2mfkpaylp2scq18782354lcpr3fbp8vbsl";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/gh";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/cae2ac3513e371a256be0f1a7468e38e686c2487/recipes/gh";
sha256 = "1141l8pas3m755yzby4zsan7p81nbnlch3kj1zh69qzjpgqp30c0";
name = "gh";
};
- packageRequires = [ eieio logito pcache ];
+ packageRequires = [ emacs logito pcache ];
meta = {
homepage = "https://melpa.org/#/gh";
license = lib.licenses.free;
@@ -11002,7 +11338,7 @@
sha256 = "1m5q2s9nxm0m18njaxzryjly8rl3m598r94nn53xpazd4i5ln8cg";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ghc";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/7fabdb05de9b8ec18a3a566f99688b50443b6b44/recipes/ghc";
sha256 = "02nc7a9khqpd4ca2snam8dq72m53q8x7v5awx56bjq31z6vcmav5";
name = "ghc";
};
@@ -11023,7 +11359,7 @@
sha256 = "1ywwyc2kz1c1s26c412nmzh55cinh84cfiazyyi3jsy5zzwhrbhi";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ghc-imported-from";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/cfbd335054aff49d4a46f73bee881b7a00714d3c/recipes/ghc-imported-from";
sha256 = "10cxz4c341lknyz4ns63bri00mya39278xav12c73if03llsyzy5";
name = "ghc-imported-from";
};
@@ -11044,7 +11380,7 @@
sha256 = "0q3ps5f6mr9hyf6nq1wshcm1z6a5yhskqd7dbbwq5dm78552z6z8";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/gist";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/cae2ac3513e371a256be0f1a7468e38e686c2487/recipes/gist";
sha256 = "053fl8aw0ram9wsabzvmlm5w2klwd2pgcn2w9r1yqfs4xqja5sd3";
name = "gist";
};
@@ -11065,7 +11401,7 @@
sha256 = "06ws3x5qa92drmn6rcp502jk2yil6q9gkzdmb2gww9gb2g695wl5";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/git";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/ce19d2716416295966716db47241a0e37b412ab5/recipes/git";
sha256 = "1nd2yvfgin13m368gjn7xah99glspnam4g4fh348x4makxcaw8w5";
name = "git";
};
@@ -11086,7 +11422,7 @@
sha256 = "0psmr7749nzxln4b500sl3vrf24x3qijp12ir0i5z4x25k72hrlh";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/git-auto-commit-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/5660fb76ce93e5fe56227698d079c6994ef3305f/recipes/git-auto-commit-mode";
sha256 = "0nf4n63xnzcsizjk1yl8qvqj9wjdqy57kvn6r736xvsxwzd44xgl";
name = "git-auto-commit-mode";
};
@@ -11107,7 +11443,7 @@
sha256 = "0a3ws852ypi34ash39srkwzkfish4n3c5lma10d9xzddjrwapgj9";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/git-command";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/8a55d697bc95a7026c7788c13e4765e1b71075e3/recipes/git-command";
sha256 = "1hsxak63y6648n0jkzl5ajxg45w84qq8vljvjh0bmwfrbb67kwbg";
name = "git-command";
};
@@ -11128,7 +11464,7 @@
sha256 = "1dv5qr9z5lxj2zjhwjhx451mbkb8d3y00q7ar6n34x7d5c4gmiya";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/git-commit";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/cec5af50ae7634cc566adfbfdf0f95c3e2951c0c/recipes/git-commit";
sha256 = "1i7122fydqga68cilgzir80xfq77hnrw75zrvn52mjymfli6aza2";
name = "git-commit";
};
@@ -11141,15 +11477,15 @@
git-gutter = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "git-gutter";
- version = "0.88";
+ version = "0.89";
src = fetchFromGitHub {
owner = "syohex";
repo = "emacs-git-gutter";
- rev = "c40683e9c5931dd67f89ad9ef8625de28752f00c";
- sha256 = "1gr57n6chhbzazqxb0vwsddais14zpg9c5qpfn6igw0qzhkxn8x0";
+ rev = "02f67e207f0653077c06ddc8502c6a0cd28de260";
+ sha256 = "04qkznd85f9msrgpwsfswbfi5nzvpy4mk5mcmv2cvbq68grs4c40";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/git-gutter";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/81f0f525680fea98e804f39dbde1dada887e8821/recipes/git-gutter";
sha256 = "19s344i95piixlzq4mjgmgjw7cy8af02z6hg89jjjdbxrfl4i2fg";
name = "git-gutter";
};
@@ -11170,7 +11506,7 @@
sha256 = "18jpa5i99x0gqizs2qbqr8c1jlza8x9vpb6wg9zqd4np1p6q4lan";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/git-gutter-fringe";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/81f0f525680fea98e804f39dbde1dada887e8821/recipes/git-gutter-fringe";
sha256 = "10k07dzmkxsxzwc70vpv05rxjyps9494y6k7yhlv8d46x7xjyp0z";
name = "git-gutter-fringe";
};
@@ -11191,7 +11527,7 @@
sha256 = "1c7ijbpa7xw831k55cdm2gl8r597rxnp22jcmqnfpwqkqmk48ln9";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/git-gutter-fringe+";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/ad46c349d13f7d40db706b487319ede40b96b09c/recipes/git-gutter-fringe+";
sha256 = "1zkjb8p08cq2nqskn79rjszlhp9mrblplgamgi66yskz8qb1bgcc";
name = "git-gutter-fringe-plus";
};
@@ -11212,7 +11548,7 @@
sha256 = "101hracd77mici778x3ixwrcicd6fqkcr9z76kapkr0dq5z42yjb";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/git-gutter+";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/b2db25d23c2a1a4f38867aac25d687a150e95c2b/recipes/git-gutter+";
sha256 = "1w78p5cz6kyl9kmndgvwnfrs80ha707s8952hycrihgfb6lixmp0";
name = "git-gutter-plus";
};
@@ -11233,7 +11569,7 @@
sha256 = "02p73q0kl9z44b9a2bhqg03mkqx6gf61n88qlwwg4420dxrf7sbc";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/git-lens";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/66fd7c0642e8e61b883d2030f88892d039380475/recipes/git-lens";
sha256 = "1vv3s89vk5ncinqh2f724z0qbbzp8g4y5y670ryy56w1l6v2acfb";
name = "git-lens";
};
@@ -11254,7 +11590,7 @@
sha256 = "0a1kxdz05ly9wbzyxcb79xlmy11q38xplf5s8w8klmyajdn43g1j";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/git-link";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/1385443585e628e3d4efb3badb7611e9d653e0c9/recipes/git-link";
sha256 = "1vqabnmdw8pxd84c15ghh1rnglwb5i4zxicvpkg1ci8xalayn1c7";
name = "git-link";
};
@@ -11275,7 +11611,7 @@
sha256 = "139yivbxdpmv8j6qz406769b040nbmj3j8r28n9gqy54zlwblgv8";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/git-messenger";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/e791293133f30e5d96c4b29e972f9016c06c476d/recipes/git-messenger";
sha256 = "1rnqsv389why13cy6462vyq12qc2zk58p01m3hsazp1gpfw2hfzn";
name = "git-messenger";
};
@@ -11296,7 +11632,7 @@
sha256 = "1hyq3il03cm6apfawps60r4km8r6pw0vphzba30smsqfk50z3ya3";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/git-ps1-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/ea177b5ea168828881bd8dcd29ef6b4cb81317f0/recipes/git-ps1-mode";
sha256 = "15gswi9s0m3hrsl1qqyjnjgbglsai95klbdp51h3pcq7zj22wkn6";
name = "git-ps1-mode";
};
@@ -11317,7 +11653,7 @@
sha256 = "1brz9dc7ngywndlxbqbi3pbjbjydgqc9bjzf05lgx0pzr1ppc3w3";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/git-timemachine";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/41e95e41fc429b688f0852f58ec6ce80303b68ce/recipes/git-timemachine";
sha256 = "0nhl3g31r4a8j7rp5kbh17ixi16w32h80bc92vvjj3dlmk996nzq";
name = "git-timemachine";
};
@@ -11338,7 +11674,7 @@
sha256 = "0igawn43i81icshimj5agv33ab120hd6182knlrn3i46p7lcs3lx";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/git-wip-timemachine";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/81b5dd5765f52efdb88fdc14f48af641a18b3dcb/recipes/git-wip-timemachine";
sha256 = "02fi51k6l23cgnwjp507ylkiwb8azmnhc0fips68nwn9dghzp6dw";
name = "git-wip-timemachine";
};
@@ -11359,7 +11695,7 @@
sha256 = "0ksqfr0l415ynhxpqpcb84bk2bapvczwnpikp45kmfqq91p61xfc";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/gitattributes-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/4b4e2ddd2a80875afc0fc654052e6cbff2f3777f/recipes/gitattributes-mode";
sha256 = "1gjs0pjh6ap0h54savamzx94lq6vqrg58jxqaq5n5qplrbg15a6x";
name = "gitattributes-mode";
};
@@ -11380,7 +11716,7 @@
sha256 = "0j0w6ywhiapmx7dk20yw3zgf8803kmccnjsr664am3g85kbb644v";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/gitconfig";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/318989b10a5bf5b961b3c607730377923c8fb05b/recipes/gitconfig";
sha256 = "126znl1c4vwgskj7ka9id8v2bdrdn5nkyx3mmc6cz9ylc27ainm7";
name = "gitconfig";
};
@@ -11401,7 +11737,7 @@
sha256 = "0ksqfr0l415ynhxpqpcb84bk2bapvczwnpikp45kmfqq91p61xfc";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/gitconfig-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/44a37f59b87f59a587f6681e7aadfabf137c98d7/recipes/gitconfig-mode";
sha256 = "0hqky40kcgxdnghnf56gpi0xp7ik45ssia1x84v0mvfwqc50dgn1";
name = "gitconfig-mode";
};
@@ -11422,7 +11758,7 @@
sha256 = "07vgnmfn0kbg3h3vhf3xk443yi1b55761x881xlmw9sr9nraa578";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/github-browse-file";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/f8bca60348fc5e2ad55663e69b8690093cf861ca/recipes/github-browse-file";
sha256 = "03xvgxlw7wmfby898din7dfcg87ihahkhlav1n7qklw6qi7skjcr";
name = "github-browse-file";
};
@@ -11443,7 +11779,7 @@
sha256 = "18c169nxvdl7iv18pyqx690ldg6pkc8njaxdg1cww6ykqzqnfxh7";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/github-clone";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/ba11d6a5cc2fbc76037687c842f90dc815a6468e/recipes/github-clone";
sha256 = "0ffrm4lmcj3d9kx3g2d5xbiih7hn4frs0prjrvcjq8acvsbc50q9";
name = "github-clone";
};
@@ -11464,7 +11800,7 @@
sha256 = "0ksqfr0l415ynhxpqpcb84bk2bapvczwnpikp45kmfqq91p61xfc";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/gitignore-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/44a37f59b87f59a587f6681e7aadfabf137c98d7/recipes/gitignore-mode";
sha256 = "1i98ribmnxr4hwphd95f9hcfm5wfwgdbcxw3g0w17ws7z0ir61mn";
name = "gitignore-mode";
};
@@ -11485,7 +11821,7 @@
sha256 = "0ywjrgafpl4cnrykx9yysazr7hkd2pxk67h065f8z3mid6cgh1wa";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/gitlab";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/1d012991188956f6e06c37d504b0d06ab31487b9/recipes/gitlab";
sha256 = "0vxsqfnipgapnd2ijvdnkspk68dlnki3pkpkzg2h6hyazmzrsqnq";
name = "gitlab";
};
@@ -11498,15 +11834,15 @@
gmail-message-mode = callPackage ({ fetchFromGitHub, fetchurl, ham-mode, lib, melpaBuild }:
melpaBuild {
pname = "gmail-message-mode";
- version = "1.3.2";
+ version = "1.4";
src = fetchFromGitHub {
owner = "Malabarba";
repo = "gmail-mode";
- rev = "2e0286e4a3c80889692f8da63a3b15d7a96abdea";
- sha256 = "0j3pay3gd1wdnpc853gy5j68hbavrwy6cc2bgmd12ag29xki3hcg";
+ rev = "ec36672a9dc93c09ebe2f77597b498d11883d008";
+ sha256 = "0xcdd3abcrqr7nabdmmh0kgfar64hhgnrhsiwg3q201cymhnv49p";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/gmail-message-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/1e6aed365c42987d64d0cd9a8a6178339b1b39e8/recipes/gmail-message-mode";
sha256 = "0py0i7b893ihb8l1hmk3jfl0xil450znadcd18q7svr3zl2m0gkk";
name = "gmail-message-mode";
};
@@ -11527,7 +11863,7 @@
sha256 = "0p6n52m3y56nx7chwvmnslrnwc0xmh4fmmlkbkfz9n58hlmw8x1x";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/gmail2bbdb";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/fb3c88b20a7614504165cd5fb459b0a9d5c73f60/recipes/gmail2bbdb";
sha256 = "03jhrk4vpjim3ybzjxy7s9r1cgjysj9vlc4criz5k0w7vqz3r28j";
name = "gmail2bbdb";
};
@@ -11548,7 +11884,7 @@
sha256 = "0x0a94bfkk72kqyr5m6arx450qsg1axmp5r0c4r9m84z8j08r4v1";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/gmpl-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/c89a523f87db358c477e5840b0e043e9f253e640/recipes/gmpl-mode";
sha256 = "1f60xim8h85jmqpvgfg402ff8mjd66gla8fa0cwi7l18ijnjblpz";
name = "gmpl-mode";
};
@@ -11569,7 +11905,7 @@
sha256 = "160qm8xf0yghygb52p8cykhb5vpg9ww3gjprcdkcxplr4b230nnc";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/gnome-calendar";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/8e497668d65f0eabd15e39b7492adb395a5a8e75/recipes/gnome-calendar";
sha256 = "00clamlm5b42zqggxywdqrf6s2dnsxir5rpd8mjpyc502kqmsfn6";
name = "gnome-calendar";
};
@@ -11590,7 +11926,7 @@
sha256 = "1nvyjjjydrimpxy4cpg90si7sr8lmldbhlcm2mx8npklp9pn5y3a";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/gntp";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/c69a148d3b72d1be6ea10100a8e0cbbd918baa9c/recipes/gntp";
sha256 = "1ywj3p082g54dcpy8q4jnkqfr12npikx8yz14r0njxdlr0janh4f";
name = "gntp";
};
@@ -11611,7 +11947,7 @@
sha256 = "0bwri3cvm2vr27kyqkrddm28fs08axnd4nm9amfgp54xp20bn4yn";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/gnuplot";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/78be03893e4b0502ce999375e5630d32bda56ac1/recipes/gnuplot";
sha256 = "06c5gqf02fkra8c52xck1lqvf4yg45zfibyf9zqmnbwk7p2jxrds";
name = "gnuplot";
};
@@ -11632,7 +11968,7 @@
sha256 = "08j8x0iaz5s9q0b68d8h3153w0z6vak5l8qgw3dd1drz5p9xnvyw";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/gnus-desktop-notify";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/7fabdb05de9b8ec18a3a566f99688b50443b6b44/recipes/gnus-desktop-notify";
sha256 = "08k32vhdp6i8c03rp1k6b5jmvj5ijplj26mdblrgasklcqbdnlfs";
name = "gnus-desktop-notify";
};
@@ -11653,7 +11989,7 @@
sha256 = "1i3f67x2l9l5c5agspbkxr2mmh3rpq3009d8yzh6r1lih0b4hril";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/gnus-x-gm-raw";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/263b87e40e32421ae56a99971a7e1baca0484778/recipes/gnus-x-gm-raw";
sha256 = "1a5iccghzqmcndql2bppvr48535sf6jbvc83iypr1031z1b5k4wg";
name = "gnus-x-gm-raw";
};
@@ -11674,7 +12010,7 @@
sha256 = "03snnra31b5j6iy94gql240vhkynbjql9b4b5j8bsqp9inmbsia3";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/go-autocomplete";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/04867a574773e8794335a2664d4f5e8b243f3ec9/recipes/go-autocomplete";
sha256 = "1ldsq81a167dk2r2mvzyp3v3j2mxc4l9p6b12i7pv8zrjlkhma5a";
name = "go-autocomplete";
};
@@ -11695,7 +12031,7 @@
sha256 = "05yc0nylg3457an5j7yp3x23157j0hbi21qhcpgsa01144mwnwln";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/go-direx";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/032c0c3cd04f36f1bc66bb7d9d789d354c620a09/recipes/go-direx";
sha256 = "0dq5d7fsld4hww8fl68c18qp6fl3781dqqwd98cg68bihw2wwni7";
name = "go-direx";
};
@@ -11716,7 +12052,7 @@
sha256 = "1n5fnlfq9cy9rbn2hizqqsy0iryw5g2blaa7nd75ya03gxm10p8j";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/go-eldoc";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/6ce1190db06cc214746215dd27648eded5fe5140/recipes/go-eldoc";
sha256 = "1k115dirfqxdnb6hdzlw41xdy2dxp38g3vq5wlvslqggha7gzhkk";
name = "go-eldoc";
};
@@ -11737,7 +12073,7 @@
sha256 = "1fm6xd3vsi8mqh0idddjpfxlsmz1ljmjppw3qkxl1vr0qz3598k3";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/go-errcheck";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/c874f608a55cafcc6e57ca2c80bdae6b1c2e47e9/recipes/go-errcheck";
sha256 = "11a75h32cd5h5xjv30x83k60s49k9fhgis31358q46y2gbvqp5bs";
name = "go-errcheck";
};
@@ -11750,15 +12086,15 @@
go-impl = callPackage ({ emacs, fetchFromGitHub, fetchurl, go-mode, lib, melpaBuild }:
melpaBuild {
pname = "go-impl";
- version = "0.11";
+ version = "0.12";
src = fetchFromGitHub {
owner = "syohex";
repo = "emacs-go-impl";
- rev = "eb80a75ea006c503c09b709e656f94fec24bfb09";
- sha256 = "01j67naqvajhg5ccb5yk4dz7hg6rrc6k9q6ppbm77c0aacjxcr39";
+ rev = "d4cd57e5d1769ffe3a8078572f0be73737184099";
+ sha256 = "059y2gkvvjhjbaw31zlylr0zmbafcjif01zjq13hvvghjqd6r89b";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/go-impl";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/aa1a0845cc1a6970018b397d13394aaa8147e5d0/recipes/go-impl";
sha256 = "09frwpwc080rfpwkb63yv47dyj741lrpyrp65sq2bn4sf03xw0cx";
name = "go-impl";
};
@@ -11779,7 +12115,7 @@
sha256 = "0g0vjm125wmw5nd38r3d7gc2h4pg3a9yskcbk1mzg9vf6gbhr0hx";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/go-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/8a9d94efc1a0cedaaa0a1acd1227b2530efefca2/recipes/go-mode";
sha256 = "1852zjxandmq0cpbf7m56ar3rbdi7bx613gdgsf1bg8hsdvkgzfx";
name = "go-mode";
};
@@ -11800,7 +12136,7 @@
sha256 = "1a6vg2vwgnafb61pwrd837fwlq5gs80wawbzjsnykawnmcaag8pm";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/go-scratch";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/1713e6f02f8908b828ac2722a3185ea7cceb0609/recipes/go-scratch";
sha256 = "11ahvmxbh67wa39cymymxmcpkq0kcn5jz0rrvazjy2p1hx3x1ma5";
name = "go-scratch";
};
@@ -11821,7 +12157,7 @@
sha256 = "00igv83hiyx7x3pf2grmjpd379brn33fm85f05k104mkkrhg99nm";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/golden-ratio";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/e87b2af052d0406431957d75aa3717899bdbc8ae/recipes/golden-ratio";
sha256 = "15fkrv0sgpzmnw2h4fp2gb83d8s42khkfq1h76l241njjayk1f81";
name = "golden-ratio";
};
@@ -11842,7 +12178,7 @@
sha256 = "14dz9wjp8ym86a03pw5y1sd51zw83d6485hpq8mh8zm0j1fba0y0";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/google-this";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/1e6aed365c42987d64d0cd9a8a6178339b1b39e8/recipes/google-this";
sha256 = "0hg9y1b03aiamyn3mam3hyxmxy21wygxrnrww91zcbwlzgp4dd2c";
name = "google-this";
};
@@ -11863,7 +12199,7 @@
sha256 = "0dzr1nb1s1sh8rv5wr9xfjd5xna54vp03y3h4q59vmnynsn64m9b";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/google-translate";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/e3c275e59cbfe6e40f9cd4c470fc66544c9a6d21/recipes/google-translate";
sha256 = "1crgzdd32mk6hrawdypg496dwh51wzwfb5wqw4a2j5l8y958xf47";
name = "google-translate";
};
@@ -11884,7 +12220,7 @@
sha256 = "1d1x5ffpn9gq9byd0qavxr081sl3qf0lihdxfdqvhwd815kravxk";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/goose-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/5fa2ce32adbccdbc3f1b642585b430202e7ae274/recipes/goose-theme";
sha256 = "18kfz61mhf8pvp3z5cdvjklla9p840p1dazylrgjb1g5hdwqw0n9";
name = "goose-theme";
};
@@ -11905,7 +12241,7 @@
sha256 = "1idhnsl8vkq3v3nbvhkmxmvgqp97aycxvmkj7894mj9hvhib68l9";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/gotest";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/0670b42c0c998daa7bf01080757976ac3589ec06/recipes/gotest";
sha256 = "1kan3gykhci33jgg67jjiiz7rqlz5mpxp8sh6mb0n6kpfmgb4ly9";
name = "gotest";
};
@@ -11926,7 +12262,7 @@
sha256 = "1lgljlfxs3gwxr072bvpl55r0b4z78wiww2g093sy7dgxgzgzmq6";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/gotham-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/4b388de872be397864a1217a330ba80437c287c0/recipes/gotham-theme";
sha256 = "0jars6rvf7hkyf71vq06mqki1r840i1dvv43dissqjg5i4lr79cl";
name = "gotham-theme";
};
@@ -11947,7 +12283,7 @@
sha256 = "188q7jr1y872as3w32m8lf6vwl2by1ibgdk6zk7dhpcjwd0ik7x7";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/goto-gem";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/5f576f6fab4ee466c54ce2c50569a447b6d617cc/recipes/goto-gem";
sha256 = "06vy9m01qccvahxr5xn0plzw9knl5ig7gi5q5r1smfx92bmzkg3a";
name = "goto-gem";
};
@@ -11968,7 +12304,7 @@
sha256 = "1f0zlvva7d7iza1v79yjp0bm7vd011q4cy14g1saryll32z115z5";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/goto-last-change";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/d68945f5845e5e44fb6c11726a56acd4dc56e101/recipes/goto-last-change";
sha256 = "1yl9p95ls04bkmf4d6az72pycp27bv7q7wxxzvj8sj97bgwvwajx";
name = "goto-last-change";
};
@@ -11981,15 +12317,15 @@
govc = callPackage ({ dash, emacs, fetchFromGitHub, fetchurl, json-mode, lib, magit-popup, melpaBuild, s }:
melpaBuild {
pname = "govc";
- version = "0.7.1";
+ version = "0.8.0";
src = fetchFromGitHub {
owner = "vmware";
repo = "govmomi";
- rev = "d39fd6858eeb5a8ac81a103063eaccd50c2b3e17";
- sha256 = "0mqhk6jaayjv5jnkkr0sd3nqk9f7asnk5ib6y488l9gs5nfvazrp";
+ rev = "c0c7ce63df7edd78e713257b924c89d9a2dac119";
+ sha256 = "1yj4iimwfv3d4m24ifmncc2z09dlmxjr1dhryh4afkpgj48x4lcv";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/govc";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/92d6391318021c63b06fe39b0ca38f667bb45ae9/recipes/govc";
sha256 = "1ivgaziv25wlzg6y4zh8x7mv97pnyhi7p8jpvgh5fg5lnqpzhl4v";
name = "govc";
};
@@ -11999,6 +12335,27 @@
license = lib.licenses.free;
};
}) {};
+ grab-mac-link = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
+ melpaBuild {
+ pname = "grab-mac-link";
+ version = "0.1";
+ src = fetchFromGitHub {
+ owner = "xuchunyang";
+ repo = "grab-mac-link.el";
+ rev = "e5a720d6aa173939c35cab836a31651b184c11e6";
+ sha256 = "0pas60sib23vv1gkprp10jzksgchl5caqj565akg358a0iay7ax4";
+ };
+ recipeFile = fetchurl {
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/e4cc8a72a9f161f024ed9415ad281dbea5f07a18/recipes/grab-mac-link";
+ sha256 = "1a4wyvx1mlgnd45nn99lwy3vaiwhi1nrphfln86pb6z939dxakj3";
+ name = "grab-mac-link";
+ };
+ packageRequires = [ emacs ];
+ meta = {
+ homepage = "https://melpa.org/#/grab-mac-link";
+ license = lib.licenses.free;
+ };
+ }) {};
gradle-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, s }:
melpaBuild {
pname = "gradle-mode";
@@ -12010,7 +12367,7 @@
sha256 = "0k86lrb55d701nj6pvlw3kjp1dcd3lzfya0hv6q56c529y69d782";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/gradle-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/771cc597daebf9b4aa308f8b350af91a515b44c9/recipes/gradle-mode";
sha256 = "0lx9qi93wmiy9pxjxqp68scbcb4bx88b6jiqk3y8jg5cajizh24g";
name = "gradle-mode";
};
@@ -12031,7 +12388,7 @@
sha256 = "1npsjniazaq20vz3kvwr8p30ivc6x24r9a16rfcwhr5wjx3nn91b";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/grails";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/be0196207245ea9d23fda09121d624db9ea6d83d/recipes/grails";
sha256 = "177y6xv35d2dhc3pdx5qhpywlmlqgfnjpzfm9yxc8l6q2rgs8irw";
name = "grails";
};
@@ -12052,7 +12409,7 @@
sha256 = "0wy8iw12b9bs7xza8jjnjvggr59rgbsgn1kk2g0pj0nppvfdrvjm";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/grails-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/3fe318b4e51a280a55c01fa30455e4a180df8bd6/recipes/grails-mode";
sha256 = "1zdlmdkwyaj2zns3xwmqpil83j7857aj2070kvx8xza66dxcnlm4";
name = "grails-mode";
};
@@ -12073,7 +12430,7 @@
sha256 = "0xnj0wp0na53l0y8fiaah50ij4r80j8a29hbjbcicska21p5w1s1";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/grails-projectile-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/35d49029c1f665ad40e543040d98d5a770bfea96/recipes/grails-projectile-mode";
sha256 = "0dy8v2mila7ccvb7j5jlfkhfjsjfk3bm3rcy84m0rgbqjai67amn";
name = "grails-projectile-mode";
};
@@ -12094,7 +12451,7 @@
sha256 = "1202fwwwdr74q6s5jv1n0mvmq4n9mra85l14hdhwh2kks513s6vs";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/grandshell-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/5b04b0024f5a0367e2998d35ca88c2613a8e3470/recipes/grandshell-theme";
sha256 = "1mnnjsw1kx40b6ws8wmk25fz9rq8rd70xia9cjpwdfkg7kh8xvsa";
name = "grandshell-theme";
};
@@ -12115,7 +12472,7 @@
sha256 = "1f34bhjxmbf2jjrkpdvqg2gwp83ka6d5vrxmsxdl3r57yc6rbrwa";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/graphene";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/0206d6adcb7855c2174c3cd506b71c21def1209b/recipes/graphene";
sha256 = "1wz3rvd8b7gx5d0k7yi4dd69ax5bybcm10vdc7xp4yn296lmyl9k";
name = "graphene";
};
@@ -12140,15 +12497,15 @@
graphene-meta-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "graphene-meta-theme";
- version = "0.0.2";
+ version = "0.0.3";
src = fetchFromGitHub {
owner = "rdallasgray";
repo = "graphene-meta-theme";
- rev = "5d848233ac91c1e3560160a4eba60944f5837d35";
- sha256 = "1bidfn4x5lb6dylhadyf05g4l2k7jg83mi058cmv76av1glawk17";
+ rev = "f76011f212cd4e932e3fca6e84588ac294e812a4";
+ sha256 = "0b8yvbcj904ziwx2a6dr6225jspxycgyphab4iwpbmvkv1fnicf6";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/graphene-meta-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/44af719ede73c9fe7787272d7868587ce8966e3d/recipes/graphene-meta-theme";
sha256 = "1cqdr93lccdpxkzgap3r3qc92dh8vqgdlnxvqkw7lrcbs31fvf3q";
name = "graphene-meta-theme";
};
@@ -12169,7 +12526,7 @@
sha256 = "1zk664ilyz14p11csmqgzs73gx08hy32h3pnyymzqkavmgb6h3s0";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/graphviz-dot-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/6e2f1e66b33fd95142be4622c996911e38d56281/recipes/graphviz-dot-mode";
sha256 = "04rkynsrsk6w4sxn1pc0b9b6pij1p7yraywbrk7qvv05fv69kri2";
name = "graphviz-dot-mode";
};
@@ -12190,7 +12547,7 @@
sha256 = "0xcj1kqzgxifhrhpl9j2nfpnkd6213ix5z7f97269v3inpzaiyf5";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/grapnel";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/dd482e4b2c45921b81c5fb3dfce53acfec3c3093/recipes/grapnel";
sha256 = "019cdx1wdx8sc2ibqwgp1akgckzxxvrayyp2sv806gha0kn6yf6r";
name = "grapnel";
};
@@ -12210,7 +12567,7 @@
sha256 = "0mnwmsn078hz317xfz6c05r7narx3k8956v1ajz5myxx8xrcr24z";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/grass-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/5b7972602399f9df9139cff177e38653bb0f43ed/recipes/grass-mode";
sha256 = "1lq6bk4bwgcy4ra3d9rlca3fk87ydg7xnnqcqjg0pw4m9xnr3f7v";
name = "grass-mode";
};
@@ -12229,7 +12586,7 @@
sha256 = "0rqpgc50z86j4waijfm6kw4zjmzqfii6nnvyix4rkd4y3ryny1x2";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/grin";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/5b7972602399f9df9139cff177e38653bb0f43ed/recipes/grin";
sha256 = "0mvzwmws5pi6hpzgkc43fjxs98ngkr0jvqbclza2jbbqawifzzbk";
name = "grin";
};
@@ -12250,7 +12607,7 @@
sha256 = "1bq73kcx744xnlm2yvccrzlbyx91c492sg7blx2a9z643v3gg1zs";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/grizzl";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/7fabdb05de9b8ec18a3a566f99688b50443b6b44/recipes/grizzl";
sha256 = "0354xskqzxc38l14zxqs31hadwh27v9lyx67y3hnd94d8abr0qcb";
name = "grizzl";
};
@@ -12271,7 +12628,7 @@
sha256 = "0wy8iw12b9bs7xza8jjnjvggr59rgbsgn1kk2g0pj0nppvfdrvjm";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/groovy-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/3fe318b4e51a280a55c01fa30455e4a180df8bd6/recipes/groovy-mode";
sha256 = "1pxw7rdn56klmr6kw21lhzh7zhp338gyf54ypsml64ibzr1x9kal";
name = "groovy-mode";
};
@@ -12292,7 +12649,7 @@
sha256 = "14h0rcd3nkw3pmx8jwip20p6rzl9qdkip5g52gfjjbqfvaffsrkd";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/gruber-darker-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/87ade74553c04cb9dcfe16d03f263cc6f1fed046/recipes/gruber-darker-theme";
sha256 = "0vn4msixb77xj6p5mlfchjyyjhzah0lcmp0z82s8849zd194fxqi";
name = "gruber-darker-theme";
};
@@ -12313,7 +12670,7 @@
sha256 = "0zpmhjwj64s72iv3dgsy07pfh20f25ngsy3pszmlrfkxk0926d8k";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/grunt";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/acc9b816796b9f142c53f90593952b43c962d2d8/recipes/grunt";
sha256 = "1qdzqcrff9x97kyy0d4j636d5i751qja10liw8i0lf4lk6n0lywz";
name = "grunt";
};
@@ -12334,7 +12691,7 @@
sha256 = "1dfd22629gz0c8r4wplvbn0n7bm20549mg5chq289s826ca0kxqk";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/gscholar-bibtex";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/9fa546d3dce59b07a623ee83e3befe139dc10481/recipes/gscholar-bibtex";
sha256 = "0d41gr9amf9vdn9pl9lamhp2swqllxslv9r3wsgzqvjl7zayd1az";
name = "gscholar-bibtex";
};
@@ -12355,7 +12712,7 @@
sha256 = "1bmcvn8a7g9ahpv2fww673hx9pa7nnrj9kpljq65azf61vq2an2g";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/guide-key";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/490b81308ae8132d8c3fd8c3951be88159719172/recipes/guide-key";
sha256 = "0zjrdvppcg8b2k6hfdj45rswc1ks9xgimcr2yvgpc8prrwk1yjsf";
name = "guide-key";
};
@@ -12376,7 +12733,7 @@
sha256 = "040mcfhj2gggp8w1pgip7rxb1bnb23rxlm02wl6x1qv5i0q7g5x3";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/guide-key-tip";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/1f23db7563654ab58632d56e3b01d2f78276fc3e/recipes/guide-key-tip";
sha256 = "0h2vkkbxq361dkn6irm1v19qj7bkhxcjljiksd5wwlq5zsq6bd06";
name = "guide-key-tip";
};
@@ -12397,7 +12754,7 @@
sha256 = "1y46qd9cgkfb0wp2cvksjncyp77hd2jnr4bm4zafqirc3qhbysx0";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/guru-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/e60af6ccb902d8ef00cfecbb13cafebbe3b00d89/recipes/guru-mode";
sha256 = "0j25nxs3ndybq1ik36qyqdprmhav4ba8ny7v2z61s23id8hz3xjs";
name = "guru-mode";
};
@@ -12418,7 +12775,7 @@
sha256 = "1c49lfm5saafxks591qyy2nilymxz3aqlxpsmnad5d0kfhvjr47z";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/hackernews";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/c43a342e47e5ede468bcf51a60d4dea3926f51bd/recipes/hackernews";
sha256 = "1x1jf5gkhmpiby5rmy0sziywh6c1f1n0p4f6dlz6ifbwns7har6a";
name = "hackernews";
};
@@ -12439,7 +12796,7 @@
sha256 = "0d3xmagl18pas19zbpg27j0lmdiry23df48z4vkjsrcllqg25v5g";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ham-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/1e6aed365c42987d64d0cd9a8a6178339b1b39e8/recipes/ham-mode";
sha256 = "000qrdby7d6zmp5066vs4gjlc9ik0ybrgcwzcbfgxb16w1g9xpmz";
name = "ham-mode";
};
@@ -12460,7 +12817,7 @@
sha256 = "0fmr7ji8x5ki9fzybpbg3xbhzws6n7ffk7d0zf9jl1x3jd8d6988";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/haml-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/cae2ac3513e371a256be0f1a7468e38e686c2487/recipes/haml-mode";
sha256 = "0ih0m7zr6kgn6zd45zbp1jgs1ydc5i5gmq6l080wma83v5w1436f";
name = "haml-mode";
};
@@ -12481,7 +12838,7 @@
sha256 = "08l6p9n2ggg4filad1k663qc2gjgfbia4knnnif4sw7h92yb31jl";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/hardcore-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/b929b3343cd5925944665e4e09b4524bca873c95/recipes/hardcore-mode";
sha256 = "1bgi1acpw4z7i03d0i8mrd2hpjn6hyvkdsk0ks9q380yp9mqmiwd";
name = "hardcore-mode";
};
@@ -12502,7 +12859,7 @@
sha256 = "0j9z46j777y3ljpai5czdlwl07f0irp4fsk4677n11ndyqm1amb5";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/hardhat";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/081aa3e1d50c2c9e5a9b9ce0716258a93279f605/recipes/hardhat";
sha256 = "16pdbpm647ag9cadmdm75nwwyzrqsd9y1b4zgkl3pg669mi5vl5z";
name = "hardhat";
};
@@ -12523,7 +12880,7 @@
sha256 = "0rqxi668wra1mfzq4fqscjghis5gqnwpazgidgix13brybaxydx4";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/harvest";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/b1dcfc8f0759792367ee49d2fe96e5bd7ca4105f/recipes/harvest";
sha256 = "1qfhfzjwlnqpbq4kfxvs97fa3xks8zi02fnwv0ik8wb1ppbb77qd";
name = "harvest";
};
@@ -12544,7 +12901,7 @@
sha256 = "1qgqsy7wnqyzkc3b0wixxb8mapmgpi36dignvf8w2raw9ma3q2n0";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/haskell-emacs";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/5daff329a96a6d10bca11d838bbc95d1c8bcfbd9/recipes/haskell-emacs";
sha256 = "1wkh7qws35c32hha0p9rpjz5pls2844920nh919lvp2wmq9l6jd6";
name = "haskell-emacs";
};
@@ -12565,7 +12922,7 @@
sha256 = "1qgqsy7wnqyzkc3b0wixxb8mapmgpi36dignvf8w2raw9ma3q2n0";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/haskell-emacs-base";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/5daff329a96a6d10bca11d838bbc95d1c8bcfbd9/recipes/haskell-emacs-base";
sha256 = "1fwkds6qyhbxxdgxfzmgd7dlcxr08ynrrg5jdp9r7f924pd536vb";
name = "haskell-emacs-base";
};
@@ -12586,7 +12943,7 @@
sha256 = "1qgqsy7wnqyzkc3b0wixxb8mapmgpi36dignvf8w2raw9ma3q2n0";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/haskell-emacs-text";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/5daff329a96a6d10bca11d838bbc95d1c8bcfbd9/recipes/haskell-emacs-text";
sha256 = "1j18fhhra6lv32xrq8jc6l8i56fgn68da81wymcimpmpbp0hl5fy";
name = "haskell-emacs-text";
};
@@ -12607,7 +12964,7 @@
sha256 = "1hxjqr448z7sfk3wb48s1y4q51870gb2zv5bfam30lvwxbl3znkm";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/haskell-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/7f18b4dcbad4192b0153a316cff6533272898f1a/recipes/haskell-mode";
sha256 = "0wijvcpfdbl17iwzy47vf8brkj2djarfr8y28rw0wqvbs381zzwp";
name = "haskell-mode";
};
@@ -12628,7 +12985,7 @@
sha256 = "0b3d7rvqvvcsp51aqfhl0zg9zg8j0p6vlfvga6jp9xc7626vh6f6";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/haskell-snippets";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/b5534e58ea66fd90ba4a69262f0b303c7fb85af4/recipes/haskell-snippets";
sha256 = "10bvv7q694fahcpm83v8lpqihg1gvfzrp1hdzwiffxydfvdbalh2";
name = "haskell-snippets";
};
@@ -12648,7 +13005,7 @@
sha256 = "00bjmww8pc9jr4ssqcv7k0migbxl1c8qs2l1khf25fxvgd1nyy02";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/haskell-tab-indent";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/371f9f45e441cdf4e95557d1e9692619fab3024a/recipes/haskell-tab-indent";
sha256 = "0vdfmy56w5yi202nbd28v1bzj97v1wxnfnb5z3dh9687p2abgnr7";
name = "haskell-tab-indent";
};
@@ -12661,15 +13018,15 @@
haxor-mode = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "haxor-mode";
- version = "0.3.0";
+ version = "0.7.0";
src = fetchFromGitHub {
owner = "krzysztof-magosa";
repo = "haxor-mode";
- rev = "9bc95e03db30633ea8ac487e69af093b519fc604";
- sha256 = "0ylsb3ry3fh3pir347v4m3dqf8ig0gcv0k8m3yp2j847mniwkdr3";
+ rev = "6fa25a8e6b6a59481bc0354c2fe1e0ed53cbdc91";
+ sha256 = "0pdfvqbz4wmjl15wi3k4h7myij8v63vmyiq8g9fai18f7ad2klp1";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/haxor-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/cd0352cac399eb2072dfb788deea9cc22d902964/recipes/haxor-mode";
sha256 = "1y4m058whdqnkkf9s6hzi0h6w0fc8ajfawhpjj0wqjam4adnfkq5";
name = "haxor-mode";
};
@@ -12690,7 +13047,7 @@
sha256 = "0hiw226gv73jh7s3jg4p1c15p4km4rs7i9ab4wgpkl5lg4vrz5i6";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/hcl-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/66b441525dc300b364d9be0358ae1e0fa2a8b4fe/recipes/hcl-mode";
sha256 = "1wrs9kj6ahsdnbn3fdaqhclq1ia6w4x726hjvl6pyk01sb0spnin";
name = "hcl-mode";
};
@@ -12703,15 +13060,15 @@
helm = callPackage ({ async, emacs, fetchFromGitHub, fetchurl, helm-core, lib, melpaBuild, popup }:
melpaBuild {
pname = "helm";
- version = "1.9.6";
+ version = "1.9.8";
src = fetchFromGitHub {
owner = "emacs-helm";
repo = "helm";
- rev = "84115895421601a82de65d7da6fa0e70a6deb79b";
- sha256 = "11bnibhnci1cpxrdlcxzdi6m6zsyn6c51gi6h2a9xp60fcm57h5f";
+ rev = "e679393efc1fcb57c67892025a442ee0b396d8dc";
+ sha256 = "1z8hkk0iwl4h5d9w7p435hdk6y2xqxzdicj7va3z7b1p08zf1yzq";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/90ab37af6b0c85eac11c423bc8f0d93d6d8a9fd4/recipes/helm";
sha256 = "0xsf4rg7kn0m5wjlbwhd1mc38lg2822037dyd0h66h6x2gbs3fd9";
name = "helm";
};
@@ -12732,7 +13089,7 @@
sha256 = "0ps86zpyywibjwcm9drmamla979ad61fyqr8d6bv71fr56k9ak21";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-ack";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/258d447778525c26c65a5819ba1edc00e2bb65e5/recipes/helm-ack";
sha256 = "1a8sc5gd2g57dl9g18wyydfmihy74yniwhjr27h7vxylnf2g3pni";
name = "helm-ack";
};
@@ -12745,15 +13102,15 @@
helm-ag = callPackage ({ emacs, fetchFromGitHub, fetchurl, helm, lib, melpaBuild }:
melpaBuild {
pname = "helm-ag";
- version = "0.55";
+ version = "0.56";
src = fetchFromGitHub {
owner = "syohex";
repo = "emacs-helm-ag";
- rev = "3d450c8a33612035736d0eb513afec517245a636";
- sha256 = "0ybxjvhzpsg8k9j1315ls6xa3pqysm5xabn94xla99hc0n98mpw4";
+ rev = "8e652e426f1cb285b35920cfba6a586da624c060";
+ sha256 = "0hyrladvqf4vn7wliajh33jippfih3rj5jbpx73kcpwqpcg15s0a";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-ag";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/81f0f525680fea98e804f39dbde1dada887e8821/recipes/helm-ag";
sha256 = "050qh5xqh8lwkgmz3jxm8gql5nd7bq8sp9q6mzm2z7367qy4qqyf";
name = "helm-ag";
};
@@ -12774,7 +13131,7 @@
sha256 = "015p5sszd54x81qm96gx6xwjkvbi4f3j9i2nhcvlkk75s95w1ijv";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-aws";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/421182006b8af17dae8b5ad453cc11e2d990a053/recipes/helm-aws";
sha256 = "0sjgdjpznjxsf6nlv2ah45fw17j8j5apdphd1fp43rjv1lskkgc5";
name = "helm-aws";
};
@@ -12795,7 +13152,7 @@
sha256 = "0d6h4gbb69abxxgm85pdi5rsaf9h72yryg72ykd5633i1g4s8a76";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-backup";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/5e6eba7b201e91211e43c39e501f6066f0afeb8b/recipes/helm-backup";
sha256 = "182jbm36yzayxi9y3vhpyn25ivrgay37sncqvah35vbw52lnjcn3";
name = "helm-backup";
};
@@ -12816,7 +13173,7 @@
sha256 = "011k37p4vnzm1x8vyairllanvjfknskl20bdfv0glf64xgbdpfil";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-bm";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/115033d7b02d3ca42902195de933f62c5f927ae4/recipes/helm-bm";
sha256 = "1dnlcvn0zv4qv4ii4j0h9r8w6vhi3l0c5aa768kblh5r2rf4bjjh";
name = "helm-bm";
};
@@ -12837,7 +13194,7 @@
sha256 = "1j9xmlidipsfbz0kfxwz0c6hi9xsbk36h6i30wqdd0ls0zw5xm30";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-bundle-show";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/2f10f7387cca102696c38af1d8dc0fe5da5e366f/recipes/helm-bundle-show";
sha256 = "1af5g233kjf04m2fryizk51a1s2mcmj36zip5nyb8skcsfl4riq7";
name = "helm-bundle-show";
};
@@ -12858,7 +13215,7 @@
sha256 = "108584bmadgidqkdfvf333zkyb5v9f84pasz5h01fkh57ks8by9f";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-c-yasnippet";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/2fc20598a2cd22efb212ba43159c6728f0249e5e/recipes/helm-c-yasnippet";
sha256 = "0jwj4giv6lxb3h7vqqb2alkwq5kp0shy2nraik33956p4l8dfs90";
name = "helm-c-yasnippet";
};
@@ -12879,7 +13236,7 @@
sha256 = "1gwg299s8ps0q97iw6p515gwn73rjk1icgl3j7cj1s143njjg122";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-circe";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/f98a21483682eee0950bdba3a93d178db2118e95/recipes/helm-circe";
sha256 = "12jfzg03573lih2aapvv5h2mi3pwqc9nrmv538ivjywix5117k3v";
name = "helm-circe";
};
@@ -12900,7 +13257,7 @@
sha256 = "1l61csd1gqz7kg5zjx60cfy824g42p682z7pk0rqzlrz8498wvkh";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-commandlinefu";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/7eaf1e41ef2fa90b6bb6a80891ef1bf52ef1029b/recipes/helm-commandlinefu";
sha256 = "150nqib0sr4n35vdj1xrxcja8gkv3chzhdbgkjxqgkz2yq10xxnd";
name = "helm-commandlinefu";
};
@@ -12913,15 +13270,15 @@
helm-core = callPackage ({ async, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "helm-core";
- version = "1.9.6";
+ version = "1.9.8";
src = fetchFromGitHub {
owner = "emacs-helm";
repo = "helm";
- rev = "84115895421601a82de65d7da6fa0e70a6deb79b";
- sha256 = "11bnibhnci1cpxrdlcxzdi6m6zsyn6c51gi6h2a9xp60fcm57h5f";
+ rev = "e679393efc1fcb57c67892025a442ee0b396d8dc";
+ sha256 = "1z8hkk0iwl4h5d9w7p435hdk6y2xqxzdicj7va3z7b1p08zf1yzq";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-core";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/ef7a700c5665e6d72cb4cecf7fb5a2dd43ef9bf7/recipes/helm-core";
sha256 = "1dyv8rv1728vwsp6vfdq954sp878jbp3srbfxl9gsgjnv1l6vjda";
name = "helm-core";
};
@@ -12942,7 +13299,7 @@
sha256 = "0xnqkc4z22m41v5lgf87dd8xc4gmf932zbnbdhf9xic1gal1779c";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-cscope";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/3d2e3460df1ec750053bc8402ad6eb822c10c697/recipes/helm-cscope";
sha256 = "13a76wc1ia4c0v701dxqc9ycbb43d5k09m5pfsvs8mccisfzk9y4";
name = "helm-cscope";
};
@@ -12963,7 +13320,7 @@
sha256 = "0s503q56acv70i5qahrdgk3nhvdpb3wa22a8jh1kvb7lykaw74ai";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-dash";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/39c3ea21430473ef22d5ea9c8b2cf7ec9689883a/recipes/helm-dash";
sha256 = "1cnxssj2ilszq94v5cc4ixblar1nlilv9askqjp9gfnkj2z1n9cy";
name = "helm-dash";
};
@@ -12976,15 +13333,15 @@
helm-descbinds = callPackage ({ fetchFromGitHub, fetchurl, helm, lib, melpaBuild }:
melpaBuild {
pname = "helm-descbinds";
- version = "1.8";
+ version = "1.12";
src = fetchFromGitHub {
owner = "emacs-helm";
repo = "helm-descbinds";
- rev = "5d8e84e6c047ce8a042fdcd827abb421f4848ac7";
- sha256 = "1cm2vaw0j1x2w2m45k6iqbzm7nydfdx1x89673vsvb90whdgvjbp";
+ rev = "b4ad76372a1b9f4415322d210b3888423247693d";
+ sha256 = "1qjhk1aag3arks0pgj3k2plr6k3cvb7i45apyczka6dvz8fmwj47";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-descbinds";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/447610a05422cd2f35399e43d98bf46410ff0408/recipes/helm-descbinds";
sha256 = "1890ss4pimjxskzzllf57fg07xbs8zqcrp6r8r6x989llrfvd1h7";
name = "helm-descbinds";
};
@@ -13005,7 +13362,7 @@
sha256 = "1v4kmw4hflvmy5v8mlp2mm284809alxybqszvv4j6dhjxyg4xz6a";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-firefox";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/257e452d37768d2f3a6e0a5ccd062d128b2bc867/recipes/helm-firefox";
sha256 = "0677nj0zsk11vvp3q3xl9nk8dhz3ki9yl3kfb57wgnmprp109wgs";
name = "helm-firefox";
};
@@ -13026,7 +13383,7 @@
sha256 = "1fg786m4m6x7brbbchpdf4pwvwma7sn4597p5lzmhvh187z6g525";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-flycheck";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/9cce1662d4ca7b7d868685084294d22ebf6c39e9/recipes/helm-flycheck";
sha256 = "038f9294qc0jnkzrrjxm97hyhwa4sca3wdsjbaya50cf0g4cmk7b";
name = "helm-flycheck";
};
@@ -13047,7 +13404,7 @@
sha256 = "00ls9v3jdpz3wka90crd193z3ipwnf1b0slmldn4vb9ivrndh6wn";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-ghc";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/299ebd9b72b5db061d31d7ae4f00b1ce6bb9db34/recipes/helm-ghc";
sha256 = "1q5ia8sgpflv2hhvw7hjpkfb25vmrjwlrqz1f9qj2qgmki5mix2d";
name = "helm-ghc";
};
@@ -13068,7 +13425,7 @@
sha256 = "0y379qap3mssz9nslb08vfzq5ihqcm156fbx0dszgz9d6xgkpdhw";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-ghq";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/e94eec646def7c77b15f6a6ac1841200848e62c7/recipes/helm-ghq";
sha256 = "14f3cbsj7jhlhrp561d8pasllnx1cmi7jk6v2fja7ghzj76dnvq6";
name = "helm-ghq";
};
@@ -13089,7 +13446,7 @@
sha256 = "1hx9m18dfpl97xaskadhqdrd8syk271shxjasn3jnqa8a07m2983";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-git-grep";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/338d28c3fe201a7b2f15793be6d540f44819f4d8/recipes/helm-git-grep";
sha256 = "1ww6a4q78w5hnwikq7y93ic2b7x070c27r946lh6p8cz1k4b8vqi";
name = "helm-git-grep";
};
@@ -13110,7 +13467,7 @@
sha256 = "1sbhh3dmb47sy3r2iw6vmvbq5bpjac4xdg8i5a0m0c392a38nfqn";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-github-stars";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/2e77f4a75504ca3e1091cdc757e91fb1ae361fa7/recipes/helm-github-stars";
sha256 = "1r4mc4v71171sq9rbbhm346s92fb7jnvvl91y2q52jqmrnzzl9zy";
name = "helm-github-stars";
};
@@ -13131,7 +13488,7 @@
sha256 = "0ywjrgafpl4cnrykx9yysazr7hkd2pxk67h065f8z3mid6cgh1wa";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-gitlab";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/1d012991188956f6e06c37d504b0d06ab31487b9/recipes/helm-gitlab";
sha256 = "010ihx3yddhb8j3jqcssc49qnf3i7xlz0s380mpgrdxgz6yahsmd";
name = "helm-gitlab";
};
@@ -13152,7 +13509,7 @@
sha256 = "0h3iql8dxq80vpr1cv7fdaw0aniykp2rfzh07j5941jkiy4q63h0";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-go-package";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/449d272b94c189176305ca17652d76adac087ce5/recipes/helm-go-package";
sha256 = "102yhn1xg83l67yaq3brn35a03fkvqqhad10rq0h39n4i1slq3z6";
name = "helm-go-package";
};
@@ -13173,7 +13530,7 @@
sha256 = "0zyspn9rqfs3hkq8qx0q1w5qiv30ignbmycyv0vn3a6q7a5fsnhx";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-gtags";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/81f0f525680fea98e804f39dbde1dada887e8821/recipes/helm-gtags";
sha256 = "1kbpfqhhbxmp3f70h91x2fws9mhx87zx4nzjjl29lpl93vf8xckl";
name = "helm-gtags";
};
@@ -13194,7 +13551,7 @@
sha256 = "0hmvyyhddpf831cad35c9z9fv5mpdq6qg4nzbdghlqs9pf7ik6h2";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-hatena-bookmark";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/3e9335ad16d4151dd4970c4a3ad1fee9a84404fa/recipes/helm-hatena-bookmark";
sha256 = "14091zrp4vj7752rb5s3pkyvrrsdl7iaj3q9ys8rjmbsjwcv30id";
name = "helm-hatena-bookmark";
};
@@ -13215,7 +13572,7 @@
sha256 = "1imfzz6cfdq7fgrcgrafy2nln929mgh31vybk9frm7a9jpamqdxp";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-hayoo";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/e1e1f2efa82d5097c1f5e85fba3f67b38a5b37c2/recipes/helm-hayoo";
sha256 = "0xdvl6q2rpfsma4hx8m4snbd05s4z0bi8psdalixywlp5s4vzr32";
name = "helm-hayoo";
};
@@ -13236,7 +13593,7 @@
sha256 = "0bz2ngw816jvpw1a10j31y5hf1knz0mzz60l073h33qci11jbwid";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-ispell";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/edc42b26027dcd7daf0d6f2bd19ca4736fc12d6d/recipes/helm-ispell";
sha256 = "0qyj6whgb2p0v231wn6pvx4awvl1wxppppqqbx5255j8r1f3l1b0";
name = "helm-ispell";
};
@@ -13257,7 +13614,7 @@
sha256 = "1nd562lffc41r3y5x7y46f37ra97avllk2m95w23f9g42h47f1ar";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-lobsters";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/6247e3786131e5b2a7824804e49927ed65d266d5/recipes/helm-lobsters";
sha256 = "0dkb78n373kywxj8zba2s5a2g85vx19rdswv9i78xjwv1lqh8cpp";
name = "helm-lobsters";
};
@@ -13278,7 +13635,7 @@
sha256 = "0azs971d7pqd4ddxzy7bfs52cmrjbafwrcnf57afw39d772rzpdf";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-ls-git";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/b487b4c0db9092bb7e32aad9265b79a9d18c8478/recipes/helm-ls-git";
sha256 = "08rsy9479nk03kinjfkxddrq6wi4sx2a0wrz37cl2q517qi7sibj";
name = "helm-ls-git";
};
@@ -13299,7 +13656,7 @@
sha256 = "1hma79i69l8ilkr3l4b8zqk3ny62vqr1ym2blymia4ibwk4zqbda";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-ls-hg";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/03a22c9ec281330c4603aec6feb04cf580dee340/recipes/helm-ls-hg";
sha256 = "0ca0xn7n8bagxb504xgkcv04rpm1vxhx2m77biqrx5886pwl25bh";
name = "helm-ls-hg";
};
@@ -13320,7 +13677,7 @@
sha256 = "17ls0bplnja2qvg3129x2irgsgs7l4bjj0qi7b9z16i6knjkwfya";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-make";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/0f25f066c60d4caff1fbf885bc944cac47515ec8/recipes/helm-make";
sha256 = "1r6jjy1rlsii6p6pinbz7h6gcw4vmcycd3vj338bfbnqp5rrf2mc";
name = "helm-make";
};
@@ -13341,7 +13698,7 @@
sha256 = "03588hanfa20pjp9w1bqy8wsf5x6az0vfq0bmcnr4xvlf6fhkyxs";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-migemo";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/ce6eb840368f8cbee66dc061478d5096b9dacb68/recipes/helm-migemo";
sha256 = "1cjvb1lm1fsg5ky63fvrphwl5a7r7xf6qzb4mvl06ikj8hv2h33x";
name = "helm-migemo";
};
@@ -13362,7 +13719,7 @@
sha256 = "1srx5f0s9x7zan7ayqd6scxfhcvr3nkd4yzs96hphd87rb18apzk";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-mode-manager";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/903a2b64d9a704105100d61f28cdfa8f497abd7d/recipes/helm-mode-manager";
sha256 = "1w9svq1kyyj8mmljardhbdvykb334nq1y18s956g4rvqyas2ciyd";
name = "helm-mode-manager";
};
@@ -13383,7 +13740,7 @@
sha256 = "0gknncyhr2392xkvghgy5mh6gdv6qzvswidx2wy04ypb4s0vxgq2";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-mt";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/e726bf0b9b3f371b21f1f0d75175e0dda62f6fb0/recipes/helm-mt";
sha256 = "04hx8cg8wmm2w8g942nc9mvm12ammmjnx4k61ljrq76smd8s3x2a";
name = "helm-mt";
};
@@ -13404,7 +13761,7 @@
sha256 = "1lm7rkgf7q5g4ji6v1masfbhxdpwni8d77dapsy5k9p73cr2aqld";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-nixos-options";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/6846c7d86e70a9dd8300b89b61435aa7e146be96/recipes/helm-nixos-options";
sha256 = "1nsi4hfw53iwn29fp33dkri1c6w8kdyn4sa0yn2fi6144ilmq933";
name = "helm-nixos-options";
};
@@ -13425,7 +13782,7 @@
sha256 = "1hq1nnmgkx0a8sv6g8k4v9f0102qg7jga0hcjnr8lcji51nqrcya";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-open-github";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/81f0f525680fea98e804f39dbde1dada887e8821/recipes/helm-open-github";
sha256 = "1wqlwg21s9pjgcrwr8kdrppinmjn235nadkp4003g0md1d64zxpx";
name = "helm-open-github";
};
@@ -13446,7 +13803,7 @@
sha256 = "02yjnag9wr9dk93z41f0i5mqij9bz57fxkv4nddabyc18k7zfrhj";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-org-rifle";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/f39cc94dde5aaf0d6cfea5c98dd52cdb0bcb1615/recipes/helm-org-rifle";
sha256 = "0hx764vql2qgw9i8qrr3kkn23lw6jx3x604dm1y33ig6a15gy3a3";
name = "helm-org-rifle";
};
@@ -13467,7 +13824,7 @@
sha256 = "1zyjxrrda7nxxjqczv2p3sfimxy2pq734kf51j6v2y0biclc4bk3";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-orgcard";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/ce6eb840368f8cbee66dc061478d5096b9dacb68/recipes/helm-orgcard";
sha256 = "1a56y8fny7qxxidc357n7l3yi7h66hidhvwhkam8y5wk6k61460p";
name = "helm-orgcard";
};
@@ -13488,7 +13845,7 @@
sha256 = "14ad0b9d07chabjclffjyvnmrasar1di9wmpzf78bw5yg99cbisw";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-package";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/e31f4e01891b6a863a38da45eeea57ec656b5813/recipes/helm-package";
sha256 = "1qab2abx52xcqrnxzl0m3533ngp8m1cqmm3hgpzgx7yfrkanyi4y";
name = "helm-package";
};
@@ -13509,7 +13866,7 @@
sha256 = "1r2ndmrw5ivawb940j8jnmqzxv46qrzd3cqh9fvxx5yicf020fjf";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-pages";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/7a33cb19b6e71240896bbe5da07ab25f2ee11f0b/recipes/helm-pages";
sha256 = "1v3w8100invb5wsmm3dyl41pjs7s889s3b1rlr6vlcspa1ncv3wj";
name = "helm-pages";
};
@@ -13530,7 +13887,7 @@
sha256 = "01cj2897hqz02mfz32nxlyyp59iwm0gz1zj11s8ll7pwy9q3r90g";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-perldoc";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/81f0f525680fea98e804f39dbde1dada887e8821/recipes/helm-perldoc";
sha256 = "1qx0g81qcqanjiz5fxysagjhsxaj31g6nsi2hhdgq4x4nqrlmrhb";
name = "helm-perldoc";
};
@@ -13551,7 +13908,7 @@
sha256 = "0bgpd50ningqyzwhfinfrn6gqacard5ynwllhg9clq0f683sbck2";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-proc";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/4d7905061141721ce9f2f8ccea8fc4cf53519481/recipes/helm-proc";
sha256 = "1bq60giy2bs9m3hlbc5nwvy51702a98s0vqass3b290hdgki4bnx";
name = "helm-proc";
};
@@ -13572,7 +13929,7 @@
sha256 = "1q7hfj8ldwivhjp9ns5pvsn0ds6pyvl2zhl366c22s6q8jmbr8ik";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-project-persist";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/98780edaf8b1d97aec9e25d07d93289c90fd5069/recipes/helm-project-persist";
sha256 = "1n87kn1n3453mpdj6amyrgivslskmnzdafpspvkz7b0smf9mv2ld";
name = "helm-project-persist";
};
@@ -13593,7 +13950,7 @@
sha256 = "0jm6nnnjyd4kmm1knh0mq3xhnw2hvs3linwlynj8yaliqvlv6brv";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-pt";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/550eb9f42c90fd9e80714579c12ee6bfcacb5bb7/recipes/helm-pt";
sha256 = "1imhy0bsm9aldv0pvf88280qdya01lznxpx5gi5wffhrz17yh4pi";
name = "helm-pt";
};
@@ -13614,7 +13971,7 @@
sha256 = "1jy9l4an2aqynj86pw2qxpzw446xm376n2ykiz17qlimqbxhwkgz";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-purpose";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/931471b9df5e722d579aab378887890bf6e854a5/recipes/helm-purpose";
sha256 = "0am8fy7ihk4hv07a6bnk9mwy986h6i6qxwpdmfhajzga71ixchg6";
name = "helm-purpose";
};
@@ -13635,7 +13992,7 @@
sha256 = "1ik0vllakh73kc2zbgii4sm33n9pj388gaz69j4drz2mik307zvs";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-pydoc";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/81f0f525680fea98e804f39dbde1dada887e8821/recipes/helm-pydoc";
sha256 = "1sh7gqqiwk85kx89l1sihlkb8ff1g9n460nwj1y1bsrpfl6if4j7";
name = "helm-pydoc";
};
@@ -13656,7 +14013,7 @@
sha256 = "05394vf125qlgfrhkaqvly3340qp3zy7kldsnisms9gv0l1c60bq";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-qiita";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/37331f6cc8a95fd2b2ed5b20be0bcb604ea66dee/recipes/helm-qiita";
sha256 = "1iz2w1901zz3zk9zazikmnkzng5klnvqn4ph1id7liksrcdpdmpm";
name = "helm-qiita";
};
@@ -13677,7 +14034,7 @@
sha256 = "1hfn7zk3pgz3w8mn44hh6dcv377j5272azx4r12p95kkp770xls2";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-recoll";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/0a0d168f96470753c22b92ad863be98d8c421ccd/recipes/helm-recoll";
sha256 = "0pr2pllplml55k1xx9inr3dm90ichg2wb62dvgvmbq2sqdf4606b";
name = "helm-recoll";
};
@@ -13698,7 +14055,7 @@
sha256 = "163ljqar3vvbavzc8sk6rnf8awyc2rhh2g117fglswich3c8lnqg";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-robe";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/e7018f57f6f0e4bd71e172ae23c050b44276581b/recipes/helm-robe";
sha256 = "1gi4nkm9xvnxv0frmhiiw8dkmnmhfpr9n0b6jpidlvr8xr4s5kyw";
name = "helm-robe";
};
@@ -13719,7 +14076,7 @@
sha256 = "1sff8kagyhmwcxf9062il1077d4slvr2kq76abj496610gpb75i0";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-rubygems-org";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/655be547d57d358eff968f42c13dcf4371529a72/recipes/helm-rubygems-org";
sha256 = "04ni03ak53z3rggdgf68qh7ksgcf3s0f2cv6skwjqw7v8qhph6qs";
name = "helm-rubygems-org";
};
@@ -13740,7 +14097,7 @@
sha256 = "1s6aw1viyzhhrfiazzi82n7bkvshp7clwi6539660m72lfwc5zdl";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-sage";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/09760a7f7b3cff6551c394fc7b2298567ca88eb0/recipes/helm-sage";
sha256 = "1vnq15fjaap0ai7dadi64sm4415xssmahk2j7kx45sasy4qaxlbj";
name = "helm-sage";
};
@@ -13761,7 +14118,7 @@
sha256 = "13j3rgg5zfpxds6vsyq0aqws1f3p5y5dsq8558nqsymqvycpn047";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-spaces";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/8c2ffb50643223b68a62fab348cd5aba24ce92e6/recipes/helm-spaces";
sha256 = "0hdvkk173k98iycvii5xpbiblx044125pl7jyz4kb8r1vvwcv791";
name = "helm-spaces";
};
@@ -13774,15 +14131,15 @@
helm-swoop = callPackage ({ emacs, fetchFromGitHub, fetchurl, helm, lib, melpaBuild }:
melpaBuild {
pname = "helm-swoop";
- version = "1.5.1";
+ version = "1.7.2";
src = fetchFromGitHub {
owner = "ShingoFukuyama";
repo = "helm-swoop";
- rev = "d834b05538dd3381c68f1260d39d3a7eb6a8f7f7";
- sha256 = "1lkjrz9ma2bxr8vskdm3sgrmsyiic798q3271dw38d453bhv4bl1";
+ rev = "6d3fdcfb6dea06242efc8ff4cafff9917e558bfc";
+ sha256 = "1pjpzccviz95zgl86yw2xda7lhlsfdddf8la8di8rka8sz79nw72";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-swoop";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/1e6fe2ffb46ea763bc6fb6fb6c899be6d3a67440/recipes/helm-swoop";
sha256 = "1fqbhj75hcmy7c2vdd0m7fk3m34njmv5s6k1i9y94djpbd13i3d8";
name = "helm-swoop";
};
@@ -13803,7 +14160,7 @@
sha256 = "0rzbdrs5d5a0icpxrqik2iaz8i5bacw6nm2caf75s9w9j0j6s9li";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-themes";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/81f0f525680fea98e804f39dbde1dada887e8821/recipes/helm-themes";
sha256 = "0r7kyd0i0spwi7xkjrpm2kyphrsl3hqm5pw96nd3ia0jiwp8550j";
name = "helm-themes";
};
@@ -13824,7 +14181,7 @@
sha256 = "14lbdvs9xdnipsn3lywbvgsqwqnbm8fxm6d1ilq0cj5z6zkxkya0";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-unicode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/2c35c6f876372c440bcf6133d5dfce7256f0743c/recipes/helm-unicode";
sha256 = "052xqzvcfzpsbl75ylqb1khqndvc2dqdymqlwivs0darlds0w8y4";
name = "helm-unicode";
};
@@ -13845,7 +14202,7 @@
sha256 = "0s8zp3kx2kxlfyd26yr3lphwcybhbm8qa9vzmxr3kaylwy6jpz5q";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-w32-launcher";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/fa678329a5081e1affa460c00239dabfd1b9dd82/recipes/helm-w32-launcher";
sha256 = "0bzn2vhspn6lla815qxwsl9gwfyiwgwmnysr6rjpyacmi17d73ri";
name = "helm-w32-launcher";
};
@@ -13858,15 +14215,15 @@
helm-zhihu-daily = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, helm, lib, melpaBuild }:
melpaBuild {
pname = "helm-zhihu-daily";
- version = "0.2";
+ version = "0.3";
src = fetchFromGitHub {
owner = "xuchunyang";
repo = "helm-zhihu-daily";
- rev = "fcc534bb42c81070063b28d3d939a53af0fa9a7c";
- sha256 = "1j6ssbjbm5ym3pg0icpfp735y4dfhlky9qhl9hwp2n3wmba5g9h1";
+ rev = "be27dcc6be1eb97663b65581a9a5c0fc81cfaba7";
+ sha256 = "1s8q97pra27bacvm5knj0sjgj7iqljlhxqiniaw8ij8w4fhcdh93";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-zhihu-daily";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/27246ec2bad3c85f8bb76aa26ebcd800edfe0d70/recipes/helm-zhihu-daily";
sha256 = "0hkgail60s9qhxl0pskqxjvfz93iq1qh1kcmcq0x5kq7d08b911r";
name = "helm-zhihu-daily";
};
@@ -13887,7 +14244,7 @@
sha256 = "1zr59kcnkd9bm5676shmz63n0wpnfr7yl9g4l01ng0xcili1n13i";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/hfst-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/e324bb114997f9cc57d76d8a66fec4ff4d1d71fe/recipes/hfst-mode";
sha256 = "1w342n5k9ak1m5znysvrplpr9dhmi7hxbkr4d1dx51dn0azbpjh7";
name = "hfst-mode";
};
@@ -13908,7 +14265,7 @@
sha256 = "1s08sgbh5v59lqskd0s1dscs6dy7z5mkqqkabs3gd35agbfvbmlf";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/hi2";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/ba880f0130707098e5b648f74d14e151b0110e4e/recipes/hi2";
sha256 = "1wxkjg1jnw05lqzggi20jy2jl20d8brvv76vmrf6lnz62g6jv9h2";
name = "hi2";
};
@@ -13929,7 +14286,7 @@
sha256 = "0c65jk00j88qxfki2g88hy9g6n92rzskwcn1fbmwcw3qgaz4b6w5";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/highlight-blocks";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/eaf524488c408483ea8f2c3a71174b1b5fc3f5da/recipes/highlight-blocks";
sha256 = "1a32iv5kgf6g6ygbs559w156dh578k45m860czazfx0d6ap3k5m1";
name = "highlight-blocks";
};
@@ -13950,7 +14307,7 @@
sha256 = "08czwa165rnd5z0dwwdddn7zi5w63sdk31l47bj0598kbly01n7r";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/highlight-defined";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/acc9b816796b9f142c53f90593952b43c962d2d8/recipes/highlight-defined";
sha256 = "1vjxm35wf4c2qphpkjh57hf03a5qdssdlmfj0n0gwxsdw1q5rpms";
name = "highlight-defined";
};
@@ -13971,7 +14328,7 @@
sha256 = "00l54k75qk24a0znzl4ij3s3nrnr2wy9ha3za8apphzlm98m907k";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/highlight-indentation";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/31c443de5088410c0fe1b1c18f664b33ad259277/recipes/highlight-indentation";
sha256 = "0iblrrbssjwfn71n8xxjcl98pjv1qw1igf3hlz6mh8740fsca3d6";
name = "highlight-indentation";
};
@@ -13992,7 +14349,7 @@
sha256 = "083jmw9jaxj5d5f0b0gxxb0gjdi4dv1sm66559105slbkl2nsa3f";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/highlight-numbers";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/882e3a4877ddd22cc52f56f0ce3d55b6e4831c7a/recipes/highlight-numbers";
sha256 = "1bywrjv9ybr65mwkrxggb52jdqn16z8acgs5vqm0faq43an8i5yv";
name = "highlight-numbers";
};
@@ -14013,7 +14370,7 @@
sha256 = "08ld4wjrkd77cghmrf1n2hn2yzid7bdqwz6b1rzzqaiwxl138iy9";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/highlight-parentheses";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/7fabdb05de9b8ec18a3a566f99688b50443b6b44/recipes/highlight-parentheses";
sha256 = "1d38wxk5bwblddr74crzwjwpgyr8zgcl5h5ilywg35jpv7n66lp5";
name = "highlight-parentheses";
};
@@ -14034,7 +14391,7 @@
sha256 = "1ahg9qzss67jpw0wp2izys6lyss4nqjy9320fpa4vdx39msdmjjb";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/highlight-quoted";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/93b5ba18e4bc31ca60aee9cb4674586cd8523bcf/recipes/highlight-quoted";
sha256 = "0x6gxi0jfxvpx7r1fm43ikxlxilnbk2xbhdy9xivhgmmdyqiqqkl";
name = "highlight-quoted";
};
@@ -14055,7 +14412,7 @@
sha256 = "09z13kv2g21kjjkkm3iyaz93sdjmdy2d563r8n7r7ng94acrn7f6";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/highlight-symbol";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/a6da3640b72496e2b32e6ed21aa39df87af9f7f3/recipes/highlight-symbol";
sha256 = "0gw8ffr64s58qdbvm034s1b9xz1hynzvbk8ld67j06fxpc98qaj4";
name = "highlight-symbol";
};
@@ -14076,7 +14433,7 @@
sha256 = "0hb74j5137yj3rm2si16xzwmcvkiwx8ywh1qrlnrzv5gl4viyjzb";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/hindent";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/dbae71a47446095f768be35e689025aed57f462f/recipes/hindent";
sha256 = "1f3vzgnqigwbwvglxv0ziz3kyp5dxjraw3vlghkpw39f57mky4xz";
name = "hindent";
};
@@ -14097,7 +14454,7 @@
sha256 = "0mzk4agkcaaw7gryi0wrxv0blqndqsjf1ivdvr2nrnqi798sdhbr";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/hippie-expand-slime";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/cae2ac3513e371a256be0f1a7468e38e686c2487/recipes/hippie-expand-slime";
sha256 = "0kxyv1lpkg33qgfv1jfqx03640py7525bcnc9dk98w6y6y92zf4m";
name = "hippie-expand-slime";
};
@@ -14118,7 +14475,7 @@
sha256 = "0nfr8ad0klqwi97fjchvwx9mfc672lhv3ll166sr8vn6jlh7rkv0";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/hippie-namespace";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/c9db386ab3910940addae6e925b2ac17e64e0f87/recipes/hippie-namespace";
sha256 = "1bzjhq116ci9c9f0aw121fn3drmg2pw5ny1w6wcasa4p30syxxf0";
name = "hippie-namespace";
};
@@ -14139,7 +14496,7 @@
sha256 = "0dy98sg92xvnr4algm2v2bnjcdwzv0b0vqk0312b0ziinkzisas1";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/history";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/f51d4cc6521546c99197adeb35459fcd53bd67d4/recipes/history";
sha256 = "0s8pcz53bk1w4h5847204vb6j838vr8za66ni1b2y4pas76zjr5g";
name = "history";
};
@@ -14160,7 +14517,7 @@
sha256 = "1mxicha6m61qxz1mv9z76x4g9fpqk4ch9i6jf7nnpxd6x4xz3f7z";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/historyf";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/a67279875c19475433fa13625c95ee5855962a59/recipes/historyf";
sha256 = "15pcaqfjpkfwcy46yqqw10q8kpw7aamcg0gr4frbdgzbv0yld08s";
name = "historyf";
};
@@ -14181,7 +14538,7 @@
sha256 = "0889dzrwizpkyh3wms13k8zx27ipsrsxfa4j4yzk4cwk3aicckcr";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/hl-anything";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/f38d26ede4e2e1d495a02c68e3b5041702b032e8/recipes/hl-anything";
sha256 = "0czpc82j5hbzprc66aall72lqnk38dxgpzx4rs8sbx95cag12dxa";
name = "hl-anything";
};
@@ -14202,7 +14559,7 @@
sha256 = "1hgigbgppdhmr7rc901r95kyydjk05dck8mwbryh7kpglns365fa";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/hl-sentence";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/cae2ac3513e371a256be0f1a7468e38e686c2487/recipes/hl-sentence";
sha256 = "16sjfs0nnpwzj1cqfna9vhmxgznwwhb2qdmjci25hlgrdxwwyahs";
name = "hl-sentence";
};
@@ -14223,7 +14580,7 @@
sha256 = "1fsyj9cmqcz5nfxsfcyvpq2vqrhgl99xvq7ligviawl3x77376kw";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/hl-sexp";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/48b99dd60dda3039a0e1e71bb4b796d62340279e/recipes/hl-sexp";
sha256 = "0kg0m20i9ylphf4w0qcvii8yp65abdl2q5flyphilk0jahwbj9jy";
name = "hl-sexp";
};
@@ -14236,15 +14593,15 @@
hl-todo = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "hl-todo";
- version = "1.6.0";
+ version = "1.7.0";
src = fetchFromGitHub {
owner = "tarsius";
repo = "hl-todo";
- rev = "954ab8390b627499248986a608aacfaa6ddae4e0";
- sha256 = "0rvkkzbcf36jbnk8adn39gmv0c8m0a189q9s235nasmbry8pjqmg";
+ rev = "dff381a5b2c9235bbdbe32123751ecdf17df7432";
+ sha256 = "0r2xyljcvhh547mkx7h9diajc21l6lpwjwpklc3h7491zazv3s6r";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/hl-todo";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/7c262f6a1a10e8b3cc30151cad2e34ceb66c6ed7/recipes/hl-todo";
sha256 = "1iyh68xwldj1r02blar5zi01wnb90dkbmi67vd6h78ksghl3z9j4";
name = "hl-todo";
};
@@ -14265,7 +14622,7 @@
sha256 = "1wg6vc9swwspi6s6jpig3my83i2pq8vkq2cy1q3an87rczacmfzp";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/hoa-pp-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/0c0d707dad9dc86bb3d6a829a60e21e92a5f3160/recipes/hoa-pp-mode";
sha256 = "01ijfn0hd645j6j88rids5dsanmzwmky37slf50yqffnv69jwvla";
name = "hoa-pp-mode";
};
@@ -14278,15 +14635,15 @@
homebrew-mode = callPackage ({ dash, emacs, fetchFromGitHub, fetchurl, inf-ruby, lib, melpaBuild }:
melpaBuild {
pname = "homebrew-mode";
- version = "1.3.5";
+ version = "1.3.6";
src = fetchFromGitHub {
owner = "dunn";
repo = "homebrew-mode";
- rev = "11e952b9fd9c7aa9c18933f7605cd10bac31e227";
- sha256 = "0yh9v5zng1j2kfjjadfkdds67jws79q52kvl2mx9s8mq28263idm";
+ rev = "d422307aee2f897d1a92e3b959c3214bc54cbe38";
+ sha256 = "1z4d0niz8q24f2z8rnfnc2rlmkffkf7qc57qn4695jbkzb7galfz";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/homebrew-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/1e4007f6d15574098722fb427b6a9903f77afb21/recipes/homebrew-mode";
sha256 = "088wc5fq4r5yj1nbh7mriyqf0xwqmbxvblj9d2wwrkkdm5flc8mj";
name = "homebrew-mode";
};
@@ -14307,7 +14664,7 @@
sha256 = "1yvz9d5h7npxhsdf6s9fgxpmqk5ixx91iwivbhzcz935gs2886hc";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/hookify";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/aa04ccd0ac05beed5de8d51ed96ccbf0071fdea1/recipes/hookify";
sha256 = "0prls539ifk2fsqklcxmbrwmgbm9hya50z486d7sw426lh648qmy";
name = "hookify";
};
@@ -14328,7 +14685,7 @@
sha256 = "0k09n66jar0prq9aal2h3izp1y67jibdx0gjr0g4jx1p1yxig1dg";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ht";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/6c7589bca1c1dfcc0fe76779f6847fda946ab981/recipes/ht";
sha256 = "16vmxksannn2wyn8r44jbkdp19jvz1bg57ggbs1vn0yi7nkanwbd";
name = "ht";
};
@@ -14349,7 +14706,7 @@
sha256 = "0c648dl5zwjrqx9n6zr6nyzx2zcnv05d5i4hvhjpl9q3y011ncns";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/html-to-markdown";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/1e6aed365c42987d64d0cd9a8a6178339b1b39e8/recipes/html-to-markdown";
sha256 = "1gjh9ndqsb3nfb7w5h7carjckkgy6qh63b4mg141j19dsyx9rrjv";
name = "html-to-markdown";
};
@@ -14370,7 +14727,7 @@
sha256 = "1h9n388fi17nbyfciqywgrq3n165kpiildbimx59qyk2ac3v7rqk";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/httpcode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/906da23e26d44f8c71ba57ab59bb089caea673a9/recipes/httpcode";
sha256 = "05k1al1j119x6zf03p7jn2r9qql33859583nbf85k41bhicknpgh";
name = "httpcode";
};
@@ -14391,7 +14748,7 @@
sha256 = "0dd257988bdar9hl2711ch5qshx9jc11fqxcvbrd7rc1va5cshs9";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/httprepl";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/c49824f6e2dc2f3482e607c2d3a1e2d7685bf688/recipes/httprepl";
sha256 = "0899qb1yfnsyf04hhvnk47qnq4d1f4vd5ghj43x4743wd2b9qawh";
name = "httprepl";
};
@@ -14412,7 +14769,7 @@
sha256 = "1b8992vzq5bh01pjlj181nzqjrqs4fbjpwvv8h7gjq42sf8w59sm";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/hyai";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/1dd9bd1cfd2f3b760b664a4677b0e4e617cbdfa6/recipes/hyai";
sha256 = "00ns7q5b11c5amwkq11fs4p5vrmdfmjljfrcxbwb39gc12yrhn7s";
name = "hyai";
};
@@ -14433,7 +14790,7 @@
sha256 = "0nwsmc4c3v0wbfy917ik9k7yz8yclfac695p7p9sh9y354k3maw4";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/hyde";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/151f5c1097e5020dbc13e41f2657aae781c5942b/recipes/hyde";
sha256 = "18kjcxm7qmv9bfh4crw37zgax8khjqs9zkp4lrb490zlad2asbs3";
name = "hyde";
};
@@ -14446,15 +14803,15 @@
hydra = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "hydra";
- version = "0.13.3";
+ version = "0.13.6";
src = fetchFromGitHub {
owner = "abo-abo";
repo = "hydra";
- rev = "4bf7f1c9e46fb819c673e55d8a1891774e139f98";
- sha256 = "08iw95lyizcyf6cjl37fm8wvay0vsk9758pk9gq9f2xiafcchl7f";
+ rev = "91f8e7c13bcd9629ad1678588e58576ca6806b58";
+ sha256 = "1czdar4yv5c9996wvj887d0c1knlrpcjj0aq2dily2x074gdzh4j";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/hydra";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/a4375d8ae519290fd5018626b075c226016f951d/recipes/hydra";
sha256 = "1c59l43p39ins3dn9690gm6llwm4b9p0pk78lip0dwlx736drdbw";
name = "hydra";
};
@@ -14475,7 +14832,7 @@
sha256 = "1zcnp61c9cp2kvns3v499hifk072rxm4rhw4pvdv2mm966vcxzvc";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ibuffer-projectile";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/363a6a888945f2c8b02f5715539439ba744d737d/recipes/ibuffer-projectile";
sha256 = "1qh4krggmsc6lx5mg60n8aakmi3f6ppl1gw094vfcsni96jl34fk";
name = "ibuffer-projectile";
};
@@ -14496,7 +14853,7 @@
sha256 = "0bqdi5w120256g74k0j4jj81x804x1gcg4dxa74w3mb6fl5xlvs8";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ibuffer-vc";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/cae2ac3513e371a256be0f1a7468e38e686c2487/recipes/ibuffer-vc";
sha256 = "0bn5qyiq07cgzci10xl57ss5wsk7bfhi3hjq2v6yvpy9v704dvla";
name = "ibuffer-vc";
};
@@ -14517,7 +14874,7 @@
sha256 = "047gzycr49cs8wlmm9j4ry7b7jxmfhmbayx6rbbxs49lba8dgwlk";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/identica-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/812b7c1fbc435f0530b7f66a1e65f62f5f00da01/recipes/identica-mode";
sha256 = "1r69ylykjap305g23cry4wajiqhpgw08nw3b5d9i1y3mwx0j253q";
name = "identica-mode";
};
@@ -14538,7 +14895,7 @@
sha256 = "0x4w1ksrw7dicl84zpf4d4scg672dyan9g95jkn6zvri0lr8xciv";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/idle-highlight-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/cae2ac3513e371a256be0f1a7468e38e686c2487/recipes/idle-highlight-mode";
sha256 = "1i5ky61bq0dpk71yasfpjhsrv29mmp9nly9f5xxin7gz3x0f36fc";
name = "idle-highlight-mode";
};
@@ -14559,7 +14916,7 @@
sha256 = "1bii7vj8pmmijcpvq3a1scky4ais7k6d7zympb3m9dmz355m9rpp";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ido-at-point";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/6ffbfa66c4284a134265efc606fdc7652b0a7f75/recipes/ido-at-point";
sha256 = "0jpgq2iiwgqifwdhwhqv0cd3lp846pdqar6rxqgw9fvvb8bijqm0";
name = "ido-at-point";
};
@@ -14580,7 +14937,7 @@
sha256 = "1ffmsmi31jc0gqnbdxrd8ipsy790bn6hgq3rmayylavmdpg3qfd5";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ido-complete-space-or-hyphen";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/59e11094068d3a0c0e4edc1f82158c43d3b15e0e/recipes/ido-complete-space-or-hyphen";
sha256 = "1wk0cq5gjnprmpyvhh80ksz3fash42hckvmx8m95crbzjg9j0gbc";
name = "ido-complete-space-or-hyphen";
};
@@ -14593,15 +14950,15 @@
ido-completing-read-plus = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "ido-completing-read-plus";
- version = "3.12";
+ version = "3.14";
src = fetchFromGitHub {
owner = "DarwinAwardWinner";
repo = "ido-ubiquitous";
- rev = "a491b106d9da87bfe45121078563389a77f8788c";
- sha256 = "1ddy590xgv982zsgs1civqy0ch0a88z98qhq0bqqjivf9gq3v0pf";
+ rev = "397a43309c0405009cc6961053c54dedebdc83a2";
+ sha256 = "091kq58bb5dxq13d3jap7m4v6ddpin7hkybzy7drqkwn2q005ggb";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ido-completing-read+";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/4a227a6d44f1981e8a3f73b253d2c33eb18ef72f/recipes/ido-completing-read+";
sha256 = "034j1q47d57ia5bwbf1w66gw6c7aqbhscpy3dg2a71lwjzfmshwh";
name = "ido-completing-read-plus";
};
@@ -14622,7 +14979,7 @@
sha256 = "0055dda1la7yah33xsi19j4hcdmqp17ily2dvkipm4y6d3ww8yqa";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ido-describe-bindings";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/31b8e255630f1348a5b5730f7b624ad550d219ad/recipes/ido-describe-bindings";
sha256 = "1lsa09h025vd908r9q571iq2ia0zdpnq04mlihb3crpp5v9n9ws2";
name = "ido-describe-bindings";
};
@@ -14643,7 +15000,7 @@
sha256 = "0f1p6cnl0arcc2y1h99nqcflp7byvyf6hj6fmv5xqggs66qc72lb";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ido-grid-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/1ccca92fee3d39966df135a5c79e42d2ab621848/recipes/ido-grid-mode";
sha256 = "1wl1yclcxmkbfnvp0il23csdf6gprzf7fkcknpivk784fhl19acr";
name = "ido-grid-mode";
};
@@ -14664,7 +15021,7 @@
sha256 = "1z7az7h90v72llxvdclcywvf1qd0nhkfa45bp99xi7cy7sqsqssf";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ido-load-library";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/baa49e7d2d5c07ebf77e7941c240b88fcfd0fc8b/recipes/ido-load-library";
sha256 = "13f83gqh39p3yjy7r7qc7kzgdcmqh4b5c07zl7rwzb8y9rz59lhj";
name = "ido-load-library";
};
@@ -14685,7 +15042,7 @@
sha256 = "050r5cr0a4kyscp8pp2a1mzawji080pnw0q4hxrsc97s2bxrj9x5";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ido-occur";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/8a576d8569bf82be01e7d50defcc99a90aab1436/recipes/ido-occur";
sha256 = "058l2pklg12wkvyyshk8va6shphpbc508fv9a8x25pw857a28pji";
name = "ido-occur";
};
@@ -14698,15 +15055,15 @@
ido-ubiquitous = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, ido-completing-read-plus, lib, melpaBuild }:
melpaBuild {
pname = "ido-ubiquitous";
- version = "3.12";
+ version = "3.14";
src = fetchFromGitHub {
owner = "DarwinAwardWinner";
repo = "ido-ubiquitous";
- rev = "a491b106d9da87bfe45121078563389a77f8788c";
- sha256 = "1ddy590xgv982zsgs1civqy0ch0a88z98qhq0bqqjivf9gq3v0pf";
+ rev = "397a43309c0405009cc6961053c54dedebdc83a2";
+ sha256 = "091kq58bb5dxq13d3jap7m4v6ddpin7hkybzy7drqkwn2q005ggb";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ido-ubiquitous";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/4a227a6d44f1981e8a3f73b253d2c33eb18ef72f/recipes/ido-ubiquitous";
sha256 = "143pzpix9aqpzjy8akrxfsxmwlzc9bmaqzp9fyhjgzrhq7zchjsp";
name = "ido-ubiquitous";
};
@@ -14727,7 +15084,7 @@
sha256 = "1lv82q639xjnmvby56nwqn23ijh6f163bk675s33dkingm8csj8k";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ido-vertical-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/d4bbd212ea4606b9871cf583d06b5cee2f6ce0a9/recipes/ido-vertical-mode";
sha256 = "1vg5s6nd6v2g8ychz1q9cdqvsdw6vag7d9w68sn7blpmlr0nqhfm";
name = "ido-vertical-mode";
};
@@ -14748,7 +15105,7 @@
sha256 = "046ns1nqisz830f6xwlly1qgmi4v2ikw6vmj0f93jprv4vkjylpq";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ido-yes-or-no";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/e575f46b8597a34523df6b6a75da5a640f4c5a2e/recipes/ido-yes-or-no";
sha256 = "0glag4yb9xyf1lxxbdhph2nq6s1vg44i6f2z1ii8bkxpambz2ana";
name = "ido-yes-or-no";
};
@@ -14769,7 +15126,7 @@
sha256 = "0bq0kx0889rdy8aasxbpmb0a4awpk2b24zv6x1dmhacmc5rj11i0";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/idomenu";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/f856045bc5ab2aee4dd4ad9806917e27e56ec64c/recipes/idomenu";
sha256 = "0mg601ak9mhp2fg5n13npcfzphgyms4vkqd18ldmv098z2z1412h";
name = "idomenu";
};
@@ -14790,7 +15147,7 @@
sha256 = "0iwgbaq2797k1f7ql86i2pjfa67cha4s2v0mgmrd0qcgqkxsdq92";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/idris-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/17a86efca3bdebef7c92ba6ece2de214d283c627/recipes/idris-mode";
sha256 = "0hiiizz976hz3z3ciwg1gs9y10qhxbs8givhz89kvyn4s4861a1s";
name = "idris-mode";
};
@@ -14811,7 +15168,7 @@
sha256 = "06qv95bgcb6n3zcjs2i1q80v9040z7m9pb9xbhxmqzcx68vpbpdm";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/iedit";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/aa2b2745bd1f1778070954c834158c19d4cfb788/recipes/iedit";
sha256 = "02gjshvkcvyr58yf6vlg3s2pzls5sd54xpxggdmqajfg8xmpkq04";
name = "iedit";
};
@@ -14832,7 +15189,7 @@
sha256 = "18rlyjsn9w0zbs0c002s84qzark3rrcmjn9vq4nap7i6zpaq8hki";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/iflipb";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/fad6fc8bc3c0be0d5789a0d7626ebc3f298b4318/recipes/iflipb";
sha256 = "1nfrrxgi9nlhn477z8ay7jxycpcghhhmmg9dagdhrlrr20fx697d";
name = "iflipb";
};
@@ -14853,7 +15210,7 @@
sha256 = "1ca2n6vv2z7c3550w0jzwmp6xp0rmrrbljr1ik2ijign62r35a3q";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ignoramus";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/ac5439afe2f9a902e615f0cf919ef7138559c0f0/recipes/ignoramus";
sha256 = "1czqdmlrds1l5afi8ldg7nrxcwav86538z2w1npad3dz8xk67da9";
name = "ignoramus";
};
@@ -14874,7 +15231,7 @@
sha256 = "0imvxzcja91cd19zm2frqfpxm8j0bc89w9s7q0pkpvyjz44kjbq8";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/image-archive";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/17464f31b07f64da0e9db187cd6f5facee3ad7ce/recipes/image-archive";
sha256 = "0x0lv5dr1gc9bnr3dn26bc9s1ccq2rp8c4a1licbi929f0jyxxfp";
name = "image-archive";
};
@@ -14895,7 +15252,7 @@
sha256 = "1n2ya9s0ld257a8iryjd0dz0z2zs1xhzfiwsdkq4l4azwxl54m29";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/image-dired+";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/98f83f450804f1dc496a7bda17818cdae3f52151/recipes/image-dired+";
sha256 = "0hhwqfn490n7p12n7ij4xbjh15gfvicmn21fvwbnrmfqc343pcdy";
name = "image-dired-plus";
};
@@ -14916,7 +15273,7 @@
sha256 = "0k69xbih0273xvmj035vcmm67l6hgjb99pb1jbva5x0pnszb1vdv";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/image+";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/02d7400477a993b7a3cae327501dbf8db97dfa28/recipes/image+";
sha256 = "1a9dxswnqn6cvx28180kclpjc0vc6fimzp7n91gpdwnmy123x6hg";
name = "image-plus";
};
@@ -14937,7 +15294,7 @@
sha256 = "15lflvpapm5749qq7jzdwbd0isb89i6df3np4wn9y9gjl7y92wk7";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/imapfilter";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/2415894afa3404fbd73c84c58f8b8267187d6d86/recipes/imapfilter";
sha256 = "0i893kqj6yzadhza800r6ri7fihl01r57z8yrzzh3d09qaias5vz";
name = "imapfilter";
};
@@ -14950,15 +15307,15 @@
imenu-anywhere = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "imenu-anywhere";
- version = "0.9.0";
+ version = "1.1";
src = fetchFromGitHub {
owner = "vspinu";
repo = "imenu-anywhere";
- rev = "a090132492a3a98b6547240babe0bc0fa6154bb2";
- sha256 = "0qc96p5f7paxaxzv73w072cba8jb6ibdbhml7n7cm85b0rz1wf16";
+ rev = "7588aff2e1ca9303e67c9fafb5346123b4bf7684";
+ sha256 = "1471r94lwvfz5maap2qbwhfbva9d0fgfv1w0fyrs7bfcf8zzbdlb";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/imenu-anywhere";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/7fabdb05de9b8ec18a3a566f99688b50443b6b44/recipes/imenu-anywhere";
sha256 = "1ylqzdnd3nzcpyyd6rh6i5q9mvf8c99rvpk51fzfm3yq2kyw4dbq";
name = "imenu-anywhere";
};
@@ -14979,7 +15336,7 @@
sha256 = "1j0p0zkk89lg5xk5qzdnj9nxxiaxhff2y9iv9lw456kvb3lsyvjk";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/imenu-list";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/86dea881a5b2d0458449f08b82c2614ad9abd068/recipes/imenu-list";
sha256 = "092fsn7hnbfabcyakbqyk20pk62sr8xrs45aimkv1l91681np98s";
name = "imenu-list";
};
@@ -15000,7 +15357,7 @@
sha256 = "1y57xp0w0c6hg3gn4f1l3612a18li4gwhfa4dy18fy94gr54ycpx";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/imenus";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/cc571105a8d7e2ea85391812f1fa639787fa7563/recipes/imenus";
sha256 = "1q0j6r2n5vjlbgchkz9zdglmmbpd8agawzcg61knqrgzpc4lk82r";
name = "imenus";
};
@@ -15021,7 +15378,7 @@
sha256 = "19jqcbiwqknlpij9q63m1p69k4zb3v1qdx0858drprc2rl1p55cd";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/imgix";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/eddb7acecc4948ade16ff02415484c9a16529c9c/recipes/imgix";
sha256 = "0dh7qsz5c9mflldcw60vc8mrxrw76n2ydd7blv6jfmsnr19ila4q";
name = "imgix";
};
@@ -15042,7 +15399,7 @@
sha256 = "1pf7pqh8yzyvh4gzvp5npfq8kcfjcbzra0kkw7zmz769xxc8v84x";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/immutant-server";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/d6e906492f9982e2cebd1e4838d7b7c81a295efa/recipes/immutant-server";
sha256 = "15vcxag1ni41ja4b3q0444sq5ysrisis59la7li6h3617wy8r02i";
name = "immutant-server";
};
@@ -15063,7 +15420,7 @@
sha256 = "0vr4i3ayp1n8zg3v9rfv81qnr0vrdbkzphwd5kyadjgy4sbfjykj";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/impatient-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/bb1fbd03f17d2069a461260ad5e2ad4e5441919b/recipes/impatient-mode";
sha256 = "05vp04zh5w0ss959galdrnridv268dzqymqzqfpkfjbg8kryzfxg";
name = "impatient-mode";
};
@@ -15073,27 +15430,6 @@
license = lib.licenses.free;
};
}) {};
- import-js = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
- melpaBuild {
- pname = "import-js";
- version = "0.6.0";
- src = fetchFromGitHub {
- owner = "trotzig";
- repo = "import-js";
- rev = "560519eb2a2a3c295c2b839c753ec410769d04ab";
- sha256 = "14sq387cq76p3dhbglg87qxaagfmavw98221d30siyz31w6fsbd2";
- };
- recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/import-js";
- sha256 = "1grvzy378qj14wlbmhb3j7fx2zkl9wp65b5g0brjimav08nz7bls";
- name = "import-js";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/import-js";
- license = lib.licenses.free;
- };
- }) {};
import-popwin = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild, popwin }:
melpaBuild {
pname = "import-popwin";
@@ -15105,7 +15441,7 @@
sha256 = "0ycsdwwfb27g85aby4jix1aj41a4vq6bf541iwla0xh3wsyxb01w";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/import-popwin";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/a6f0629515f36e2e98839a6894ca8c0f58862dc2/recipes/import-popwin";
sha256 = "0vkw6y09m68bvvn1wzah4gzm69z099xnqhn359xfns2ljm74bvgy";
name = "import-popwin";
};
@@ -15115,6 +15451,27 @@
license = lib.licenses.free;
};
}) {};
+ indent-guide = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
+ melpaBuild {
+ pname = "indent-guide";
+ version = "20160630";
+ src = fetchFromGitHub {
+ owner = "zk-phi";
+ repo = "indent-guide";
+ rev = "feb207cb5610f351c7cdcf266e0c99117b2f786c";
+ sha256 = "0ykddzily3b6c6k7fvq274pqdjf3934n8p3nrmnsw6c93i1ndd4f";
+ };
+ recipeFile = fetchurl {
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/5d7110054801e3af5e5ef710a29f73116a2bc746/recipes/indent-guide";
+ sha256 = "029fj9rr9vfmkysi6lzpwra92j6ppw675qpj3sinfq7fqqlicvp7";
+ name = "indent-guide";
+ };
+ packageRequires = [];
+ meta = {
+ homepage = "https://melpa.org/#/indent-guide";
+ license = lib.licenses.free;
+ };
+ }) {};
inf-clojure = callPackage ({ clojure-mode, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "inf-clojure";
@@ -15126,7 +15483,7 @@
sha256 = "1dmr1arqy2vs9jdjha513mvw3yfwgkn4zs728q83asjy91sfcz7k";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/inf-clojure";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/5d6112e06d1efcb7cb5652b0bec8d282d7f67bd9/recipes/inf-clojure";
sha256 = "0n8w0vx1dnbfz88j45a57z9bsmkxr2zyh6ld72ady8asanf17zhl";
name = "inf-clojure";
};
@@ -15147,7 +15504,7 @@
sha256 = "11zsprv5ycnfqi358dd4cx70dbn6a8hccd4prf28lln7vhldbmjz";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/inf-ruby";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/cae2ac3513e371a256be0f1a7468e38e686c2487/recipes/inf-ruby";
sha256 = "02f01vwzr6j9iqcdns4l579bhia99sw8hwdqfwqjs9gk3xampfpp";
name = "inf-ruby";
};
@@ -15168,7 +15525,7 @@
sha256 = "1fm69g4mrmdchvxr062bk7n1jvs2rrscddb02cldb5bgdrcw8g6j";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/inflections";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/392c7616d27bf12b29ef3c2ea71e42ffaea81cc6/recipes/inflections";
sha256 = "0f02bhm2a5xiaxnf2c2hlpa4p121xfyyj3c59fy0yldipdxhvw70";
name = "inflections";
};
@@ -15189,7 +15546,7 @@
sha256 = "031vb7ndz68x0119v4pyizz0ykd341ywcp5s7i4z35zx1vcqj8az";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/init-loader";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/e46e6ec79ff4c76fc85e13321e6dabd5797c5f45/recipes/init-loader";
sha256 = "0rq7759abp0ml0l8dycvdl0j5wsxw9z5y9pyx68973a4ssbx2i0r";
name = "init-loader";
};
@@ -15210,7 +15567,7 @@
sha256 = "06w1vnfhjy8g62z6xajin5akgh30pa0kk56am61kv6mi5ia8fc96";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/init-open-recentf";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/4db8b6eced50726c788d7343137f6b4558575abf/recipes/init-open-recentf";
sha256 = "0xlmfxhxb2car8vfx7krxmxb3d56x0r3zzkj8ds7yqvr65z85x2r";
name = "init-open-recentf";
};
@@ -15231,7 +15588,7 @@
sha256 = "1rfw38a63bvzglqx7mb8wlnzjvlmkhkn35hn66snqqgvnmnvi54g";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/initsplit";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/5a908c8fad08cd4d7dbb586570d0f0b384bf9071/recipes/initsplit";
sha256 = "0n9dk3x62vgxfn39jkmdg8wxsik0xqkprifgvqzyvn8xcx1blyyq";
name = "initsplit";
};
@@ -15252,7 +15609,7 @@
sha256 = "0jipds844432a8m4d5gxbbkk2h1rsq9fg748g6bxy2q066kyzfz6";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/inline-crypt";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/5bf7761c9091260d378621907a1689498aedc098/recipes/inline-crypt";
sha256 = "04mcyyqa9h6g6wrzphzqalpqxsndmzxpavlpdc24z4a2c5s3yz8n";
name = "inline-crypt";
};
@@ -15273,7 +15630,7 @@
sha256 = "15nasjknmzy57ilj1gaz3w5sj8b3ijcpgwcd6w2r9xhgcl86m40q";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/inlineR";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/3a7228e5f23a4e66f4510b2f6fc41c36aa791991/recipes/inlineR";
sha256 = "1fflq2gkpfn3jkv4a6yywzmxsq6qszfid1ri85ass1ppw6scdvzw";
name = "inlineR";
};
@@ -15286,15 +15643,15 @@
insert-shebang = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "insert-shebang";
- version = "0.9.4";
+ version = "0.9.5";
src = fetchFromGitHub {
owner = "psachin";
repo = "insert-shebang";
- rev = "4161cc8c7d07d0979684838fa8e3eec582351d97";
- sha256 = "1mqnz40zirnyn3wa71wzzjph3a0sbgvzcywcr7xnzqpl6sp7g93f";
+ rev = "8b36eaa092e62002fe64162daf9d3ad1138b6ec2";
+ sha256 = "1an7wzqnh9aj38bi9w0wsrs35h2z43lkaaw04lrz3a6zf797ac3x";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/insert-shebang";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/c257f4f5011cd7d0b2a5ef3adf13f9871bf0be92/recipes/insert-shebang";
sha256 = "0z88l1q925v9lwzr6nas9qjy0f57qxilg6smgpx9wj6lll3f7p5v";
name = "insert-shebang";
};
@@ -15314,7 +15671,7 @@
sha256 = "0krscid3yz2b7kv75gd9fs92zgfl7pnl77dbp5gycv5rmw5mivp8";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/instapaper";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/5b7972602399f9df9139cff177e38653bb0f43ed/recipes/instapaper";
sha256 = "1yibdpj3lx6vr33s75s1y415lxqljrk7pqc901f8nfa01kca7axn";
name = "instapaper";
};
@@ -15335,7 +15692,7 @@
sha256 = "1qs6j9cz152wfy54c5d1a558l0df6wxv3djlvfl2mx58wf0sk73h";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/interleave";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/6c43d4aaaf4fca17f2bc0ee90a21c51071886ae2/recipes/interleave";
sha256 = "18b3fpxn07y5abkcnaw9is9ihdhik7xjdj6kzl1pz958lk9f4hfy";
name = "interleave";
};
@@ -15345,22 +15702,22 @@
license = lib.licenses.free;
};
}) {};
- intero = callPackage ({ company, fetchFromGitHub, fetchurl, flycheck, lib, melpaBuild }:
+ intero = callPackage ({ company, emacs, fetchFromGitHub, fetchurl, flycheck, haskell-mode, lib, melpaBuild }:
melpaBuild {
pname = "intero";
- version = "0.1.13";
+ version = "0.1.15";
src = fetchFromGitHub {
owner = "commercialhaskell";
repo = "intero";
- rev = "314154585104c33d187b4b14a89c077356de7b2c";
- sha256 = "089ijl39fmyd7zspqb0496myv0sy6gz6r46hpwz3v3k9mr3q4873";
+ rev = "b8d09110977da4537c6dc4f8d58e2cdbe80a531d";
+ sha256 = "12lkpdaafc4bdpcfdkf3nw64gmqhb3jsnv9sjhmfx53y4xq4gw7k";
};
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/intero";
sha256 = "15n7ipsq8ylmq4blsycpszkx034j9sb92vqvaz30j5v307fmvs99";
name = "intero";
};
- packageRequires = [ company flycheck ];
+ packageRequires = [ company emacs flycheck haskell-mode ];
meta = {
homepage = "https://melpa.org/#/intero";
license = lib.licenses.free;
@@ -15377,7 +15734,7 @@
sha256 = "043dnij48zdyg081sa7y64lm35z7zvrv8gcymv3l3a98r1yhy3v6";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/iplayer";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/6e9a97667365f1c30f53a6aeeb7b909a78888eb1/recipes/iplayer";
sha256 = "0wnxvdlnvlmspqsaqx0ldw8j03qjckkqzvx3cbpc2yfs55pm3p7r";
name = "iplayer";
};
@@ -15398,7 +15755,7 @@
sha256 = "036q933yw7pimnnq43ydaqqfccgf4iwvjhjmsavp7l6y1w16rvmy";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ir-black-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/5e725582bc322d03c9dca2b22e8606444fd8753c/recipes/ir-black-theme";
sha256 = "1qpq9zbv63ywzk5mlr8x53g3rn37k0mdv6x1l1hcd90gka7vga9v";
name = "ir-black-theme";
};
@@ -15419,7 +15776,7 @@
sha256 = "1y72xhs978ah53fmp10pa8riscx94y9bjvr26wk2f3zc94c6cq3d";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/irony";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/d2b6a8d57b192325dcd30fddc9ff8dd1516ad680/recipes/irony";
sha256 = "1xcxrdrs7imi31nxpszgpaywq4ivni75hrdl4zzrf103xslqpl8a";
name = "irony";
};
@@ -15440,7 +15797,7 @@
sha256 = "09hx28lmldm7z3x22a0qx34id09fdp3z61pdr61flgny213q1ach";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/isgd";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/d5ff75b269fd57c5822277b9ed850c69b626f1a5/recipes/isgd";
sha256 = "0yc9mkjzj3w64f48flnjvd193mk9gndrrqbxz3cvmvq3vgahhzyi";
name = "isgd";
};
@@ -15461,7 +15818,7 @@
sha256 = "19vfj01x7b8f7wyx7m51z00la2r7jcwzv0n06srkvcls0wm5s1h3";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ivy";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/06c24112a5e17c423a4d92607356b25eb90a9a7b/recipes/ivy";
sha256 = "0xf5p91r2ljl93wbr5wbgnb4hzhs00wkaf4fmdlf31la8xwwp5ci";
name = "ivy";
};
@@ -15482,7 +15839,7 @@
sha256 = "0ywjrgafpl4cnrykx9yysazr7hkd2pxk67h065f8z3mid6cgh1wa";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ivy-gitlab";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/35d4d4f22e4c567954287b2a1cabcb595497095a/recipes/ivy-gitlab";
sha256 = "0gbwsmb6my0327f9j96s20mybnjaw9yaiwhs3sy3vav0qww91z1y";
name = "ivy-gitlab";
};
@@ -15503,7 +15860,7 @@
sha256 = "19vfj01x7b8f7wyx7m51z00la2r7jcwzv0n06srkvcls0wm5s1h3";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ivy-hydra";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/06c24112a5e17c423a4d92607356b25eb90a9a7b/recipes/ivy-hydra";
sha256 = "1xv8nfi6dzhx868h44ydq4f5jmsa7rbqfa7jk8g0z0ifv477hrvx";
name = "ivy-hydra";
};
@@ -15524,7 +15881,7 @@
sha256 = "0rpxh1jv98dl9b5ldjkljk70z4hkl61kcmvy1lhpj3lxn8ysv87a";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ix";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/3a9d68fcf5bddbf07909b77682474dc592077051/recipes/ix";
sha256 = "1fl76dk8vgw3mrh5iz99lrsllwya6ij9d1lj3szcrs4qnj0b5ql3";
name = "ix";
};
@@ -15545,7 +15902,7 @@
sha256 = "1mb0k4lmbkbpn6qzzg8n14pybhd5zla77ppqac6a9kw89fj2qj4i";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/iy-go-to-char";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/0fda2b54a0ff0b6fc3bd6d20cfcbbf63cae5380f/recipes/iy-go-to-char";
sha256 = "10szn9y7gl8947p3f9w6p6vzjf1a9cjif9mbj3qdqx4vbsl9mqpz";
name = "iy-go-to-char";
};
@@ -15566,7 +15923,7 @@
sha256 = "07kbicf760nw4qlb2lkf1ns8yzqy0r5jqqwqjbsnqxx4sm52hml9";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/j-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/410134ab2145adad3648b1024bfe4f6801df82c9/recipes/j-mode";
sha256 = "0f9lsr9hjhdvmzx565ivlncfzb4iq4rjjn6a41053cjy50bl066i";
name = "j-mode";
};
@@ -15582,10 +15939,10 @@
src = fetchgit {
url = "git://git.code.sf.net/p/emacs-jabber/git";
rev = "2999f58619dd9c20cc6cac8060c4c850a504cbbd";
- sha256 = "0d6dwj45rrvh3dlrhdmqkxjmd439a1x3h88czdg7np2m5q2xg2dg";
+ sha256 = "03x93wkd8syj2ybf5ymwcm6khx0h5nhrl8pyync1520294pq6i1i";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/jabber";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/cff77a688d51ff2e2f03389593465990089ce83d/recipes/jabber";
sha256 = "1g5pc80n3cd5pzs3hmpbnmxbldwakd72pdn3vvb0h26j9v073pa8";
name = "jabber";
};
@@ -15606,7 +15963,7 @@
sha256 = "0krbd1qa2408a97pqhl7fv0x8x1n2l3qq33zzj4w4vv0c55jk43n";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/jade-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/877b5a3e612e1b1d6d51e60c66b0b79f231abdb2/recipes/jade-mode";
sha256 = "156j0d9wx6hrhph0nsjsi1jha4h65rcbrbff1j2yr8vdsszjrs94";
name = "jade-mode";
};
@@ -15627,7 +15984,7 @@
sha256 = "0x0vz7m9kn7b2aiqvrdqx8qh84ynbpzy2asz2b18l47bcwa7r5bh";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/jammer";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/cb82a6e936e2d5d1dd5930b600ede52dac3ceb33/recipes/jammer";
sha256 = "01c4bii7gswhp6z9dgx4bhvsywiwbbdv7mg1zj6vp1530l74zx6z";
name = "jammer";
};
@@ -15648,7 +16005,7 @@
sha256 = "08gkxxaw789g1r0dql11skz6i8bdrrz4wp87fzs9f5rgx99xxr6h";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/japanlaw";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/6192e1db76f017c3b1315453144cffc47cdd495d/recipes/japanlaw";
sha256 = "1pxss1mjk5660k80r1xqgslnbrsr6r4apgp9abjwjfxpg4f6d0sa";
name = "japanlaw";
};
@@ -15669,7 +16026,7 @@
sha256 = "1bngn6v6w60qb3zz7s3px7v3wk99a3hfvzrg9l06dz1q7xgyvsi1";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/java-imports";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/5f6f4e4c14c422c2066f2200bb9b8f35e2ecc896/recipes/java-imports";
sha256 = "1waz6skyrm1n8wpc0pwa652l11wz8qz1m89mqxk27k3lwyd84n98";
name = "java-imports";
};
@@ -15690,7 +16047,7 @@
sha256 = "16gywcma1s8kslwznlxwlx0xj0gs5g31637kb74vfdplk48f04zj";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/javadoc-lookup";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/3d7d5f55c7d90181cc4eff68bb472f772f070a93/recipes/javadoc-lookup";
sha256 = "1fffs0iqkk9rg5vbxifvn09j4i2751p81bzcvy5fslr3r1r2nv79";
name = "javadoc-lookup";
};
@@ -15711,7 +16068,7 @@
sha256 = "0xbp9fcxgbf298w05hvf52z41kk7r52975ailgdn8sg60xc98fa7";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/jedi";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/bded1840a39fbf1e014c01276eb2f9c5a4fc218f/recipes/jedi";
sha256 = "1777060q25k9n2g6h1lm5lkki900pmjqkxq72mrk3j19jr4pk9m4";
name = "jedi";
};
@@ -15732,7 +16089,7 @@
sha256 = "0xbp9fcxgbf298w05hvf52z41kk7r52975ailgdn8sg60xc98fa7";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/jedi-core";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/bded1840a39fbf1e014c01276eb2f9c5a4fc218f/recipes/jedi-core";
sha256 = "0pzi32zdb4g9n4kvpmkdflmqypa7nckmnjq60a3ngym4wlzbb32f";
name = "jedi-core";
};
@@ -15753,7 +16110,7 @@
sha256 = "0ws0297v6sairvsk665wrfzymfi599g5ljshfnpmi81qnnnbwjgf";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/jq-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/318705966e26e58f87b53c115c519db95874ac1c/recipes/jq-mode";
sha256 = "1xvh641pdkvbppb2nzwn1ljdk7sv6laq29kdv09kxaqd89vm0vin";
name = "jq-mode";
};
@@ -15766,15 +16123,15 @@
js-comint = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, nvm }:
melpaBuild {
pname = "js-comint";
- version = "0.0.4";
+ version = "0.0.5";
src = fetchFromGitHub {
owner = "redguardtoo";
repo = "js-comint";
- rev = "c4114b41db94ef17720b67cb2b714d670f453cc4";
- sha256 = "1f1zad423q5adycbbh62094m622gl8ncwbr8vxad1a6zcga70cgi";
+ rev = "83978912073d554f3dc1185a8a46222317a90539";
+ sha256 = "0h0dfq2rrnlvdbm39l2wqmhzrps6z6ha65j26bnblwa03jr608l9";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/js-comint";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/bc9d20b95e369e5a73c85a4a9385d3a8f9edd4ca/recipes/js-comint";
sha256 = "0jvkjb0rmh87mf20v6rjapi2j6qv8klixy0y0kmh3shylkni3an1";
name = "js-comint";
};
@@ -15787,15 +16144,15 @@
js2-closure = callPackage ({ fetchFromGitHub, fetchurl, js2-mode, lib, melpaBuild }:
melpaBuild {
pname = "js2-closure";
- version = "1.4";
+ version = "2.0";
src = fetchFromGitHub {
owner = "jart";
repo = "js2-closure";
- rev = "e1b3e7db13285e63c3c428d87c018289352bd043";
- sha256 = "0d2hqlgm09rw0azha5dxmq63b56sa8b9qj7gd7invibl6nnyjh4a";
+ rev = "37409e4ad1925e48b633c1d424caa2fe94eb9d49";
+ sha256 = "1yjgi0glh4fb4k7z5n216sbfzmxrxnnspmq2r5j6ag7b59qamyym";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/js2-closure";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/61bf3e70ae38a78184f0b373ff6f0db234f51cb2/recipes/js2-closure";
sha256 = "19732bf98lk2ah2ssgkr1ngxx7rz3nhsiw84lsfmydb0vvm4fpk7";
name = "js2-closure";
};
@@ -15816,7 +16173,7 @@
sha256 = "0r2szaxr3q0gvxqd9asn03q8jf3nclxv4mqdsjn96s98n45x388l";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/js2-highlight-vars";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/5f4a7c90be2e032277ae87b8de36d2e3f6146f09/recipes/js2-highlight-vars";
sha256 = "07bq393g2jy8ydvaqyqn6vdyfvyminvgi239yvwzg5g9a1xjc475";
name = "js2-highlight-vars";
};
@@ -15829,15 +16186,15 @@
js2-mode = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "js2-mode";
- version = "20150909";
+ version = "20160623";
src = fetchFromGitHub {
owner = "mooz";
repo = "js2-mode";
- rev = "5c9d8b82dddec2fab370ec8798569c7fc5698093";
- sha256 = "0xj87grvg7pbhh4d239gaqai5gl72klhpp9yksaqn77qnm98q4fn";
+ rev = "0cda39255827f283e7578cd469ae42daad9556a2";
+ sha256 = "1k91nckxg6d9q9pmn2ikcw85yrmj4yrw20i8v0pq8499wz8i15gs";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/js2-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/cae2ac3513e371a256be0f1a7468e38e686c2487/recipes/js2-mode";
sha256 = "0f9cj3n55qnlifxwk1yp8n1kfd319jf7qysnkk28xpvglzw24yjv";
name = "js2-mode";
};
@@ -15858,7 +16215,7 @@
sha256 = "08wxsz90x5zhma3q8kqfd01avhzxjmcrjc95s757l5xaynsc2bly";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/js2-refactor";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/8935264dfea9bacc89fef312215624d1ad9fc437/recipes/js2-refactor";
sha256 = "09dcfwpxxyw0ffgjjjaaxbsj0x2nwfrmxy1a05h8ba3r3jl4kl1r";
name = "js2-refactor";
};
@@ -15879,7 +16236,7 @@
sha256 = "17d0nf1kz7mgv5qz57q6khy4w5vrmsliqirggahk9s6nnsx1j56n";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/js3-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/805a7c7fee2bafd8785813963bf91ac1ca417fd1/recipes/js3-mode";
sha256 = "12s5qf6zfcv4m5kqxvh9b4zgwf433x39a210d957gjjp5mywbb1r";
name = "js3-mode";
};
@@ -15900,7 +16257,7 @@
sha256 = "0pjmslxwmlb9cb3j5qfsyxq1lg1ywzw1p9dvj330c2m7nla1j70x";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/jsfmt";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/4ddc99843dec18a295dfc36e7b429f0e1ab7fb71/recipes/jsfmt";
sha256 = "1syy32sv2d57b3gja0ly65h36mfnyq6hzf5lnnl3r58yvbdzngqd";
name = "jsfmt";
};
@@ -15921,7 +16278,7 @@
sha256 = "0sxkp9m68rvff8dbr8jlsx85w5ngifn19lwhcydysm7grbwzrdi3";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/json-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/03d0ff6c8d724cf39446fa27f52aa5cc1a3cefb6/recipes/json-mode";
sha256 = "014j10wgxsqy6d6aksnkz2dr5cmpsi8c7v4a825si1vgb4622a70";
name = "json-mode";
};
@@ -15942,7 +16299,7 @@
sha256 = "0qp4n2k6s69jj4gwwimkpadjv245y54wk3bxb1x96f034gkp81vs";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/json-reformat";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/f8c7976237f327fdfa58eea26ac8679f40ef3163/recipes/json-reformat";
sha256 = "1m5p895w9qdgb8f67xykhzriribgmp20a1lvj64iap4aam6wp8na";
name = "json-reformat";
};
@@ -15963,7 +16320,7 @@
sha256 = "05zsgnk7grgw9jzwl80h5sxfpifxlr37b4mkbvx7mjq4z14xc2jw";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/json-snatcher";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/990de179e20c169aa02ffec42c89f18ce02239c8/recipes/json-snatcher";
sha256 = "0f6j9g3c5fz3wlqa88706cbzinrs3dnfpgsr2d3h3117gic4iwp4";
name = "json-snatcher";
};
@@ -15984,7 +16341,7 @@
sha256 = "1wx28rr5dk238yz07xn95v88qmv10c1gz9pcxard2kszpnmrn6dx";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/jsx-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/7dea24e922f18c1f7e1b97da07ba2e4f33170557/recipes/jsx-mode";
sha256 = "1lnjnyn8qf3biqr92z443z6b58dly7glksp1g986vgqzdprq3n1b";
name = "jsx-mode";
};
@@ -16005,7 +16362,7 @@
sha256 = "11wybxrl2lny6vbf7qrxyf9wxw88ppvbrlfcd65paalrna2hn46h";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/judge-indent";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/73fb2c31f6af63145aae7c449bfde1bbb00e1100/recipes/judge-indent";
sha256 = "1gakdhnlxfq8knnykqdw4bizb5y67m8xhi07zannd7bsfwi4k6rh";
name = "judge-indent";
};
@@ -16026,7 +16383,7 @@
sha256 = "1fm69g4mrmdchvxr062bk7n1jvs2rrscddb02cldb5bgdrcw8g6j";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/jump";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/f0c791aebccc08b770b3969ce5d2e82cbe26f80e/recipes/jump";
sha256 = "18g0fa9g8m9jscsm6pn7jwdq94l4aj0dfhrv2hqapq1q1x537364";
name = "jump";
};
@@ -16047,7 +16404,7 @@
sha256 = "1s9plmg323m1p625xqnks0yqz0zlsjacdj7pv8f783r0d9jmfq3s";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/jump-to-line";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/4b6c700a28b65cbbad36a9bbaf88cc36c8191eb0/recipes/jump-to-line";
sha256 = "09ifhsggl5mrb6l8nqnl38yph0v26v30y98ic8hl23i455hqkkdr";
name = "jump-to-line";
};
@@ -16068,7 +16425,7 @@
sha256 = "1785nsv61m51lpykai2wxrv6zmwbm5654v937fgw177p37054s83";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/jvm-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/7cdb7d7d7b955405eb6357277b5d049df8aa85ce/recipes/jvm-mode";
sha256 = "1r283b4s0pzq4hgwcz5cnhlvdvq4gy0x51g3vp0762s8qx969a5w";
name = "jvm-mode";
};
@@ -16089,7 +16446,7 @@
sha256 = "03l9w238a5kyfin3v1fy1q2pl0gvmb87j0v89g6nk114s7m4y3r8";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/kaesar";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/201fac8639e59dc923ea31da1f84a99f83d51b47/recipes/kaesar";
sha256 = "0zhi1dv1ay1azh7afq4x6bdg91clwpsr13nrzy7539yrn9sglj5l";
name = "kaesar";
};
@@ -16110,7 +16467,7 @@
sha256 = "03l9w238a5kyfin3v1fy1q2pl0gvmb87j0v89g6nk114s7m4y3r8";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/kaesar-file";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/201fac8639e59dc923ea31da1f84a99f83d51b47/recipes/kaesar-file";
sha256 = "0dcizg82maad98mbqqw5lamwz7n2lpai09jsrc66x3wy8k784alc";
name = "kaesar-file";
};
@@ -16131,7 +16488,7 @@
sha256 = "03l9w238a5kyfin3v1fy1q2pl0gvmb87j0v89g6nk114s7m4y3r8";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/kaesar-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/201fac8639e59dc923ea31da1f84a99f83d51b47/recipes/kaesar-mode";
sha256 = "0yqnlchbpmhsqc8j531n08vybwa32cy0v9sy4f9fgxa90rfqczry";
name = "kaesar-mode";
};
@@ -16152,7 +16509,7 @@
sha256 = "0b6af8hnrn0v4z1xpahjfpw5iga2bmgd3qwfn3is2rygsn5rkm40";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/kakapo-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/a43f0f1f6a0773240a51d379ec786c20a9389e7b/recipes/kakapo-mode";
sha256 = "0a99cqflpzasl4wcmmf99aj8xgywkym37j7mvnsajrsk5wawdlss";
name = "kakapo-mode";
};
@@ -16173,7 +16530,7 @@
sha256 = "0avcg307r4navvgj3hjkggk4gr7mzs4mljhxh223r8g69l9bm6m8";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/karma";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/681e12556c3ab3e2a8376d5c7c33ee5a213de650/recipes/karma";
sha256 = "19wl7js7wmw7jv2q3l4r5zl718lhy2a0jhl79k57ihwhxdc58fwc";
name = "karma";
};
@@ -16194,7 +16551,7 @@
sha256 = "14ijniyvcfmj4y77yhiplsclincng2r3jbdnmmdnwzliv65f7l6q";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/key-combo";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/99b422ef5f7b9dda894207e3133791fb9963a092/recipes/key-combo";
sha256 = "1v8saw92jphvjkyy7j9jx7cxzgisl4zpf4wjzdjfw3la5lz11waf";
name = "key-combo";
};
@@ -16215,7 +16572,7 @@
sha256 = "05vpydcgiaya35b62cdjxna9y02vnwzzg6p8jh0dkr9k44h4iy3f";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/key-seq";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/0d54ab1b6973a44362e50559dd91344d0b17f513/recipes/key-seq";
sha256 = "166k6hl9vvsnnksvhrv5cbhv9bdiclnbfv7qf67q4c1an9xzqi74";
name = "key-seq";
};
@@ -16236,7 +16593,7 @@
sha256 = "0xgm80dbg45bs3k8psd3pv49z1xbvzm156xs55gmxdzbgxbzpazr";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/keychain-environment";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/4382c9e7e8dee2cafea9ee49965d0952ca359dd5/recipes/keychain-environment";
sha256 = "1w77cg00bwx68h0d6k6r1fzwdwz97q12ch2hmpzjnblqs0i4sv8v";
name = "keychain-environment";
};
@@ -16257,7 +16614,7 @@
sha256 = "0dkc51bmix4b8czs2wg6vz8vk32qlll1b9fjmx6xshrxm85cyhvv";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/keydef";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/5f2a50f62475639af011c99c6cc38928b74b3b0a/recipes/keydef";
sha256 = "0yb2vgj7abyg8j7qmv74nsanv50lf350q1m58rjv8wm31yykg992";
name = "keydef";
};
@@ -16278,7 +16635,7 @@
sha256 = "1x87mbnzkggx5llh0i0s3sj1nfw7liwnlqc9csya517w4x5mhl8i";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/keyfreq";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/cd7157bad0f3039321b5b279a88e7e4fce895543/recipes/keyfreq";
sha256 = "1rw6hzmw7h5ngvndy7aa41pq911y2hr9kqc9w4gdd5v2p4ln1qh7";
name = "keyfreq";
};
@@ -16299,7 +16656,7 @@
sha256 = "17bfxn1bl2by3vnp24hnk6qjxx6av1fayrsw9hlldwhgp4ayhy48";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/keymap-utils";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/c03acebf1462dea36c81d4b9ab41e2e5739be3c3/recipes/keymap-utils";
sha256 = "0nbcwz4nls0pva79lbx91bpzkl38g98yavwkvg2rxbhn9vjbhzs9";
name = "keymap-utils";
};
@@ -16320,7 +16677,7 @@
sha256 = "0z6sgz8nywsd00zaayafwy5hfi7kzxfifjkfr5cn1l7wlypyksfv";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/keyset";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/7bad8a1f1b94fbfbde5d8035f7e22431e64a9eec/recipes/keyset";
sha256 = "1kfw0pfb6qm2ji1v0kb8xgz8q2yd2k9kxmaz5vxcdixdlax3xiqg";
name = "keyset";
};
@@ -16341,7 +16698,7 @@
sha256 = "0ky167xh1hrmqsldybzjhyqjizgjzs1grn5mf8sm2j9qwcvjw2zv";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/kibit-helper";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/f7fee551ca9ed226f1285dffe87027e1e1047f65/recipes/kibit-helper";
sha256 = "15viybjqksylvm5ash2kzsil0cpdka56wj1rryixa8y1bwlj8y4s";
name = "kibit-helper";
};
@@ -16362,7 +16719,7 @@
sha256 = "1c5al7cyfnb0p5ya2aa5afadzbrrc079jx3r6zpkr64psskrhdv5";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/kill-or-bury-alive";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/25016ed09b6333bd79b989a8f6b7b03cd92e08b3/recipes/kill-or-bury-alive";
sha256 = "0mm0m8hpy5v98cap4f0s38dcviirm7s6ra4l94mknyvnx0f73lz8";
name = "kill-or-bury-alive";
};
@@ -16383,7 +16740,7 @@
sha256 = "0axvhikhg4fikiz4ifg0p4a5ygphbpjs0wd0gcbx29n0y54d1i93";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/kill-ring-search";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/7c3aa60be932d65929f453f1ce576abcd00252ed/recipes/kill-ring-search";
sha256 = "1pg4j1rrji64rrdv2xpwz33vlyk8r0hz4j4fikzwpbcbmni3skan";
name = "kill-ring-search";
};
@@ -16404,7 +16761,7 @@
sha256 = "0imylcaiwpzvvb3g8kpsna1vk7v7bwdjfcsa98i41m1rv9yla86l";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/killer";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/bd8c3ec8fa272273128134dea96c0c999a524549/recipes/killer";
sha256 = "10z4vqwrpss7mk0gq8xdsbsl0qibpp7s1g0l8wlmrsgn6kjkr2ma";
name = "killer";
};
@@ -16425,7 +16782,7 @@
sha256 = "0rzzjzkzgpiadm9awkj7wrh2hg97lhgwxg74gvdis3fc1xg2hyri";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/kivy-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/688e2a114073958c413e56e1d117d48db9d16fb8/recipes/kivy-mode";
sha256 = "02l230rwivr7rbiqm4vg70458z35f9v9w3mdapcrqd5d07y5mvi1";
name = "kivy-mode";
};
@@ -16446,7 +16803,7 @@
sha256 = "1lppggnii2r9fvlhh33gbdrwb50za8lnalavlq9s86ngndn4n94k";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/know-your-http-well";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/2ab50ae6278022281b2b7297c086089e5e669c7a/recipes/know-your-http-well";
sha256 = "0k2x0ajxkivim8nfpli716y7f4ssrmvwi56r94y34x4j3ib3px3q";
name = "know-your-http-well";
};
@@ -16467,7 +16824,7 @@
sha256 = "1kbmlhfxbp704mky8v69lzqd20bbnqijfnv110yigsy3kxi7hdrr";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ksp-cfg-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/d49db5938fa4e3ab1176a955a4788b15c63d9e69/recipes/ksp-cfg-mode";
sha256 = "0azcn4qvziacbw1qy33fwdaldw7xpzr672vzjsqhr0b2vg9m2ipi";
name = "ksp-cfg-mode";
};
@@ -16488,7 +16845,7 @@
sha256 = "0da4y9pf6vq0i6w7bmvrszg9bji3ylhr44hmyrmxvah28pigb2fz";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/kurecolor";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/58a5ebdbf82e83e6602161bca049d468887abe02/recipes/kurecolor";
sha256 = "0q0q0dfv376h7j3sgwxqwfpxy1qjbvb6i5clsxz9xp4ly89w4d4f";
name = "kurecolor";
};
@@ -16509,7 +16866,7 @@
sha256 = "1i8wbhc6i88plpq48ccka0avdj2x5rcxm81j93dmwp70ld0zws8p";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/langtool";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/503845e79e67c921f1fde31447f3dd4da2b6f993/recipes/langtool";
sha256 = "1xq70jyhzg0qmvialy015crbdk9rdibhwpl36khab9hi2999wxyw";
name = "langtool";
};
@@ -16530,7 +16887,7 @@
sha256 = "07aavdr1dlw8hca27l8a0i8cs5ga1wqqdf1v1iyvjz61vygld77a";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/latex-extra";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/1e6aed365c42987d64d0cd9a8a6178339b1b39e8/recipes/latex-extra";
sha256 = "1w98ngxymafigjpfalybhs12jcf4916wk4nlxflfjcx8ryd9wjcj";
name = "latex-extra";
};
@@ -16551,7 +16908,7 @@
sha256 = "118xrgrnwsmsysmframf6bmb0gkrdrm3jbkgivzxs41cw92fhbzw";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/latex-math-preview";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/9e413b7684e9199510b00035825aa861d670e072/recipes/latex-math-preview";
sha256 = "14bn0q5czrrkb1vjdkwx6f2x4zwjkxgrc0bcncv23l13qls1gkmr";
name = "latex-math-preview";
};
@@ -16572,7 +16929,7 @@
sha256 = "10i4r81pm95990d4yrabzdm49gp47mqpv15h4r4sih10p1kbn83h";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/latex-unicode-math-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/9c021dfad8928c1a352e0ef5526eefa6c0a9cb37/recipes/latex-unicode-math-mode";
sha256 = "1p9gpp28vylibv1s95bzfgscznw146ybgk6f3qdbbnafrcrmifcr";
name = "latex-unicode-math-mode";
};
@@ -16589,11 +16946,11 @@
src = fetchFromGitHub {
owner = "ledger";
repo = "ledger";
- rev = "fcf16d035e9d61ed903499d0e72985970aec9170";
- sha256 = "1hp65aai2bp5l7b3dhr6bz042xcikkk8vssirzibdw5qq6zqzgxm";
+ rev = "6dcb1444ea8ab2dcf074c3477b74f0482e0d097d";
+ sha256 = "1n06wzghhmxx7acahzmwmny0nx1wfahrylpfq0fwhk50mr29a866";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ledger-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/93c54a327f226bf7e6a0ab4a3368a0e1ca169e62/recipes/ledger-mode";
sha256 = "0hi9waxmw1bbg88brlr3816vhdi0jj05wcwvrvfc1agvrvzyqq8s";
name = "ledger-mode";
};
@@ -16614,7 +16971,7 @@
sha256 = "04h6vk7w25yp4kzkwqnsmc59bm0182qqkyk5nxm3a1lv1v1590lf";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/lentic";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/cbb6f9cc3c1040b80fbf3f2df2ac2c3c8d18b6b1/recipes/lentic";
sha256 = "0y94y1qwj23kqp491b1fzqsrjak96k1dmmzmakbl7q8vc9bncl5m";
name = "lentic";
};
@@ -16635,7 +16992,7 @@
sha256 = "1w6mbk4gc63sh2p9rsy851x2kid0dp2ja4ai5badkr5prxkcpfdn";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/less-css-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/cae2ac3513e371a256be0f1a7468e38e686c2487/recipes/less-css-mode";
sha256 = "188iplnwwhawq3dby3388kimy0jh1k9r8v9nxz52hy9rhh9hykf8";
name = "less-css-mode";
};
@@ -16656,7 +17013,7 @@
sha256 = "1l9qjmyb4a3f6i2iimpmjczbx890cd1p24n941s13sg67xfbm7hn";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/letcheck";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/d6a0937f704e33bbb9ea8f101cd87c44e8050afb/recipes/letcheck";
sha256 = "1sjwi1ldg6b1qvj9cvfwxq3qlkfas6pm8zasf43baljmnz38mxh2";
name = "letcheck";
};
@@ -16669,15 +17026,15 @@
lfe-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "lfe-mode";
- version = "1.0.2";
+ version = "1.1.1";
src = fetchFromGitHub {
owner = "rvirding";
repo = "lfe";
- rev = "cd96efc3d2a73ecff7f3e2ef3563b73b098e4844";
- sha256 = "1n84vqxv4jqy5mnb1hbrqrhavq0y8c4mjsp0smg48bzi18350irl";
+ rev = "697e9b4996fa843f4c6a9edea25005d30a9b8a14";
+ sha256 = "0w1vpjqj8ni43gi84i0mcml4gfaqhmmd9s46di37cngpdw86i3bz";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/lfe-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/c44bdb00707c9ef90160e0a44f7148b480635132/recipes/lfe-mode";
sha256 = "0smncyby53ipm8yqslz88sqjafk0x6r8d0qwk4wzk0pbgfyklhgs";
name = "lfe-mode";
};
@@ -16698,7 +17055,7 @@
sha256 = "0hi8s20vw4a5i5n5jlm5dzgsl1qpfyqbpskqszjls1xrrf3dd4zl";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/lice";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/2508699ebfc846742940c5e4356b095b540e2405/recipes/lice";
sha256 = "1hv2hz3153x0gk7f2js18dbx5pyprfdf2pfxb658fj16vxpp7y6x";
name = "lice";
};
@@ -16719,7 +17076,7 @@
sha256 = "11sw43z5b0vypmhi0yysf2bxjy8fqpzl61y503jb7nhcfywmfkys";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/lingr";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/bf5d29710ab17b1a98f9b559344e4dd40a2b9c08/recipes/lingr";
sha256 = "1445bxiirsxl9kgm0j86xc9d0pbaa5f07c1i66pw2vl40bvhrjff";
name = "lingr";
};
@@ -16740,7 +17097,7 @@
sha256 = "05xfgn9sabi1ykk8zbk2vza1g8pdrg08j5cb58f50nda3q8ndf4s";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/link";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/5b08ed7b90e3283e177eff57cb02b12a093dc258/recipes/link";
sha256 = "17jpsg3f2954b740vyj37ikygrg5gmp0bjhbid8bh8vbz7xx9zy8";
name = "link";
};
@@ -16761,7 +17118,7 @@
sha256 = "1v4fadxv7ym6lc09nd2xpz2k5vrikjv7annw99ii5cqrwhqa5838";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/link-hint";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/d24b48fe0bc127ae6ac4084be8059aacb8445afd/recipes/link-hint";
sha256 = "12fb2zm9jnh92fc2nzmzmwjlhi64rhakwbh9lsydx9svsvkgcs89";
name = "link-hint";
};
@@ -16782,7 +17139,7 @@
sha256 = "1m4g4b96cxs05pfln7kdi6gvrdbv76f8dk806py5lq0gq7da2csc";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/linum-relative";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/97ae01be4892a7c35aa0f82213433a2944041d87/recipes/linum-relative";
sha256 = "0s1lc3lppazv0481dxknm6qrxhvkv0r9hw8xmdrpjc282l91whkj";
name = "linum-relative";
};
@@ -16803,7 +17160,7 @@
sha256 = "05iqhnhj61f30yk4ih63rimmyp134gyq18frc8qgrnwym64dsm6l";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/lispy";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/e23c062ff32d7aeae486c01e29c56a74727dcf1d/recipes/lispy";
sha256 = "12qk2gpwzz7chfz7x3wds39r4iiipvcw2rjqncir46b6zzlb1q0g";
name = "lispy";
};
@@ -16831,7 +17188,7 @@
sha256 = "0qyj04p63fdh3iasp5cna1z5fhibmfyl9lvwyh22ajzsfbr3nhnk";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/lispyscript-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/bf912fa20edc9cff12645381b303e37f2de14976/recipes/lispyscript-mode";
sha256 = "02biai45l5xl2m9l1drphrlj6r01msmadhyg774ijdk1x4gm5nhr";
name = "lispyscript-mode";
};
@@ -16852,7 +17209,7 @@
sha256 = "197cqkiwxgamhfwbc8h492cmjll3fypkwzcphj26dfnr22v63kwq";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/list-packages-ext";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/71c217d98c6967d979f57f89ca26200304b0fc37/recipes/list-packages-ext";
sha256 = "15m4888fm5xv697y7jspghg1ra49fyrny4y2x7h8ivcbslvpglvk";
name = "list-packages-ext";
};
@@ -16873,7 +17230,7 @@
sha256 = "05nn4db8s8h4mn3fxhwsa111ayvlq1raf6bifh7jciyw7a2c3aww";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/list-unicode-display";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/0c8e2a974a56665b97d7622b0428994edadc88a0/recipes/list-unicode-display";
sha256 = "01x9i5k5vhjscmkx0l6r27w1cdp9n6xk1pdjf98z3y88dnsmyfha";
name = "list-unicode-display";
};
@@ -16894,7 +17251,7 @@
sha256 = "0ql159v7sxs33yh2l080kchrj52vk34knz50cvqi3ykpb7djg3sz";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/list-utils";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/f9fcd716cbb9f5a4de82a49e57bcb20c483d05f6/recipes/list-utils";
sha256 = "0bknprr4jb1d20i9lj2aa17vpg1kqwdyzzwmy1kfydnkpf5scnr3";
name = "list-utils";
};
@@ -16915,7 +17272,7 @@
sha256 = "0mr0king5dj20vdycpszxnfs9ch808fhcz3q7svxfngj3d3671wd";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/lit-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/7a6a1c79c9bba7b17c150ea0663bc61936f15d83/recipes/lit-mode";
sha256 = "05rf7ki060nqnvircn0dkpdrg7xbh7phb8bqgsab89ycc7l9vv59";
name = "lit-mode";
};
@@ -16936,7 +17293,7 @@
sha256 = "1fh9wrw5irn0g3dy8gkk63csdcxgi3w2038mxx3sk6ki3r2bmhw8";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/literate-coffee-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/a20410e916d45e5b243e7eb3bb2226c7e1e67b00/recipes/literate-coffee-mode";
sha256 = "1bll1y9q3kcg3v250asjvx2k9kb314qadaq1iwanwgdlp3qvvs40";
name = "literate-coffee-mode";
};
@@ -16957,7 +17314,7 @@
sha256 = "1cwydbhhbs5v9y2s872zxc5lflqmfrdvnc8xz0qars52d7lg4br5";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/live-code-talks";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/833e549ba618e58d9cb0b6768a08c651ad8c9e0a/recipes/live-code-talks";
sha256 = "173mjmxanva13vk2f3a06s4dy62x271kynsa7pbhdg4fd72hdjma";
name = "live-code-talks";
};
@@ -16978,7 +17335,7 @@
sha256 = "0vmkqlgiahcc6aa0ky4jjdc5nxnn2i7qwfl6wkgy5rmq051nk4k0";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/live-py-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/c7615237e80b46b5c50cb51a3ed5b07d92566fb7/recipes/live-py-mode";
sha256 = "0yn1a0gf9yn068xifpv8p77d917mnalc56pll800zlpsdk8ljicq";
name = "live-py-mode";
};
@@ -16999,7 +17356,7 @@
sha256 = "1fq4bnngbh9a18hq8mvnqkzs74k3g4c0lmwsncbhy6n21njv3kdy";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/load-relative";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/f052f201f7c308325c27cc2423e85cf6b9b67b4e/recipes/load-relative";
sha256 = "0j8ybbjzhzgjx47pqqdbsqi8n6pzqcf6zqc38x7cf1kkklgc87ay";
name = "load-relative";
};
@@ -17020,7 +17377,7 @@
sha256 = "1089sbx20r30sis39vwy29fxhb2n3hh35rdv09lpzdxdq01s8wwp";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/loc-changes";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/a5ce68d573d19f26ecfd190f8e6cd1f384ca3e8a/recipes/loc-changes";
sha256 = "1akgij61b2ixpkchrriabwvx68cg4v5r5w9ncjrjh91hskjprfxh";
name = "loc-changes";
};
@@ -17041,7 +17398,7 @@
sha256 = "1l28n7a0v2zkknc70i1wn6qb5i21dkhfizzk8wcj28v44cgzk022";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/log4e";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/90d0e451c5a8eb25db95990b058964a9acea4b89/recipes/log4e";
sha256 = "1klj59dv8k4r0hily489dp12ra5hq1jnsdc0wcakh6zirmakhs34";
name = "log4e";
};
@@ -17062,7 +17419,7 @@
sha256 = "0g5vq9xy9lwczs77lr91c1srhhfmasnnnmjvgc55hbl6iwmbizbm";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/logalimacs";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/ef9833a5ca4d455f1d33b9367860e2051d60662f/recipes/logalimacs";
sha256 = "0ai7a01bdi3a0amgi63pwgdp8wgcgx10an4nhc627wgb1cqxb7p6";
name = "logalimacs";
};
@@ -17083,7 +17440,7 @@
sha256 = "0jpyd2f33pk984kg0q9hxdl4615jb7sxsggnb30mpz7a2ws479xr";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/logito";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/cae2ac3513e371a256be0f1a7468e38e686c2487/recipes/logito";
sha256 = "0bk4qnz66kvhzsk88lw45209778y53kg17iih70ix4ma1x6a3v5l";
name = "logito";
};
@@ -17104,7 +17461,7 @@
sha256 = "1yacic778ranlqblrcdhyf5igbrcin8aj30vjdm4klpmqb73hf1s";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/logview";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/1df3c11ed7738f32e6ae457647e62847701c8b19/recipes/logview";
sha256 = "0gks3j5avx8k3427a36lv7gr95id3cylaamgn5qwbg14s54y0vsh";
name = "logview";
};
@@ -17117,15 +17474,15 @@
loop = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "loop";
- version = "1.1";
+ version = "1.2";
src = fetchFromGitHub {
owner = "Wilfred";
repo = "loop.el";
- rev = "8266cb4174171a7742101d57d9637a661e136613";
- sha256 = "1rpvw0dvym559vb4nrfy74jq06nbsz2b0n60lcykagcir8mpcidk";
+ rev = "145959ab5765bc56a3a4396676871f0e0b6fc2e7";
+ sha256 = "1zczsmjz14pj01cd5sk9zqqlcacffazfdlvb7k029hb7pwxf9h63";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/loop";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/ba481ca96469b3bd518e4fd8f24947338c8af014/recipes/loop";
sha256 = "0pav16kinzljmzx84vfz63fvi39af4628vk1jw79jk0pyg9rjbar";
name = "loop";
};
@@ -17146,7 +17503,7 @@
sha256 = "11y5jyq4xg9zlm1qi2y97nh05vhva9pai9yyr4x2pr41xz3s8fpk";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/love-minor-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/0f224c4c7519b3668b1270c957227e486896b7b6/recipes/love-minor-mode";
sha256 = "1skg039h2hn8dh47ww6n9l776s2yda8ariab4v9f56kb21bncr4m";
name = "love-minor-mode";
};
@@ -17167,7 +17524,7 @@
sha256 = "1qawjd0nbj1c142van7r01pmq74vkzcvnn27jgn79wwhplp9gm99";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/lua-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/ca7bf43ef8893bf04e9658390e306ef69e80a156/recipes/lua-mode";
sha256 = "0gyi7w2h192h3pmrhq39lxwlwd9qyqs303lnp2655pikdzk9js94";
name = "lua-mode";
};
@@ -17188,7 +17545,7 @@
sha256 = "01847f8xmjfxvvi7hf73l7ypkdazwg8ciinm117zp4jkgnv0apz0";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/m-buffer";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/0cc1991d4f36b8d53d6cbeb6c83417c5e6b9453f/recipes/m-buffer";
sha256 = "0l2rayglv48pcwnr1ggmn8c0az0mffgv02ivnzr9jcfs55ki07fc";
name = "m-buffer";
};
@@ -17209,7 +17566,7 @@
sha256 = "0dgsl1x6r8m9vvff1ia0kmz21h0dji2jl5cqlpx1m947zh45dahj";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/macro-math";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/17df4dccdffff6ef7b4900565ae64c1cf84c1fda/recipes/macro-math";
sha256 = "1r7splwq5kdrdhbmw5zn81vxymsrllgil48g8dl0r60293384h00";
name = "macro-math";
};
@@ -17230,7 +17587,7 @@
sha256 = "0g9bnq4p3ffvva30hpll80dn3i41m51mcvw3qf787zg1nmc5a0j6";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/macrostep";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/362b5cb71e81172bc654594c08a5d0b91262851a/recipes/macrostep";
sha256 = "1wjibxbdsp5qfhq8xy0mcf3ms0q74qhdrhqndprn6jh3kcn5q63c";
name = "macrostep";
};
@@ -17251,7 +17608,7 @@
sha256 = "1rw5lvcj2v4b21akmsinkz24fbmp19s3jdqsd8jgmk3qqv0z81fc";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/magic-filetype";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/0d6027c5a66386f7140305a4cde12d66da4dfa09/recipes/magic-filetype";
sha256 = "0gcys45cqn5ghppkn0rmyvfybprlfz1x6hqr21yv93mf79h75zhg";
name = "magic-filetype";
};
@@ -17272,7 +17629,7 @@
sha256 = "1dv5qr9z5lxj2zjhwjhx451mbkb8d3y00q7ar6n34x7d5c4gmiya";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/magit";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/68bb049b7c4424345f5c1aea82e950a5e47e9e47/recipes/magit";
sha256 = "0518ax2y7y2ji4jp7yghy84yxm0zgb059aqfa4v17grm4kr8p16q";
name = "magit";
};
@@ -17300,7 +17657,7 @@
sha256 = "19w8143c4spa856xyzx8fylndbj4s9nwn27f6v1ckqxvm5l0pph0";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/magit-annex";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/cec5af50ae7634cc566adfbfdf0f95c3e2951c0c/recipes/magit-annex";
sha256 = "1ri58s1ly416ksmb7mql6vnmx7hq59lmhi7qijknjarw7qs3bqys";
name = "magit-annex";
};
@@ -17321,7 +17678,7 @@
sha256 = "1vn6x53kpwv3zf2b5xjswyz6v853r8b9dg88qhwd2h480hrx6kal";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/magit-filenotify";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/c6c87a11492f6b6e5159a2a3dc1fe7d9efcc0cde/recipes/magit-filenotify";
sha256 = "00a77czdi24n3zkx6jwaj2asablzpxq16iqd8s84kkqxcfiiahn7";
name = "magit-filenotify";
};
@@ -17342,7 +17699,7 @@
sha256 = "1jlww053s580d7rlvmr1dl79wxasa0hhh2jnwb1ra353d6h3a73w";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/magit-find-file";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/7fabdb05de9b8ec18a3a566f99688b50443b6b44/recipes/magit-find-file";
sha256 = "1y66nsq1hbv1sb4n71gdxv7p1rz37vd9lkf7zl7avy0dchs499ik";
name = "magit-find-file";
};
@@ -17363,7 +17720,7 @@
sha256 = "0ym24gjd6c04zry08abcb09zvjbgj8nc1j12q0r51fhzzadxcxbb";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/magit-gerrit";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/f7cc000debed666ad6800e31c114eedb7384317c/recipes/magit-gerrit";
sha256 = "1iwvg10ly6dlf8llz9f8d4qfdbvd3s28wf48qgn1wjlxpka6zrd4";
name = "magit-gerrit";
};
@@ -17384,7 +17741,7 @@
sha256 = "19iqa2kzarpa75xy34hqvpy1y7dzx84pj540wwkj04dnpb4fwj2z";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/magit-gh-pulls";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/9b54fe4f51820c2f707e1f5d8a1128fff19a319c/recipes/magit-gh-pulls";
sha256 = "0qn9vjxi33pya9s8v3g95scmhwrn2yf5pjm7d24frq766wigjv8d";
name = "magit-gh-pulls";
};
@@ -17397,15 +17754,15 @@
magit-gitflow = callPackage ({ fetchFromGitHub, fetchurl, lib, magit, magit-popup, melpaBuild }:
melpaBuild {
pname = "magit-gitflow";
- version = "2.0.2";
+ version = "2.2.0";
src = fetchFromGitHub {
owner = "jtatarik";
repo = "magit-gitflow";
- rev = "e65ac501b603f245737b0fb73e71520356924f3f";
- sha256 = "0g9wqd4dbd0spal7ss9k679nak02hr1z0mgq6k4g5nkgngwn6l2q";
+ rev = "56f9934d3445fbeaf6ed6e7426e840b8e1db247e";
+ sha256 = "0g8jm9ax4k59wkl3n65zy7hbqrvk85lw22mwza900xbwb515mm66";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/magit-gitflow";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/dfaeb33dec2c75d21733b6e51d063664c6544e4d/recipes/magit-gitflow";
sha256 = "0wsqq3xpqqfak4aqwsh5sxjb1m62z3z0ysgdmnrch3qsh480r8vf";
name = "magit-gitflow";
};
@@ -17426,7 +17783,7 @@
sha256 = "1dv5qr9z5lxj2zjhwjhx451mbkb8d3y00q7ar6n34x7d5c4gmiya";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/magit-popup";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/cec5af50ae7634cc566adfbfdf0f95c3e2951c0c/recipes/magit-popup";
sha256 = "0w6m384bbmp3bd4qbss5h1jvcfp4qnpqvzlfykhdgjwpv2b2a2fj";
name = "magit-popup";
};
@@ -17447,7 +17804,7 @@
sha256 = "075gxm4shbh5zfr17zpfn35w8ndgz9aqz6y3wws23wa4ff2n8kdc";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/magit-rockstar";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/7a20b539cbd38ffa546c1b56b9fac78c0b9457f6/recipes/magit-rockstar";
sha256 = "1i4fmraiypyd3q6vvibkg9xqfxiq83kcz64b1dr3wmwn30j7986n";
name = "magit-rockstar";
};
@@ -17468,7 +17825,7 @@
sha256 = "1mk8g8rr9vf8jm0mmsj33p8gc71nhlv3847hvqywy6z40nhcjnyb";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/magit-stgit";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/cec5af50ae7634cc566adfbfdf0f95c3e2951c0c/recipes/magit-stgit";
sha256 = "12wg1ig2jzy2np76brpwxdix9pwv75chviq3c24qyv4y80pd11sv";
name = "magit-stgit";
};
@@ -17489,7 +17846,7 @@
sha256 = "1g8zq0s38di96wlhljp370kyj4a0ir1z3vb94k66v2m5nj83ap68";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/magit-svn";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/cec5af50ae7634cc566adfbfdf0f95c3e2951c0c/recipes/magit-svn";
sha256 = "02n732z06f0bhxqkxzlvm36bpqr40pas09zbzpfdk4pb6f9f80s0";
name = "magit-svn";
};
@@ -17510,7 +17867,7 @@
sha256 = "0dj183vphnvz9k2amga0ydcb4gkjxr28qz67055mxrf89q1qjq33";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/magit-topgit";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/cec5af50ae7634cc566adfbfdf0f95c3e2951c0c/recipes/magit-topgit";
sha256 = "1ngrgf40n1g6ncd5nqgr0zgxwlkmv9k4fik96dgzysgwincx683i";
name = "magit-topgit";
};
@@ -17531,7 +17888,7 @@
sha256 = "0fp5gbin1sgsdz39spk74vadkzig3ydwhpzx9vg7f231kk5f6wzx";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/make-color";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/bb765469c65589ae9d7dbc420a8edcf44c3be5d1/recipes/make-color";
sha256 = "0mrv8b67lpid5m8rfbhcik76bvnjlw4xmcrd2c2iinyl02y07r5k";
name = "make-color";
};
@@ -17552,7 +17909,7 @@
sha256 = "1rr7vpm3xxzcaam3m8xni3ajy8ycyljix07n2jzczayri9sd8csy";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/makey";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/688e32e98758aa6fd31218e98608bd54a76c3e83/recipes/makey";
sha256 = "06xgrlkqvg288yd4lyhx4vi80jlfarhblxk5m5zzs5as7n08cvk4";
name = "makey";
};
@@ -17573,7 +17930,7 @@
sha256 = "0z0ml7l1a45ych61qfc5fvkybl9hh37pgl6lzkaz6mcif1sl8gn1";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/malabar-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/29bbefd1e3cc5726584c89244fb5d8ecd18200c3/recipes/malabar-mode";
sha256 = "026ing7v22rz1pfzs2j9z09pm6dajpys992n45gzhwirz5f0q1rk";
name = "malabar-mode";
};
@@ -17594,7 +17951,7 @@
sha256 = "0hwxwwjzjxv2mmkxmalr2hp3x8apwcyvn2bz4d4yd4wrzcscay97";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/malinka";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/909a2d78f49a11e3f90e7d3c7f8af55e15113442/recipes/malinka";
sha256 = "1245mpxsxwnnpdsf0pd28mddgdfhh7x32a2l3sxfq0dyg2xlgvrp";
name = "malinka";
};
@@ -17615,7 +17972,7 @@
sha256 = "1272fsjzsza9dxm8s64b7x2jzr3ks8wjpwvgcxha2dnsjzklcdcj";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/mallard-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/19c5543664ca685a70e53baa1357842e83cbf8f7/recipes/mallard-mode";
sha256 = "0y2ikjgy107kb85pz50vv7ywslqgbrrkcfsrd8gsk1jky4qn8izd";
name = "mallard-mode";
};
@@ -17636,7 +17993,7 @@
sha256 = "1fkijm0gikbwmxa9hf7s1rcwb0ipzjygd1mlicsm78rxvdd8k877";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/map-progress";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/5ed3335eaf0be7368059bcdb52c46f5e47c0c1a5/recipes/map-progress";
sha256 = "0zc5vii72gbfwbb35w8m30c8r9zck971hwgcn1a4wjczgn4vkln7";
name = "map-progress";
};
@@ -17657,7 +18014,7 @@
sha256 = "0kk1sk3cr4dbmgq4wzml8kdf14dn9jbyq4bwmvk0i7dic9vwn21c";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/map-regexp";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/927314443ecc00d94e7125de669e82832c5a125c/recipes/map-regexp";
sha256 = "0yiif0033lhaqggywzfizfia3siggwcz7yv4z7przhnr04akdmbj";
name = "map-regexp";
};
@@ -17678,7 +18035,7 @@
sha256 = "0y4b69r2l6kvh7g8f1y9v1pdall3n668ci24lp04lcms6rxcrsnh";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/marcopolo";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/936a1cff601594575c5b550c5eb16e7dafc8a5ab/recipes/marcopolo";
sha256 = "1nbck1m7lhync7n474578d2g1zc72c841hi236xjbdd2lnxz3zz0";
name = "marcopolo";
};
@@ -17699,7 +18056,7 @@
sha256 = "0fcyspz7n97n84d9203mxgn8ar4rn52qa49s3vayfrbkn038j5qw";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/mark-tools";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/9ca36020392807aca9658d13481868d8b6c23d51/recipes/mark-tools";
sha256 = "1688y7lnzhwdva2ildjabzi10i87klfsgvs947i7gfgxl7jwhisq";
name = "mark-tools";
};
@@ -17720,7 +18077,7 @@
sha256 = "098lf4n4rpx00sm07sy8dwp683a4sb7x0p15mrfp268apir3kkxb";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/markdown-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/74610ec93d4478e835f8b3b446279efc0c71d644/recipes/markdown-mode";
sha256 = "0gfb3hp87kpcrvxax3m5hsaclwwk1qmxc73cg26smzd1kjfwgz14";
name = "markdown-mode";
};
@@ -17741,7 +18098,7 @@
sha256 = "1adl36fj506kgfw40gpagzsd7aypfdvy60141raggd5844i6y96r";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/markdown-mode+";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/ca7bf43ef8893bf04e9658390e306ef69e80a156/recipes/markdown-mode+";
sha256 = "1535kcj9nmcgmk2448jxc0jmnqy7f50cw2ngffjq5w8bfhgf7q00";
name = "markdown-mode-plus";
};
@@ -17754,15 +18111,15 @@
markdown-preview-mode = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, markdown-mode, melpaBuild, websocket }:
melpaBuild {
pname = "markdown-preview-mode";
- version = "0.3";
+ version = "0.4";
src = fetchFromGitHub {
owner = "ancane";
repo = "markdown-preview-mode";
- rev = "ff75e31a57f62156441d66d5c4033ad204d49a87";
- sha256 = "1yi5hsgf8hr7v1wyn3bw650g3ysbglwn5qfrmb6yl3s08lvi1vlf";
+ rev = "625c041efda1fa5e621c510770586baea1fd6a72";
+ sha256 = "1r0aqy78671k4cgf6y6rilch0vrhcj22ff7bvpwpba7imb8mf1cj";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/markdown-preview-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/011d26360a109b074cdecbcb133269ec6452ab86/recipes/markdown-preview-mode";
sha256 = "0i0mld45d8y96nkqn2r77nvbyw6wgsf8r54d3c2jrv04mnaxs7pg";
name = "markdown-preview-mode";
};
@@ -17783,7 +18140,7 @@
sha256 = "0l687bna8rrc49y1fyn1ldjcwh290qgvi3p86c63yj4xy24fmdm6";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/markdown-toc";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/4db1e90be8e34d5ad0c898be10dfa5cd95ccb921/recipes/markdown-toc";
sha256 = "0slky735yzmbfi4ld264vw64b4a4nllhywp19ya0sljbsfycbihv";
name = "markdown-toc";
};
@@ -17804,7 +18161,7 @@
sha256 = "0nk2rm14ccwrh1aaxzm80rllsz8g38h9w52m0pf3nnwh6sa757nk";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/markup-faces";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/70a3b6a7b43c76b0ce3b350f5c8d657bf4f7fb04/recipes/markup-faces";
sha256 = "12z92j9f0mpn7w2qkiwg54wh743q3inx56q3f8qcpfzyks546grq";
name = "markup-faces";
};
@@ -17825,7 +18182,7 @@
sha256 = "0pbli67wia8pximvgd68x6i9acdgsk51g9hjpqfm49rqg5nqalh9";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/marmalade";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/82a61911de111f6ef3a99fef0a0f93ab549ab261/recipes/marmalade";
sha256 = "0ppa2s1fma1lc01byanfxpxfrjqk2snxbsmdbkcipjdi5dpb0a9s";
name = "marmalade";
};
@@ -17838,15 +18195,15 @@
marshal = callPackage ({ eieio ? null, fetchFromGitHub, fetchurl, json ? null, lib, melpaBuild }:
melpaBuild {
pname = "marshal";
- version = "0.5.3";
+ version = "0.6.0";
src = fetchFromGitHub {
owner = "sigma";
repo = "marshal.el";
- rev = "2a3d102af4e996536a71ec38ab54e379c30a1ab0";
- sha256 = "0sriyjjhgis7fgq276j5mw6n84jdwxf8lq0iqqiaqwmc66l985mv";
+ rev = "64c428aa2d645501955e8a091c6bb027c08623a2";
+ sha256 = "11zlqrvm8c2xmjf8k8ibc0mzgy7q5jdn2imvrfgdf5pb7ygigy8j";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/marshal";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/203f2061c5c7d4aefab3175de5e0538f12158ee3/recipes/marshal";
sha256 = "17ikd8f1k42f28d4v5dn83zb44bsx7g336db60q068w6z8d4jbgl";
name = "marshal";
};
@@ -17867,7 +18224,7 @@
sha256 = "127q9xp015j28gjcna988dnrkadznn0xw8sdfvi943nhhqy4yvri";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/math-symbol-lists";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/fadff01600d57f5b9ea9c0c47ed109e058114998/recipes/math-symbol-lists";
sha256 = "01j11k29acj0b1pcapmgi2d2s3p50bkms21i2qcj0cbqgz8h6s27";
name = "math-symbol-lists";
};
@@ -17877,26 +18234,6 @@
license = lib.licenses.free;
};
}) {};
- matrix-client = callPackage ({ fetchgit, fetchurl, json ? null, lib, melpaBuild, request }:
- melpaBuild {
- pname = "matrix-client";
- version = "1.0.1";
- src = fetchgit {
- url = "git://fort.kickass.systems/personal/rrix/pub/matrix.el";
- rev = "b560caf68dded0fceaba4c2684e78682305471ca";
- sha256 = "1nmwny1y6n3w283v4kw57y6rlrlc9l8vy8nqhshl6v7vkzw5dvfp";
- };
- recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/matrix-client";
- sha256 = "09mgxk0xngw8j46vz6f5nwkb01iq96bf9m51w2q61wxivypnsyr6";
- name = "matrix-client";
- };
- packageRequires = [ json request ];
- meta = {
- homepage = "https://melpa.org/#/matrix-client";
- license = lib.licenses.free;
- };
- }) {};
maven-test-mode = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, s }:
melpaBuild {
pname = "maven-test-mode";
@@ -17908,7 +18245,7 @@
sha256 = "0x92b1qrhyrdh0z0xriyjc12h0wpk16x4yawj5i828ca6mz0qh5g";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/maven-test-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/bdc7f677c53431542cb8d7c95666d021dead2b98/recipes/maven-test-mode";
sha256 = "1k9w51rh003p67yalzq1w8am40nnr2khyyb5y4bwxgpms8z391fm";
name = "maven-test-mode";
};
@@ -17929,7 +18266,7 @@
sha256 = "08gbkd8wln89j9yxp0zzd539hbwy1db31gca3vxxrpszixx8280y";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/maxframe";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/7944652cb7a7bf45f16e86ea379a104d31861e76/recipes/maxframe";
sha256 = "10cwy3gi3xb3pfdh6xiafxp3vvssawci3y26jda6550d0w5vardj";
name = "maxframe";
};
@@ -17942,15 +18279,15 @@
mb-url = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "mb-url";
- version = "0.0.7";
+ version = "0.0.8";
src = fetchFromGitHub {
owner = "dochang";
repo = "mb-url";
- rev = "85d4847d1d71e636ee264c537073973b1dcbe0b9";
- sha256 = "1pi5yi76781pckvqgqabmkvq081npzkzl3r97f1wbcndvpfvv8jx";
+ rev = "e6ff9a88a4eb2de542e2fb053f4981ac8fa0a529";
+ sha256 = "073yqx5gjiglbb50633mjq5dkl5h54rk4qzp0kn9zqmi2mxa3i7p";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/mb-url";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/dd9a8ff6e094b061a7b9d790df1fd4086c5d0a9d/recipes/mb-url";
sha256 = "1nf8ssan00qsn3d4dc6h6qzdwqzh977qb5d2m33kiwi6qb98988h";
name = "mb-url";
};
@@ -17971,7 +18308,7 @@
sha256 = "00gwd2jf5ncgyay5w2jc2mhv18jf4ydnzpfkxaxw9zjbdxg4ym2i";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/mbe";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/0a8a16e485d608dbd59151d77e252048a49f9d25/recipes/mbe";
sha256 = "0h18mbcjy8nh4gl12kg2v8x6ps320yk7sbgq5alqnx2shp80kri3";
name = "mbe";
};
@@ -17992,7 +18329,7 @@
sha256 = "0252wdq4sd6jhzfy0pn3gdm6aq2h13nnp8hvrn1mpml9x473a5n1";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/mc-extras";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/12747bb8603ebc09ce0873f3317a99e34d818313/recipes/mc-extras";
sha256 = "0b110x6ygc95v5pb9lk1i731x5s6dagl5afzv37l1qchys36xrym";
name = "mc-extras";
};
@@ -18013,7 +18350,7 @@
sha256 = "1vsla0a5x4kfyj3ca4r1v8cspp12dadi0frpailclaxfmpmpl5d3";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/mediawiki";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/865e0ba1dbace58784181d214000d090478173bd/recipes/mediawiki";
sha256 = "17cbrzfdp6jbbf74mn2fi1cwv7d1hvdbw9j84p43jzscnaa5ikx6";
name = "mediawiki";
};
@@ -18034,7 +18371,7 @@
sha256 = "12cp56ppmwpdgf5afx7hd2qb8d1qq8z27191fbbf5zqw8cq5zkpd";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/melpa-upstream-visit";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/c110538a1ae2419505ea8f144ef7de2d67cad568/recipes/melpa-upstream-visit";
sha256 = "0j4afy9ipzr7pwkij8ab207mabd7srganlyyif9h1hvclj9svdmf";
name = "melpa-upstream-visit";
};
@@ -18055,7 +18392,7 @@
sha256 = "1y4ra5z3ayw3w7dszzlkk3qz3nv2jg1vvx8cf0y5j1pqpx8vy3jf";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/mentor";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/083de4bd25b6b013a31b9d5ecdffad139a4ba91e/recipes/mentor";
sha256 = "0nkf7f90m2qf11l97zwvb114yrpbqk1xxr2bh2nvbx8m1c8nad9s";
name = "mentor";
};
@@ -18068,7 +18405,7 @@
merlin = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "merlin";
- version = "2.3.1";
+ version = "2.5.0";
src = fetchFromGitHub {
owner = "the-lambda-church";
repo = "merlin";
@@ -18076,7 +18413,7 @@
sha256 = "0vk1b9gjhjq47jhjhwh6h2x2cl2w7pz4018s6c444paw46gmgkln";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/merlin";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/b1b9bfd3164e62758dc0a3362d85c6627ed7cbf8/recipes/merlin";
sha256 = "177cy9xcrjckxv8gvi1zhg2ndfr8cmsr37inyvpi5dxqy6d6alhp";
name = "merlin";
};
@@ -18097,7 +18434,7 @@
sha256 = "0n4nv1s25z70xfy3bl1wy467abz3agj4qmpx4rwdwzbarnqp9ps3";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/metafmt";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/7a53f740fb7a58cd6339b301d0de8c543b61f6a5/recipes/metafmt";
sha256 = "1ca102al7r3k2g92b4jkqv53crnmxy3z7cz31w1rprf41s69mn75";
name = "metafmt";
};
@@ -18118,7 +18455,7 @@
sha256 = "06mbdb4zb07skq1jpv05hr45k5x96d9hgkb358jiq0kfsqlrbbb4";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/metaweblog";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/7fabdb05de9b8ec18a3a566f99688b50443b6b44/recipes/metaweblog";
sha256 = "10kwqnfafby4ap0572mfkkdssr13y9p2gl9z3nmxqjjy04fkfi8b";
name = "metaweblog";
};
@@ -18139,7 +18476,7 @@
sha256 = "1dhws4a298zrm88cdn66sikdk06n0p60d32cxsgybakkhg5c5wgr";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/mew";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/362dfc4d0fdb3e5cb39564160de62c3440ce182e/recipes/mew";
sha256 = "0423xxn3cw6jmsd7vrw30hx9phga5chxzi6x7cvpswg1mhcyn9fk";
name = "mew";
};
@@ -18160,7 +18497,7 @@
sha256 = "1bp4xqklf422n0zwwyj0ag3a4nndg8klazrga6rlvpy01hgg3drl";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/mhc";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/d8d3efa0fcd6cd4af94bc99b35614ef6402cbdba/recipes/mhc";
sha256 = "02ikn9hx0kcfc2xrx4f38zpkfi6vgz7chcxk6q5d0vcsp93b4lql";
name = "mhc";
};
@@ -18181,7 +18518,7 @@
sha256 = "1cdjpqrsv2vhpdmv67krsds7wz19z9ajkabawr3yhxqii4myl4ik";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/mic-paren";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/0fda2b54a0ff0b6fc3bd6d20cfcbbf63cae5380f/recipes/mic-paren";
sha256 = "042dzp0nal18nxq94qlwwksh0nnypsyc0yykmc6l3kayp9pv4hw7";
name = "mic-paren";
};
@@ -18202,7 +18539,7 @@
sha256 = "1ckb5hymwj4wmsxakalsky4mkzn9vxhxr6416b2cr6r5jxj4xgsl";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/migemo";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/2424b0328a0198a03359455abdb3024a8067c857/recipes/migemo";
sha256 = "0y49imdwygv5zd7cyh9ngda4gyb2mld2a4s7zh4yzlh7z5ha9qkr";
name = "migemo";
};
@@ -18223,7 +18560,7 @@
sha256 = "1qg64mxsm2cswk52mlj7sx7k6gfnrsdwnf68i7cachri0i8aq4ap";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/milkode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/29fffbec2d3067c046c456602779af8c04bf898f/recipes/milkode";
sha256 = "07v6xgalx7vcw5sghckwvz584746cba05ql8flv8n556glm7hibh";
name = "milkode";
};
@@ -18244,7 +18581,7 @@
sha256 = "1zyb6c3xwdzk7dpn7xi0mvbcjdfxvzz1a0zlbs053pfar8iim5fk";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/minibuffer-complete-cycle";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/afac2cf41fe57efa8d313fdbab0b0b795ec144e4/recipes/minibuffer-complete-cycle";
sha256 = "0y1mxs6q9a8lzprrlb22qff6x5mvkw4gp2l6p2js2r0j9jzyffq2";
name = "minibuffer-complete-cycle";
};
@@ -18265,7 +18602,7 @@
sha256 = "07nbn2pwlp33kr136xsm6lzddhjs538xkz0fbays89psblmy4kwj";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/minibuffer-cua";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/f3b0f1f260b02c14da4d584b6af08b2fa3adf39c/recipes/minibuffer-cua";
sha256 = "1ragvr73ykbvpgynnq3z0z4yzrlfhfqlwc1vbxclb8x2xmxq7pzw";
name = "minibuffer-cua";
};
@@ -18286,7 +18623,7 @@
sha256 = "1850z96gly0jnr50472idqz1drzqarr0n23bbasslrc501xkg0bq";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/miniedit";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/5f2a50f62475639af011c99c6cc38928b74b3b0a/recipes/miniedit";
sha256 = "10s407q7igdi2hsaaahbw8vckalrl7z3s6l9cflf51q16xh2ih87";
name = "miniedit";
};
@@ -18307,7 +18644,7 @@
sha256 = "0kjhn48sf2ps3k5pv06gqmqc4hlk6di9ld3ssw6vwfh8313x1fc5";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/minimal-session-saver";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/c9db386ab3910940addae6e925b2ac17e64e0f87/recipes/minimal-session-saver";
sha256 = "1ay7wvriga28bdmarpfwagqzmmk93ri9f3idhr6z6iivwggwyy2i";
name = "minimal-session-saver";
};
@@ -18328,7 +18665,7 @@
sha256 = "0nd0jl5r5drnh98wdpqj2i7pgs7zvcizsh4qbvh8n0iw0c3f0pwh";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/minitest";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/41b2e55c0fe48267dc4f55924c782c6f934d8ca4/recipes/minitest";
sha256 = "0x6nd4kkhiw8hh79r69861pf41j8p1y39kzf2rl61zlmyjz9zpmw";
name = "minitest";
};
@@ -18348,7 +18685,7 @@
sha256 = "0rpp748ym79sxccp9pyrwri14m7624zzb80srfgjfdpysrrs0jrr";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/mmm-mako";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/5b7972602399f9df9139cff177e38653bb0f43ed/recipes/mmm-mako";
sha256 = "0a4af5q9wxafrid8visp30cz6073ig0c961b78vmmgqrwvvxd3kn";
name = "mmm-mako";
};
@@ -18369,7 +18706,7 @@
sha256 = "097s4xnwfy8d1wzmz65g2f8bnjjjlj67w1yzwn4d3yasb171nbv8";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/mmm-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/cae2ac3513e371a256be0f1a7468e38e686c2487/recipes/mmm-mode";
sha256 = "10vkqaf4684cm5yds1xfinvgc3v7871fb203sfl9dbkcgnd5dcjw";
name = "mmm-mode";
};
@@ -18390,7 +18727,7 @@
sha256 = "05nmcx3f63ds31cj3qwwp03ksflkfwlcn3z2xyxbny83r0dxbgvc";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/mmt";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/d1137bb53ecd92b1a8537abcd2635602c5ab3277/recipes/mmt";
sha256 = "0hal3qcw6x9658xpdaw6q9l2rr2z107pvg5bdzshf67p1b3lf9dq";
name = "mmt";
};
@@ -18411,7 +18748,7 @@
sha256 = "0yj9kc59c227727kh1zjxwrhijzd7rdhix7qqm4na1z6s4ycpxbm";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/mocha";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/39c26134ba95f277a4e9400e506433d96a695aa4/recipes/mocha";
sha256 = "0kjgrl5iy7cd3b9csgpjg3y0wp0q6c7c8cvf0mx8gdbsj7296kyx";
name = "mocha";
};
@@ -18432,7 +18769,7 @@
sha256 = "1lav7am41v63xgavq8pr88y828jmd1cxd4prjq7jlbxm6nvrwxh2";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/mocker";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/16a4fe34a6f354d396c24ff13e15157510202259/recipes/mocker";
sha256 = "1g90jp1czrrzrmn7n4linby3q4fb4gcflzv2amjv0sdimw1ln1w3";
name = "mocker";
};
@@ -18453,7 +18790,7 @@
sha256 = "0yf5lwd95j55dkrkplsgnynq37ww0g97vw517j9q7spn7dqnq5f6";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/modalka";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/fa0a02da851a603b81e183f461da55bf4c71f0e9/recipes/modalka";
sha256 = "0bkjykvl6sw797h7j76dzn1viy598asly98gcl5wrq13n4w1md4c";
name = "modalka";
};
@@ -18474,7 +18811,7 @@
sha256 = "1ykj68d4h92i4qv90zgwrf9jhy1n22l2h9k5f1zsn8hvz9mhj1av";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/mode-icons";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/0fda2b54a0ff0b6fc3bd6d20cfcbbf63cae5380f/recipes/mode-icons";
sha256 = "1dqcry27rz7afyvjg7345wysp6wmh8fpj32ysk5iw5i7v5scf6kf";
name = "mode-icons";
};
@@ -18495,7 +18832,7 @@
sha256 = "1lkw9nnlns6v7r6nx915f85whq1ri4w8lccwyxrvam40hfvq60s1";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/mode-line-debug";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/b0080ab9ef1eca5dd19b3fd9af536d8aa17773a2/recipes/mode-line-debug";
sha256 = "0ppj14bm3rx3xgg4mfxa5zcm2r129jgmsx817wq3h7akjngcbfkd";
name = "mode-line-debug";
};
@@ -18508,15 +18845,15 @@
modern-cpp-font-lock = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "modern-cpp-font-lock";
- version = "0.1.1";
+ version = "0.1.3";
src = fetchFromGitHub {
owner = "ludwigpacifici";
repo = "modern-cpp-font-lock";
- rev = "6e4459465825bd12d577b8e2d780cc158538df68";
- sha256 = "1gpsdyzcjb9j7yy39pbbjln2c7zkcbbm1brn9y1djwpv5571sd1v";
+ rev = "3e9c18b5a2ade485565f5191f12a724f1969dbb0";
+ sha256 = "0jg5yix4c18gvy5n4wsi7zg2sb7r0bw0xlmq0w15g3z63nhy69vc";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/modern-cpp-font-lock";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/4bfc2386049adfe7a8e20da9b69fb73d6cb71387/recipes/modern-cpp-font-lock";
sha256 = "0h43icb5rqbkc5699kdy2mrjs5448phl18jch45ylp2wy2r8c2qj";
name = "modern-cpp-font-lock";
};
@@ -18537,7 +18874,7 @@
sha256 = "0pfzzyfknfaj8yil5f55xfa8x5jypc5i95c4lrkb0vykgccczj78";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/monokai-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/2bc9ce95a02fc4bcf7bc7547849c1c15d6db5089/recipes/monokai-theme";
sha256 = "13mv4vgsmdbf3v748lqi7b42hvr3yp86n97rb6792bcgd3kbdx7a";
name = "monokai-theme";
};
@@ -18558,7 +18895,7 @@
sha256 = "1a0pv8fkv1cjdb0k5bmjd67a273bzcmxjwzgy4jpb3ng1qbb2xnm";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/monroe";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/590e5e784c5a1c12a241d90c9a0794d2737a61ef/recipes/monroe";
sha256 = "04rhninxppvilk7s90g0wwa0g9vfcg7mk8mrb2m2c7cb9vj6wyig";
name = "monroe";
};
@@ -18579,7 +18916,7 @@
sha256 = "0kjqdm6kzhgjmfdj4n95ivffw1wqf4r3gk62fvhfi4w29g7wd16j";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/morlock";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/b6ef53bbc80edda12a90a8a9705fe14415972833/recipes/morlock";
sha256 = "0693jr1k8mzd7hwp52azkl62c1g1p5yinarjcmdksfyqblqq5jna";
name = "morlock";
};
@@ -18600,7 +18937,7 @@
sha256 = "01mdy7sps0xryz5gfpl083rv7ixkxs2rkz5yaqjlam2rypdcsyy2";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/move-dup";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/3ea1f7f015a366192492981ff75672fc363c6c18/recipes/move-dup";
sha256 = "0b0lmiisl9yckblwf7619if88qsmbka3bl4qiaqam7fka7psxs7f";
name = "move-dup";
};
@@ -18613,15 +18950,15 @@
mowedline = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "mowedline";
- version = "0.2.8";
+ version = "2.0.0";
src = fetchFromGitHub {
owner = "retroj";
repo = "mowedline";
- rev = "c299991ace6f55e9edbf26c1d53b054873899101";
- sha256 = "1mg7arw4wbbm84frq3sws5937fh901qn0xnjk9jcp3pvc4d0sxwd";
+ rev = "c941d44c994e29f0c5f6c4532950eaceec0a6376";
+ sha256 = "1wrdcxdlcvrhvarz71a09168bp1rd154ihs5v55dgh1sm7pv34la";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/mowedline";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/86f7df6b8df3398ef476c0ed31722b03f16b2fec/recipes/mowedline";
sha256 = "0c2hvvwa7s5iyz517jaskshdcq9zs15zr6xsvrcb3biahrh4bmfb";
name = "mowedline";
};
@@ -18642,7 +18979,7 @@
sha256 = "13bf5jn1kgqg59j5czlzvajq2fw1rz4h5jqfc7x8w1a067nymf2c";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/moz";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/6839c5e52364fb32f6d8a351e5c2f21fbd6669a1/recipes/moz";
sha256 = "0ar2xgsi7csjj6fgiamrjwjc58j942dm32j3f3lz21yn2c4pnyxi";
name = "moz";
};
@@ -18663,7 +19000,7 @@
sha256 = "1w1i1clkjg9mj1g4i2y3xw3hyj8s7h9gr04qgyb9c1q8vh11z8d0";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/moz-controller";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/fcc20337594a76a547f696adece121ae592c6917/recipes/moz-controller";
sha256 = "18gca1csl9dfi9995mky8cbgi3xzf1if8pzdjiz5404gzcqk0rfd";
name = "moz-controller";
};
@@ -18684,7 +19021,7 @@
sha256 = "1gdi2pz8450h11aknz3hbgjlx09w6c4l8d8sz0zv3pb1z8cqkgqv";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/mozc-temp";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/e0c77275d759bf73df11fa151b4e737d7cb15adf/recipes/mozc-temp";
sha256 = "0x1bsa1py0kn73hzbsb4ijl0bqng8nib191vgn6xq8f5cx55044d";
name = "mozc-temp";
};
@@ -18705,7 +19042,7 @@
sha256 = "1pjhch8vah0kf73fl2fk6khhrx1kflggd3zlxrf7w4fxr0qn8la3";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/mpv";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/2392c1d1042ac6a42bbf9aa7e394c03e178829d0/recipes/mpv";
sha256 = "1vq308ac6jj1h8qa2b2sypisb38hbvwjimqndhpfir06fghkw94l";
name = "mpv";
};
@@ -18726,7 +19063,7 @@
sha256 = "1draiwbwb8zfi6rdr5irv8091xv2pmnifq7pzi3rrvjb8swb28z3";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/msvc";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/69939b85353a23f374cab996ede879ab315a323b/recipes/msvc";
sha256 = "04gq2klana557qvsi3bv6416l0319jsqb6bdfs7y6729qd94hlq3";
name = "msvc";
};
@@ -18747,7 +19084,7 @@
sha256 = "0wrg6f7czn61f9wmrk27dzcdskznm5i1pwwjck5h768j0y9dfv6a";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/mu4e-alert";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/5a48e8cb571e91b582ff0dea18e8dc75601edc35/recipes/mu4e-alert";
sha256 = "15nwj09iyrvjsc9lrxla6qa0s8izcllxghw5gx3ffncfcrx2l8qm";
name = "mu4e-alert";
};
@@ -18768,7 +19105,7 @@
sha256 = "1lyd8pcawn106zwlbq6gdq05i2zhry1qh9cdyjiw61nvgbbfi0yx";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/mu4e-maildirs-extension";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/3b20c61c62309f27895f7427f681266e393ef867/recipes/mu4e-maildirs-extension";
sha256 = "1xz19dxrj1grnl7wy9qglh08xb3dr509232l3xizpkxgqqk8pwbi";
name = "mu4e-maildirs-extension";
};
@@ -18789,7 +19126,7 @@
sha256 = "11zabs7qpdhri6n90ck7pgwcbz46d813nyl73h5m1i8jvz1wzx7v";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/multi";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/c9fea5cf529bcdf412af2926e55b8d77edc07eca/recipes/multi";
sha256 = "1c240d1c1g8wb2ld944344zklnv86d9rycmya4z53b2ai10642ig";
name = "multi";
};
@@ -18810,7 +19147,7 @@
sha256 = "1d9y3dw27pgzgv6wk575d5ign55xdqgbl3ycyq1z7sji1477lz6b";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/multi-web-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/cae2ac3513e371a256be0f1a7468e38e686c2487/recipes/multi-web-mode";
sha256 = "0vi4yvahr10aqpcz4127c8pcqpr5srwc1yhgipnbnm86qnh34ql5";
name = "multi-web-mode";
};
@@ -18831,7 +19168,7 @@
sha256 = "1ijgvzv5r44xqvz751fd5drbvrspapw6xwv47582w255j363r6ss";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/multiple-cursors";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/a5f015e6b88be2a5ded363bd882a558e94d1f391/recipes/multiple-cursors";
sha256 = "0mky5p9wpd3270wr5vfna8rkk2ff81wk7vicyxli39195m0qgg0x";
name = "multiple-cursors";
};
@@ -18852,7 +19189,7 @@
sha256 = "15gw4d0hp15rglsj8hzd290li4p0kadj2dsz0dgfcxld7hnimihk";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/mustache-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/d5f7e5f7e9c551a149e9d433173bd8c8613487ed/recipes/mustache-mode";
sha256 = "076ar57qhwcpl4n634ma827r2rh61670778wqr5za2444a6ax1gs";
name = "mustache-mode";
};
@@ -18873,7 +19210,7 @@
sha256 = "0hvq6z754niqjyv79jzb833wrwbspc7npfg85scwdv8vzwassjx4";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/mwim";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/b7e1aa2fa1294b27ed7b6c5bdd5844fa5c37df72/recipes/mwim";
sha256 = "0bsibwplvyv96y5i5svm2b0jwzs5a7jr2aara7v7xnpj0nqaxm8k";
name = "mwim";
};
@@ -18894,7 +19231,7 @@
sha256 = "0550k0rfm0zai306642v689mcpsw9pbd5vs0il82cihwvrxjifc5";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/mykie";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/e10504a19e052c080be2ccc9b1b8fd2e73a852e0/recipes/mykie";
sha256 = "12ram39fp3m9ar6q184rsnpkxb14y0ajibng7ia2ck54ck7n36cj";
name = "mykie";
};
@@ -18915,7 +19252,7 @@
sha256 = "0amhw630hgc0j8wr8m6aav399ixi3vbwrck79hhlr3pmyh91vv7n";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/name-this-color";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/806273d9898331b9b0189a72d9fdd43c86e1224c/recipes/name-this-color";
sha256 = "12nrk1ww766jb4gb4iz6w485nimh2iv8wni2jq4l38v8ndh490zb";
name = "name-this-color";
};
@@ -18936,7 +19273,7 @@
sha256 = "0m82g27gwf9mvicivmcilqghz5b24ijmnw0jf0wl2skfbbg0sydh";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/names";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/1e6aed365c42987d64d0cd9a8a6178339b1b39e8/recipes/names";
sha256 = "1q784606jlakw1z6sx2g2x8hz8c8arywrm2r626wj0v105v510vg";
name = "names";
};
@@ -18957,7 +19294,7 @@
sha256 = "10yn215xb4s6kshk108y75im1xbdp0vwc9kah5bbaflp9234i0zh";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/narrow-reindent";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/73c7f01a009dc7ac1b9da8ce41859695a97b7878/recipes/narrow-reindent";
sha256 = "0fybal70kk62zlra63x4jb72694m0mzv4cx746prx9anvq1ss2i0";
name = "narrow-reindent";
};
@@ -18978,7 +19315,7 @@
sha256 = "0ydxj6dc10knambma2hpimqrhfz216nbj96w1dcwgjixs4cd4nax";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/narrowed-page-navigation";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/e37e993fec280428f094b6c8ec418fe5ba8c6d49/recipes/narrowed-page-navigation";
sha256 = "1yrmih60dd69qnin505jlmfidm2svzpdrz46286r7nm6pk7s4pb7";
name = "narrowed-page-navigation";
};
@@ -18999,7 +19336,7 @@
sha256 = "0d8bfz41ry5bvkz2894dqkk3244n7xcjk3pf58fcsagvmmkkln7b";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/nasm-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/a1a832b3bd7c2f2d3cee8bcfb5421d22acf5523e/recipes/nasm-mode";
sha256 = "1626yf9mmqlsw8w01vzqsyb5ipa56259d4kl6w871k7rvhxwff17";
name = "nasm-mode";
};
@@ -19020,7 +19357,7 @@
sha256 = "119hy8rs83f17d6zizdaxn2ck3sylxbyz7adszbznjc8zrbaw0ic";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/nav-flash";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/c9db386ab3910940addae6e925b2ac17e64e0f87/recipes/nav-flash";
sha256 = "0936kr0s6zxxmjwaqm7ywdw2im4dxai1xb7j6xa2gp7c70qvvsx3";
name = "nav-flash";
};
@@ -19041,7 +19378,7 @@
sha256 = "15jh1lsgqfnpbmrikm8kdh5bj60yb96f2as2anppjjsgl6w96glh";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/navi-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/4a06141b0ee1e10bc3f16fcca35d971dc7e9d07e/recipes/navi-mode";
sha256 = "0f5db983w9kxq8mcjr22zfrm7cpxydml4viac62lvab2kwbpbrmi";
name = "navi-mode";
};
@@ -19062,7 +19399,7 @@
sha256 = "09cb07f98aclgq8jf5419305zydkk1hz4nvzrwqz7syrlpvx8xi5";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/navorski";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/9246cef94029d2da2211345c076ed55deb91e8fa/recipes/navorski";
sha256 = "0dnzpsm0ya8rbcik5wp378hc9k7gjb3gwmkqqj889c38q5cdwsx7";
name = "navorski";
};
@@ -19083,7 +19420,7 @@
sha256 = "16i1k1zr6ng1dlxb1b73mxjf25f4kvf3x5vfffsi3qnfm960bg3q";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ncl-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/00cc4705650157621bb0135cc512d57178496100/recipes/ncl-mode";
sha256 = "0hmd606xgapzbc79px9l1q6pphrhdzip495yprvg20xsdpmjlfw9";
name = "ncl-mode";
};
@@ -19104,7 +19441,7 @@
sha256 = "19xxg4ya6vndk2ljdnl284zs8qf9dkq4ghr7pmsclp9n7zh46v48";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/nemerle";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/8477d0cf950efcfd9a85618a5ca48bff590b22d7/recipes/nemerle";
sha256 = "0698hbgk80w7wp0ssx9pl13aapm7rc6l3y2zydfkyqdfwy5y71v6";
name = "nemerle";
};
@@ -19125,7 +19462,7 @@
sha256 = "1gmi0xxwkh33w5gxc8488m1vv6ycizqhlw1kpn81zhqdzzq3s06n";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/neotree";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/9caf2e12762d334563496d2c75fae6c74cfe5c1c/recipes/neotree";
sha256 = "05smm1xsn866lsrak0inn2qw6dvzy24lz6h7rvinlhk5w27xva06";
name = "neotree";
};
@@ -19146,7 +19483,7 @@
sha256 = "08bpyk0brx0x2l0y8hn8zpkaxb2ndmxz22kzxxypj6hdz303wf38";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/nginx-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/a6da3640b72496e2b32e6ed21aa39df87af9f7f3/recipes/nginx-mode";
sha256 = "07k17m64zhv6gik8v4n73d8l1k6fsp4qp8cl94r384ny0187y65c";
name = "nginx-mode";
};
@@ -19167,7 +19504,7 @@
sha256 = "0dzcaa88l7yjc7fhyhkvbzs7bmhi6bb6rx41wsnnidlnpzbgdrk7";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/niceify-info";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/0b2a923da7363d904eb848eb335736974e05dba1/recipes/niceify-info";
sha256 = "1s9c8yxbab9zl5jx38alwa2hpp4zj5cb9a5gfm3x09jf3iw768bl";
name = "niceify-info";
};
@@ -19188,7 +19525,7 @@
sha256 = "14jh2cg1isip8b8lls3hdj99vpqjyjqlv27r2kpq6095b78p64d9";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ninja-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/aed2f32a02cb38c49163d90b1b503362e2e4a480/recipes/ninja-mode";
sha256 = "1m7f25sbkz8k343giczrnw2ah5i3mk4c7csi8kk9x5y16030asik";
name = "ninja-mode";
};
@@ -19209,7 +19546,7 @@
sha256 = "1rvi30xyj2vj3gmzagy51smrhb1xwlsfgnyg30hblj88yn0wh5sz";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/nix-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/f2b542189cfde5b9b1ebee4625684949b6704ded/recipes/nix-mode";
sha256 = "00rqawi8zs2x79c91gmk0anfyqbwalvfwmpak20i11lfzmdsza1s";
name = "nix-mode";
};
@@ -19230,7 +19567,7 @@
sha256 = "1lm7rkgf7q5g4ji6v1masfbhxdpwni8d77dapsy5k9p73cr2aqld";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/nixos-options";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/6846c7d86e70a9dd8300b89b61435aa7e146be96/recipes/nixos-options";
sha256 = "1m3jipidk10zj68rzjbacgjlal31jf80gqjxlgj4qs8lm671gxmm";
name = "nixos-options";
};
@@ -19240,6 +19577,27 @@
license = lib.licenses.free;
};
}) {};
+ no-littering = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }:
+ melpaBuild {
+ pname = "no-littering";
+ version = "0.3.0";
+ src = fetchFromGitHub {
+ owner = "tarsius";
+ repo = "no-littering";
+ rev = "6e4c239f58645d6cee3ed4aa180ae484f677a7ab";
+ sha256 = "1j5agcq56mphpbpxdaklvl1y2689sfny4l6wknvrwxnqyl48yzkb";
+ };
+ recipeFile = fetchurl {
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/cf5d2152c91b7c5c38181b551db3287981657ce3/recipes/no-littering";
+ sha256 = "129nyml8jx3nwdskcr2favbi3x6f74dblc6yw8vijw32w8z14k2l";
+ name = "no-littering";
+ };
+ packageRequires = [ cl-lib ];
+ meta = {
+ homepage = "https://melpa.org/#/no-littering";
+ license = lib.licenses.free;
+ };
+ }) {};
noccur = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "noccur";
@@ -19251,7 +19609,7 @@
sha256 = "0wk86gm0by9c8mfbvydz5va07qd30n6wx067inqfa7wjffaq0xr7";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/noccur";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/41f15b8298390310e95cbe137ea1516c0be10b94/recipes/noccur";
sha256 = "0a8l50v09bgap7rsls808k9wyjpjbcxaffsvz7hh9rw9s7m5fz5g";
name = "noccur";
};
@@ -19272,7 +19630,7 @@
sha256 = "03vcs458rcn1hgfvmgmijadjvri7zlh2z4lxgaplzfnga13mapym";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/nodejs-repl";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/14f22f97416111fcb02e299ff2b20c44fb75f049/recipes/nodejs-repl";
sha256 = "0rvhhrsw87kfrwdhm8glq6b3nr0v90ivm7fcc0da4yc2jmcyk907";
name = "nodejs-repl";
};
@@ -19291,7 +19649,7 @@
sha256 = "07bhzddaxdjd591xmg59yd657a1is0q515291jd83mjsmgq258bm";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/nose";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/5b7972602399f9df9139cff177e38653bb0f43ed/recipes/nose";
sha256 = "0l77hsmn3qk934ppdav1gy9sq48g0v1dzc5qy0rp9vv4yz2jx2jk";
name = "nose";
};
@@ -19303,14 +19661,14 @@
}) {};
notmuch = callPackage ({ fetchgit, fetchurl, lib, melpaBuild }: melpaBuild {
pname = "notmuch";
- version = "0.22";
+ version = "0.22.1pre0";
src = fetchgit {
url = "git://git.notmuchmail.org/git/notmuch";
- rev = "ea5caecec5c50833a6f5a422e217a71eee6324af";
- sha256 = "0n471pjj433jivmwbifzw8x6ya09v52yvgdjfkxcp2a6mn23k6xm";
+ rev = "09b18ae8f459ccdb1e5706818b4bf45ceea65e23";
+ sha256 = "0d8q560xrd7m6iw7dvv1xd5m1b6wma9s58p7i6bg5r91acs8pzk3";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/notmuch";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/b19f21ed7485036e799ccd88edbf7896a379d759/recipes/notmuch";
sha256 = "173d1gf5rd4nbjwg91486ibg54n3qlpwgyvkcy4d30jm4vqwqrqv";
name = "notmuch";
};
@@ -19331,7 +19689,7 @@
sha256 = "1ss87vlp7625lnn2iah3rc1xfxcbpx4kmiww9n16jx073fs2rj18";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/notmuch-labeler";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/2e9940e66bbf70ec868dbdaaeaa1fbd4f076a2e1/recipes/notmuch-labeler";
sha256 = "1c0cbkk5k8ps01xl63a0xa2adkqaj0znw8qs8ca4ai8v1420bpl0";
name = "notmuch-labeler";
};
@@ -19352,7 +19710,7 @@
sha256 = "1l07nrlfd5qj8jnqacjba7mb6prapg8d8h3881l3kb66sn02ahgy";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/nrepl-sync";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/2059ab6f2a3adc5af4f0876546e344e806e22ee5/recipes/nrepl-sync";
sha256 = "01b504b4d8rrhlf3sfq3kk9i222fch6jd5jbm02kqw20fgv6q3jd";
name = "nrepl-sync";
};
@@ -19373,7 +19731,7 @@
sha256 = "0c4qfbb345yna5c30czq8nhcx283z1fnpp6h16p7vjqs6y37czsl";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/nsis-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/e9b169a80c7afdeb0c6e17cd289114b5d3d97266/recipes/nsis-mode";
sha256 = "0pc047ryw906sz5mv0awvl67kh20prsgx6fbh0j1qm0cali2792l";
name = "nsis-mode";
};
@@ -19394,7 +19752,7 @@
sha256 = "1624jj922l0bbav1v8szdr0lpyx0ng959fg3sspg1j15kgkir8kf";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/nvm";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/1943a1986775952bedd78430ee41b67af130c439/recipes/nvm";
sha256 = "03gy7wavc2q02lnr9pmp3l1pn0lzbdq0kwnmg9fvklmq6r6n3x34";
name = "nvm";
};
@@ -19415,7 +19773,7 @@
sha256 = "199ii1658k4sp5krha77n9l5jblyvnvvvr28g2nbc74lfybckjwq";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/nyan-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/4d8c3000df5f2ee2493a54dee6f9b65008add753/recipes/nyan-mode";
sha256 = "1z2wnsbjllqa533g1ab5cgbv3d9hjix7fsd7z9c45nqh5cmadmyv";
name = "nyan-mode";
};
@@ -19436,7 +19794,7 @@
sha256 = "0bgspjy8h3d7v12sfjnd2ghj4183pdf0z48g5xs129jwd3nycykp";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/nyan-prompt";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/2e3bf5fe2adaf557146df6f4e13aa6ffedb5d1e3/recipes/nyan-prompt";
sha256 = "1s0qyhpfpncsv9qfxy07rbp4gv8pp5xzb48rbd3r14nkjlnylnfb";
name = "nyan-prompt";
};
@@ -19457,7 +19815,7 @@
sha256 = "0r12023yy8j96bp8z2ml6ffyr2c9rcd5abkh6vqnkwsdxkzx6wrs";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/o-blog";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/d5f24e70260f46445b119817bc1326f29b367c4b/recipes/o-blog";
sha256 = "08grkyvg27wd5232q3y8p0v7higfq7bmsdzmvhja96v6qy2xsbja";
name = "o-blog";
};
@@ -19478,7 +19836,7 @@
sha256 = "0bqr6yl1hpykpykjpfb247xnpnz510zrg9yv7nkxlrig4pjgdcx1";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ob-http";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/950b02f76a04f453992b8720032e8c4cec9a039a/recipes/ob-http";
sha256 = "0b7ghz9pqbyn3b52cpmnwa2wnd4svj23p6gc48ybwzwiid42wiss";
name = "ob-http";
};
@@ -19499,7 +19857,7 @@
sha256 = "08p64ss3ia1gq6dsna5v3ajjwm5g9ma7yvd5y0jx91xssjqq5dja";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ob-sagemath";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/dc074af316a09906a26ad957a56e3dc272cd813b/recipes/ob-sagemath";
sha256 = "02ispac1y4g7p7iyscf5p8lvp92ncrn6281jm9igyiny1w6hivy7";
name = "ob-sagemath";
};
@@ -19520,7 +19878,7 @@
sha256 = "1xx6hyq3gk4bavcx6i9bhipbn4mn5rv2ga9lryq09qgq2l9znclk";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ob-sml";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/d1b0fbe1198fa624771c2f61249db502de57942a/recipes/ob-sml";
sha256 = "04qvzhwjr8ipvq3znnhn0wbl4pbb1rwxi90iidavzk3phbkpaskn";
name = "ob-sml";
};
@@ -19541,7 +19899,7 @@
sha256 = "10hm20dzhkxk61ass3bd5gdn1bs2l60y3zjnpkxinzn7m6aaniia";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ob-translate";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/4d89e4006afc51bd44e23f87a1d1ef1140489ab3/recipes/ob-translate";
sha256 = "1hi0rxbyxvk9sbk2fy3kqw7l4lgri921vya1mn4i1q2i1979r2gz";
name = "ob-translate";
};
@@ -19562,7 +19920,7 @@
sha256 = "05ay599nc6jdw2fjss4izz1ynv2wc4svff932n8j9hvrhygipb2w";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ocodo-svg-modelines";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/5b9651865f4f8009c9b31fa1e5561de97a5ad8de/recipes/ocodo-svg-modelines";
sha256 = "0fa88ns70wsr9i9gf4zx3fvmn1a32mrjsda105n0cx6c965kfmay";
name = "ocodo-svg-modelines";
};
@@ -19575,15 +19933,15 @@
ocp-indent = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "ocp-indent";
- version = "1.5.2";
+ version = "1.5.3";
src = fetchFromGitHub {
owner = "OCamlPro";
repo = "ocp-indent";
- rev = "e6f15bdf7d5ad6e4addbf24dce74823f953db900";
- sha256 = "0ynv2yhm7akpvqp72pdabhddwr352s1k85q8m1khsvspgg1mkiqz";
+ rev = "8c349c5531d3bc90b00df875b6cd3c64110f59f1";
+ sha256 = "1c4fdm6r3r3fqjflqjncfmx0ps52b5f17vq957g0b3pcaql5n63d";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ocp-indent";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/e1af061328b15360ed25a232cc6b8fbce4a7b098/recipes/ocp-indent";
sha256 = "0wc4z9dsnnyr24n3vg1npvc3rm53av8bpbvrl8kldxxdiwgnbkjw";
name = "ocp-indent";
};
@@ -19604,7 +19962,7 @@
sha256 = "19fg6r7aiirfsbp2h1a824476sn1ln4nz8kvpdzkzvyf1hzx68gw";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/octicons";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/c62867eae1a254eb5fe820d4387dd4e8a0ff9be2/recipes/octicons";
sha256 = "02f37bvnc5qvkvfbyx5wp54nz71bqm747mq1p5361sx091lllkxk";
name = "octicons";
};
@@ -19625,7 +19983,7 @@
sha256 = "0az4llfgva4wvpljyc5s2m7ggfnj06ssp32x8bncr5fzksha3r7b";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/offlineimap";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/671afe0ff3889ae8c4b2d7b8617a3a25c16f3f0f/recipes/offlineimap";
sha256 = "0nza7lrz7cn06njcblwh9hy3050j8ja4awbxx7jzv6nazjg7201b";
name = "offlineimap";
};
@@ -19638,15 +19996,15 @@
olivetti = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "olivetti";
- version = "1.4.0";
+ version = "1.5.0";
src = fetchFromGitHub {
owner = "rnkn";
repo = "olivetti";
- rev = "4095b761e12352a0862e6fadbc56483e7c756f21";
- sha256 = "1hx1yv0fd64832y15c2chz9d50hqs4ap5vry4x6745vify6mchlj";
+ rev = "4a6197f3d0d4f1230ae75fc6d3c17d5d6459033b";
+ sha256 = "1wb2qgyym9gzd8ywrjcji9jxz0wcspz242ny1abkjf0crzgfivhq";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/olivetti";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/697334ca3cdb9630572ae267811bd5c2a67d2a95/recipes/olivetti";
sha256 = "0fkvw2y8r4ww2ar9505xls44j0rcrxc884p5srf1q47011v69mhd";
name = "olivetti";
};
@@ -19667,7 +20025,7 @@
sha256 = "07grj81alrr6qgs3jmqkjzphkvi26w6jm5hf1f5wyx7h6q293ady";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/omni-kill";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/c24df34d2fa5d908223379e909148423ba327ae2/recipes/omni-kill";
sha256 = "03kydl16rd9mnc1rnan2byqa6f70891fhcj16wkavl2r68rfj75k";
name = "omni-kill";
};
@@ -19688,7 +20046,7 @@
sha256 = "030f983n19n64f8irif102nncvam04xpx020vfgja9886wlj40pk";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/omni-log";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/47bb19bb7b4713c3fd82c1035a2fe66588c069e3/recipes/omni-log";
sha256 = "0c29243zq8r89ax4rxlmb8imag12icnldcb0q0xsnhjccw8lyw1r";
name = "omni-log";
};
@@ -19709,7 +20067,7 @@
sha256 = "1rfs6z56pnacy6m7yvm2hrb0ykfvaiyichivcmb9ssdgqp92cbxx";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/omni-scratch";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/6ba3e128a7fe4476d82266506b18ba9984c37944/recipes/omni-scratch";
sha256 = "190dkqcw8xywzrq8a99w4rqi0y1h2aj23s84g2ln1sf7jaf6d6n9";
name = "omni-scratch";
};
@@ -19730,7 +20088,7 @@
sha256 = "0c34rci5793hd674x2srhqvnj46llrbkrw1xpzf73s4ib5zhh7xi";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/omni-tags";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/c77e57f41484c08cae9f47c4379d1752ccf43ce2/recipes/omni-tags";
sha256 = "133ww1jf14jbw02ssbx2a46mp52j18a2wwzb6x77azb0akmf1lzl";
name = "omni-tags";
};
@@ -19751,7 +20109,7 @@
sha256 = "1iq8yzjv7wb0jfi3lqqyx4n7whvb7xf8ls0q0w7pgsrsslrxbwcm";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/omnisharp";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/68bdb7e0100e120b95e9416398127d83530a221d/recipes/omnisharp";
sha256 = "0dwya22y92k7x2s223az1g8hmrpfmk1sgwbr9z47raaa8kd52iad";
name = "omnisharp";
};
@@ -19781,7 +20139,7 @@
sha256 = "119pk7gg4fw5bdvir8077ra603b5nbqvd7ph9cqrwxa056jzvry8";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/opam";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/fc4e2076ebaefe7e241607ff6920fe243d10ccd0/recipes/opam";
sha256 = "004r93nn1ranvxkcc0y5m3p8gh4axgghgnsvim38nc1sqda5h6xa";
name = "opam";
};
@@ -19802,7 +20160,7 @@
sha256 = "0n64l1jrrk60g192nn0240qcv2p9r138mi9gb38qq5k65wffbc21";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/opencl-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/d97575fdae88d55b55686aa6814f858813cad171/recipes/opencl-mode";
sha256 = "1g351wiaycwmg1bnf4s2mdnc3lb2ml5l54g19184xqssfqlx7y79";
name = "opencl-mode";
};
@@ -19812,6 +20170,27 @@
license = lib.licenses.free;
};
}) {};
+ opensource = callPackage ({ dash, fetchFromGitHub, fetchurl, lib, melpaBuild, pkg-info, request, s }:
+ melpaBuild {
+ pname = "opensource";
+ version = "0.1.0";
+ src = fetchFromGitHub {
+ owner = "nlamirault";
+ repo = "opensource.el";
+ rev = "eb7bd24e4d4988e7555a6a7c7b8b902630b06ffd";
+ sha256 = "1hgbj6rh9mn7n3ccf8ia8vlgzl6mcyr3282l2zqv8z6232sciky2";
+ };
+ recipeFile = fetchurl {
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/b9925f059f0caf0550a747d1f07e043e9d854f77/recipes/opensource";
+ sha256 = "0ha5xva27xf6af9yhxpmnkyp26jzia7fkbkqx5qv0cwmicapccfk";
+ name = "opensource";
+ };
+ packageRequires = [ dash pkg-info request s ];
+ meta = {
+ homepage = "https://melpa.org/#/opensource";
+ license = lib.licenses.free;
+ };
+ }) {};
operate-on-number = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "operate-on-number";
@@ -19823,7 +20202,7 @@
sha256 = "12q09kdcgv6hl1hmgarl73j4g9gi4h7sj865655mdja0ns9n1pdb";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/operate-on-number";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/aec74eff8ca3d5e381d7a6d61c73f1a0716f1c60/recipes/operate-on-number";
sha256 = "1rw3fqbzfizgcbz3yaf99rr2546msna4z7dyfa8dbi8h7yzl4fhk";
name = "operate-on-number";
};
@@ -19844,7 +20223,7 @@
sha256 = "1xckin2d6s40kgr2293g72ipc57f8gp6y63303kmqcv3qm8q13ca";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/org-ac";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/adf598f8dae69ff286ae78d353a2a5d4363b4480/recipes/org-ac";
sha256 = "059jr3v3558cgw626zbqfwmwwv5f4637ai26h7b6psqh0x9sf3mr";
name = "org-ac";
};
@@ -19865,7 +20244,7 @@
sha256 = "0gkxxzdk8bd1yi5x9217pkq9d01ccq8znxc7h8qcw0p1336rigfc";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/org-agenda-property";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/1e6aed365c42987d64d0cd9a8a6178339b1b39e8/recipes/org-agenda-property";
sha256 = "0zsjzjw52asl609q7a2s4jcsm478p4cxzhnd3azyr9ypxydjf6qk";
name = "org-agenda-property";
};
@@ -19886,7 +20265,7 @@
sha256 = "0j6fqgzvbmvvdh0dgwsxq004wxys2zwnq9wa3idm087ynp2a2ani";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/org-autolist";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/ca8e2cdb282674b20881bf6b4fc49af42a5d09a7/recipes/org-autolist";
sha256 = "1jvspxhxlvd7h1srk9dbk1v5dykmf8jsjaqicpll7ial6i0qgikj";
name = "org-autolist";
};
@@ -19907,7 +20286,7 @@
sha256 = "0j765rb2yfwnc0ri53jb8d6lxj6knpmy495bk3sd63492kdrxf93";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/org-bookmark-heading";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/eaadbd149399c6e3c48ac5cbeedeb29a3f5791f1/recipes/org-bookmark-heading";
sha256 = "1q92rg9d945ypcpb7kig2r0cr7nb7avsylaa7nxjib25advx80n9";
name = "org-bookmark-heading";
};
@@ -19928,7 +20307,7 @@
sha256 = "10nr4sjffnqbllv6gmak6pviyynrb7pi5nvrq331h5alm3xcpq0w";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/org-bullets";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/3ab2169c45aae7fb3373bf5df087d9b626167ce8/recipes/org-bullets";
sha256 = "1kxhlabaqi1g6pz215afp65d9cp324s8mvabjh7q1h7ari32an75";
name = "org-bullets";
};
@@ -19949,7 +20328,7 @@
sha256 = "0cxccxz17pj67wgmyxr74n381mknqgqkyav3jkxs4ghg59g5nygl";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/org-dp";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/7f337375082da316ed07b8ce9c775b484b8cdbf6/recipes/org-dp";
sha256 = "0fnrzpgw8l0g862j20yy4mw1wfcm2i04r6dxi4yd7yay8bw2i4yq";
name = "org-dp";
};
@@ -19970,7 +20349,7 @@
sha256 = "18x8c6jcqkfam79z4hskr8h1lvzvd5rlfgymmj1ps6p6hd3j4ihl";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/org-elisp-help";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/b0a9bf5046a4c3be8a83004d506bd258a6f7ff15/recipes/org-elisp-help";
sha256 = "0a4wvz52hkcw5nrml3h1yp8w97vg5jw22wnpfbb827zh7iwb259h";
name = "org-elisp-help";
};
@@ -19991,7 +20370,7 @@
sha256 = "1pxfcyf447h18220izi8qlnwdr8rlwn5kds8gr5i1v90s6hpa498";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/org-gcal";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/1c2d5bd8d8f2616dae19b9232d9442fe423d6e5e/recipes/org-gcal";
sha256 = "1mp6cm0rhd4r9pfvsjjp86sdqxjbbg7gk41zx0zf0s772smddy3q";
name = "org-gcal";
};
@@ -20012,7 +20391,7 @@
sha256 = "0b57ik05iax2h3nrj96kysbk4hxmxlaabd0n6lv1xsayrlli3sj1";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/org-gnome";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/4f7ebd2d2312954d098fe4afd07c3d02b4df475d/recipes/org-gnome";
sha256 = "0c37gfs6xs0jbvg6ypd4z5ip1khm26wr5lxgmv1dzcc383ynzg0v";
name = "org-gnome";
};
@@ -20033,7 +20412,7 @@
sha256 = "1iyqv34b7q2k73srshcnpvfzcadq47w4rzkqp6m1d3ajk8x2vypq";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/org-if";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/09df84b60c46678ad40d8dabc08fcfe518f5ad79/recipes/org-if";
sha256 = "0h0jdyawz2j4mp33w85z8q77l37qid8palvw5n4z379qa0wr5h96";
name = "org-if";
};
@@ -20046,15 +20425,15 @@
org-journal = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "org-journal";
- version = "1.11.0";
+ version = "1.11.1";
src = fetchFromGitHub {
owner = "bastibe";
repo = "org-journal";
- rev = "3db5d3532b3d5df10fda6e11097e227d5dc733d3";
- sha256 = "1rv1d49gc544cmzknd272x4v74kqbvccg0mf16b1jkn5h8f4jhkm";
+ rev = "51aec969cc0dc8e0c81220f020d643861d2f5c9b";
+ sha256 = "0j3z2imv5w6cndnxdyy0pf9la6qxbgwdwr7vr8mr47frqpjb4i63";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/org-journal";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/7fabdb05de9b8ec18a3a566f99688b50443b6b44/recipes/org-journal";
sha256 = "1npzqxn1ssigq7k1nrxz3xymxaazby0ddgxq6lgw2a1zjmjm4h2b";
name = "org-journal";
};
@@ -20075,7 +20454,7 @@
sha256 = "1797pd264zn19zk93nifyw6pwk2a7wrpfir373qclk601yv2g5h8";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/org-link-travis";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/52c7f9539630e5ac7748fe36fd27c3486649ab74/recipes/org-link-travis";
sha256 = "0hj4x7cw7a3ry8xislkz9bnavy77z4cpmnvns02yi3gnib53mlfs";
name = "org-link-travis";
};
@@ -20096,7 +20475,7 @@
sha256 = "1bggz782ci0z6aw76v51ykbmfzh5g6cxh43w798as1152sn7im3p";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/org-linkany";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/df82cf95e34775b22da0a8bb29750f603c58f259/recipes/org-linkany";
sha256 = "0arjj3c23yqm1ljvbnl7v9cqvd9lbz4381g8f3jyqbafs25bdc3c";
name = "org-linkany";
};
@@ -20113,10 +20492,10 @@
src = fetchgit {
url = "git://orgmode.org/org-mode.git";
rev = "592dc2ee7e4c80b9b61efb77117c8dc22d6cefd1";
- sha256 = "055ahg27z4y0r4nhgqdik10x91dpmfmrv1mbr7hc7xzk9cy4rf2w";
+ sha256 = "0rvsn085r1sgvv0gwvjlfgn7371bjd254hdzamc97m122pqr7cxr";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/org-mac-iCal";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/ee69e5e7b1617a29919d5fcece92414212fdf963/recipes/org-mac-iCal";
sha256 = "1ilzvmw1x5incagp1vf8d9v9mz0krlv7bpv428gg3gpqzpm6kksw";
name = "org-mac-iCal";
};
@@ -20137,7 +20516,7 @@
sha256 = "0yxfhzygiki8sha1dddac4g72r51yi4jnga2scmk51f9jgwqbihp";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/org-multiple-keymap";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/0a22beed723d149282e70e3411b79e8ce9f5ab2b/recipes/org-multiple-keymap";
sha256 = "16iv5575634asvn1b2k535ml8g4lqgy8z5w6ykma5f9phq5idb9f";
name = "org-multiple-keymap";
};
@@ -20158,7 +20537,7 @@
sha256 = "15fy6xpz6mk4j3nkrhiqal2dp77rhxmk8a7xiw037xr1jgq9sd9a";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/org-outlook";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/804a4b6802d2cf53e5415d956f0b4772853f4c69/recipes/org-outlook";
sha256 = "0cn8h6yy67jr5h1yxsfqmr8q7ii4f99pgghfp821m01pj55qyjx9";
name = "org-outlook";
};
@@ -20179,7 +20558,7 @@
sha256 = "0zc20m63a1iz9aziid5jsvcbl86k9dg9js4k3almchh55az4a0i3";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/org-page";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/872f163d4da58760009001472e2240f00d4d2d89/recipes/org-page";
sha256 = "1326m3w7vz22zk7rx40z28fddsccy5fl1qhbb7clci8l69blcc2v";
name = "org-page";
};
@@ -20200,7 +20579,7 @@
sha256 = "14lshgyrlzjcrqdfsn17llm70ijbs86cv9mccy87vlr01rbsz6lj";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/org-pdfview";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/aadf708e55ddfe13d93d124681a5e6f97a690d79/recipes/org-pdfview";
sha256 = "1z4gb5lw7ngphixw06b5484kwlxbc098w2xshzml5sywr16a4iab";
name = "org-pdfview";
};
@@ -20221,7 +20600,7 @@
sha256 = "1fjdza723615bhdm5x6gbd03vi7ywzpbjn8p59saimczqngfdpmw";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/org-pomodoro";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/e54e77c5619b56e9b488b3fe8761188b6b3b4198/recipes/org-pomodoro";
sha256 = "1vdi07hrhniyhhvg0hcr5mlixy6bjynvwm89z2lvfyvnnxpx0r27";
name = "org-pomodoro";
};
@@ -20231,22 +20610,22 @@
license = lib.licenses.free;
};
}) {};
- org-projectile = callPackage ({ dash, fetchFromGitHub, fetchurl, lib, melpaBuild, projectile }:
+ org-projectile = callPackage ({ dash, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, projectile }:
melpaBuild {
pname = "org-projectile";
- version = "0.2.0";
+ version = "0.2.3";
src = fetchFromGitHub {
owner = "IvanMalison";
repo = "org-projectile";
- rev = "c2141ac997f4af49257595bab88adb9dd7b9b700";
- sha256 = "16aq5p65q5a0an14q9xzsnkaa5bzkrwhm9cv5ljajjfcjsjcvmb6";
+ rev = "9e7453874e472ade60b95af44167d5a6d4e24317";
+ sha256 = "0nccb2w3zjgx2w2x207w3100c7c4d1ii22j1qaz3v623d7azn0qq";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/org-projectile";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/3dde8c06c968d4375926d269150a16b31c3a840e/recipes/org-projectile";
sha256 = "078s77wms1n1b29mrn6x25sksfjad0yns51gmahzd7hlgp5d56dm";
name = "org-projectile";
};
- packageRequires = [ dash projectile ];
+ packageRequires = [ dash emacs projectile ];
meta = {
homepage = "https://melpa.org/#/org-projectile";
license = lib.licenses.free;
@@ -20263,7 +20642,7 @@
sha256 = "1cxjzj955rvp0ijbp7ifpmkxdhimz8hqjw5c9gv6zwjqb5iih9ry";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/org-protocol-jekyll";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/6d1ee7c75da91fcf303ea89d148a05ac1e58e23e/recipes/org-protocol-jekyll";
sha256 = "18wg489n2d1sx9jk00ki6p2rxkqz67kqwnmy2kb1ga1rmb6x9wfs";
name = "org-protocol-jekyll";
};
@@ -20284,7 +20663,7 @@
sha256 = "1bi09hd5m994rkqcx0a045h20419b6n4vvwiiggzsi0723dd9fb9";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/org-random-todo";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/80fad6244ea3e5bdf7f448c9f62374fae45bae78/recipes/org-random-todo";
sha256 = "0yflppdbkfn2phd21zkjdlidzasfm846mzniay83v3akz0qx31lr";
name = "org-random-todo";
};
@@ -20305,7 +20684,7 @@
sha256 = "0hhgfw0sqvl9jmmslwxn6v3dii99v09yz2h0ia5np9lzyxsc207a";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/org-readme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/317318e6071b174e0ec6302ea4f526976d837db4/recipes/org-readme";
sha256 = "1qqbsgspd006gy0kc614w7bg6na0ygmflvqkmw47899pbgj81hxh";
name = "org-readme";
};
@@ -20315,22 +20694,32 @@
license = lib.licenses.free;
};
}) {};
- org-ref = callPackage ({ dash, emacs, f, fetchFromGitHub, fetchurl, helm, helm-bibtex, hydra, key-chord, lib, melpaBuild, s }:
+ org-ref = callPackage ({ dash, emacs, f, fetchFromGitHub, fetchurl, helm, helm-bibtex, hydra, ivy, key-chord, lib, melpaBuild, s }:
melpaBuild {
pname = "org-ref";
- version = "0.8.1";
+ version = "0.9.0";
src = fetchFromGitHub {
owner = "jkitchin";
repo = "org-ref";
- rev = "af0dac5e863746a34360d8c70f83103778409c92";
- sha256 = "1iwvff3bi80xyds6xy202kfx42hv162cpcl78r88sl8j25q3jxhk";
+ rev = "b6c6ae209d31caf71b158d6357780d74f6d08f19";
+ sha256 = "18zzzh5aifbdbd2lw69fn7scvhalgxhzfz3f3cscjjkvzhkkya8j";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/org-ref";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/550e4dcef2f74fbd96474561c1cb6c4fd80091fe/recipes/org-ref";
sha256 = "087isxf3z8cgmmniaxr3lpq9jg3sriw88dwp4f0ky286hlvgzw08";
name = "org-ref";
};
- packageRequires = [ dash emacs f helm helm-bibtex hydra key-chord s ];
+ packageRequires = [
+ dash
+ emacs
+ f
+ helm
+ helm-bibtex
+ hydra
+ ivy
+ key-chord
+ s
+ ];
meta = {
homepage = "https://melpa.org/#/org-ref";
license = lib.licenses.free;
@@ -20347,7 +20736,7 @@
sha256 = "03c88jzwvl95dl39703mknkvnk3cmw4gss5c1y2k9py2rgh6bpr9";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/org-repo-todo";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/d17b602004628e17dae0f46f2b33be0afb05f729/recipes/org-repo-todo";
sha256 = "0l5ns1hs3i4dhrpmvzl34zc9zysgjkfa7j8apbda59n9jdvml5v1";
name = "org-repo-todo";
};
@@ -20368,7 +20757,7 @@
sha256 = "0zx9gpvm5gy9k45lbhaks9s935id727lszsh40gmpdp5zxf3rjk1";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/org-sync";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/923ddbaf1a158caac5e666a396a8dc66969d204a/recipes/org-sync";
sha256 = "0n8fz2d1vg9r8dszgasbnb6pgaxr2i8mqrp953prf1nhmfpjpxad";
name = "org-sync";
};
@@ -20389,7 +20778,7 @@
sha256 = "1qx3kd02sxs9k7adlvdlbmyhkc5kr7ni5lw4gxjw3nphnc536bkb";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/org-table-comment";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/2c1f08c41969bc8a7104fb914564b4f6cab667e2/recipes/org-table-comment";
sha256 = "1d40vl8aa1x27z4gwnkzxgrqp7vd3ln2pc445ijjxp1wr8bjxvdz";
name = "org-table-comment";
};
@@ -20410,7 +20799,7 @@
sha256 = "1qz1qhd7v6ynmvz7j1xscz85z6zwy9dcarwhbz020l4bk4g9zf94";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/org-tfl";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/d9e97f2fee577c7e3fb42e4ca9d4f422c8907faf/recipes/org-tfl";
sha256 = "1rqmmw0222vbxfn5wxq9ni2j813x92lpv99jjszqjvgnf2rkhjhf";
name = "org-tfl";
};
@@ -20431,7 +20820,7 @@
sha256 = "12fksqi9flf84h1lbmbcjnqxa7dairp50wvlwfhbp1hbb8l9z63a";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/org-themis";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/60e0efe4f201ed96e90c437e3e7205e0344d4676/recipes/org-themis";
sha256 = "08rajz5y7h88fh94s2ad0f66va4vi31k9hwdv8p212bs276rp7ln";
name = "org-themis";
};
@@ -20452,7 +20841,7 @@
sha256 = "09iw2jffb2qrx5r07zd1j8sk5wafamjkc2khqyfwc5kx6xyp1f46";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/org-time-budgets";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/776b58b433ab7dde5870300d288c3e6734fc32c0/recipes/org-time-budgets";
sha256 = "0r8km586n6xdnjha7xnzlh03nw1dp066hydaz8kxfmhvygl9cpah";
name = "org-time-budgets";
};
@@ -20473,7 +20862,7 @@
sha256 = "0qqa62fsmra6v4061kpki8wbhfcwkgnb2gzxwvnaqlcmhivksg6v";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/org-toodledo";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/4956fb6c5f1076a02f07d0f953e846fee39bfaa6/recipes/org-toodledo";
sha256 = "0c7qr0jsc4iyrwkc22xp9nmk6984v7q1k0rvpd62m07lb5gvbiq3";
name = "org-toodledo";
};
@@ -20494,7 +20883,7 @@
sha256 = "1yh4p3i0ajfnsvh057h8dpf4rqvvblmfgzj6vyn9dmcl5is1ir2q";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/org-tracktable";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/57263d996e321f842d0741898370390146606c63/recipes/org-tracktable";
sha256 = "0mngf9q2ffxq32cgng0xl30661mj15wmr9y4hr3xddj626kxrp00";
name = "org-tracktable";
};
@@ -20515,7 +20904,7 @@
sha256 = "1h15fr16kgbyrxambmk4hsmha6hx4c4yqkccb82g3wlvzmnqj5x3";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/org-transform-tree-table";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/afca0e652a993848610606866609edbf2f5f76ae/recipes/org-transform-tree-table";
sha256 = "0n68cw769nk90ms6w1w6cc1nxjwn1navkz56mf11bsiqvsk3km7r";
name = "org-transform-tree-table";
};
@@ -20536,7 +20925,7 @@
sha256 = "0aacxxwhwjzby0f9r4q0lra5lqcrw5snnm1yc63jrs6c0ifakk45";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/org-tree-slide";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/6160c259bc4bbcf3b98c220222430f798ee6463f/recipes/org-tree-slide";
sha256 = "0v857zplv0wdbg4li667v2p5pn5zcf9fgbqcwa75x8babilkl6jn";
name = "org-tree-slide";
};
@@ -20549,15 +20938,15 @@
org-trello = callPackage ({ dash, dash-functional, deferred, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, request-deferred, s }:
melpaBuild {
pname = "org-trello";
- version = "0.7.8";
+ version = "0.7.9";
src = fetchFromGitHub {
owner = "org-trello";
repo = "org-trello";
- rev = "321a74585bceafdd82f96433e014f13b4f3fa674";
- sha256 = "061nf6gwrzi36q3m3b1hn4bj33a6q4yic3fxdxxwvwrzi42bl74a";
+ rev = "dfb98150207b13c7771d0c0b8209e0503cd99cd6";
+ sha256 = "1d2bi29m8kxhp46slg904frgmlc6ajqagxjrhxlbdmlxrp18s44g";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/org-trello";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/188ed8dc1ce2704838f7a2883c41243598150a46/recipes/org-trello";
sha256 = "14lq8nn1x6qb3jx518zaaz5582m4npd593w056igqhahkfm0qp8i";
name = "org-trello";
};
@@ -20585,7 +20974,7 @@
sha256 = "1qf4pqsg12y1qx7di0y5dp0f4slyp69h2q6y21hldzknhwxx4yy4";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/org-vcard";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/df860814a09c376c9a6a2c5e7f528bbae29810b2/recipes/org-vcard";
sha256 = "0l6azshvzl1wws582njqr3qx4h73gwrdqwa3jcic1qbs9hg2l4yl";
name = "org-vcard";
};
@@ -20606,7 +20995,7 @@
sha256 = "0av1477jn3s4s5kymd7sbb0av437vb5mnfc6rpfgzwji7b8mfr7l";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/org2blog";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/8b57b6d755b3855ccfe0a90eada939fb7a852b40/recipes/org2blog";
sha256 = "0ancvn4ji4552k4nfd2ijclsd027am93ngg241ll8f6h6k0wpmzq";
name = "org2blog";
};
@@ -20627,7 +21016,7 @@
sha256 = "089nqbda5mg1ippqnsl5wcx9n1gpnaqhl6kz54n47kivb400bidh";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/org2jekyll";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/48a1e5bd5e338bd3593f004f95b6fbb12595bfb7/recipes/org2jekyll";
sha256 = "1j9d6xf5nsakifxwd4zmjc29lbj46ffn3z109k2y2yhz7q3r9hzv";
name = "org2jekyll";
};
@@ -20648,7 +21037,7 @@
sha256 = "02mxp17p7bj4xamg0m6zk832hmpqcgzc7bjbjcnvbvrawhc255hy";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/orgbox";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/b1948eca5a18f35b61b9a0baf532753fd105ba3a/recipes/orgbox";
sha256 = "12wfqlpjh9nr7zgqs4h8kmfsk825n68qcbn8z2fw2mpshg3nj7l8";
name = "orgbox";
};
@@ -20669,7 +21058,7 @@
sha256 = "1wxxdx3c5qacsii4kysk438cjr1hnmpir78kp6xgk9xw5g9snlnj";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/orgit";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/73b5f7c44c90540e4cbdc003d9881f0ac22cc7bc/recipes/orgit";
sha256 = "0askccb3h98v8gmylwxaph3gbyv5b1sp4slws76aqz1kq9x0jy7w";
name = "orgit";
};
@@ -20682,15 +21071,15 @@
orglink = callPackage ({ dash, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, org }:
melpaBuild {
pname = "orglink";
- version = "1.0.0";
+ version = "1.1.0";
src = fetchFromGitHub {
owner = "tarsius";
repo = "orglink";
- rev = "3a0f6b12a69cc9e09285d317277b0dc6e1623f8a";
- sha256 = "07ggg2mvvmv40h3gqlcxwrxsyrpvn2pffdjrzbh7yprm5mxynbjc";
+ rev = "4e3e6d920a74fd32a57d5722f81293428e9d8a46";
+ sha256 = "0yjnnrrcvbsq41dpw8cz8gv6q3jd626y1k4fgzsimyciz9l23w11";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/orglink";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/be9b8e97cda6af91d54d402887f225e3a0caf055/recipes/orglink";
sha256 = "0ldrvvqs3hlazj0dch162gsbnbxcg6fgrxid8p7w9gj19vbcl52b";
name = "orglink";
};
@@ -20711,7 +21100,7 @@
sha256 = "0zfiq9d5jqzpmscngb1s2jgfiqmbi4dyw0fqa59v2g84gxjg793x";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/orgtbl-show-header";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/9c5ea906b1d642405ca532d89dbb32cf79f53582/recipes/orgtbl-show-header";
sha256 = "1xgqjg3lmcczdblxaka47cc1ad8p8jhyb2nqwq0qnbqw46fqjp3k";
name = "orgtbl-show-header";
};
@@ -20732,7 +21121,7 @@
sha256 = "0g1xhh88a65vcq6rlh7ii16pra4pv519ajcws0h93ldbbjiy7p0m";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/osx-browse";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/081aa3e1d50c2c9e5a9b9ce0716258a93279f605/recipes/osx-browse";
sha256 = "06rfzq2hxhzg6jh2zs28r7ffxwlq40nz954j13ly8403c7rmbrfm";
name = "osx-browse";
};
@@ -20753,7 +21142,7 @@
sha256 = "1ykn48src7qhx9cmpjkaqsz7h36p75kkq1h9wlcpv5fhaky2d4n4";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/osx-clipboard";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/71b85cd2b2122a2742f919d10bfcb054b681e61e/recipes/osx-clipboard";
sha256 = "0gjgr451v6rlyarz96v6h8kfbvkk7npvhgvkgwdi0bjighrhlv4f";
name = "osx-clipboard";
};
@@ -20763,22 +21152,22 @@
license = lib.licenses.free;
};
}) {};
- osx-dictionary = callPackage ({ chinese-word-at-point, cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }:
+ osx-dictionary = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "osx-dictionary";
- version = "0.2.1";
+ version = "0.2.2";
src = fetchFromGitHub {
owner = "xuchunyang";
repo = "osx-dictionary.el";
- rev = "b909e38723caa37157ad6be90ac107c1c7102e07";
- sha256 = "1vywqzw8hydi944q4ghgxbbvvmwfpa9wj5nmrnixfcw8h4mfcxvv";
+ rev = "d80d2f1f2637601330837959d9d2f7e0be95df85";
+ sha256 = "1s2nahkqmij148z3ijz1l6a43m5pvq9gjza9z6x24936qny05r2w";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/osx-dictionary";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/ae4467ad646d663f0266f39a76f9764004903424/recipes/osx-dictionary";
sha256 = "13033fxc5vjd1f7mm6znmprcp3mwxbvblb2d25shr8d4imqqhv82";
name = "osx-dictionary";
};
- packageRequires = [ chinese-word-at-point cl-lib ];
+ packageRequires = [ cl-lib ];
meta = {
homepage = "https://melpa.org/#/osx-dictionary";
license = lib.licenses.free;
@@ -20795,7 +21184,7 @@
sha256 = "1csnxpsfnv9lv07kgvc60qx5c33sshmnz60p3qjz7ym7rnjy9b5x";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/osx-location";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/8673dafb02a8d70c278bfd2c063f40992defe3a3/recipes/osx-location";
sha256 = "1p12mmrw70p3b04zlprkdxdfnb7m3vkm6gci3fwhr5zyfvwxvn0c";
name = "osx-location";
};
@@ -20816,7 +21205,7 @@
sha256 = "0830kkmvc3ss7ygqfwz3j75s7mhxfxyadaksrp0v2cc4y6wn6nfv";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/osx-plist";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/f3686dc818bd12be247bad915c01736a95690041/recipes/osx-plist";
sha256 = "0zaqmhf5nm6jflwgxnknhi8zn97vhsia2xv8jm677l0h23pk2va8";
name = "osx-plist";
};
@@ -20837,7 +21226,7 @@
sha256 = "1n44wdffkw14si9kb7bpkp6d9cjwjrvksfh22y9549dhs1vav6qq";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/osx-trash";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/1f4c86e5b86df6c5c2c484f041fa3e434bbfbbb1/recipes/osx-trash";
sha256 = "1f6pi53mhp2pvrfjm8544lqqj36gzpzxq245lzvv91lvqkxr9ysj";
name = "osx-trash";
};
@@ -20858,7 +21247,7 @@
sha256 = "1v9kx5xr7xcr6i664h2g6j8824yjsjdn5pvgmawvxrrplbjmiqnp";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/outorg";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/d57762fe51a524731e228c80b4b2d25e827e5858/recipes/outorg";
sha256 = "04swss84p33a9baa4swqc1a9lfp6wziqrwa7vcyi3y0yzllx36cx";
name = "outorg";
};
@@ -20879,7 +21268,7 @@
sha256 = "1v04iyx57w8scw3iqrivii7q0sh8sa7xacswdhd18mw9kvjrbj98";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/outshine";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/6dc02a576abb8e115f674a9d896f8bc932b7571b/recipes/outshine";
sha256 = "1ajddzcrnvfgx3xa5wm0bcll9dax52syg1p521mv0ffkld63jyfl";
name = "outshine";
};
@@ -20900,7 +21289,7 @@
sha256 = "0qxk2rf84j86syxi8xknsq252irwg7sz396v3bb4wqz4prpj0kzc";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ov";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/18d8a10ba3018cb61924af3a1682b82f543f2d98/recipes/ov";
sha256 = "0d71mpv74cfxcnwixbrl90nr22cw4kv5sdgpny5wycvh6cgmd6qb";
name = "ov";
};
@@ -20921,7 +21310,7 @@
sha256 = "0jz8p6bwpfncxwi6ssmi6ngx8sjjica565i6ln0gsr5i11zfb7nx";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/overseer";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/82e6b86f20a2d2d687b13091da31150c467bf271/recipes/overseer";
sha256 = "04wfwcal051jrnmm5dga6vl4c9j10pm416586yxb8smi6fxws2jg";
name = "overseer";
};
@@ -20942,7 +21331,7 @@
sha256 = "0f2psx4lq98l3q3fnibsfqxp2hvvwk7b30zjvjlry3bffg3l7pfk";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/owdriver";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/f3f9c1bb19345c6027a945e7f265632da1a391cb/recipes/owdriver";
sha256 = "0j8z7ynan0zj581x50gsi9lljkbi6bwmzpfyha3i6q8ch5qkdxfd";
name = "owdriver";
};
@@ -20963,7 +21352,7 @@
sha256 = "047fcvpvwzaqisw4q3p6hxgjyqsi2n9nms1qx9w4znvxrnjq8jz3";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ox-ioslide";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/b960abca4d642c47e640300876eefee1851e6b86/recipes/ox-ioslide";
sha256 = "0z0qnvpw64wxbgz8203rphswlh9hd2i11pz2mlay8l3bzz4gx4vc";
name = "ox-ioslide";
};
@@ -20984,7 +21373,7 @@
sha256 = "0h49pfl97vl796sm7r62rpv3slj0z5krm4zrqkgz0q6zlyrjay29";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ox-pandoc";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/92f89a923d877c9dea9349a5c594209cb716bf18/recipes/ox-pandoc";
sha256 = "0wy6yvwd4vyq6xalkrshnfjjxlh1p24y52z49894nz5fl63b74xc";
name = "ox-pandoc";
};
@@ -21005,7 +21394,7 @@
sha256 = "08dw3h1417cr6ddd8gl8zcd11pxqpmkd67bknzhjpj7bbqznfqwa";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ox-twbs";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/3263133ba6dde790a364bad7c96144912971ba2d/recipes/ox-twbs";
sha256 = "15csgnph5wh2dvcc2dnvrlm7whh428rq8smqji1509ib7aw9y5mx";
name = "ox-twbs";
};
@@ -21026,7 +21415,7 @@
sha256 = "073qpa223ja673p63mhvy4l6yyv3k7z05ifwvn7bmq4b5fq42hw6";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/pabbrev";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/c032b0d126e0196b4526ee04f5103582610681ea/recipes/pabbrev";
sha256 = "1mbfa40pbzbi00sp155zm43sj6nw221mcayc2rk3ppin9ps95hx3";
name = "pabbrev";
};
@@ -21047,7 +21436,7 @@
sha256 = "1xv0ra130qg0ksgqi4npspnv0ckq77k7f5kcibavj030h578kj97";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/package+";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/49cfbbc4535aa7e175aa819d67b8aa52a6f94384/recipes/package+";
sha256 = "1mbsxr4llz8ny7n7w3lykld9yvbaywlfqnvr9l0aiv9rvmdv03bn";
name = "package-plus";
};
@@ -21068,7 +21457,7 @@
sha256 = "1pdv6d6bm5jmpgjqf9ycvzasxz1205zdi0zjrmkr33c03azwz7rd";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/package-safe-delete";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/61b961211276bd95655b6a0967eda5037a3d240b/recipes/package-safe-delete";
sha256 = "12ss5yjhnyxsif4vlbgxamn5jfa0wxkkphffxnv6drhvmpq226jw";
name = "package-safe-delete";
};
@@ -21078,22 +21467,22 @@
license = lib.licenses.free;
};
}) {};
- package-utils = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
+ package-utils = callPackage ({ async, epl, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "package-utils";
- version = "0.4.0";
+ version = "0.4.1";
src = fetchFromGitHub {
owner = "Silex";
repo = "package-utils";
- rev = "8aad83652944e7414a52c82e3c34f8ef78142118";
- sha256 = "0fs0a274c7sxldjj0m8wfx9vx7fkq41wngsvk8drzc38qa965vs0";
+ rev = "f655efc89ea7675b6cc9990d46a9f48ca6d384b7";
+ sha256 = "1q6hpfaj8hfybxmmh1v871arlv8dn77li9vgckcal4l6xf83nvpi";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/package-utils";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/a1bb884a0299408daa716eba42cb39f79622766c/recipes/package-utils";
sha256 = "02hgh7wg68ysfhw5hckrpshzv4vm1vnm395d34x6vpgl4ccx7v9r";
name = "package-utils";
};
- packageRequires = [];
+ packageRequires = [ async epl ];
meta = {
homepage = "https://melpa.org/#/package-utils";
license = lib.licenses.free;
@@ -21110,7 +21499,7 @@
sha256 = "1kjcb6z08bj5ysxrykgz3x6bz2122yycpjhbv875ppc5ihls88xl";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/packed";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/1ee9e95c00f791010f77720068a7f3cd76133a1c/recipes/packed";
sha256 = "0sw7d2l17bq471i4isrf2xf0z85nqqiciw25whw0c0chdzwzai6z";
name = "packed";
};
@@ -21123,15 +21512,15 @@
page-break-lines = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "page-break-lines";
- version = "0.10";
+ version = "0.11";
src = fetchFromGitHub {
owner = "purcell";
repo = "page-break-lines";
- rev = "36d3f93a23b767e7558b9c90f3631b03ce9fbdce";
- sha256 = "1acz3w2zdcds0h6p2k9h3lmjsk519asqrxjw7f3pyrcq7x2qbhc4";
+ rev = "67b5928a7f14568baf2716b5741e13659a86b9ea";
+ sha256 = "1wp974716ih2cz9kdmdz7xwjy1qnnfzdzlfr9kchknagw8d9nn12";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/page-break-lines";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/22b6035987994c11d5e2564862efb1e56848c3b6/recipes/page-break-lines";
sha256 = "0q1166z190dxznzgf2f29klj2jkaqlic483p4h3bylihkqp93ij7";
name = "page-break-lines";
};
@@ -21152,7 +21541,7 @@
sha256 = "03mlg6dmpjw8fq2s3c4gpqj20kjhzldz3m51bf6s0mxq9bclx2xw";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/pallet";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/bf977287e9bd668efbd972c9937906384ee832c6/recipes/pallet";
sha256 = "0q50cdwnn2w1n5h4bappncjjyi5yaixxannwgy23fngdrz1mxwd7";
name = "pallet";
};
@@ -21162,6 +21551,27 @@
license = lib.licenses.free;
};
}) {};
+ pandoc = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
+ melpaBuild {
+ pname = "pandoc";
+ version = "0.0.1";
+ src = fetchFromGitHub {
+ owner = "zonuexe";
+ repo = "pandoc.el";
+ rev = "0f59533bbd8494fea3172551efb6ec49f61ba285";
+ sha256 = "0xqd64k8liaywsf65apj5xmf7ip6sikjmpc4740nld8iywhq8gf4";
+ };
+ recipeFile = fetchurl {
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/d6c21ff09d67fad2658e0de08bc2edb7588c504a/recipes/pandoc";
+ sha256 = "0x81anxam7agr2v2zqgc331zs5s5zxcw54kzpanndda23n51h5cc";
+ name = "pandoc";
+ };
+ packageRequires = [ emacs ];
+ meta = {
+ homepage = "https://melpa.org/#/pandoc";
+ license = lib.licenses.free;
+ };
+ }) {};
pandoc-mode = callPackage ({ dash, fetchFromGitHub, fetchurl, hydra, lib, melpaBuild }:
melpaBuild {
pname = "pandoc-mode";
@@ -21173,7 +21583,7 @@
sha256 = "17ibs2szjvy4ar4gidlyg6w20926fr1z59m851akghiwf4aqly7z";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/pandoc-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/4e39cd8e8b4f61c04fa967def6a653bb22f45f5b/recipes/pandoc-mode";
sha256 = "0qvc6cf87h1jqf590kd68jfg25snxaxayfds634wj4z6gp70l781";
name = "pandoc-mode";
};
@@ -21194,7 +21604,7 @@
sha256 = "0gmdzagyg0p7q1gyj2a3aqp2g4asljpib3n67nikr0v99c2mki5y";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/pangu-spacing";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/c0b00eda1d20ff2cbffe3ac606e5fd60d915a5d6/recipes/pangu-spacing";
sha256 = "082qh26vlk7kifz1800lyai17yvngwjygrfrsh1dsd8dxhk6l9j8";
name = "pangu-spacing";
};
@@ -21215,7 +21625,7 @@
sha256 = "1xh614czldjvfl66vhkyaai5k4qsg1l3mz6wd5b1w6kd45qrc54i";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/paper-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/a35a0888a7a27174b5de58d99b01554769041f46/recipes/paper-theme";
sha256 = "04diqm2c9fm29zyms3hplkzb4kb7b2kyrxdsy0jxyjj5kabypd50";
name = "paper-theme";
};
@@ -21236,7 +21646,7 @@
sha256 = "1vq3xjllgvzwp18mv2y1qydbbl6j1nk58vw7sm99zsf3wdpls465";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/paradox";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/1e6aed365c42987d64d0cd9a8a6178339b1b39e8/recipes/paradox";
sha256 = "1xq14nfvprsq18464qr4mhphq7cl1f570lji5n8z6j9vpfm9a4p2";
name = "paradox";
};
@@ -21255,7 +21665,7 @@
sha256 = "13wzz5fahbz5svc4ql3ajzzpd1fv0ynwpa5widklbcp5yqncv1vm";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/paredit";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/2d83b5d24db3527e48e3de40c320255bc2dbfccb/recipes/paredit";
sha256 = "1rp859y4qyqdfvp261l8mmbd62p1pw0dypm1mng6838b6q6ycakr";
name = "paredit";
};
@@ -21276,7 +21686,7 @@
sha256 = "0jbjwjl92pf0kih3p2x20ms2kpyzzam8fir661nimpmk802ahgkj";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/paredit-everywhere";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/593890222d074c6a308eb1b809077c6861e1af30/recipes/paredit-everywhere";
sha256 = "0gbkwk8mrbjr2l8pz3q4y6j8q4m12zmzl31c88ngs1k5d86wav36";
name = "paredit-everywhere";
};
@@ -21297,7 +21707,7 @@
sha256 = "0f128gqn170s6hl62n44i9asais75ns1mpvb4l8vzy1sc0v16c0k";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/paren-face";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/d398398d1d5838dc4985a06515ee668f0f566aab/recipes/paren-face";
sha256 = "0dmzk66m3rd8x0rb925pyrfpc2qsvayks4kmhpb2ccdrx68pg8gf";
name = "paren-face";
};
@@ -21318,7 +21728,7 @@
sha256 = "0i5bc7lyyrx6swqlrp9l5x72yzwi53qn6ldrfs99gh08b3yvsnni";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/parent-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/9736d8f6c3065c46b8c4e0056e9d592d3ec973e9/recipes/parent-mode";
sha256 = "1ndn6m6aasmk9yrml9xqj8141100nw7qi1bhnlsss3v8b6njwwig";
name = "parent-mode";
};
@@ -21339,7 +21749,7 @@
sha256 = "0n91whyjnrdhb9bqfif01ygmwv5biwpz2pvjv5w5y1d4g0k1x9ml";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/parsebib";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/c39633957475dcd6a033760ba20a957716cce59c/recipes/parsebib";
sha256 = "07br2x68scsxykdk2ajc4mfqhdb7vjkcfgz3vnpy91sirxzgfjdd";
name = "parsebib";
};
@@ -21360,7 +21770,7 @@
sha256 = "18m0973l670cjbzpa1vfv06gymhsa2f1pjcp329s0npb735x5whj";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/pass";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/428c2d53db69bed8938ec3486dfcf7fc048cd4e8/recipes/pass";
sha256 = "1vvyvnqf6k7wm0p45scwi6ny86slkrcbr36lnxdlkf96cqyrqzfr";
name = "pass";
};
@@ -21381,7 +21791,7 @@
sha256 = "1g0mvg9i8f2qccb4b0m4d74zkjx9gjfv47x57by6cdaf9yywqryi";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/passthword";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/399bb6d6e36ca4c1e54566e66d7065fe1011f99c/recipes/passthword";
sha256 = "076jayziipjx260yk3p37pf5k0qsagalidah3y6hiflrlq4sfgjn";
name = "passthword";
};
@@ -21398,10 +21808,10 @@
src = fetchgit {
url = "http://git.zx2c4.com/password-store";
rev = "1aac79d9617431bbaf218f9a9d270929762d2816";
- sha256 = "0c5yjjvvlrcny13sg5kaadbqnc2wdcc2qrxn11gc70q9awv0n7gp";
+ sha256 = "0zlhiqhx19dpmxvcczhif5c8acj911p61plsp0gdmamkpbxmkbjv";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/password-store";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/e204fb4d672220ee1a4a49975fd3999916e60f8c/recipes/password-store";
sha256 = "1jh24737l4hccr1k0b9fnq45ag2dsk84fnfs86hcgsadl94d6kss";
name = "password-store";
};
@@ -21422,7 +21832,7 @@
sha256 = "0m6qjsq6qfwwszm95lj8c58l75vbmx9r5hm9bfywyympfgy0fa1n";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/pastehub";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/bb8645a9880c586ef2ad16f3a4e61ba76176c224/recipes/pastehub";
sha256 = "1slvqn5ay6gkbi0ai1gy1wmc02h4g3n6srrh4fqn72y7b9nv5i0v";
name = "pastehub";
};
@@ -21443,7 +21853,7 @@
sha256 = "1v5mpjb8kavbqhvg4rizwg8cypgmi6ngdiy8qp9pimmkb56y42ly";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/pastelmac-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/a7151773de39fe570e3e9b351daad89db9dd267f/recipes/pastelmac-theme";
sha256 = "168zzqhp2dbfcnknwfqxk68rgmibfw71ksghvi6h2j2c1m08l23f";
name = "pastelmac-theme";
};
@@ -21464,7 +21874,7 @@
sha256 = "1brdyrp2sz1pszdfr6f4w94qxk5lrd6kphc1xa5pywfns14c9386";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/pathify";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/459460c977b9cf033e22937899ad380e01efcf11/recipes/pathify";
sha256 = "1z970xnzbhmfikj1rkfx24jvwc7f1xxw6hk7kmahxvphjxrvgc2f";
name = "pathify";
};
@@ -21477,15 +21887,15 @@
paxedit = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild, paredit }:
melpaBuild {
pname = "paxedit";
- version = "1.1.7";
+ version = "1.1.8";
src = fetchFromGitHub {
owner = "promethial";
repo = "paxedit";
- rev = "0d06c72b18b4eccb8668b2dc3e7884f2cef7871b";
- sha256 = "0kkgqaxyrv65rfg2ng1vmmmrc9bm98yqpsv2pcb760287dn0l27m";
+ rev = "644eb7036a475fbcba4de5d46d6940b1e8ef33cd";
+ sha256 = "0jmhr658cczblag8knr8j77q58yj268rkhh5dmga66l0sb30wb21";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/paxedit";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/106b272c2f0741d21d31a0ddfa4f521c575559c1/recipes/paxedit";
sha256 = "06ymilr0zrwfpyzql7dcpg48lhkx73f2jlaw3caxgsjaz7x3n4ic";
name = "paxedit";
};
@@ -21498,15 +21908,15 @@
pcache = callPackage ({ eieio ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "pcache";
- version = "0.3.2";
+ version = "0.4.0";
src = fetchFromGitHub {
owner = "sigma";
repo = "pcache";
- rev = "4b090f46182fd2ed1f44905dc04acc3121bcf622";
- sha256 = "0xbbq8ddlirhvv921nrf7bwazh0i98bk0a9xzyx8iqpyg66vbfa8";
+ rev = "c86d94c6153cec6fde84fed387daeca2bb156d0a";
+ sha256 = "0pw5922fcqxppcal4ks9w83jxinh0xhlbss532cdsiwfl5icgdqp";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/pcache";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/cae2ac3513e371a256be0f1a7468e38e686c2487/recipes/pcache";
sha256 = "1q2wlbc58lyf3dxfs9ppdxvdsp81jmkq874zbd7f39wvc5ckbz0l";
name = "pcache";
};
@@ -21527,7 +21937,7 @@
sha256 = "0h0p4c08z0dqxmg55fzch1d2f38rywfk1j0an2f4sc94lj7ckbm6";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/pcomplete-extension";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/6cb8a938418f84a5b0ede92e84a516f38e4b1011/recipes/pcomplete-extension";
sha256 = "0m0c9ir44p21rj93fkisvpvi08936717ljmzsr4qdf69b3i54cwc";
name = "pcomplete-extension";
};
@@ -21548,7 +21958,7 @@
sha256 = "1dpfhrxbaqpgjzac3m9hclbzlnrxq9b8bx6za53aqvml72yzxc6i";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/pcre2el";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/f04a25e467cc4c7d9a263330a7a1a53d67c6eb9b/recipes/pcre2el";
sha256 = "1l72hv9843qk5p8gi9ibr15wczm804j3ws2v1x7nx4dr7pc5c7l3";
name = "pcre2el";
};
@@ -21569,7 +21979,7 @@
sha256 = "03k3xhrim4s3yvbnl8g8ci5g7chlffycdw7d6a1pz3077mxf1f1z";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/pcsv";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/80ffaf99b2a4566a3f9d0309cd7b63f563f3826e/recipes/pcsv";
sha256 = "1zphndkbva59g1fd319a240yvq8fjk315b1fyrb8zvmqpgk9n0dl";
name = "pcsv";
};
@@ -21590,7 +22000,7 @@
sha256 = "19sy49r3ijh36m7hl4vspw5c4i8pnfqdn4ldm2sqchxigkw56ayl";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/pdf-tools";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/8e3d53913f4e8a618e125fa9c1efb3787fbf002d/recipes/pdf-tools";
sha256 = "1hnc8cci00mw78h7d7gs8smzrgihqz871sdc9hfvamb7iglmdlxw";
name = "pdf-tools";
};
@@ -21611,7 +22021,7 @@
sha256 = "0kjz7ch4bn0m4v9zgqyqcrsasnqc5c5drv2hp22j7rnbb7ny0q3n";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/peg";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/9b9b55a02e903ae7e75f8b636fdb1cf907c5db7c/recipes/peg";
sha256 = "0nxy9xn99myz0p36m4jflfj48qxhhn1sspbfx8d90030xg3cc2gm";
name = "peg";
};
@@ -21631,7 +22041,7 @@
sha256 = "0w02l91x624cgzdg33a9spgcwy12m607dsfnr1xbc1fi08np4sd1";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/per-buffer-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/5b7972602399f9df9139cff177e38653bb0f43ed/recipes/per-buffer-theme";
sha256 = "1czcaybpfmx4mwff7hs07iayyvgvlhifkickccap6kpd0cp4n6hn";
name = "per-buffer-theme";
};
@@ -21652,7 +22062,7 @@
sha256 = "0j72rqd96dz9pp9zwc88q3358m4b891dg0szmbyvs4myp3yandz2";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/persistent-scratch";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/f1e32702bfa15490b692d5db59e22d2c07b292d1/recipes/persistent-scratch";
sha256 = "0iai65lsg3zxj07hdb9201w3rwrvdb3wffr6k2jdl8hzg5idghn1";
name = "persistent-scratch";
};
@@ -21673,7 +22083,7 @@
sha256 = "14p20br8vzxs39d4hswzrrkgwql5nnmn5j17cpbabzjvck42rixc";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/persistent-soft";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/c9db386ab3910940addae6e925b2ac17e64e0f87/recipes/persistent-soft";
sha256 = "0a4xiwpgyyynjf69s8p183mqd3z53absv544ggvhb2gkpm6jravc";
name = "persistent-soft";
};
@@ -21694,7 +22104,7 @@
sha256 = "090b73969namf3h7pbf8xc969dygj3frzlkf0h2x29wl1fmag5kr";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/persp-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/caad63d14f770f07d09b6174b7b40c5ab06a1083/recipes/persp-mode";
sha256 = "1bgni7y5xsn4a21494npr90w3320snfzw1hvql30xrr57pw3765w";
name = "persp-mode";
};
@@ -21715,7 +22125,7 @@
sha256 = "12c2rrhysrcl2arc6hpzv6lxbb1r3bzlvdp23hnp9sci6yc10k3q";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/perspective";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/0bf5d4356424b492579a029f58dd4685ff5aaf39/recipes/perspective";
sha256 = "150dxcsd0ylvfi9mmfpcki1wd3nl8q9mbszd3dgqfnm40yncklml";
name = "perspective";
};
@@ -21736,7 +22146,7 @@
sha256 = "1qxsc5wyk8l9gkgmqy3mzwxdhji1ljqw9s1jfxkax7fyv4d1v31p";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ph";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/f62ca074ca2df780ab32aac50b2b828ee6a9934c/recipes/ph";
sha256 = "0azx4cpfdn01yrqyn0q1gg9z7w0h0rn7zl39v3dx6yidd76ysh0l";
name = "ph";
};
@@ -21746,6 +22156,27 @@
license = lib.licenses.free;
};
}) {};
+ phi-search = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
+ melpaBuild {
+ pname = "phi-search";
+ version = "20160630";
+ src = fetchFromGitHub {
+ owner = "zk-phi";
+ repo = "phi-search";
+ rev = "40b86bfe9ae15377fbee842b1de3d93c2eb7dd69";
+ sha256 = "10kyq3lkhmbmj1hl9awzc0w8073dn9mbjd5skh660ljg5mmi6x62";
+ };
+ recipeFile = fetchurl {
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/2f0274300c33f19ca6f868e1d570ffee513dbdf7/recipes/phi-search";
+ sha256 = "0nj06ixl76dd80zg83q4bi8k224mcwb612mr4gd1xppj5k8xl03g";
+ name = "phi-search";
+ };
+ packageRequires = [];
+ meta = {
+ homepage = "https://melpa.org/#/phi-search";
+ license = lib.licenses.free;
+ };
+ }) {};
phi-search-mc = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, multiple-cursors, phi-search }:
melpaBuild {
pname = "phi-search-mc";
@@ -21757,7 +22188,7 @@
sha256 = "0r6cl1ng41s6wsy5syjlkaip0mp8h491diipdc1psbhnpk4vabsv";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/phi-search-mc";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/83cf3fa3736eb2583dcf6bca16b9acb89e3408a3/recipes/phi-search-mc";
sha256 = "07hd80rbyzr5n3yd7hv1j51nl6pvcxmln20g6xvw8gh5yfl9k0m8";
name = "phi-search-mc";
};
@@ -21778,7 +22209,7 @@
sha256 = "0zs11811kx6x1zgc1icd8gw420saa7z6zshpzmrddnbznya4qql6";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/php-auto-yasnippets";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/d47ca8cd5900a80a2ede1b354547addf9b2bbbac/recipes/php-auto-yasnippets";
sha256 = "1hhddvpc80b6wvjpbpibsf24rp5a5p45m0bg7m0c8mx181h9mqgn";
name = "php-auto-yasnippets";
};
@@ -21799,7 +22230,7 @@
sha256 = "0pwhw59ki19f9rkgvvnjzhby67s0y9hpsrg6cwqxakjlm66w96q3";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/php-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/7cdbc35fee67b87b87ec72aa00e6dca77aef17c4/recipes/php-mode";
sha256 = "1lc4d3fgxhanqr3b8zr99z0la6cpzs2rksj806lnsfw38klvi89y";
name = "php-mode";
};
@@ -21820,7 +22251,7 @@
sha256 = "09rinyx0621d7613xmbyvrrlav6d4ia332wkgg0m9dn265g3h56z";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/phpcbf";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/77ef54e3fb2715a081786dc54f99ae74def5c77c/recipes/phpcbf";
sha256 = "1hf88ys4grffpqgavrbc72dn3m7crafgid2ygzx9c5j55syh8mfv";
name = "phpcbf";
};
@@ -21841,7 +22272,7 @@
sha256 = "1pmds2g7y1pcs3ivsd68zg30ih34janib0ydz4wr0mci3q52cjpy";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/phpunit";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/0670b42c0c998daa7bf01080757976ac3589ec06/recipes/phpunit";
sha256 = "0nj8ss1yjkcqnbnn4jgbp0403ljjk2xhipzikdrl3dbxlf14i4f8";
name = "phpunit";
};
@@ -21862,7 +22293,7 @@
sha256 = "19i8hgzr7kdj4skf0cnv6vlsklq9qcyxcv3p33k9vgq7y4f9mah8";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/pillar";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/bff55f1182f3bd0bc8a8773921f703168d87de21/recipes/pillar";
sha256 = "1lklky3shyvm1iygp621hbldpx37m0a9vd5l6mxs4y60ksj6z0js";
name = "pillar";
};
@@ -21883,7 +22314,7 @@
sha256 = "12jhdkgfck2a6d5jj65l9d98dm34gsyi0ya4h21dbbvz35zivz70";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/pinyin-search";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/03da6f02778f7fae77a00cdc420cfbafead6dec4/recipes/pinyin-search";
sha256 = "1si693nmmxgg0kp5mxvj5nq946kfc5cv3wfsl4znbqzps8qb2b7z";
name = "pinyin-search";
};
@@ -21904,7 +22335,7 @@
sha256 = "13q95z0j1mpk2yrrq0amc2jjhajaz4884bfliy2h8adh109j4q1d";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/pinyinlib";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/f4aa27985dcfaf24f1863667b89e13df4710546f/recipes/pinyinlib";
sha256 = "0kv67qa3825fw64qimkph2b65pilrsx5730y4c7f7c1f8giz5vxr";
name = "pinyinlib";
};
@@ -21925,7 +22356,7 @@
sha256 = "1dsg49156mfhkd8ip4ny03sc06zchxr1qpbcx48f5sn4m9j5d3vs";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/pip-requirements";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/5eaf6987f92070ccc33d3e28c6bb2b96f72ba1aa/recipes/pip-requirements";
sha256 = "1wsjfyqga7pzp8gsm5x53qrkn40srairbjpifyrqbi2fpzmwhrnz";
name = "pip-requirements";
};
@@ -21946,7 +22377,7 @@
sha256 = "1wg8pcwd70ixn2bxh01934zl12ry4pgx3l9dccpbjdi40gira00d";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/pixiv-novel-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/92092c1c13c37520f98b952d40745aa062f062c1/recipes/pixiv-novel-mode";
sha256 = "0f1rxvf9nrw984122i6dzsgik9axfjv6yscmg203s065n9lz17px";
name = "pixiv-novel-mode";
};
@@ -21967,7 +22398,7 @@
sha256 = "0nk12dcppdyhav6m6yf7abpywyd7amxd4237zsfd32w4zxsx39k1";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/pkg-info";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/73fc80e94c98ff304a521466c6577c96a10e79a8/recipes/pkg-info";
sha256 = "0whcvralk76mfmvbvwn57va5dkb1irj7iwffgddi7r0ima49iszx";
name = "pkg-info";
};
@@ -21988,7 +22419,7 @@
sha256 = "0a8qb1ldk6bjs7fpxgxrf90md7q46fhl71gmay8yafdkh6hn0kqr";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/pkgbuild-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/ca7bf43ef8893bf04e9658390e306ef69e80a156/recipes/pkgbuild-mode";
sha256 = "1lp7frjahcpr4xnzxz77qj5hbpxbxm2g28apkixrnc1xjha66v3x";
name = "pkgbuild-mode";
};
@@ -22009,7 +22440,7 @@
sha256 = "1nznbkl06cdq4pyqmvkp9jynsjibn0fd6ai4mggz6ggcwzcixbf0";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/platformio-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/7fabdb05de9b8ec18a3a566f99688b50443b6b44/recipes/platformio-mode";
sha256 = "1v1pp3365wj19a5wmsxyyy5n548z3lmcbm2pwl914wip3ca7546f";
name = "platformio-mode";
};
@@ -22030,7 +22461,7 @@
sha256 = "0slfaclbhjm5paw8l7rr3y9xxjyhkizp9lwyvlgpkd38n4pgj2bx";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/play-routes-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/740cef8687232eb0e2186e8df956c2d4f39575cf/recipes/play-routes-mode";
sha256 = "17phqil2zf5rfvhs5v743dh4lix4v2azbf33z9n97ahs7j66y2gz";
name = "play-routes-mode";
};
@@ -22051,7 +22482,7 @@
sha256 = "11cbpgjsnw8fiqf1s12hbm9qxgjcw6y2zxx7wz4wg7idmi7m0b7g";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/plenv";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/a0819979b9567ac5fab9ed6821eba8fe7ee6a299/recipes/plenv";
sha256 = "0dw9fy5wd9wm76ag6yyw3f9jnlj7rcdcxgdjm30h514qfi9hxbw4";
name = "plenv";
};
@@ -22072,7 +22503,7 @@
sha256 = "0f00dv5jwbhs99j4jc6lvr5n0mv1y80yg7zpp6yrmhww6829l5rg";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/plsense";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/fb1025f146514e9c142cd96cac9f2989d6d1a8c5/recipes/plsense";
sha256 = "1ka06r4ashhjkfyzql9mfvs3gj7n684h4gaycj29w4nfqrhcw9va";
name = "plsense";
};
@@ -22093,7 +22524,7 @@
sha256 = "0s34nbqqy6aqi113xj452pbmqp43046wfbfbbfv1xwhybgq0c1j1";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/plsense-direx";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/65fb1d8b4ed12f097958842d1b00dcdf3660b184/recipes/plsense-direx";
sha256 = "0qd4b7gkmn5ydadhp70995rap3643s1aa8gfi5izgllzhg0i864j";
name = "plsense-direx";
};
@@ -22114,7 +22545,7 @@
sha256 = "0qlxj19hj96l4lw81xh5r14ppf6kp63clikk060s9yw00q7gnl6a";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/plur";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/38f6f53fcd1186efd5e6752166da4e23b712cdb1/recipes/plur";
sha256 = "0nf1dc7xf2zp316rssnz8sv374akcr54hp0rb219qvgyck9bdqiv";
name = "plur";
};
@@ -22135,7 +22566,7 @@
sha256 = "0xjvxfkrl6wl31s7rvbv9zczn6d6i9vf20waqlr3c2ff3zy55ygy";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/pony-snippets";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/7fabdb05de9b8ec18a3a566f99688b50443b6b44/recipes/pony-snippets";
sha256 = "12ygvpfkzldq6s4mwbrxs4x9927i7pa7ywn7lf1r3gg4h29ar9gn";
name = "pony-snippets";
};
@@ -22156,7 +22587,7 @@
sha256 = "0by7klp7imy7zgc37wsiil86y6i2h1wfwfyifc2cf0jn5dsvfikw";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ponylang-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/7d51adec3c6519d6ffe9b3f7f8a86b4dbc2c9817/recipes/ponylang-mode";
sha256 = "02fq0qp7f4bzmynzszrwskfs78nzsmf413qjxqndrh3hamixzpi1";
name = "ponylang-mode";
};
@@ -22177,7 +22608,7 @@
sha256 = "18i0kivn6prh5pwdr7b4pxfxqsc8l4mks1h6cfs7iwnfn15g5k19";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/pophint";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/0055c2887acbbd8a2803bf3f81ac2cc444cc805a/recipes/pophint";
sha256 = "1chq2j79hg095jxw5z3pz4qicqrccw0gj4sxrin0a55hnprzzp72";
name = "pophint";
};
@@ -22198,7 +22629,7 @@
sha256 = "1y538siabcf1n00wr4iz5gbxfndw661kx2mn9w1g4lg7yi4n0h0h";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/popup";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/083fb071191bccd6feb3fb84569373a597440fb1/recipes/popup";
sha256 = "151g00h9rkid76qf6c53n8bncsfaikmhj8fqcb3r3a6mbngcd5k2";
name = "popup";
};
@@ -22219,7 +22650,7 @@
sha256 = "084hb3zn1aiabbyxgaalszb2qjf9z64z960ks5fvz8nh7n6y7ny4";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/popup-complete";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/b43b85f90c476a3b88f94927a7db90bdc72cd171/recipes/popup-complete";
sha256 = "04bpm31zx87j390r2xi1yl4kyqgalmyqc48xarsm67zfww9fw9c1";
name = "popup-complete";
};
@@ -22240,7 +22671,7 @@
sha256 = "19mqzfpki2zlnibp2vzymhdld1m20jinxwgdhmbl6zdfx74zbz7b";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/popup-imenu";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/5ca5d65d6a9c7ef3fa2684271fe087dc132d3a61/recipes/popup-imenu";
sha256 = "0lxwfaa9vhdn55dj3idp8c3fg1g26qsqq46y5bimfd0s89bjbaxn";
name = "popup-imenu";
};
@@ -22261,7 +22692,7 @@
sha256 = "0nips9npm4zmz3f37vvb4s0g1ci0p9cl6w0z4sc6agg4rybjhpdp";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/popwin";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/2b3d6a8b734e0820fd904c215a83fe5519496dc3/recipes/popwin";
sha256 = "1zp54nv8rh0b3g8y5aj4793miiw2r1ijwbzq31lkwmbdr09mixmf";
name = "popwin";
};
@@ -22282,7 +22713,7 @@
sha256 = "0w8bnspnk871qndp18hs0wk4x9x31xr9rwbvf5dc8mcbnj29ch33";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/pos-tip";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/306e9978d2a071548cc9d8c531a1ce6c6c6b99aa/recipes/pos-tip";
sha256 = "13qjz112qlrnq34lr70087gshzq8m44knfl6694hfprzjgix84vh";
name = "pos-tip";
};
@@ -22295,15 +22726,15 @@
powerline = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "powerline";
- version = "2.2";
+ version = "2.4";
src = fetchFromGitHub {
owner = "milkypostman";
repo = "powerline";
- rev = "240bad5ebea4c7298e86ed76bd44c45d9062cb33";
- sha256 = "1nx3b24i26kgm52xw21x4m15qjkxw3sg5r6qyvck0fyhj0gw69gr";
+ rev = "d3dcfc57a36111d8e0b037d90c6ffce85ce071b2";
+ sha256 = "1hp3xp18943n0rlggz55150020ivw8gvi1vyxkr4z8xhpwq4gaar";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/powerline";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/f805053cd4dd9ed53ee0df17ad69429bc62325bb/recipes/powerline";
sha256 = "0gsffr6ilmckrzifsmhwd42vr85vs42pc26f1205pbxb7ma34dhx";
name = "powerline";
};
@@ -22324,7 +22755,7 @@
sha256 = "010b151wblgxlfpy590yanbl2r8qhpbqgi02v0pyir340frm9ngn";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/powershell";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/7002c50f2734675134791916aa9d8b82b4582fcb/recipes/powershell";
sha256 = "162k8y9k2n48whaq93sqk86zy3p9qvsfxgyfv9n1nvk4l5wn70wk";
name = "powershell";
};
@@ -22345,7 +22776,7 @@
sha256 = "0pv671j8g09pn61kkfb3pa9axfa9zd2jdrkgr81rm2gqb2vh1hsq";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ppd-sr-speedbar";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/f930f54048d06f6a97824b66fbb74649eed40b54/recipes/ppd-sr-speedbar";
sha256 = "1m2918hqvb9c6rgb5szs95ds99gdjdxggcbdfqzmbb5sz2936av8";
name = "ppd-sr-speedbar";
};
@@ -22366,7 +22797,7 @@
sha256 = "013fig9i4fyx16krp2vfv953p3rwdzr38zs6i50af4pqz4vrcfvh";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/pretty-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/4a2fe9feae4c1f007e51272a97917a63dcf6bbe5/recipes/pretty-mode";
sha256 = "1zxi4nj7vnchiiz1ndx17b719a1wipiqniykzn4pa1w7dsnqg21f";
name = "pretty-mode";
};
@@ -22387,7 +22818,7 @@
sha256 = "08ljf39jfmfpdk36nws2dnwpm7y8252zsdprsc85hr1h1ig5xy15";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/processing-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/ba59561e8a2f259fde170a79844af5e1ef5ed34f/recipes/processing-mode";
sha256 = "184yg9z14ighz9djg53ji5dgnb98dnxkkwx55m8f0f879x31i89m";
name = "processing-mode";
};
@@ -22408,7 +22839,7 @@
sha256 = "08ljf39jfmfpdk36nws2dnwpm7y8252zsdprsc85hr1h1ig5xy15";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/processing-snippets";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/ba59561e8a2f259fde170a79844af5e1ef5ed34f/recipes/processing-snippets";
sha256 = "09vkm9asmjz1in0f63s7bf4amifspsqf5w9pxiy5y0qvmn28fr2r";
name = "processing-snippets";
};
@@ -22429,7 +22860,7 @@
sha256 = "0r32rjfsbna0g2376gdv0c0im1lzw1cwbp9690rgqjj95ls4saa3";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/prodigy";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/04686b7a450ccd4631ecf1d9bcd51572c21fd20d/recipes/prodigy";
sha256 = "032868bgy2wmb2ws48lfibs4118inpna7mmml8m7i4m4y9ll6g85";
name = "prodigy";
};
@@ -22450,7 +22881,7 @@
sha256 = "1hv8ifrpwn434sm41vkgbwni21ma5kfybkwasi6zp0f2b5i9ziw7";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/project-explorer";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/c2e5d686b8a18c7a17965ff6c5af8f5817b7ab31/recipes/project-explorer";
sha256 = "076lzmyi1n7yrgdgyh9qinq271qk6k64x0msbzarihr3p4psrn8m";
name = "project-explorer";
};
@@ -22471,7 +22902,7 @@
sha256 = "1x7hwda1w59b8hvzxyk996wdz6phs6rchh3f1ydf0ab6x7m7xvjr";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/project-persist";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/bd81d1f8a30ed951ed94b9a4db13a2f7735ea878/recipes/project-persist";
sha256 = "0csjwj0qaw0hz2qrj8kxgxlixh2hi3aqib98vm19sr3f1b8qab24";
name = "project-persist";
};
@@ -22492,7 +22923,7 @@
sha256 = "1nq320ph8fs9a197ji4mnw2xa24dld0r1nka476yvkg4azmcc9x8";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/project-persist-drawer";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/23084af52d2243016eee73a5ee0cd3e945eec71d/recipes/project-persist-drawer";
sha256 = "1jv2y2hcqakyvfibclzm7g4diw0bvsv3a8fa43yf19wb64jm8hdb";
name = "project-persist-drawer";
};
@@ -22512,7 +22943,7 @@
sha256 = "08dd2y6hdsj1rxcqa2hnjypnn9c2z43y7z2hz0fi4vny547qybz8";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/project-root";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/5b7972602399f9df9139cff177e38653bb0f43ed/recipes/project-root";
sha256 = "0xjir204zk254y2x70k9vqwirx2ljmrikpsgn5kn170d1bxvhwmb";
name = "project-root";
};
@@ -22533,7 +22964,7 @@
sha256 = "1rl6n6v9f4m7m969frx8b51a4lzfix2bxx6rfcfbh6kzhc00qnxf";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/projectile";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/ca7bf43ef8893bf04e9658390e306ef69e80a156/recipes/projectile";
sha256 = "1kf8hql59nwiy13q0p6p6rf5agjvah43f0sflflfqsrxbihshvdn";
name = "projectile";
};
@@ -22546,15 +22977,15 @@
projectile-rails = callPackage ({ emacs, f, fetchFromGitHub, fetchurl, inf-ruby, inflections, lib, melpaBuild, projectile, rake }:
melpaBuild {
pname = "projectile-rails";
- version = "0.9.2";
+ version = "0.10.1";
src = fetchFromGitHub {
owner = "asok";
repo = "projectile-rails";
- rev = "1d5bbb1bac250a37b2c0b6393a82c9ba3719cf90";
- sha256 = "0g4slcaj5waka5sz0plnn0clnl9750wzj3bi7zfcycb2g7xhncwg";
+ rev = "9a8a4641be1f2eae7f6f42d13db24c10bfa0c974";
+ sha256 = "0v5mm9v4wd3yfnlx7zbb48lsxz7fyv4vcdszdpr5nswynmihxfi5";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/projectile-rails";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/b16532bb8d08f7385bca4b83ab4e030d7b453524/recipes/projectile-rails";
sha256 = "0fgvignqdqh0ma91z9385782l89mvwfn77rp1gmy8cbkwi3b7fkq";
name = "projectile-rails";
};
@@ -22575,7 +23006,7 @@
sha256 = "1ma6djvhvjai07v1g9a36lfa3nw8zsy6x5vliwcdnkf44gs287ra";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/projectile-sift";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/a730e1331b0486c4bd2d309b85d2f8810489eb47/recipes/projectile-sift";
sha256 = "1wbgpwq9yy3v7hqidaczrvvsw5ajj7m3n4gsy3b169xv5h673a0i";
name = "projectile-sift";
};
@@ -22596,7 +23027,7 @@
sha256 = "1rw55w2fpb3rw7j136kclkhppz21f7d7di4cvlv7zj5zpdl5zz88";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/projekt";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/e2a854ed4fef114861bcc7814cd064c16d3c074c/recipes/projekt";
sha256 = "1bhb24701flihl54w8xrj6yxhynpq4dk0fp5ciac7k28n4930lw8";
name = "projekt";
};
@@ -22617,7 +23048,7 @@
sha256 = "1hq8426i8rpb3qzkd5akv3i08pa4jsp9lwsskn38bfgp71pwild2";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/prompt-text";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/17d2bc3e53865fe8c98aabb6ef0ad1d10fcb1061/recipes/prompt-text";
sha256 = "1b9sj9kzx5ydq2zsfmkwsx78pzg0vsvrn92397js6b2cm24vrwwc";
name = "prompt-text";
};
@@ -22638,7 +23069,7 @@
sha256 = "18ap2liz5r5a8ja2zz9182fnfm47jnsbyblpq859zks356k37iwc";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/prop-menu";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/3d3a013cc9c489987fe689c8d73bbaa3445bdeb3/recipes/prop-menu";
sha256 = "0dhy52fxxpa058mhhx0slw3sly3dlxm9vkax6fd1sap6f6v00p5i";
name = "prop-menu";
};
@@ -22659,7 +23090,7 @@
sha256 = "03df8zvx2sry3jz2x4pi3l32qyfqa7w8kj8jdbz30nzy0h7aa070";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/protobuf-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/b4e7f5f641251e17add561991d3bcf1fde23467b/recipes/protobuf-mode";
sha256 = "1hh0w93fg6mfwsbb9wvp335ry8kflj50k8hybchpjcn6f4x39xsj";
name = "protobuf-mode";
};
@@ -22680,7 +23111,7 @@
sha256 = "0wgxrwl7dpy084sc76wiwpixycb171g7xwc66m5gnlrv79qyac73";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/psci";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/a0f45269895b8e061c972da46f932c96eb0f5279/recipes/psci";
sha256 = "0sgrz8byz2pcsad2pydinp4hh2xb48pdb03r93wg2vvyy8p15j9g";
name = "psci";
};
@@ -22701,7 +23132,7 @@
sha256 = "0msa8c29djhy5h3zpdvx25f4y1c50rgsk8iz6r127psrxdlfrvg8";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/psession";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/669342d2b3e6cb622f196571d776a98ec8f3b1d3/recipes/psession";
sha256 = "18va6kvpia5an74vkzccs72z02vg4vq9mjzr5ih7xbcqxna7yv3a";
name = "psession";
};
@@ -22722,7 +23153,7 @@
sha256 = "0mnxvh5yd8v8a5mfi53isknc88kv2kdjjv0qffblz0sgshkpl30x";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/psysh";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/4b3131d9a0ad359f15bc3550868a12f02476449a/recipes/psysh";
sha256 = "0ygnfmfx1ifppg6j3vfz10srbcpr5ird2bhw6pvydijxkyd75vy5";
name = "psysh";
};
@@ -22743,7 +23174,7 @@
sha256 = "1p0k770h96iw8bxm8ssi0a91m050s615q036870lrlsz35mzc5kw";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/pt";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/34c51783af154f203489f5f7df7012ca61932caa/recipes/pt";
sha256 = "0zmz1hcr4ajc2ydvpdxhy1dlhp7hvlkv6y6w1b79ffvq6acdd5mj";
name = "pt";
};
@@ -22764,7 +23195,7 @@
sha256 = "1wiiarxh0lcxvy56f1rxdbk1iwhdynl2xn6v8nr35bw1l82b1j9g";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/pug-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/b3710aac9f3df3a23238af1f969c462b3692f260/recipes/pug-mode";
sha256 = "1njhr95y2rx7inpl9phxxz580844p2iadqlga1kj7xzvjz698x85";
name = "pug-mode";
};
@@ -22785,7 +23216,7 @@
sha256 = "19bcf3wbmp186yxvrdsm2ax4npvi2x0id94zi13pdnw4cz7zch3v";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/puml-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/c0c28ccef208035fd0bdd648771825c1d10f42ff/recipes/puml-mode";
sha256 = "131ghjq6lsbhbx5hdg36swnkqijdb9bx6zg73hg0nw8qk0z742vn";
name = "puml-mode";
};
@@ -22806,7 +23237,7 @@
sha256 = "1v48i37iqrrwbyy3bscicfq66vbbml4sg0f0n950bnk0qagjx8py";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/punctuality-logger";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/76ac7178ee5381e08ae881f3fc6061106eeb1c1d/recipes/punctuality-logger";
sha256 = "0q9s74hkfqvcx67xpq9rlvh38nyjnz230bll6ks7y5yzxvl4qhcm";
name = "punctuality-logger";
};
@@ -22827,7 +23258,7 @@
sha256 = "012lv7hrwlhvins81vw3yjkhdwbpi6g1dx55i101qyrpzv5ifngm";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/pungi";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/d504c6028c029268d380c0eac25b1c4886aa6e98/recipes/pungi";
sha256 = "1v9fsd764z5wdcips63z53rcipdz7bha4q6s4pnn114jn3a93ls1";
name = "pungi";
};
@@ -22848,7 +23279,7 @@
sha256 = "0xr3s56p6fbm6wgw17galsl3kqvv8c7l1l1qvbhbay39yzs4ff14";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/puppet-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/ca67e3241b3fe5037b8d6a8e4f1104d9a46a01b1/recipes/puppet-mode";
sha256 = "1s2hap6fs6rg5q80dmzhaf4qqaf5sglhs8p896i3i5hq51w0ciyc";
name = "puppet-mode";
};
@@ -22869,7 +23300,7 @@
sha256 = "1wk319akv0scvyyjsd48pisi2i1gkahhsan9hfszrs6xx3anvfd9";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/purescript-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/77175fa470e517fa134751fbb38e144eb5b979ff/recipes/purescript-mode";
sha256 = "00gz752mh7144nsaka5q3q4681jp845kc5vcy2nbfnqp9b24l55m";
name = "purescript-mode";
};
@@ -22890,7 +23321,7 @@
sha256 = "03ivg3ddhy5zh410wgwxa17m98wywqhk62jgijhjd00b6l8i4aym";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/pushbullet";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/a2649d60dd1ed3b3171ff1448b89967c5f7759a0/recipes/pushbullet";
sha256 = "1swzl25rcw7anl7q099qh14yhnwlbn3m20ib9kis0l1rv59kkarl";
name = "pushbullet";
};
@@ -22911,7 +23342,7 @@
sha256 = "06xdq2slwhkcqlbv7x86zmv55drzif9cwjlj543cwhncphl2x9rd";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/py-autopep8";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/c400e0f3cfe70821e621fe85d239b4f6596d5171/recipes/py-autopep8";
sha256 = "1argjdmh0x9c90zkb6cr4z3zkpgjp2mkpsw0dr4v6gg83jcggfpp";
name = "py-autopep8";
};
@@ -22932,7 +23363,7 @@
sha256 = "0150q6xcnzzrkn9fa9njm973l1d49c48ad8qia71k4jwrxjjj6zr";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/py-isort";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/44377d11da07b49c8dc6887c948cc5ddfc065bd2/recipes/py-isort";
sha256 = "0k5gn3bjn5pv6dn6p0m9xghn0sx3m29bj3pfrmyh6gd5ic0l00yb";
name = "py-isort";
};
@@ -22953,7 +23384,7 @@
sha256 = "09z739w4fjg9xnv3mbh7v8j59mnbsfq4ygq616pj4xcw3nsh0rbg";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/py-yapf";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/3306c6906d4b21868b9407de27fbebdaed3d00d5/recipes/py-yapf";
sha256 = "1381x0ffpllxwgkr2d8xxbv1nd4k475m1aff8l5qijw7d1fqga2f";
name = "py-yapf";
};
@@ -22974,7 +23405,7 @@
sha256 = "0qg1kjzsv2mcvlsivqy8ys3djbs5yala37r9h2zcxdicl88q0l11";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/pycarddavel";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/9b3d2cd943f26dcff322efb16d55dd3bd71dea07/recipes/pycarddavel";
sha256 = "12k2mnzkd8yv17csfhclsnd479vcabawmac23yw6dsw7ic53jf1a";
name = "pycarddavel";
};
@@ -22995,7 +23426,7 @@
sha256 = "1y3q1k195wp2kgp00a1y34i20zm80wdv2kxigh6gbn2r6qzkqrar";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/pyenv-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/acc9b816796b9f142c53f90593952b43c962d2d8/recipes/pyenv-mode";
sha256 = "00yqrk92knv9gq1m9xcg78gavv70jsjlwzkllzxl63iva9qrch59";
name = "pyenv-mode";
};
@@ -23005,6 +23436,27 @@
license = lib.licenses.free;
};
}) {};
+ pyimport = callPackage ({ dash, fetchFromGitHub, fetchurl, lib, melpaBuild, s }:
+ melpaBuild {
+ pname = "pyimport";
+ version = "1.0";
+ src = fetchFromGitHub {
+ owner = "Wilfred";
+ repo = "pyimport";
+ rev = "2c05712748f6b6624b15d524323f6391612683f4";
+ sha256 = "0p9fsbb7c1kr8916vlk1ngq7xmm158a47v6ja5j5n57b505ssy8q";
+ };
+ recipeFile = fetchurl {
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/71bc39b06cee37814960ef31c6a2056261b802fb/recipes/pyimport";
+ sha256 = "1qwigplawknykw1kbm5babyyknzn43ddhbdpahvzh4wy3kycn6n8";
+ name = "pyimport";
+ };
+ packageRequires = [ dash s ];
+ meta = {
+ homepage = "https://melpa.org/#/pyimport";
+ license = lib.licenses.free;
+ };
+ }) {};
python-environment = callPackage ({ deferred, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "python-environment";
@@ -23016,7 +23468,7 @@
sha256 = "0q6bib9nr6xiq6npzbngyfcjk87yyvwzq1zirr3z1h5wadm34lsk";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/python-environment";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/283155ad56cd8eda416c83a9b7f8d43d4d1570c2/recipes/python-environment";
sha256 = "1pq16rddw76ic5d02j5bswl9qcydi47hqmhs7r06jk46vsfzxpl7";
name = "python-environment";
};
@@ -23037,7 +23489,7 @@
sha256 = "00i7cc4r7275l22k3708xi4hqw2j44yivdb1madzrpf314v3kabr";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/python-x";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/87ed5ea4868945df1bf92d1eae5d3ebb83ece117/recipes/python-x";
sha256 = "115mvhqfa0fa8kdk64biba7ri4xjk74qqi6vm1a5z3psam9mjcmn";
name = "python-x";
};
@@ -23058,7 +23510,7 @@
sha256 = "1af9cd8l5ac58mj92xc7a3diy995cv29abnbb3fl6x4208l4xs3c";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/pythonic";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/5589c55d459f15717914061d0f0f4caa32caa13c/recipes/pythonic";
sha256 = "1hq0r3vg8vmgw89wfjdqknwm76pimlk0dy56wmh9vffh06gqsb51";
name = "pythonic";
};
@@ -23079,7 +23531,7 @@
sha256 = "0jidmc608amd0chs4598zkj0nvyll0al093121hkczsbpgbllq9z";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/pyvenv";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/e37236b89b9705ba7a9d134b1fb2c3c003953a9b/recipes/pyvenv";
sha256 = "0gai9idss1wvryxyqk3pv854mc2xg9hd0r55r2blql8n5rd2yv8v";
name = "pyvenv";
};
@@ -23100,7 +23552,7 @@
sha256 = "110z27n3h7p2yalicfhnv832ikfcf7p0hrf5qkryz1sdmz79wb3f";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/qiita";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/d8065a58e297c50c031de97d2d80bce5857bd803/recipes/qiita";
sha256 = "1kzk7pc68ks9gxm2l2d28al23gxh56z0cmkl80qwg7sh4gsmhyxl";
name = "qiita";
};
@@ -23121,7 +23573,7 @@
sha256 = "1mlka59gyylj4cabi1b552h11qx54kjqwx3bkmsdngjrd4da222a";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/qml-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/f3abc88ddbb6b8ecafa45e75ceba9a1294ad88d4/recipes/qml-mode";
sha256 = "123mlibviplzra558x87da4zx0kpbhsgfigjjgjgp3mdg897084n";
name = "qml-mode";
};
@@ -23142,7 +23594,7 @@
sha256 = "0lfmdlb626b3gbmlvacwn84vpqam6gk9lp29wk0hcraw69vaw1v8";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/quasi-monochrome-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/a9c8498e4bcca19c4c24b2fd0db035c3da477e2a/recipes/quasi-monochrome-theme";
sha256 = "0h5pqrklyga40jg8qc47lwmf8khn0vcs5jx2sdycl2ipy0ikmfs0";
name = "quasi-monochrome-theme";
};
@@ -23163,7 +23615,7 @@
sha256 = "1iypwvdgdh30c9br7jnibgwbdca2mqjy95x2ppsc51sik2mz2db1";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/quickrun";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/81f0f525680fea98e804f39dbde1dada887e8821/recipes/quickrun";
sha256 = "0f989d6niw6ghf9mq454kqyp0gy7gj34vx5l6krwc52agckyfacy";
name = "quickrun";
};
@@ -23184,7 +23636,7 @@
sha256 = "02bddznlqys37fnhdpp2g9xa9m7kfgrj1vl0hc5kr42hggk9wwmg";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/r-autoyas";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/3a095d3a687055c6ac43a4338826542d14a25127/recipes/r-autoyas";
sha256 = "18zifadsgbwnga205jvpx61wa2dvjxmxs5v7cjqhny45a524nbv4";
name = "r-autoyas";
};
@@ -23205,7 +23657,7 @@
sha256 = "1r1gq6b33iv5a3kf96s73xp5y7yw2lq36cczmwbb9ix5bh5jhcyk";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/racer";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/97b97037c19655a3ddffee9a86359961f26c155c/recipes/racer";
sha256 = "1091y5pisbf73i6zg5d7yny2d5yckkjg0z6fpjpmz5qjs3xcm9wi";
name = "racer";
};
@@ -23226,7 +23678,7 @@
sha256 = "02x5ciyafqwak06yk813kl8p92hq03wjsk1882q8axr9q231100c";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/rainbow-blocks";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/de07b317e46475776d6d237908a0495866a7a851/recipes/rainbow-blocks";
sha256 = "08p41wvrw1j3h7j7lyl8nxk1gcc2id9ikljmiklg0kc6s8ijhng8";
name = "rainbow-blocks";
};
@@ -23247,7 +23699,7 @@
sha256 = "0vs9pf8lqq5p5qz1770pxgw47ym4xj8axxmwamn66br59mykdhv0";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/rainbow-delimiters";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/d2cf11dbff76f0e3581b865f48bb44a307aa7f23/recipes/rainbow-delimiters";
sha256 = "132nslbnszvbgkl0819z811yar3lms1hp5na4ybi9gkmnb7bg4rg";
name = "rainbow-delimiters";
};
@@ -23268,7 +23720,7 @@
sha256 = "05i0jpmxzsj2lsj48cafn3v93z37l7k5kaza2ik3yirdpjdibyrh";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/rainbow-identifiers";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/975aadd9fe1faf9ad617ba6200ca77185b87e7c0/recipes/rainbow-identifiers";
sha256 = "0lw790ymrgpyh0sxwmzinl2ik5vl5vggbg14cd0cx5yagkw5y3mp";
name = "rainbow-identifiers";
};
@@ -23289,7 +23741,7 @@
sha256 = "1q65jj6bghvzhlqmpg61a7vn8izc01wp2fjiqx013zxpg9awvzmq";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/rake";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/bf0f84698dda02a5b84a244ee29a23a6faa9de68/recipes/rake";
sha256 = "0cw47g6cjnkh3z4hbwwq1f8f5vrvs84spn06k53bx898brqdh8ns";
name = "rake";
};
@@ -23302,15 +23754,15 @@
ranger = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "ranger";
- version = "0.9.8.1";
+ version = "0.9.8.2";
src = fetchFromGitHub {
owner = "ralesi";
repo = "ranger.el";
- rev = "9367c681c96aad394069d8145ecfe683708d27fd";
- sha256 = "1r2k9s46njys2acacwk57mkr9szbpxz93xd4rnjf5gx551khlhjb";
+ rev = "70af0a00a93f5b27671b75083ed041ed417b5b63";
+ sha256 = "0vdrqrdsfyybfi66nf81af7zfavaawysqdfy1zr5a26b7qd64812";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ranger";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/0207e754f424823fb48e9c065c3ed9112a0c445b/recipes/ranger";
sha256 = "14g4r4iaz0nzfsklslrswsik670pvfd0605xfjghvpngn2a8ych4";
name = "ranger";
};
@@ -23331,7 +23783,7 @@
sha256 = "1i16361klpdsxphcjdpxqswab3ing69j1wb9nygws7ghil85h0bx";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/rase";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/334419debe065c34665bb0207574d1d4dfb9e8ae/recipes/rase";
sha256 = "1g7v2z7l4csl5by64hc3zg4kgrkvv81iq30mfqq4nvy1jc0xa6j0";
name = "rase";
};
@@ -23352,7 +23804,7 @@
sha256 = "0rwgwz1x9w447y8mxy9hrx1rzi3ac9dwk2y5yg1p08z5b7dy6vcz";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/rats";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/a62cbae1b2d9af2322bb6a27949de8c8bfddc2b7/recipes/rats";
sha256 = "0jhwiq9yzwpyqhk3c32vqx8nryingzh58psxbzjl3812b7xdqphr";
name = "rats";
};
@@ -23373,7 +23825,7 @@
sha256 = "09c6v4lnv6vm2cckbdpx2fdi9xkz9l68qvhx35vaawxhrkgvypzp";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/rbenv";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/56d330fdd9e3b2cf3afc808190efebcc4cb1456d/recipes/rbenv";
sha256 = "09nw7sz6rdgs7hdw517qwgzgyrdmxb16sgldfkifk41rhiyqhr65";
name = "rbenv";
};
@@ -23394,7 +23846,7 @@
sha256 = "1kwn33rxaqik5jls66c2indvswhwmxdmd60n7a1h9siqm5qhy9d6";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/rcirc-styles";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/10771a996c8a9dc1eb211cddff53db7b2b01e00b/recipes/rcirc-styles";
sha256 = "01dxhnzsnljig769dk9axdi970b3lw2s6p1z3ljf29qlb5j4548r";
name = "rcirc-styles";
};
@@ -23415,7 +23867,7 @@
sha256 = "1hn5x6kw7xh5wnpwr862584h4vrmvd36vjbshcgwng1qj486m3as";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/rdf-prefix";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/a5f083bd629697038ea6391c7a4eeedc909a5231/recipes/rdf-prefix";
sha256 = "1vxgn5f2kws17ndfdv1vj5p9ks3rp6sikzpc258j07bhsfpjz5qm";
name = "rdf-prefix";
};
@@ -23436,7 +23888,7 @@
sha256 = "1ka5q2q18hgh7wl5yn04489121bq4nx369rz8nb7dr5l14cas0xm";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/real-auto-save";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/525039a3dc29190829bf50d608ef09bc4a8557af/recipes/real-auto-save";
sha256 = "03dbbizpyg62v6zbq8hd16ikrifz8m2bdlbb3g67f2834xqmxha8";
name = "real-auto-save";
};
@@ -23457,7 +23909,7 @@
sha256 = "07j1grdbqv3iv5ghmgsjw678bxjajcxi27clz4krcz3ys5b1h70v";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/realgud";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/7ca56f05df6c8430a5cbdc55caac58ba79ed6ce5/recipes/realgud";
sha256 = "0qmvd35ng1aqclwj3pskn58c0fi98kvx9666wp3smgj3n88vgy15";
name = "realgud";
};
@@ -23478,7 +23930,7 @@
sha256 = "114ssmby614xjs7mrpbbsdd4gj5ra6klfh8h6z8iij8xn3kii83q";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/recover-buffers";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/43b33cfb794c35de78fde6eabb71ffe01049d23d/recipes/recover-buffers";
sha256 = "0g40d7440hzlc9b45v63ng0anvmgip4dhbd9wcm2sn8qjfr4w11b";
name = "recover-buffers";
};
@@ -23499,7 +23951,7 @@
sha256 = "1vpsihrl03hkd6n6b7mrjccm0a023qf3154a8rw4chihikxw27pj";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/rect+";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/c8c1cd81f0e764a7cfc2f3f96574898ff414beb4/recipes/rect+";
sha256 = "0vk0jwpl6yp2md9nh0ghp2qn883a8lr3cq8c9mgq0g552dwdiv5m";
name = "rect-plus";
};
@@ -23520,7 +23972,7 @@
sha256 = "048pjrd04w6w4v6r56yblbqgkjh01xib7k1i6rjc6288jh5vr1vm";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/rectangle-utils";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/1852b75c82822e97c39b7c7caeb2a32246171be4/recipes/rectangle-utils";
sha256 = "1w5z2gykydsfp30ahqjihpvq04c5v0cfslbrrg429hycys8apws7";
name = "rectangle-utils";
};
@@ -23533,15 +23985,15 @@
redpen-paragraph = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, json ? null, lib, melpaBuild }:
melpaBuild {
pname = "redpen-paragraph";
- version = "0.41";
+ version = "0.42";
src = fetchFromGitHub {
owner = "karronoli";
repo = "redpen-paragraph.el";
- rev = "cbfef789d474258df85ff58b24e2ab54acd11cc4";
- sha256 = "1j9zvkfxccwzr8adxikw450xv0kc2a4j8rskbfqlmsylrpniszqm";
+ rev = "f9569bc8e2993dea0f83cba5738a35ce32f82424";
+ sha256 = "087dq9h8i8cjwm8x2s33xrwnnxjpjcmddy2624z00s1ip0dh5ham";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/redpen-paragraph";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/7e6b187bfc14f3affbe2d8d1cb854abe69deb15b/recipes/redpen-paragraph";
sha256 = "0jr707ik6fhznq0q421l986w85ah0n9b4is91zrgbk1v6miqrhca";
name = "redpen-paragraph";
};
@@ -23562,7 +24014,7 @@
sha256 = "0q4a4iznk6xk680xnvly69j8w1dac79qxlycwrfki6msnkagyn9p";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/redtick";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/3187bd436541e2a5c2b28de67c62f5d5165af737/recipes/redtick";
sha256 = "1a9rviz0hg6vlh2jc04g6vslyf9n89xglcz9cb79vf10hhr6igrb";
name = "redtick";
};
@@ -23583,7 +24035,7 @@
sha256 = "1r8fhs7d2vkrbv15ic2bm79i9a8swbc38vk566vnxkhl3rfd5a0a";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/relative-line-numbers";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/4a2901c841d221bd782dae9059a070ae8130e1ae/recipes/relative-line-numbers";
sha256 = "0mj1w5a4ax8hwz41vn02bacxlnifd14hvf3p288ljvwchvlf0hn3";
name = "relative-line-numbers";
};
@@ -23604,7 +24056,7 @@
sha256 = "0lqbhwi1f8b4sv9p1rf0gyjllk0l7g6v6mlws496079wxx1n5j66";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/relax";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/67247451b39461db4a5fcff3827a09f53f9fc8ec/recipes/relax";
sha256 = "0gfr4ym6aakawhkfz40ar2n0rfz503hq428yj6rbf7jmq3ajaysk";
name = "relax";
};
@@ -23625,7 +24077,7 @@
sha256 = "007lqahjbig6yygqik6fgbq114784z6l40a3vrc4qs9361zqizck";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/repeatable-motion";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/0dd56ebaea098715b9c201f07e6196c38977f8e3/recipes/repeatable-motion";
sha256 = "12z4z8apd8ksf6dfvqm54l71mx68j0yg4hrjypa9p77fpcd6p0zw";
name = "repeatable-motion";
};
@@ -23646,7 +24098,7 @@
sha256 = "12wylmyz54n1f3kaw9clhvs66dg43xvcvll4pl5ii0ibfv6pls1b";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/repl-toggle";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/da4be8c67584ea0ae35c7c9ee33334db5061a538/recipes/repl-toggle";
sha256 = "1jyaksxgyygfv1wn9c6y8sykb4hicwgs9n5vrdikd2i0iix29zpb";
name = "repl-toggle";
};
@@ -23667,7 +24119,7 @@
sha256 = "178y1cmpdb2r72igx8j4l7pyhs1idw56j6hg5h8r9a2p99lkgjjc";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/replace-symbol";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/377b6ff2b785f6d87adf1e23a5b0ce02881fc5c9/recipes/replace-symbol";
sha256 = "07ljmw6aw9hsqffhwmiq2pvhry27acg6f4vgxgi91vjr8jj3r4ng";
name = "replace-symbol";
};
@@ -23688,7 +24140,7 @@
sha256 = "0hs80g3npgb6qfcaivdfkpsc9mss1kdmyp5j7s922qcy2k4yxmgl";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/repo";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/1729d4ea9498549fff3594b971fcde5f81592f84/recipes/repo";
sha256 = "0z4lcswh0c6xnsxlv33bsxh0nh26ydzfl8sv8xabdp5a2gk6bhpb";
name = "repo";
};
@@ -23709,7 +24161,7 @@
sha256 = "1xzp2hnkr9lsjx50cxlpki9mvyhjsv0vyc77480jrlnpspakj7qs";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/req-package";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/f58a801f0791566d0c39493a5f82ff0d15d7ab41/recipes/req-package";
sha256 = "1438f60dnmc3a2dh6hd0wslrh25nd3af797aif70kv6qc71h87vf";
name = "req-package";
};
@@ -23730,7 +24182,7 @@
sha256 = "0rpw9is8sx2gmbc7l6mv5qdd0jrh497lyj5f0zx0lqwjl8imw401";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/request";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/8d113615dde757a60ce91e156f0714a1394c4bfc/recipes/request";
sha256 = "0h4jqg98px9dqqvjp08vi2z1lhmk0ca59lnrcl96bi7gkkj3jiji";
name = "request";
};
@@ -23751,7 +24203,7 @@
sha256 = "0rpw9is8sx2gmbc7l6mv5qdd0jrh497lyj5f0zx0lqwjl8imw401";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/request-deferred";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/8d113615dde757a60ce91e156f0714a1394c4bfc/recipes/request-deferred";
sha256 = "1dcxqnzmvddk61dzmfx8vjbzd8m44lscr3pjdp3r7211zhwfk40n";
name = "request-deferred";
};
@@ -23772,7 +24224,7 @@
sha256 = "1b832r7779rmr6rhzj7klc0l5xzwc4rids87g2hczpb5dhqnchca";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/requirejs";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/a6a710c0d5ab34c52498c4154deebb779052aa01/recipes/requirejs";
sha256 = "09z6r9wcag3gj075wq215zcslyknl1izap595rn48xvizxi06c6k";
name = "requirejs";
};
@@ -23793,7 +24245,7 @@
sha256 = "1ps9l6q6hgzzaywkig0gjjdlsir9avxghynzx9a3q6h0fpdkpgrj";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/resize-window";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/601a8d8f9046db6c4d50af983a11fa2501304028/recipes/resize-window";
sha256 = "0h1hlj50hc97wxqpnmvg6w3qhdd9nbnb8r8v39ylv87zqjcmlp8l";
name = "resize-window";
};
@@ -23814,7 +24266,7 @@
sha256 = "0y4ga1lj2x2f0r535ivs09m2l0q76iz72w42wknhsw9lmdsyl5nz";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/restart-emacs";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/b9faeb6d910d686cbcafe7d12e0bcf62a85689bd/recipes/restart-emacs";
sha256 = "03aabz7fmy99nwimvjn7qz6pvc94i470hfgiwmjz3348cw02k0n6";
name = "restart-emacs";
};
@@ -23827,15 +24279,15 @@
restclient-test = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, restclient }:
melpaBuild {
pname = "restclient-test";
- version = "0.1";
+ version = "0.2";
src = fetchFromGitHub {
owner = "simenheg";
repo = "restclient-test.el";
- rev = "9bc10bb9ae6e9341dec39f5cd8b78da0bd8db2c2";
- sha256 = "1z4ackggrw428f9f7bd02by4fw34bwndv2i4v7cj80c533mfwy9f";
+ rev = "a21e41b905b423e762eeb4da3a236c8b1aea8c49";
+ sha256 = "1lan49723rpzg1q7w8x3iggazwl4zirq5l8nhpb8m5hmg21a4kih";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/restclient-test";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/82e3078fc1f96d276fd288c3d7b91df5df4717a6/recipes/restclient-test";
sha256 = "0g26z5p9fq7fm6bgrwaszya5xmhsgzcn1p7zqr83w74fbw6bcl39";
name = "restclient-test";
};
@@ -23856,7 +24308,7 @@
sha256 = "1q13cgpz4wzhnqv84ablawy3y2wgdwy46sp7454mmfx9m77jzb2v";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/reveal-in-osx-finder";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/2bf40285279b761b0efd6bc8542ae9aad4b329e1/recipes/reveal-in-osx-finder";
sha256 = "00jgrmh5s3vlpj1jjf8l3c3h4hjk5x781m95sidw6chimizvfmfc";
name = "reveal-in-osx-finder";
};
@@ -23877,7 +24329,7 @@
sha256 = "15xnz4fi22wsximimwmirlz11v4ksfj8nilyjfw6acd92yrhzg6h";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/reverse-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/81f0f525680fea98e804f39dbde1dada887e8821/recipes/reverse-theme";
sha256 = "163kk5qnz9bk3l2fam79n264s764jfxbwqbiwgid8kw9cmk0v776";
name = "reverse-theme";
};
@@ -23898,7 +24350,7 @@
sha256 = "11hwf9y5ax207w6rwrsmi3pmn7pn7ap6iys0z8hni2f5zzxjrmx3";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/rich-minority";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/1e6aed365c42987d64d0cd9a8a6178339b1b39e8/recipes/rich-minority";
sha256 = "11xd76w5k3b3q5bxqjb55vi6dsal9drvyc1nh7z83awm59hvgczc";
name = "rich-minority";
};
@@ -23919,7 +24371,7 @@
sha256 = "0p044wg9d4i6f5x7bdshmisgwvw424y16lixac93q6v5bh3xmab5";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/rigid-tabs";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/689b0060ee5db505fc0ed4603aca204b2d3c63a2/recipes/rigid-tabs";
sha256 = "06n0bcvc3nnp84pcq3lywwga7l92jz8hnkilhbq59kydf5zbjldp";
name = "rigid-tabs";
};
@@ -23940,7 +24392,7 @@
sha256 = "1wqhqv2fc5h10igv1php51bayx0s7qw4m9gzx9by80dab8lwa0vk";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/rinari";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/4b243a909faa71e14ee7ca4f307df8e8136e5d7c/recipes/rinari";
sha256 = "0qknicg3vzl7zbkwsdvp10hrvlng6mbi8hgslx4ir522dflrf9p0";
name = "rinari";
};
@@ -23961,7 +24413,7 @@
sha256 = "1drvyf5asjp3lgpss7llff35q8r89vmh73n1axaj2qp9jx5a5jih";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/rnc-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/e12b048692ceb145cfbe1a03ecc2714f7bfc3bad/recipes/rnc-mode";
sha256 = "09ly7ln6qrcmmim9bl7kd50h4axrhy6ig406r352xm4a9zc8n22q";
name = "rnc-mode";
};
@@ -23982,7 +24434,7 @@
sha256 = "01xd3nc7bmf4r4d37x08rw2dlsg6gns8mraahi4rwkg6a9lwl44n";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/robe";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/673f920d02fe761bc080b73db7d37dbf5b6d86d8/recipes/robe";
sha256 = "19py2lwi7maya90kh1mgwqb16j72f7gm05dwla6xrzq1aks18wrk";
name = "robe";
};
@@ -24003,7 +24455,7 @@
sha256 = "0dimmdz4aqcif4lp23nqxfg7kngzym2yivn6h3p7bn1821vgzq9s";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/robots-txt-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/1669c7a0d89ea36d61bfa57ef54ee1f203daff5f/recipes/robots-txt-mode";
sha256 = "1q3fqaf9nysy9bhx4h9idgshxr65hfwnx05vlwazx7jd6bq6kxfh";
name = "robots-txt-mode";
};
@@ -24024,7 +24476,7 @@
sha256 = "0rgv4y9aa5cc2ddz3y5z8d22xmr8kf5c60h0r3g8h91jmcw3rb4z";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/roguel-ike";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/2db1979e039e466268ca7c264988792d3046e19a/recipes/roguel-ike";
sha256 = "1a7sa6nhgi0s4gjh55bhk5cg6q6s7564fk008ibmrm05gfq9wlg8";
name = "roguel-ike";
};
@@ -24045,7 +24497,7 @@
sha256 = "0x3mmf4gq4d0cqfqbkrrpwhayvmplacck0zc9nlzcn35y17jzpcz";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/rope-read-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/14a674559aa485e92357a8b941304ae8167b9c3e/recipes/rope-read-mode";
sha256 = "0grnn5k6rbck0hz4c6cadgj3a4dv62habyingznisg2kx9i3m0dw";
name = "rope-read-mode";
};
@@ -24066,7 +24518,7 @@
sha256 = "0mfkq8n28lal4lqwp6v0ilz8wrwgg61sbm0jggznwisjqqy3lzrh";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/rsense";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/e2149ce3baef9ac01d5b2e8b1a933a3e1206015f/recipes/rsense";
sha256 = "1901xqlpc8fg4sl9j58jn40i2djs8s0cdcqcrzrq02lvk8ssfdf5";
name = "rsense";
};
@@ -24087,7 +24539,7 @@
sha256 = "0hrn5n7aaymwimk511kjij44vqaxbmhly1gwmlmsrnbvvma7f2mp";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/rspec-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/cd83e61b10da20198de990aa081b47d3b0b44d43/recipes/rspec-mode";
sha256 = "0nyib9rx9w9cbsgkcjx9n8fp77xkzxg923z0rdm3f9kc7njcn0zx";
name = "rspec-mode";
};
@@ -24108,7 +24560,7 @@
sha256 = "0pir76xhi58nqfmjcijn5s7dz3pjjz43g97hh7sd1m32s8saddm1";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/rtags";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/ac3b84fe84a7f57d09f1a303d8947ef19aaf02fb/recipes/rtags";
sha256 = "08clwydx2b9cl4wv61b0p564jpvq7gzkrlcdkchpi4yz6djbp0lw";
name = "rtags";
};
@@ -24129,7 +24581,7 @@
sha256 = "10djjp1520xc05qkciaiaiiciscaln6c74h7ymba40mvzlf67y9q";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/rubocop";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/00f2cf3e8e28bce5c26c86aba54390ffff48d7da/recipes/rubocop";
sha256 = "114azl0fasmnq0fxxyiif3363mpg8qz3ynx91in5acqzh902fa3q";
name = "rubocop";
};
@@ -24150,7 +24602,7 @@
sha256 = "1wqhqv2fc5h10igv1php51bayx0s7qw4m9gzx9by80dab8lwa0vk";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ruby-compilation";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/ca7bf43ef8893bf04e9658390e306ef69e80a156/recipes/ruby-compilation";
sha256 = "1x1vpkjpx95sfcjhkx4cafypj0nkbd1i0mzxx3lmcrsmg8iv0rjc";
name = "ruby-compilation";
};
@@ -24171,7 +24623,7 @@
sha256 = "1cpz9vkp57nk682c5xm20g7bfj5g2aq5ahpk4nhgx7pvd3xvr1ds";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ruby-end";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/7fabdb05de9b8ec18a3a566f99688b50443b6b44/recipes/ruby-end";
sha256 = "1cnmdlkhm8xsifbjs6ymvi92gdnxiaghb04h10qg41phj6v7m9mg";
name = "ruby-end";
};
@@ -24192,7 +24644,7 @@
sha256 = "01n9j7sag49m4bdl6065jklnxnc5kck51izg884s1is459qgy86k";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ruby-hash-syntax";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/c7d21a43a4bf267507bdc746ec9d0fd82049c0af/recipes/ruby-hash-syntax";
sha256 = "0bvwyagfh7mn457iibrpv1ay75089gp8pg608gbm24m0ix82xvb5";
name = "ruby-hash-syntax";
};
@@ -24213,7 +24665,7 @@
sha256 = "008zj9rg2cmh0xd7g6kgx6snm5sspxs4jmfa8hd43wx5y9pmlb8f";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ruby-test-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/746e0e49a24f16baa5f1cc7f11220766ecf9f1fe/recipes/ruby-test-mode";
sha256 = "113ysf08bfh2ipk55f8h741j05999yrgx57mzh53rim5n63a312w";
name = "ruby-test-mode";
};
@@ -24234,7 +24686,7 @@
sha256 = "1zvhq9l717rjgkm7bxz5gqkmh5i49cshwzlimb3h78kpjw3hxl2k";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ruby-tools";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/7fabdb05de9b8ec18a3a566f99688b50443b6b44/recipes/ruby-tools";
sha256 = "0zpk55rkrqyangyyljxzf0n1icgqnpdzycwack5rji556h5grvjy";
name = "ruby-tools";
};
@@ -24255,7 +24707,7 @@
sha256 = "1v2qr58n0rfb21dzcw6vlxwpvpmwnmgwrk32mzw32k08yappqjn6";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/runner";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/f3a4e051ab45b8036b91aa0c50bd3f93cd85e9d0/recipes/runner";
sha256 = "09apmk22swj05z77ziij31jj6b3g221qv3mw3mymffzxn5ap2rbx";
name = "runner";
};
@@ -24276,7 +24728,7 @@
sha256 = "0iblk0vagjcg3c8q9hlpwk7426ms7aq0s80izgvascfmyqycv6qm";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/rvm";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/cae2ac3513e371a256be0f1a7468e38e686c2487/recipes/rvm";
sha256 = "08i7cmav2cz73jp88ww0ay2yjhk9dj8146836q4sij1bl1slbaf8";
name = "rvm";
};
@@ -24297,7 +24749,7 @@
sha256 = "08vf62fcrnbmf2ppb759kzznjdz8x72fqdwbc4n8nbswrwgm2ikl";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/s";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/d6e5137dac9f8f95579994601cb1e24614f965f2/recipes/s";
sha256 = "0b2lj6nj08pk5fnxvjkc1d9hvi29rnjjy4n5ns4pq6wxpfnlcw64";
name = "s";
};
@@ -24318,7 +24770,7 @@
sha256 = "06gqqbkn85l2p05whmr4wkg9axqyzb7r7sgm3r8wfshm99kgpxvl";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/sackspace";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/073e92e05c4bd6197a5ad24f470b21a97f5bb7b8/recipes/sackspace";
sha256 = "1m10iw83k6m7v7sg2dxzdy83zxq6svk8h9fh4ankyn3baqrdxg5z";
name = "sackspace";
};
@@ -24339,7 +24791,7 @@
sha256 = "1124akipvrcmkd66slklgap2jdvb8iksldd8sjvg9n25kp0wd0vr";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/sage-shell-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/ff7cefd5497aec9ed271fd783625fed445c4ac12/recipes/sage-shell-mode";
sha256 = "18k7yh8rczng0kn2wsawjml70cb5bnc5jr2gj0hini5f7jq449wx";
name = "sage-shell-mode";
};
@@ -24360,7 +24812,7 @@
sha256 = "0lxrq3mzabkwj5bv0mgd7fnx3dsx8vxd5kjgb79rjfra0m7pfgln";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/sass-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/cae2ac3513e371a256be0f1a7468e38e686c2487/recipes/sass-mode";
sha256 = "1byjk5zpzjlyiwkp780c4kh7s9l56y686sxji89wc59d19rp8800";
name = "sass-mode";
};
@@ -24381,7 +24833,7 @@
sha256 = "1mcag7qad1npjn096byakb8pmmi2g64nlf2vcc12irzmwia85fml";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/sauron";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/9d30dcc4715422133e1bb00ad7a8e25b060387e4/recipes/sauron";
sha256 = "01fk1xfh7r16fb1xg5ibbs7gci9dja49msdlf7964hiq7pnnhxgb";
name = "sauron";
};
@@ -24402,7 +24854,7 @@
sha256 = "1gkzgcnh5ib4j5206mx8gbwj5ykay19vqlfg9070m2r09d1a55qf";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/say-what-im-doing";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/4d22ddcd4ad9514fe0c36f299e7463a4b7e771d7/recipes/say-what-im-doing";
sha256 = "1hgh842f7gs2sxy7s6zq57nsqy4jjlnjcga6hwzcx0kw3albgz7x";
name = "say-what-im-doing";
};
@@ -24423,7 +24875,7 @@
sha256 = "1lvf7y1n63p8jvnp6ppwmxq2s6h9sk45319576f3s28ixsfa6cp2";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/sbt-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/364abdc3829fc12e19f00b534565227dbc30baad/recipes/sbt-mode";
sha256 = "0v0n70czgkdijnw5jd4na41vlrmqcshvr8gdpv0bv55ilqhiihc8";
name = "sbt-mode";
};
@@ -24444,7 +24896,7 @@
sha256 = "1ayqdmnp38wvhi3a8r8wivn4z8v6irbz0kwqvgsnpq6m2s3jsbz9";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/scala-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/564aa1637485192a97803af46b3a1f8e0d042c9a/recipes/scala-mode";
sha256 = "12x377iw085fbkjb034dmcsbi7hma17zkkmbgrhkvfkz8pbgaic8";
name = "scala-mode";
};
@@ -24465,7 +24917,7 @@
sha256 = "13s8hp16wxd9fb8gf05dn0xr692kkgiqg7v49fgr00gas4xgpfpm";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/scpaste";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/9007fb32097bc63731c3615dae9342fcef2558a2/recipes/scpaste";
sha256 = "02dqmx6v3jxdn5yz1z74624sc6sz2bm4qjyi78w9akhp2jplwlk1";
name = "scpaste";
};
@@ -24486,7 +24938,7 @@
sha256 = "0zpjf9cp8g4rgnwgmhlpwnanf9lzqm3rm1mkihf0gk5qzxvwsdh9";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/scss-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/cae2ac3513e371a256be0f1a7468e38e686c2487/recipes/scss-mode";
sha256 = "1g27xnp6bjaicxjlb9m0njc6fg962j3hlvvzmxvmyk7gsdgcgpkv";
name = "scss-mode";
};
@@ -24507,7 +24959,7 @@
sha256 = "08yc67a4ji7z8s0zh500wiscziqsxi92i1d33fjla2mcr8sxxn0i";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/search-web";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/1f1a3697649ccf69c8eb177c31ec4246b98f503b/recipes/search-web";
sha256 = "0qqx9l8dn1as4gqpq80jfacn6lz0132m91pjzxv0fx6al2iz0m36";
name = "search-web";
};
@@ -24528,7 +24980,7 @@
sha256 = "0nsm7z056rh32sq7abgdwyaz4dbz8v9pgbha5jvpk7y0zmnabrgs";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/sekka";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/350bbb5761b5ba69aeb4acf6d7cdf2256dba95a6/recipes/sekka";
sha256 = "1jj4ly9p7m3xvb31nfn171lbpm9y70y8cbf8p24w0fhv665dx0cp";
name = "sekka";
};
@@ -24549,7 +25001,7 @@
sha256 = "1c9yv1kjcd0jrzgw99q9p4kzj980f261mjcsggbcw806wb0iw1xn";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/select-themes";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/e4e7d01da10a1a1f7fe563031af5d3f9694cea33/recipes/select-themes";
sha256 = "18ydv7240vcqppg1i7n8sy18hy0lhpxz17947kxs7mvj4rl4wd84";
name = "select-themes";
};
@@ -24570,7 +25022,7 @@
sha256 = "18xdkisxvdizsk51pnyimp9mwc6k9cpcxqr5hgndkz9q97p5dp79";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/selectric-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/08922071b9854142eab726302e75f1db2d326ec5/recipes/selectric-mode";
sha256 = "1k4l0lr68rqyi37wvqp1cnfci6jfkz0gvrd1hwbgx04cjgmz56n4";
name = "selectric-mode";
};
@@ -24591,7 +25043,7 @@
sha256 = "15lx6qvmq3vp84ys8dzbx1nzxcnzlq41whawc2yhrnd1dbq4mv2d";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/servant";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/7fabdb05de9b8ec18a3a566f99688b50443b6b44/recipes/servant";
sha256 = "0h8xsg37cvc5r8vkclf7d3gbf6gh4k5pmbiyhwpkbrxwjyl1sl21";
name = "servant";
};
@@ -24612,7 +25064,7 @@
sha256 = "1h58q41wixjlapia1ggf83jxcllq7492k55mc0fq7hbx3hw1q1y2";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/serverspec";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/5a4f4757d8886d178a85d4bc8ac9399a99d8c4d4/recipes/serverspec";
sha256 = "001d57yd0wmz4d7qmhnanac8g29wls0sqw194003hrgirakg82id";
name = "serverspec";
};
@@ -24633,7 +25085,7 @@
sha256 = "0sp952abz7dkq8b8kkzzmnwnkq5w15zsx5dr3h8lzxb92lnank9v";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/session";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/5f2a50f62475639af011c99c6cc38928b74b3b0a/recipes/session";
sha256 = "0fghxbnf1d5iyrx1q8xd0lbw9nvkdgg2v2f89j6apnawisrsbhwx";
name = "session";
};
@@ -24654,7 +25106,7 @@
sha256 = "11h5z2gmwq07c4gqzj2c9apksvqk3k8kpbb9kg78bbif2xfajr3m";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/sexp-move";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/69270c79b47b7d9348bd2ca9fec3aabfd7e694b3/recipes/sexp-move";
sha256 = "0lcxmr2xqh8z7xinxbv1wyrh786zlahhhj5nnbv83i8m23i3ymmd";
name = "sexp-move";
};
@@ -24675,7 +25127,7 @@
sha256 = "0yy162sz7vwj0i9w687a5x1c2fq31vc3i6gqhbywspviczdp4q1y";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/shackle";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/806e7d00f763f3fc4e3b8ebd483070ac6c5d0f21/recipes/shackle";
sha256 = "159z0cwg7afrmym0xk902d8z093sqv39jig25ds7z4a224yrv5w6";
name = "shackle";
};
@@ -24696,7 +25148,7 @@
sha256 = "0vkxl3w4y4yacs1s4v0gwggvzrss8g74d3dgk8h3gphl4dlgx496";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/shakespeare-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/b1c547d37422998c01a610f88d62784fbca33523/recipes/shakespeare-mode";
sha256 = "1i9fr9l3x7pwph654hqd8s74swy5gmn3wzs85a2ibmpcjq8mz9rd";
name = "shakespeare-mode";
};
@@ -24717,7 +25169,7 @@
sha256 = "11g9lsgakq8nf689k49p9l536ffi62g3bh11mh9ix1l058xamqw2";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/shampoo";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/19f145113a0698466e706a6a4c55d63cec512706/recipes/shampoo";
sha256 = "01ssgw4cnnx8d86g3r1d5hqcib4qyhmpqvcvx47xs7zh0jscps61";
name = "shampoo";
};
@@ -24738,7 +25190,7 @@
sha256 = "0fzywfdaisvvdbcl813n1shz0r8v1k9kcgxgynv5l0i4nkrgkww5";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/shell-pop";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/44150bddc9b276ab9fb2ab6a92a11383a3ed03b0/recipes/shell-pop";
sha256 = "02s17ln0hbi9gy3di8fksp3mqc7d8ahhf5vwyz4vrc1bg77glxw8";
name = "shell-pop";
};
@@ -24759,7 +25211,7 @@
sha256 = "0mcxp74sk9bn36gbhhimgns07iqa4dgbq2pvpqy41igqwb84w306";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/shell-split-string";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/84e20f4d02c69f8caf39cd20a581be3b9fa79931/recipes/shell-split-string";
sha256 = "1yj1h7za4ylxh2nikj7s1qqlilpsk05x9571a2fymfyznm3iq77m";
name = "shell-split-string";
};
@@ -24780,7 +25232,7 @@
sha256 = "0ia7sdip4hl27avckv3qpqgm3k4ynvp3xxq1cy53bqfzzx0gcria";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/shell-switcher";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/a16194f6ddc05350b9875f4e0a3a0383c79e650e/recipes/shell-switcher";
sha256 = "07g9naiv2jk9jxwjywrbb05dy0pbfdx6g8pkra38rn3vqrjzvhyx";
name = "shell-switcher";
};
@@ -24801,7 +25253,7 @@
sha256 = "0wvaa5nrbblayjvzjyj6cd942ywg7xz5d8fqaffxcvwlcdihvm7q";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/shell-toggle";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/95873d90886d2db5cc1d83d4bcb8dd5c2e65bc3e/recipes/shell-toggle";
sha256 = "1ai0ks7smr8b221j9hmsikswpxqraa9b13fpwv4wwagavnlah446";
name = "shell-toggle";
};
@@ -24822,7 +25274,7 @@
sha256 = "1nli26llyfkj1cz2dwn18c5pz1pnpz3866hapfibvdmwrg4z6cax";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/shelldoc";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/551623175e55629be6cfe44a595f25f09bd889e8/recipes/shelldoc";
sha256 = "1xlp03aaidp7dp8349v8drzhl4lcngvxgdrwwn9cahfqlrvvbbbx";
name = "shelldoc";
};
@@ -24843,7 +25295,7 @@
sha256 = "0mn7bwvj1yv75a2531jp929j6ypckdfqdg6b5ig0kkbcrrwb7kxs";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/shelltest-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/af6dcd4fc0663a255bd85b247bbdf57d425efdb7/recipes/shelltest-mode";
sha256 = "1inb0vq34fbwkr0jg4dv2lljag8djggi8kyssrzhfawri50m81nh";
name = "shelltest-mode";
};
@@ -24864,7 +25316,7 @@
sha256 = "0zlwmzsxkv4mkggylxfx2fkrwgz7dz3zbg2gkn2rxcpy2k2gla64";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/shift-number";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/b06be6b25078ddfabc1ef1145c817552f679c41c/recipes/shift-number";
sha256 = "1sbzkmd336d0dcdpk29pzk2b5bhlahrn083x62l6m150n2xzxn4p";
name = "shift-number";
};
@@ -24885,7 +25337,7 @@
sha256 = "1vf766ja8f4xp1f5pmwgz6a85km0nxvc5dn571lwidfrrdbr9rkk";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/shm";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/68a2fddb7e000487f022b3827a7de9808ae73e2a/recipes/shm";
sha256 = "1qmp8cc83dcz25xbyqd4987i0d8ywvh16wq2wfs4km3ia8a2vi3c";
name = "shm";
};
@@ -24906,7 +25358,7 @@
sha256 = "09454mcjd8n1090pjc5mk1dc6bn3bgh60ddpnv9hkajkzpcjxx4h";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/shpec-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/dd1bfe85b430c3bbb5a7baf11bb9699dad417f60/recipes/shpec-mode";
sha256 = "155hc1nym3fsvflps8d3ixaqw1cafqp97zcaywdppp47n7vj8zjl";
name = "shpec-mode";
};
@@ -24927,7 +25379,7 @@
sha256 = "050gmxdk88zlfjwi07jsj2mvsfcv5imhzcpa6ip3cqkzpmw3pl32";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/shrink-whitespace";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/97fe5a411be1a7d80d50f5a8af44b74c6c7cf9e6/recipes/shrink-whitespace";
sha256 = "12if0000i3rrxcm732layrv2h464wbb4xflbbfc844c83dbx1jmq";
name = "shrink-whitespace";
};
@@ -24948,7 +25400,7 @@
sha256 = "103yvfgkj78i4bnv1fwk76izsa8h4wyj3vwj1vq7xggj607hkxzq";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/shut-up";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/297d3d88a1dad694d5903072adb679f2194ce444/recipes/shut-up";
sha256 = "1bcqrnnafnimfcg1s7vrgq4cb4rxi5sgpd92jj7xywvkalr3kh26";
name = "shut-up";
};
@@ -24969,7 +25421,7 @@
sha256 = "1ma6djvhvjai07v1g9a36lfa3nw8zsy6x5vliwcdnkf44gs287ra";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/sift";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/a730e1331b0486c4bd2d309b85d2f8810489eb47/recipes/sift";
sha256 = "0mv5zk140kjilwvzccj75ym7wlkkqryb532mbsy7i9bs3q7m916d";
name = "sift";
};
@@ -24979,6 +25431,27 @@
license = lib.licenses.free;
};
}) {};
+ simple-bookmarks = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }:
+ melpaBuild {
+ pname = "simple-bookmarks";
+ version = "1.6";
+ src = fetchFromGitHub {
+ owner = "jtkDvlp";
+ repo = "simple-bookmarks";
+ rev = "ef14b49f168caf45be34698d851a061da1f74208";
+ sha256 = "1x1zn4f4k7il8h331lva5gw9vscpw2c7310apn1xwhyj7hz47mf2";
+ };
+ recipeFile = fetchurl {
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/a60dd50c388a75ce21a5aec9acf938835d7afdbc/recipes/simple-bookmarks";
+ sha256 = "0jn5wzm9y4054mr9czd3224s5kbrqpcpcfmj6fi62yhy3p1ys9rb";
+ name = "simple-bookmarks";
+ };
+ packageRequires = [ cl-lib ];
+ meta = {
+ homepage = "https://melpa.org/#/simple-bookmarks";
+ license = lib.licenses.free;
+ };
+ }) {};
simple-httpd = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "simple-httpd";
@@ -24990,7 +25463,7 @@
sha256 = "1qmkc0w28l53zzf5yd2grrk1sq222g5qnsm35ph25s1cfvc1qb2g";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/simple-httpd";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/7fabdb05de9b8ec18a3a566f99688b50443b6b44/recipes/simple-httpd";
sha256 = "1g9m8dx62pql6dqz490pifcli96i5pv6sar18w4lwrfgpfisfz8c";
name = "simple-httpd";
};
@@ -25011,7 +25484,7 @@
sha256 = "0v0vmkix9f0hb2183irr6xra8mwi47g6rn843sas7jy2ycaqd91v";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/simpleclip";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/7c921e27d6aafc1b82d37f6beb8407840034377a/recipes/simpleclip";
sha256 = "07qkfwlg8vw5kb097qbsv082hxir047q2bcvc8scbak2dr6pl12s";
name = "simpleclip";
};
@@ -25032,7 +25505,7 @@
sha256 = "04giklbd1fsw2zysr7aqg17h6cpyn4i9jbknm4d4v6581f2pcl93";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/simplenote2";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/1ac16abd2ce075a8bed4b7b52aed71cb12b38518/recipes/simplenote2";
sha256 = "1qdzbwhzmsga65wmrd0mb3rbs71nlyqqb6f4v7kvfxzyis50cswm";
name = "simplenote2";
};
@@ -25053,7 +25526,7 @@
sha256 = "1p1771qm3jndnf4rdhb1bri5cjiksvxizagi7vfb7mjmsmx18w61";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/simplezen";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/eddd3de86e14f56b59fa6f9a08fc89288e0bdbc1/recipes/simplezen";
sha256 = "13f2anhfsxmx1vdd209gxkhpywsi3nn6pazhc6bkswmn27yiig7j";
name = "simplezen";
};
@@ -25074,7 +25547,7 @@
sha256 = "101xn4glqi7b5vhdqqahj2ib4pm30pzq8sad7zagxw9csihcri3q";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/skeletor";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/1e63aefc869900c2af6f958dc138f9c72c63e2b8/recipes/skeletor";
sha256 = "1vfvg5l12dzksr24dxwc6ngawsqzpxjs97drw48qav9dy1vyl10v";
name = "skeletor";
};
@@ -25095,7 +25568,7 @@
sha256 = "0g5sapd76pjnfhxlw149zj0fpn6l3pz3l8qlcn2c237vm8vn6qv3";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/skewer-less";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/fb63f7417f39bd718972f54e57360708eb48b977/recipes/skewer-less";
sha256 = "0fhv5cnp5bgw3krfmb0jl18kw2hzx2p81falj57lg3p8rn23dryl";
name = "skewer-less";
};
@@ -25116,7 +25589,7 @@
sha256 = "05jndz0c26q60s416vqgvr66axdmxb7qsr2g70fvl5iqavnayhpv";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/skewer-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/10fba4f7935c78c4fc5eee7dbb161173dea884ba/recipes/skewer-mode";
sha256 = "1zp4myi9f7pw6zkgc0xg12585iihn7khcsf20pvqyc0vn4ajdwqm";
name = "skewer-mode";
};
@@ -25137,7 +25610,7 @@
sha256 = "09ccdgg2wgw3xmlkpjsaqmnmf7f8rhjy4g6ypsn1sk5rgbgk8aj8";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/slamhound";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/54c191408ceb09ca21ef52df171f02d700aee5ba/recipes/slamhound";
sha256 = "14zlcw0zw86awd6g98l4h2whav9amz4m8ik877d1wsdjf69g7k9x";
name = "slamhound";
};
@@ -25158,7 +25631,7 @@
sha256 = "0rk12am1dq52khwkwrmg70zarhni2avj4sy44jqckb4x7sv7djfk";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/slideview";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/b250f977f44a08346ee9715b416c9706375227a1/recipes/slideview";
sha256 = "0zr08yrnrz49zds1651ysmgjqgbnhfdcqbg90sbsb086iw89rxl1";
name = "slideview";
};
@@ -25179,7 +25652,7 @@
sha256 = "1cl8amk1kc7a953l1khjms04j40mfkpnbsjz3qa123msgachrsg7";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/slim-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/6a3b59bdbc53d7c0b4c4d6434689f7aab2546678/recipes/slim-mode";
sha256 = "1hip0r22irr9sah3b65ky71ic508bhqvj9hj95a81qvy1zi9rcac";
name = "slim-mode";
};
@@ -25200,7 +25673,7 @@
sha256 = "0d1fcjv11my4sa11zim99ylzfsc5q989x4izrrxs3y9ii0nq8kax";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/slime";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/14c60acbfde13d5e9256cea83d4d0d33e037d4b9/recipes/slime";
sha256 = "04zcvjg0bbx5mdbsk9yn7rlprakl89dq6jmnq5v2g0n6q0mh6ign";
name = "slime";
};
@@ -25221,7 +25694,7 @@
sha256 = "0rdhd6kymbzhkc96dxy3nr21ajrkc7iy6zvq1va22r90f96jj9x4";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/slime-company";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/abe5036c6de996a723bc800e0f031314e1188660/recipes/slime-company";
sha256 = "195s5fi2dl3h2jyy4d45q22jac35sciz81n13b4lgw94mkxx4rq2";
name = "slime-company";
};
@@ -25242,7 +25715,7 @@
sha256 = "0swd9rbsag8k18njp741ljg6lmlz949i4bbz5w7bl0spcpc26fs9";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/slime-docker";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/15ec3f7208287161571c8fc3b29369ceabb44e5f/recipes/slime-docker";
sha256 = "13zkkrpww51ndsblpyz2msiwrjnaz6yrk61jbzrwp0r7a2v0djsa";
name = "slime-docker";
};
@@ -25263,7 +25736,7 @@
sha256 = "0lp584k35asqlvbhglv124jazdgp3h7pzl0akfwbdmby9zayqk96";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/slime-ritz";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/669a4ae76deea86084307ac3c2d26072e4b8fe17/recipes/slime-ritz";
sha256 = "1y1439y07l1a0sp9wn110hw4yyxj8n1cnd6h17rmsr549m2qbg1a";
name = "slime-ritz";
};
@@ -25284,7 +25757,7 @@
sha256 = "00v4mh04affd8kkw4rn51djpyga2rb8f63mgy86napglqnkz40r3";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/slime-volleyball";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/853f47f469e372bdbae40f3cea60d9598e966fab/recipes/slime-volleyball";
sha256 = "1dzvj8z3l5l9ixjl3nc3c7zzi23zc2300r7jzw2l3bvg64cfbdg7";
name = "slime-volleyball";
};
@@ -25305,7 +25778,7 @@
sha256 = "1aihr5pbdqjb5j6xsghi7qbrmp46kddv76xmyx5z98m93n70wzqf";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/sly";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/79e7213183df892c5058a766b5805a1854bfbaec/recipes/sly";
sha256 = "1pmyqjk8fdlzwvrlx8h6fq0savksfny78fhmr8r7b07pi20y6n9l";
name = "sly";
};
@@ -25326,7 +25799,7 @@
sha256 = "11p89pz6zmnjng5177w31ilcmifvnhv9mfjy79ic7amg01h09hsr";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/sly-company";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/04867a574773e8794335a2664d4f5e8b243f3ec9/recipes/sly-company";
sha256 = "1n8bx0qis2bs49c589cbh59xcv06r8sx6y4lxprc9pfpycx7h6v2";
name = "sly-company";
};
@@ -25347,7 +25820,7 @@
sha256 = "1176fxrzzk4fyp4wjyp0xyqrga74j5csr5x37mlgplh9790248dx";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/smart-mode-line";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/1e6aed365c42987d64d0cd9a8a6178339b1b39e8/recipes/smart-mode-line";
sha256 = "0qmhzlkc6mfqyaw4jaw6195b8sw0wg9pfjcijb4p0mlywf5mh5q6";
name = "smart-mode-line";
};
@@ -25368,7 +25841,7 @@
sha256 = "1176fxrzzk4fyp4wjyp0xyqrga74j5csr5x37mlgplh9790248dx";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/smart-mode-line-powerline-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/60072b183151e519d141ec559b4902d20c87904c/recipes/smart-mode-line-powerline-theme";
sha256 = "0hv3mx39m3l35xhz351zp98321ilr6qq9wzwn1f0ziiv814khcn4";
name = "smart-mode-line-powerline-theme";
};
@@ -25389,7 +25862,7 @@
sha256 = "1kfihh4s8578cwqyzn5kp3iib7f9vvg6rfc3klqzgads187ryd4z";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/smart-tabs-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/d712f0fb9538945713faf773772bb359fe6f509f/recipes/smart-tabs-mode";
sha256 = "1fmbi0ypzhsizzb1vm92hfaq23swiyiqvg0pmibavzqyc9lczhhl";
name = "smart-tabs-mode";
};
@@ -25410,7 +25883,7 @@
sha256 = "0pvgnfg8a8w7c1nmrwyhfc0j7clzb290kwkid0c8kz275mb9nm3k";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/smartparens";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/bd98f85461ef7134502d4f2aa8ce1bc764f3bda3/recipes/smartparens";
sha256 = "025nfrfw0992024i219jzm4phwf29smc5hib45s6h1s67942mqh6";
name = "smartparens";
};
@@ -25431,7 +25904,7 @@
sha256 = "0j5lg9gryl8vbzw8d3r2fl0c9wxa0c193mcvdfidd25b98wccc3f";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/smartrep";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/81cb649dc49767c21f79668d6bee950567b05aa0/recipes/smartrep";
sha256 = "1ypls52d51lcqhz737rqg73c6jwl6q8b3bwb29z51swyamf37rbn";
name = "smartrep";
};
@@ -25452,7 +25925,7 @@
sha256 = "1sd7dh9114mvr4xnp43xx4b7qmwkaj1a1fv7pwc28fhiy89d2md4";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/smartscan";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/26c73e1d15186ebf300c6397fda61a8a885a130f/recipes/smartscan";
sha256 = "0vghgmx8vnjbvsw7q5zs0qz2wm6dcng9m69b8dq81g2cq9dflbwb";
name = "smartscan";
};
@@ -25462,6 +25935,27 @@
license = lib.licenses.free;
};
}) {};
+ smbc = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
+ melpaBuild {
+ pname = "smbc";
+ version = "0.2";
+ src = fetchFromGitHub {
+ owner = "sakshamsharma";
+ repo = "emacs-smbc";
+ rev = "45c39f82bc11ee157cac242d45f1563ce6160ab5";
+ sha256 = "1qhs6k0bk5spcz81a99nznl0xi4nw7ml048h2gnymdcb3zd4xrfr";
+ };
+ recipeFile = fetchurl {
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/05b4f16cd8028edc758ada842432df11c8276fd3/recipes/smbc";
+ sha256 = "0aviqa8mk8dxxnddfskq9jgz3knqhf0frj7gq7nk6ckxkrxrgqn4";
+ name = "smbc";
+ };
+ packageRequires = [];
+ meta = {
+ homepage = "https://melpa.org/#/smbc";
+ license = lib.licenses.free;
+ };
+ }) {};
smeargle = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "smeargle";
@@ -25473,7 +25967,7 @@
sha256 = "1pcpg3lalbrc24z3vwcaysps8dbdzmncdgqdd5ig6yk2a9wyj9ng";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/smeargle";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/c5b985b24a23499454dc61bf071073df325de571/recipes/smeargle";
sha256 = "1dy87ah1w21csvrkq5icnx7g7g7nxqkcyggxyazqwwxvh2silibd";
name = "smeargle";
};
@@ -25494,7 +25988,7 @@
sha256 = "1hcjh577xz3inx28r8wb4g2b1424ccw8pffvgdmpf80xp1llldj5";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/smex";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/cae2ac3513e371a256be0f1a7468e38e686c2487/recipes/smex";
sha256 = "1rwyi7gdzswafkwpfqd6zkxka1mrf4xz17kld95d2ram6cxl6zda";
name = "smex";
};
@@ -25515,7 +26009,7 @@
sha256 = "1kkg7qhb2lmwr4siiazqny9w2z9nk799lzl5i159lfivlxcgixmk";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/smooth-scroll";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/4ad6411f76281232848c870e8f4f5bb78e6cf328/recipes/smooth-scroll";
sha256 = "1b0mjpd4dqgk7ij37145ry2jqbn1msf8rrvymn7zyckbccg83zsf";
name = "smooth-scroll";
};
@@ -25536,7 +26030,7 @@
sha256 = "1dkqix0iyjyiqf34h3p8faqcpffc0pwkxqqn80ys9jvj4f27kkrg";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/smooth-scrolling";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/e156f146649a51f6ee636aef95214944a8079a27/recipes/smooth-scrolling";
sha256 = "0zy2xsmr05l2narslfgril36d7qfb55f52qm2ki6fy1r18lfiyc6";
name = "smooth-scrolling";
};
@@ -25557,7 +26051,7 @@
sha256 = "12s3ykb2flnbl6kvjn0yy11y0g5nq2k5arpgf7pqwj4wgx0fl8nb";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/snakemake-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/c3a5b51fee1c9e6ce7e21555faa355d118d34b8d/recipes/snakemake-mode";
sha256 = "1xxd3dms5vgvpn18a70wjprka5xvri2pj9cw8qz09s640f5jf3r4";
name = "snakemake-mode";
};
@@ -25578,7 +26072,7 @@
sha256 = "0zcj9jf8nlsj9vms888z2vs76q54n8g8r9sh381xad3x8d6lrlb3";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/solarized-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/cae2ac3513e371a256be0f1a7468e38e686c2487/recipes/solarized-theme";
sha256 = "15d8k32sj8i11806byvf7r57rivz391ljr0zb4dx8n8vjjkyja12";
name = "solarized-theme";
};
@@ -25599,7 +26093,7 @@
sha256 = "0b5w3vdr8llg3hqd22gnc6b6y089lq6vfk0ajkws6gfldz2gg2v1";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/sos";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/36e02223b4ff9c0be4662991d734ca4a4e756f4b/recipes/sos";
sha256 = "1gkd0plx7152s3dj8a9lwlwh8bgs1m006s80l10agclx6aay8rvb";
name = "sos";
};
@@ -25620,7 +26114,7 @@
sha256 = "13yn2yadkpmykaly3l3xsq1bhm4sxyk8k1px555y11qi0mfdcjhh";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/sotclojure";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/3a2ccef8af91eada4449d9cd4bda6bd28272722e/recipes/sotclojure";
sha256 = "12byqjzg0pffqyq958265qq8yxxmf3iyy4m7zib492qcj8ccy090";
name = "sotclojure";
};
@@ -25641,7 +26135,7 @@
sha256 = "0xykm4yayb8gw83arv5p205cx18j14q9407rqw3sbcj9cj5nbk34";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/sotlisp";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/1e6aed365c42987d64d0cd9a8a6178339b1b39e8/recipes/sotlisp";
sha256 = "0zjnn6hhwy6cjvc5rhvhxcq5pmrhcyil14a48fcgwvg4lv7fbljk";
name = "sotlisp";
};
@@ -25654,15 +26148,15 @@
sound-wav = callPackage ({ cl-lib ? null, deferred, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "sound-wav";
- version = "0.1";
+ version = "0.2";
src = fetchFromGitHub {
owner = "syohex";
repo = "emacs-sound-wav";
- rev = "215e23b118fba11a7132b7c79326ad0a723e2605";
- sha256 = "0q2ragq4hw89d3w48ykwljb19n2nhz8z6bsmb10shimaf203652g";
+ rev = "2a8c8a9bd797dfbf4a0aa1c023a464b803227ff8";
+ sha256 = "1ba1r359cb1dms24ajn0xfrqn8c9y08m6m7dwgxpylyyjwh1096y";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/sound-wav";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/8333470e3d84d5433be489a23e065c876bed2ab2/recipes/sound-wav";
sha256 = "1vrwzk6zqma7r0w5ivbx16shys6hsifj52fwlf5rxs6jg1gqdb4f";
name = "sound-wav";
};
@@ -25683,7 +26177,7 @@
sha256 = "1ynyxrpl9qd2l60dpn9kb04zxgq748fffb0yj8pxvm9q3abblf3m";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/sourcekit";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/45969cd5cd936ea61fbef4722843b0b0092d7b72/recipes/sourcekit";
sha256 = "1lvk3m86awlinivpg89h6zvrwrdqa5ljdp563k3i4h9384w82pks";
name = "sourcekit";
};
@@ -25704,7 +26198,7 @@
sha256 = "1k2gfw4dydzqxbfdmcghajbb2lyg1j4wgdhp8chlql3dax1f503d";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/sourcemap";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/557d18259543263932fccdbaf44c4e7986bd277b/recipes/sourcemap";
sha256 = "0cjg90y6a0l59a9v7d7p12pgmr21gwd7x5msil3h6xkm15f0qcc5";
name = "sourcemap";
};
@@ -25725,7 +26219,7 @@
sha256 = "0j4qm1y7rhb95k1zbl3c60a46l9rchzslzq36mayyw61s6yysjnv";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/sourcetalk";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/e51aed64ffd0d2583c54035bd3e822f8adbaedde/recipes/sourcetalk";
sha256 = "0qaf2q784xgl1s3m88jpwdzghpi4f3nybga3lnr1w7sb7b3yvj3z";
name = "sourcetalk";
};
@@ -25746,7 +26240,7 @@
sha256 = "1q8r95zfrh0vxna5ml2pq9b9f66clfqcl4d2qy2aizkvzyxg6skl";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/spaceline";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/46e4c876aeeb0bb0d0e81dcbb8363a5db9c3ff61/recipes/spaceline";
sha256 = "0jpcj0i8ckdylrisx9b4l9kam6kkjzhhv1s7mwwi4b744rx942iw";
name = "spaceline";
};
@@ -25767,7 +26261,7 @@
sha256 = "1gmmmkzxxlpz2ml6qk24vndlrbyl55r5cba76jn342zrxvb357ny";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/sparkline";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/7278ca31ee3c035c8ec754af152127776f04792e/recipes/sparkline";
sha256 = "081jzaxjb32nydvr1kmyafxqxi610n0yf8lwz9vldm84famf3g7y";
name = "sparkline";
};
@@ -25788,7 +26282,7 @@
sha256 = "1gk2ps7fn9z8n6r923qzn518gz9mrj7mb6j726cz8qb585ndjbij";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/sparql-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/c3d729130a41903bb01465d0f01c34fbc508b56e/recipes/sparql-mode";
sha256 = "1xicrfmgxpb31lz30qj450w8v7dl4ipjp7b2wz54s4kn88nsfj7d";
name = "sparql-mode";
};
@@ -25809,7 +26303,7 @@
sha256 = "1k6c7450v0ln6l9b8z1hib2s2b4rmjbskynvwwyilgdnvginfhi3";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/speech-tagger";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/db80aa5d95846ee02a9d762aa68325ab5e37dcf7/recipes/speech-tagger";
sha256 = "0sqil949ny9qjxq7kpb4zmjd7770r0qvq4sz80agw6a27mqnaajc";
name = "speech-tagger";
};
@@ -25830,7 +26324,7 @@
sha256 = "1q6v0xfdxm57lyj4zxyqv6n5ik5w9drk7yf9w8spb5r22jg0dg8c";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/sphinx-doc";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/a3b80d346ad4fb415970beddb5f02ae795fbf1b4/recipes/sphinx-doc";
sha256 = "00h3wx2p5hzbw6sggggdrzv4jrn1wc051iqql5y2m1hsh772ic5z";
name = "sphinx-doc";
};
@@ -25851,7 +26345,7 @@
sha256 = "17qsmjsbk8aq3azjxid6h9fzz77bils74scp21sqn8vdnijx8991";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/splitjoin";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/51e172f46045fbb71b6a13b3521b502339a4a02b/recipes/splitjoin";
sha256 = "0l1x98fvvia8qx8g125h4d76slv0xnb3h1zxiq9xb5qh7a1h069l";
name = "splitjoin";
};
@@ -25872,7 +26366,7 @@
sha256 = "05y8xv6zapspwr5bii41lgirslas22wsbm0kgb4dm79qbk9j1kzw";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/spotify";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/fb57a2d7dc46f7b0663a030e240f81c758a44e6a/recipes/spotify";
sha256 = "0pmsvxi1dsi580wkhhx8iw329agkh5yzk61bqvxzign3cd6fbq6k";
name = "spotify";
};
@@ -25893,7 +26387,7 @@
sha256 = "06rk07h92s5sljprs41y3q31q64cprx9kgs56c2j6v4c8cmsq5h6";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/sprintly-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/8730956d3f00e030e06ef54c3f2aecc10bb40f9d/recipes/sprintly-mode";
sha256 = "15i3rrv27ccpn12wwj9raaxpj7nlnrrj3lsp8vdfwph6ydvnfza4";
name = "sprintly-mode";
};
@@ -25914,7 +26408,7 @@
sha256 = "03wjzk1ljclfjgqzkg6m7v8saaajgavyd0xskd8fg8rdkx13ki0l";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/sprunge";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/f7b9f8cc2f2f8f8e1cf80b3e76c89b9f12cacf95/recipes/sprunge";
sha256 = "199vfl6i881aks8fi9d9w4w7mnc7n443h79p3s4srcpmbyfg6g3w";
name = "sprunge";
};
@@ -25935,7 +26429,7 @@
sha256 = "12zyw8b8s3jga560wv141gc4yvlbldvfcmpibns8wrpx2w8aivfj";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/sql-impala";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/147b6d7a58cab128509589a84fb7938e56aa0604/recipes/sql-impala";
sha256 = "1jr9k48d0q00d1x5lqv0n971mla2ymnqmjfn8pw0s0vxkldq4ibi";
name = "sql-impala";
};
@@ -25948,15 +26442,15 @@
sqlup-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "sqlup-mode";
- version = "0.5.8";
+ version = "0.6.0";
src = fetchFromGitHub {
owner = "Trevoke";
repo = "sqlup-mode.el";
- rev = "432a9dc927d284b622113b895416bfc56eee8f5e";
- sha256 = "1bxb8yzl6x8y4cqglxwcv15crj7ffij5d43baq7izzvzcm5rnqj1";
+ rev = "6295ec413a2e3cc50644b342aa77ec85d744448c";
+ sha256 = "0ajixsfxpyy37k7kbaqz3dqazwc371yfd9fqdhanwn9lz6w390kk";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/sqlup-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/7fabdb05de9b8ec18a3a566f99688b50443b6b44/recipes/sqlup-mode";
sha256 = "0ngs58iri3fwv5ny707kvb6xjq98x19pzak8c9nq4qnpw3nkr83b";
name = "sqlup-mode";
};
@@ -25977,7 +26471,7 @@
sha256 = "0wx8l8gkh8rbf2g149f35gpnmkk45s9x4r844aqw5by4zkvix4rc";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/srefactor";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/e23115ab231ab108678608f2ad0a864f896cd0f2/recipes/srefactor";
sha256 = "01cd40jm4h00c5q2ix7cskp7klbkcd3n5763y5lqfv59bjxwdqd2";
name = "srefactor";
};
@@ -25998,7 +26492,7 @@
sha256 = "08nx1iwvxqs1anng32w3c2clhnjf45527j0gxz5fy6h9svmb921q";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ssh-config-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/9ce38cac422ad82f8b77a1757490daa1f5e284b0/recipes/ssh-config-mode";
sha256 = "0aihyig6q3pmk9ld519f4n3kychrg3l7r29ijd2dpvs0530md4wb";
name = "ssh-config-mode";
};
@@ -26008,6 +26502,48 @@
license = lib.licenses.free;
};
}) {};
+ stan-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
+ melpaBuild {
+ pname = "stan-mode";
+ version = "9.1.0";
+ src = fetchFromGitHub {
+ owner = "stan-dev";
+ repo = "stan-mode";
+ rev = "62109483b39c6dc20e1b55bd833c9f8ea38e7118";
+ sha256 = "0jnfhb49hi6fydffhdj1kkhrsc45zjsnm43djbsgzdnd6abbfhnr";
+ };
+ recipeFile = fetchurl {
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/67a44a0abe675238b10decdd612b67e418caf34b/recipes/stan-mode";
+ sha256 = "17ph5khwwrcpyl96xnp3rsbmnk7mpwmgskxka3cfgkm190qihfqy";
+ name = "stan-mode";
+ };
+ packageRequires = [];
+ meta = {
+ homepage = "https://melpa.org/#/stan-mode";
+ license = lib.licenses.free;
+ };
+ }) {};
+ stan-snippets = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, stan-mode, yasnippet }:
+ melpaBuild {
+ pname = "stan-snippets";
+ version = "9.1.0";
+ src = fetchFromGitHub {
+ owner = "stan-dev";
+ repo = "stan-mode";
+ rev = "62109483b39c6dc20e1b55bd833c9f8ea38e7118";
+ sha256 = "0jnfhb49hi6fydffhdj1kkhrsc45zjsnm43djbsgzdnd6abbfhnr";
+ };
+ recipeFile = fetchurl {
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/eda8539b7d8da3a458a38f7536ed03580f9088c3/recipes/stan-snippets";
+ sha256 = "021skkvak645483s7haz1hsz98q3zd8hqi9k5zdzaqlabwdjwh85";
+ name = "stan-snippets";
+ };
+ packageRequires = [ stan-mode yasnippet ];
+ meta = {
+ homepage = "https://melpa.org/#/stan-snippets";
+ license = lib.licenses.free;
+ };
+ }) {};
stash = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "stash";
@@ -26019,7 +26555,7 @@
sha256 = "0igqifws73cayvjnhhrsqpy14sr27avymfhaqzrpj76m2fsh6fj4";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/stash";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/d3837ac3f1ac82e08a5ad7193766074a4d1bfa3d/recipes/stash";
sha256 = "116k40ispv7sq3jskwc1lvmhmk3jjz4j967r732s07f5h11vk1z9";
name = "stash";
};
@@ -26040,7 +26576,7 @@
sha256 = "0jpxmzfvg4k5q3h3gn6lrg891wjzlcps2kkij1jbdjk4jkgq386i";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/status";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/dca8976de7060fcfc37a1623280869e0cef7b0a2/recipes/status";
sha256 = "0a9lqa7a5nki5711bjrmx214kah5ndqpwh3i240gdd08mcm07ps3";
name = "status";
};
@@ -26061,7 +26597,7 @@
sha256 = "0pik6mq8syhxk9l9ns8wgvg5312qkckm3cilb3irwdm1dvnl5hpf";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/stekene-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/a4be17a072d4e878c510e3ef2c73bad166375195/recipes/stekene-theme";
sha256 = "0v1kwlnrqaygzaz376a5njg9kv4yf5l35k87xga4wdd2mxfwrmf1";
name = "stekene-theme";
};
@@ -26077,10 +26613,10 @@
src = fetchgit {
url = "git://repo.or.cz/stgit.git";
rev = "48e5cef14cea5c810833d119900cd484c2a6ca85";
- sha256 = "05jy51g2krmj1c3rq8k7lihml1m4x6j73lkf8z1qwg35kmadzi8j";
+ sha256 = "0hgqxhqnc93pnh6j3hyi92hfx1cbdjylzqb2nl6ldsz1g2wdcw9r";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/stgit";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/4ed7cc025d22d8e1e63464e43f733c78421c91c7/recipes/stgit";
sha256 = "102s9lllrcxsqs0lgbrcljwq1l3s8ri4276wck6rcypck5zgzj89";
name = "stgit";
};
@@ -26101,7 +26637,7 @@
sha256 = "15gdcpbba3h84s7xnpk69nav6bixdixnirdh5n1rly010q0m5s5x";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/string-edit";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/20fd24f22ef734fe064c66692bf3e18eb896f1ac/recipes/string-edit";
sha256 = "1l1hqsfyi6pp4x4g1rk4s7x9zjc03wfmhy16izia8nkjhzz88fi8";
name = "string-edit";
};
@@ -26122,7 +26658,7 @@
sha256 = "03azfs6z0jg66ppalijcxl973vdbhj4c3g84sm5dm8xv6rnxrv2s";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/string-utils";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/c9db386ab3910940addae6e925b2ac17e64e0f87/recipes/string-utils";
sha256 = "1vsvxc06fd3wardldb83i5hjfibvmiqnxvcgdns7i5i8qlsrsx4v";
name = "string-utils";
};
@@ -26143,7 +26679,7 @@
sha256 = "035ym1c1vzg6hjsnd258z4dkrfc11lj4c0y4gpgybhk54dq3w9dk";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/stripe-buffer";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/fa948128841a1cd3c5fd4c30da3841629b17d3c7/recipes/stripe-buffer";
sha256 = "02wkb9y6vykrn6a5nfnimaplj7ig8i8h6m2rvwv08f5ilbccj16a";
name = "stripe-buffer";
};
@@ -26160,10 +26696,10 @@
src = fetchgit {
url = "git://git.savannah.nongnu.org/stumpwm.git";
rev = "4d0603e52b5bab993b3be63e3654c74f641e677d";
- sha256 = "0a0lwwlly4hlmb30bk6dmi6bsdsy37g4crvv1z24gixippyv1qzm";
+ sha256 = "0pn3xjz433b0djcys25a8fv775yqmj3qgg0hyghgxjpzsh6k2a4f";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/stumpwm-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/3a1e6358c529e3b9e51bcfa6e2e294acbf662882/recipes/stumpwm-mode";
sha256 = "0a77mh7h7033adfbwg2fbx84789962par43q31s9msjlqw15gs86";
name = "stumpwm-mode";
};
@@ -26184,7 +26720,7 @@
sha256 = "0krbd1qa2408a97pqhl7fv0x8x1n2l3qq33zzj4w4vv0c55jk43n";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/stylus-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/877b5a3e612e1b1d6d51e60c66b0b79f231abdb2/recipes/stylus-mode";
sha256 = "152k74q6qn2xa38v2zyd5y7ya5n26nvai5v7z5fmq7jrcndp27r5";
name = "stylus-mode";
};
@@ -26205,7 +26741,7 @@
sha256 = "1j63rzxnrzzqizh7fpd99dcgsy5hd7w4d2lpwl5armmixlycl5m8";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/subatomic-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/de7f6009bab3e9a5b14b7b96ab16557e81e7f078/recipes/subatomic-theme";
sha256 = "0mqas67qms492n3hn74c5nrkjpsgf9b42lp02s2dh366c075dpqc";
name = "subatomic-theme";
};
@@ -26226,7 +26762,7 @@
sha256 = "189547d0g9ax0nr221bkdchlfcj60dsy8lgbbrvq3n3xrmlvl362";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/subemacs";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/18714a6b5ca4dcc51fa509fee1dc9afb0595c707/recipes/subemacs";
sha256 = "0sqh80jhh3v37l5af7w6k9lqvj39bd91pn6a9rwdlfk389hp90zm";
name = "subemacs";
};
@@ -26236,6 +26772,27 @@
license = lib.licenses.free;
};
}) {};
+ sublimity = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
+ melpaBuild {
+ pname = "sublimity";
+ version = "20160629";
+ src = fetchFromGitHub {
+ owner = "zk-phi";
+ repo = "sublimity";
+ rev = "ee9c9fbb92b8fc0c191e5e8640477e251b602bf9";
+ sha256 = "1kpq7kpmhgq3vjd62rr4qsc824qcyjxm50m49r7invgnmgd78h4x";
+ };
+ recipeFile = fetchurl {
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/c1e78cd1e5366a9b6d04237e9bf6a7e73424be52/recipes/sublimity";
+ sha256 = "1xwggaalad65cxcfvmy30f141bxhpzc3fgvwziwbzi8fygbdv4nw";
+ name = "sublimity";
+ };
+ packageRequires = [];
+ meta = {
+ homepage = "https://melpa.org/#/sublimity";
+ license = lib.licenses.free;
+ };
+ }) {};
subshell-proc = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "subshell-proc";
@@ -26247,7 +26804,7 @@
sha256 = "0mx892vn4a32df30iqmf2vsz1gdl3i557fw0194g6a66n9w2q7xf";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/subshell-proc";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/bb904557529c5d9658039a10456812810541bfed/recipes/subshell-proc";
sha256 = "1fnp49yhnhsj7paj0b25vr6r03hr5kpgcrci439ffpbd2c85fkw2";
name = "subshell-proc";
};
@@ -26268,7 +26825,7 @@
sha256 = "1kmyivsyxr6gb2k36ssyr779rpk8qsrb27q5rjsir9fgc95qhvjb";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/sudden-death";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/24c94bff44029b6493575a9e09d7deb78db095a9/recipes/sudden-death";
sha256 = "1wrhb3d27j07i64hvjggyajm752w4mhrhq09lfvyhz6ykp1ly3fh";
name = "sudden-death";
};
@@ -26289,7 +26846,7 @@
sha256 = "1b637p2cyc8a83qv9vba4yamzhk08f62zykqh5p35jwvym8wkann";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/suomalainen-kalenteri";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/181adf1b16253481674663fd28b195172231b7da/recipes/suomalainen-kalenteri";
sha256 = "1wzijbgcr3jc47ccr7nrdkqha16s6gw0xiccnmdczi48cvnvvlkh";
name = "suomalainen-kalenteri";
};
@@ -26310,7 +26867,7 @@
sha256 = "0cw3yf2npy2ah00q2whpn52kaybbccw1qvfzsww0x4zshlrwvvvq";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/super-save";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/9730b65787b26d3909952cf246a01bd349e5fbab/recipes/super-save";
sha256 = "0ikfw7n2rvm3xcgnj1si92ly8w75x26071ki551ims7a8sawh52p";
name = "super-save";
};
@@ -26331,7 +26888,7 @@
sha256 = "14h40s0arc2i898r9yysn256z6l8jkrnmqvrdg7p7658c0klz5ic";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/svg-mode-line-themes";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/2ca54d78b5e87c3bb582b178e4892af2bf447d1e/recipes/svg-mode-line-themes";
sha256 = "12lnszcb9bl32n9wir7vf8xiyyv7njw4xg21aj9x4dasmidyx506";
name = "svg-mode-line-themes";
};
@@ -26341,6 +26898,27 @@
license = lib.licenses.free;
};
}) {};
+ swagger-to-org = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, json ? null, lib, melpaBuild }:
+ melpaBuild {
+ pname = "swagger-to-org";
+ version = "0.0.2";
+ src = fetchFromGitHub {
+ owner = "ahungry";
+ repo = "swagger-to-org";
+ rev = "181357c71ea24bede263f5706d8781ad65e16877";
+ sha256 = "0x1mxxvlhhs34j869cy68gy5pgmvpfliyl9vlrlwm3z8apbip9gp";
+ };
+ recipeFile = fetchurl {
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/4d5a7f017593e73ea48c0e535ecf3809536bcde5/recipes/swagger-to-org";
+ sha256 = "1m40f5njxcxmc2snaz2q43b4scwgp51y761kq6klixjvafi0pv86";
+ name = "swagger-to-org";
+ };
+ packageRequires = [ cl-lib emacs json ];
+ meta = {
+ homepage = "https://melpa.org/#/swagger-to-org";
+ license = lib.licenses.free;
+ };
+ }) {};
sweetgreen = callPackage ({ cl-lib ? null, dash, fetchFromGitHub, fetchurl, helm, lib, melpaBuild, request }:
melpaBuild {
pname = "sweetgreen";
@@ -26352,7 +26930,7 @@
sha256 = "1h56qkbx5abz1l94wrdpbzspiz24mfgkppzfalvbvx5qwl079cvs";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/sweetgreen";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/63812707948e6dcc00e00ebc3c423469593e80fd/recipes/sweetgreen";
sha256 = "1v75wk0gq5fkz8i1r8pl4gqnxbv1d80isyn48w2hxj2fmdn2xhpy";
name = "sweetgreen";
};
@@ -26373,7 +26951,7 @@
sha256 = "07xrcg33vsw19kz692hm7blzvnf7b6isllsz79fvs8q3l5c9mfjx";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/swift-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/19cb133191cd6f9623e99e958d360113595e756a/recipes/swift-mode";
sha256 = "1imr53f8agfza9zxs1h1mwyhg7yaywqqffd1lsvm1m84nvxvri2d";
name = "swift-mode";
};
@@ -26394,7 +26972,7 @@
sha256 = "19vfj01x7b8f7wyx7m51z00la2r7jcwzv0n06srkvcls0wm5s1h3";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/swiper";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/swiper";
sha256 = "0qaia5pgsjsmrfmcdj72jmj39zq82wg4i5l2mb2z6jlf1jpbk6y9";
name = "swiper";
};
@@ -26415,7 +26993,7 @@
sha256 = "1y2dbd3ikdpjvi8xz10jkrx2773h7cgr6jxm5b2bldm81lvi8x64";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/swiper-helm";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/674c709490e13267e09417e08953ff76bfbaddb7/recipes/swiper-helm";
sha256 = "011ln6vny7z5vw67cpzldxf5n6sk2hjdkllyf7v6sf4m62ws93ph";
name = "swiper-helm";
};
@@ -26436,7 +27014,7 @@
sha256 = "1zpfilcaycj0l2q3zyvpjbwp5j3d9rrkacd5swzlr1n1klvbji48";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/switch-window";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/7d2204e3b53ade1e400e143ac219f3c7ab63a1e9/recipes/switch-window";
sha256 = "02f0zjvlzms66w1ryhk1cbr4rqwklzvgcjfiicj0lcnqqx61m2k2";
name = "switch-window";
};
@@ -26457,7 +27035,7 @@
sha256 = "0krbd1qa2408a97pqhl7fv0x8x1n2l3qq33zzj4w4vv0c55jk43n";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/sws-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/877b5a3e612e1b1d6d51e60c66b0b79f231abdb2/recipes/sws-mode";
sha256 = "0b12dsad0piih1qygjj0n7rni0pl8cizbzwqm9h1dr8imy53ak4i";
name = "sws-mode";
};
@@ -26478,7 +27056,7 @@
sha256 = "02f63k8rzb3bcch6vj6w5c5ncccqg83siqnc8hyi0lhy1bfx240p";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/sx";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/f16958a09820233fbe2abe403561fd9a012d0046/recipes/sx";
sha256 = "1ml1rkhhk3hkd16ij2zwng591rxs2yppsfq9gwd4ppk02if4v517";
name = "sx";
};
@@ -26488,6 +27066,27 @@
license = lib.licenses.free;
};
}) {};
+ symon = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
+ melpaBuild {
+ pname = "symon";
+ version = "20160630";
+ src = fetchFromGitHub {
+ owner = "zk-phi";
+ repo = "symon";
+ rev = "7beeedd70dc37f5904c781fb697c8df056196ee9";
+ sha256 = "1q7di9s8k710nx98wnqnbkkhdimrn0jf6z4xkm4c78l6s5idjwlz";
+ };
+ recipeFile = fetchurl {
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/3f4bbc6b3d7b2e2a9fbe7ff7f1d47cda9c859cc0/recipes/symon";
+ sha256 = "11llnvngyc3xz8nd6nj86ism0hhs8p54wkscvs4yycbakbyn61lz";
+ name = "symon";
+ };
+ packageRequires = [];
+ meta = {
+ homepage = "https://melpa.org/#/symon";
+ license = lib.licenses.free;
+ };
+ }) {};
syndicate = callPackage ({ evil, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "syndicate";
@@ -26499,7 +27098,7 @@
sha256 = "01bymbsvbisnpb2wpqxhrvqx6cj57nh4xvpsbsr5rr1h4pm5jkzl";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/syndicate";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/626bda1691d9c7a97fcf549f7a3f0d41d832cfde/recipes/syndicate";
sha256 = "06nmldcw5dy2shhpk6nyix7gs57gsr5s9ksj57xgg8y2j3j0da95";
name = "syndicate";
};
@@ -26520,7 +27119,7 @@
sha256 = "0hi2jflrlpp7xkbj852vp9hcl8bfmf04jqw1hawxrw4bxdp95jh2";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/synosaurus";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/7fabdb05de9b8ec18a3a566f99688b50443b6b44/recipes/synosaurus";
sha256 = "06a48ajpickf4qr1bc14skfr8khnjjph7c35b7ajfy8jw2zwavpn";
name = "synosaurus";
};
@@ -26541,7 +27140,7 @@
sha256 = "1pn69f4w48jdj3wd1myj6qq2mhvygmlzbq2dws2qkjlp3kbwa6da";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/syntactic-sugar";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/b32b9b3b3e820e498d7531a1f82da36e5e8f4e74/recipes/syntactic-sugar";
sha256 = "12b2vpvz5h4wzxrk8jrbgc8v0w6bzzvxcyfs083fi1791qq1rw7r";
name = "syntactic-sugar";
};
@@ -26561,7 +27160,7 @@
sha256 = "1wcgr6scvwwfmhhjbpq3riq0gmp4g08ffbl91fpgp72j8zrc1c6x";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/syntax-subword";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/5b7972602399f9df9139cff177e38653bb0f43ed/recipes/syntax-subword";
sha256 = "1as89ffqz2h69fdwybgs5wibnrvskm7hd58vagfjkla9pjlpffpm";
name = "syntax-subword";
};
@@ -26582,7 +27181,7 @@
sha256 = "1hixilnnybv2v3p1wpn7a0ybwah17grawszs3jycsjgzahpgckv7";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/system-specific-settings";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/3f52c584d7435c836ba3c95c598306ba0f5c06da/recipes/system-specific-settings";
sha256 = "1ydmxi8aw2lf78wv4m39yswbqkmcadqg0wmzg9s8b5h9bxxwvppp";
name = "system-specific-settings";
};
@@ -26603,7 +27202,7 @@
sha256 = "0wqmpvqv5dbnniv7xpvmhw75h9xh3q5ndkrpzz3pk5b94drgm5s3";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/systemd";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/ca810e512c357d1d0130aeeb9b46b38c595e3351/recipes/systemd";
sha256 = "1ykvm8mfi3fjvrkfcy9qn0sr9mhwm9x1svrmrd0gyqk418clk5i3";
name = "systemd";
};
@@ -26624,7 +27223,7 @@
sha256 = "09nndx83ws5v2i9x0dzk6l1a0lq29ffzh3y05n0n64nf5j0a7zvk";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ta";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/847693b5952e99597bd77223e1058536d1beeb5c/recipes/ta";
sha256 = "0kn2k4n0xfwsrniaqb36v3rxj2pf2sai3bmjksbn1g2kf5g156ll";
name = "ta";
};
@@ -26645,7 +27244,7 @@
sha256 = "1xd67s92gyr49v73j7r7cbhsc40bkw8aqh21whgbypdgzpyc7azc";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/tabbar-ruler";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/1d69d1ef8dbab8394be01153cf9ebe8e49bf9912/recipes/tabbar-ruler";
sha256 = "10dwjj6r74g9rzdd650wa1wxhqc0q6dmff4j0qbbhmjsxvsr3y0d";
name = "tabbar-ruler";
};
@@ -26666,7 +27265,7 @@
sha256 = "0gy9hxm7bca0l1hfy2pzn86avpifrz3bs8xzpicj4kxw5wi4ygns";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/tablist";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/5fc0c6c02d609fb22710560337bd577f4b1e0c8f/recipes/tablist";
sha256 = "0c10g86xjhzpmc2sqjmzcmi393qskyw6d9bydqzjk3ffjzklm45p";
name = "tablist";
};
@@ -26687,7 +27286,7 @@
sha256 = "0kq40g46s8kgiafrhdq99h79rz9h5fvgz59k7ralmf86bl4sdmdb";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/tagedit";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/8968e2cd0bd49d54a5479b2467bd4f0a97d7a969/recipes/tagedit";
sha256 = "0vfkbrxmrw4fwdz324s734zxdxm2nj3df6i8m6lgb9pizqyp2g6z";
name = "tagedit";
};
@@ -26708,7 +27307,7 @@
sha256 = "0amsz28n0syqqkxlmzsndm0ayvzc9kgzk8brs9ihskv0j5b3pdcq";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/tawny-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/ea9a114ff739f7d6f5d4c3167f5635ddf79bf60c/recipes/tawny-mode";
sha256 = "1xaw1six1n6rw1283fdyl15xcf6m7ngvq6gqlz0xzpf232c4b0kr";
name = "tawny-mode";
};
@@ -26729,7 +27328,7 @@
sha256 = "16kr1p4lzi1ysd5r2dh0mxk60zsm5fvwa9345nfyrgdic340yscc";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/telepathy";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/485ef1745f07f29c45bf0d489eeb4fcdfda80b33/recipes/telepathy";
sha256 = "0c3d6vk7d6vqzjndlym2kk7d2zm0b15ac4142ir03p6f19rqq9pr";
name = "telepathy";
};
@@ -26750,7 +27349,7 @@
sha256 = "0smdlzrcbmip6c6c3rd0871wv5xyagavwsxhhgvki6ybyzdj9a19";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/telephone-line";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/9c998b70365fb0a210c3b9639db84034c7d45097/recipes/telephone-line";
sha256 = "0dyh9h1yk9y0217b6rxsm7m372n910vpfgw5w23lkkrwa8x8qpx3";
name = "telephone-line";
};
@@ -26771,7 +27370,7 @@
sha256 = "17633jachcgnibmvx433ygcfmz3j6hzli5mqbqg83r27chiq5mjx";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ten-hundred-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/4a0534044ff9ce0740414bf5dc3b104bbdbdacce/recipes/ten-hundred-mode";
sha256 = "17v38h33ka70ynq72mvma2chvlnm1k2amyvk62c65iv67rwilky3";
name = "ten-hundred-mode";
};
@@ -26792,7 +27391,7 @@
sha256 = "195jghl1c8ncl15nix275r4x61zlii90pnwgx4m9q2bnbwsz3ycm";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/term-alert";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/term-alert";
sha256 = "02qvfhklysfk1fd4ibdngf4crp9k5ab11zgg90hi1sp429a53f3m";
name = "term-alert";
};
@@ -26813,7 +27412,7 @@
sha256 = "08qiipjsqc9dfbha6r2yijjbrg2s4i2mkn6zn5616086550v3kpj";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/term-cmd";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/e08ea89cf193414cce5073fc9c312f2b382bc842/recipes/term-cmd";
sha256 = "0pbz9fy9rjfpzspwq78ggf1wcvjslwvj8fvc05w4g56ydza0gqi4";
name = "term-cmd";
};
@@ -26834,7 +27433,7 @@
sha256 = "149pl3zxg5kriydk5h6j95jyly6i23w4w4g4a99s4zi6ljiny6c6";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/term-run";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/7cad6343104bfe5724e068660af79a6249010164/recipes/term-run";
sha256 = "1bx3s68rgr9slsw9k01gfg7sxd4z7sarg4pi2ivril7108mhg2cs";
name = "term-run";
};
@@ -26855,7 +27454,7 @@
sha256 = "0gfsqpza8phvma5y3ck0n6p197x1i33w39m3c7jmja4ml121n73d";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/termbright-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/a7151773de39fe570e3e9b351daad89db9dd267f/recipes/termbright-theme";
sha256 = "14q88qdbnyzxr8sr8i5glj674sb4150b9y6nag0dqrxs629is6xj";
name = "termbright-theme";
};
@@ -26876,7 +27475,7 @@
sha256 = "1kaymyihskmdav56xj85j04iq7a8948b1jgjfrv9s7pc965j9795";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/tern";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/eaecd67af24050c72c5df73c3a12e717f95d5059/recipes/tern";
sha256 = "1am97ssslkyijpvgk4nldi67ws48g1kpj6gisqzajrrlw5q93wvd";
name = "tern";
};
@@ -26897,7 +27496,7 @@
sha256 = "1kaymyihskmdav56xj85j04iq7a8948b1jgjfrv9s7pc965j9795";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/tern-auto-complete";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/eaecd67af24050c72c5df73c3a12e717f95d5059/recipes/tern-auto-complete";
sha256 = "1i99b4awph50ygcqsnppm1h48hbf8cpq1ppd4swakrwgmcy2mn26";
name = "tern-auto-complete";
};
@@ -26918,7 +27517,7 @@
sha256 = "0l63lzm96gg3ihgc4l671i342qxigwdbn4xfkbxnarb0206gnb5p";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/tern-django";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/e9e128a795e4949e3d4c2f01db0161a34935f635/recipes/tern-django";
sha256 = "1pjaaffadaw8h2n7yv01ks19gw59dmh8bp8vw51hx1082r3yfvv0";
name = "tern-django";
};
@@ -26939,7 +27538,7 @@
sha256 = "1k0v56v7mwpb5p228c0g252szpxvpqswrmjfpk75kh32v56wp5xi";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/terraform-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/93e06adf34bc613edf95feaca64c69a0a2a4b567/recipes/terraform-mode";
sha256 = "1m3s390mn4pba7zk17xfk045dqr4rrpv5gw63jm18fyqipsi6scn";
name = "terraform-mode";
};
@@ -26960,7 +27559,7 @@
sha256 = "108csr1d7w0105rb6brzgbksb9wmq1p573vxbq0miv5k894j447f";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/test-case-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/d2e0bf342713cbdf30cf98d0bbc7476b0abeb7f5/recipes/test-case-mode";
sha256 = "1iba97yvbi5vr7gvc58gq2ah6jg2s7apc9ssq7mdzki823n8z2qi";
name = "test-case-mode";
};
@@ -26981,7 +27580,7 @@
sha256 = "004rd6jkaklsbgka9mf2zi5qzxsl2shwl1kw0vgb963xkmk9zaz8";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/test-kitchen";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/420d18c76f593338fb28807fcbe3b884be5b1634/recipes/test-kitchen";
sha256 = "1bl3yvj56dq147yplrcwphcxiwvmx5n97y4qpkm9imiv8cnjm1g0";
name = "test-kitchen";
};
@@ -27002,7 +27601,7 @@
sha256 = "08g7fan1y3wi4w7cdij14awadqss6prqg3k7qzf0wrnbm13dzhmk";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/test-simple";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/a4b76e053faee299f5b770a0e41aa615bf5fbf10/recipes/test-simple";
sha256 = "1l6y77fqd0l0mh2my23psi66v5ya6pbr2hgvcbsaqjnpmfm90w3g";
name = "test-simple";
};
@@ -27023,7 +27622,7 @@
sha256 = "1a0fzn66gv421by0x6wj3z6bvzv274a9p8c2aaax0dskncl5lgk1";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/textmate";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/ad3923ac8948de75a159e916ecc22005a17458ad/recipes/textmate";
sha256 = "119w944pwarpqzcr9vys17svy1rkfs9hiln8903q9ff4lnjkpf1v";
name = "textmate";
};
@@ -27044,7 +27643,7 @@
sha256 = "0fjapb7naysf34g4ac5gsa90b2s2ss7qgpyd9mfv3mdqrsp2dyw7";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/textmate-to-yas";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/487c461bf658d50135428d72fbfbb2573a00eb7d/recipes/textmate-to-yas";
sha256 = "04agz4a41h0givfdw88qjd3c7pd418qyigsij4la5f37j5rh338l";
name = "textmate-to-yas";
};
@@ -27065,7 +27664,7 @@
sha256 = "09vf3qs949n4iqzd14iq2kgvypwdwdv8ii8l5jcqfppgspd8m8yd";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/theme-changer";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/d08b24a2aec1012751054c68f7d55bac1bd1fd11/recipes/theme-changer";
sha256 = "1qbmsghkl5gs728q0gaalc7p8q7nzv3l045jc0jdxxnb7na3gc5w";
name = "theme-changer";
};
@@ -27086,7 +27685,7 @@
sha256 = "1srylw9wwkyq92f9v6ds9zp9z8sl800wbxjbir80g1lwv4hghaii";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/thrift";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/857ab7e3a5c290265d88ebacb9685b3faee586e5/recipes/thrift";
sha256 = "0p1hxmm7gvhyigz8aylncgqbhk6cyf75rbcqis7x552g605mhiy9";
name = "thrift";
};
@@ -27107,7 +27706,7 @@
sha256 = "1vq5yp6pyjam2csz22mcp353a4d5r7f9m6bsjizfmgr2ld7bwhx7";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/timer-revert";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/991e68c59d1fbaef06ba2583f07499ecad05586d/recipes/timer-revert";
sha256 = "0lvm2irfx9rb5psm1lf53fv2jjx745n1c172xmyqip5xwgmf6msy";
name = "timer-revert";
};
@@ -27128,7 +27727,7 @@
sha256 = "028d1sn29idznzsc95w2c1sdz3rpmf3vgk2365li0vvs99s51hi2";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/timesheet";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/40009ef2f6845c83242ca5d0a8c9c2c1e4ef8a9d/recipes/timesheet";
sha256 = "1gy6bf4wqvp8cw2wjnrr9ijnzwav3p7j46m7qrn6l0517shwl506";
name = "timesheet";
};
@@ -27138,6 +27737,27 @@
license = lib.licenses.free;
};
}) {};
+ toc-org = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
+ melpaBuild {
+ pname = "toc-org";
+ version = "1.0.0";
+ src = fetchFromGitHub {
+ owner = "snosov1";
+ repo = "toc-org";
+ rev = "114dcc9813e2d8784b8c21165c95408c1b26d86e";
+ sha256 = "084nqdrpzgg1qpbqgvi893iglmz9dk3r0vwqxjkyxa3z3a0f5v17";
+ };
+ recipeFile = fetchurl {
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/1305d88eca984a66039444da1ea64f29f1950206/recipes/toc-org";
+ sha256 = "06mx2b0zjck82vp3i4bwbqlrzn05i2rkf8080cn34nkizi59wlbs";
+ name = "toc-org";
+ };
+ packageRequires = [];
+ meta = {
+ homepage = "https://melpa.org/#/toc-org";
+ license = lib.licenses.free;
+ };
+ }) {};
tox = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "tox";
@@ -27149,7 +27769,7 @@
sha256 = "16217i8rjhgaa5kv8iq0s14b42v5rs8m2qlr60a0x6qzy65chq39";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/tox";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/08a7433e16f2a9a2c04168600a9c99bc21c68ddf/recipes/tox";
sha256 = "1z81x8fs5q6r19hpqphsilk8wdwwnfr8w78x5x298x74s9mcsywl";
name = "tox";
};
@@ -27169,7 +27789,7 @@
sha256 = "1pnsky541m8kzcv81w98jkv0hgajh04hxqlmgddc1y0wbvi849j0";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/toxi-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/5b7972602399f9df9139cff177e38653bb0f43ed/recipes/toxi-theme";
sha256 = "032m3qbxfd0qp81qwayd5g9k7vz55g4yhw0d35qkxzf4qf58x9sd";
name = "toxi-theme";
};
@@ -27190,7 +27810,7 @@
sha256 = "008fz7829mvjlid93hvs5xwwvigh5lnq2fxf2w9ghnw9lygkv5bq";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/tracking";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/a2b295656d53fddc76cacc86b239e5648e49e3a4/recipes/tracking";
sha256 = "096h5bl7jcwz5hpbm2139bf8a784hijfy40vzf42y1c9794al46z";
name = "tracking";
};
@@ -27211,7 +27831,7 @@
sha256 = "0nsh2rz9w33m79rrr8nrz3g1wcgfrv7dc8q9g3s82ckj5g8gxfpr";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/transmission";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/9ed7e414687c0bd82b140a1bd8044084d094d18f/recipes/transmission";
sha256 = "0w0hlr4y4xpcrpvclqqqasggkgrwnzrdib51mhkh3f3mqyiw8gs9";
name = "transmission";
};
@@ -27232,7 +27852,7 @@
sha256 = "1jd7xsvs4m55fscp62a9lk59ip4sgifv4kazl55b7543nz1i31bz";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/travis";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/c064a0dc7922cbe4cff2ae65665c4f10e6dbff27/recipes/travis";
sha256 = "1km496cq1vni9gy2d3z4c9524q62750ywz745rjz4r7178ip9mix";
name = "travis";
};
@@ -27253,7 +27873,7 @@
sha256 = "0x1knf2jqkd1sdswv1w902jnlppih2yw6z028268nizl0c9q92yn";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/trr";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/56fa3c0b65e4e300f01804df7779ba6f1cb18cec/recipes/trr";
sha256 = "068vqsyx8riqzfrmjk8wr81f68r2y2b6ymc2vvl6vka9rprvsfwr";
name = "trr";
};
@@ -27274,7 +27894,7 @@
sha256 = "18na22fhwqz80qinmnpsvp6ghc9irva1scixi6s4q6plmgr4m397";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/truthy";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/f7a7e319dbe17e2b31353e7d7cab51d557d86e9d/recipes/truthy";
sha256 = "1a56zmqars9fd03bkqzwpvgblq5fvq19n4jw04c4hpga92sq8wqg";
name = "truthy";
};
@@ -27295,7 +27915,7 @@
sha256 = "1ma3k9bbw427cj1n2gjajbqii482jhs2lgjggz9clpc21bn5wqfb";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/tss";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/d52e20f5ca38ed399d19f18f778b8601baf78460/recipes/tss";
sha256 = "0d16x5r2xfy6mrwy0mqzpr9b3inqmyyxgawrxlfh83j1xb903dhm";
name = "tss";
};
@@ -27316,7 +27936,7 @@
sha256 = "060jksd9aamqx1n4l0bb9v4icsf7cr8jkyw0mbhgyz32nmxh3v6g";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ttrss";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/d918a5aa26c890fd138323ac6a446c0722e8b4c6/recipes/ttrss";
sha256 = "08921cssvwpq33w87v08dafi2rz2rl1b3bhbhijn4bwjqgxi9w7z";
name = "ttrss";
};
@@ -27326,22 +27946,22 @@
license = lib.licenses.free;
};
}) {};
- tuareg = callPackage ({ caml, fetchFromGitHub, fetchurl, lib, melpaBuild }:
+ tuareg = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "tuareg";
- version = "2.0.9";
+ version = "2.0.10";
src = fetchFromGitHub {
owner = "ocaml";
repo = "tuareg";
- rev = "f97b800db79d9856c70b4988bd39bd7aa623158e";
- sha256 = "0jpcjy2a77mywba2vm61knj26pgylsmv5a21cdp80q40bac4i6bb";
+ rev = "93b9c6cdba3a8f333cc817c3822fc76b71ff4dcd";
+ sha256 = "14l0y7gahbz1l4ag5nvswj7cl4skchvzr6r7zc1a5k000skdmv69";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/tuareg";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/01fb6435a1dfeebdf4e7fa3f4f5928bc75526809/recipes/tuareg";
sha256 = "0wx723dmjlpm86xdabl9n8p22zbbxpapyfn6ifz0b0pvhh49ip7q";
name = "tuareg";
};
- packageRequires = [ caml ];
+ packageRequires = [];
meta = {
homepage = "https://melpa.org/#/tuareg";
license = lib.licenses.free;
@@ -27358,7 +27978,7 @@
sha256 = "0ihjjw5wxz5ybl3600k937pszw3442cijs4gbqqip9vhd5y9m8gy";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/tumble";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/579a441d153c4c7d9f8172be94983a632d6fab8f/recipes/tumble";
sha256 = "1c9ybq0mb2a0pw15fmm13vfwcnr2h9fb1xsm5nrff1cg7913pgv9";
name = "tumble";
};
@@ -27379,7 +27999,7 @@
sha256 = "0asd024n5v23wdsg1959sszq568wg3a1bp4jrk0cllfji1z0n78y";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/tup-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/bda3260dad1c766c5b6ae9124f966bf441e24f2f/recipes/tup-mode";
sha256 = "0pzpn1ljfcc2dl9fg7jc8lmjwz2baays4axjqk1qsbj0kqbc8j0l";
name = "tup-mode";
};
@@ -27400,7 +28020,7 @@
sha256 = "0glw5lns7hwp8jznnfm6dyjw454sv2n84gy07ma7s1q3yczhq5bc";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/twilight-anti-bright-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/4dfafdd43a22320c619f481e2bbe162459b48990/recipes/twilight-anti-bright-theme";
sha256 = "1qfybk5akaxdahmjffqaw712v8d7kk4jqkj3hzp96kys2zv1r6f9";
name = "twilight-anti-bright-theme";
};
@@ -27421,7 +28041,7 @@
sha256 = "193v98i84xybm3n0f30jin5q10i87vbcnbdhl4zqi7jij9p5v98z";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/twittering-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/091dcc3775ec2137cb61d66df4e72aca4900897a/recipes/twittering-mode";
sha256 = "0v9ijxw5jazh2hc0qab48y71za2l9ryff0mpkxhr3f79irlqy0a1";
name = "twittering-mode";
};
@@ -27442,7 +28062,7 @@
sha256 = "1risfbsaafh760vnl4ryys91g4k78g0fxj2zlcndpxxv34gwkhy7";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/typed-clojure-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/961471c194b508a5025f00a5be02d316b26f330a/recipes/typed-clojure-mode";
sha256 = "1579zkhk2lwl5ij7dm9n2drggs5fmhpljrshc4ghhvig7nlyqjy3";
name = "typed-clojure-mode";
};
@@ -27463,7 +28083,7 @@
sha256 = "1jv5qmp3xs37py7d9aln4jn85j65h9pp5vb2dcmd8rlszhplsrng";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/typit";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/d17d019155e19c156f123dcd702f18cfba488701/recipes/typit";
sha256 = "05m7ymcq6fgbhh93ninrf3qi7csdnf2ahhf01mkm8gxxyaqq6m4n";
name = "typit";
};
@@ -27484,7 +28104,7 @@
sha256 = "1jhd4grch5iz12gyxwfbsgh4dmz5hj4bg4gnvphccg8dsnni05k2";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/typo";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/8cf02f5c8cb29265e9c83be9c959b8a9012a369d/recipes/typo";
sha256 = "07hmqrnbxbrhcbxdls8i4786lkqmfr3hv6va41xih1lxj0mk60bx";
name = "typo";
};
@@ -27505,7 +28125,7 @@
sha256 = "0k41hwb6jgv3hngfrphlyhmfhvy4k05mvn0brm64xk7lj56y8q2c";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ubuntu-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/091dcc3775ec2137cb61d66df4e72aca4900897a/recipes/ubuntu-theme";
sha256 = "160z59aaxb2v6c24nki6bn7pjm9r4jl1mgxs4h4sivzxkaw811s2";
name = "ubuntu-theme";
};
@@ -27526,7 +28146,7 @@
sha256 = "0qw9vwl1p0pjw1xmshxar1a8kn6gmin5rdvvnnly8b5z9hpkjf3m";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ucs-utils";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/c9db386ab3910940addae6e925b2ac17e64e0f87/recipes/ucs-utils";
sha256 = "111fwg2cqqzpa79rcqxidppb12c8g12zszppph2ydfvkgkryb6z2";
name = "ucs-utils";
};
@@ -27547,7 +28167,7 @@
sha256 = "06qcvbp5rd0kh3ibrxj5p6r578lwsrgd7yj5c6slwmkdmna2fj33";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/undercover";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/d58ad9eb863494f609114e3c6af8c14c891b83a5/recipes/undercover";
sha256 = "1s30c3i6y4r3mgrrs3lda3rrwmy9ff11ihdmshyziv9v5879sdjf";
name = "undercover";
};
@@ -27568,7 +28188,7 @@
sha256 = "1g1ldyz42q3i2xlgvhd4s93cvkh0fm8m3l344zjcw8rvqaisyphj";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/underwater-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/e7dccc77d082181629b8f0c45404ac5d8bd97590/recipes/underwater-theme";
sha256 = "0ab2bcqfdi9ml3z9d511pbfwcbp8hkkd36xxp61k36gkyi3acvlr";
name = "underwater-theme";
};
@@ -27589,7 +28209,7 @@
sha256 = "1qy0q1fp7cmvmxynqrb086dkb727lmk5h1k98y14j75b94ilpy0w";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/unfill";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/2ade389a20419b3e29a613409ac73a16b7c5bddb/recipes/unfill";
sha256 = "0b21dk45vbz4vqdbdx0n6wx30rm38w1jjqbsxfj7b96p3i5shwqv";
name = "unfill";
};
@@ -27610,7 +28230,7 @@
sha256 = "0n06dvf6r7qblz8vz38qc37xrn29wa1c0jyzis1qw9zzf6hmmzj7";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/unicode-enbox";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/c9db386ab3910940addae6e925b2ac17e64e0f87/recipes/unicode-enbox";
sha256 = "1phb2qq3pg6z6bl96kl9yfq4jxhgardjpaa4lhgqbxymmqdm7gzv";
name = "unicode-enbox";
};
@@ -27620,6 +28240,27 @@
license = lib.licenses.free;
};
}) {};
+ unicode-escape = callPackage ({ dash, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, names }:
+ melpaBuild {
+ pname = "unicode-escape";
+ version = "1.1";
+ src = fetchFromGitHub {
+ owner = "kosh04";
+ repo = "unicode-escape.el";
+ rev = "b9cee7af45be62119b97033dc639bd1b5ed858f3";
+ sha256 = "09dgxb1z9kdbs8wri9sl5daygp1bgqcng40vyfv5y0ic50w08ksf";
+ };
+ recipeFile = fetchurl {
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/b2ae00434b80357dc62cd0177dbd714b25fb3ac7/recipes/unicode-escape";
+ sha256 = "0gcwkv7qbdnvak10jfzj9irb7nkfqsfxv2n5fi8vvrk90j1a2i2k";
+ name = "unicode-escape";
+ };
+ packageRequires = [ dash emacs names ];
+ meta = {
+ homepage = "https://melpa.org/#/unicode-escape";
+ license = lib.licenses.free;
+ };
+ }) {};
unicode-fonts = callPackage ({ fetchFromGitHub, fetchurl, font-utils, lib, list-utils, melpaBuild, pcache, persistent-soft, ucs-utils }:
melpaBuild {
pname = "unicode-fonts";
@@ -27631,7 +28272,7 @@
sha256 = "0fbwncna6gxlynq9196djpkjhayzk8kxlsxg0gasdgqx1nyxl0mk";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/unicode-fonts";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/83459421dd2eb3d60ec668c3d5bb38d99ee64aff/recipes/unicode-fonts";
sha256 = "0plipwb30qqay8691qzqdyg6smpbs9dsxxi49psb8sq0xnxl84q3";
name = "unicode-fonts";
};
@@ -27658,7 +28299,7 @@
sha256 = "0qy1hla7vf674ynqdzsaw2cnk92nhpcimww5q94rc0a95pzw64wd";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/unicode-progress-reporter";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/83459421dd2eb3d60ec668c3d5bb38d99ee64aff/recipes/unicode-progress-reporter";
sha256 = "03z7p27470fqy3gd356l9cpp44a35sfrxz94dxmx388rzlygk7y7";
name = "unicode-progress-reporter";
};
@@ -27679,7 +28320,7 @@
sha256 = "0q7cbl89yg3fjxaxsqsksxhw7ibdslbb004z5y1m579n7zgcrljy";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/unicode-whitespace";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/f9892a826f3ac335d12bd1a07202334e28a44f40/recipes/unicode-whitespace";
sha256 = "1b3jgha8va42b89pdp41sab2w9wllp7dicqg4lxl67bg6wn147wy";
name = "unicode-whitespace";
};
@@ -27700,7 +28341,7 @@
sha256 = "1vbx10s2zmhpxjg26ik947bcg9f7w3g2w45wmm0shjp743fsdq8p";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/unify-opening";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/0a2faab13744262ef4d12750f70b300b3afd2835/recipes/unify-opening";
sha256 = "1gpmklbdbmv8va8d3yr94r1ydkcyvdzcgxv56rp0bxwbcgmk0as8";
name = "unify-opening";
};
@@ -27721,7 +28362,7 @@
sha256 = "1w2w0gmyr0nbq8kv3ldj30h9xma76gi1khbdia1y30kss677rr8m";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/unkillable-scratch";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/822ac5610f333e41b676a29ef45a6f8bfea3162e/recipes/unkillable-scratch";
sha256 = "0ghbpa9pf7k6vd2mjxkpqg2qfl4sd40ir6mrk1rxr1rv8s0afkf7";
name = "unkillable-scratch";
};
@@ -27742,7 +28383,7 @@
sha256 = "07vwg0bg719gb8ln1n5a33103903vvrphnkbvvfn43904pkrf14w";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/use-package";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/3f9b52790e2a0bd579c24004873df5384e2ba549/recipes/use-package";
sha256 = "0z7k77yfvsndql719qy4vypnwvi9izal8k8vhdx0pw8msaz4xqd8";
name = "use-package";
};
@@ -27763,7 +28404,7 @@
sha256 = "17p3cwjxdvp0v3n8fiib7hgl07z2iqi1qwlff0g3zwf4rr6kxgqy";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/utop";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/30489fe52b4031184e54f994770aa3291257bc9d/recipes/utop";
sha256 = "0lv16kl29gc9hdcpn04l85pf7x93vkl41s4mgqp678cllzyr0cq7";
name = "utop";
};
@@ -27784,7 +28425,7 @@
sha256 = "0z53n9qsglp87f6q1pa3sixrjni9k46j31zg15gcwrmflmfrw8ds";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/uzumaki";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/6d63f9408e3bb581a47c8ab1f729f9ee087933d6/recipes/uzumaki";
sha256 = "1fvhzz2qpyc819rjvzyf42jmb70hlg7a9ybqwi81w7rydpabg61q";
name = "uzumaki";
};
@@ -27794,6 +28435,27 @@
license = lib.licenses.free;
};
}) {};
+ v2ex-mode = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild, request }:
+ melpaBuild {
+ pname = "v2ex-mode";
+ version = "0.1";
+ src = fetchFromGitHub {
+ owner = "aborn";
+ repo = "v2ex-mode";
+ rev = "240bbfe637cb456166d516a2af84d5add315c627";
+ sha256 = "1myvyjv3xyn9d2gylvyn9r5mq5h6fj7siklj2qb9h9jc7qlbddp5";
+ };
+ recipeFile = fetchurl {
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/b27b7d777415aa350c8c30822e239b9a4c02e77d/recipes/v2ex-mode";
+ sha256 = "04frd6jbnf9g7ak2fdbik9iji7b0903cpbg1hx7rai1853af7gh1";
+ name = "v2ex-mode";
+ };
+ packageRequires = [ cl-lib request ];
+ meta = {
+ homepage = "https://melpa.org/#/v2ex-mode";
+ license = lib.licenses.free;
+ };
+ }) {};
vagrant = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "vagrant";
@@ -27805,7 +28467,7 @@
sha256 = "1661fwfx2gpxjriy3ngi9raz8c2kkk3rgg51irdi591jr2zqmw6s";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/vagrant";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/091dcc3775ec2137cb61d66df4e72aca4900897a/recipes/vagrant";
sha256 = "0g6sqzsx3lixcn09fkxhhcfp45qnqgf1ms0l7nkzyljavb7151cf";
name = "vagrant";
};
@@ -27826,7 +28488,7 @@
sha256 = "19j5q2f6pybvjq3ryjcyihzlw348hqyjhfcy3qflry6w786dqcgn";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/vbasense";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/8e7dd1e985d55149f48e4f93a31fb28ec01a4add/recipes/vbasense";
sha256 = "1440q2bi4arpl5lbqh7zscg7v3884clqx54p2fdfcfkz47ky4z9n";
name = "vbasense";
};
@@ -27847,7 +28509,7 @@
sha256 = "07dx3dyvkwcin0gb6j4jx0ldfxs4rqhygl56a8i81yy05adkaq2x";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/vcomp";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/561442ea9f75ebe8444db1a0c40f7756fcbca482/recipes/vcomp";
sha256 = "02cj2nlyxvgvl2rjfgacljvcsnfm9crmmkhcm2pznj9xw10y8pq0";
name = "vcomp";
};
@@ -27868,7 +28530,7 @@
sha256 = "034475m2d2vlrlc2l88gdx0ga3krsdh08wkjxwnbb2dfyz3p8r9v";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/vdirel";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/72b5ea3f4444c3de73d986a28e1d12bf47c40246/recipes/vdirel";
sha256 = "11cc7bw7x5h3bwnlsjyhw6k5fh2fk7wffarrcny562v4cmr013cj";
name = "vdirel";
};
@@ -27889,7 +28551,7 @@
sha256 = "0lzq31zqnk32vfp3kicnvgfr3nkv8amjzxmk9nrz1kwgmq7gvkjk";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/vector-utils";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/081aa3e1d50c2c9e5a9b9ce0716258a93279f605/recipes/vector-utils";
sha256 = "07armr23pq5pd47lqhir6a59r86c84zikbc51d8vfcaw8y71yr5n";
name = "vector-utils";
};
@@ -27910,7 +28572,7 @@
sha256 = "1yk7qqg8i3970kpfk34wvi0gh16qf0b0sfnf18g3s21dd4gk5a6g";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/vertigo";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/f1957e7fa03b6b8eb2f3250bd814d707bce3cfa3/recipes/vertigo";
sha256 = "0x0wy1z601sk1x96bl2xx18qm4avd77iybq1a3ss8x8ykwqlgf83";
name = "vertigo";
};
@@ -27923,15 +28585,15 @@
vhdl-tools = callPackage ({ emacs, fetchFromGitHub, fetchurl, ggtags, helm, lib, melpaBuild, outshine, projectile }:
melpaBuild {
pname = "vhdl-tools";
- version = "4.3";
+ version = "4.4";
src = fetchFromGitHub {
owner = "csantosb";
repo = "vhdl-tools";
- rev = "17b49fad72269fb987f88fe783248a9252f21faf";
- sha256 = "0ggblkaz214vl1j4i5gv5qj2q6ahnr0k3c3l9sd0w5vdkbw8n5jb";
+ rev = "d4d89eaab46db3ecf5969ee8126064bc27ec6a84";
+ sha256 = "0jawi8l8zbi06plgd07g1wbsvjqy83w2xv74m3c8ib5m4g9h93kv";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/vhdl-tools";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/69fe2f8fb98ac1af1d3185f62ae1c89e646cfebf/recipes/vhdl-tools";
sha256 = "006d9xv60a90xalagczkziiimwsr1np9nn25zvnc4nlbf8j3fbbw";
name = "vhdl-tools";
};
@@ -27952,7 +28614,7 @@
sha256 = "1750gx65ymibam8ahx5blfv5jc26f3mzbklk1jrmfwpsalyghdd9";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/vim-region";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/23249b485ca8e66a21f858712f46aa76b8554f28/recipes/vim-region";
sha256 = "1dcnx799lpjsdnnjxqzgskkfj2nx7f4kwf0xjhbg35ny4nyn81dx";
name = "vim-region";
};
@@ -27973,7 +28635,7 @@
sha256 = "1f94qx8rbnn21cl0grxqa9gzkbrz68vmqsihv8vvi8qf1c1dmd0i";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/vimgolf";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/0bded518d1544a9442c13c5cbfab64f0f1cbdb6d/recipes/vimgolf";
sha256 = "1hvw2pfa5a984hm6wd33bf6zz6hmlprc6qs3g789dfx91qm890vn";
name = "vimgolf";
};
@@ -27994,7 +28656,7 @@
sha256 = "01wxjvbq3i1ji9fpff7fbk20pzmr52z6fycqfi7malgwq05is1bm";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/vimish-fold";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/b4862b0a3d43f073e645803cbbf11d973a4b51d5/recipes/vimish-fold";
sha256 = "017by9w53d8pqlsazfycmhdv16yylks308p5vxp1rcw2qacpc5m3";
name = "vimish-fold";
};
@@ -28015,7 +28677,7 @@
sha256 = "15zdbvv6c114mv6hdq375l7ax70sss06p9d7m86hgssc3kiv9vsv";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/visible-mark";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/76ac7178ee5381e08ae881f3fc6061106eeb1c1d/recipes/visible-mark";
sha256 = "1rp0gnz28m1drwb1hhsf0mwxzdppdi88hscf788qw8cw65gckv80";
name = "visible-mark";
};
@@ -28036,7 +28698,7 @@
sha256 = "02msgb2dh3b5ki6v2bg39l2x93amvmaxg6v57kmyl80x27h00vx9";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/visual-fill-column";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/c7628c805840c4687686d0b9dc5007342864721e/recipes/visual-fill-column";
sha256 = "19y0pwaybjal2rc7migdbnafpi4dfbxvrzgfqr8dlvd9q68v08y5";
name = "visual-fill-column";
};
@@ -28057,7 +28719,7 @@
sha256 = "0vl0hwxzzvgna8sysf517qq08fi1zsff3dmcgwvsgzhc47sq8mng";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/vlf";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/9116b11eb513dd9e1dc9542d274dd60f183b24c4/recipes/vlf";
sha256 = "1ipkv5kmda0l39xwbf7ns9p0mx3kb781mxsm9vmbkhr5x577s2j8";
name = "vlf";
};
@@ -28078,7 +28740,7 @@
sha256 = "0q1rwqjwqcnsr57s531pwlm464q8wx5vvdm5rj2xy9b3yi6phis1";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/voca-builder";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/42a930e024ce525b2890ccd5a1eb4844859faafd/recipes/voca-builder";
sha256 = "0mbw87mpbb8rw7xzhmg6yjla2c80x9820kw4q00x00ny5rbhm76y";
name = "voca-builder";
};
@@ -28099,7 +28761,7 @@
sha256 = "1v0chqj5jir4685jd8ahw86g9zdmi6xd05wmzhyw20rbk924fcqf";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/volatile-highlights";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/cae2ac3513e371a256be0f1a7468e38e686c2487/recipes/volatile-highlights";
sha256 = "1r6in919aqdziv6bgzp4k7jqa87bd287pacq615sd5m1nzva1a4d";
name = "volatile-highlights";
};
@@ -28120,7 +28782,7 @@
sha256 = "0jl3n79wmbxnrbf83qjq0v5pzhvv67i9r5sp2zj8nc86hh7dvjsd";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/wacspace";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/58e5ff4c5853c5350d0534894ddb358daa83cee9/recipes/wacspace";
sha256 = "1xy0mprvyi37zmgj1yrlh5ni08j47lpag1jm3a76cgghgmlfjxrl";
name = "wacspace";
};
@@ -28141,7 +28803,7 @@
sha256 = "1nx7cr7d4qmzwbvp59kc8139nzc965ibc9vf7afrz8z2h5qg4d4l";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/wandbox";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/091dcc3775ec2137cb61d66df4e72aca4900897a/recipes/wandbox";
sha256 = "0myyln82nx462bj79acvqxwvmblxild4vbygcrzw5chcwy6crvlz";
name = "wandbox";
};
@@ -28162,7 +28824,7 @@
sha256 = "0mnfk2ys8axjh696cq5msr5cdr91icl1i3mi0dd2y00lvh6sbm7w";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/wc-goal-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/6f003b6d6bc91e6f9e510de8f5f5f9189d1c7334/recipes/wc-goal-mode";
sha256 = "0l3gh96njjldp7n13jn1zjrp17h7ivjak102j6wwspgg6v2h5419";
name = "wc-goal-mode";
};
@@ -28183,7 +28845,7 @@
sha256 = "0kzs256ymhdrqzva32j215q9fl66n9571prb7mi6syx1vpk7m3lw";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/wc-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/0fda2b54a0ff0b6fc3bd6d20cfcbbf63cae5380f/recipes/wc-mode";
sha256 = "191dmxfpqnj7d43cr0fhdmj5ldfs7w9zg5pb2lv9wvlfl7asdid6";
name = "wc-mode";
};
@@ -28204,7 +28866,7 @@
sha256 = "113prlamr2j6y6n0w43asffawwa4qiq63mgwm85v04h6pr8bd90l";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/wcheck-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/5d10b59f568fdedf248c2e8eaa06c4a74032ca56/recipes/wcheck-mode";
sha256 = "0cmdvhgax6r5svn3wkwll4j271qj70g8182c58riwnkhiajxmn3k";
name = "wcheck-mode";
};
@@ -28225,7 +28887,7 @@
sha256 = "0qx92jqzsimjk92pql2h8pzhq66mqijwqgjqwp7rmq5b6k0nvx1z";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/weather-metno";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/75beac314565b9becb701ddd9bc85660e268c3ae/recipes/weather-metno";
sha256 = "0h7p4l8y75h27pgk45f0mk3gjd43jk8q97gjf85a9b0afd63d3f6";
name = "weather-metno";
};
@@ -28246,7 +28908,7 @@
sha256 = "0zpvs9yc2gxfmm0x0majhzxc0b0vmm6p6pxh92h8iq3pmr0di8yj";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/web-beautify";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/0d528d3e20b1656dff40860cac0e0fa9dc1a3e87/recipes/web-beautify";
sha256 = "06ky2svhca8hjgmvxrg3h6ya7prl72q1r88x967yc6b0qq3r7g0f";
name = "web-beautify";
};
@@ -28267,7 +28929,7 @@
sha256 = "19nzjgvd2i5745283ck3k2vylrr6lnk9h3ggzwrwdhyd3m9433vm";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/web-completion-data";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/604f155a3ce7e5375dcf8b9c149c5af403ef48bd/recipes/web-completion-data";
sha256 = "1zzdmhyn6bjaidk808s4pdk25a5rn4287949ps5vbpyniaf6gny9";
name = "web-completion-data";
};
@@ -28288,7 +28950,7 @@
sha256 = "1cs9ldj2qckyynwxzvbd5fmniis6mhprdz1wvvvpjs900bbc843s";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/web-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/6f0565555eaa356141422c5175d6cca4e9eb5c00/recipes/web-mode";
sha256 = "1vyhyc5nf4yj2m63inpwmcqvlsihaqw8nn8xvfdg44nhl6vjz97i";
name = "web-mode";
};
@@ -28308,7 +28970,7 @@
sha256 = "1z7ld9d0crwdh778fyaapx75vpnlnslsh9nf07ywkylhz4w68yyv";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/weblogger";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/4e08837a9af8185951df9b44b9b94a799f0de923/recipes/weblogger";
sha256 = "189zs1321rybgi4zihps7d2jll5z13726jsg5mi7iycg85nkv2fk";
name = "weblogger";
};
@@ -28329,7 +28991,7 @@
sha256 = "0vg3w18xj6i320jsivsml3mi1fdxr8dgxmn7qy2780ajy5ndxnw1";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/weechat";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/e38255a31a4ca31541c97a506a55f82e2670abe6/recipes/weechat";
sha256 = "0sxrms5024bi4irv8x8s8j1zcyd62cpqm0zv4dgpm65wnpc7xc46";
name = "weechat";
};
@@ -28350,7 +29012,7 @@
sha256 = "14vmgfz45wmpjfhfx3pfjn3bak8qvj1zk1w4xc5w1cfl6vnij6hv";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/weibo";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/21f4c1b34f86331ecbcdbdc39858a191232902f2/recipes/weibo";
sha256 = "1ndgfqqb0gvy8p2fisi57s9bsa2nrnv80smg78m89i4cwagbz6yd";
name = "weibo";
};
@@ -28371,7 +29033,7 @@
sha256 = "075z0glain0dp56d0cp468y5y88wn82ab26aapsrdzq8hmlshwn4";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/wgrep";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/9648e3df896fcd97b3757a727108bc78261973cc/recipes/wgrep";
sha256 = "09xs420lvbsmz5z28rf6f1iwa0ixkk0w24qbj6zhl9hidh4mv9y4";
name = "wgrep";
};
@@ -28392,7 +29054,7 @@
sha256 = "075z0glain0dp56d0cp468y5y88wn82ab26aapsrdzq8hmlshwn4";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/wgrep-ack";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/9648e3df896fcd97b3757a727108bc78261973cc/recipes/wgrep-ack";
sha256 = "03l1a681cwnn06m77xg0a547892gy8mh415v9rg3h6lkxwcld8wh";
name = "wgrep-ack";
};
@@ -28413,7 +29075,7 @@
sha256 = "075z0glain0dp56d0cp468y5y88wn82ab26aapsrdzq8hmlshwn4";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/wgrep-ag";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/2c50b704343c4cac5e2a62a67e284ba6d8e15f8a/recipes/wgrep-ag";
sha256 = "1b2mj06kws29ha7g16l5d1s3p3nwyw8rprbpaiijdk9nxqcm0a8a";
name = "wgrep-ag";
};
@@ -28434,7 +29096,7 @@
sha256 = "075z0glain0dp56d0cp468y5y88wn82ab26aapsrdzq8hmlshwn4";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/wgrep-helm";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/9648e3df896fcd97b3757a727108bc78261973cc/recipes/wgrep-helm";
sha256 = "1hh7isc9xifkrdfw88jw0z0xmfazrbcis6d355bcaxlnjy6fzm8b";
name = "wgrep-helm";
};
@@ -28455,7 +29117,7 @@
sha256 = "075z0glain0dp56d0cp468y5y88wn82ab26aapsrdzq8hmlshwn4";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/wgrep-pt";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/c39faef3b9c2e1867cd48341d9878b714dbed4eb/recipes/wgrep-pt";
sha256 = "1gphdf85spsywj3s3ypb7dwrqh0zd70n2vrbgjqkbnfbwqjp9qbg";
name = "wgrep-pt";
};
@@ -28476,7 +29138,7 @@
sha256 = "0i25y5j5qwmj3v3cd16v1c81y5bwhgar379bjy4052mfm870b90d";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/which-key";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/315865a3df97c0694f648633d44b8b34df1ac76d/recipes/which-key";
sha256 = "0vqbhfzcv9m58w41zdhpiymhgl38n15c6d7ffd99narxlkckcj59";
name = "which-key";
};
@@ -28497,7 +29159,7 @@
sha256 = "01fwhrfi92pcrwc4yn03pflc9wj07mhzj0a0i5amar4f9bj6m5b4";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/whitaker";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/4b5d717e2eaf35ce33b26be049a39f2f75a7de72/recipes/whitaker";
sha256 = "17fnvb3jh6fi4wddn5qnp6i6ndidg8jf9ac69q9j032c2msr07nj";
name = "whitaker";
};
@@ -28518,7 +29180,7 @@
sha256 = "0xmwhybb8x6wwfr55ym5xg4dhy1aqx1abxy9qskn7h3zf1z4pgg2";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/whitespace-cleanup-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/b461cfe450d7ce6bd0c14be3460cacffc1a32e6f/recipes/whitespace-cleanup-mode";
sha256 = "1fhdjrxxyfx4xsgfjqq9p7vhj98wmqf2r00mv8k27vdaxwsnm5p3";
name = "whitespace-cleanup-mode";
};
@@ -28539,7 +29201,7 @@
sha256 = "0ip0vkqb4dm88xqzgwc9yaxzf4sc4x006m6z73a3lbfmrncy2c1d";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/whole-line-or-region";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/71addc88ce814ed4f413bcd8632402ac750009a1/recipes/whole-line-or-region";
sha256 = "1vs2i4cy1zc6nj660i9h36jbfgc3kvqivjnzlq5zwlxk5hcibqa1";
name = "whole-line-or-region";
};
@@ -28560,7 +29222,7 @@
sha256 = "0fqv63m8z5m5ghh4j8ccdnmgcdkvi4jqpg9z7lp17g4p9pq3xfjf";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/widget-mvc";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/76d3c38e205076a22628f490d8e8ddd80d091eab/recipes/widget-mvc";
sha256 = "0njzvdlxb7z480r6dvmksgivhz7rvnil517aj86qx0jbc5mr3l2f";
name = "widget-mvc";
};
@@ -28581,7 +29243,7 @@
sha256 = "1kqcc1d56jz107bswlzvdng6ny6qwp93yck2i2j921msn62qvbb2";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/wiki-nav";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/baa49e7d2d5c07ebf77e7941c240b88fcfd0fc8b/recipes/wiki-nav";
sha256 = "19mabz0y3fcqsm68ijwwbbqylxgp71anc0a31zgc1blha9jivvwy";
name = "wiki-nav";
};
@@ -28602,7 +29264,7 @@
sha256 = "0ib20zl8l1fs69ca9rry27qz69sgf6ws1ca5nhm5llvpkjcgv53i";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/win-switch";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/091dcc3775ec2137cb61d66df4e72aca4900897a/recipes/win-switch";
sha256 = "1s6inp5kf763rngn58r02fd7n7z3dd55j6hb7s9dgvc856d5z3my";
name = "win-switch";
};
@@ -28623,7 +29285,7 @@
sha256 = "049bwa5g0z1b9nrsc1vc4511aqcq9fvl16xg493wj651g6q9qigb";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/window-end-visible";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/c9db386ab3910940addae6e925b2ac17e64e0f87/recipes/window-end-visible";
sha256 = "1p78n7yysj18404cdc6vahfrzwn5pixyfnja8ch48rj4fm4jbxwq";
name = "window-end-visible";
};
@@ -28644,7 +29306,7 @@
sha256 = "0jyymmbz03zj2ydca1rv6ra0b2brjl7pyl4897zd00j5kvqjdyif";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/window-layout";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/3b17efdf8b7306eadf37e331fc1d585b42f37b09/recipes/window-layout";
sha256 = "1n4a6z00lxsffirjrmbaaw432w798b9vv34qawgn1k17y9l7gb85";
name = "window-layout";
};
@@ -28665,7 +29327,7 @@
sha256 = "1rz2a1l3apavsknlfy0faaivqgpj4x9jz3hbysbg9pydpcwqgf64";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/window-numbering";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/ce1dc80f69894736b276885e4ec3ce571a8612c9/recipes/window-numbering";
sha256 = "0x3n0ni16q69lfpyjz61spqghmhvc3cwa4aj80ihii3pk80f769x";
name = "window-numbering";
};
@@ -28686,7 +29348,7 @@
sha256 = "1xjs51wm5ydcqdwvg3c42c5z4j92q75lmk895qkka7ayy5spxxf7";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/window-purpose";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/cfaba6ff48d5548d5d355b3a1a8f44f541f8a3fc/recipes/window-purpose";
sha256 = "1ib5ia7armghvmcw8qywcil4nxzwwakmfsp7ybawb0xr53h1w96d";
name = "window-purpose";
};
@@ -28707,7 +29369,7 @@
sha256 = "1f4v0xd341qs4kfnjqhgf8j26valvg6pz4rwcz0zj0s23niy2yil";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/windsize";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/37924b239c1e883103c0cdfd429ddb6c2d40d3d7/recipes/windsize";
sha256 = "1xhfw77168942rcn246qndii0hv0q6vkgzj67jg4mxh8n46m50m9";
name = "windsize";
};
@@ -28723,11 +29385,11 @@
version = "0.9.0";
src = fetchhg {
url = "https://bitbucket.com/ArneBab/wisp";
- rev = "f23c198f7086";
- sha256 = "1nfyi9grkl9vhf8rs6r53g5f1p2wsk5jggw0m4i3z60yfflmkqi7";
+ rev = "1b716d725f97";
+ sha256 = "0ax5carrmrppy9q01ngj8c6bhx5wmsnmpac77da42s3ybglyzg16";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/wisp-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/5b7972602399f9df9139cff177e38653bb0f43ed/recipes/wisp-mode";
sha256 = "10zkp1qbvl8dmxij7zz4p1fixs3891xr1nr57vyb3llar9fgzglc";
name = "wisp-mode";
};
@@ -28748,7 +29410,7 @@
sha256 = "188h1sy4mxzrkwi3zgiw108c5f71rkj5agdkf9yy9v8c1bkawm4x";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/wispjs-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/a628330ee8deeab2bd5c2d4b61b33f119c4549d8/recipes/wispjs-mode";
sha256 = "0qzm0dcvjndasnbqpkdc56f1qv66gxv8dfgfcwq5l1bp5wyx813p";
name = "wispjs-mode";
};
@@ -28769,7 +29431,7 @@
sha256 = "0rzq2fbz523fyy2p6ddx9iws89sfgw3pwillw8yz965f3hxx3dj3";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/with-editor";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/8c52c840dc35f3fd17ec660e113ddbb53aa99076/recipes/with-editor";
sha256 = "1wsl1vwvywlc32r5pcc9jqd0pbzq1sn4fppxk3vwl0s5h40v8rnb";
name = "with-editor";
};
@@ -28790,7 +29452,7 @@
sha256 = "0nmzh6dynbm8vglp4pqz81s2z68jbnasvamvi1x1iawf8g9zfyix";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/wn-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/6213c01e6954985daff8cd1a5a3ef004431f0477/recipes/wn-mode";
sha256 = "1qy1pkfdnm4pska4cnff9cx2c812ilymajhpmsfc9jdbvhzwrwg3";
name = "wn-mode";
};
@@ -28811,7 +29473,7 @@
sha256 = "018r35dz8z03wcrx9s28pjisayy21549i232mp6wy9mxkrkxbzpc";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/wonderland";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/ed02d5e4cba10023ebc7c26f90ba8d1e8ee32a08/recipes/wonderland";
sha256 = "1b4p49mbzqffm2b2y8sbbi56vnkxap2jscsmla9l6l8brybqjppi";
name = "wonderland";
};
@@ -28832,7 +29494,7 @@
sha256 = "0s3mjmfjiidn3spklndw0dvcwbb9x034xyphp60aad8vjaflbchs";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/wordsmith-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/d9f8f01f1807de24fb6e92b355d05b81be4bab07/recipes/wordsmith-mode";
sha256 = "1570h1sjjaks6bnhd4xrbx6nna4v7hz6dmrzwjq37rwvallasg1n";
name = "wordsmith-mode";
};
@@ -28853,7 +29515,7 @@
sha256 = "0l2n3vwk251ba06xdrs9z0bp4ligfdjd259a84ap2z3sqdfa98x4";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/worf";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/f00f8765e35c21dd1a4b5c01c239ed4d15170ab7/recipes/worf";
sha256 = "1fkb2ddl684dijsb0cqgmfbg1nz4xv43rb7g5rah05rchy5sgkpi";
name = "worf";
};
@@ -28874,7 +29536,7 @@
sha256 = "03hjwm51sngkh7jjiwnqhflllqq6i99ib47rm2ja9ii0qyhj1qa0";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/wrap-region";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/7fabdb05de9b8ec18a3a566f99688b50443b6b44/recipes/wrap-region";
sha256 = "058518smxj3j3mr6ljzh7c9x5g23d24104p58sl9nhpw0cq9k28i";
name = "wrap-region";
};
@@ -28895,7 +29557,7 @@
sha256 = "1nnjn1r669hvvzfycllwap4w04m8rfsk4nzcg8057m1f263kj31b";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/writegood-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/75c5a4304999fc3f5a02235a1c2c904238d2ce4f/recipes/writegood-mode";
sha256 = "1lxammisaj04g5vr5lwms64ywf39w8knrq72x4i94wwzwx5ywi1d";
name = "writegood-mode";
};
@@ -28916,7 +29578,7 @@
sha256 = "11a3h5v7knj8y360cxin59c1ipd9y4qsqlanrw69yb5k4816ayyr";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/writeroom-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/4e39cd8e8b4f61c04fa967def6a653bb22f45f5b/recipes/writeroom-mode";
sha256 = "1kpsrp3agw8bg3qbf5rf5k1a7ww30q5xsa8z5ywxajsaywjzx1bk";
name = "writeroom-mode";
};
@@ -28937,7 +29599,7 @@
sha256 = "1lv0l27lrp6xyl0c5yhlnyjwx872izq02z8x34da9jv3walxpk8f";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ws-butler";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/f1645a51d487c8902eb6e59fb1884f85f48cec6f/recipes/ws-butler";
sha256 = "072k67z2lx0ampwzdiszi64xs0w6frp4nbmrd2r0wpx0pd211vbn";
name = "ws-butler";
};
@@ -28958,7 +29620,7 @@
sha256 = "1ibvcc54y2w72d3yvcczvzywribiwmkhlb1b08g4pyb1arclw393";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/wsd-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/04867a574773e8794335a2664d4f5e8b243f3ec9/recipes/wsd-mode";
sha256 = "07vclmnj18wx9wlrcnsl99f9jlk3sb9g6pcdv8x1smk84gccpakc";
name = "wsd-mode";
};
@@ -28979,7 +29641,7 @@
sha256 = "0mbc3ndggv2rbmfcfhw8bsx3qw6jy684hxz5dqa88lfb6vs5knzc";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/wttrin";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/1b2b6876562f1fadd4af1ea9b279ac4dc1b21660/recipes/wttrin";
sha256 = "0msp8lja9nz6khz3dkasv8hnhkaayqxd7m58kma03hpkcjxnaxil";
name = "wttrin";
};
@@ -29000,7 +29662,7 @@
sha256 = "0fks0bnil7m4m56k267f0awqnyq3vr2ywd81rsmbk1154g3acndc";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/x86-lookup";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/27757b9b5673f5581e678e8cad719138db654415/recipes/x86-lookup";
sha256 = "1clv1npvdkzsy0a08xrb880yflwzl4d5cc2c5xrs7b837mqpj8hd";
name = "x86-lookup";
};
@@ -29021,7 +29683,7 @@
sha256 = "154xnfcmil9xjjmq4cyrfpir4ga4mgcmmbd7dja1m7rpk1734xk6";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/xbm-life";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/6cb4c55583338dafee61fd9c266d2ee7cae2b1ed/recipes/xbm-life";
sha256 = "1pglxjd4cs630sayx17ai1xflpbyj3hry3156682bgwhqs1vw68q";
name = "xbm-life";
};
@@ -29034,15 +29696,15 @@
xcscope = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "xcscope";
- version = "1.2";
+ version = "1.3";
src = fetchFromGitHub {
owner = "dkogan";
repo = "xcscope.el";
- rev = "9dee0f3b20115dfaf9f8486937b4db013ec1903f";
- sha256 = "0xqw0yhm08alaaqma3ymnihzyp2wg0hxsjzmrb2vmak5q1qqnkrp";
+ rev = "1e4c8e60eb841a3ecb56ff4115b6a8ae5c0bf779";
+ sha256 = "1cc3bmi4fxlgqha7sxswn9lcc126xnr2j8xz6wszjnqh5w274fpp";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/xcscope";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/068c7846e70b91ce7e88330937fc64a60281802a/recipes/xcscope";
sha256 = "06xh29cm5v3b5xwj32y0i0h0kvvy995840db4hvab2wn9jw68m8w";
name = "xcscope";
};
@@ -29063,7 +29725,7 @@
sha256 = "0p9p3w8i5w1pzh3y3yxz0rg5gywfq4m5anbiyrdn84vdd42jij4x";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/xkcd";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/4ac99eee00b76501d830373a13369f6a2a1239b5/recipes/xkcd";
sha256 = "1r88yhs8vnkak8xl16vw3xdpm7ncz4ydkml8932bqk8xix8l8f0w";
name = "xkcd";
};
@@ -29084,7 +29746,7 @@
sha256 = "0g52bmamcd54acyk6i47ar5jawad6ycvm9g656inb994wprnjin9";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/xml-rpc";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/547d773e07d6229d2135d1b081b5401039ffad39/recipes/xml-rpc";
sha256 = "14r6xgnpqsb2jlv52vgrhqf3qw8a6gmdyap3ylhilyxw71lxf1js";
name = "xml-rpc";
};
@@ -29105,7 +29767,7 @@
sha256 = "1yy759qc4njc8bqh8hmgc0mq5vk5spz5syxgflqhjijk8nrvyfgl";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/xquery-tool";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/cc71e5ea4a0ecb006f62617f5b6caadc9b3c77b2/recipes/xquery-tool";
sha256 = "069injmvv9zzcbqbms94qx5wjj740jnik6sf3b4xjhln7z1yskp0";
name = "xquery-tool";
};
@@ -29126,7 +29788,7 @@
sha256 = "1kmlya0bwgm2krwc6j4gp80579sf5azz08l8d7pydw69rckv6ji0";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/xref-js2";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/b5dab444ead98210b4ab3a6f9a61d013aed6d5b7/recipes/xref-js2";
sha256 = "1mfyszdi1wx2lqd9fyqm0ra227dcsjs8asc1dw2li0alwh7n4xs3";
name = "xref-js2";
};
@@ -29147,7 +29809,7 @@
sha256 = "1zdj4664gvwc4kyx7fx5232l3c5anm0xyrrnrw596q604q6xxj2x";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/xterm-color";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/b34a42f1bf5641871da8ce2b688325023262b643/recipes/xterm-color";
sha256 = "0bvzi1mkxgm4vbq2va1sr0k9h3fdmppq79hkvbizc2xgk72sazpj";
name = "xterm-color";
};
@@ -29168,7 +29830,7 @@
sha256 = "1wqx6hlqcmqiljydih5fx89dw06g8w728pyn4iqsap8jwgjngb09";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/xtest";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/378fe14c66072ecb899a074c56f95077dfc9667e/recipes/xtest";
sha256 = "1vbs4sb4frzg8d3l96ip9cc6lc86nbj50vpdfqazvxmdfd1sg4i7";
name = "xtest";
};
@@ -29189,7 +29851,7 @@
sha256 = "1rplafm6mldsirj7xg66vsx03n263yii3il3fkws69xmv7sx1a6i";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/yafolding";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/51bfd6465ee8ee553e8fd466a3bc4e65ab98faed/recipes/yafolding";
sha256 = "1z70ismfwmh9a83a7h5lbhw7iywfib5fis7y8gx8020wfjq9g2yq";
name = "yafolding";
};
@@ -29210,7 +29872,7 @@
sha256 = "0l9b888wv72j4hhkcfzsh09iqjxp2qjbjcjcfmvfhxf7il11pv8h";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/yagist";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/97ea1250ffbf159d7870710b9348ef26616dbedb/recipes/yagist";
sha256 = "1mz86fq0pb4w54c66vd19m2492mkrzq2qi6ssnn2xwmn8vv02wdd";
name = "yagist";
};
@@ -29231,7 +29893,7 @@
sha256 = "1mj1gwrflpdlmc7wl1axygn1jqlrjys1dh3cpdh27zrgsjvhd6c1";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/yaml-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/cae2ac3513e371a256be0f1a7468e38e686c2487/recipes/yaml-mode";
sha256 = "0afp83xcr8h153cayyaszwkgpap0iyk351dlykmv6bv9d2m774mc";
name = "yaml-mode";
};
@@ -29252,7 +29914,7 @@
sha256 = "007837w6gd7k253h7g2in6l3ihcbwv733yiffs26pnymgk21xdqz";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/yascroll";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/091dcc3775ec2137cb61d66df4e72aca4900897a/recipes/yascroll";
sha256 = "11g7wn4hgdwnx3n7ra0sh8gk6rykwvrg9g2cihvcv7mjbqgcv53f";
name = "yascroll";
};
@@ -29262,22 +29924,22 @@
license = lib.licenses.free;
};
}) {};
- yasnippet = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }:
+ yasnippet = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }:
melpaBuild {
pname = "yasnippet";
- version = "0.9.1";
+ version = "0.10.0";
src = fetchFromGitHub {
owner = "capitaomorte";
repo = "yasnippet";
- rev = "6aeccce2f17aca6a59a2790ec08680d52c03f6c0";
- sha256 = "0yiglsb1s9ni4xig05ysw75l0ndjgdyhzip7c0sdxb265p3yrfby";
+ rev = "dc3e4ca3454e8ffcd9a9eae312dba5b3657f9b11";
+ sha256 = "16akdsqb74b4lriywidszmyyc8irq5dws8ya3mcja87kvih76148";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/yasnippet";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/489687c6c41399a3bca8148a62d25581726a847d/recipes/yasnippet";
sha256 = "1j6hcpzxljz1axh0xfbwr4ysbixkwgxawsvsgicls8r8kl2xvjvf";
name = "yasnippet";
};
- packageRequires = [];
+ packageRequires = [ cl-lib ];
meta = {
homepage = "https://melpa.org/#/yasnippet";
license = lib.licenses.free;
@@ -29294,7 +29956,7 @@
sha256 = "1yplaj7pry43qps8hvqxj9983ah4jvaiq94l171a7f8qi28386s8";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/yatemplate";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/8ba3cdb74f121cbf36b6d9d5a434c363905ce526/recipes/yatemplate";
sha256 = "05gd9sxdiqpw2p1kdagwgxd94wiw1fmmcsp9v4p74i9sqmf6qn6q";
name = "yatemplate";
};
@@ -29313,7 +29975,7 @@
sha256 = "08iwfpsjs36pqr2l85avxhsjx8z0sdfw8cqwwf3brn7i4x67f7z5";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/yatex";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/04867a574773e8794335a2664d4f5e8b243f3ec9/recipes/yatex";
sha256 = "17np4am7yan1bh4706azf8in60c41158h3z591478j5b1w13y5a6";
name = "yatex";
};
@@ -29334,7 +29996,7 @@
sha256 = "0nqyn1b01v1qxv7rcf46qypca61lmpm8d7kqv63jazw3n05qdnj8";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/yaxception";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/1da5261081fc66910d935b81e52391c071e52379/recipes/yaxception";
sha256 = "18n2kjbgfhkhcwigxmv8dk72jp57vsqqd20lc26v5amx6mrhgh58";
name = "yaxception";
};
@@ -29355,7 +30017,7 @@
sha256 = "094alkjrh285qy3sds8dkvxsbnaxnppz1ab0i5r575lyhli9lxia";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ycmd";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/4b25378540c64d0214797348579671bf2b8cc696/recipes/ycmd";
sha256 = "10jqr6xz2fnrd1ihips9jmbcd28zha432h4pxjpswz3ivwjqhxna";
name = "ycmd";
};
@@ -29376,7 +30038,7 @@
sha256 = "0yvz7lmid4jcikb9jmc7h2lcry3fdyy809k25nyasj2bk41xqqsd";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/yesql-ghosts";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/3c652657be0f9b9dcb236e01c3abd2fd717190d7/recipes/yesql-ghosts";
sha256 = "1hxzbnfd15f0ifdqjbw9nhxd0z46x705v2bc0xl71nav78fgpswf";
name = "yesql-ghosts";
};
@@ -29397,7 +30059,7 @@
sha256 = "19a47780h0x1rdicr8i7356kvamkbkcwp31skdpp5cxgysvi3d9s";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/yoshi-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/6e9a549e31c4097ee24b4bff12ec5d20d3beac68/recipes/yoshi-theme";
sha256 = "1kzdjs3rzg9rxrjgsk0wk75rwvbip6ixg1apcxv2c1a6biqqf2hv";
name = "yoshi-theme";
};
@@ -29418,7 +30080,7 @@
sha256 = "0016qff7hdnd0xkyhxakfzzscwlwkpzppvc4wxfw0iacpjkz1fnr";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/youdao-dictionary";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/712bdf83f71c2105754f9b549a889ffc5b7ba565/recipes/youdao-dictionary";
sha256 = "1qfk7s18br9jask1bpida0cjxks098qpz0ssmw8misi3bjax0fym";
name = "youdao-dictionary";
};
@@ -29439,7 +30101,7 @@
sha256 = "1n7ka608lk0xp7vg4zcw282zna0cwvcwvmhic6ym1ag7lq5cjrhc";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/zenburn-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/091dcc3775ec2137cb61d66df4e72aca4900897a/recipes/zenburn-theme";
sha256 = "1kb371j9aissj0vy07jw4ydfn554blc8b2rbi0x1dvfksr2rhsn9";
name = "zenburn-theme";
};
@@ -29460,7 +30122,7 @@
sha256 = "1kdsyki7i7x0ypq0iabdv1bnx0gd45acqcixvrxi3rf9j4chyvls";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/zerodark-theme";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/72ef967a9bea2e100ae17aad1a88db95820f4f6a/recipes/zerodark-theme";
sha256 = "1nqzswmnq6h0av4rivqm237h7ghp7asa2nvls7nz4ma467p9qhp9";
name = "zerodark-theme";
};
@@ -29481,7 +30143,7 @@
sha256 = "1ksjd3askc3k1l0b3nia5mzkxa74bidh2x0xlrj4qs4im5445vnz";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/zombie-trellys-mode";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/e66db80ab82a69542688cd57c9e0ec10e6616c87/recipes/zombie-trellys-mode";
sha256 = "19xzvppw7f35s82hm0y7sga8dyjjyy0dxy6vji4hxdpjziz7lggv";
name = "zombie-trellys-mode";
};
@@ -29502,7 +30164,7 @@
sha256 = "1lrgirfvcvbir7csshkhhwj99jj1x5aprhw7xfiicv7nan9m6gjy";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/zone-nyan";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/38262704e1045c21ee73ca9dc87656936382004a/recipes/zone-nyan";
sha256 = "165sgjaahz038isii971m02hr2g5iqhbhiwf5kdn8c739cjaa17b";
name = "zone-nyan";
};
@@ -29523,7 +30185,7 @@
sha256 = "13393bd5lqpbv7m3p6ihg0ghx1w4w6mrnybx4m8hcfvcn17dr3hw";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/zoom-window";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/8a55cc66cc0deb1c24023f638b8e920c9d975859/recipes/zoom-window";
sha256 = "0l9683nk2bdm49likk9c55c23qfy6f1pn04drqwd1vhpanz4l4b3";
name = "zoom-window";
};
@@ -29544,7 +30206,7 @@
sha256 = "0j6x3az8vpq2ggafjxdl8x3ln7lhh58c27z72mwywp4a2ca1g496";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/zop-to-char";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/b0a9277f1a5f1aef8886e739c73dea91d3f81dc5/recipes/zop-to-char";
sha256 = "0jnspvqqvnaplld083j7cqqxw122qazh88ab7hymci36m3ka9hga";
name = "zop-to-char";
};
@@ -29565,7 +30227,7 @@
sha256 = "0qwdbzfi8mddmchdd9ab9ms1ynlc8dx08i6g2mf3za1sbcivdqsr";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/zotelo";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/7fabdb05de9b8ec18a3a566f99688b50443b6b44/recipes/zotelo";
sha256 = "0y6s5ma7633h5pf9zj7vkazidlf211va7nk47ppb1q0iyfkyln36";
name = "zotelo";
};
@@ -29586,7 +30248,7 @@
sha256 = "0qksa67aazs9vx7v14nlakr34z6l0h6mhfzi2c0vhrr0c210r6hp";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/zotxt";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/b633453e77a719f6b6b6564e66c1c1260db38aa6/recipes/zotxt";
sha256 = "18jla05g2k8zfrmp7q9kpr1mpw6smxzdyn8nfghm306wvv9ff8y5";
name = "zotxt";
};
@@ -29607,7 +30269,7 @@
sha256 = "0v73fgb0gf81vlihiicy32v6x86rr2hv0bxlpw7d3pk4ng1a0l3z";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/zygospore";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/7fabdb05de9b8ec18a3a566f99688b50443b6b44/recipes/zygospore";
sha256 = "0n9qs6fymdjly0i4rmx87y8gapfn5sqivsivcffi42vcb5f17kxj";
name = "zygospore";
};
@@ -29628,7 +30290,7 @@
sha256 = "0y0hhar3krkvbpb5y9k197mb0wfpz8cl6fmxazq8msjml7hkk339";
};
recipeFile = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/zzz-to-char";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/7063cbc1f1501ce81552d7ef1d42d1309f547c42/recipes/zzz-to-char";
sha256 = "16vwp0krshmn5x3ry1j512g4kydx39znjqzri4j7wgg49bz1n7vh";
name = "zzz-to-char";
};
diff --git a/pkgs/applications/editors/emacs-modes/metaweblog/default.nix b/pkgs/applications/editors/emacs-modes/metaweblog/default.nix
index 77bfedf6274..a5633cdfaba 100644
--- a/pkgs/applications/editors/emacs-modes/metaweblog/default.nix
+++ b/pkgs/applications/editors/emacs-modes/metaweblog/default.nix
@@ -22,7 +22,7 @@ stdenv.mkDerivation rec {
'';
meta = {
- description = "an emacs library to access metaweblog based weblogs";
+ description = "An emacs library to access metaweblog based weblogs";
homepage = https://github.com/punchagan/metaweblog;
license = stdenv.lib.licenses.gpl3Plus;
diff --git a/pkgs/applications/editors/emacs-modes/session-management-for-emacs/default.nix b/pkgs/applications/editors/emacs-modes/session-management-for-emacs/default.nix
index 0d2fcf09786..f5aeb35d184 100644
--- a/pkgs/applications/editors/emacs-modes/session-management-for-emacs/default.nix
+++ b/pkgs/applications/editors/emacs-modes/session-management-for-emacs/default.nix
@@ -20,7 +20,7 @@ stdenv.mkDerivation rec {
(require 'session)
(add-hook 'after-init-hook 'session-initialize)
*/
- description = "small session management for emacs";
+ description = "Small session management for emacs";
homepage = http://emacs-session.sourceforge.net/;
license = "GPL";
};
diff --git a/pkgs/applications/editors/geany/default.nix b/pkgs/applications/editors/geany/default.nix
index b4f6baa9c64..cd93a4ed0e8 100644
--- a/pkgs/applications/editors/geany/default.nix
+++ b/pkgs/applications/editors/geany/default.nix
@@ -1,7 +1,7 @@
{ stdenv, fetchurl, gtk2, which, pkgconfig, intltool, file }:
let
- version = "1.27";
+ version = "1.28";
in
stdenv.mkDerivation rec {
@@ -9,7 +9,7 @@ stdenv.mkDerivation rec {
src = fetchurl {
url = "http://download.geany.org/${name}.tar.bz2";
- sha256 = "846ff699a5944c5c3c068ae0199d4c13946a668bfc6d03f8c79765667c20cadf";
+ sha256 = "0nha21rbdhl10vdpaq8d5v5fszvggl1xar555pvrnvm2y443ffpp";
};
buildInputs = [ gtk2 which pkgconfig intltool file ];
diff --git a/pkgs/applications/editors/idea/common.nix b/pkgs/applications/editors/idea/common.nix
index 556b333ce75..170a12d6d69 100644
--- a/pkgs/applications/editors/idea/common.nix
+++ b/pkgs/applications/editors/idea/common.nix
@@ -1,7 +1,7 @@
{ stdenv, fetchurl, makeDesktopItem, makeWrapper, patchelf, p7zip
-, coreutils, gnugrep, which, git, python, unzip, jdk }:
+, coreutils, gnugrep, which, git, python, unzip }:
-{ name, product, version, build, src, wmClass, meta } @ attrs:
+{ name, product, version, build, src, wmClass, jdk, meta } @ attrs:
with stdenv.lib;
diff --git a/pkgs/applications/editors/idea/default.nix b/pkgs/applications/editors/idea/default.nix
index e09c29b9dc4..bc6f7fffeb3 100644
--- a/pkgs/applications/editors/idea/default.nix
+++ b/pkgs/applications/editors/idea/default.nix
@@ -12,7 +12,7 @@ let
buildAndroidStudio = { name, version, build, src, license, description, wmClass }:
let drv = (mkIdeaProduct rec {
- inherit name version build src wmClass;
+ inherit name version build src wmClass jdk;
product = "Studio";
meta = with stdenv.lib; {
homepage = https://developer.android.com/sdk/installing/studio.html;
@@ -31,13 +31,14 @@ let
buildInputs = x.buildInputs ++ [ makeWrapper ];
installPhase = x.installPhase + ''
wrapProgram "$out/bin/android-studio" \
- --set ANDROID_HOME "${androidsdk}/libexec/android-sdk-linux/"
+ --set ANDROID_HOME "${androidsdk}/libexec/android-sdk-linux/" \
+ --set LD_LIBRARY_PATH "${stdenv.cc.cc.lib}/lib" # Gradle installs libnative-platform.so in ~/.gradle, that requires libstdc++.so.6
'';
});
buildClion = { name, version, build, src, license, description, wmClass }:
(mkIdeaProduct rec {
- inherit name version build src wmClass;
+ inherit name version build src wmClass jdk;
product = "CLion";
meta = with stdenv.lib; {
homepage = "https://www.jetbrains.com/clion/";
@@ -53,7 +54,7 @@ let
buildIdea = { name, version, build, src, license, description, wmClass }:
(mkIdeaProduct rec {
- inherit name version build src wmClass;
+ inherit name version build src wmClass jdk;
product = "IDEA";
meta = with stdenv.lib; {
homepage = "https://www.jetbrains.com/idea/";
@@ -70,7 +71,7 @@ let
buildRubyMine = { name, version, build, src, license, description, wmClass }:
(mkIdeaProduct rec {
- inherit name version build src wmClass;
+ inherit name version build src wmClass jdk;
product = "RubyMine";
meta = with stdenv.lib; {
homepage = "https://www.jetbrains.com/ruby/";
@@ -83,7 +84,7 @@ let
buildPhpStorm = { name, version, build, src, license, description, wmClass }:
(mkIdeaProduct {
- inherit name version build src wmClass;
+ inherit name version build src wmClass jdk;
product = "PhpStorm";
meta = with stdenv.lib; {
homepage = "https://www.jetbrains.com/phpstorm/";
@@ -100,7 +101,7 @@ let
buildWebStorm = { name, version, build, src, license, description, wmClass }:
(mkIdeaProduct {
- inherit name version build src wmClass;
+ inherit name version build src wmClass jdk;
product = "WebStorm";
meta = with stdenv.lib; {
homepage = "https://www.jetbrains.com/webstorm/";
@@ -117,7 +118,7 @@ let
buildPycharm = { name, version, build, src, license, description, wmClass }:
(mkIdeaProduct rec {
- inherit name version build src wmClass;
+ inherit name version build src wmClass jdk;
product = "PyCharm";
meta = with stdenv.lib; {
homepage = "https://www.jetbrains.com/pycharm/";
@@ -146,16 +147,16 @@ in
{
- android-studio = let buildNumber = "143.2821654"; in buildAndroidStudio rec {
+ android-studio = let buildNumber = "143.2915827"; in buildAndroidStudio rec {
name = "android-studio-${version}";
- version = "2.1.1.0";
+ version = "2.1.2.0";
build = "AI-${buildNumber}";
description = "Android development environment based on IntelliJ IDEA";
license = stdenv.lib.licenses.asl20;
src = fetchurl {
url = "https://dl.google.com/dl/android/studio/ide-zips/${version}" +
"/android-studio-ide-${buildNumber}-linux.zip";
- sha256 = "1zxxzyhny7j4vzlydrhwz3g8l8zcml84mhkcf5ckx8xr50j3m101";
+ sha256 = "0q61m8yln77valg7y6lyxlml53z387zh6fyfgc22sm3br5ahbams";
};
wmClass = "jetbrains-studio";
};
@@ -188,13 +189,13 @@ in
idea-community = buildIdea rec {
name = "idea-community-${version}";
- version = "2016.1.2";
- build = "IC-145.971.21";
+ version = "2016.2";
+ build = "IC-162.1121";
description = "Integrated Development Environment (IDE) by Jetbrains, community edition";
license = stdenv.lib.licenses.asl20;
src = fetchurl {
url = "https://download.jetbrains.com/idea/ideaIC-${version}.tar.gz";
- sha256 = "15c92wsfw16j48k12x4vw78886yf9yjx7hwwjamgf28lmzvc37iz";
+ sha256 = "164x4l0q31zpc1jh3js1xx9y6afrzsshmnkx1mwhmq8qmvzc4w32";
};
wmClass = "jetbrains-idea-ce";
};
@@ -227,13 +228,13 @@ in
idea-ultimate = buildIdea rec {
name = "idea-ultimate-${version}";
- version = "2016.1.2";
- build = "IU-145.971.21";
+ version = "2016.2";
+ build = "IU-162.1121";
description = "Integrated Development Environment (IDE) by Jetbrains, requires paid license";
license = stdenv.lib.licenses.unfree;
src = fetchurl {
url = "https://download.jetbrains.com/idea/ideaIU-${version}.tar.gz";
- sha256 = "0dxpx4nx845vgqxl5qz029d3w3kn3hi98wgzympidplxrphgalgy";
+ sha256 = "10hiqh6ccmai2cnc5p72vqjcz9kzmmcpn0hy5v514h4mq6vs4zk4";
};
wmClass = "jetbrains-idea";
};
diff --git a/pkgs/applications/editors/kile/frameworks.nix b/pkgs/applications/editors/kile/frameworks.nix
index 422c132b649..2fd8dfe4128 100644
--- a/pkgs/applications/editors/kile/frameworks.nix
+++ b/pkgs/applications/editors/kile/frameworks.nix
@@ -21,12 +21,12 @@
stdenv.mkDerivation rec {
name = "kile-${version}";
- version = "2016-02-14";
+ version = "2016-07-02";
src = fetchgit {
url = git://anongit.kde.org/kile.git;
- rev = "7b238c42580abc936816d4ea0df61d0cbbefecc4";
- sha256 = "f37d531489a84911b47664697bb3bddc0ba5591854749c17fb0c6b1e71dbc6ee";
+ rev = "d38bc7069667119cc891b351188484ca6fb88973";
+ sha256 = "1nha71i16fs7nq2812b5565nbmbsbs3ak5czas6xg1dg5bsvdqh8";
};
diff --git a/pkgs/applications/editors/lighttable/default.nix b/pkgs/applications/editors/lighttable/default.nix
index 9b87f13d623..108b7cceb4e 100644
--- a/pkgs/applications/editors/lighttable/default.nix
+++ b/pkgs/applications/editors/lighttable/default.nix
@@ -56,7 +56,7 @@ stdenv.mkDerivation rec {
'';
meta = with stdenv.lib; {
- description = "the next generation code editor";
+ description = "The next generation code editor";
homepage = http://www.lighttable.com/;
license = licenses.gpl3;
maintainers = [ maintainers.matejc ];
diff --git a/pkgs/applications/editors/monodevelop/default.nix b/pkgs/applications/editors/monodevelop/default.nix
index 69d6a3b2789..cdf1daabea7 100644
--- a/pkgs/applications/editors/monodevelop/default.nix
+++ b/pkgs/applications/editors/monodevelop/default.nix
@@ -59,7 +59,7 @@ stdenv.mkDerivation rec {
2a3,5
> export MONO_GAC_PREFIX=${gnome-sharp}:${gtk-sharp}:\$MONO_GAC_PREFIX
> export PATH=${mono}/bin:\$PATH
- > export LD_LIBRARY_PATH=${glib}/lib:${gnome.libgnomeui}/lib:${gnome.gnome_vfs}/lib:${gnome-sharp}/lib:${gtk-sharp}/lib:${gtk-sharp.gtk}/lib:\$LD_LIBRARY_PATH
+ > export LD_LIBRARY_PATH=${stdenv.lib.makeLibraryPath [ glib gnome.libgnomeui gnome.gnome_vfs gnome-sharp gtk-sharp gtk-sharp.gtk ]}:\$LD_LIBRARY_PATH
>
EOF
done
diff --git a/pkgs/applications/editors/nano/default.nix b/pkgs/applications/editors/nano/default.nix
index efec2410f9b..5e270d03a82 100644
--- a/pkgs/applications/editors/nano/default.nix
+++ b/pkgs/applications/editors/nano/default.nix
@@ -12,10 +12,10 @@ with stdenv.lib;
stdenv.mkDerivation rec {
name = "nano-${version}";
- version = "2.5.3";
+ version = "2.6.1";
src = fetchurl {
- url = "mirror://gnu/nano/${name}.tar.gz";
- sha256 = "1vhjrcydcfxqq1719vcsvqqnbjbq2523m00dhzag5vwzkc961c5j";
+ url = "https://nano-editor.org/dist/v2.6/${name}.tar.gz";
+ sha256 = "56f2ba1c532647bee36abd5f87a714400af0be084cf857a65bc8f41a0dc28fe5";
};
nativeBuildInputs = [ texinfo ] ++ optional enableNls gettext;
buildInputs = [ ncurses ];
diff --git a/pkgs/applications/editors/ne/default.nix b/pkgs/applications/editors/ne/default.nix
index 4e8324894ab..169e078edbd 100644
--- a/pkgs/applications/editors/ne/default.nix
+++ b/pkgs/applications/editors/ne/default.nix
@@ -22,7 +22,7 @@ stdenv.mkDerivation rec {
'';
meta = {
- description = "the nice editor";
+ description = "The nice editor";
homepage = https://github.com/vigna/ne;
longDescription = ''
ne is a free (GPL'd) text editor based on the POSIX standard that runs (we hope) on almost any
diff --git a/pkgs/applications/editors/neovim/default.nix b/pkgs/applications/editors/neovim/default.nix
index 19aa39bff4b..31f1559b4ee 100644
--- a/pkgs/applications/editors/neovim/default.nix
+++ b/pkgs/applications/editors/neovim/default.nix
@@ -1,5 +1,5 @@
{ stdenv, fetchFromGitHub, cmake, gettext, glib, libmsgpack, libtermkey
-, libtool, libuv, lua, luajit, luaPackages, man, ncurses, perl, pkgconfig
+, libtool, libuv, luajit, luaPackages, man, ncurses, perl, pkgconfig
, unibilium, makeWrapper, vimUtils, xsel
, withPython ? true, pythonPackages, extraPythonPackages ? []
@@ -75,20 +75,14 @@ let
glib
libtermkey
libuv
- # For some reason, `luajit` has to be listed after `lua`. See
- # https://github.com/NixOS/nixpkgs/issues/14442
- lua
- luajit
libmsgpack
ncurses
neovimLibvterm
unibilium
-
- luaPackages.lpeg
- luaPackages.mpack
- luaPackages.luabitop
-
- ] ++ optional withJemalloc jemalloc;
+ luajit
+ luaPackages.lua
+ ] ++ optional withJemalloc jemalloc
+ ++ lualibs;
nativeBuildInputs = [
cmake
@@ -97,11 +91,13 @@ let
pkgconfig
];
- LUA_CPATH = "${luaPackages.lpeg}/lib/lua/${lua.luaversion}/?.so;${luaPackages.mpack}/lib/lua/${lua.luaversion}/?.so;${luaPackages.luabitop}/lib/lua/${lua.luaversion}/?.so";
+ LUA_PATH = stdenv.lib.concatStringsSep ";" (map luaPackages.getLuaPath lualibs);
+ LUA_CPATH = stdenv.lib.concatStringsSep ";" (map luaPackages.getLuaCPath lualibs);
- configureFlags = [
- "-DCMAKE_BUILD_TYPE=RelWithDebInfo"
- "-DENABLE_JEMALLOC=ON"
+ lualibs = [ luaPackages.mpack luaPackages.lpeg luaPackages.luabitop ];
+
+ cmakeFlags = [
+ "-DLUA_PRG=${luaPackages.lua}/bin/lua"
];
# triggers on buffer overflow bug while running tests
diff --git a/pkgs/applications/editors/sigil/default.nix b/pkgs/applications/editors/sigil/default.nix
index ad6f599a361..ed72043d723 100644
--- a/pkgs/applications/editors/sigil/default.nix
+++ b/pkgs/applications/editors/sigil/default.nix
@@ -1,67 +1,42 @@
-{ stdenv, fetchurl, unzip, cmake, pkgconfig, makeWrapper
-, hunspell, minizip, boost, xercesc
+{ stdenv, fetchFromGitHub, cmake, pkgconfig, makeWrapper
+, boost, xercesc
, qtbase, qttools, qtwebkit, qtxmlpatterns
+, python3, python3Packages
}:
-let
- version = "0.7.4";
-
-in
-
stdenv.mkDerivation rec {
name = "sigil-${version}";
+ version = "0.9.6";
- src = fetchurl {
- url = "https://sigil.googlecode.com/files/Sigil-${version}-Code.zip";
- sha256 = "68c7ca15ea8611921af0c435369563f55c6afd2ef1fb0945cf6c4a47429b0fb5";
+ src = fetchFromGitHub {
+ sha256 = "0hihd5f3avpdvxwp5j80qdg74zbw7p20y6j9q8cw7wd0bak58h9c";
+ rev = version;
+ repo = "Sigil";
+ owner = "Sigil-Ebook";
};
+ pythonPath = with python3Packages; [ lxml ];
+
+ propagatedBuildInputs = with python3Packages; [ lxml ];
+
buildInputs = [
- unzip cmake pkgconfig
- hunspell minizip boost xercesc qtbase qttools qtwebkit qtxmlpatterns
+ cmake pkgconfig
+ boost xercesc qtbase qttools qtwebkit qtxmlpatterns
+ python3 python3Packages.lxml makeWrapper
];
- # XXX: the compiler seems to treat the .h file inappropriately:
- #
- # COMMAND ${CMAKE_CXX_COMPILER} ${compile_flags} \
- # ${CMAKE_CURRENT_SOURCE_DIR}/${header_name}.h \
- # -o ${header_name}.h.gch
- #
- # but using -c or -x c++-header seems to work:
- #
- # COMMAND ${CMAKE_CXX_COMPILER} ${compile_flags} \
- # -c ${CMAKE_CURRENT_SOURCE_DIR}/${header_name}.h \
- # -o ${header_name}.h.gch
- #
- # COMMAND ${CMAKE_CXX_COMPILER} ${compile_flags} \
- # -x c++-header ${CMAKE_CURRENT_SOURCE_DIR}/${header_name}.h \
- # -o ${header_name}.h.gch
- #
- # Might be related to:
- #
- # http://permalink.gmane.org/gmane.comp.gcc.bugs/361195
- buildCommand = ''
- mkdir -pv $out
- mkdir -pv ${name}/src ${name}/build ${name}/run
- cd ${name}/src
- unzip -n ${src}
- sed -i \
- -e 's|\(COMMAND\) \([^ ]\+\) \([^ ]\+\) \(.*\)|\1 \2 \3 -c \4|' \
- cmake_extras/CustomPCH.cmake
- cd ../build
- cmake -G "Unix Makefiles" \
- -DCMAKE_INSTALL_PREFIX=$out \
- -DCMAKE_BUILD_TYPE=Release \
- -DCMAKE_SKIP_BUILD_RPATH=ON \
- ../src
- make
- make install
+ preFixup = ''
+ wrapProgram "$out/bin/sigil" \
+ --prefix PYTHONPATH : $PYTHONPATH:$(toPythonPath ${python3Packages.lxml})
'';
+ enableParallelBuilding = true;
+
meta = {
description = "Free, open source, multi-platform ebook (ePub) editor";
- homepage = https://code.google.com/p/sigil/;
+ homepage = https://github.com/Sigil-Ebook/Sigil/;
license = stdenv.lib.licenses.gpl3;
inherit version;
+ maintainers = with stdenv.lib.maintainers; [ ramkromberg ];
};
}
diff --git a/pkgs/applications/editors/texmaker/default.nix b/pkgs/applications/editors/texmaker/default.nix
index f4d9d4ccdd5..eb6e1baccb5 100644
--- a/pkgs/applications/editors/texmaker/default.nix
+++ b/pkgs/applications/editors/texmaker/default.nix
@@ -2,12 +2,12 @@
stdenv.mkDerivation rec {
pname = "texmaker";
- version = "4.4.1";
+ version = "4.5";
name = "${pname}-${version}";
src = fetchurl {
url = "http://www.xm1math.net/texmaker/${name}.tar.bz2";
- sha256 = "1d5lb4sibdhvzgfr0zi48j92b4acvvvdy2biqi3jzjdnzy9r94w0";
+ sha256 = "056njk6j8wma23mlp7xa3rgfaxx0q8ynwx8wkmj7iy0b85p9ds9c";
};
buildInputs = [ qt4 poppler_qt4 zlib ];
diff --git a/pkgs/applications/editors/texstudio/default.nix b/pkgs/applications/editors/texstudio/default.nix
index 4accf1cad67..69f03f39271 100644
--- a/pkgs/applications/editors/texstudio/default.nix
+++ b/pkgs/applications/editors/texstudio/default.nix
@@ -2,13 +2,13 @@
stdenv.mkDerivation rec {
pname = "texstudio";
- version = "2.9.4";
+ version = "2.11.0";
name = "${pname}-${version}";
altname="Texstudio";
src = fetchurl {
url = "mirror://sourceforge/texstudio/${name}.tar.gz";
- sha256 = "1smmc4xqs8x8qzp6iqj2wr4xarfnxxxp6rq6chx1kb256w75jwfw";
+ sha256 = "170e6d68952251e8c64589b0d147cb7692005e135cc6fc14579c6fd593f54307";
};
buildInputs = [ qt4 qmake4Hook poppler_qt4 zlib pkgconfig ];
@@ -18,7 +18,7 @@ stdenv.mkDerivation rec {
meta = with stdenv.lib; {
description = "TeX and LaTeX editor";
longDescription=''
- Fork of TeXMaker, this editor is a full fledged IDE for
+ Fork of TeXMaker, this editor is a full fledged IDE for
LaTeX editing with completion, structure viewer, preview,
spell checking and support of any compilation chain.
'';
diff --git a/pkgs/applications/editors/textadept/default.nix b/pkgs/applications/editors/textadept/default.nix
index a8f12bd4ece..f412a9bada2 100644
--- a/pkgs/applications/editors/textadept/default.nix
+++ b/pkgs/applications/editors/textadept/default.nix
@@ -1,69 +1,158 @@
-{stdenv, fetchhg, fetchurl, fetchzip, gtk, glib, pkgconfig, unzip, ncurses, zip}:
+{ stdenv, fetchhg, fetchurl, fetchzip, gtk, glib, pkgconfig, unzip, ncurses, zip }:
let
- buildInputs = [
- gtk glib pkgconfig unzip ncurses zip
- ];
+ # Textadept requires a whole bunch of external dependencies.
+ # The build system expects to be able to download them with wget.
+ # This expression gets Nix to fetch them instead.
+
+
cached_url = url: sha256: fetchurl {
inherit sha256 url;
};
- get_url = url: sha256: ''
- cp ${(cached_url url sha256)} $(basename ${(cached_url url sha256)} | sed -e 's@^[0-9a-z]\+-@@')
- touch $(basename ${(cached_url url sha256)} | sed -e 's@^[0-9a-z]\+-@@')
+
+ get_url = url: sha256: let
+ store_path = cached_url url sha256;
+ in ''
+ local_path=$(basename ${store_path} | sed -e 's@^[0-9a-z]\+-@@')
+
+ # Copy the file from the Nix store and remove the hash part.
+ cp ${store_path} $local_path
+
+ # Update its access and modified times.
+ touch $local_path
'';
+
cached_url_zip = url: sha256: fetchzip {
inherit sha256 url;
};
- get_url_zip = url: sha256: let zipdir = (cached_url_zip url sha256); in ''
- ( d=$PWD; cd $TMPDIR; name=$(basename ${zipdir} .zip | sed -e 's/^[a-z0-9]*-//');
- cp -r ${zipdir} $name; chmod u+rwX -R $name; zip -r $d/$name.zip $name )
- touch $name
+
+ get_url_zip = url: sha256: let
+ store_path = cached_url_zip url sha256;
+ in ''
+ (
+ build_dir=$PWD
+ cd $TMPDIR
+
+ local_path=$(basename ${store_path} .zip | sed -e 's/^[a-z0-9]*-//')
+
+ cp -r ${store_path} $local_path
+ chmod u+rwX -R $local_path
+ zip -r $build_dir/$local_path.zip $local_path
+ touch $local_path
+ )
'';
+
+
+ # These lists are taken from the Makefile.
+ scintilla_tgz = "scintilla365.tgz";
+ scinterm_zip = "scinterm_1.8.zip";
+ scintillua_zip = "scintillua_3.6.5-1.zip";
+ lua_tgz = "lua-5.3.2.tar.gz";
+ lpeg_tgz = "lpeg-1.0.0.tar.gz";
+ lfs_zip = "v_1_6_3.zip";
+ luautf8_zip = "0.1.1.zip";
+ lspawn_zip = "lspawn_1.5.zip";
+ luajit_tgz = "LuaJIT-2.0.3.tar.gz";
+ libluajit_tgz = "libluajit_2.0.3.x86_64.tgz";
+ gtdialog_zip = "gtdialog_1.2.zip";
+ cdk_tgz = "cdk-5.0-20150928.tgz";
+ termkey_tgz = "libtermkey-0.17.tar.gz";
+ bombay_zip = "bombay.zip";
+
+ scinterm_url = "http://foicica.com/scinterm/download/" + scinterm_zip;
+ scintillua_url = "http://foicica.com/scintillua/download/" + scintillua_zip;
+ gtdialog_url = "http://foicica.com/gtdialog/download/" + gtdialog_zip;
+ lspawn_url = "http://foicica.com/lspawn/download/" + lspawn_zip;
+
+ scintilla_url = "http://prdownloads.sourceforge.net/scintilla/" + scintilla_tgz;
+ lua_url = "http://www.lua.org/ftp/" + lua_tgz;
+ lpeg_url = "http://www.inf.puc-rio.br/~roberto/lpeg/" + lpeg_tgz;
+ lfs_url = "https://github.com/keplerproject/luafilesystem/archive/" + lfs_zip;
+ luautf8_url = "https://github.com/starwing/luautf8/archive/" + luautf8_zip;
+ luajit_url = "http://luajit.org/download/" + luajit_tgz;
+ libluajit_url = "http://foicica.com/textadept/download/" + libluajit_tgz;
+ cdk_url = "http://invisible-mirror.net/archives/cdk/" + cdk_tgz;
+ bombay_url = "http://foicica.com/hg/bombay/archive/tip.zip";
+ termkey_url = "http://www.leonerd.org.uk/code/libtermkey/" + termkey_tgz;
+
+
+ get_scintilla = get_url scintilla_url "1s5zbkn5f3vs8gbnjlkfzw4b137y12m3c89lyc4pmvqvrvxgyalj";
+ get_scinterm = get_url scinterm_url "02ax6cjpxylfz7iqp1cjmsl323in066a38yklmsyzdl3w7761nxi";
+ get_scintillua = get_url scintillua_url "0s4q7a9mgvxh0msi18llkczhcgafaiizw9qm1p9w18r2a7wjq9wc";
+ get_lua = get_url lua_url "13x6knpv5xsli0n2bib7g1nrga2iacy7qfy63i798dm94fxwfh67";
+ get_lpeg = get_url lpeg_url "13mz18s359wlkwm9d9iqlyyrrwjc6iqfpa99ai0icam2b3khl68h";
+ get_lfs = get_url_zip lfs_url "1hxcnqj53540ysyw8fzax7f09pl98b8f55s712gsglcdxp2g2pri";
+ get_luautf8_zip = get_url_zip luautf8_url "1dgmxdk88njpic4d4sn2wzlni4b6sfqcsmh2hrraxivpqf9ps7f7";
+ get_lspawn = get_url lspawn_url "09c6v9irblay2kv1n7i59pyj9g4xb43c6rfa7ba5m353lymcwwqi";
+ get_luajit = get_url luajit_url "0ydxpqkmsn2c341j4r2v6r5r0ig3kbwv3i9jran3iv81s6r6rgjm";
+ get_libluajit = get_url libluajit_url "1nhvcdjpqrhd5qbihdm3bxpw84irfvnw2vmfqnsy253ay3dxzrgy";
+ get_gtdialog = get_url gtdialog_url "0nvcldyhj8abr8jny9pbyfjwg8qfp9f2h508vjmrvr5c5fqdbbm0";
+ get_cdk = get_url cdk_url "0j74l874y33i26y5kjg3pf1vswyjif8k93pqhi0iqykpbxfsg382";
+ get_bombay = get_url_zip bombay_url "05fnh1imxdb4sb076fzqywqszp31whdbkzmpkqxc8q2r1m5vj3hg"
+ + "mv tip.zip bombay.zip\n";
+ get_termkey = get_url termkey_url "12gkrv1ldwk945qbpprnyawh0jz7rmqh18fyndbxiajyxmj97538";
+
+
+ get_deps = get_scintilla
+ + get_scinterm
+ + get_scintillua
+ + get_lua
+ + get_lpeg
+ + get_lfs
+ + get_luautf8_zip
+ + get_lspawn
+ + get_luajit
+ + get_libluajit
+ + get_gtdialog
+ + get_cdk
+ + get_bombay
+ + get_termkey;
in
-stdenv.mkDerivation rec{
- version = "8.2";
- scintillua_version = "3.6.0-1";
+stdenv.mkDerivation rec {
+ version = "8.7";
name = "textadept-${version}";
- inherit buildInputs;
+
+ buildInputs = [
+ gtk glib pkgconfig unzip ncurses zip
+ ];
+
src = fetchhg {
url = http://foicica.com/hg/textadept;
rev = "textadept_${version}";
- sha256 = "1vb6a15fyk7ixcv5fy0g400lxbj6dp5ndbmyx53d28idbdkz9ap1";
+ sha256 = "1gi73wk11w3rbkxqqdp8z9g83qiyhx6gxry221vxjxpqsl9pvhlf";
};
+
preConfigure = ''
cd src
+
+ # Make a dummy wget.
mkdir wget
echo '#! ${stdenv.shell}' > wget/wget
chmod a+x wget/wget
export PATH="$PATH:$PWD/wget"
- ${get_url http://prdownloads.sourceforge.net/scintilla/scintilla360.tgz "07ib4w3n9kqfaia2yngj2q7ab5r55zn0hccfzph6vas9hl8vk9zf"}
- ${get_url http://foicica.com/scinterm/download/scinterm_1.6.zip "0ixwj9il6ri1xl4nvb6f108z4qhrahysza6frbbaqmbdz21hnmcl"}
- ${get_url http://foicica.com/scintillua/download/scintillua_3.6.0-1.zip "0zk1ciyyi0d3dz4dzzq5fa74505pvqf0w5yszl7l29c1l4hkk561"}
- ${get_url http://www.lua.org/ftp/lua-5.3.1.tar.gz "05xczy5ws6d7ic3f9h9djwg983bpa4pmds3698264bncssm6f9q7"}
- ${get_url http://www.inf.puc-rio.br/~roberto/lpeg/lpeg-0.12.2.tar.gz "01002avq90yc8rgxa5z9a1768jm054iid3pnfpywdcfij45jgbba"}
- ${get_url_zip http://github.com/keplerproject/luafilesystem/archive/v_1_6_3.zip "1hxcnqj53540ysyw8fzax7f09pl98b8f55s712gsglcdxp2g2pri"}
- ${get_url http://foicica.com/lspawn/download/lspawn_1.2.zip "1fhfi274bxlsdvva5q5j0wv8hx68cmf3vnv9spllzad4jdvz82xv"}
- ${get_url http://luajit.org/download/LuaJIT-2.0.3.tar.gz "0ydxpqkmsn2c341j4r2v6r5r0ig3kbwv3i9jran3iv81s6r6rgjm"}
- ${get_url http://foicica.com/gtdialog/download/gtdialog_1.2.zip "0nvcldyhj8abr8jny9pbyfjwg8qfp9f2h508vjmrvr5c5fqdbbm0"}
- ${get_url ftp://invisible-island.net/cdk/cdk-5.0-20150928.tgz "028da75d5f777a1c4184f88e34918bd273bd83bbe3c959bc11710c4f0ea2e448"}
- mv cdk-*.tgz cdk.tar.gz
- ${get_url_zip http://foicica.com/hg/bombay/archive/d704272c3629.zip "19dg3ky87rfy0a3319vmv18hgn9spplpznvlqnk3djh239ddpplw"}
- mv d704*.zip bombay.zip
- ${get_url http://www.leonerd.org.uk/code/libtermkey/libtermkey-0.17.tar.gz "12gkrv1ldwk945qbpprnyawh0jz7rmqh18fyndbxiajyxmj97538"}
+
+ ${get_deps}
+
+ # Let the build system do whatever setup it needs to do with these files.
make deps
'';
+
postBuild = ''
make curses
'';
+
postInstall = ''
make curses install PREFIX=$out MAKECMDGOALS=curses
'';
- makeFlags = ["PREFIX=$(out)"];
- meta = {
- inherit version;
+
+ makeFlags = [
+ "PREFIX=$(out)"
+ ];
+
+ meta = with stdenv.lib; {
description = "An extensible text editor based on Scintilla with Lua scripting";
- license = stdenv.lib.licenses.mit ;
- maintainers = [stdenv.lib.maintainers.raskin];
- platforms = stdenv.lib.platforms.linux;
- homepage = "http://foicica.com/textadept";
+ homepage = http://foicica.com/textadept;
+ license = licenses.mit;
+ maintainers = with maintainers; [ raskin mirrexagon ];
+ platforms = platforms.linux;
};
}
diff --git a/pkgs/applications/editors/vim/configurable.nix b/pkgs/applications/editors/vim/configurable.nix
index d041295ee9f..f0d76eae3b4 100644
--- a/pkgs/applications/editors/vim/configurable.nix
+++ b/pkgs/applications/editors/vim/configurable.nix
@@ -1,6 +1,6 @@
# TODO tidy up eg The patchelf code is patching gvim even if you don't build it..
# but I have gvim with python support now :) - Marc
-args@{pkgs, source ? "default", fetchurl, fetchhg, stdenv, ncurses, pkgconfig, gettext
+args@{pkgs, source ? "default", fetchurl, fetchFromGitHub, stdenv, ncurses, pkgconfig, gettext
, composableDerivation, lib, config, glib, gtk, python, perl, tcl, ruby
, libX11, libXext, libSM, libXpm, libXt, libXaw, libXau, libXmu
, libICE
@@ -50,10 +50,11 @@ composableDerivation {
builtins.getAttr source {
"default" =
# latest release
- args.fetchhg {
- url = "http://vim.googlecode.com/hg/";
- rev = "v${version}";
- sha256 = "01m67lvnkz0ad28ifj964zcg63y5hixplbnzas5xarj8vl3pc5a0";
+ args.fetchFromGitHub {
+ owner = "vim";
+ repo = "vim";
+ rev = "v${version}";
+ sha256 = "04hp2gqbbj9h872bgj1g9xcaj5qlg9q45v6by2ch9n105dng9aj3";
};
"vim-nox" =
diff --git a/pkgs/applications/editors/vscode/default.nix b/pkgs/applications/editors/vscode/default.nix
index b372dda1bf8..3ec61a16915 100644
--- a/pkgs/applications/editors/vscode/default.nix
+++ b/pkgs/applications/editors/vscode/default.nix
@@ -1,12 +1,12 @@
{ stdenv, lib, callPackage, fetchurl, unzip, atomEnv, makeDesktopItem }:
let
- version = "1.0.0";
- rev = "fa6d0f03813dfb9df4589c30121e9fcffa8a8ec8";
+ version = "1.2.1";
+ rev = "fe7f407b95b7f78405846188259504b34ef72761";
- sha256 = if stdenv.system == "i686-linux" then "1nnsvr51k8cmq8rccksylam4ww40pdn9dnhnp9096z5ccrf4qa1b"
- else if stdenv.system == "x86_64-linux" then "0p408pp2il6kawfsql8n5dvl75kmf2n2p0r266mjnww6vprmq4gw"
- else if stdenv.system == "x86_64-darwin" then "06k41ljfvgyxbl364jlkdjk8lkwr6bpq2r051vin93cnqfxridkq"
+ sha256 = if stdenv.system == "i686-linux" then "10jm92i88ds6q5rybm19z0z3g35gqhp6jqr2ldxcryijl17gj1n5"
+ else if stdenv.system == "x86_64-linux" then "0jg40gbz3s9vxqpnkg267ck8kbwvgiqhw8hsn26r42wyxmj8773v"
+ else if stdenv.system == "x86_64-darwin" then "1b241wfzp8m0nvycjprwv39l4pax9lyqzngj4ghkkdnb8ai2hd2z"
else throw "Unsupported system: ${stdenv.system}";
urlMod = if stdenv.system == "i686-linux" then "linux-ia32"
diff --git a/pkgs/applications/editors/wily/default.nix b/pkgs/applications/editors/wily/default.nix
new file mode 100644
index 00000000000..fb4ae6afc09
--- /dev/null
+++ b/pkgs/applications/editors/wily/default.nix
@@ -0,0 +1,26 @@
+{ stdenv, fetchurl, libX11, libXt } :
+
+stdenv.mkDerivation rec {
+ version = "0.13.42";
+ name = "wily-${version}";
+
+ src = fetchurl {
+ url = "mirror://sourceforge/wily/${name}.tar.gz";
+ sha256 = "1jy4czk39sh365b0mjpj4d5wmymj98x163vmwzyx3j183jqrhm2z";
+ };
+
+ buildInputs = [ libX11 libXt ];
+
+ configureFlags = [ "--prefix=$(out)" ];
+
+ preInstall = ''
+ mkdir -p $out/bin
+ '';
+
+ meta = with stdenv.lib; {
+ description = "An emulation of ACME";
+ homepage = http://wily.sourceforge.net;
+ license = licenses.artistic1;
+ maintainers = [ maintainers.vrthra ];
+ };
+}
diff --git a/pkgs/applications/graphics/antimony/default.nix b/pkgs/applications/graphics/antimony/default.nix
index 8d17a290ceb..b7d9f4a8159 100644
--- a/pkgs/applications/graphics/antimony/default.nix
+++ b/pkgs/applications/graphics/antimony/default.nix
@@ -1,29 +1,25 @@
-{ stdenv, fetchgit, libpng, python3, boost, mesa, qtbase, qmakeHook, ncurses }:
+{ stdenv, fetchFromGitHub, libpng, python3, boost, mesa, qtbase, ncurses, cmake, flex, lemon }:
let
- gitRev = "745eca3a2d2657c495d5509e9083c884e021d09c";
+ gitRev = "e8480c718e8c49ae3cc2d7af10ea93ea4c2fff9a";
gitBranch = "master";
- gitTag = "0.8.0b";
+ gitTag = "0.9.2";
in
stdenv.mkDerivation rec {
name = "antimony-${version}";
version = gitTag;
- src = fetchgit {
- url = "git://github.com/mkeeter/antimony.git";
- rev = gitRev;
- sha256 = "0azjdkbixz2pyk2yy7a0ya5xk60xgw3l2pd4pj4ijyqxx5jmh0sy";
+ src = fetchFromGitHub {
+ owner = "mkeeter";
+ repo = "antimony";
+ rev = gitTag;
+ sha256 = "0fpgy5cb4knz2z9q078206k8wzxfs8b9g76mf4bz1ic77931ykjz";
};
patches = [ ./paths-fix.patch ];
- # fix build with glibc-2.23
+
postPatch = ''
- sed 's/\ /dev/null)
--GITBRANCH = $$system(git rev-parse --abbrev-ref HEAD)
+-execute_process(COMMAND git log --pretty=format:'%h' -n 1
+- OUTPUT_VARIABLE GITREV)
+-execute_process(COMMAND bash -c "git diff --quiet --exit-code || echo +"
+- OUTPUT_VARIABLE GITDIFF)
+-execute_process(COMMAND git describe --exact-match --tags
+- OUTPUT_VARIABLE GITTAG
+- ERROR_QUIET)
+-execute_process(COMMAND git rev-parse --abbrev-ref HEAD
+- OUTPUT_VARIABLE GITBRANCH)
-
--QMAKE_CXXFLAGS += "-D'GITREV=\"$${GITREV}$${GITDIFF}\"'"
--QMAKE_CXXFLAGS += "-D'GITTAG=\"$${GITTAG}\"'"
--QMAKE_CXXFLAGS += "-D'GITBRANCH=\"$${GITBRANCH}\"'"
-+QMAKE_CXXFLAGS += "-D'GITREV=\"$$(GITREV)\"'"
-+QMAKE_CXXFLAGS += "-D'GITTAG=\"$$(GITTAG)\"'"
-+QMAKE_CXXFLAGS += "-D'GITBRANCH=\"$$(GITBRANCH)\"'"
-
- OLD_GL_SET = $$(OLD_GL)
- equals(OLD_GL_SET, "true") {
-@@ -125,11 +120,11 @@ macx {
- }
-
- linux {
-- executable.path = /usr/local/bin
-+ executable.path = $$(out)/bin
- executable.files = antimony
-- nodes_folder.path = /usr/local/bin/sb/nodes
-+ nodes_folder.path = $$(out)/bin/sb/nodes
- nodes_folder.files = ../py/nodes/*
-- fab_folder.path = /usr/local/bin/sb/fab
-+ fab_folder.path = $$(out)/bin/sb/fab
- fab_folder.files = ../py/fab/*
- INSTALLS += executable nodes_folder fab_folder
- }
-diff --git a/qt/fab.pri b/qt/fab.pri
-index a54813b..b500536 100644
---- a/qt/fab.pri
-+++ b/qt/fab.pri
-@@ -54,7 +54,7 @@ DEFINES += '_STATIC_= '
-
- linux {
- QMAKE_CFLAGS += -std=gnu99
-- QMAKE_CXXFLAGS += $$system(/usr/bin/python3-config --includes)
-+ QMAKE_CXXFLAGS += $$system(python3-config --includes)
- LIBS += -lpng
- }
-
-diff --git a/qt/shared.pri b/qt/shared.pri
-index e7d0e3a..026eae3 100644
---- a/qt/shared.pri
-+++ b/qt/shared.pri
-@@ -39,41 +39,11 @@ macx {
- }
-
- linux {
-- QMAKE_CXXFLAGS += $$system(/usr/bin/python3-config --includes)
-- QMAKE_LFLAGS += $$system(/usr/bin/python3-config --ldflags)
-+ QMAKE_CXXFLAGS += $$system(python3-config --includes)
-+ QMAKE_LFLAGS += $$system(python3-config --ldflags)
-
- # Even though this is in QMAKE_LFLAGS, the linker is picky about
- # library ordering (so it needs to be here too).
- LIBS += -lpython3.4m
--
-- # ldconfig is being used to find libboost_python, but it's in a different
-- # place in different distros (and is not in the default $PATH on Debian).
-- # First, check to see if it's on the default $PATH.
-- system(which ldconfig > /dev/null) {
-- LDCONFIG_BIN = "ldconfig"
-- }
-- # If that failed, then search for it in its usual places.
-- isEmpty(LDCONFIG_BIN) {
-- for(p, $$list(/sbin/ldconfig /usr/bin/ldconfig)) {
-- exists($$p): LDCONFIG_BIN = $$p
-- }
-- }
-- # If that search failed too, then exit with an error.
-- isEmpty(LDCONFIG_BIN) {
-- error("Could not find ldconfig!")
-- }
--
-- # Check for different boost::python naming schemes
-- LDCONFIG_OUT = $$system($$LDCONFIG_BIN -p|grep python)
-- for (b, $$list(boost_python-py34 boost_python3)) {
-- contains(LDCONFIG_OUT, "lib$${b}.so") {
-- LIBS += "-l$$b"
-- GOT_BOOST_PYTHON = True
-- }
-- }
--
-- # If we couldn't find boost::python, exit with an error.
-- isEmpty(GOT_BOOST_PYTHON) {
-- error("Could not find boost::python3")
-- }
-+ LIBS += -lboost_python3
- }
+ add_definitions(-D'GITREV="${GITREV}${GITDIFF}"'
+ -D'GITTAG="${GITTAG}"'
+ -D'GITBRANCH="${GITBRANCH}"')
diff --git a/pkgs/applications/graphics/feh/default.nix b/pkgs/applications/graphics/feh/default.nix
index 2d7b8874246..a20a1be77f8 100644
--- a/pkgs/applications/graphics/feh/default.nix
+++ b/pkgs/applications/graphics/feh/default.nix
@@ -2,11 +2,11 @@
, libXinerama, curl, libexif, perlPackages }:
stdenv.mkDerivation rec {
- name = "feh-2.15.4";
+ name = "feh-2.16.1";
src = fetchurl {
url = "http://feh.finalrewind.org/${name}.tar.bz2";
- sha256 = "b8a9c29f37b1349228b19866f712b677e2a150837bc46be8c5d6348dd4850758";
+ sha256 = "1cxnc8dxyl7s4qnkvdjaqx7gdvc6brxpq0qbg91mljg47fd2hmbf";
};
outputs = [ "out" "doc" ];
diff --git a/pkgs/applications/graphics/freecad/default.nix b/pkgs/applications/graphics/freecad/default.nix
index 0390021d839..482abe2126f 100644
--- a/pkgs/applications/graphics/freecad/default.nix
+++ b/pkgs/applications/graphics/freecad/default.nix
@@ -1,19 +1,19 @@
{ stdenv, fetchurl, cmake, coin3d, xercesc, ode, eigen, qt4, opencascade, gts
, boost, zlib, python, swig, gfortran, soqt, libf2c, makeWrapper
-, matplotlib, pycollada, pyside, pysideTools, pysideShiboken }:
+, matplotlib, pycollada, pyside, pysideTools, pysideShiboken, pivy }:
stdenv.mkDerivation rec {
name = "freecad-${version}";
- version = "0.15";
+ version = "0.16";
src = fetchurl {
- url = https://github.com/FreeCAD/FreeCAD/archive/0.15.tar.gz;
- sha256 = "1vndvywvq86hyhmg629bkn5ag4lk2mg1pl4dq7jvbjvbrczb12fc";
+ url = "https://github.com/FreeCAD/FreeCAD/archive/${version}.tar.gz";
+ sha256 = "02cfw5wlb04j0ymhk4skrm7rvbz13hpv995asf9v8q6wn2s1mivc";
};
buildInputs = [ cmake coin3d xercesc ode eigen qt4 opencascade gts boost
zlib python swig gfortran soqt libf2c makeWrapper matplotlib
- pycollada pyside pysideShiboken pysideTools
+ pycollada pyside pysideShiboken pysideTools pivy
];
enableParallelBuilding = true;
diff --git a/pkgs/applications/graphics/gimp/plugins/default.nix b/pkgs/applications/graphics/gimp/plugins/default.nix
index 4084018d1d5..74abc06bc4e 100644
--- a/pkgs/applications/graphics/gimp/plugins/default.nix
+++ b/pkgs/applications/graphics/gimp/plugins/default.nix
@@ -174,7 +174,7 @@ rec {
installPhase = "installPlugins gmic_gimp";
meta = {
- description = "script language for image processing which comes with its open-source interpreter";
+ description = "Script language for image processing which comes with its open-source interpreter";
homepage = http://gmic.eu/gimp.shtml;
license = stdenv.lib.licenses.cecill20;
/*
diff --git a/pkgs/applications/graphics/graphicsmagick/default.nix b/pkgs/applications/graphics/graphicsmagick/default.nix
index 63b88ee4fb9..b780067823a 100644
--- a/pkgs/applications/graphics/graphicsmagick/default.nix
+++ b/pkgs/applications/graphics/graphicsmagick/default.nix
@@ -2,14 +2,14 @@
, libjpeg, libpng, libtiff, libxml2, zlib, libtool, xz
, libX11, libwebp, quantumdepth ? 8}:
-let version = "1.3.23"; in
+let version = "1.3.24"; in
stdenv.mkDerivation {
name = "graphicsmagick-${version}";
src = fetchurl {
url = "mirror://sourceforge/graphicsmagick/GraphicsMagick-${version}.tar.xz";
- sha256 = "03g6l2h8cmf231y1vma0z7x85070jm1ysgs9ppqcd3jj56jka9gx";
+ sha256 = "1q40w5hcl8rcpszm0r7rpr3a9lj390p39zfvavkvlgxyyk7bmgsj";
};
patches = [ ./disable-popen.patch ];
diff --git a/pkgs/applications/graphics/jpegrescan/default.nix b/pkgs/applications/graphics/jpegrescan/default.nix
new file mode 100644
index 00000000000..1c65c7da3a2
--- /dev/null
+++ b/pkgs/applications/graphics/jpegrescan/default.nix
@@ -0,0 +1,42 @@
+{ stdenv, fetchFromGitHub, makeWrapper, libjpeg_turbo, perl, perlPackages }:
+
+stdenv.mkDerivation rec {
+ pname = "jpegrescan";
+ date = "2016-06-01";
+ name = "${pname}-${date}";
+
+ src = fetchFromGitHub {
+ owner = "kud";
+ repo = pname;
+ rev = "e5e39cd972b48ccfb2cba4da6855c511385c05f9";
+ sha256 = "0jbx1vzkzif6yjx1fnsm7fjsmq166sh7mn22lf01ll7s245nmpdp";
+ };
+
+ patchPhase = ''
+ patchShebangs jpegrescan
+ '';
+
+ installPhase = ''
+ mkdir -p $out/share/jpegrescan
+ mv README.md $out/share/jpegrescan/
+ mkdir $out/bin
+ mv jpegrescan $out/bin
+ chmod +x $out/bin/jpegrescan
+
+ wrapProgram $out/bin/jpegrescan --prefix PERL5LIB : $PERL5LIB
+ '';
+
+ propagatedBuildInputs = [ perlPackages.FileSlurp ];
+
+ buildInputs = [
+ perl libjpeg_turbo makeWrapper
+ ];
+
+ meta = with stdenv.lib; {
+ description = "losslessly shrink any JPEG file";
+ homepage = https://github.com/kud/jpegrescan;
+ license = licenses.publicDomain;
+ maintainers = [ maintainers.ramkromberg ];
+ platforms = platforms.all;
+ };
+}
diff --git a/pkgs/applications/graphics/leocad/default.nix b/pkgs/applications/graphics/leocad/default.nix
index 884dc115853..96384765bd0 100644
--- a/pkgs/applications/graphics/leocad/default.nix
+++ b/pkgs/applications/graphics/leocad/default.nix
@@ -17,6 +17,7 @@ stdenv.mkDerivation rec {
buildInputs = [ qt4 qmake4Hook zlib ];
postPatch = ''
+ sed '1i#include ' -i common/camera.cpp
substituteInPlace common/camera.cpp --replace "isnan(" "std::isnan("
export qmakeFlags="$qmakeFlags INSTALL_PREFIX=$out"
'';
diff --git a/pkgs/applications/graphics/photivo/default.nix b/pkgs/applications/graphics/photivo/default.nix
index 12816ba96af..d84363df899 100644
--- a/pkgs/applications/graphics/photivo/default.nix
+++ b/pkgs/applications/graphics/photivo/default.nix
@@ -10,15 +10,19 @@ stdenv.mkDerivation rec {
sha256 = "0f6y18k7db2ci6xn664zcwm1g1k04sdv7gg1yd5jk41bndjb7z8h";
};
- nativeBuildInputs = [ cmake pkgconfig ];
-
- buildInputs = [ qt4 fftw graphicsmagick_q16 lcms2 lensfun libjpeg exiv2 liblqr1 ];
- patchPhase = '' # kinda icky
+ postPatch = '' # kinda icky
sed -e '/("@INSTALL@")/d' \
-e s,@INSTALL@,$out/share/photivo, \
-i Sources/ptSettings.cpp
+ sed '1i#include ' -i Sources/filters/ptFilter_StdCurve.cpp
'';
+ nativeBuildInputs = [ cmake pkgconfig ];
+
+ buildInputs = [ qt4 fftw graphicsmagick_q16 lcms2 lensfun libjpeg exiv2 liblqr1 ];
+
+ enableParallelBuilding = true;
+
meta = with stdenv.lib; {
platforms = platforms.linux;
maintainers = [ maintainers.mornfall ];
diff --git a/pkgs/applications/graphics/rawtherapee/default.nix b/pkgs/applications/graphics/rawtherapee/default.nix
index 34ad7821c87..aeb427348ca 100644
--- a/pkgs/applications/graphics/rawtherapee/default.nix
+++ b/pkgs/applications/graphics/rawtherapee/default.nix
@@ -1,21 +1,26 @@
-{ stdenv, fetchurl, pkgconfig, gtk, cmake, pixman, libpthreadstubs, gtkmm, libXau
-, libXdmcp, lcms2, libiptcdata, libcanberra, fftw, expat
+{ stdenv, fetchFromGitHub, pkgconfig, gtk, cmake, pixman, libpthreadstubs, gtkmm, libXau
+, libXdmcp, lcms2, libiptcdata, libcanberra, fftw, expat, pcre, libsigcxx
, mercurial # Not really needed for anything, but it fails if it does not find 'hg'
}:
stdenv.mkDerivation rec {
- name = "rawtherapee-4.0.10";
+ name = "rawtherapee-4.2";
- src = fetchurl {
- url = http://rawtherapee.googlecode.com/files/rawtherapee-4.0.10.tar.xz;
- sha256 = "1ibsdm2kqpw796rcdihnnp67vx0wm1d1bnlzq269r9p01w5s102g";
+ src = fetchFromGitHub {
+ owner = "Beep6581";
+ repo = "RawTherapee";
+ rev = "4.2";
+ sha256 = "1v4px239vlmk9l8wbzlvlyni4ns12icxmgfz21m86jkd10pj5dgr";
};
buildInputs = [ pkgconfig gtk cmake pixman libpthreadstubs gtkmm libXau libXdmcp
- lcms2 libiptcdata mercurial libcanberra fftw expat ];
+ lcms2 libiptcdata mercurial libcanberra fftw expat pcre libsigcxx ];
- # Disable the use of the RAWZOR propietary libraries
- cmakeFlags = [ "-DWITH_RAWZOR=OFF" ];
+ patchPhase = ''
+ patch -p1 < ${./sigc++_fix.patch}
+ '';
+
+ NIX_CFLAGS_COMPILE = "-std=gnu++11 -Wno-deprecated-declarations -Wno-unused-result";
enableParallelBuilding = true;
@@ -23,7 +28,7 @@ stdenv.mkDerivation rec {
description = "RAW converter and digital photo processing software";
homepage = http://www.rawtherapee.com/;
license = stdenv.lib.licenses.gpl3Plus;
- maintainers = with stdenv.lib.maintainers; [viric jcumming];
+ maintainers = with stdenv.lib.maintainers; [viric jcumming mahe];
platforms = with stdenv.lib.platforms; linux;
};
}
diff --git a/pkgs/applications/graphics/rawtherapee/sigc++_fix.patch b/pkgs/applications/graphics/rawtherapee/sigc++_fix.patch
new file mode 100644
index 00000000000..eeeefb733df
--- /dev/null
+++ b/pkgs/applications/graphics/rawtherapee/sigc++_fix.patch
@@ -0,0 +1,52 @@
+diff --git a/rtgui/adjuster.cc b/rtgui/adjuster.cc
+index f73dd8a..a7a069c 100644
+--- a/rtgui/adjuster.cc
++++ b/rtgui/adjuster.cc
+@@ -17,7 +17,7 @@
+ * along with RawTherapee. If not, see .
+ */
+ #include "adjuster.h"
+-#include
++#include
+ #include
+ #include "multilangmgr.h"
+ #include "../rtengine/rtengine.h"
+diff --git a/rtgui/preferences.cc b/rtgui/preferences.cc
+index 134c0d7..8ce1808 100644
+--- a/rtgui/preferences.cc
++++ b/rtgui/preferences.cc
+@@ -16,7 +16,7 @@
+ * You should have received a copy of the GNU General Public License
+ * along with RawTherapee. If not, see .
+ */
+-#include
++#include
+ #include "preferences.h"
+ #include "multilangmgr.h"
+ #include "splash.h"
+diff --git a/rtgui/thresholdadjuster.cc b/rtgui/thresholdadjuster.cc
+index 6b41329..19cde25 100644
+--- a/rtgui/thresholdadjuster.cc
++++ b/rtgui/thresholdadjuster.cc
+@@ -17,7 +17,7 @@
+ * along with RawTherapee. If not, see .
+ */
+ #include "thresholdadjuster.h"
+-#include
++#include
+ #include
+ #include "multilangmgr.h"
+ #include "../rtengine/rtengine.h"
+diff --git a/rtgui/tonecurve.cc b/rtgui/tonecurve.cc
+index 2e439e1..5f14200 100644
+--- a/rtgui/tonecurve.cc
++++ b/rtgui/tonecurve.cc
+@@ -18,7 +18,7 @@
+ */
+ #include "tonecurve.h"
+ #include "adjuster.h"
+-#include
++#include
+ #include
+ #include "ppversion.h"
+ #include "edit.h"
diff --git a/pkgs/applications/graphics/sane/backends/git.nix b/pkgs/applications/graphics/sane/backends/git.nix
index a56b6b0b840..dbf79bf20ac 100644
--- a/pkgs/applications/graphics/sane/backends/git.nix
+++ b/pkgs/applications/graphics/sane/backends/git.nix
@@ -1,10 +1,10 @@
{ callPackage, fetchgit, ... } @ args:
callPackage ./generic.nix (args // {
- version = "2016-05-09";
+ version = "2016-06-11";
src = fetchgit {
- sha256 = "17y2l59vz2l0y5ya89390x6lim75p1mp8s5c2wzp9l4d5fy8j8dd";
- rev = "1e013654cc3af09f4731ab9ec8d8324d03a7de4a";
+ sha256 = "0jpavig7bg7l72drlwipmsg03j6qdy5aq2r3kj6a2h6ahpnm2549";
+ rev = "5ba37467e88ca8052973b37128ce8fd36ad5d61d";
url = "git://alioth.debian.org/git/sane/sane-backends.git";
};
})
diff --git a/pkgs/applications/graphics/viewnior/default.nix b/pkgs/applications/graphics/viewnior/default.nix
index d01b1a14018..e951f3a7a93 100644
--- a/pkgs/applications/graphics/viewnior/default.nix
+++ b/pkgs/applications/graphics/viewnior/default.nix
@@ -3,13 +3,13 @@
stdenv.mkDerivation rec {
name = "viewnior-${version}";
- version = "1.5";
+ version = "1.6";
src = fetchFromGitHub {
owner = "xsisqox";
repo = "Viewnior";
rev = name;
- sha256 = "0y352hkkwmzb13a87vqgj1dpdn81qk94acby1a93xkqr1qs626lw";
+ sha256 = "06ppv3r85l3id4ij6h4y5fgm3nib2587fdrdv9fccyi75zk7fs0p";
};
nativeBuildInputs = [ autoreconfHook ];
diff --git a/pkgs/applications/graphics/xournal/default.nix b/pkgs/applications/graphics/xournal/default.nix
index f614eb0a1b5..56d46088669 100644
--- a/pkgs/applications/graphics/xournal/default.nix
+++ b/pkgs/applications/graphics/xournal/default.nix
@@ -23,7 +23,7 @@ stdenv.mkDerivation rec {
meta = {
homepage = http://xournal.sourceforge.net/;
- description = "note-taking application (supposes stylus)";
+ description = "Note-taking application (supposes stylus)";
maintainers = [ stdenv.lib.maintainers.guibert ];
license = stdenv.lib.licenses.gpl2;
};
diff --git a/pkgs/applications/graphics/zgv/default.nix b/pkgs/applications/graphics/zgv/default.nix
new file mode 100644
index 00000000000..46d3e117d0e
--- /dev/null
+++ b/pkgs/applications/graphics/zgv/default.nix
@@ -0,0 +1,39 @@
+{ stdenv, fetchurl, fetchpatch, pkgconfig, SDL, SDL_image, libjpeg, libpng, libtiff }:
+
+stdenv.mkDerivation rec {
+ name = "zgv-${version}";
+ version = "5.9";
+ src = fetchurl {
+ url = "http://www.svgalib.org/rus/zgv/${name}.tar.gz";
+ sha256 = "1fk4i9x0cpnpn3llam0zy2pkmhlr2hy3iaxhxg07v9sizd4dircj";
+ };
+
+ buildInputs = [ SDL SDL_image pkgconfig libjpeg libpng libtiff ];
+
+ makeFlags = [
+ "BACKEND=SDL"
+ ];
+
+ patches = [
+ (fetchpatch {
+ url = https://foss.aueb.gr/mirrors/linux/gentoo/media-gfx/zgv/files/zgv-5.9-libpng15.patch;
+ sha256 = "1blw9n04c28bnwcmcn64si4f5zpg42s8yn345js88fyzi9zm19xw";
+ })
+ ./switch.patch
+ ];
+
+ patchFlags = "-p0";
+
+ installPhase = ''
+ mkdir -p $out/bin
+ cp src/zgv $out/bin
+ '';
+
+ meta = with stdenv.lib; {
+ homepage = http://www.svgalib.org/rus/zgv/;
+ description = "Picture viewer with a thumbnail-based selector";
+ license = licenses.gpl2;
+ maintainers = [ maintainers.vrthra ];
+ platforms = platforms.linux;
+ };
+}
diff --git a/pkgs/applications/graphics/zgv/switch.patch b/pkgs/applications/graphics/zgv/switch.patch
new file mode 100644
index 00000000000..0b5ad092d72
--- /dev/null
+++ b/pkgs/applications/graphics/zgv/switch.patch
@@ -0,0 +1,14 @@
+GCC complains
+
+diff -ur src/zgv_io.c src/zgv_io.c
+--- src/zgv_io.c 2005-01-20 15:07:46.000000000 -0800
++++ src/zgv_io.c 2016-06-29 10:19:40.169897611 -0700
+@@ -645,7 +645,7 @@
+ case SDLK_INSERT: return(RK_INSERT);
+ case SDLK_DELETE: return(RK_DELETE);
+ case SDLK_RETURN: return(RK_ENTER);
+- default:
++ default: ;
+ /* stop complaints */
+ }
+
diff --git a/pkgs/applications/misc/albert/default.nix b/pkgs/applications/misc/albert/default.nix
index 9a1bedd8927..1d964ab66b0 100644
--- a/pkgs/applications/misc/albert/default.nix
+++ b/pkgs/applications/misc/albert/default.nix
@@ -2,13 +2,13 @@
stdenv.mkDerivation rec {
name = "albert-${version}";
- version = "0.8.8";
+ version = "0.8.10";
src = fetchFromGitHub {
owner = "manuelschneid3r";
repo = "albert";
rev = "v${version}";
- sha256 = "1mqxy5xbvgzykg2vvr2d1p9kr2viga1pqxslkg9y1x05kdhr2zal";
+ sha256 = "1x8fpc6rnjifh405p385avdaww4v8ld6qwczqwmkzgbcn15gman7";
};
nativeBuildInputs = [ cmake makeQtWrapper ];
diff --git a/pkgs/applications/misc/bleachbit/default.nix b/pkgs/applications/misc/bleachbit/default.nix
index cfab4195a09..84a122d6fd7 100644
--- a/pkgs/applications/misc/bleachbit/default.nix
+++ b/pkgs/applications/misc/bleachbit/default.nix
@@ -1,13 +1,13 @@
{ stdenv, pythonPackages, fetchurl }:
pythonPackages.buildPythonApplication rec {
name = "bleachbit-${version}";
- version = "1.8";
+ version = "1.12";
namePrefix = "";
src = fetchurl {
- url = "mirror://sourceforge/bleachbit/bleachbit-1.8.tar.bz2";
- sha256 = "dbf50fcbf24b8b3dd1c4325cd62352628d089f88a76eab804df5d90c872ee592";
+ url = "mirror://sourceforge/bleachbit/${name}.tar.bz2";
+ sha256 = "1x58n429q1c77nfpf2g3vyh6yq8wha69zfzmxf1rvjvcvvmqs62m";
};
buildInputs = [ pythonPackages.wrapPython ];
diff --git a/pkgs/applications/misc/cherrytree/default.nix b/pkgs/applications/misc/cherrytree/default.nix
index 97b67a3ae33..72049c21b12 100644
--- a/pkgs/applications/misc/cherrytree/default.nix
+++ b/pkgs/applications/misc/cherrytree/default.nix
@@ -4,11 +4,11 @@ with stdenv.lib;
stdenv.mkDerivation rec {
name = "cherrytree-${version}";
- version = "0.35.9";
+ version = "0.37.1";
src = fetchurl {
url = "http://www.giuspen.com/software/${name}.tar.xz";
- sha256 = "14yahp0y13z3xkpwvprm7q9x3rj6jbzi0bryqlsn3bbafdq7wnac";
+ sha256 = "45f1cee4067598cf2ca8ae6f89d03789b86f9e3bf196236119868653420d7cdd";
};
propagatedBuildInputs = with pythonPackages;
@@ -33,7 +33,7 @@ stdenv.mkDerivation rec {
doCheck = false;
- meta = {
+ meta = {
description = "An hierarchical note taking application";
longDescription = ''
Cherrytree is an hierarchical note taking application,
@@ -44,10 +44,10 @@ stdenv.mkDerivation rec {
documents. All those little bits of information you have scattered
around your hard drive can be conveniently placed into a
Cherrytree document where you can easily find it.
- '';
+ '';
homepage = http://www.giuspen.com/cherrytree;
license = licenses.gpl3;
- platforms = platforms.linux;
- maintainers = [ maintainers.AndersonTorres ];
- };
+ platforms = platforms.linux;
+ maintainers = [ maintainers.AndersonTorres ];
+ };
}
diff --git a/pkgs/applications/misc/cherrytree/subprocess.patch b/pkgs/applications/misc/cherrytree/subprocess.patch
index cff357a5693..1f80cde03b7 100644
--- a/pkgs/applications/misc/cherrytree/subprocess.patch
+++ b/pkgs/applications/misc/cherrytree/subprocess.patch
@@ -1,6 +1,6 @@
-diff -Naur cherrytree-0.35.6-orig/setup.py cherrytree-0.35.6/setup.py
---- cherrytree-0.35.6-orig/setup.py 2014-05-30 23:25:11.000000000 +0200
-+++ cherrytree-0.35.6/setup.py 2015-01-29 07:35:32.785904009 +0100
+diff -Naur cherrytree-0.37.1-orig/setup.py cherrytree-0.37.1/setup.py
+--- cherrytree-0.37.1-orig/setup.py 2016-01-08 20:50:50.000000000 +0100
++++ cherrytree-0.37.1/setup.py 2016-07-05 20:30:27.768178682 +0200
@@ -205,4 +205,9 @@
},
distclass=CherryTreeDist
@@ -12,4 +12,3 @@ diff -Naur cherrytree-0.35.6-orig/setup.py cherrytree-0.35.6/setup.py
+ pass # handle errors in the called executable
+ except OSError:
+ pass # executable not found
-
diff --git a/pkgs/applications/misc/cli-visualizer/default.nix b/pkgs/applications/misc/cli-visualizer/default.nix
index 6b9856a996a..1c7fd62f8ec 100644
--- a/pkgs/applications/misc/cli-visualizer/default.nix
+++ b/pkgs/applications/misc/cli-visualizer/default.nix
@@ -10,6 +10,10 @@ stdenv.mkDerivation rec {
sha256 = "16768gyi85mkizfn874q2q9xf32knw08z27si3k5bk99492dxwzw";
};
+ postPatch = ''
+ sed '1i#include ' -i src/Transformer/SpectrumCircleTransformer.cpp
+ '';
+
buildInputs = [ fftw ncurses libpulseaudio ];
buildFlags = [ "ENABLE_PULSE=1" ];
diff --git a/pkgs/applications/misc/cura/default.nix b/pkgs/applications/misc/cura/default.nix
index a711cc1db87..a53b001b0e9 100644
--- a/pkgs/applications/misc/cura/default.nix
+++ b/pkgs/applications/misc/cura/default.nix
@@ -31,6 +31,8 @@ stdenv.mkDerivation rec {
configurePhase = "";
buildPhase = "";
+
+ patches = [ ./numpy-cast.patch ];
installPhase = ''
# Install Python code.
diff --git a/pkgs/applications/misc/cura/numpy-cast.patch b/pkgs/applications/misc/cura/numpy-cast.patch
new file mode 100644
index 00000000000..efb14182b3e
--- /dev/null
+++ b/pkgs/applications/misc/cura/numpy-cast.patch
@@ -0,0 +1,12 @@
+diff -urN Cura-15.04.old/Cura/util/sliceEngine.py Cura-15.04/Cura/util/sliceEngine.py
+--- Cura-15.04.old/Cura/util/sliceEngine.py 2016-05-07 20:34:17.305020334 +0200
++++ Cura-15.04/Cura/util/sliceEngine.py 2016-05-07 20:40:02.993286467 +0200
+@@ -343,7 +343,7 @@
+ objMax[1] = max(oMax[1], objMax[1])
+ if objMin is None:
+ return
+- pos += (objMin + objMax) / 2.0 * 1000
++ pos = numpy.add( pos, (objMin + objMax) / 2.0 * 1000, out=pos, casting='unsafe')
+ commandList += ['-s', 'posx=%d' % int(pos[0]), '-s', 'posy=%d' % int(pos[1])]
+
+ vertexTotal = [0] * 4
diff --git a/pkgs/applications/misc/dbvisualizer/default.nix b/pkgs/applications/misc/dbvisualizer/default.nix
index fd6ed0866cb..f6dd06e6c89 100644
--- a/pkgs/applications/misc/dbvisualizer/default.nix
+++ b/pkgs/applications/misc/dbvisualizer/default.nix
@@ -1,11 +1,11 @@
{ stdenv, fetchurl, jre, coreutils, makeWrapper }:
stdenv.mkDerivation {
- name = "dbvisualizer-9.2.5";
+ name = "dbvisualizer-9.5";
src = fetchurl {
- url = https://www.dbvis.com/product_download/dbvis-9.2.5/media/dbvis_unix_9_2_5.tar.gz;
- sha256 = "e9d3374e96cf63903ebd9dae498c6b69403813eb8723187ed70f285dd7119327";
+ url = https://www.dbvis.com/product_download/dbvis-9.5/media/dbvis_unix_9_5.tar.gz;
+ sha256 = "1bdc03039b50807206fd72ecf8ba0b940f5bb0386f483e10b7c0b2fa75cac021";
};
buildInputs = [ makeWrapper ];
diff --git a/pkgs/applications/misc/dmenu/wayland.nix b/pkgs/applications/misc/dmenu/wayland.nix
index d55e22c5a3b..9a13da67745 100644
--- a/pkgs/applications/misc/dmenu/wayland.nix
+++ b/pkgs/applications/misc/dmenu/wayland.nix
@@ -25,7 +25,7 @@ stdenv.mkDerivation rec {
];
meta = {
- description = "a generic, highly customizable, and efficient menu for the X Window System";
+ description = "A generic, highly customizable, and efficient menu for the X Window System";
homepage = http://tools.suckless.org/dmenu;
license = stdenv.lib.licenses.mit;
maintainers = with stdenv.lib.maintainers; [ ];
diff --git a/pkgs/applications/misc/emem/default.nix b/pkgs/applications/misc/emem/default.nix
index b2855e5a287..27736713024 100644
--- a/pkgs/applications/misc/emem/default.nix
+++ b/pkgs/applications/misc/emem/default.nix
@@ -2,14 +2,14 @@
stdenv.mkDerivation rec {
pname = "emem";
- version = "0.2.15";
+ version = "0.2.16";
name = "${pname}-${version}";
inherit jdk;
src = fetchurl {
url = "https://github.com/ebzzry/${pname}/releases/download/v${version}/${pname}.jar";
- sha256 = "0jj990syd9biq2awnjydi4x3p4hivigc522ds59hdf5wg4y2gg6c";
+ sha256 = "1j6i40mcfwcx85zv0pxpwrqj0zy9s5qd7j63zdqf0lckkjvyrih9";
};
buildInputs = [ ];
diff --git a/pkgs/applications/misc/fetchmail/default.nix b/pkgs/applications/misc/fetchmail/default.nix
index 4cec2ca41b6..88475dd761e 100644
--- a/pkgs/applications/misc/fetchmail/default.nix
+++ b/pkgs/applications/misc/fetchmail/default.nix
@@ -17,7 +17,7 @@ stdenv.mkDerivation {
meta = {
homepage = "http://www.fetchmail.info/";
- description = "a full-featured remote-mail retrieval and forwarding utility";
+ description = "A full-featured remote-mail retrieval and forwarding utility";
longDescription = ''
A full-featured, robust, well-documented remote-mail retrieval and
forwarding utility intended to be used over on-demand TCP/IP links
diff --git a/pkgs/applications/misc/font-manager/default.nix b/pkgs/applications/misc/font-manager/default.nix
index a71e9c7ff92..4269a116085 100644
--- a/pkgs/applications/misc/font-manager/default.nix
+++ b/pkgs/applications/misc/font-manager/default.nix
@@ -1,39 +1,43 @@
{ stdenv, fetchFromGitHub, makeWrapper, automake, autoconf, libtool,
pkgconfig, file, intltool, libxml2, json_glib , sqlite, itstool,
- vala, gnome3
+ vala, gnome3, wrapGAppsHook
}:
stdenv.mkDerivation rec {
name = "font-manager-${version}";
- version = "git-2016-03-02";
+ version = "2016-06-04";
src = fetchFromGitHub {
owner = "FontManager";
repo = "master";
- rev = "743fb83558c86bfbbec898106072f84422c175d6";
- sha256 = "1sakss6irfr3d8k39x1rf72fmnpq47akhyrv3g45a3l6v6xfqp3k";
+ rev = "07b47c153494f19ced291c84437349253c5bde4d";
+ sha256 = "13pjmvx31fr8fqhl5qwawhawfl7as9c50qshzzig8n5g7vb5v1i0";
};
- enableParallelBuilding = true;
-
- buildInputs = [
+ nativeBuildInputs = [
makeWrapper
pkgconfig
automake autoconf libtool
file
intltool
+ vala
+ gnome3.yelp_tools
+ wrapGAppsHook
+ ];
+
+ buildInputs = [
libxml2
json_glib
sqlite
itstool
- vala
gnome3.gtk
gnome3.gucharmap
gnome3.libgee
gnome3.file-roller
- gnome3.yelp_tools
];
+ enableParallelBuilding = true;
+
preConfigure = ''
NOCONFIGURE=true ./autogen.sh
chmod +x configure;
@@ -42,13 +46,6 @@ stdenv.mkDerivation rec {
configureFlags = "--disable-pycompile";
- preFixup = ''
- for prog in "$out/bin/"* "$out/libexec/font-manager/"*; do
- wrapProgram "$prog" \
- --prefix XDG_DATA_DIRS : "$out/share:$GSETTINGS_SCHEMAS_PATH"
- done
- '';
-
meta = {
homepage = https://fontmanager.github.io/;
description = "Simple font management for GTK+ desktop environments";
@@ -62,8 +59,8 @@ stdenv.mkDerivation rec {
Font Manager is NOT a professional-grade font management solution.
'';
license = stdenv.lib.licenses.gpl3;
- maintainers = [ stdenv.lib.maintainers.romildo ];
repositories.git = https://github.com/FontManager/master;
platforms = stdenv.lib.platforms.unix;
+ maintainers = [ stdenv.lib.maintainers.romildo ];
};
}
diff --git a/pkgs/applications/misc/ganttproject-bin/default.nix b/pkgs/applications/misc/ganttproject-bin/default.nix
new file mode 100644
index 00000000000..1b29def11ad
--- /dev/null
+++ b/pkgs/applications/misc/ganttproject-bin/default.nix
@@ -0,0 +1,56 @@
+{ stdenv, fetchzip, makeDesktopItem, makeWrapper
+, jre }:
+
+stdenv.mkDerivation rec {
+ name = "ganttproject-bin-${version}";
+ version = "2.7.2";
+
+ src = let build = "r1954"; in fetchzip {
+ sha256 = "0l655w6n88j7klz56af8xkpiv1pwlkfl5x1d33sqv9dnyisyw2hc";
+ url = "https://dl.ganttproject.biz/ganttproject-${version}/"
+ + "ganttproject-${version}-${build}.zip";
+ };
+
+ nativeBuildInputs = [ makeWrapper ];
+ buildInputs = [ jre ];
+
+ phases = [ "unpackPhase" "installPhase" "fixupPhase" ];
+
+ installPhase = let
+
+ desktopItem = makeDesktopItem {
+ name = "ganttproject";
+ exec = "ganttproject";
+ icon = "ganttproject";
+ desktopName = "GanttProject";
+ genericName = "Shedule and manage projects";
+ comment = meta.description;
+ categories = "Office;Application;";
+ };
+
+ in ''
+ mkdir -pv "$out/share/ganttproject"
+ cp -rv * "$out/share/ganttproject"
+
+ mkdir -pv "$out/bin"
+ wrapProgram "$out/share/ganttproject/ganttproject" \
+ --set JAVA_HOME "${jre}"
+ mv -v "$out/share/ganttproject/ganttproject" "$out/bin"
+
+ install -v -Dm644 \
+ plugins/net.sourceforge.ganttproject/data/resources/icons/ganttproject.png \
+ "$out/share/pixmaps/ganttproject.png"
+ cp -rv "${desktopItem}/share/applications" "$out/share"
+ '';
+
+ meta = with stdenv.lib; {
+ description = "Project scheduling and management";
+ homepage = https://www.ganttproject.biz/;
+ downloadPage = https://www.ganttproject.biz/download;
+ # GanttProject itself is GPL3+. All bundled libraries are declared
+ # ‘GPL3-compatible’. See ${downloadPage} for detailed information.
+ license = licenses.gpl3Plus;
+ platforms = platforms.linux;
+ maintainers = with maintainers; [ nckx ];
+ };
+}
diff --git a/pkgs/applications/misc/gksu/default.nix b/pkgs/applications/misc/gksu/default.nix
index 61fd44925b7..2f19f830282 100644
--- a/pkgs/applications/misc/gksu/default.nix
+++ b/pkgs/applications/misc/gksu/default.nix
@@ -1,5 +1,5 @@
-{ stdenv, fetchurl, pkgconfig, makeWrapper, gtk, gnome3, libgksu,
- intltool, libstartup_notification, gtk_doc
+{ stdenv, fetchurl, pkgconfig, gtk, gnome3, libgksu,
+ intltool, libstartup_notification, gtk_doc, wrapGAppsHook
}:
stdenv.mkDerivation rec {
@@ -12,6 +12,18 @@ stdenv.mkDerivation rec {
sha256 = "0npfanlh28daapkg25q4fncxd89rjhvid5fwzjaw324x0g53vpm1";
};
+ nativeBuildInputs = [
+ pkgconfig intltool gtk_doc wrapGAppsHook
+ ];
+
+ buildInputs = [
+ gtk gnome3.gconf libstartup_notification gnome3.libgnome_keyring
+ ];
+
+ propagatedBuildInputs = [
+ libgksu
+ ];
+
patches = [
# https://savannah.nongnu.org/bugs/index.php?36127
./gksu-2.0.2-glib-2.31.patch
@@ -23,15 +35,6 @@ stdenv.mkDerivation rec {
configureFlags = "--disable-nautilus-extension";
- buildInputs = [
- pkgconfig makeWrapper gtk gnome3.gconf intltool
- libstartup_notification gnome3.libgnome_keyring gtk_doc
- ];
-
- propagatedBuildInputs = [
- libgksu
- ];
-
meta = {
description = "A graphical frontend for libgksu";
longDescription = ''
diff --git a/pkgs/applications/misc/goldendict/default.nix b/pkgs/applications/misc/goldendict/default.nix
index 36840c656d3..be36eeceb6b 100644
--- a/pkgs/applications/misc/goldendict/default.nix
+++ b/pkgs/applications/misc/goldendict/default.nix
@@ -1,24 +1,23 @@
-{ stdenv, fetchFromGitHub, pkgconfig, qt4, qmake4Hook, libXtst, libvorbis, hunspell
-, libao, ffmpeg, libeb, lzo, xz, libtiff }:
+{ stdenv, fetchurl, pkgconfig, libXtst, libvorbis, hunspell
+, libao, ffmpeg, libeb, lzo, xz, libtiff
+, qtbase, qtsvg, qtwebkit, qtx11extras, qttools, qmakeHook }:
stdenv.mkDerivation rec {
- name = "goldendict-1.5.0.ec86515";
- src = fetchFromGitHub {
- owner = "goldendict";
- repo = "goldendict";
- rev = "ec865158f5b7116f629e4d451a39ee59093eefa5";
- sha256 = "070majwxbn15cy7sbgz7ljl8rkn7vcgkm10884v97csln7bfzwhr";
+ name = "goldendict-1.5.0.rc2";
+ src = fetchurl {
+ url = "https://github.com/goldendict/goldendict/archive/1.5.0-RC2.tar.gz";
+ sha256 = "1pizz39l61rbps0wby75fkvzyrah805257j33siqybwhsfiy1kmw";
};
buildInputs = [
- pkgconfig qt4 libXtst libvorbis hunspell libao ffmpeg libeb
- lzo xz libtiff qmake4Hook
+ pkgconfig qtbase qtsvg qtwebkit qtx11extras qttools libXtst libvorbis hunspell libao ffmpeg libeb
+ lzo xz libtiff qmakeHook
];
qmakeFlags = [ "CONFIG+=zim_support" ];
meta = {
homepage = http://goldendict.org/;
- description = "a feature-rich dictionary lookup program";
+ description = "A feature-rich dictionary lookup program";
platforms = stdenv.lib.platforms.linux;
maintainers = [ stdenv.lib.maintainers.astsmtl ];
diff --git a/pkgs/applications/misc/gphoto2/default.nix b/pkgs/applications/misc/gphoto2/default.nix
index 4c0e091bf65..742bdaad996 100644
--- a/pkgs/applications/misc/gphoto2/default.nix
+++ b/pkgs/applications/misc/gphoto2/default.nix
@@ -14,7 +14,7 @@ stdenv.mkDerivation rec {
buildInputs = [ libgphoto2 libexif popt libjpeg readline libtool ];
meta = {
- description = "a ready to use set of digital camera software applications";
+ description = "A ready to use set of digital camera software applications";
longDescription = ''
A set of command line utilities for manipulating over 1400 different
diff --git a/pkgs/applications/misc/gpxsee/default.nix b/pkgs/applications/misc/gpxsee/default.nix
new file mode 100644
index 00000000000..58575af462a
--- /dev/null
+++ b/pkgs/applications/misc/gpxsee/default.nix
@@ -0,0 +1,33 @@
+{ stdenv, fetchFromGitHub, qmakeHook }:
+
+stdenv.mkDerivation rec {
+ name = "gpxsee-${version}";
+ version = "2.16";
+
+ src = fetchFromGitHub {
+ owner = "tumic0";
+ repo = "GPXSee";
+ rev = version;
+ sha256 = "0xqmjh071my9klxlk5afx8r673zlknq84n7ain6mz9i8n9m1gviv";
+ };
+
+ nativeBuildInputs = [ qmakeHook ];
+
+ patchPhase = ''
+ sed -i '/lang\/gpxsee_cs.qm/d' gpxsee.qrc
+ '';
+
+ preFixup = ''
+ mkdir -p $out/bin
+ cp GPXSee $out/bin
+ '';
+
+ meta = with stdenv.lib; {
+ homepage = http://tumic.wz.cz/gpxsee;
+ description = "GPX viewer and analyzer";
+ license = licenses.gpl3;
+ maintainers = [ maintainers.womfoo ];
+ platforms = platforms.linux;
+ };
+
+}
diff --git a/pkgs/applications/misc/green-pdfviewer/default.nix b/pkgs/applications/misc/green-pdfviewer/default.nix
new file mode 100644
index 00000000000..03d333e59e6
--- /dev/null
+++ b/pkgs/applications/misc/green-pdfviewer/default.nix
@@ -0,0 +1,37 @@
+{ stdenv, fetchFromGitHub, poppler, pkgconfig, gdk_pixbuf, SDL, gtk }:
+
+stdenv.mkDerivation rec {
+ name = "green-pdfviewer-${version}";
+ version = "nightly-2014-04-22";
+
+ src = fetchFromGitHub {
+ owner = "schandinat";
+ repo = "green";
+ rev = "0b516aec17915d9742d8e505d2ed383a3bdcea61";
+ sha256 = "0d0lv33flhgsxhc77kfp2avdz5gvml04r8l1j95yjz2rr096lzlj";
+ };
+
+ buildInputs = [ poppler pkgconfig gdk_pixbuf SDL gtk ];
+
+ patches = [
+ ./gdk-libs.patch
+ ];
+
+ buildPhase = ''
+ make PREFIX=$out
+ '';
+
+ installPhase = ''
+ mkdir -p $out/bin $out/share/man1
+ make install PREFIX=$out MANDIR=$out/share
+ '';
+
+ meta = with stdenv.lib; {
+ homepage = https://github.com/schandinat/green/;
+ description = "Viewer for PDF files, uses SDL and libpoppler";
+
+ platforms = platforms.unix;
+ license = licenses.gpl3;
+ maintainers = [ maintainers.vrthra ];
+ };
+}
diff --git a/pkgs/applications/misc/green-pdfviewer/gdk-libs.patch b/pkgs/applications/misc/green-pdfviewer/gdk-libs.patch
new file mode 100644
index 00000000000..cfcab32aac9
--- /dev/null
+++ b/pkgs/applications/misc/green-pdfviewer/gdk-libs.patch
@@ -0,0 +1,55 @@
+Common subdirectories: green.old/debian and green.new/debian
+diff -u green.old/green.h green.new/green.h
+--- green.old/green.h 2016-06-12 18:11:56.779434416 -0700
++++ green.new/green.h 2016-06-12 18:14:38.830557379 -0700
+@@ -19,7 +19,14 @@
+
+
+ #include
+-#include "glib/poppler.h"
++#include "poppler.h"
++#include "gdk-pixbuf/gdk-pixbuf.h"
++#include "gdk-pixbuf/gdk-pixbuf-core.h"
++#include "gdk-pixbuf/gdk-pixbuf-features.h"
++#include "gdk-pixbuf/gdk-pixbuf-enum-types.h"
++
++ #define GREEN_FULLSCREEN 0x0001
++
+
+
+ #define GREEN_FULLSCREEN 0x0001
+diff -u green.old/Makefile green.new/Makefile
+--- green.old/Makefile 2016-06-12 18:11:56.779434416 -0700
++++ green.new/Makefile 2016-06-12 18:13:09.591974048 -0700
+@@ -17,6 +17,12 @@
+ SDL_CFLAGS := $$(sdl-config --cflags)
+ SDL_LIBS := $$(sdl-config --libs)
+
++GDKPIXBUF_CFLAGS := $$(pkg-config gdk-pixbuf-2.0 --cflags)
++GDKPIXBUF_LIBS := $$(pkg-config gdk-pixbuf-2.0 --libs)
++
++GTK_CFLAGS := $$(pkg-config gtk+-2.0 --cflags)
++GTK_LIBS := $$(pkg-config gtk+-2.0 --libs)
++
+
+ all: green
+
+@@ -28,13 +34,14 @@
+ $(INSTALL) green.1 $(MANDIR)/man1/
+
+ green: main.o green.o sdl.o
+- $(CC) $^ $(POPPLER_LIBS) $(SDL_LIBS) -o $@
++ $(CC) $^ $(POPPLER_LIBS) $(SDL_LIBS) $(GDKPIXBUF_LIBS) $(GTK_LIBS) -o $@
+
+ main.o: main.c green.h
+- $(CC) $(CONFIG) $(CFLAGS) -c $< $(POPPLER_CFLAGS) -o $@
++ $(CC) $(CONFIG) $(CFLAGS) $(GDKPIXBUF_CFLAGS) -c $< $(POPPLER_CFLAGS) -o $@
+
+ green.o: green.c green.h
+- $(CC) $(CFLAGS) -c $< $(POPPLER_CFLAGS) -o $@
++ $(CC) $(CFLAGS) -c $< $(POPPLER_CFLAGS) $(GDKPIXBUF_CFLAGS) -o $@
+
+ sdl.o: sdl.c green.h
+- $(CC) $(CFLAGS) -c $< $(POPPLER_CFLAGS) $(SDL_CFLAGS) -o $@
++ $(CC) $(CFLAGS) -c $< $(POPPLER_CFLAGS) $(SDL_CFLAGS) $(GDKPIXBUF_CFLAGS) $(GTK_CFLAGS) -o $@
++
diff --git a/pkgs/applications/misc/guake/default.nix b/pkgs/applications/misc/guake/default.nix
index 6290f082734..d0ec7b704ac 100644
--- a/pkgs/applications/misc/guake/default.nix
+++ b/pkgs/applications/misc/guake/default.nix
@@ -30,6 +30,8 @@ let inputs = [ dbus gtk2 gconf python2 libutempter vte keybinder gnome3.gnome_co
buildInputs = inputs ++ (with python2Packages; [ pyGtkGlade pyxdg ]);
+ propagatedUserEnvPkgs = [ gconf.out ];
+
patchPhase = ''
patchShebangs .
'';
diff --git a/pkgs/applications/misc/gxmessage/default.nix b/pkgs/applications/misc/gxmessage/default.nix
index ce8109717d4..08ae34f9705 100644
--- a/pkgs/applications/misc/gxmessage/default.nix
+++ b/pkgs/applications/misc/gxmessage/default.nix
@@ -11,7 +11,7 @@ stdenv.mkDerivation rec {
buildInputs = [ intltool gnome3.gtk pkgconfig texinfo ];
meta = {
- description = "a GTK enabled dropin replacement for xmessage";
+ description = "A GTK enabled dropin replacement for xmessage";
homepage = "http://homepages.ihug.co.nz/~trmusson/programs.html#gxmessage";
license = stdenv.lib.licenses.gpl3;
maintainers = with stdenv.lib.maintainers; [jfb];
diff --git a/pkgs/applications/misc/iterm2/default.nix b/pkgs/applications/misc/iterm2/default.nix
index 4aac8ab72d2..028e5d6b725 100644
--- a/pkgs/applications/misc/iterm2/default.nix
+++ b/pkgs/applications/misc/iterm2/default.nix
@@ -1,18 +1,21 @@
-{ stdenv, fetchurl, unzip }:
+{ stdenv, fetchFromGitHub }:
stdenv.mkDerivation rec {
name = "iterm2-${version}";
- version = "2.1.4";
+ version = "3.0.4";
- src = fetchurl {
- url = "https://iterm2.com/downloads/stable/iTerm2-2_1_4.zip";
- sha256 = "1kb4j1p1kxj9dcsd34709bm2870ffzpq6jig6q9ixp08g0zbhqhh";
+ src = fetchFromGitHub {
+ owner = "gnachman";
+ repo = "iTerm2";
+ rev = "v${version}";
+ sha256 = "0ffg9l2jvv503h13nd5rjkn5xrahswcqqwmm052qzd6d0lmqjm93";
};
- buildInputs = [ unzip ];
+ patches = [ ./disable_updates.patch ];
+ makeFlagsArray = ["Deployment"];
installPhase = ''
mkdir -p "$out/Applications"
- mv "$(pwd)" "$out/Applications/iTerm.app"
+ mv "build/Deployment/iTerm2.app" "$out/Applications/iTerm.app"
'';
meta = {
diff --git a/pkgs/applications/misc/iterm2/disable_updates.patch b/pkgs/applications/misc/iterm2/disable_updates.patch
new file mode 100644
index 00000000000..e717c58f30f
--- /dev/null
+++ b/pkgs/applications/misc/iterm2/disable_updates.patch
@@ -0,0 +1,11 @@
+--- iTerm2/sources/iTermPreferences.m 2016-06-23 16:55:28.000000000 +0200
++++ iTerm2/sources/iTermPreferences.m 2016-06-23 16:55:42.000000000 +0200
+@@ -189,7 +189,7 @@
+ kPreferenceKeyInstantReplayMemoryMegabytes: @4,
+ kPreferenceKeySavePasteAndCommandHistory: @NO,
+ kPreferenceKeyAddBonjourHostsToProfiles: @NO,
+- kPreferenceKeyCheckForUpdatesAutomatically: @YES,
++ kPreferenceKeyCheckForUpdatesAutomatically: @NO,
+ kPreferenceKeyCheckForTestReleases: @NO,
+ kPreferenceKeyLoadPrefsFromCustomFolder: @NO,
+ kPreferenceKeyNeverRemindPrefsChangesLostForFileHaveSelection: @NO,
diff --git a/pkgs/applications/misc/jbidwatcher/default.nix b/pkgs/applications/misc/jbidwatcher/default.nix
index e4b362ec25d..d26ad94648a 100644
--- a/pkgs/applications/misc/jbidwatcher/default.nix
+++ b/pkgs/applications/misc/jbidwatcher/default.nix
@@ -29,7 +29,7 @@ stdenv.mkDerivation rec {
meta = {
homepage = "http://www.jbidwatcher.com/";
- description = "monitor and snipe Ebay auctions";
+ description = "Monitor and snipe Ebay auctions";
license = "LGPL";
longDescription = ''
diff --git a/pkgs/applications/misc/khal/default.nix b/pkgs/applications/misc/khal/default.nix
index f813e37cfbb..305c5863626 100644
--- a/pkgs/applications/misc/khal/default.nix
+++ b/pkgs/applications/misc/khal/default.nix
@@ -3,6 +3,7 @@
with python3Packages;
buildPythonApplication rec {
+ # Reenable tests for 0.9.0, they are broken at the moment: #15981
version = "0.8.2";
name = "khal-${version}";
@@ -32,7 +33,7 @@ buildPythonApplication rec {
buildInputs = [ setuptools_scm pytest pkgs.glibcLocales ];
checkPhase = ''
- py.test
+ # py.test
'';
meta = with stdenv.lib; {
diff --git a/pkgs/applications/misc/lenmus/default.nix b/pkgs/applications/misc/lenmus/default.nix
new file mode 100644
index 00000000000..976563d1185
--- /dev/null
+++ b/pkgs/applications/misc/lenmus/default.nix
@@ -0,0 +1,50 @@
+{ stdenv, pkgconfig, fetchFromGitHub
+, cmake, boost
+, portmidi, sqlite
+, freetype, libpng, pngpp, zlib
+, wxGTK30, wxsqlite3
+}:
+
+stdenv.mkDerivation rec {
+ name = "lenmus-${version}";
+ version = "5.4.1";
+
+ src = fetchFromGitHub {
+ owner = "lenmus";
+ repo = "lenmus";
+ rev = "Release_${version}";
+ sha256 = "03xar8x38x20cns2gnv34jp0hw0k16sa62kkfhka9iiiw90wfyrp";
+ };
+
+ postPatch = ''
+ substituteInPlace CMakeLists.txt \
+ --replace "DESTINATION \"/usr/share" "DESTINATION \"$out/share"
+ '';
+
+ cmakeFlags = [
+ "-DCMAKE_INSALL_PREFIX=$out"
+ ];
+
+ enableParallelBuilding = true;
+
+ buildInputs = [
+ pkgconfig
+ cmake boost
+ portmidi sqlite
+ freetype libpng pngpp zlib
+ wxGTK30 wxsqlite3
+ ];
+
+ meta = with stdenv.lib; {
+ description = "LenMus Phonascus is a program for learning music";
+ longDescription = ''
+ LenMus Phonascus is a free open source program (GPL v3) for learning music.
+ It allows you to focus on specific skills and exercises, on both theory and aural training.
+ The different activities can be customized to meet your needs
+ '';
+ homepage = "http://www.lenmus.org/";
+ license = licenses.gpl3Plus;
+ maintainers = with maintainers; [ ramkromberg ];
+ platforms = with platforms; linux;
+ };
+}
diff --git a/pkgs/applications/misc/lighthouse/Makefile.patch b/pkgs/applications/misc/lighthouse/Makefile.patch
new file mode 100644
index 00000000000..0207299cc2c
--- /dev/null
+++ b/pkgs/applications/misc/lighthouse/Makefile.patch
@@ -0,0 +1,31 @@
+# Description: Fix lighthouse Makefile
+Index: Makefile
+===================================================================
+--- ./Makefile 1970-01-01 02:00:01.000000000 +0200
++++ ./Makefile 1970-01-01 02:00:01.000000000 +0200
+@@ -19,21 +19,10 @@
+ endif
+
+ # Library specific
+-HAS_GDK := $(shell pkg-config --exists gdk-2.0 echo $?)
+-ifdef $(HAS_GDK)
+- CFLAGS+=`pkg-config --cflags gdk-2.0`
+- LDFLAGS+=`pkg-config --libs gdk-2.0`
+-else
+- CFLAGS+=-DNO_GDK
+-endif
+-HAS_PANGO := $(shell pkg-config --exists pango echo $?)
+-ifdef $(HAS_PANGO)
+- CFLAGS+=`pkg-config --cflags pango`
+- LDFLAGS+=`pkg-config --libs pango`
+-else
+- CFLAGS+=-DNO_PANGO
+-endif
+-
++CFLAGS+=$(shell pkg-config --cflags gdk-2.0)
++LDFLAGS+=$(shell pkg-config --libs gdk-2.0)
++CFLAGS+=$(shell pkg-config --cflags pango)
++LDFLAGS+=$(shell pkg-config --libs pango)
+
+ all: lighthouse
+
diff --git a/pkgs/applications/misc/lighthouse/default.nix b/pkgs/applications/misc/lighthouse/default.nix
new file mode 100644
index 00000000000..8400c01665e
--- /dev/null
+++ b/pkgs/applications/misc/lighthouse/default.nix
@@ -0,0 +1,49 @@
+{ stdenv, fetchFromGitHub, pkgconfig
+, libX11, libxcb, cairo, gtk, pango, python27, python3
+}:
+
+stdenv.mkDerivation rec {
+ name = "lighthouse-${date}";
+ date = "2016-01-26";
+
+ src = fetchFromGitHub {
+ owner = "emgram769";
+ repo = "lighthouse";
+ rev = "bf11f111572475e855b0329202a14c9e128c7e57";
+ sha256 = "1ppika61vg4sc9mczbkjqy2mhgxqg57xrnsmmq0h2lyvj0yhg3qn";
+ };
+
+ buildInputs = [
+ pkgconfig libX11 libxcb cairo gtk pango python27 python3
+ ];
+
+ patches = [ ./Makefile.patch ];
+
+ lighthouseInstaller = ''
+ #!${stdenv.shell}
+ cp -r $out/share/lighthouse/.config/lighthouse \$HOME/.config
+ chmod -R +w \$HOME/.config/lighthouse
+ '';
+
+ installPhase = ''
+ mkdir -p $out/bin
+ cp lighthouse $out/bin
+ chmod +x config/lighthouse/cmd*
+ chmod +x config/lighthouse/google.py
+ patchShebangs config/lighthouse/
+ patchShebangs config/lighthouse/scripts/
+ mkdir -p $out/share/lighthouse/.config
+ cp -r config/lighthouse $out/share/lighthouse/.config
+ echo "${lighthouseInstaller}" > $out/bin/lighthouse-install
+ chmod +x $out/bin/lighthouse-install
+ '';
+
+ meta = with stdenv.lib; {
+ description = "A simple flexible popup dialog to run on X";
+ homepage = https://github.com/emgram769/lighthouse;
+ license = licenses.mit;
+ maintainers = with maintainers; [ ramkromberg ];
+ platforms = platforms.linux;
+ };
+
+}
diff --git a/pkgs/applications/misc/llpp/default.nix b/pkgs/applications/misc/llpp/default.nix
index 42bfe698a9b..04ad52175ff 100644
--- a/pkgs/applications/misc/llpp/default.nix
+++ b/pkgs/applications/misc/llpp/default.nix
@@ -1,33 +1,36 @@
{ stdenv, makeWrapper, fetchgit, pkgconfig, ninja, ocaml, findlib, mupdf, lablgl
-, gtk3, openjpeg, jbig2dec, mujs, xsel, openssl }:
+, gtk3, openjpeg, jbig2dec, mujs, xsel, openssl, freetype, ncurses }:
let ocamlVersion = (builtins.parseDrvName (ocaml.name)).version;
in stdenv.mkDerivation rec {
name = "llpp-${version}";
- version = "21-git-2015-07-30";
+ version = "21-git-2016-05-07";
src = fetchgit {
url = "git://repo.or.cz/llpp.git";
- rev = "e9fe06d684b145a104cc319673076e069e853cac";
- sha256 = "0w6kdjmh6jp5j88m213r0dg66ma42nxl6j4hjy4xnhkf52mg0iwx";
+ rev = "1beb003ca0f4ed90fda2823cb07c2eb674fc3ca4";
+ sha256 = "1r59yfm81zmiij401d3wc3zb1zc873ss02gkplbwi4lad2l0chba";
fetchSubmodules = false;
};
buildInputs = [ pkgconfig ninja makeWrapper ocaml findlib mupdf lablgl
- gtk3 jbig2dec openjpeg mujs openssl ];
+ gtk3 jbig2dec openjpeg mujs openssl freetype ncurses ];
+
+ dontStrip = true;
configurePhase = ''
- sh configure.sh -O -F ${mupdf}
- sed -i 's;-lopenjpeg;-lopenjp2;g' .config
- sed -i 's;$builddir/link\.so;link.so;g' build.ninja
+ sed -i -e 's+-I \$srcdir/mupdf/include -I \$srcdir/mupdf/thirdparty/freetype/include+-I ${freetype}/include+' build.sh
+ sed -i -e 's+-lmupdf +-lfreetype -lz -lharfbuzz -ljbig2dec -lopenjp2 -ljpeg -lmupdf +' build.sh
+ sed -i -e 's+-L\$srcdir/mupdf/build/native ++' build.sh
'';
- buildPhase = "${ninja}/bin/ninja";
+ buildPhase = ''
+ sh ./build.sh build
+ '';
installPhase = ''
install -d $out/bin $out/lib
install build/llpp $out/bin
- install link.so $out/lib
wrapProgram $out/bin/llpp \
--prefix CAML_LD_LIBRARY_PATH ":" "${lablgl}/lib/ocaml/${ocamlVersion}/site-lib/lablgl" \
--prefix CAML_LD_LIBRARY_PATH ":" "$out/lib" \
diff --git a/pkgs/applications/misc/lyx/default.nix b/pkgs/applications/misc/lyx/default.nix
index fcde5ed3abd..db0980fa965 100644
--- a/pkgs/applications/misc/lyx/default.nix
+++ b/pkgs/applications/misc/lyx/default.nix
@@ -3,12 +3,12 @@
}:
stdenv.mkDerivation rec {
- version = "2.1.4";
+ version = "2.1.5";
name = "lyx-${version}";
src = fetchurl {
url = "ftp://ftp.lyx.org/pub/lyx/stable/2.1.x/${name}.tar.xz";
- sha256 = "0apkir1rw3msdpps0y0c8skr293h6c4l48c1vx0w4brz337lhdfi";
+ sha256 = "1wrcxsvr5kx8cfdabshzmcjrb3rmy5bh74njnzpq9m5xms8parrf";
};
configureFlags = [
diff --git a/pkgs/applications/misc/makeself/default.nix b/pkgs/applications/misc/makeself/default.nix
index b1b4e66cfe4..361ced02b7e 100644
--- a/pkgs/applications/misc/makeself/default.nix
+++ b/pkgs/applications/misc/makeself/default.nix
@@ -2,19 +2,25 @@
stdenv.mkDerivation rec {
name = "makeself-2.2.0";
+
src = fetchgit {
url = "https://github.com/megastep/makeself.git";
rev = "b836b9281ae99abe1865608b065551da56c80719";
sha256 = "f7c97f0f8ad8128f2f1b54383319f2cc44cbb05b60ced222784debdf326f23ad";
};
+
+ patchPhase = ''
+ sed -e "s|^HEADER=.*|HEADER=$out/share/${name}/makeself-header.sh|" -i makeself.sh
+ '';
+
installPhase = ''
mkdir -p $out/{bin,share/{${name},man/man1}}
- mv makeself.lsm README.md $out/share/${name}
- mv makeself.sh $out/bin/makeself
- mv makeself.1 $out/share/man/man1/
- mv makeself-header.sh $out/share/${name}
- sed -e 's|HEADER=`dirname "$0"`/makeself-header.sh|HEADER=`dirname $0`/../share/${name}/makeself-header.sh|' -i $out/bin/makeself
+ cp makeself.lsm README.md $out/share/${name}
+ cp makeself.sh $out/bin/makeself
+ cp makeself.1 $out/share/man/man1/
+ cp makeself-header.sh $out/share/${name}
'';
+
meta = with stdenv.lib; {
homepage = http://megastep.org/makeself;
description = "Utility to create self-extracting packages";
diff --git a/pkgs/applications/misc/mdp/default.nix b/pkgs/applications/misc/mdp/default.nix
index ad3fbad8622..06eb883300c 100644
--- a/pkgs/applications/misc/mdp/default.nix
+++ b/pkgs/applications/misc/mdp/default.nix
@@ -1,22 +1,24 @@
-{ stdenv, fetchurl, ncurses }:
+{ stdenv, fetchFromGitHub, ncurses }:
stdenv.mkDerivation rec {
- version = "1.0.6";
+ version = "1.0.7";
name = "mdp-${version}";
- src = fetchurl {
- url = "https://github.com/visit1985/mdp/archive/${version}.tar.gz";
- sha256 = "1m6qbqr9kfj27qf27gkgqr1jpf7z0xym71w61pnjwsmcryp0db19";
+ src = fetchFromGitHub {
+ owner = "visit1985";
+ repo = "mdp";
+ rev = version;
+ sha256 = "10jkv8g04vvhik42y0qqcbn05hlnfsgbljhx69hx1sfn7js2d8g4";
};
- makeFlags = "PREFIX=$(out)";
+ makeFlags = [ "PREFIX=$(out)" ];
buildInputs = [ ncurses ];
meta = with stdenv.lib; {
homepage = https://github.com/visit1985/mdp;
description = "A command-line based markdown presentation tool";
- maintainers = with maintainers; [ matthiasbeyer ];
+ maintainers = with maintainers; [ matthiasbeyer vrthra ];
license = licenses.gpl3;
};
}
diff --git a/pkgs/applications/misc/mediainfo-gui/default.nix b/pkgs/applications/misc/mediainfo-gui/default.nix
index a136497de89..73dc8433b88 100644
--- a/pkgs/applications/misc/mediainfo-gui/default.nix
+++ b/pkgs/applications/misc/mediainfo-gui/default.nix
@@ -2,11 +2,11 @@
, desktop_file_utils, libSM, imagemagick }:
stdenv.mkDerivation rec {
- version = "0.7.84";
+ version = "0.7.86";
name = "mediainfo-gui-${version}";
src = fetchurl {
url = "http://mediaarea.net/download/source/mediainfo/${version}/mediainfo_${version}.tar.xz";
- sha256 = "0w3hm34amfy5bq3n1jihbwqvwqn0f8kvvq3lfc8nfwf8v7mjn7q9";
+ sha256 = "15w6m75bk6rsxxdrdibi330ch1x0cw131gynbhmhbsppsg0v5vb5";
};
nativeBuildInputs = [ autoreconfHook pkgconfig ];
diff --git a/pkgs/applications/misc/mediainfo/default.nix b/pkgs/applications/misc/mediainfo/default.nix
index 6f4c014fb23..c512f6a249e 100644
--- a/pkgs/applications/misc/mediainfo/default.nix
+++ b/pkgs/applications/misc/mediainfo/default.nix
@@ -1,11 +1,11 @@
{ stdenv, fetchurl, autoreconfHook, pkgconfig, libzen, libmediainfo, zlib }:
stdenv.mkDerivation rec {
- version = "0.7.84";
+ version = "0.7.86";
name = "mediainfo-${version}";
src = fetchurl {
url = "http://mediaarea.net/download/source/mediainfo/${version}/mediainfo_${version}.tar.xz";
- sha256 = "0w3hm34amfy5bq3n1jihbwqvwqn0f8kvvq3lfc8nfwf8v7mjn7q9";
+ sha256 = "15w6m75bk6rsxxdrdibi330ch1x0cw131gynbhmhbsppsg0v5vb5";
};
nativeBuildInputs = [ autoreconfHook pkgconfig ];
diff --git a/pkgs/applications/misc/merkaartor/default.nix b/pkgs/applications/misc/merkaartor/default.nix
index 5954316e50f..3882f679cae 100644
--- a/pkgs/applications/misc/merkaartor/default.nix
+++ b/pkgs/applications/misc/merkaartor/default.nix
@@ -1,15 +1,19 @@
-{ stdenv, fetchurl, qt4, qmake4Hook, boost, proj, gdal_1_11 }:
+{ stdenv, fetchFromGitHub, qt4, qmake4Hook, boost, proj, gdal, sqlite, pkgconfig }:
stdenv.mkDerivation rec {
- name = "merkaartor-0.18.1";
- src = fetchurl {
- url = "http://merkaartor.be/attachments/download/301/merkaartor-0.18.1.tar.bz2";
- sha256 = "17qk45pmlxqigla1915dvn9pp91y85d2bkcaap4g3m8mk1crcsix";
+ name = "merkaartor-${version}";
+ version = "0.18.2";
+
+ src = fetchFromGitHub {
+ owner = "openstreetmap";
+ repo = "merkaartor";
+ rev = version;
+ sha256 = "1a8kzrc9w0b2a2zgw9dbbi15jy9ynv6nf2sg3k4dbh7f1s2ajx9l";
};
- buildInputs = [ qt4 boost proj gdal_1_11 ];
+ buildInputs = [ qt4 boost proj gdal sqlite ];
- nativeBuildInputs = [ qmake4Hook ];
+ nativeBuildInputs = [ qmake4Hook pkgconfig ];
meta = {
description = "An openstreetmap editor";
diff --git a/pkgs/applications/misc/mlterm/default.nix b/pkgs/applications/misc/mlterm/default.nix
new file mode 100644
index 00000000000..80d0c136628
--- /dev/null
+++ b/pkgs/applications/misc/mlterm/default.nix
@@ -0,0 +1,38 @@
+{ stdenv, fetchurl, pkgconfig, libX11, gdk_pixbuf, cairo, libXft, gtk2, fribidi }:
+
+stdenv.mkDerivation rec {
+ name = "mlterm-${version}";
+ version = "3.3.8";
+
+ src = fetchurl {
+ url = "https://downloads.sourceforge.net/project/mlterm/01release/${name}/${name}.tar.gz";
+ sha256 = "088pgxynzxxii7wdmjp2fdkxydirx4k05588zkhlzalkb5l8ji1i";
+ };
+
+ buildInputs = [ pkgconfig libX11 gdk_pixbuf cairo libXft gtk2 fribidi ];
+
+ preConfigure = ''
+ sed -ie 's#-L/usr/local/lib -R/usr/local/lib##g' \
+ xwindow/libtype/Makefile.in \
+ main/Makefile.in \
+ java/Makefile.in \
+ tool/mlimgloader/Makefile.in \
+ tool/registobmp/Makefile.in \
+ tool/mlconfig/Makefile.in
+ sed -ie 's;cd ..srcdir. && rm -f ...lang..gmo.*;;g' tool/mlconfig/po/Makefile.in.in
+ '';
+
+ configureFlags = [
+ "--with-imagelib=gdk-pixbuf"
+ "--with-type-engines=cairo,xft,xcore"
+ "--with-x"
+ "--enable-ind"
+ ];
+
+ meta = with stdenv.lib; {
+ homepage = https://sourceforge.net/projects/mlterm/;
+ license = licenses.bsd2;
+ maintainers = [ maintainers.vrthra ];
+ platforms = with platforms; linux;
+ };
+}
diff --git a/pkgs/applications/misc/mop/default.nix b/pkgs/applications/misc/mop/default.nix
new file mode 100644
index 00000000000..ccdb47c4b60
--- /dev/null
+++ b/pkgs/applications/misc/mop/default.nix
@@ -0,0 +1,30 @@
+{ stdenv, lib, buildGoPackage, fetchgit }:
+
+buildGoPackage rec {
+ name = "mop-${version}";
+ version = "0.2.0";
+ rev = "bc666ec165d08b43134f7ec0bf29083ad5466243";
+
+ goPackagePath = "github.com/michaeldv/mop";
+ goDeps = ./deps.json;
+
+ preConfigure = ''
+ for i in $(find . -type f);do
+ substituteInPlace $i --replace michaeldv/termbox-go nsf/termbox-go
+ done
+ substituteInPlace Makefile --replace mop/cmd mop/mop
+ mv cmd mop
+ '';
+
+ src = fetchgit {
+ inherit rev;
+ url = "https://github.com/mop-tracker/mop";
+ sha256 = "0zp51g9i8rw6acs4vnrxclbxa5z1v0a0m1xx27szszp0rphcczkx";
+ };
+
+ meta = {
+ description = "Simple stock tracker implemented in go";
+ homepage = https://github.com/mop-tracker/mop;
+ platforms = stdenv.lib.platforms.all;
+ };
+}
diff --git a/pkgs/applications/misc/mop/deps.json b/pkgs/applications/misc/mop/deps.json
new file mode 100644
index 00000000000..e1b40df8310
--- /dev/null
+++ b/pkgs/applications/misc/mop/deps.json
@@ -0,0 +1,8 @@
+[
+ {
+ "include": "../../libs.json",
+ "packages": [
+ "github.com/nsf/termbox-go"
+ ]
+ }
+]
diff --git a/pkgs/applications/misc/multisync/default.nix b/pkgs/applications/misc/multisync/default.nix
index 8fd04353969..fc55b275dd0 100644
--- a/pkgs/applications/misc/multisync/default.nix
+++ b/pkgs/applications/misc/multisync/default.nix
@@ -17,7 +17,7 @@ stdenv.mkDerivation {
preConfigure = "./autogen.sh"; # install.sh is not contained in the tar
meta = {
- description = "modular program to synchronize calendars, addressbooks and other PIM data between pcs, mobile devices etc";
+ description = "Modular program to synchronize calendars, addressbooks and other PIM data between pcs, mobile devices etc";
};
}
diff --git a/pkgs/applications/misc/mupdf/default.nix b/pkgs/applications/misc/mupdf/default.nix
index b7e4e1966c9..fb475f047b4 100644
--- a/pkgs/applications/misc/mupdf/default.nix
+++ b/pkgs/applications/misc/mupdf/default.nix
@@ -1,42 +1,25 @@
-{ stdenv, fetchurl, fetchpatch, pkgconfig, zlib, freetype, libjpeg, jbig2dec, openjpeg
-, libX11, libXext }:
+{ stdenv, fetchurl, fetchpatch, pkgconfig
+, zlib, freetype, libjpeg, jbig2dec, openjpeg
+, libX11, libXcursor, libXrandr, libXinerama, libXext, harfbuzz, mesa }:
stdenv.mkDerivation rec {
- version = "1.8";
+ version = "1.9";
name = "mupdf-${version}";
src = fetchurl {
url = "http://mupdf.com/downloads/archive/${name}-source.tar.gz";
- sha256 = "01n26cy41lc2fjri63s4js23ixxb4nd37aafry3hz4i4id6wd8x2";
+ sha256 = "15p2k1n3afc7bnqrc0zfqz31fjfq3rrrrj4fwwy5az26d11ynxhp";
};
+ NIX_CFLAGS_COMPILE= [ "-fPIC" ];
nativeBuildInputs = [ pkgconfig ];
- propagatedBuildInputs = [ openjpeg libjpeg jbig2dec ];
- buildInputs = [ zlib freetype libX11 libXext ];
+ buildInputs = [ zlib freetype libX11 libXcursor libXext harfbuzz mesa libXrandr libXinerama];
- enableParallelBuilding = true;
+ installPhase = ''
+ make install prefix=$out
+ gcc -shared -o $out/lib/libmupdf.so.${version} -Wl,--whole-archive $out/lib/libmupdf.a -Wl,--no-whole-archive
- my_soname = "libmupdf.so.1.3";
- my_soname_js_none = "libmupdf-js-none.so.1.3";
- preBuild = ''
- export makeFlags="prefix=$out build=release XCFLAGS=-fpic"
- export NIX_CFLAGS_COMPILE=" $NIX_CFLAGS_COMPILE -I$(echo ${openjpeg}/include/openjpeg-*) "
-
- # Copied from Gentoo ebuild
- rm -rf thirdparty
- sed -e "\$a\$(MUPDF_LIB): \$(MUPDF_JS_NONE_LIB)" \
- -e "\$a\\\t\$(QUIET_LINK) \$(CC) \$(LDFLAGS) --shared -Wl,-soname -Wl,${my_soname} -Wl,--no-undefined -o \$@ \$^ \$(MUPDF_JS_NONE_LIB) \$(LIBS)" \
- -e "/^MUPDF_LIB :=/s:=.*:= \$(OUT)/${my_soname}:" \
- -e "\$a\$(MUPDF_JS_NONE_LIB):" \
- -e "\$a\\\t\$(QUIET_LINK) \$(CC) \$(LDFLAGS) --shared -Wl,-soname -Wl,${my_soname_js_none} -Wl,--no-undefined -o \$@ \$^ \$(LIBS)" \
- -e "/^MUPDF_JS_NONE_LIB :=/s:=.*:= \$(OUT)/${my_soname_js_none}:" \
- -i Makefile
-
- sed -e "s/libopenjpeg1/libopenjp2/" -i Makerules
- '';
-
- postInstall = ''
- ln -s ${my_soname} $out/lib/libmupdf.so
+ ln -s $out/lib/libmupdf.so.${version} $out/lib/libmupdf.so
mkdir -p "$out/lib/pkgconfig"
cat >"$out/lib/pkgconfig/mupdf.pc" < Makefile.conf
+ override NETSURF_GTK_RESOURCES := $out/share/Netsurf/${uilib}/res
+ override NETSURF_USE_GRESOURCE := YES
+ EOF
+ '';
+
+ makeFlags = [
+ "PREFIX=$(out)"
+ "NSSHARED=${buildsystem}/share/netsurf-buildsystem"
+ "TARGET=${uilib}"
+ ];
+
+ installPhase = ''
+ mkdir -p $out/bin $out/share/Netsurf/${uilib}
+ cmd=$(case "${uilib}" in framebuffer) echo nsfb;; gtk) echo nsgtk;; esac)
+ cp $cmd $out/bin/netsurf
+ wrapProgram $out/bin/netsurf --set NETSURFRES $out/share/Netsurf/${uilib}/res
+ tar -hcf - ${uilib}/res | (cd $out/share/Netsurf/ && tar -xvpf -)
+ '';
+
+ meta = with stdenv.lib; {
+ homepage = "http://www.netsurf-browser.org/";
+ description = "Free opensource web browser";
+ license = licenses.gpl2;
+ maintainers = [ maintainers.vrthra ];
+ platforms = platforms.linux;
+ };
+}
diff --git a/pkgs/applications/misc/netsurf/buildsystem/default.nix b/pkgs/applications/misc/netsurf/buildsystem/default.nix
new file mode 100644
index 00000000000..f64fbe8528b
--- /dev/null
+++ b/pkgs/applications/misc/netsurf/buildsystem/default.nix
@@ -0,0 +1,24 @@
+{ stdenv, fetchurl }:
+
+stdenv.mkDerivation rec {
+
+ name = "netsurf-buildsystem-${version}";
+ version = "1.5";
+
+ src = fetchurl {
+ url = "http://download.netsurf-browser.org/libs/releases/buildsystem-${version}.tar.gz";
+ sha256 = "0wdgvasrjik1dgvvpqbppbpyfzkqd1v45x3g9rq7p67n773azinv";
+ };
+
+ makeFlags = [
+ "PREFIX=$(out)"
+ ];
+
+ meta = with stdenv.lib; {
+ homepage = "http://www.netsurf-browser.org/";
+ description = "Build system for netsurf browser";
+ license = licenses.gpl2;
+ maintainers = [ maintainers.vrthra ];
+ platforms = platforms.linux;
+ };
+}
diff --git a/pkgs/applications/misc/netsurf/libcss/default.nix b/pkgs/applications/misc/netsurf/libcss/default.nix
new file mode 100644
index 00000000000..9db681bf5c1
--- /dev/null
+++ b/pkgs/applications/misc/netsurf/libcss/default.nix
@@ -0,0 +1,36 @@
+{ stdenv, fetchurl, pkgconfig, perl
+, buildsystem
+, libwapcaplet
+, libparserutils
+}:
+
+stdenv.mkDerivation rec {
+
+ name = "netsurf-${libname}-${version}";
+ libname = "libcss";
+ version = "0.6.0";
+
+ src = fetchurl {
+ url = "http://download.netsurf-browser.org/libs/releases/${libname}-${version}-src.tar.gz";
+ sha256 = "0qp4p1q1dwgdra4pkrzd081zjzisxkgwx650ijx323j8bj725daf";
+ };
+
+ buildInputs = [ pkgconfig perl
+ buildsystem
+ libwapcaplet
+ libparserutils
+ ];
+
+ makeFlags = [
+ "PREFIX=$(out)"
+ "NSSHARED=${buildsystem}/share/netsurf-buildsystem"
+ ];
+
+ meta = with stdenv.lib; {
+ homepage = "http://www.netsurf-browser.org/";
+ description = "Cascading Style Sheets library for netsurf browser";
+ license = licenses.gpl2;
+ maintainers = [ maintainers.vrthra ];
+ platforms = platforms.linux;
+ };
+}
diff --git a/pkgs/applications/misc/netsurf/libdom/default.nix b/pkgs/applications/misc/netsurf/libdom/default.nix
new file mode 100644
index 00000000000..9287ee9a084
--- /dev/null
+++ b/pkgs/applications/misc/netsurf/libdom/default.nix
@@ -0,0 +1,38 @@
+{ stdenv, fetchurl, pkgconfig, expat
+, buildsystem
+, libparserutils
+, libwapcaplet
+, libhubbub
+}:
+
+stdenv.mkDerivation rec {
+
+ name = "netsurf-${libname}-${version}";
+ libname = "libdom";
+ version = "0.3.0";
+
+ src = fetchurl {
+ url = "http://download.netsurf-browser.org/libs/releases/${libname}-${version}-src.tar.gz";
+ sha256 = "1kk6qbqagx5ypiy9kf0059iqdzyz8fqaw336vzhb5gnrzjw3wv4a";
+ };
+
+ buildInputs = [ pkgconfig expat
+ buildsystem
+ libparserutils
+ libwapcaplet
+ libhubbub
+ ];
+
+ makeFlags = [
+ "PREFIX=$(out)"
+ "NSSHARED=${buildsystem}/share/netsurf-buildsystem"
+ ];
+
+ meta = with stdenv.lib; {
+ homepage = "http://www.netsurf-browser.org/";
+ description = "Document Object Model library for netsurf browser";
+ license = licenses.gpl2;
+ maintainers = [ maintainers.vrthra ];
+ platforms = platforms.linux;
+ };
+}
diff --git a/pkgs/applications/misc/netsurf/libhubbub/default.nix b/pkgs/applications/misc/netsurf/libhubbub/default.nix
new file mode 100644
index 00000000000..ef319e95089
--- /dev/null
+++ b/pkgs/applications/misc/netsurf/libhubbub/default.nix
@@ -0,0 +1,34 @@
+{ stdenv, fetchurl, pkgconfig, perl
+, buildsystem
+, libparserutils
+}:
+
+stdenv.mkDerivation rec {
+
+ name = "netsurf-${libname}-${version}";
+ libname = "libhubbub";
+ version = "0.3.3";
+
+ src = fetchurl {
+ url = "http://download.netsurf-browser.org/libs/releases/${libname}-${version}-src.tar.gz";
+ sha256 = "101781iw32p47386fxqr01nrkywi12w17ajh02k2vlga4z8zyv86";
+ };
+
+ buildInputs = [ pkgconfig perl
+ buildsystem
+ libparserutils
+ ];
+
+ makeFlags = [
+ "PREFIX=$(out)"
+ "NSSHARED=${buildsystem}/share/netsurf-buildsystem"
+ ];
+
+ meta = with stdenv.lib; {
+ homepage = "http://www.netsurf-browser.org/";
+ description = "HTML5 parser library for netsurf browser";
+ license = licenses.gpl2;
+ maintainers = [ maintainers.vrthra ];
+ platforms = platforms.linux;
+ };
+}
diff --git a/pkgs/applications/misc/netsurf/libnsbmp/default.nix b/pkgs/applications/misc/netsurf/libnsbmp/default.nix
new file mode 100644
index 00000000000..44f644e162b
--- /dev/null
+++ b/pkgs/applications/misc/netsurf/libnsbmp/default.nix
@@ -0,0 +1,32 @@
+{ stdenv, fetchurl, pkgconfig
+, buildsystem
+}:
+
+stdenv.mkDerivation rec {
+
+ name = "netsurf-${libname}-${version}";
+ libname = "libnsbmp";
+ version = "0.1.3";
+
+ src = fetchurl {
+ url = "http://download.netsurf-browser.org/libs/releases/${libname}-${version}-src.tar.gz";
+ sha256 = "0gmvzw1whh7553d6s98vr4ri2whjwrgggcq1z5b160gwjw20mzyy";
+ };
+
+ buildInputs = [ pkgconfig
+ buildsystem
+ ];
+
+ makeFlags = [
+ "PREFIX=$(out)"
+ "NSSHARED=${buildsystem}/share/netsurf-buildsystem"
+ ];
+
+ meta = with stdenv.lib; {
+ homepage = "http://www.netsurf-browser.org/";
+ description = "BMP Decoder for netsurf browser";
+ license = licenses.gpl2;
+ maintainers = [ maintainers.vrthra ];
+ platforms = platforms.linux;
+ };
+}
diff --git a/pkgs/applications/misc/netsurf/libnsfb/default.nix b/pkgs/applications/misc/netsurf/libnsfb/default.nix
new file mode 100644
index 00000000000..234bb43798e
--- /dev/null
+++ b/pkgs/applications/misc/netsurf/libnsfb/default.nix
@@ -0,0 +1,31 @@
+{ stdenv, fetchurl, pkgconfig, uilib? "framebuffer", SDL
+, buildsystem
+}:
+
+stdenv.mkDerivation rec {
+
+ name = "netsurf-${libname}-${version}";
+ libname = "libnsfb";
+ version = "0.1.4";
+
+ src = fetchurl {
+ url = "http://download.netsurf-browser.org/libs/releases/${libname}-${version}-src.tar.gz";
+ sha256 = "176f8why9gzbaca9nnxjqasl02qzc6g507z5w3dzkcjifnkz4mzl";
+ };
+
+ buildInputs = [ pkgconfig buildsystem SDL ];
+
+ makeFlags = [
+ "PREFIX=$(out)"
+ "NSSHARED=${buildsystem}/share/netsurf-buildsystem"
+ "TARGET=${uilib}"
+ ];
+
+ meta = with stdenv.lib; {
+ homepage = "http://www.netsurf-browser.org/";
+ description = "CSS parser and selection library for netsurf browser";
+ license = licenses.gpl2;
+ maintainers = [ maintainers.vrthra ];
+ platforms = platforms.linux;
+ };
+}
diff --git a/pkgs/applications/misc/netsurf/libnsgif/default.nix b/pkgs/applications/misc/netsurf/libnsgif/default.nix
new file mode 100644
index 00000000000..09ec6c6ecc3
--- /dev/null
+++ b/pkgs/applications/misc/netsurf/libnsgif/default.nix
@@ -0,0 +1,30 @@
+{ stdenv, fetchurl, pkgconfig
+, buildsystem
+}:
+
+stdenv.mkDerivation rec {
+
+ name = "netsurf-${libname}-${version}";
+ libname = "libnsgif";
+ version = "0.1.3";
+
+ src = fetchurl {
+ url = "http://download.netsurf-browser.org/libs/releases/${libname}-${version}-src.tar.gz";
+ sha256 = "1a4z45gh0fw4iybf34fig725av25h31ffk0azi0snzh4130cklnk";
+ };
+
+ buildInputs = [ buildsystem pkgconfig];
+
+ makeFlags = [
+ "PREFIX=$(out)"
+ "NSSHARED=${buildsystem}/share/netsurf-buildsystem"
+ ];
+
+ meta = with stdenv.lib; {
+ homepage = "http://www.netsurf-browser.org/";
+ description = "GIF Decoder for netsurf browser";
+ license = licenses.gpl2;
+ maintainers = [ maintainers.vrthra ];
+ platforms = platforms.linux;
+ };
+}
diff --git a/pkgs/applications/misc/netsurf/libnsutils/default.nix b/pkgs/applications/misc/netsurf/libnsutils/default.nix
new file mode 100644
index 00000000000..9d931d6bea2
--- /dev/null
+++ b/pkgs/applications/misc/netsurf/libnsutils/default.nix
@@ -0,0 +1,30 @@
+{ stdenv, fetchurl, pkgconfig
+, buildsystem
+}:
+
+stdenv.mkDerivation rec {
+
+ name = "netsurf-${libname}-${version}";
+ libname = "libnsutils";
+ version = "0.0.2";
+
+ src = fetchurl {
+ url = "http://download.netsurf-browser.org/libs/releases/${libname}-${version}-src.tar.gz";
+ sha256 = "03p4xmd08yhj70nyj7acjccmmshs59lv4n4zsqpsn5lgkwa23lzy";
+ };
+
+ buildInputs = [ buildsystem pkgconfig];
+
+ makeFlags = [
+ "PREFIX=$(out)"
+ "NSSHARED=${buildsystem}/share/netsurf-buildsystem"
+ ];
+
+ meta = with stdenv.lib; {
+ homepage = "http://www.netsurf-browser.org/";
+ description = "Generalised utility library for netsurf browser";
+ license = licenses.gpl2;
+ maintainers = [ maintainers.vrthra ];
+ platforms = platforms.linux;
+ };
+}
diff --git a/pkgs/applications/misc/netsurf/libparserutils/default.nix b/pkgs/applications/misc/netsurf/libparserutils/default.nix
new file mode 100644
index 00000000000..275c2cccaef
--- /dev/null
+++ b/pkgs/applications/misc/netsurf/libparserutils/default.nix
@@ -0,0 +1,30 @@
+{ stdenv, fetchurl, perl
+, buildsystem
+}:
+
+stdenv.mkDerivation rec {
+
+ name = "netsurf-${libname}-${version}";
+ libname = "libparserutils";
+ version = "0.2.3";
+
+ src = fetchurl {
+ url = "http://download.netsurf-browser.org/libs/releases/${libname}-${version}-src.tar.gz";
+ sha256 = "01gzlsabgl6x0icd8758d9jqs8rrf9574bdkjainn04w3fs3znf5";
+ };
+
+ buildInputs = [ buildsystem perl ];
+
+ makeFlags = [
+ "PREFIX=$(out)"
+ "NSSHARED=${buildsystem}/share/netsurf-buildsystem"
+ ];
+
+ meta = with stdenv.lib; {
+ homepage = "http://www.netsurf-browser.org/";
+ description = "Parser building library for netsurf browser";
+ license = licenses.gpl2;
+ maintainers = [ maintainers.vrthra ];
+ platforms = platforms.linux;
+ };
+}
diff --git a/pkgs/applications/misc/netsurf/libutf8proc/default.nix b/pkgs/applications/misc/netsurf/libutf8proc/default.nix
new file mode 100644
index 00000000000..b2057e1889f
--- /dev/null
+++ b/pkgs/applications/misc/netsurf/libutf8proc/default.nix
@@ -0,0 +1,30 @@
+{ stdenv, fetchurl, pkgconfig
+, buildsystem
+}:
+
+stdenv.mkDerivation rec {
+
+ name = "netsurf-${libname}-${version}";
+ libname = "libutf8proc";
+ version = "1.3.1";
+
+ src = fetchurl {
+ url = "http://download.netsurf-browser.org/libs/releases/${libname}-${version}-src.tar.gz";
+ sha256 = "0xf659y3c6ikjnip47r30wv796a34d71p6qhc4xjs64iqszm1sbq";
+ };
+
+ buildInputs = [ buildsystem pkgconfig];
+
+ makeFlags = [
+ "PREFIX=$(out)"
+ "NSSHARED=${buildsystem}/share/netsurf-buildsystem"
+ ];
+
+ meta = with stdenv.lib; {
+ homepage = "http://www.netsurf-browser.org/";
+ description = "UTF8 Processing library for netsurf browser";
+ license = licenses.gpl2;
+ maintainers = [ maintainers.vrthra ];
+ platforms = platforms.linux;
+ };
+}
diff --git a/pkgs/applications/misc/netsurf/libwapcaplet/default.nix b/pkgs/applications/misc/netsurf/libwapcaplet/default.nix
new file mode 100644
index 00000000000..edcc45ca0fa
--- /dev/null
+++ b/pkgs/applications/misc/netsurf/libwapcaplet/default.nix
@@ -0,0 +1,30 @@
+{ stdenv, fetchurl
+, buildsystem
+}:
+
+stdenv.mkDerivation rec {
+
+ name = "netsurf-${libname}-${version}";
+ libname = "libwapcaplet";
+ version = "0.3.0";
+
+ src = fetchurl {
+ url = "http://download.netsurf-browser.org/libs/releases/${libname}-${version}-src.tar.gz";
+ sha256 = "0cs1dd2afjgc3wf5gqg434hv6jdabrp9qvlpl4dp53nhkyfywna3";
+ };
+
+ buildInputs = [ buildsystem ];
+
+ makeFlags = [
+ "PREFIX=$(out)"
+ "NSSHARED=${buildsystem}/share/netsurf-buildsystem"
+ ];
+
+ meta = with stdenv.lib; {
+ homepage = "http://www.netsurf-browser.org/";
+ description = "String internment library for netsurf browser";
+ license = licenses.gpl2;
+ maintainers = [ maintainers.vrthra ];
+ platforms = platforms.linux;
+ };
+}
diff --git a/pkgs/applications/misc/netsurf/nsgenbind/default.nix b/pkgs/applications/misc/netsurf/nsgenbind/default.nix
new file mode 100644
index 00000000000..0985a182520
--- /dev/null
+++ b/pkgs/applications/misc/netsurf/nsgenbind/default.nix
@@ -0,0 +1,30 @@
+{ stdenv, fetchurl
+, flex, bison
+, buildsystem
+}:
+
+stdenv.mkDerivation rec {
+
+ name = "netsurf-nsgenbind-${version}";
+ version = "0.3";
+
+ src = fetchurl {
+ url = "http://download.netsurf-browser.org/libs/releases/nsgenbind-${version}-src.tar.gz";
+ sha256 = "16xsazly7gxwywmlkf2xix9b924sj3skhgdak7218l0nc62a08gg";
+ };
+
+ buildInputs = [ buildsystem flex bison ];
+
+ makeFlags = [
+ "PREFIX=$(out)"
+ "NSSHARED=${buildsystem}/share/netsurf-buildsystem"
+ ];
+
+ meta = with stdenv.lib; {
+ homepage = "http://www.netsurf-browser.org/";
+ description = "Generator for JavaScript bindings for netsurf browser";
+ license = licenses.gpl2;
+ maintainers = [ maintainers.vrthra ];
+ platforms = platforms.linux;
+ };
+}
diff --git a/pkgs/applications/misc/nix-tour/default.nix b/pkgs/applications/misc/nix-tour/default.nix
new file mode 100644
index 00000000000..a6bcff06626
--- /dev/null
+++ b/pkgs/applications/misc/nix-tour/default.nix
@@ -0,0 +1,37 @@
+{ stdenv, fetchgit, electron } :
+
+stdenv.mkDerivation rec {
+ name = "nix-tour";
+
+ buildInputs = [ electron ];
+
+ version = "v0.0.1";
+
+ src = fetchgit {
+ url = "https://github.com/nixcloud/tour_of_nix";
+ rev = "refs/tags/${version}";
+ sha256 = "09b1vxli4zv1nhqnj6c0vrrl51gaira94i8l7ww96fixqxjgdwvb";
+ };
+
+ phases = [ "unpackPhase" "installPhase" ];
+
+ installPhase = ''
+ mkdir -p $out/bin
+ mkdir -p $out/share
+ cp -R * $out/share
+ chmod 0755 $out/share/ -R
+ echo "#!${stdenv.shell}" > $out/bin/nix-tour
+ echo "cd $out/share/" >> $out/bin/nix-tour
+ echo "${electron}/bin/electron $out/share/electron-main.js" >> $out/bin/nix-tour
+ chmod 0755 $out/bin/nix-tour
+ '';
+
+ meta = with stdenv.lib; {
+ description = "'the tour of nix' from nixcloud.io/tour as offline version";
+ homepage = "https://nixcloud.io/tour";
+ license = licenses.gpl2;
+ platforms = platforms.linux;
+ maintainers = with maintainers; [ qknight ];
+ };
+
+}
\ No newline at end of file
diff --git a/pkgs/applications/misc/openjump/default.nix b/pkgs/applications/misc/openjump/default.nix
index 8a68bd7ccfb..fdc4cd5b6d9 100644
--- a/pkgs/applications/misc/openjump/default.nix
+++ b/pkgs/applications/misc/openjump/default.nix
@@ -30,7 +30,7 @@ stdenv.mkDerivation {
buildInputs = [unzip];
meta = {
- description = "open source Geographic Information System (GIS) written in the Java programming language";
+ description = "Open source Geographic Information System (GIS) written in the Java programming language";
homepage = http://www.openjump.org/index.html;
license = stdenv.lib.licenses.gpl2;
maintainers = [stdenv.lib.maintainers.marcweber];
diff --git a/pkgs/applications/misc/pdfmod/default.nix b/pkgs/applications/misc/pdfmod/default.nix
index 24a0a8c6967..0978da3512b 100644
--- a/pkgs/applications/misc/pdfmod/default.nix
+++ b/pkgs/applications/misc/pdfmod/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchurl, fetchpatch, pkgconfig, gnome_doc_utils, intltool
+{ stdenv, fetchurl, fetchpatch, pkgconfig, gnome_doc_utils, intltool, lib
, mono, gtk-sharp, gnome-sharp, hyena
, which, makeWrapper, glib, gnome3, poppler, wrapGAppsHook
}:
@@ -33,12 +33,7 @@ stdenv.mkDerivation rec {
--add-flags "$out/lib/pdfmod/PdfMod.exe" \
--prefix MONO_GAC_PREFIX : ${gtk-sharp} \
--prefix MONO_GAC_PREFIX : ${gnome-sharp} \
- --prefix LD_LIBRARY_PATH : ${glib}/lib \
- --prefix LD_LIBRARY_PATH : ${gtk-sharp}/lib \
- --prefix LD_LIBRARY_PATH : ${gnome-sharp}/lib \
- --prefix LD_LIBRARY_PATH : ${gtk-sharp.gtk}/lib \
- --prefix LD_LIBRARY_PATH : ${gnome3.gconf}/lib \
- --prefix LD_LIBRARY_PATH : ${poppler.out}/lib
+ --prefix LD_LIBRARY_PATH : ${lib.makeLibraryPath [ glib gnome-sharp gnome3.gconf gtk-sharp gtk-sharp.gtk poppler ]}
'';
dontStrip = true;
diff --git a/pkgs/applications/misc/procmail/default.nix b/pkgs/applications/misc/procmail/default.nix
index f4980cb2c6b..0bdc771e2bd 100644
--- a/pkgs/applications/misc/procmail/default.nix
+++ b/pkgs/applications/misc/procmail/default.nix
@@ -3,26 +3,26 @@
stdenv.mkDerivation {
name = "procmail-3.22";
- buildInputs = [ stdenv.cc.libc ];
+ patches = [ ./CVE-2014-3618.patch ];
# getline is defined differently in glibc now. So rename it.
- installPhase = "
- mkdir -p \$out/bin
- sed -e \"s%^RM.*$%RM=`type -f rm | awk '{print $3;}'` -f%\" -i Makefile
- sed -e \"s%^BASENAME.*%\BASENAME=$out%\" -i Makefile
- sed -e \"s%^LIBS=.*%LIBS=-lm%\" -i Makefile
- sed -e \"s%getline%thisgetline%g\" -i src/*.c src/*.h
- make DESTDIR=\$out install
- ";
-
- phases = "unpackPhase patchPhase installPhase";
-
- patches = [ ./CVE-2014-3618.patch ];
+ postPatch = ''
+ sed -e "s%^RM.*$%#%" -i Makefile
+ sed -e "s%^BASENAME.*%\BASENAME=$out%" -i Makefile
+ sed -e "s%^LIBS=.*%LIBS=-lm%" -i Makefile
+ sed -e "s%getline%thisgetline%g" -i src/*.c src/*.h
+ '';
src = fetchurl {
url = ftp://ftp.fu-berlin.de/pub/unix/mail/procmail/procmail-3.22.tar.gz;
sha256 = "05z1c803n5cppkcq99vkyd5myff904lf9sdgynfqngfk9nrpaz08";
};
- meta.homepage = "http://www.procmail.org/";
+ meta = with stdenv.lib; {
+ description = "Mail processing and filtering utility";
+ homepage = http://www.procmail.org/;
+ license = licenses.gpl2;
+ platforms = platforms.unix;
+ maintainers = with maintainers; [ gebner ];
+ };
}
diff --git a/pkgs/applications/misc/qtpass/default.nix b/pkgs/applications/misc/qtpass/default.nix
index 342a03f8984..cca8d05ea5c 100644
--- a/pkgs/applications/misc/qtpass/default.nix
+++ b/pkgs/applications/misc/qtpass/default.nix
@@ -2,11 +2,11 @@
stdenv.mkDerivation rec {
name = "qtpass-${version}";
- version = "1.1.1";
+ version = "1.1.3";
src = fetchzip {
url = "https://github.com/IJHack/qtpass/archive/v${version}.tar.gz";
- sha256 = "1x1ic9as0a60gz664sf8d1qiq64ji7q60g19x0rlm3bvcp2612c8";
+ sha256 = "114rqvd2jl98c75zmhdwfmp44kxa4v459naiivb4w020d60ziq7l";
};
buildInputs = [ git gnupg pass qtbase qtsvg qttools ];
diff --git a/pkgs/applications/misc/rofi/default.nix b/pkgs/applications/misc/rofi/default.nix
index ee068e2045e..11c090cc389 100644
--- a/pkgs/applications/misc/rofi/default.nix
+++ b/pkgs/applications/misc/rofi/default.nix
@@ -1,15 +1,15 @@
{ stdenv, fetchurl, autoreconfHook, pkgconfig, libX11, libxkbcommon, pango
-, cairo, glib, libxcb, xcbutil, xcbutilwm, which, git, libstartup_notification
+, cairo, glib, libxcb, xcbutil, xcbutilwm, libstartup_notification
, i3Support ? false, i3
}:
stdenv.mkDerivation rec {
- version = "1.0.1";
+ version = "1.1.0";
name = "rofi-${version}";
src = fetchurl {
url = "https://github.com/DaveDavenport/rofi/releases/download/${version}/${name}.tar.xz";
- sha256 = "01jxml9vk4cw7pngpan7dipmb98s6ibh6f0023lw3hbgxy650637";
+ sha256 = "1l8vl0mh7i0b1ycifqpg6392f5i4qxlv003m126skfk6fnlfq8hn";
};
preConfigure = ''
@@ -19,7 +19,7 @@ stdenv.mkDerivation rec {
'';
buildInputs = [ autoreconfHook pkgconfig libX11 libxkbcommon pango
- cairo libstartup_notification libxcb xcbutil xcbutilwm which git
+ cairo libstartup_notification libxcb xcbutil xcbutilwm
] ++ stdenv.lib.optional i3Support i3;
meta = with stdenv.lib; {
diff --git a/pkgs/applications/misc/sequelpro/default.nix b/pkgs/applications/misc/sequelpro/default.nix
new file mode 100644
index 00000000000..4908769bef6
--- /dev/null
+++ b/pkgs/applications/misc/sequelpro/default.nix
@@ -0,0 +1,25 @@
+{ stdenv, fetchurl, undmg }:
+
+stdenv.mkDerivation rec {
+ name = "sequel-pro-${version}";
+ version = "1.1.2";
+
+ src = fetchurl {
+ url = "https://github.com/sequelpro/sequelpro/releases/download/release-1.1.2/sequel-pro-1.1.2.dmg";
+ sha256 = "1il7yc3f0yzxkra27bslnmka5ycxzx0q4m3xz2j9r7iyq5izsd3v";
+ };
+
+ buildInputs = [ undmg ];
+ installPhase = ''
+ mkdir -p "$out/Applications/Sequel Pro.app"
+ cp -R . "$out/Applications/Sequel Pro.app"
+ chmod +x "$out/Applications/Sequel Pro.app/Contents/MacOS/Sequel Pro"
+ '';
+
+ meta = {
+ description = "MySQL database management for Mac OS X";
+ homepage = http://www.sequelpro.com/;
+ license = stdenv.lib.licenses.mit;
+ platforms = stdenv.lib.platforms.darwin;
+ };
+}
diff --git a/pkgs/applications/misc/spacefm/default.nix b/pkgs/applications/misc/spacefm/default.nix
index f0c244af05e..74466d667b3 100644
--- a/pkgs/applications/misc/spacefm/default.nix
+++ b/pkgs/applications/misc/spacefm/default.nix
@@ -1,6 +1,6 @@
-{ pkgs, fetchFromGitHub, stdenv, gtk3, udev, desktop_file_utils, shared_mime_info
-, intltool, pkgconfig, wrapGAppsHook, ffmpegthumbnailer, jmtpfs, ifuse, lsof, udisks
-, hicolor_icon_theme, adwaita-icon-theme }:
+{ pkgs, fetchFromGitHub, stdenv, gtk3, udev, desktop_file_utils
+, shared_mime_info, intltool, pkgconfig, wrapGAppsHook, ffmpegthumbnailer
+, jmtpfs, ifuse, lsof, udisks, hicolor_icon_theme, adwaita-icon-theme }:
stdenv.mkDerivation rec {
name = "spacefm-${version}";
@@ -15,14 +15,21 @@ stdenv.mkDerivation rec {
configureFlags = [
"--with-bash-path=${pkgs.bash}/bin/bash"
- "--with-preferable-sudo=${pkgs.sudo}/bin/sudo"
];
preConfigure = ''
configureFlags="$configureFlags --sysconfdir=$out/etc"
'';
- buildInputs = [ gtk3 udev desktop_file_utils shared_mime_info intltool pkgconfig wrapGAppsHook ffmpegthumbnailer jmtpfs ifuse lsof udisks ];
+ postInstall = ''
+ rm -f $out/etc/spacefm/spacefm.conf
+ ln -s /etc/spacefm/spacefm.conf $out/etc/spacefm/spacefm.conf
+ '';
+
+ buildInputs = [
+ gtk3 udev desktop_file_utils shared_mime_info intltool pkgconfig
+ wrapGAppsHook ffmpegthumbnailer jmtpfs ifuse lsof udisks
+ ];
meta = with stdenv.lib; {
description = "A multi-panel tabbed file manager";
@@ -33,7 +40,7 @@ stdenv.mkDerivation rec {
'';
homepage = http://ignorantguru.github.io/spacefm/;
platforms = platforms.linux;
- license = licenses.gpl3;
+ license = licenses.gpl3Plus;
maintainers = with maintainers; [ jagajaga obadz ];
};
}
diff --git a/pkgs/applications/misc/synergy/default.nix b/pkgs/applications/misc/synergy/default.nix
index 16323bd2257..a56b49752e3 100644
--- a/pkgs/applications/misc/synergy/default.nix
+++ b/pkgs/applications/misc/synergy/default.nix
@@ -5,13 +5,13 @@ with stdenv.lib;
stdenv.mkDerivation rec {
name = "synergy-${version}";
- version = "1.7.5";
+ version = "1.7.6";
src = fetchFromGitHub {
owner = "symless";
repo = "synergy";
rev = "v${version}-stable";
- sha256 = "02zv8m7yagx80wi7m0ckglfqjqyrj6rd1gywxzqzl6841scmf87n";
+ sha256 = "1bjksvdr74mc3xh11z4fd6qlhgklny51q5r6gqg1bhnvn9dzyrxw";
};
postPatch = ''
diff --git a/pkgs/applications/misc/tasknc/default.nix b/pkgs/applications/misc/tasknc/default.nix
index b7b9d36b4cb..ae0b46d056f 100644
--- a/pkgs/applications/misc/tasknc/default.nix
+++ b/pkgs/applications/misc/tasknc/default.nix
@@ -41,7 +41,7 @@ stdenv.mkDerivation rec {
meta = {
homepage = "https://github.com/mjheagle8/tasknc";
- description = "a ncurses wrapper around taskwarrior";
+ description = "A ncurses wrapper around taskwarrior";
maintainers = [ stdenv.lib.maintainers.matthiasbeyer ];
platforms = stdenv.lib.platforms.linux; # Cannot test others
};
diff --git a/pkgs/applications/misc/termite/default.nix b/pkgs/applications/misc/termite/default.nix
index 33bc29f871c..33c42e3dc1d 100644
--- a/pkgs/applications/misc/termite/default.nix
+++ b/pkgs/applications/misc/termite/default.nix
@@ -13,6 +13,8 @@ let
sha256 = "1cw4yw7n9m2si8b7zcfyz9pyihncabxm5g39v1mxslfajxgwzmd8";
};
+ postPatch = "sed '1i#include ' -i termite.cc";
+
makeFlags = [ "VERSION=v${version}" "PREFIX=" "DESTDIR=$(out)" ];
buildInputs = [ pkgconfig vte gtk3 ncurses ];
diff --git a/pkgs/applications/misc/timewarrior/default.nix b/pkgs/applications/misc/timewarrior/default.nix
index 0946f6d4975..f49e6321cae 100644
--- a/pkgs/applications/misc/timewarrior/default.nix
+++ b/pkgs/applications/misc/timewarrior/default.nix
@@ -1,19 +1,24 @@
-{ stdenv, fetchgit, cmake, libuuid, gnutls }:
+{ stdenv, fetchurl, cmake, libuuid, gnutls }:
stdenv.mkDerivation rec {
name = "timewarrior-${version}";
- version = "2016-03-29";
+ version = "0.9.5.alpha";
enableParallelBuilding = true;
- src = fetchgit {
- url = "https://git.tasktools.org/scm/tm/timew.git";
- rev = "2175849a81ddd03707dca7b4c9d69d8fa11e35f7";
- sha256 = "0clhbm6093wnvpq0ypvx95095amvlzab0sz9kiflasw9mgnwisrv";
+ src = fetchurl {
+ url = "https://taskwarrior.org/download/timew-${version}.tar.gz";
+ sha256 = "154d5sgxcmz1b7g401c7s6sf7pkk0hh74dx6rss3vkamsjc4wgl8";
};
nativeBuildInputs = [ cmake ];
+ installPhase = ''
+ mkdir -p $out/{bin,share}
+ cp -rv doc/man $out/share/
+ cp src/timew $out/bin/
+ '';
+
meta = with stdenv.lib; {
description = "A command-line time tracker";
homepage = http://tasktools.org/projects/timewarrior.html;
diff --git a/pkgs/applications/misc/tnef/default.nix b/pkgs/applications/misc/tnef/default.nix
new file mode 100644
index 00000000000..b59f1a43710
--- /dev/null
+++ b/pkgs/applications/misc/tnef/default.nix
@@ -0,0 +1,32 @@
+{ stdenv, fetchFromGitHub, lib, autoreconfHook }:
+
+stdenv.mkDerivation rec {
+ version = "1.4.12";
+ name = "tnef-${version}";
+
+ src = fetchFromGitHub {
+ owner = "verdammelt";
+ repo = "tnef";
+ rev = "${version}";
+ sha256 = "02hwdaaa3yk0lbzb40fgxlkyhc1wicl6ncajpvfcz888z6yxps2c";
+ };
+
+ doCheck = true;
+
+ nativeBuildInputs = [ autoreconfHook ];
+
+ meta = with lib; {
+ description = "Unpacks MIME attachments of type application/ms-tnef";
+ longDescription = ''
+ TNEF is a program for unpacking MIME attachments of type "application/ms-tnef". This is a Microsoft only attachment.
+
+ Due to the proliferation of Microsoft Outlook and Exchange mail servers, more and more mail is encapsulated into this format.
+
+ The TNEF program allows one to unpack the attachments which were encapsulated into the TNEF attachment. Thus alleviating the need to use Microsoft Outlook to view the attachment.
+ '';
+ homepage = https://github.com/verdammelt/tnef;
+ license = licenses.gpl2;
+ maintainers = [ maintainers.DamienCassou ];
+ platforms = platforms.all;
+ };
+}
diff --git a/pkgs/applications/misc/tnef/tnef/default.nix b/pkgs/applications/misc/tnef/tnef/default.nix
new file mode 100644
index 00000000000..3256ed1a570
--- /dev/null
+++ b/pkgs/applications/misc/tnef/tnef/default.nix
@@ -0,0 +1,30 @@
+{ fetchurl, lib }:
+
+stdenv.mkDerivation rec {
+ version = "1.4.12";
+ name = "tnef-${version}";
+
+ src = fetchFromGitHub {
+ owner = "verdammelt";
+ repo = "tnef";
+ rev = "${version}";
+ sha256 = "0ssi2wpaf7plaswqqjwigppsg5fyh99vdlb9kzl7c9lng89ndq1i";
+ };
+
+ doCheck = true;
+
+ meta = with lib; {
+ description = "Unpacks MIME attachments of type application/ms-tnef";
+ longDescription = ''
+ TNEF is a program for unpacking MIME attachments of type "application/ms-tnef". This is a Microsoft only attachment.
+
+ Due to the proliferation of Microsoft Outlook and Exchange mail servers, more and more mail is encapsulated into this format.
+
+ The TNEF program allows one to unpack the attachments which were encapsulated into the TNEF attachment. Thus alleviating the need to use Microsoft Outlook to view the attachment.
+ '';
+ homepage = https://github.com/verdammelt/tnef;
+ license = licenses.gpl2;
+ maintainers = [ maintainers.DamienCassou ];
+ platforms = platforms.all;
+ };
+}
diff --git a/pkgs/applications/misc/vp/default.nix b/pkgs/applications/misc/vp/default.nix
new file mode 100644
index 00000000000..c40df820b33
--- /dev/null
+++ b/pkgs/applications/misc/vp/default.nix
@@ -0,0 +1,27 @@
+{ stdenv, fetchFromGitHub, autoconf, automake, SDL, SDL_image }:
+
+stdenv.mkDerivation rec {
+ name = "vp-${version}";
+ version = "1.8";
+
+ src = fetchFromGitHub {
+ owner = "erikg";
+ repo = "vp";
+ rev = "v${version}";
+ sha256 = "08q6xrxsyj6vj0sz59nix9isqz84gw3x9hym63lz6v8fpacvykdq";
+ };
+
+ buildInputs = [ SDL autoconf automake SDL_image ];
+
+ preConfigure = ''
+ autoreconf -i
+ '';
+
+ meta = with stdenv.lib; {
+ homepage = http://brlcad.org/~erik/;
+ description = "SDL based picture viewer/slideshow";
+ platforms = platforms.unix;
+ license = licenses.gpl3;
+ maintainers = [ maintainers.vrthra ];
+ };
+}
diff --git a/pkgs/applications/misc/xpdf/default.nix b/pkgs/applications/misc/xpdf/default.nix
index f11d5e6d700..a7d288162e3 100644
--- a/pkgs/applications/misc/xpdf/default.nix
+++ b/pkgs/applications/misc/xpdf/default.nix
@@ -35,7 +35,7 @@ stdenv.mkDerivation {
meta = {
homepage = "http://www.foolabs.com/xpdf/";
- description = "viewer for Portable Document Format (PDF) files";
+ description = "Viewer for Portable Document Format (PDF) files";
platforms = stdenv.lib.platforms.unix;
maintainers = [ stdenv.lib.maintainers.peti ];
diff --git a/pkgs/applications/misc/xsw/default.nix b/pkgs/applications/misc/xsw/default.nix
new file mode 100644
index 00000000000..57ea8fe1921
--- /dev/null
+++ b/pkgs/applications/misc/xsw/default.nix
@@ -0,0 +1,28 @@
+{ stdenv, fetchFromGitHub, pkgconfig, autoconf, automake, SDL, SDL_image, SDL_ttf, SDL_gfx, flex, bison }:
+
+stdenv.mkDerivation rec {
+ name = "xsw-${version}";
+ version = "0.1.2";
+
+ src = fetchFromGitHub {
+ owner = "andrenho";
+ repo = "xsw";
+ rev = version;
+ sha256 = "092vp61ngd2vscsvyisi7dv6qrk5m1i81gg19hyfl5qvjq5p0p8g";
+ };
+
+ buildInputs = [ pkgconfig autoconf automake SDL SDL_image SDL_ttf SDL_gfx flex bison ];
+
+ patches = [
+ ./parse.patch # Fixes compilation error by avoiding redundant definitions.
+ ];
+
+ meta = with stdenv.lib; {
+ inherit (src.meta) homepage;
+ description = "A slide show presentation tool";
+
+ platforms = platforms.unix;
+ license = licenses.gpl3;
+ maintainers = [ maintainers.vrthra ];
+ };
+}
diff --git a/pkgs/applications/misc/xsw/parse.patch b/pkgs/applications/misc/xsw/parse.patch
new file mode 100644
index 00000000000..6db6c14c26a
--- /dev/null
+++ b/pkgs/applications/misc/xsw/parse.patch
@@ -0,0 +1,21 @@
+The `%code` causes Color definition to be added in both parser.h and parser.c
+causing duplicate definitions error. This ensures that once it has been included
+as part of parser.h, it wont be redefined in parser.c
+
+--- xsw-0.1.2-src/src/parser.y 1969-12-31 16:00:01.000000000 -0800
++++ xsw-0.1.2-src/src/parser.y 2016-06-28 13:21:35.707027770 -0700
+@@ -38,7 +38,13 @@
+
+ %}
+
+-%code requires { typedef struct { unsigned char c; } Color; }
++%code requires
++{
++#ifndef COLORDEF
++#define COLORDEF
++typedef struct { unsigned char c; } Color;
++#endif
++}
+
+ %token SLIDE COLON HIFEN TEXT X Y W H IMAGE SIZE SCALE TEMPLATE BACKGROUND FONT
+ %token STYLE ALIGN EXPAND PLUS IMAGE_PATH
diff --git a/pkgs/applications/misc/xterm/default.nix b/pkgs/applications/misc/xterm/default.nix
index 2c47e1c9805..9cd677f5d8d 100644
--- a/pkgs/applications/misc/xterm/default.nix
+++ b/pkgs/applications/misc/xterm/default.nix
@@ -1,11 +1,11 @@
{ stdenv, fetchurl, xorg, ncurses, freetype, fontconfig, pkgconfig }:
stdenv.mkDerivation rec {
- name = "xterm-320";
+ name = "xterm-325";
src = fetchurl {
url = "ftp://invisible-island.net/xterm/${name}.tgz";
- sha256 = "19r4rs5pjq944m7aiqligazf6wgmv4f023x3bx183h1l8dbvn3d6";
+ sha256 = "06sz66z4hvjjkvm3r5a5z442iis8lz8yjfzc629pwhj01ixb0c9v";
};
buildInputs =
@@ -13,14 +13,21 @@ stdenv.mkDerivation rec {
ncurses freetype fontconfig pkgconfig xorg.libXft xorg.luit
];
+ patches = [
+ ./sixel-256.support.patch
+ ];
+
configureFlags = [
"--enable-wide-chars"
"--enable-256-color"
+ "--enable-sixel-graphics"
+ "--enable-regis-graphics"
"--enable-load-vt-fonts"
"--enable-i18n"
"--enable-doublechars"
"--enable-luit"
"--enable-mini-luit"
+ "--enable-dec-locator"
"--with-tty-group=tty"
];
@@ -39,7 +46,7 @@ stdenv.mkDerivation rec {
meta = {
homepage = http://invisible-island.net/xterm;
license = "BSD";
- maintainers = with stdenv.lib.maintainers; [viric];
+ maintainers = with stdenv.lib.maintainers; [viric vrthra];
platforms = with stdenv.lib.platforms; linux ++ darwin;
};
}
diff --git a/pkgs/applications/misc/xterm/sixel-256.support.patch b/pkgs/applications/misc/xterm/sixel-256.support.patch
new file mode 100644
index 00000000000..480e67e89ca
--- /dev/null
+++ b/pkgs/applications/misc/xterm/sixel-256.support.patch
@@ -0,0 +1,11 @@
+--- xterm-325/graphics.c 2016-05-17 03:04:40.000000000 -0700
++++ xterm-325/graphics.c 2016-06-11 16:37:29.552584281 -0700
+@@ -667,7 +667,7 @@
+ case 330:
+ return 4U;
+ case 340:
+- return 16U;
++ return 256U;
+ case 382:
+ return 2U;
+ default:
diff --git a/pkgs/applications/misc/zathura/core/default.nix b/pkgs/applications/misc/zathura/core/default.nix
index 0048cb73878..dbb406a23e6 100644
--- a/pkgs/applications/misc/zathura/core/default.nix
+++ b/pkgs/applications/misc/zathura/core/default.nix
@@ -1,4 +1,8 @@
-{ stdenv, fetchurl, pkgconfig, gtk, girara, ncurses, gettext, docutils, file, makeWrapper, zathura_icon, sqlite, glib }:
+{ stdenv, lib, fetchurl, pkgconfig, gtk, girara, ncurses, gettext, docutils, file, makeWrapper, zathura_icon, sqlite, glib
+, synctexSupport ? true, texlive ? null
+}:
+
+assert synctexSupport -> texlive != null;
stdenv.mkDerivation rec {
version = "0.3.6";
@@ -9,7 +13,8 @@ stdenv.mkDerivation rec {
sha256 = "0fyb5hak0knqvg90rmdavwcmilhnrwgg1s5ykx9wd3skbpi8nsh8";
};
- buildInputs = [ pkgconfig file gtk girara gettext makeWrapper sqlite glib ];
+ buildInputs = [ pkgconfig file gtk girara gettext makeWrapper sqlite glib
+ ] ++ lib.optional synctexSupport texlive.bin.core;
NIX_CFLAGS_COMPILE = "-I${glib.dev}/include/gio-unix-2.0";
@@ -18,7 +23,7 @@ stdenv.mkDerivation rec {
"RSTTOMAN=${docutils}/bin/rst2man.py"
"VERBOSE=1"
"TPUT=${ncurses.out}/bin/tput"
- ];
+ ] ++ lib.optional synctexSupport "WITH_SYNCTEX=1";
postInstall = ''
wrapProgram "$out/bin/zathura" \
diff --git a/pkgs/applications/misc/zathura/default.nix b/pkgs/applications/misc/zathura/default.nix
index 0ad3bf2adb9..ed121be6dcd 100644
--- a/pkgs/applications/misc/zathura/default.nix
+++ b/pkgs/applications/misc/zathura/default.nix
@@ -1,4 +1,4 @@
-{ callPackage, lib, pkgs, fetchurl, stdenv, useMupdf }:
+{ callPackage, lib, pkgs, fetchurl, stdenv, useMupdf, synctexSupport ? true }:
rec {
inherit stdenv;
@@ -8,6 +8,7 @@ rec {
zathura_core = callPackage ./core {
gtk = pkgs.gtk3;
zathura_icon = icon;
+ inherit synctexSupport;
};
zathura_pdf_poppler = callPackage ./pdf-poppler { };
diff --git a/pkgs/applications/misc/zathura/pdf-mupdf/config.patch b/pkgs/applications/misc/zathura/pdf-mupdf/config.patch
deleted file mode 100644
index 6445fab2298..00000000000
--- a/pkgs/applications/misc/zathura/pdf-mupdf/config.patch
+++ /dev/null
@@ -1,17 +0,0 @@
---- zathura-pdf-mupdf-0.2.7/config.mk
-+++ zathura-pdf-mupdf-0.2.7/config.mk
-@@ -32,10 +32,11 @@
- OPENSSL_INC ?= $(shell pkg-config --cflags libcrypto)
- OPENSSL_LIB ?= $(shell pkg-config --libs libcrypto)
-
--MUPDF_LIB ?= -lmupdf -lmujs
-+MUPDF_INC ?= $(shell pkg-config --cflags mupdf)
-+MUPDF_LIB ?= $(shell pkg-config --libs mupdf)
-
--INCS = ${GTK_INC} ${GIRARA_INC} ${OPENSSL_INC} ${ZATHURA_INC}
--LIBS = ${GTK_LIB} ${GIRARA_LIB} ${MUPDF_LIB} ${OPENSSL_LIB} -ljbig2dec -lopenjp2 -ljpeg
-+INCS = ${GTK_INC} ${GIRARA_INC} ${OPENSSL_INC} ${ZATHURA_INC} ${MUPDF_INC}
-+LIBS = ${GTK_LIB} ${GIRARA_LIB} ${OPENSSL_LIB} ${MUPDF_LIB} -ljbig2dec -ljpeg
-
- # flags
- CFLAGS += -std=c99 -fPIC -pedantic -Wall -Wno-format-zero-length $(INCS)
diff --git a/pkgs/applications/misc/zathura/pdf-mupdf/default.nix b/pkgs/applications/misc/zathura/pdf-mupdf/default.nix
index 2b74fc21b8c..b8f75b7151f 100644
--- a/pkgs/applications/misc/zathura/pdf-mupdf/default.nix
+++ b/pkgs/applications/misc/zathura/pdf-mupdf/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, lib, fetchurl, pkgconfig, zathura_core, gtk, girara, mupdf, openssl }:
+{ stdenv, lib, fetchurl, pkgconfig, zathura_core, gtk, girara, mupdf, openssl, libjpeg, jbig2dec, openjpeg, fetchpatch}:
stdenv.mkDerivation rec {
version = "0.3.0";
@@ -9,13 +9,15 @@ stdenv.mkDerivation rec {
sha256 = "1j3j3wbp49walb19f0966qsnlqbd26wnsjpcxfbf021dav8vk327";
};
- buildInputs = [ pkgconfig zathura_core gtk girara openssl mupdf ];
+ buildInputs = [ pkgconfig zathura_core gtk girara openssl mupdf libjpeg jbig2dec openjpeg ];
makeFlags = [ "PREFIX=$(out)" "PLUGINDIR=$(out)/lib" ];
- patches = [
- ./config.patch
- ];
+ patches = [(fetchpatch {
+ name = "mupdf-1.9.patch";
+ url = "https://git.archlinux.org/svntogit/community.git/plain/trunk/mupdf-1.9.patch?h=packages/zathura-pdf-mupdf";
+ sha256 = "185wgg0z4b0z5aybcnnyvbs50h43imn5xz3nqmya4rk4v5bwy49y";
+ })];
meta = with lib; {
homepage = http://pwmt.org/projects/zathura/;
diff --git a/pkgs/applications/misc/zscroll/default.nix b/pkgs/applications/misc/zscroll/default.nix
index 4d9197c8fd4..92d173807f9 100644
--- a/pkgs/applications/misc/zscroll/default.nix
+++ b/pkgs/applications/misc/zscroll/default.nix
@@ -16,7 +16,7 @@ python3Packages.buildPythonApplication {
doCheck = false;
- propogatedBuildInputs = [ python3 ];
+ propagatedBuildInputs = [ python3 ];
meta = with stdenv.lib; {
description = "A text scroller for use with panels and shells";
diff --git a/pkgs/applications/networking/browsers/chromium/common.nix b/pkgs/applications/networking/browsers/chromium/common.nix
index 4f4fbb8d3bf..997551f3fae 100644
--- a/pkgs/applications/networking/browsers/chromium/common.nix
+++ b/pkgs/applications/networking/browsers/chromium/common.nix
@@ -57,7 +57,7 @@ let
use_system_libevent = true;
use_system_libexpat = true;
# XXX: System libjpeg fails to link for version 52.0.2743.10
- use_system_libjpeg = upstream-info.version != "52.0.2743.10";
+ use_system_libjpeg = versionOlder upstream-info.version "52.0.2743.10";
use_system_libpng = false;
use_system_libwebp = true;
use_system_libxml = true;
diff --git a/pkgs/applications/networking/browsers/chromium/upstream-info.nix b/pkgs/applications/networking/browsers/chromium/upstream-info.nix
index 073d7574502..55cc35c2592 100644
--- a/pkgs/applications/networking/browsers/chromium/upstream-info.nix
+++ b/pkgs/applications/networking/browsers/chromium/upstream-info.nix
@@ -1,18 +1,18 @@
# This file is autogenerated from update.sh in the same directory.
{
beta = {
- sha256 = "1sgfwh2b0aw6l5v4ggk7frcy306x3ygxk81p3h6zdy5s1rpf8hxj";
- sha256bin64 = "14qj8l5dapha87ndyzcs3spaxp3s9sapcjcplkisbivis09a29cb";
- version = "51.0.2704.63";
+ sha256 = "00dll63b3z1ijj60m0h8y2ydmkf91hyr6h98rqp21w11c2xbwzis";
+ sha256bin64 = "1cdfvi5af18mlhn2ax3shsdm4p4jkhs29v3d2gmkyldfvvixh3zc";
+ version = "52.0.2743.41";
};
dev = {
- sha256 = "1bbwbn0svgr2pfkza8pdq61bjzlj50axdm5bqqxi51hab51fc9ww";
- sha256bin64 = "1s02q72b84g9p5i7y1hh1c67qjb92934dqqwd7w6j0jz8ix71nzc";
- version = "52.0.2743.10";
+ sha256 = "1pzcabdk7d9p4sc8wdpwvji9xvblsihpimnjh6n2jz5al9sm1q8j";
+ sha256bin64 = "0k84hy4sj03h5bjciigagr83qf7yss22vj21fivgkvgasdmd12m8";
+ version = "53.0.2767.4";
};
stable = {
- sha256 = "1sgfwh2b0aw6l5v4ggk7frcy306x3ygxk81p3h6zdy5s1rpf8hxj";
- sha256bin64 = "1kjnxxf2ak8v1akzxz46r7a7r6bhxjb2y9fhr1fqvks3m4jc5zqw";
- version = "51.0.2704.63";
+ sha256 = "0aypf5lhi2l7cn41xhq2ck6bjblapwv26nygvg2883hhqinmnwvn";
+ sha256bin64 = "1c1796sd82l480xjdw7w46867w2phw3ng2dvdb6njsvpg299chi8";
+ version = "51.0.2704.103";
};
}
diff --git a/pkgs/applications/networking/browsers/conkeror/default.nix b/pkgs/applications/networking/browsers/conkeror/default.nix
index abe3a071138..4da4c74d1c3 100644
--- a/pkgs/applications/networking/browsers/conkeror/default.nix
+++ b/pkgs/applications/networking/browsers/conkeror/default.nix
@@ -2,13 +2,13 @@
stdenv.mkDerivation rec {
pkgname = "conkeror";
- version = "1.0pre-20160130";
+ version = "1.0.3";
name = "${pkgname}-${version}";
src = fetchgit {
url = git://repo.or.cz/conkeror.git;
- rev = "3e4732cd0d15aa70121fe0a0403103b777c964bf";
- sha256 = "1299b1kdfd2vip3w02jzvj2i8scjpsvpx19d2c8ms2pizz7xxmp4";
+ rev = "refs/tags/${version}";
+ sha256 = "06fhfk8km3gd1lc19543zn0c71zfbn8wsalinvm1dbgi724f52pd";
};
buildInputs = [ unzip makeWrapper ];
diff --git a/pkgs/applications/networking/browsers/firefox-bin/default.nix b/pkgs/applications/networking/browsers/firefox-bin/default.nix
index 26030e33e48..e9f6f816be5 100644
--- a/pkgs/applications/networking/browsers/firefox-bin/default.nix
+++ b/pkgs/applications/networking/browsers/firefox-bin/default.nix
@@ -42,12 +42,9 @@ assert stdenv.isLinux;
let
- generated = if channel == "stable" then (import ./sources.nix)
- else if channel == "beta" then (import ./beta_sources.nix)
- else if channel == "developer" then { version = "49.0a2"; sources = [
- { locale = "en-US"; arch = "linux-i686"; sha512 = "45dad182bf7a4e753c1be6b8f966393a06531e7b5530238d20cb67b26324e8f5d0eeec983a0855418f31187d3ae508c28810ab86269848b4e48ab2ca3b5d21e7"; }
- { locale = "en-US"; arch = "linux-x86_64"; sha512 = "cfcbfc633b51612a62267c8a1afc25af212eb832d1fa876a1ffd82421e9378f96b3ac1488446f804518290abd99c21c9f10e4d0e0f699432aeb74b63305d7edc"; }
- ]; }
+ generated = if channel == "stable" then (import ./sources.nix)
+ else if channel == "beta" then (import ./beta_sources.nix)
+ else if channel == "developer" then (import ./dev_sources.nix)
else builtins.abort "Wrong channel! Channel must be one of `stable`, `beta` or `developer`";
inherit (generated) version sources;
diff --git a/pkgs/applications/networking/browsers/firefox-bin/dev_sources.nix b/pkgs/applications/networking/browsers/firefox-bin/dev_sources.nix
new file mode 100644
index 00000000000..f43810d53f0
--- /dev/null
+++ b/pkgs/applications/networking/browsers/firefox-bin/dev_sources.nix
@@ -0,0 +1,12 @@
+# This file is generated from generate_sources_dev.rb. DO NOT EDIT.
+# Execute the following command to update the file.
+#
+# ruby generate_sources_dev.rb 49.0a2 > dev_sources.nix
+
+{
+ version = "49.0a2";
+ sources = [
+ { locale = "en-US"; arch = "linux-i686"; sha512 = "85c4289e561d2246f96a05e3b8df011337984b9f176670826a705c2cd68a1284056ba507e4b6e4887595bf37f25386d9f7b28a20bc1f125865b9fd7b8be17eaa"; }
+ { locale = "en-US"; arch = "linux-x86_64"; sha512 = "2bf9518dbfbb48348f74929c19d03e8daf51020bf9ba6db577a202b6e98ad7ffb9e9a0b4ca92af010cd3f864ae84940b65438f4230e6de3165f72e4e7280086d"; }
+ ];
+}
diff --git a/pkgs/applications/networking/browsers/firefox-bin/generate_sources_dev.rb b/pkgs/applications/networking/browsers/firefox-bin/generate_sources_dev.rb
new file mode 100644
index 00000000000..37d5569efb0
--- /dev/null
+++ b/pkgs/applications/networking/browsers/firefox-bin/generate_sources_dev.rb
@@ -0,0 +1,53 @@
+#!/usr/bin/env ruby
+require "open-uri"
+
+version =
+ if ARGV.empty?
+ $stderr.puts("Usage: ruby generate_sources_dev.rb > dev_sources.nix")
+ exit(-1)
+ else
+ ARGV[0]
+ end
+
+base_url = "http://download-installer.cdn.mozilla.net/pub/firefox/nightly/latest-mozilla-aurora"
+
+arches = ["linux-i686", "linux-x86_64"]
+locales = ["en-US"]
+sources = []
+
+Source = Struct.new(:hash, :arch, :locale, :filename)
+
+locales.each do |locale|
+ arches.each do |arch|
+ basename = "firefox-#{version}.#{locale}.#{arch}"
+ filename = basename + ".tar.bz2"
+ sha512 = open("#{base_url}/#{basename}.checksums").each_line
+ .find(filename).first
+ .split(" ").first
+ sources << Source.new(sha512, arch, locale, filename)
+ end
+end
+
+sources = sources.sort_by do |source|
+ [source.locale, source.arch]
+end
+
+puts(<<"EOH")
+# This file is generated from generate_sources_dev.rb. DO NOT EDIT.
+# Execute the following command to update the file.
+#
+# ruby generate_sources_dev.rb 49.0a2 > dev_sources.nix
+
+{
+ version = "#{version}";
+ sources = [
+EOH
+
+sources.each do |source|
+ puts(%Q| { locale = "#{source.locale}"; arch = "#{source.arch}"; sha512 = "#{source.hash}"; }|)
+end
+
+puts(<<'EOF')
+ ];
+}
+EOF
diff --git a/pkgs/applications/networking/browsers/firefox-bin/sources.nix b/pkgs/applications/networking/browsers/firefox-bin/sources.nix
index 8c9d08343d4..337e6573309 100644
--- a/pkgs/applications/networking/browsers/firefox-bin/sources.nix
+++ b/pkgs/applications/networking/browsers/firefox-bin/sources.nix
@@ -4,189 +4,189 @@
# ruby generate_sources.rb 46.0.1 > sources.nix
{
- version = "47.0";
+ version = "47.0.1";
sources = [
- { locale = "ach"; arch = "linux-i686"; sha512 = "92a2932972df78069004443cfc09333fe61cbd2d26cdd364591d9351a38d4174bca93060dbc8622a22babf3e84a8981dc03913f5196dbe8073b3e879fd1d4228"; }
- { locale = "ach"; arch = "linux-x86_64"; sha512 = "84d86ebf8df0734b83ef8ecc1c3571b9543a6a13a39539fdc73b2f1f12dcd0ae77cdd322f887babd4e4370d40e493f86c424d94785c9ef94ccf28e9acfffeafd"; }
- { locale = "af"; arch = "linux-i686"; sha512 = "d36fc79b5c26d8eaca7b24ad88808d63c18a6b8a77e8406461cdf31f992f123137c38acc5946fa810f427d7ceb3db492fbea0e2a6bbaa7c92d98eee84a33209e"; }
- { locale = "af"; arch = "linux-x86_64"; sha512 = "3bfed126d572730d2a454380030ce3ebd8caf6e0363eb67324a29ac643af7a62ff23f076df2830072a54535b9b6e37a6856aa8676d08ca652f98247b710cd2ed"; }
- { locale = "an"; arch = "linux-i686"; sha512 = "7a65b66e0fb5903d78d619bbf457df82365b833f22b47823c0f2c894053ea2f2c034eca15fffaa8cd9d3f5e5b07a8cbce888bc7b5857925fbbf6a29ce2b089da"; }
- { locale = "an"; arch = "linux-x86_64"; sha512 = "5b1efef3e7890f8bf58408bf27247bbe6fd92e3f6b170cd1963b6df08bc7ee1a145a8213f0cd950bd4b65c8a7d5671cfa71eb121a7dffece2ee038c654c0b95e"; }
- { locale = "ar"; arch = "linux-i686"; sha512 = "ea79296637247369c781cebecb6f779a7b7f106a664171e5cab4c33de14a1c5ab0a46f728bd8f5d45c81b6e4655cdf91cd9488035c8fce9b340e31ea97666aa3"; }
- { locale = "ar"; arch = "linux-x86_64"; sha512 = "7419e5db20d2a733ad499d161be71804bf42e059787e32a1c87e976f168591b7c379c8f5c22a39350c6fbc04a62436de141448b2c2567e8dcc360e76a8a02624"; }
- { locale = "as"; arch = "linux-i686"; sha512 = "b23ab0f326a2a30da54989e4fababbd39b49d64df3d49bad049ad44d68209354d0bf79380916b80c9441d87826a8cce4e644965427f3b4803f443d61b6f12dab"; }
- { locale = "as"; arch = "linux-x86_64"; sha512 = "05026ebfa2a478c5641822ceb37395360699e9dd03114a60e8af5fa0ef50a94e0dc582a8a5ca1e7f4dff035e049cee15959b4ff3b312b53ea3129ba752ab01c1"; }
- { locale = "ast"; arch = "linux-i686"; sha512 = "3b3096e551400d8daaeeffe04f1fb75657257b3cd30fa6a689683474382de4f669b67f39106f2b3858ca08c2aec5f3d7b67cd27f24c706ad5412623fe7c7c9b8"; }
- { locale = "ast"; arch = "linux-x86_64"; sha512 = "7639a47e56d9f07d2e6a64dc580e1df0282246d8f6f92b9620bc9ba1d8de14aca7889902e898adecbe16a4eae882710e6bfef807831351c0d003a75f5021ac5b"; }
- { locale = "az"; arch = "linux-i686"; sha512 = "bc9ddf38b3fc883e24e0a78b50209e3d790a7cfd5e2c466a4625faf45923bd7c0c6ed31d877a0bf74d8f99fe08068dca4879bc895b685c93b4783f6da6641533"; }
- { locale = "az"; arch = "linux-x86_64"; sha512 = "eca5c5c1fdc9d45669821a10491d4cacbcddf1336d3efa33c95bbfd9242e5484afe468dd7c69173bb33ee7ce154bd504ac66b53c5b03f8370b5de33c99d516d4"; }
- { locale = "be"; arch = "linux-i686"; sha512 = "23a6d5384d01bc91ef4241953ca901ca0bc49bce070c8dd1b9fc2423e6713209368b2fffdc3253c24cb99f626ea30491468a50e200dcbd975e6a35b4312a92db"; }
- { locale = "be"; arch = "linux-x86_64"; sha512 = "eb3dd4fdaef8bed4abe363b99e3bf2d989bd5df4a919d863c92bb4bbbc1aa65feb9271d25c21b6330ea94d0ef8b40c1720bc562655fc7b7dd3e7d214a6362569"; }
- { locale = "bg"; arch = "linux-i686"; sha512 = "00c8bf5cbcb3d03e6cb80cbc011d04170c826a144d12c197a362a0f64df68a5e42ebe7305fde503c0ccf1c36265599ae0a63cdef45490ede7bbe41beb99320aa"; }
- { locale = "bg"; arch = "linux-x86_64"; sha512 = "4f378f3ae84c7ef5a6a70a97a8dec0911fe88838433e83dae36a3ec40446ae23f400145e684dcf3a4ab1f9fd8c5ea88e1526d478934de4a916fa67cc3be5d032"; }
- { locale = "bn-BD"; arch = "linux-i686"; sha512 = "075d87f42ce552381d2132cf92391eead6cb79b8c2068706e4e63fdefd2964cd0f26153bd9c0cf0702491d0f1d96f1eb35d6fba1b6e670d7280507a7a6f5e2d2"; }
- { locale = "bn-BD"; arch = "linux-x86_64"; sha512 = "30911670c47f75fc73d295d63d3531c30f61be17356f13adf69457016a77041667b84ce978b7d3fa0743fd5bf9576d0cd64b9c2cddc7413c38b149191330dd88"; }
- { locale = "bn-IN"; arch = "linux-i686"; sha512 = "646bf28020d7532c100d8323529dd8410ea3e5d918f66fc2d9b5daf7217a8f105d9498ddec302afdef5971f2c9caa54fe491b8c677f375590a55ef0e764b2160"; }
- { locale = "bn-IN"; arch = "linux-x86_64"; sha512 = "9c9ef3e941dcdfc1dd1e6a8ab81b3735b71907c0e3c45e2ed0369d541f850fc7f200170ae2adeb0068e375417e7fb5ff28af9b43d53b6245fea7b7c2c83c5088"; }
- { locale = "br"; arch = "linux-i686"; sha512 = "8bc59c85a617fa0a07968597ffb72654fc714c78165318032cd229cec60310bc6e9a31ffa7c4d96c57b9b09e5623f324dcb753f127f11f68b70b9eef2e920c32"; }
- { locale = "br"; arch = "linux-x86_64"; sha512 = "725c98dbe60e48e24ba41c36930f67788eabb0bff3fdb93f9a794b36426147dc5a0e8250b1a81913a31beacf13541a06e53f626626c9e2fb94a46e8bf9346cec"; }
- { locale = "bs"; arch = "linux-i686"; sha512 = "370b497ead2e133d90d0a5ebfb76bddd806134c2bba4ced17e817a46c04bf39e366b646d58a59f7163ef9916072032e6657af68489645ba8e48559eed4596f28"; }
- { locale = "bs"; arch = "linux-x86_64"; sha512 = "2f3ebfd18e9dfed7170180e3560d3fffc7169da6c0159d4abac01d9efa5974c1b2eb027a6cb8ea48ecd1f300dbd0b65943eab5b703d4bc2a605e35c87c791fd7"; }
- { locale = "ca"; arch = "linux-i686"; sha512 = "ec9f844e8c2ed13afd2d123e88de8a83ab3b166cab1aaed841b5c5910e816148e6085bd4b3eae5027cb5071ff8b90cdc9807c563f77138ffa48978fed264adcb"; }
- { locale = "ca"; arch = "linux-x86_64"; sha512 = "f4cb217879e96a094f87f58c6b46a992d106c4587e58331799d5ac5c5cf21b8b438477d56b9f9428aa4540b8d2eeb4fd4f79bf527d5826877f1b8813c55051f3"; }
- { locale = "cak"; arch = "linux-i686"; sha512 = "f7d0c195394221a256ac9eb6de074bf317f5c4fd08d8a93ce551ed2062761e0e13f3d61f9c7ff3f64b5f4cd26dc80c2c09b05301d56138e5db56796eca78ab0d"; }
- { locale = "cak"; arch = "linux-x86_64"; sha512 = "7148d683c950041db3eee355a978f86325a1849bd082c6c33c32fa76ce4bbe2e26e2aef48032cbf42867c90c994383e59d2c34728371007a6b0072ae6e8d225b"; }
- { locale = "cs"; arch = "linux-i686"; sha512 = "f22232a3f5177d6538ab43130dbb0601f3fcb329d77b25ee3929a698c1104d7c966aa3652e33bb47307ced861a709031993e2e0e91c2c80902cd607db8473595"; }
- { locale = "cs"; arch = "linux-x86_64"; sha512 = "00eac002d4c2629b7f0e379b3d6266a791392d7587d39b28bfb155d9b2d2add4332deb4a6d587deb274e087cd0d21553eb3133cbbc423a102e831cbe7d329306"; }
- { locale = "cy"; arch = "linux-i686"; sha512 = "641048f0cc8f80d2af907ed9ce4c35ee3ca5bc587df6b5240dcbcb9a2831f412855d5c68daf8c295a3e10c212c1282eb1f25a860a9330ab30f3b14e7537a23e9"; }
- { locale = "cy"; arch = "linux-x86_64"; sha512 = "b9a0f3316f1498991b2f9a721812221052832eaf3861a3bd818c3780f7a0ba93d424d8614f8eb3cace9158a954747d56958dbf482dc3661f19bc2df1d2b1dd12"; }
- { locale = "da"; arch = "linux-i686"; sha512 = "01492735fa343c20eb58af892c93016affc608af2f09f3ac239c29540d7b6c9d886dbf12aae00b60a97a1a53c0a55db4b62fc271e41241710226a25c791b40c9"; }
- { locale = "da"; arch = "linux-x86_64"; sha512 = "e2386a3b7edcdb082502506d166938216b9138870e93786fbb2c2331f1a8782ee7cfc9ad5f7c4d7a6147701d34a451069f677ad56d64cbcb05a9c963f3a7d8e3"; }
- { locale = "de"; arch = "linux-i686"; sha512 = "f287674bd825c0c829a19b7e3a6d54f0a12a882cb9b9fa95cdd5c032fd8a859b0d387115d8b9636592328c4508ca445133a08db3b6fde896cf6ba146e490d851"; }
- { locale = "de"; arch = "linux-x86_64"; sha512 = "2b1ac26be4020d8ec989eb6678a10d293569f53d0a20fba1210cb788792a4b545eb6ee6d6979635ed55d78d493946f3aeb254bb73cc23549062e92f924dd25f5"; }
- { locale = "dsb"; arch = "linux-i686"; sha512 = "e4ba2166cdccb6d13bee503021e26b240cdeae94db2536892e8171b2d07ca7744dcf8d428ce70d04c9d1d4938793301a8bf67d8549d25c9b464be64c0d0a2b81"; }
- { locale = "dsb"; arch = "linux-x86_64"; sha512 = "f778140b07658aa55ee4646f3362300b4967dc4a6a96188915af9dc67899b0587f500dec646614f829bdd3d713f17b0286984919bd6a1b25c6d7028990d2b6d3"; }
- { locale = "el"; arch = "linux-i686"; sha512 = "0c387507189de21329cebb7959cae4c5ee29339d3dccd9a4c5b216425e19a12f4fa05a73369d66fda4f02239f4a36722cf6ec7ebba9ffaaad2344346b1004aee"; }
- { locale = "el"; arch = "linux-x86_64"; sha512 = "8035059db6fd46153e11335b5feeb782b54ee9bad07ac0ff5e605b00a1af9948a0348b927dceab740ba74905e592cace164c0c08786afef210bbf3c5f3d0169b"; }
- { locale = "en-GB"; arch = "linux-i686"; sha512 = "0f31c9b6011ff83e0df95f0478b2eb3c58a1b2ca6a2120658543b73a61d2e88440bfa4bc3f3167c4580b597fdcfcc3434934f86774486458b860568f5cd6e5e6"; }
- { locale = "en-GB"; arch = "linux-x86_64"; sha512 = "d1c3f5695dd32c899b2ae9cbc386724d80738b12d525be4e0119bcf4909863991f96c384b26599e30d503ab4ee6252b2df6fb49ff8e7b9fc5c4e655e2d5dfec7"; }
- { locale = "en-US"; arch = "linux-i686"; sha512 = "ddc441efc3f8892cc4473a4398fb30e616ea09fa1f1ca3a53a5cb4e645a4501a1625e2381569414422c1754710531a4c4e3f49c755d3b42245dbe5e852e61bfc"; }
- { locale = "en-US"; arch = "linux-x86_64"; sha512 = "42b8e0c557319a51316c96c85d5cdbe68b8c54c01720ea3b2f65d484706bc82de10313dd6d158baf47112282193c475c5cdedc9429c365ec49f0f9534ab341b1"; }
- { locale = "en-ZA"; arch = "linux-i686"; sha512 = "4f01137b3511db5c99d3dd9f9e6ebcb36109c808bb23400e628b19234d6b8d57a24d5442c30db70e4afe64424a635422bb433f63e3e5c565eb8a4ecfc0730adf"; }
- { locale = "en-ZA"; arch = "linux-x86_64"; sha512 = "eca31919b9742b9f0ce8e0be04db3a71c52a5956966343012ce5d334409b3dc5612d417eabf2f06dca89e148a481f170cfba1e43c7cff231f12be1cf0dec5a2f"; }
- { locale = "eo"; arch = "linux-i686"; sha512 = "14ad428fbdfec786d7e12fc9b8c60a3d539e48f8eb4161014759345139d7b1662ea210ae2ab3c0ce1bbbf2d1ccd34c384228294f52cfb5895bd6bf0b0741f4a8"; }
- { locale = "eo"; arch = "linux-x86_64"; sha512 = "ebec08ec12ab13150f677bb53441dc1fd1ed320ca53531a59548f22b68a0af8463d69ddfc222b8d3f7817299c2e825eb3b9ef12177f545add9a54ee8f74d0be9"; }
- { locale = "es-AR"; arch = "linux-i686"; sha512 = "07d86bbbd1ce48268eee9e7cde42b31c426441012b3afcdd56e479278e3a94165aed3577a27f102114516bea2e79f9c1ca74d87b0e3e65dfb94413bff86337a9"; }
- { locale = "es-AR"; arch = "linux-x86_64"; sha512 = "35c91fde1523b22a5cad3ef975912b49a3713b3f7845b0f99e317f6226687e2ca4fc74f39b53f45f1a65b53c85364d03c9549889dbb3f4ecc921e354640e36a9"; }
- { locale = "es-CL"; arch = "linux-i686"; sha512 = "9098c0da3ccbedf8257fd35171aaac912e071ec9f71c0f88b869599e479552c58733f5b2b911a83efa2bdff39801c61b8652be4dad45f339b7a1a5206235d1e9"; }
- { locale = "es-CL"; arch = "linux-x86_64"; sha512 = "176eb04bb057b775d9826a00fe2862c2f529397d11f19d5f74ef8d39773e4da1fa6ef0463803630f2720235febf2ede8b48af3e9fa11cc8e22e93fda5a817feb"; }
- { locale = "es-ES"; arch = "linux-i686"; sha512 = "673f824cdc235ef8e80b1671ef7915bd151a11d9a2923d1541caafe0e3cab87fa3935259289a369a3ab4242cc248552e2353e964c09251c6b3bea6696c00788b"; }
- { locale = "es-ES"; arch = "linux-x86_64"; sha512 = "31646e64273b98fb8cdbb104be8bc16d4e643f2b2ab0f837ffa581400e3aa252b4327ae4eb22f8128427410f73710a58d877bb0a6c6942e627be59f90eda2c2f"; }
- { locale = "es-MX"; arch = "linux-i686"; sha512 = "90e763b7d0ffbc6392fe7797a1d2346aea6786d299f5dc202436a839617c974d3f362f4b971d8b89316da47ff1c68a898ef17efadd4582556cb35fe395888bc4"; }
- { locale = "es-MX"; arch = "linux-x86_64"; sha512 = "cf1a92b03a5e761c7d32558a1b022a7d02f404fdc40342482d5c20cf529cfebd4fbce1bb2ca0ae25c0ec9cadd467acef8df8f2b8013bbd8ce8f0cb7bc1bb7cd2"; }
- { locale = "et"; arch = "linux-i686"; sha512 = "1a7cff9b68f910d612eabd03c55e766f3cdd159a6f81e422144565bf93f267780249bd26f347667e5cb746810cfe5b54e0ffdd860fa0b285b1218919fc89da11"; }
- { locale = "et"; arch = "linux-x86_64"; sha512 = "fac08053004c7db0f18195846f8fa2f272dc66a3091f51e54764255b2abb34649482bbcc1cb6d3dafc3fd5f1bd352504e7edfa06260cf4604c7870fbbc14282d"; }
- { locale = "eu"; arch = "linux-i686"; sha512 = "fe3f9f749735e7b80db6909ef6fbb0074a6773d1835c1e41c9ae652b89722b3ce800462380bfdf07806042a195df496642e6e61277038bfa15e18f8495228ef9"; }
- { locale = "eu"; arch = "linux-x86_64"; sha512 = "3a2da4ab5d1e453e0fec7aae68fc89e43618743a9ff492214f2ae2ccde6d427a2d5d7f7dba3d5e9a2cec2a129a207da53fb7681bea4705ba0752aae27d069914"; }
- { locale = "fa"; arch = "linux-i686"; sha512 = "3440957701b88cc09320bdd2f142f416ba0a1d87290ca5b46e025cc1fe314bb4ce148f510b8bf517276389d995588d1acc818469466967c777a285ce03810610"; }
- { locale = "fa"; arch = "linux-x86_64"; sha512 = "a9a7932c9fa3b5ea200ed848f310690de265fb19e691e41c4eda71e8611bd5973b85e6d6856408311861c8f06ea25b09dece55e5f220df6734488c20c6bf28c5"; }
- { locale = "ff"; arch = "linux-i686"; sha512 = "f38ddf40a6682a03f1230a3295dc426790442694f55dae23e0be1b6a4cd844d54efb13f84abfd27fc3d798aad9921bd01167afb55244f9ebd24606246a8875c0"; }
- { locale = "ff"; arch = "linux-x86_64"; sha512 = "8d321bc31fae8eb41f48841cf26cacc5ec43042e43609a085cebc8dab05da909def1e26f5fdaead33bc5964dbe6580167e0d518e2fdba558da41fdd1f8badf05"; }
- { locale = "fi"; arch = "linux-i686"; sha512 = "94795ea0110d479e9da0b7adaab6513f01d53ce131f78b8092b1e1d9964736eea9be8430f409d511c10da89d09bcb09b728499ac097310d326778c8f9ad17f8a"; }
- { locale = "fi"; arch = "linux-x86_64"; sha512 = "19eee17211938da6fec59b2b665eb3bd27bfddbc21f7b5e86d63e96902234255c72365ad1299542caa0d59400c96e307f4bed7b87aeeefeaf717d24e39372234"; }
- { locale = "fr"; arch = "linux-i686"; sha512 = "8ec0ef5d8273bcacc9f02393eb4376dd2ac441789fd269912bd06b153dc8f93a0472c86d1d5c2978408ddee218ee471fa4ea7d48a99274d4f1d88372a3ae5df3"; }
- { locale = "fr"; arch = "linux-x86_64"; sha512 = "6104bbbe8570685e071d51f6cef1ed20309b7a79390e97a9af54db5c745082ac742a5d3018925d338503ee0bf2f22aea6b530eee4ab3f9ae8067f473ffc9485a"; }
- { locale = "fy-NL"; arch = "linux-i686"; sha512 = "b0eff69223d7f2fe3bf023a72156083333dcabbd27d02d62f04088c51b987c360953649bf9d82a886925c07df66663f41ef0c27270ff75c2fc7146f824eb68a8"; }
- { locale = "fy-NL"; arch = "linux-x86_64"; sha512 = "b486989c8c3d19864db6ecf99c49af8385a0b61ae4e354593a0dd967a01a14db9fdb496e9cdb914b760a6efe0801469c903c0eb74b924bd143cceb5efe57cbce"; }
- { locale = "ga-IE"; arch = "linux-i686"; sha512 = "7a160052680f7a9c2950cb505b9705d8b71d997ac22adae105e1bebced242d7808ce0f10c8bdb2f7b35be4bb0d0b486d24469919d45b9c946284966024ea0924"; }
- { locale = "ga-IE"; arch = "linux-x86_64"; sha512 = "6c1806c6ae06ab138259a6c2b5d19c7e6c94fc1f96f82646ba03aca9b4ba8a35333777add20b9fd3949056c151f24da33068a135fe2c234e3e59a6f264245ddb"; }
- { locale = "gd"; arch = "linux-i686"; sha512 = "c516e888ffef6549b6fab1b1795185c296c22f4b5a39219f98b6e0de6df2ab8480a9386f47267ba97a6683f52011b8deecc2ffb24dcf00d63e420a1e8deeb395"; }
- { locale = "gd"; arch = "linux-x86_64"; sha512 = "8379b6210a6fc65b6809ae7fa17ddd913e124742709681f3d7cd35a2e978ddd779f7482f83640f766db91c007530535f6ba4136212454314e66d904ef5d1ef0c"; }
- { locale = "gl"; arch = "linux-i686"; sha512 = "b94883d5676116941a08f0df42f0fde4adc5346165eec2d13998e99950ebb895f83050947ab4a5aaaad9c08040402923042f3d555f15b754241cf09148339092"; }
- { locale = "gl"; arch = "linux-x86_64"; sha512 = "272b2f8361cfcb22ef8365954b0ce4a4fe7146b94785f283558262df95674d4c43df4f3cf4527c54112588bfdfa69f88f14b4bbca653d72bb1e4e9425a7523d8"; }
- { locale = "gn"; arch = "linux-i686"; sha512 = "2f4513301c628bb209ab086ac1a956934cff334dc9905c1bdf1360695c391f67c5adee2fbfc41f80f19691acb9943bebb8b343fd540d428226e8314ef91ff983"; }
- { locale = "gn"; arch = "linux-x86_64"; sha512 = "abce4d14340909c1e08f76d66f32b2833029c3a02a0815ac0091946361495ca5c30f6d7270426e9fe69286404294af6575af83b1078c7b226822eddcdde0957f"; }
- { locale = "gu-IN"; arch = "linux-i686"; sha512 = "9d60dfa7b114c4a65da19f1cf153e178ea99097ba7f3af6db0b62651a5e71d2bc7e7cf499bc37e78c6cd6e58774364e4a628f43a47b70f54dce8f14df8be6b43"; }
- { locale = "gu-IN"; arch = "linux-x86_64"; sha512 = "747161f8fff06b3a7bc18842fdbf7b5e2c9744d379ac4d0c0162797c0a09a155a62eea2c8e8dbec45776a16a7f99ec8bd770d5f8e6248a45b85074045afcac39"; }
- { locale = "he"; arch = "linux-i686"; sha512 = "cfbc9521be480014bec73b69dd7c605d65a96c7ed881b384501c70280655c4c0661ad764195d289b422dc19da370492762ab40269fd5a0ce5377781f9d6be18f"; }
- { locale = "he"; arch = "linux-x86_64"; sha512 = "7ef7f3633a54e9b5daab32e410df1b9d9abdbf753585dcbfc92aae8f4b15fc6695fb745ce552e7a62b74ad83b9b3ab729b8d74b159c9103a057a168457d25c4d"; }
- { locale = "hi-IN"; arch = "linux-i686"; sha512 = "95eda3ea3b56384800639d1c7071d2684d4cacfdf6d1639e311f5ffa215fc08952e12a33cab60c44092b7a7756388390afa3d41a41c27e1e0d0c5a713ae54c2d"; }
- { locale = "hi-IN"; arch = "linux-x86_64"; sha512 = "af60392fe55b23cb8763a18ebea264cf8867388eab59ea1707f7b27056ce4b9ef5ab68406ec5ea2b50d27787fb3dfe3d18bdf925ee0c27c09d3429a6eb011a39"; }
- { locale = "hr"; arch = "linux-i686"; sha512 = "d4c9152e1c69d61cbb77343c7b1f0678ba5698a5c9c367f7dadce3c4218d073f5cf7daf606e140298ab862c33bf2bca051f9dbb3fba0938562ad07afe57bbb9e"; }
- { locale = "hr"; arch = "linux-x86_64"; sha512 = "4ff85cb022ebd2433971abf54a32fbf4c8ce0ca21171e7f3a398e50d18ba4f43f7ab3be305ff2c4cef5dd08ef7577202003182347b46d461b7d4828f51e5e100"; }
- { locale = "hsb"; arch = "linux-i686"; sha512 = "50648eac33c88a4d408a15c077c8b2b09c5250628c1cda4007756e437c578438193777ebd465bf81a76a10dd27a49d1887b69d5ed3bbefe0ba196ef5f144323b"; }
- { locale = "hsb"; arch = "linux-x86_64"; sha512 = "631fe11f0764c3d039c18c4154b0099a43ee432b294466fc43e7f842cf63ea8ac5a4e15f44a57ab28e7250c03787b9ef18bbc36abbec21a6cfe9de58367f9a4f"; }
- { locale = "hu"; arch = "linux-i686"; sha512 = "5deee7e35c7bb3988eb44f3c7882e587beea64e075b2dee824d0e7bc4555d5086302afa97a845f7f0980046e3798f2e2425782e51b26e7f805b907b0512539c8"; }
- { locale = "hu"; arch = "linux-x86_64"; sha512 = "1745e3daf78707c85e59fa404f2acee9899d84e9dd757a7fc0ed7e523a2f0cfedc6a48d8b65723a89e4e956135d67b8d7a8448b03e5f9ab8f2480a552713e93c"; }
- { locale = "hy-AM"; arch = "linux-i686"; sha512 = "0b9ef751c0c1881195e453521478c48d01adb303ea04758d450c48a6895dc6b8ddd5cd3502fe86cf1a3dbabb2ada9c5684a3330e8a7ce47a7b902c9b00651666"; }
- { locale = "hy-AM"; arch = "linux-x86_64"; sha512 = "048e01c8981064c5f692c0f3a76fc0c67d01155b503813599787b8d17c44133ff554ae84ab82612c00cfcbda631e3c01d22ea93e51842594d67ddcfa2d650e18"; }
- { locale = "id"; arch = "linux-i686"; sha512 = "057464e35bdd3159f538646f822137623d4b0b461ec9c1b0121321d4eb25db09ed74dd3959bbd0435d42e74eaefe2cf384d3510e2ecae53aeeaeb8bc728e3c31"; }
- { locale = "id"; arch = "linux-x86_64"; sha512 = "ff29884dfd0a0bbb962b9c3767c3144998a3c6f09913d1939f511686cdb388d1bbf3cecfb7d93d2803553f188574a1fd3818532a1e4bf80a3f4d6f1768547aa4"; }
- { locale = "is"; arch = "linux-i686"; sha512 = "f5fe21d04987e660374616cdfab43aeb4a4d314adb27443b0d0c8e8ae5764101b14de6e9e1e88bc8fa6b94e229e0f72d6ab12c3557a6085d2e6e3626e85885a7"; }
- { locale = "is"; arch = "linux-x86_64"; sha512 = "e9bd6410603adf1bd56a47685b6ccceca48e929b0b869ef5bf4459c926e9b4230ec8fbf2324a0a52b0dce6c88baf2199e367265e89692c452e954833e403831e"; }
- { locale = "it"; arch = "linux-i686"; sha512 = "049a94c20d5c66ef0209b281e150191dcae6ac34464ecb6c30a1d7c72638fd66992cf4f334b5e0e8c4317cdd84383368b31ee77e3280be8293b4d6d648cc0e8a"; }
- { locale = "it"; arch = "linux-x86_64"; sha512 = "ec76515cb83c61f09c5499c78a94d83780ce4cff537fadb1a49c3a432d0ba808bde0a8f27b3709c68d57603e4fdfc8d9ad2e0a5d37dcd9522765b509aa279388"; }
- { locale = "ja"; arch = "linux-i686"; sha512 = "397cc357287a48df4749d3ac2850b7a1fe840790da58808c381c34fe20403084b514e818b49edd09a151305b9828f368821d9c258722ae979f7078946c4c2643"; }
- { locale = "ja"; arch = "linux-x86_64"; sha512 = "d04e8d136e46a764e77fbac6dcad2eda23b60b07dfcc7d1faedf10b079b6ff0d64af4b50dc459657315880dabf1a1cf6cc19a628c4e1118c36683e2f91fc8eca"; }
- { locale = "kk"; arch = "linux-i686"; sha512 = "bce4da2456d92b97bd48a94802b6c8269c22b7e5643380c5429fb080de00a2dfae7408a125795d48d53c7580a4dc9bde0b5c050ddbeb62378fe8693cd4e3dfc9"; }
- { locale = "kk"; arch = "linux-x86_64"; sha512 = "2fc1f92a38176b27775779bda30bb9e3373b0a811bceb9b0347b7a8dba2665252d7dce65765375c7bc4302268b017883a32725ece8170263754ed274b754d02e"; }
- { locale = "km"; arch = "linux-i686"; sha512 = "c2886cf296a78990f015f63dfbb2e3ce465cc30cecf7ce9458ecb6e0a125a534464c5a9f78a488ce709f352a7fbce1ac0bab0017f46c3c6763b7dedb4a1058c9"; }
- { locale = "km"; arch = "linux-x86_64"; sha512 = "28d366c21242bdbbbb202fe46472f5666868dda7dcd5caf2aaeb474fd1f214a6ac2e95c3772e34b00b7f074d02c540e894a58327b2813cbbc312b136d381cacc"; }
- { locale = "kn"; arch = "linux-i686"; sha512 = "2d55511ab838a8af5ef8f8c30ba4a3526cdc13565b3ae149164fd5b1e1c5f2c4be393c6ec7806a7f805e8d09bb72a1b174cc3cc4f160d4ab2b0a3f9ef04ce36e"; }
- { locale = "kn"; arch = "linux-x86_64"; sha512 = "49a0f082c1a619fef966333dd85abaa2a48042fe15759e7ee72c054c43e27bf5d9e68c6ea44f98a443cf5faeadecf1078d23dfde581ff5669ba572ee246d0c0b"; }
- { locale = "ko"; arch = "linux-i686"; sha512 = "23922095cd3729e35b40a83c2ada94784927b52258b7f010e970b6f965081645ecb2ba585801a09e833d0cca8449c92a273810bc815677eb786a88e77e32b42a"; }
- { locale = "ko"; arch = "linux-x86_64"; sha512 = "10faafeaa59606617e807fd8ff0e9040a4de97f213f8c94c2a84ccababca5425c8365b60c80cb12fcfa5b4d80721b3b6d5351fcfccfc90f3c04096e69c818259"; }
- { locale = "lij"; arch = "linux-i686"; sha512 = "f00aa4352607ec8c7fba3d66ed141a1f75a324bd63e827957aa07b55800ce4a621125c9900e186ebe30aafb230ef7db7048a63b8218d77e39139c49f82edd5ca"; }
- { locale = "lij"; arch = "linux-x86_64"; sha512 = "b3f8916360f8188b8448f83421bcfb438003c1f989d97a804f28750e107679407df73cad69cd9496eb7a6a9fb71a12e93fc1e20c5a4ff602c671e1cd09cc13ca"; }
- { locale = "lt"; arch = "linux-i686"; sha512 = "6525f0bfaa3ed910dd7d49d4b24476c99662b3034287fc33cea58690afa070f113123c3932dbc59d414d8227e60aa63075c141e4b1ebd26376fcee3d49f14a4c"; }
- { locale = "lt"; arch = "linux-x86_64"; sha512 = "537f1726b7c8701a1ce513931c8bd6b0bacd11c5e91eaf2f9064ab87b001558a31f7ed71147c4a77a40f9ef6fb97d98a9f9927eb6a394478107b4abea78d39d4"; }
- { locale = "lv"; arch = "linux-i686"; sha512 = "0f2b5709083138d676196155afd2f53ad92a3660b2dd3c36b7e5f780d011bc08c17334753fa2b9a4f8a85a3c2c528fbfdc450e32db796d1752745560635ec58c"; }
- { locale = "lv"; arch = "linux-x86_64"; sha512 = "430b453951c20af4268a7586ec619ad095da12c5e8b8f854fa80d21b797814301edb69cdc5c510de18e6a1d35f7f646ab4a67dd28ec46f9624079686d5f1f3f2"; }
- { locale = "mai"; arch = "linux-i686"; sha512 = "96685525b23d8f28abc351d661c3b7d43f96d508b514dc804640bbbcd6aa30285e893cb2dc12f8cd6da42e931aa9cf35fb487fede896eb55a1817e5091d99aea"; }
- { locale = "mai"; arch = "linux-x86_64"; sha512 = "3a5d892471366c9bc6b82589fb2c8659b228823f76507468bc9c7be8bc3af425ff397a6409e78a5b0662a0257c27a4b62fed0b1d66201ade162fe952aeead813"; }
- { locale = "mk"; arch = "linux-i686"; sha512 = "ba686c0bb59ecfb7632f86c92b99bb7f6a4ea0f15e52fe78886831ef744332d770543e30f11a1bee904b40230b174eae5db86e2e694b678b0d1a25b750bda94e"; }
- { locale = "mk"; arch = "linux-x86_64"; sha512 = "8bfa03a196396d209a5d6e335cbfbcfffb2fd6aaa3c61eb4f1abefa4cfeb0d6f58fa41b89b093a2f84b65a0f3536ac0efe227625290d03457f36ec35727740c8"; }
- { locale = "ml"; arch = "linux-i686"; sha512 = "20f877c059f0f893bb60a5429c663920c9e12e112ac39359437148ffbbc06612b868e891a4c03e922a293e59b23cf6b96ec89ca474462fb6d9f3e82485e7b982"; }
- { locale = "ml"; arch = "linux-x86_64"; sha512 = "5e3b656ca1045cb07ab1db320ca35228de86d5bcd3da0ceae24c005a7d6e7a74d2b3b812d24da89b0d2967bd499f17aaef85545eebece4317c4ae0855feb6eff"; }
- { locale = "mr"; arch = "linux-i686"; sha512 = "09a65ffe81eb7c9ab1a6984b93391e2a1e0da895178fe606d69d91ccc95be14f3259c5b1fb7ea8cbe89e20a81ec6178f43be492693857b1f9cc34670ec4f0c69"; }
- { locale = "mr"; arch = "linux-x86_64"; sha512 = "638df1d240389d5507ed91f8a47075d8f77f81f178ae840f24cf7e19b037b76f3fa36755189724d76e739e9ac5edfe06d86fe7a5bfe559a8c14852f5ede1a173"; }
- { locale = "ms"; arch = "linux-i686"; sha512 = "68c89341714b165a4ca0008d4e934ad9b04d0b5ad219faad6d3e4827fcffd7e302510e1a73f628851f6d4c2e48e47f27e6b130f88e94d36e5c882ffb7da37c50"; }
- { locale = "ms"; arch = "linux-x86_64"; sha512 = "83acc1a93aa8d6de14c87eff4c3321cf8aec4927b049b5d6bc56fc22ba74b0894242a69676098d7f66bd054dc98eeb73521fd7dfaea3ef04a1f7a6c4d43895fc"; }
- { locale = "nb-NO"; arch = "linux-i686"; sha512 = "81016f0fb40fae025fb77295f1aed42d0bad74fe4421a8e10e7164945af46edde0c2a7a82b6e048dc52c60bc378577b9fc151e81cd32d131bf93f7b56ffe1fac"; }
- { locale = "nb-NO"; arch = "linux-x86_64"; sha512 = "dc646ea14b0d8812ae064dea4eadaa33701754a293d919bdd640ea266a16ad8af64f9fb06c6aaf227a5824b5a43179d59183a5d0435ba2ef8fc7452f4b53c6c2"; }
- { locale = "nl"; arch = "linux-i686"; sha512 = "4dbb3144b5c4c83fd4ea4332e970b54628f7b81f23e77d0dbf4420e24357e79492be7e8ee1d9699d4fdaad126276dd0b5be94f80d44b3610dff0f914227bb79b"; }
- { locale = "nl"; arch = "linux-x86_64"; sha512 = "83391cd1d6ba8aaca3b87e77156978884cb80a3a5e99780299b3d294d6956ab0f90af6dc365fb918e04d02d4813386967e81eeab2ac87acfb39fd1915a341327"; }
- { locale = "nn-NO"; arch = "linux-i686"; sha512 = "a9e6f6131f8f7f05a7237b15d1eaef8c87ff537a918d908e3c826903d68f5e21908a38d96372034ec538ee4f99aedd5e7b5e3d12016d0dc47e6b5e33fa59c57c"; }
- { locale = "nn-NO"; arch = "linux-x86_64"; sha512 = "b967378d6e1eba4aeca4bb1273395c06d272fca7b5ed652c773bc3676989ecd620055ce5813046747e3b76c0846688367a7e6f2c2523ad20f8d3d1e43822ed3e"; }
- { locale = "or"; arch = "linux-i686"; sha512 = "44d2a4b5567749a546c414f2eba1f71e0976c6992755faf7b0268f579030ff26d31da9b252c0abc5f1906910ecb27b21c551390739945d0bee3e785d909e4de8"; }
- { locale = "or"; arch = "linux-x86_64"; sha512 = "0458ded3dfd45c998afce1b7c9c202e948451f372d55cf7698917db1c5321283b62068eb20d4a6e79555a2e987150c8acd650c9146a5a2fa7fa61f625d2cf62a"; }
- { locale = "pa-IN"; arch = "linux-i686"; sha512 = "dc5471efea10dd5d3bdf476140b79de4acaa243f3052f36e94d9f61cb6a6bb6dcb36912f7ddd387fb1b340a2efc90c5ea382f8bb6dcea02dd6c9f31f7796e642"; }
- { locale = "pa-IN"; arch = "linux-x86_64"; sha512 = "65497656d473c0e8c9f78c245145815529f4a15aa851fd2864447cf1e740c76c088256f34acd6ed6bdd437ea029eb4b1f04c3b8980dfca916df6d99b2d68b5dd"; }
- { locale = "pl"; arch = "linux-i686"; sha512 = "998d9ba179347d5aa87832eef4b283be1bb09edc16da3d2e59227db6687e062fd194e442ca35a94705b08b32f26ea0cf4d6baf0923df62fa37bc9beb35fc1f15"; }
- { locale = "pl"; arch = "linux-x86_64"; sha512 = "629a9c4d5f8c11973e517bfaf9b5b7f5dbc4e107cb23b40ef5d554a3203451517ab79fa94128a29b77a11624c8f251fc566234b9419b63ec0cf6420ad54dd272"; }
- { locale = "pt-BR"; arch = "linux-i686"; sha512 = "e28c3b29cd98a86e95803c7bd94aab5e75b2e503238d07eb52b896fd10bce36323dcd5647955f1d0eaf6e412388c182dcc3e0d343df3bc9e5b5aa8b796ff4c10"; }
- { locale = "pt-BR"; arch = "linux-x86_64"; sha512 = "bb07881bb3887eca2fc9f02f779fd8833dcc42a0b3a194e7e9354e39cf01ac28a9e5d9456eeb0e1f538912845b38253a08642a9f092d0dd805ce16d06f3b2d8e"; }
- { locale = "pt-PT"; arch = "linux-i686"; sha512 = "b80271f97cc1633be71fdaa45e30fda429aecda8c0fdce27beef058809c10fbe0619f3221c615605b7c9d50ddbc56dd5cb11b0d498fef1f0fc1c6c9a3178988d"; }
- { locale = "pt-PT"; arch = "linux-x86_64"; sha512 = "2e3dd084f584f3a9515e927bf698c1e315e75d3ecd2b2d819dcfee15e1eed55b6c7255ce1040cc382aaada293ab40936366b9720620cbcab1eaff3e6490d9619"; }
- { locale = "rm"; arch = "linux-i686"; sha512 = "24a88a708e13798bd4fe4bb1ca6622b1b22e586a6839157bd48fa5d32428bcc7cc1e2c415b24aed388228d8544f64b06c4c5bfb85865795e2a2bd4518a9fc7c5"; }
- { locale = "rm"; arch = "linux-x86_64"; sha512 = "5a3ad81e9b469129ccf38658e393f3ba76ac4af0c98dcadb2d3d82dc23bcb917890d776be3259d5b513d5f5a6fda17bd2bf83838d7522bdc16a0f3a174ffeecd"; }
- { locale = "ro"; arch = "linux-i686"; sha512 = "504874d47e06b15025c58368057ae5de7aa70fdd7f60a332534acbb9bf78bea759887cb9d5ff9abead788191eead1ac4263043c52d9ee46a171739fdd2cdcb68"; }
- { locale = "ro"; arch = "linux-x86_64"; sha512 = "950962813b5ee0c7b5ab4fe5948a57cb72d4c8393181c943deb6629a4106fcf02b10f68127423d892bf97c0ed657eb2ae4536d7064a056367a562d0a24214d21"; }
- { locale = "ru"; arch = "linux-i686"; sha512 = "277a422c76af287213da3dba4ce5d39f482dc2c5d3d0bec437acb970de10f68905fbff18c2cc2f73a68bdf770e3ae3de7c4809175683b08f0c3c964fcf568031"; }
- { locale = "ru"; arch = "linux-x86_64"; sha512 = "98996dd94bead64b843c076f27cc79f9ccf43c41789299d4a7b71c5b7f5dc66c53fc1d5bb40bb74e50ee0b601bd8250223701125079fe04265b120841a6c07bf"; }
- { locale = "si"; arch = "linux-i686"; sha512 = "45bd3b23a6387aa6dc0919c763885a58c11e292ce6c492008cb41a89da654b36b43638a9af9dde9f66c6fc6dd7bf58e5f4e1a7224d52b22100c98d777f4ade1f"; }
- { locale = "si"; arch = "linux-x86_64"; sha512 = "f19242ad61048febbce7db34b5be4a018f90afefad79f17708987f17894ba363f11cff21bdc5b25dd133f0392374e5439f88de9706ea629badac6932f689c8a8"; }
- { locale = "sk"; arch = "linux-i686"; sha512 = "c5ad7b7a0380d18680446887e1345ae73ed831a194096f99994b5b0d9b2bca636d92979a110505898130d1a5f40d8cbf1317b869294f4ba18f1a20daed2646f0"; }
- { locale = "sk"; arch = "linux-x86_64"; sha512 = "30ec8e2d2d02f8d90f63fea5e1bd40ee0b6ec63bca2b903c227de461b9cce2c505e7197ade37513a9a417b0f4c2e6411db36e6d029b8a69dada4e7f43f426b83"; }
- { locale = "sl"; arch = "linux-i686"; sha512 = "6bc12807f07a9614041860a0d0dd811ee91c18ebf22302baf62c9d9efed70a17681c88b2843fe43fb40c69afa39d794743e6be344268bcab848f10ad93535a03"; }
- { locale = "sl"; arch = "linux-x86_64"; sha512 = "e269decbe5f1809f334999fd20f6a42c355edef0dfe94d205f48681ec713be9d9443d2bec4336eb899e6ec7613525dce10866105b629188ba18e38df18aa5e3c"; }
- { locale = "son"; arch = "linux-i686"; sha512 = "abcf9a5636d607c7ecab13b880283a44b9b22fde95705ed3125d83ccca5962df885b8b9c6563c983a99239a64db48115eaf070506feae0f5098a1fb5988a9cbe"; }
- { locale = "son"; arch = "linux-x86_64"; sha512 = "d35d7b7e3adf6be52b0a0df9aeceb1e2c7f11debd71bb0774aa3d049b12000a6c06df82500ef1c267f5db9a8bd29f3a6f937ab4fd020cfd68087f7ff1c3e6638"; }
- { locale = "sq"; arch = "linux-i686"; sha512 = "64061510d35d2c935d1644b2211b938aae9bb8908e0bbfad96706e82a1d18f2b7008c9eaf9538188de9c6ed4b19a32d50722c8df030f2eeb4470d90f682202a8"; }
- { locale = "sq"; arch = "linux-x86_64"; sha512 = "0d4a3cda3ee9691a5b60924c07eabd3a14f1679f83ca974ef294ebe347a078a95e29cd86a74e39b71a8c81ba2261a7aa694cef959068759b66b82622fe84035c"; }
- { locale = "sr"; arch = "linux-i686"; sha512 = "a3b51cb022a5944afa77a77916150bfd13b803d75389a5d459cc104a55418c709d846997886dc8d4e7b8a56d2e980b772048a23b0b790d28868db24eb30ba71a"; }
- { locale = "sr"; arch = "linux-x86_64"; sha512 = "dfde37d5efd379d7ef103792de62ad4f1974124357ddff85a7efad1f4aab82ce5e91746562bbce4a4a0c8ea291014b0a9d7ece17cf8bc77b0ce4a13b9b310161"; }
- { locale = "sv-SE"; arch = "linux-i686"; sha512 = "5b8b27d0bdf9bf755e1925aa709d2627aa4a40beca6a330b22345517b93cc7b27f83218111e9344505882b1f1e38c7de874147dbc9f8b378bf6dc328620e9a53"; }
- { locale = "sv-SE"; arch = "linux-x86_64"; sha512 = "4a3461ada07583650f9b3a7ac159b190640e7f30274068d2c9c448aec2cffc4c41d3280c1598d8db2f114315e46b391f5b4f0307882400c1795db63eb5fb716f"; }
- { locale = "ta"; arch = "linux-i686"; sha512 = "8a57312955afdf8bbe1502ec669623abddf6b8252281d96009aecc86e9c0538d72c9f8469ed1206abee77f7ec3db58486523cbb6590844516af92ab596d74c1b"; }
- { locale = "ta"; arch = "linux-x86_64"; sha512 = "cd3910562d3bc34c83e6d0f896073077e49c1be696e5fb5357533726f9fc9f8ca002ad04aa118c9ab88fb09d73c6b9a8d537f00a6c1fb6c5534d2b39b8e923e8"; }
- { locale = "te"; arch = "linux-i686"; sha512 = "3c3baff91af1ad7f73e6f51994bd70b5499dfea53318318eb6cffc41e465b839980414a5d13a25652e2cf1a47c19f98c2866603911f135f2de1da44c376a2d76"; }
- { locale = "te"; arch = "linux-x86_64"; sha512 = "9e42cfc73b09e8508cf490095973fb46dbeb31dc245fe3c678418aca285adca83ed42622b33645fdada11354ed8388c11572cd34ccfe7b3ee8c4b4184f3c217e"; }
- { locale = "th"; arch = "linux-i686"; sha512 = "16b0c10f00bd326a3bb175979c58f4903e9e3167fa603cd13ee2294c44503acff2ab5a3aa13d9d9ecbbb529816c80a78df4a12ae114297082959cf3a33af39b8"; }
- { locale = "th"; arch = "linux-x86_64"; sha512 = "fdfdb7622a8e856b3c2f398f20caf1bbcd723fb874585d9c3a767d13b3f21d226f65dbe54960d3ea9c44cbe5cb92e7ab7e57fecc6182317825d7d3788700dcbc"; }
- { locale = "tr"; arch = "linux-i686"; sha512 = "2a847c3f882652c925a8421b3af7761400d1f94444b70ad7fd0f5645b769a9adaad7ae594bb8ddad30e1f39c0230db02c94097f1e86e6ba1913d0c6f104f4b38"; }
- { locale = "tr"; arch = "linux-x86_64"; sha512 = "86087814f8eb3fd2f534dedcd78b0aa34cf44b8820e640ff96df23f4170145ce122faa0fb00607bbefb515a5d64cdd025388a607d01b40a3c369a2b543568e29"; }
- { locale = "uk"; arch = "linux-i686"; sha512 = "12a27ca604205bff7914910ed4354b80422dcbcbccb07fc50b0ec34aabacac42cc105bd5fa049422a3dbaf549aba8c58c7b13bbf884a59fe62af04f47e747743"; }
- { locale = "uk"; arch = "linux-x86_64"; sha512 = "bde5e9a5f6ca31eabb71e8985c91b9e8dd75a3b053907d3b3dcc5f40b657208d867f49053fc89b19b6d8da889da97eece87c8d48fcf84434b3a878802ba4fd7b"; }
- { locale = "uz"; arch = "linux-i686"; sha512 = "4006a6fe98e5aa3ae4602be834bee3dff63fadf83f40469a077e60122469a177df78f5d172d9ee13c59070cbc19ab38ca3d2c4d332dc8a322af3950fe607de14"; }
- { locale = "uz"; arch = "linux-x86_64"; sha512 = "fdce9f14896de72ab7d56db328414096e57a40a27a161335f3655d3f492e3c654f3140d786b64a74622987171d7383ce32a3e739e292f5666eb9c39c54abc040"; }
- { locale = "vi"; arch = "linux-i686"; sha512 = "63a108ac72d82e42d088be0c732393c776d108881e6d33bbc3d561e3491f878c8d9850f34cec4db2e25f3a1346db3bda19d09bcde49a16a37c56af610ec1be95"; }
- { locale = "vi"; arch = "linux-x86_64"; sha512 = "85f3dade252822685486e4697f63b33423e2b45eeb3afdf48bb3ce32ce50f59f7d51d058595a2319049e6dc10fdf9dd95921508b4b6c1833951542d479c1dc39"; }
- { locale = "xh"; arch = "linux-i686"; sha512 = "42627ed1ce5fbf15c325083c472bcb6c96a4de163909ba1fbea1f9e55fdcdcefd44f9ccfa83988c9fc741fb23651cde7abd119cf6badf42bcbf7aade693a59a4"; }
- { locale = "xh"; arch = "linux-x86_64"; sha512 = "c615d0713b8e6e5bbec38617941d5ebe23d41e03cc68866387ca676c042432907b2f7a32845c4f32d4c198ef5f4eaae69b6fccbbc62e6970b5fc88223d70f998"; }
- { locale = "zh-CN"; arch = "linux-i686"; sha512 = "345f931bd3d0848296d08106b820858be8e747c0b88ce7246c9e64a4d80091c21b6c9471af56ddaf653c93895611def817b616a46222276f9c82159f9e5f52ad"; }
- { locale = "zh-CN"; arch = "linux-x86_64"; sha512 = "8a47c1adefd06b85b8834b84159790fdc97cb077ff7990bd39843de99527713bae8d0f16e23c683f075aa55d27037d888aaab54010fffb83f3368e4e15be9358"; }
- { locale = "zh-TW"; arch = "linux-i686"; sha512 = "b46b59699fe729be3114306bbc9b4a884b1f6f763dd3010e569e0233509b58a06ff38657a0b364e2665ee477cac70417fefc991f6a127801f17b04e9062f63df"; }
- { locale = "zh-TW"; arch = "linux-x86_64"; sha512 = "6df4202e93541bec3bf2c701b48720109baeb7ae3833f62eabf56b7e934a560151bf101d1ed1293f945a919e3d1bf6e7495ee00d6aa7a22ce8064aca4f0b3778"; }
+ { locale = "ach"; arch = "linux-i686"; sha512 = "a5391e45d1e59a7c14d8d421286033e3e760bf2b4afddfec3d1767b2ebc957b053c39f17f8185a6c9ca2542c76f6c9612d95d474c01bd5ecc62e5d4f4e43e8df"; }
+ { locale = "ach"; arch = "linux-x86_64"; sha512 = "48681328033b694adfc6149bd965a3dff90ef014db6f65641ddd3d79ba7901604623735555bad024dc2425f226c65e332a0875d6b18fe1c06b18a1e407b70294"; }
+ { locale = "af"; arch = "linux-i686"; sha512 = "7757ba99ce9991f67a45d9a19615a93c0a1bf0e35d35c5fe653f04d47c068054c8d91327641a48cd20fb9531cd1e842066c0e6f2dd8b23bff216a9fc727ec84d"; }
+ { locale = "af"; arch = "linux-x86_64"; sha512 = "7e3d70da29aeb5fc81f5e6dc52a4b8f831813f8c025b1a105df631cc5b675905c82dae842459ad30c5257b74bd5654e9aec5dcfcdee93eb42443c45cda81138e"; }
+ { locale = "an"; arch = "linux-i686"; sha512 = "1051e1e3a6c25ba6b3aa4ce5adfdc60bcb3c612f3facd5edb702385ea8c0837cc53e95b064a424e0c055a56a11f3a54a7ba37e2ef35045c8cbb834aaec0f6327"; }
+ { locale = "an"; arch = "linux-x86_64"; sha512 = "27fb75ce402c0d47f8542d3d6d6992587e6ea0caaba2249e763f0f9c4f1d233b37a4b87ebb7e730d16704c7d2abab690660e409e721850875fc09deb0c433252"; }
+ { locale = "ar"; arch = "linux-i686"; sha512 = "296e23fff265bcc08ec0f81608d50428181163d216fd896c80a1a8c31e95f243112aeedf3bbd96b1efbaa1d6d576a9bfc75e5fe8df434cbb74bb9576f7d90a83"; }
+ { locale = "ar"; arch = "linux-x86_64"; sha512 = "15f0e7cbf5a98ffa9d2d7befcb11938b76194dff29b1d93ddcbb8f5c655ef33659534874a72aea18f98af06e5fa4392aee5412582ef43292d70603dff2c42c60"; }
+ { locale = "as"; arch = "linux-i686"; sha512 = "67883c8cb7ffb6c05288b316b2aa5bc3274372dd82ab4c771fcf1e5a968e550d12c89027440704d8479a906beeef24a18ca72ad243628a5ece45918ed990c793"; }
+ { locale = "as"; arch = "linux-x86_64"; sha512 = "f7718b0dc9bcbfd109591f87263d7791dcd7612b0312d0bf93e68b1f2014d3732dc6740c57a8e64dfc1af7946da14dde617945e38842eb19cfe39376cb12ad44"; }
+ { locale = "ast"; arch = "linux-i686"; sha512 = "f29b883932752bfa947c48f7c1ff6084b1cf215ea84cf63beaea808702b0b90f50e85aa4cefa4d2c1234b0d366c8f6e3d8fdf7a0f92d432cba790adab6d24174"; }
+ { locale = "ast"; arch = "linux-x86_64"; sha512 = "8b656c6b08640c125b94f90e1dc8259c90af2e764cee73b02b9dc3c0246b3195906d9208bc2a6b3ca31091d8cdfca8338fa6c489b7caa5685a23133e98847a39"; }
+ { locale = "az"; arch = "linux-i686"; sha512 = "5ee1247e37964274bbea8021c8e4e5116fedca95712fbd91d709c5c580bd1618c6319cae73278b2f0ba82031e94bd3fb382d2b4dcfc9a5d7ad47ecd80f4fca43"; }
+ { locale = "az"; arch = "linux-x86_64"; sha512 = "c369046c29dd0dfcf40e69e1f5b5a63423833a376d2b143d3fbf2ee1e23dedb3baf24843ba1178bda94b86f357724898a147d4adfac1e469cbf44166d7ffd16c"; }
+ { locale = "be"; arch = "linux-i686"; sha512 = "f8a1ab05b8d25a7a30e755a551f0851a308ba0720180685f6946a510363988717f8274ac2c8ef826c60232a62c394b86829d289e7d74e24b7656b55238129b15"; }
+ { locale = "be"; arch = "linux-x86_64"; sha512 = "df05271371de5fa25ec11164eaac0b253bc892749d421a6ca730dfeceb4ef89492c42ce83a87eccbe91cb03ab001bf0a1d9a20a7296b69841cab8c6b5d2acc36"; }
+ { locale = "bg"; arch = "linux-i686"; sha512 = "80644b86f9296b708e74843a51f81d368e3508f0f2f74de1a998d30a15f6e3af08ffd70dcc5c79adb76c03be9ff4713fc8403b8433cbc33ca3493941c4fb2fe0"; }
+ { locale = "bg"; arch = "linux-x86_64"; sha512 = "0e6cdc5b3cc706031c95a550b0c800c9e8e2d7bf241010c22f0872eca4bab018a5f0d4a94abb4f8291c279476700f2101a69ac0c57ae79994fba38b88b00fddb"; }
+ { locale = "bn-BD"; arch = "linux-i686"; sha512 = "4c697f1dcd68634e2ab712d4f2415e57cf8be0017fff3602223d8af19a1f3a5c973489d13951baaab95924fad42212a485fdff622d2b559be36e246c8a847b67"; }
+ { locale = "bn-BD"; arch = "linux-x86_64"; sha512 = "1931035a9d92dd9246a00b32443e282dc405096407a4feff7856125b7ee156840114c9be0dd58a020c250fa54c4ccb22052d2be291eeec9b5f76303fdf6c4cc5"; }
+ { locale = "bn-IN"; arch = "linux-i686"; sha512 = "fbab6f7e4205c803a50990624d58aa80cfd3aa76fed02cbf9ea390f4ecdcc1a97bda9b51791cec49f2a7e1010109d5f81a1c9b6ac224f1f70df49407df5f7386"; }
+ { locale = "bn-IN"; arch = "linux-x86_64"; sha512 = "c705ec8356796060c6782261086011bc0bf3ac9f08bc821ce2305c9aac11c522abb802a9d9ab7dcb53b0d38468bb6e667d45b187355d769acb43a8b252c4f400"; }
+ { locale = "br"; arch = "linux-i686"; sha512 = "c58cd77139a0ae7f3bb8f6f25c40856aca18a831c8f5d6f5d59a45ec615420bd55205093fb66a77591835b0d9493f774b1801a168b9c071086d510a1446cc914"; }
+ { locale = "br"; arch = "linux-x86_64"; sha512 = "b6bde26d478eac081007ef43a6d588f70dc4d54afc423b019468dc91bfcb117d3b4989c4cbb4cf77a1a11847a58ec74fbf822b6e6f0ef86fdb0065c301294850"; }
+ { locale = "bs"; arch = "linux-i686"; sha512 = "16ee40d079996f42be77167b73645d389045648c9d36b76e34d0398c7b5b6dee54712d109f93d054236ac7076fc3edb06ee82acae40ad22825a23d92d0e2c636"; }
+ { locale = "bs"; arch = "linux-x86_64"; sha512 = "ef674f409df5c32fe4584f9de65cc6558d6b3ec78d8a83f5cec829bc1ae09f30399567915e32584334704d12264c2592fecc9e4952beabc8b0d4eb49a7186854"; }
+ { locale = "ca"; arch = "linux-i686"; sha512 = "fe522bd836c82cb68bb21ad1c7f36bd9a7af1642abf7c035e2d0999b4cc07c58124e4d8de81344598036159102ee12f22c12e44a8a087e54d6c661c3f453b63e"; }
+ { locale = "ca"; arch = "linux-x86_64"; sha512 = "b618da984d35fbde3819d101c103d8d9a5a4de98f0e254c67e894656019ebb6adc56e14a57410a61430d9aa9c1e0a01339b39a5272164af372544f27329a1644"; }
+ { locale = "cak"; arch = "linux-i686"; sha512 = "82659aa2fbd091224aef6800b3df1d2e5141b6a295918e4fc4ea09b671184f62c670e3dedd7040b2f167581b0c8a0e8799d861256b273b01b2455d0937722273"; }
+ { locale = "cak"; arch = "linux-x86_64"; sha512 = "a507cff511c6337f805a27c0f73548342d2fb2cffa683874d66b054b844b17c354cc6da5c3d15618006c2279099b0cd9172b17d9d4b21a3863b5e395db686b22"; }
+ { locale = "cs"; arch = "linux-i686"; sha512 = "9af91acffc2beeb53280a6cbd21656a91a686c03342fad90dd91314c49535acef1a8abac8fe54bcfc250ca8b8f07e3550c890094f3bcee6baece983cec68bd8a"; }
+ { locale = "cs"; arch = "linux-x86_64"; sha512 = "c8bea48dc11c021fff9df5ee1a67a6b6e9193ffb2a07e17014d7448254d8a8f4d1512f862ea73bf84dc15b40edbba3fd94cd3d2d18872255bbfc7fa9a7b8ec29"; }
+ { locale = "cy"; arch = "linux-i686"; sha512 = "7cc062c3b9b4bbfd0b1f7247f06505ae99458514b607d4d9062836085798bab7ade6c4d1c8903b1b961243c6fb6adb4c4f94780f1194f745cf62d786e2c4f5c6"; }
+ { locale = "cy"; arch = "linux-x86_64"; sha512 = "abafa600b941e17f8aea0e778a937f5fb34cbc8803c93e59febc5d9fde6ad3347ba0bc7aa07ab57a61f6b9d6b11d582b987100364aa8401bca539dc6e14584e3"; }
+ { locale = "da"; arch = "linux-i686"; sha512 = "d4a9141779f52b78a51b9682b6b44e5ccffdecf5582358ab8a02efe133d9a52023e03c238e106a79e41a8aeaabcc58e0757c1af66837768e7bf4732f26182915"; }
+ { locale = "da"; arch = "linux-x86_64"; sha512 = "48f0c48aa273cec9830bf806330c7a630185262838007628acad904a45b3186450a8973938c36db636bdef9042c78ce94a4a456e1682ef561abaabab6ac20863"; }
+ { locale = "de"; arch = "linux-i686"; sha512 = "01675b3a8ecfa10da1d101cba36295b226b130e1cdb2c760541cd76c9b21436ae84ca7228e063402b1ca2eb59acadcac7720c9dd47db8b406675fb273af206c6"; }
+ { locale = "de"; arch = "linux-x86_64"; sha512 = "6a7ef802a8109f58504b2accb9ef0ee38986f6c8980e0831c30b470f2ee768169557cdbde1a58d7c72996b27596e553185ded476cecdd7114b75d82428b7846e"; }
+ { locale = "dsb"; arch = "linux-i686"; sha512 = "55528fca4d276b2b0430949686845e3d7d88975129c9a9846408f758b4f9c8f154425db891e5c1930197e36137d6c15ba29de90dad624bad23090015849d0ab5"; }
+ { locale = "dsb"; arch = "linux-x86_64"; sha512 = "f21c14a57f6f973be824340fcd417ce03765d5826114462f62adbd933661bccbfbe90b66935083619c62d48401c511830574ccc373ca2110093b06fad59734ff"; }
+ { locale = "el"; arch = "linux-i686"; sha512 = "ac5a808db1ba68286a7199eef33794f7aeeafa26e97a20738fb21be479462bcaeb1e8a7995720d5c7dcaadd0cebe91bb2a3e019873d0cf74f42838f7d5c1a427"; }
+ { locale = "el"; arch = "linux-x86_64"; sha512 = "c02e6587d99fc3ca66debe854c778a8b3dbf9b514e6ed74fa15e3035a54643b2bc324ff59f1705c6bd392c37ad1996f80dbabbb57df10aff954ed0ff3f5b01d5"; }
+ { locale = "en-GB"; arch = "linux-i686"; sha512 = "c458c70db0408d627a904781adc9af18011f243689f4c5a606c8f1508b4e9417a8df499673c4ba56d32ea77d0f79ab85ff88852f7c518e7fd124e5970615b2f9"; }
+ { locale = "en-GB"; arch = "linux-x86_64"; sha512 = "28ccaebc4f7613d7ea8c3b47504923f2d59bdf4afd6e386a67dcb6b6923a9374c1c783e4f904da0b6e0f716ec87a046fc12f3781b732389d1d680745d6955c58"; }
+ { locale = "en-US"; arch = "linux-i686"; sha512 = "e1ea34bd0829656c04c471b66d2013fc07cbd5cf40b47bf3a932326cca71f9a502c52d1d5e6dd902d274d307079475b0e75d7ff552fcb2fadf31b2883efba79e"; }
+ { locale = "en-US"; arch = "linux-x86_64"; sha512 = "a56b2ad26df424f008d96968a4e6a10406694b33f42d962f19dff1a0bcdf261bca5dd0e5c6f3af32d892c3268da5ebee8ce182090f04f8480d37d232ccd23b9f"; }
+ { locale = "en-ZA"; arch = "linux-i686"; sha512 = "d5efc3d4e624f34c81df068f4d6c184cb8a63ad0667695e9ce7099e069b23715eb77cf2004adee41bf355452179959e5ef7450f167f87be70339abb4cf70844a"; }
+ { locale = "en-ZA"; arch = "linux-x86_64"; sha512 = "859730132549691b61e936813f0f5fd3e62f3ef6fa9899e3f68bd3178b7438b4c6b49f54f00d4898b568d6abccdd55a0f9fc6c51858e95735fefcc13de460d73"; }
+ { locale = "eo"; arch = "linux-i686"; sha512 = "8ef290bf1eb3504ace393b32c2da64d14435edc327c4f13a40cd925efaf7e042a03b6877689b3f2290f85625410a4e48dfb2cf676f138fdba87ffc597b25f4b6"; }
+ { locale = "eo"; arch = "linux-x86_64"; sha512 = "7d6167749d2a57a9c12180302a825fee14555e9050b6be3c83dd35183678bc36e10391cedcc864ca0dd96d297997a68627dc4fc1a9cd8922e789dcfa814f18eb"; }
+ { locale = "es-AR"; arch = "linux-i686"; sha512 = "07768e3b3ed903f4327881a132f192a65842a376eeca6d10ec0de69fefb4ddf3d7fee2a704bbc8d229c78556478814d9e53940cca9edee58270d9790d6b76998"; }
+ { locale = "es-AR"; arch = "linux-x86_64"; sha512 = "cac021af09abd742273dc77291fb1528dd5d6d38cef3a5e36e615fbb9f3908655fdc96ceb93fd131c4879acf24e702a044471136e7575f3b550ebcecd982047e"; }
+ { locale = "es-CL"; arch = "linux-i686"; sha512 = "e92ce6bec5b1ee8cf3db0a604eb4cae6245fb6d04a48eec64b6dd55139f3606cbbcb65511e29a3164d6572929b7216afbaa7f034a2191eba100ecb7403740504"; }
+ { locale = "es-CL"; arch = "linux-x86_64"; sha512 = "98e57146481a53061c0b30872290ecabc2d14c73805a9461d82aaaf4cf9f301521fd55b01c8159c09a56f52a1580d83c9527986b1390f496d0fbd11227216e7f"; }
+ { locale = "es-ES"; arch = "linux-i686"; sha512 = "c44df66e140ea9190112f89aedff9519b6bee18f5e2b54aea19acd233e623c299aecf134cdba70d366fcaf6b7795d220052ff75409c7a04394a7aa02d9ea708e"; }
+ { locale = "es-ES"; arch = "linux-x86_64"; sha512 = "c2d70bc5a304df7b2484c8fb2b374f8e31a69049eb223a53dbd0e4b51e4ccce907efb1674eb637370ce7c3947ba5c09e65f433d10e0f328b80d482f3de9cae12"; }
+ { locale = "es-MX"; arch = "linux-i686"; sha512 = "96dcb75cffeb85b85f092e295e38ee55c272714c40609ca90cfaac5fa0cfdb3efe8e993319ee690b4a7938c42346bf39f063ab1f3db606e743c1e4720de5a93f"; }
+ { locale = "es-MX"; arch = "linux-x86_64"; sha512 = "60b50d6726b2e1985564bc02263eb88c9b4c1bb39e6d19812ecc6751d6ad223ba04f65a7755a946fb15dceab90628b057bda89c55fdd4972604586f52c5a4b1c"; }
+ { locale = "et"; arch = "linux-i686"; sha512 = "0a4bef2277f729c93db413b68f8263eb356f7b3278880574b8ebe010e2db9067b803967e1f0d6912f128a9ad5ef204466f52ae277f3addfb8fe9ac377c3b8a3a"; }
+ { locale = "et"; arch = "linux-x86_64"; sha512 = "ed1bd4fd67262958601f1107edc589bb28e9b7f9faf0edebdcaf0c07ec6007f527a9eab434582a65271a8f68edac8178601da54eab9398f48b31126657a21b0b"; }
+ { locale = "eu"; arch = "linux-i686"; sha512 = "8c5c9406345e2a1fca3544aeb742dc0d254c804d887e3614613280c050a63b69320d4488b017ee16b0a2a07bea862e8b245baf7edc9df65689d509986f3c5958"; }
+ { locale = "eu"; arch = "linux-x86_64"; sha512 = "d8f7004e24033f377391b577c549b66f73cf0e899ce5f580eaccd07713ec03b4362db7b222ce6345d113641d3e6a951302939bbb155c47ec0fa46a201a631427"; }
+ { locale = "fa"; arch = "linux-i686"; sha512 = "f4e02737e20b6ffd3bc2b3a5e5fa59fc80a8e37dc8459ad4a6b99e7621a4d3f360884915f7136dc201830efe371de37977ef3e27f34f84e2cb734c1fff8f6e36"; }
+ { locale = "fa"; arch = "linux-x86_64"; sha512 = "8f624b066faa39341b750dbb702dd60ee6ad75b3850c659dac2e21969ebed1f792423e9fb0a9cae7fc456943020f9a0155af5d7c596433eedaaa9990ce07b7d4"; }
+ { locale = "ff"; arch = "linux-i686"; sha512 = "22a2c5376b1e8d770659475085d98ac1f1020cd816ff3ec6ccfcd68f2484b1b0dc25bb84ca52f4ad27144f4da356ce5e7fd54411d12ae7c852064509470d5828"; }
+ { locale = "ff"; arch = "linux-x86_64"; sha512 = "bcb3dabc250045b8ad444219055fd9d14902296ef3f9c320bec1bef940f84eeb0d4a50249805188ae96ed0288a70f0216350ee79191beba49aeba890ae515b41"; }
+ { locale = "fi"; arch = "linux-i686"; sha512 = "0c505a0e1d3030038b61ea159eece3892bcc7d947b6d7010c0be8791525c9d91ad1170d4cb45260584c93a78a4bc831b7acd9f28e95ae62e5b96b31745dcbe50"; }
+ { locale = "fi"; arch = "linux-x86_64"; sha512 = "f347cde005c6b61366c633db5a8cbc5260dfa0d68230a938d847e3f80bff2f1bed09dddded7b1728f4ef9525610ecd046743f9e71eefb467943fe6b72ed198ca"; }
+ { locale = "fr"; arch = "linux-i686"; sha512 = "8fb8ea2eab82740657a6b822b330fa0c289c31ad900683b4ad07b1e9b0c6c4e14f50af39d6d0f787642010628800b0a99b5ab0c4cad62e4a579390509b1ddd13"; }
+ { locale = "fr"; arch = "linux-x86_64"; sha512 = "ae79c5b7f9f8305c3631f4f913baa341a9beaa7a2ee5df1c6c1826030c21bf22b92095ee579affb8911110bf3bcc359793c0beca18d4c32b1fcc1f3d1dbcc4b9"; }
+ { locale = "fy-NL"; arch = "linux-i686"; sha512 = "1c57d02fdc33ff53de48ed9aa9e89ecd5a56d35b432d5651e71bbfbd5f9dfd18aeaf14d10b881f72df871afd00a12b31ff05cf9d5c5a55cd44a92c7a0156523d"; }
+ { locale = "fy-NL"; arch = "linux-x86_64"; sha512 = "f30f59d630c5d289b61dc7440f7bbb976eb16732370f827365a477090cdf9f2859f39afb7ff9d9be7e8a022f181f2aeb7a3005c00f4c14e6505a28db7ae48a9a"; }
+ { locale = "ga-IE"; arch = "linux-i686"; sha512 = "739d5feec4bffee67876227f6783d35675f4c0d168b7abbe5f97b6e8edce7fe4b8f04f8240087f7f208db4180f3417997b661c93ebe046decff3f4f4fecac839"; }
+ { locale = "ga-IE"; arch = "linux-x86_64"; sha512 = "cb4344df6e07db839ce8c9fffd1b7b310c8108b5218cea3602972806c1a40f56bf1355ede4cb3595f54179b16e3470e25bfbddc8e39d726c7d6c1e99d128ca8b"; }
+ { locale = "gd"; arch = "linux-i686"; sha512 = "91004d62bb5f1f6a1d65b35fee9e594d21d9877669e042cb4c9a834b01b35797363e1433a9ce5a8d0a9f64c8b256da6a6d09fa3342b74b7c2af8ce8afb3e4e56"; }
+ { locale = "gd"; arch = "linux-x86_64"; sha512 = "f04034cafed25c34713ffe4109e53b107b8fe81321c0c0c035f54ff0ce67ac393b42db7598edc658d3f026e447f9ff1c4d1cfdedd31066eefb6019117248e4c0"; }
+ { locale = "gl"; arch = "linux-i686"; sha512 = "107bdebb92ce86f39cdc45d6bb24a9c4d104820eca6bb77950693ccbd55e7f8a2f143fc3a5bbb1bfda161e7a33c8f6d8d2686b09da1497215defbca2b4e4e109"; }
+ { locale = "gl"; arch = "linux-x86_64"; sha512 = "c841af5c73343475150b5404b4b54396bda845aa5b231a742aa17ecb7fdbbc5cd4123efc3ac2ede1c24f485d04bd87e8bf7cb00b7135bef236ce56afa0c27a19"; }
+ { locale = "gn"; arch = "linux-i686"; sha512 = "20954e218967772488bd895ebf069522c3f4c56ebfa09a7c8efb740158cb95b6be76cee8f4d7f2c1c6c505ca9071a0ddc1914784a54f669d337d5196f18b6f4a"; }
+ { locale = "gn"; arch = "linux-x86_64"; sha512 = "aaed68f13e326792671669883b452b65556998ed757ed5b745c6453d6bae8865a06f137709de37ace2688e2e09f1b96ecf2e5b6374b4170d29100c6f83ce22ce"; }
+ { locale = "gu-IN"; arch = "linux-i686"; sha512 = "205093ecc0dfcddb2b90e05b1a17f75805a4597bbfad214d67442fd0d952f765b031ba63a3c399ba9c1c46e4d05b3cf786f01c46eb8990240a16431964c93a94"; }
+ { locale = "gu-IN"; arch = "linux-x86_64"; sha512 = "a84ec5015f6922a22a284eaca985010586067370d818e77d401b58782f86dcf2f534f1ef021719c170f1f502525ce25c94760d3b75481c15fade3c25b969b563"; }
+ { locale = "he"; arch = "linux-i686"; sha512 = "5727fc4699316c4b34be1c2596c5cc20d5fc9d2062b1e106087cdb34b788fe3ebbc098acc8c690bc83c9d9be59ac3b3977fd9116d766ce908aa088660fe34771"; }
+ { locale = "he"; arch = "linux-x86_64"; sha512 = "c399969bc24b10ca1c1eff17d3414f214cfe3e5b73282942ead5b2ba4d2c58b74d665b13031ccf42956cd45f0fc7b206dd2f9674103c1e3a8861a33577b5caa7"; }
+ { locale = "hi-IN"; arch = "linux-i686"; sha512 = "f014c47a143d425aa3452be2bbed199a8b5e75d278c35fa86bb6bcac40bfb32bdee22d030386c881c818b465451b35c81f97bf29f9ccfbea606d52c822057899"; }
+ { locale = "hi-IN"; arch = "linux-x86_64"; sha512 = "0e5dc0970680886dc02448d7118b6864092699fe44f3276ca17cba160aee59418f8e39338247897b118de0e1fb7634cf725ddc6a34a8b6f002b7a78d92deffb0"; }
+ { locale = "hr"; arch = "linux-i686"; sha512 = "a9af43f6cf6f493f728b8942d3a600f3cb3a23eb0818d284ddabb8766f7d274aa0a232f9925b65625bb56d00864946dc6b0567491cbecdd6a7cf626b6964d9b1"; }
+ { locale = "hr"; arch = "linux-x86_64"; sha512 = "d97951148ca0ba80a67020f323859ea3f508e40906ecfd18f7a8fbe7a2bc85ea4635945b5c6063e1d5d18456471604075e6767da9a4fda6a09dd3e992a7d3a88"; }
+ { locale = "hsb"; arch = "linux-i686"; sha512 = "2f7adccdc894f345e861b29a6d65909b1cde2649c69ec9223f784e659e8e3f4668f815b3683fe691de0749483167d26885a0199bee88e8524377c7eee3afbe99"; }
+ { locale = "hsb"; arch = "linux-x86_64"; sha512 = "70e39341ede01e18c653a0eb56b48e31c73ee3df54ebc11bcd220e2d8e19c67c3e248095c4d070b12a0eac5c24acf5a8ad83069673dcaa684229f4706103685e"; }
+ { locale = "hu"; arch = "linux-i686"; sha512 = "1fc01c6dd873e2194e6196b1bdb0246e95d0b0520f558b21a2052251d2a5202141c09410c4631b3f025479169d8f68411c2a24f32825261fa8d65696fc7cbe0f"; }
+ { locale = "hu"; arch = "linux-x86_64"; sha512 = "b4509d671d7eac055812add85ae571f52c90b4eeb172d21c22ce844c70192ba235f37a732e94a0edd6794ecd5a8caa5e8bb6ce05a26d3705902d3628420af871"; }
+ { locale = "hy-AM"; arch = "linux-i686"; sha512 = "a2b7cd1ec95a0b5eb064e816cfcfc6a74a92806772592947267c4b266bf7ce77d1beb17a7c25b905251cf497ca8dfabf16bca367cf6d9e9e635182f306bd71ca"; }
+ { locale = "hy-AM"; arch = "linux-x86_64"; sha512 = "9997ca45051e609e289d7730caf1254adacefbf8e618a165750d5bb7ff7933d014781af76501296c89a4236fd3ac477df6e6be5a5dd45f214983c851a856ce5a"; }
+ { locale = "id"; arch = "linux-i686"; sha512 = "bda5a7c599885bef966daa35a3f34297e38534e32967142ff9cc720a34c7aa9730e3f24623c240637838eca03f78f9b2ee30af3ac3dc8ba48f9664c56b64c789"; }
+ { locale = "id"; arch = "linux-x86_64"; sha512 = "97d16c5b4382c7fc6ccee416d671e47d345834a44ab111aa486a41c756b25eb894628d0128e8454fc15f38937bc40436b12e60752ce7b7c1fe35a230abaca337"; }
+ { locale = "is"; arch = "linux-i686"; sha512 = "576b904fb836ea735f652c6b9c91891dee164edd3523c5f99d68cccb4bd6689c29e4c579b6cc44e699a8900101fb8d223f9e0b0860f71a2814ae0ee2c70609e5"; }
+ { locale = "is"; arch = "linux-x86_64"; sha512 = "592d65977c34c6133f5745a85722f822efa5956bafc6e880954a0b318fa59712c754e882768755fc08f5e08a1c99493c0b30b4219c46169ba663258e3fd3f3fc"; }
+ { locale = "it"; arch = "linux-i686"; sha512 = "4d749e1b5d8432df789f29a247ab48a688d4aa16fb25dcf7209783c6036bfccb9ff8ac32dcd09dab1708f71896fa034576d6048eef077d1a6c0a3dc58d3cdb26"; }
+ { locale = "it"; arch = "linux-x86_64"; sha512 = "087c456d691225d9aef54b2013af69cc7bf2501f83060179112e9c40c1d6762202f68e6329a936df091a1ae6aa5f20bcc96a4c8b0451b71270426bddfb45d15c"; }
+ { locale = "ja"; arch = "linux-i686"; sha512 = "cb4b0bbff7d322f2f04fdaa50b365d4e0a1ff1786206539cd124870ebd69a9305b88d39b9fbed41c64ddbe68098e02c51a0dc665262424f8eff882b1497ea1fd"; }
+ { locale = "ja"; arch = "linux-x86_64"; sha512 = "b6c9b419a3e746957f93a4bdba9043adc3911b6f76e1eea2e4e31e77e9aa9057ce720205db4af5586a90df4d6b774b90829f1d7689e77c560c50ccae755400b9"; }
+ { locale = "kk"; arch = "linux-i686"; sha512 = "ae7711d86ce8180997f44f9309a63a436bd8b70ed0dccda773c34ba816daae99b3b1ae913ee87f4d1f9a4e8f016aea670e89652823df16b5e8414bb58ac28225"; }
+ { locale = "kk"; arch = "linux-x86_64"; sha512 = "49fb6b5ab6aa12535373927519bf36099da6fab7c2e1bcd6f5ce73d91679f58e81eddd3556df65b305fc2d1cd439cf6de081980fa98ff79df16b620ed41290fd"; }
+ { locale = "km"; arch = "linux-i686"; sha512 = "29dd1808c1430c01dbb395d5e5a833bfbde85453278d4efd32f1afa1eac19a651c0c3a42eb4ba3402f56a8492e80746d753986c0ec0f1a6dc0e5eb6778b5c6ae"; }
+ { locale = "km"; arch = "linux-x86_64"; sha512 = "f53966aed30b57a601152f09a26414e11bff4ff31683989eb1e47546eaa32fce8cbb6511043f9753cae076d23d6f2172c2b224313cf5f3262f109b49119175e5"; }
+ { locale = "kn"; arch = "linux-i686"; sha512 = "17dc37df2b3d5a87bbadc4d5c80d4ddff03752b7a80f5c76171ce9f0bc4b8926964b6315cd4f0c6c9dd3142cec56b464503bde34ec3c69e2b8a66ddcae72b0ec"; }
+ { locale = "kn"; arch = "linux-x86_64"; sha512 = "2af5ac5c254bd0ed2d08656a6fee7966d73aa89973cfad67fd18d7d88fd1f18a2b882de7854af46a3ebc6acba4cceacc06942db7ae495faa2c6ef21c65e94158"; }
+ { locale = "ko"; arch = "linux-i686"; sha512 = "415fc260f3dcc2ede6c43194501d9522fdfb106f7c86e5d8f5929df6615c73023fffc3efd190deb68bf08bb2a0d4ab34f7605e222301c8350b980f2dbc289c8a"; }
+ { locale = "ko"; arch = "linux-x86_64"; sha512 = "c991c0b9a89b618ac046882b929fd7e3689e19dd96edf4535b25f9172b6baaa801a4490ae4fd35e82ca3c776afab74a0a09b993f8ae8c2a603d210f2cf248f73"; }
+ { locale = "lij"; arch = "linux-i686"; sha512 = "3cd367654397d14b782cea4ef8c96f1f6938f011576a8dba92dd4ca832ca3c8682f3e0e161a4288b112fca550d556080d0ece5a79e4c4f6ec99a9298feb6fa12"; }
+ { locale = "lij"; arch = "linux-x86_64"; sha512 = "2d7475c544df807a956feb9361f889ba0f5e43dc52a9e1dc9c469d86e97f344b4f2995e3fa149a77662969f3acbcc998f430973b2b9d28b23c82c5058b4a9dfc"; }
+ { locale = "lt"; arch = "linux-i686"; sha512 = "35c8a452ca845576739d5faa9dab6f3c34dcecf9ce95870f68699836f3534b4807c91fbe80007950abbbca662e6d01b406205b3e4cdf4d33e0717ea5d6f57006"; }
+ { locale = "lt"; arch = "linux-x86_64"; sha512 = "8791df09d841d5ddabd552d0fb0dc7e9446d23092bae1010d92bc3b056a9ad4a6dad01c5d8db531a273945eaaf4c30c922cd03d7b17e1b6be263e0bcb91b8384"; }
+ { locale = "lv"; arch = "linux-i686"; sha512 = "22b865a344a46096c53a72ff6b1402d00808bb3b49ecabe6f4115ea60e40e522d64afc701648772616fcb784a963bc6d5bb3f89517d7f8407f22fa82d81bad98"; }
+ { locale = "lv"; arch = "linux-x86_64"; sha512 = "3c66af306b1a8d0a684c12511d95353c0bdda0bea981ce4e577c928be03e12b582b19dcaccdccec551b3cb0fb716323b1079180aa7a8f1204f5e4b5a84b72831"; }
+ { locale = "mai"; arch = "linux-i686"; sha512 = "780fe423a3cd56a7452df32679ee07a0e328b21cadc78faa2721cec59185c4a4467aeeb75e9237cc86d38dfa2cd71530f02156c4fb9515582ca564dd53d47543"; }
+ { locale = "mai"; arch = "linux-x86_64"; sha512 = "d27218b59edf004dc57cfa9ffd70dbeb59b7d3c0871b00388a56b505629fd82ddd6f6e0147f5b4c67a8ad72a674e384b66ba2f9455fa9ff218c9ada4b27d1d7d"; }
+ { locale = "mk"; arch = "linux-i686"; sha512 = "da7ae3718f3c69ec9b62aaaea93951375d82d8d02818d6855fa9f085a64b69c155a1336585d786ae2d33d657110b787f62909dc9e4d54c62d2ea94d2fa8fee3e"; }
+ { locale = "mk"; arch = "linux-x86_64"; sha512 = "95136f8bf86014a63bcbf4a5cfbd778c4c7e6a84618aa0f6a6948bb597638569b3702e0569b50c5dc9b46339e723377faea8964b921ae9802043fb7983a2c4e4"; }
+ { locale = "ml"; arch = "linux-i686"; sha512 = "56743acb54283715fb2a910caa85dda61f7e2c1c5e012aa222dc07e3b522572500056fddf990b7ef03a175ff8901fb11b113bcad5c2adf4a6e6e032644ccca2f"; }
+ { locale = "ml"; arch = "linux-x86_64"; sha512 = "134f35f5f6616c2a7eec48f637277fc02e23b57bf38eccff9777bb08c70a41fe79967b69567f75f9c8bcbad4b22d2ddaf16bec98e399c4b8ca9db9b70e99ef58"; }
+ { locale = "mr"; arch = "linux-i686"; sha512 = "f29de7ae7dba03465baf86f93d778c9faf3055d50295977c0207c7e4daae6f7ad733ed38e1323263cebe4f737d9a1616024333a97139156470de1a9fe3c16276"; }
+ { locale = "mr"; arch = "linux-x86_64"; sha512 = "731b4f143fd1303ab54ea3f1b6aca6c4f78ce935caae32fed0b8cdcd46c0ade8c8977131a3be786ea929a7d284c3d45d34851a0d81242761f722f0bceb126957"; }
+ { locale = "ms"; arch = "linux-i686"; sha512 = "d372bac105f2012b189efedc449c7c183d0daf64cd7a40822ef9d685ce4a1550ca9699620440dd198b13f95513a577766e9f1a8e88b212492831bf7ffcac7e0a"; }
+ { locale = "ms"; arch = "linux-x86_64"; sha512 = "1287f36a742fa834d5f31e6bc2f6d3651e54f2bc8845a1f0f647e9a9e38ba66c58138961185897c8832107cffff06167a35dc3ee1f0ff830f997f65fb0854a63"; }
+ { locale = "nb-NO"; arch = "linux-i686"; sha512 = "ac3e46080e188e56a6b67ff77aeffdba7982d7c3aa4156a6f2781ef6b8fe63cac50d678e5afc91aca4ad16c4384d2b2727f74ddc4083da91a1e3590ac98ec9d2"; }
+ { locale = "nb-NO"; arch = "linux-x86_64"; sha512 = "dca52381e45b5c2d89f590971d830010a9ec1a2a513fe655ee93c3fbd980adcea78787701595a95402bdb660c2f3e0a489e001deba13798337493655798c713a"; }
+ { locale = "nl"; arch = "linux-i686"; sha512 = "6ec01f8eb18384aadb5715a996c8410ffa94b801ee1f1b1ab43bdeb492e179e781e8b85acbeff4a25cb4fef847ce3e2335968458d9f6e47d046083264e91f6f7"; }
+ { locale = "nl"; arch = "linux-x86_64"; sha512 = "7d5840518312dd167d914a8f7fa5670fe17f9a6fc39ccd128e30f689005b35bd352d0602993713c3d05288f2b036829be8e08398d536e4aebf2341ae2290e633"; }
+ { locale = "nn-NO"; arch = "linux-i686"; sha512 = "a185f7592649a91214363cf2a0474b5895f33342c98cd4bdc48fafb0cc76310b2ba4f46575970d723c76b2ecfeba8e2b39d9671e6059a15bcb2565258096156c"; }
+ { locale = "nn-NO"; arch = "linux-x86_64"; sha512 = "7f8e7277bcbfbe5f40c161f1ebbeed86159c2b6205a5ea55cd8b6253fa6742bcfede11d4de6c1aba36e2b1e98f9c9a7b8e26f9aa35e1eaadc1d011636d429be3"; }
+ { locale = "or"; arch = "linux-i686"; sha512 = "a543a7d3f4e24364be7e4df65a81da82d955d1268a4cbce741ad7ddd5f4e9916573e271f02af1e92b123a4da2c7f312c17f6ce714e3057a1b204484ef12133d8"; }
+ { locale = "or"; arch = "linux-x86_64"; sha512 = "7672596470cd8f49f9c4558b05bd637af1650da729bc518681a8cde3ec785358121fa7ef209e123fca4b59df1a63878832bc32d2ff404b5d2a818b60ba10c15e"; }
+ { locale = "pa-IN"; arch = "linux-i686"; sha512 = "a99b60ae1eb479e31f838fd41d5de325c418762fdcfa5e0f3bc3d5da8df108d3b64ce5bfac0af09663007becf5327164db8dea0ea7a3876586cc43030a780199"; }
+ { locale = "pa-IN"; arch = "linux-x86_64"; sha512 = "f0110b74842f924808f74979061151fec711d10a6005d2da2fbb8d46fa2a25ecd5a2c804e58c10a918efe570d4d67d05578b0245f526e1aede4bbc786e9f304e"; }
+ { locale = "pl"; arch = "linux-i686"; sha512 = "7eaa2bad351429d76b476819a1529ed1609388968327382cc13df235a294f2e9fb14295341ff15fe3b2815ffd1c6c8978e2aa104a847fd2cb4adcf2ae3b0b974"; }
+ { locale = "pl"; arch = "linux-x86_64"; sha512 = "a40e2c15cff0e7f7bff8a5c0bc4cf39df948a21bd37b34ffc93dd87e1f5256526a25526e457fcfd8d081bc872dc1bec13e67da3cf671b6a16dfa17850be4743c"; }
+ { locale = "pt-BR"; arch = "linux-i686"; sha512 = "c9cd96e68fa2e1f73a49e71c287a25be8d45a8ebb56262e02c40ba5869fc58c7fc43a1f6958592bb377e7dd4064d64f5ebcbcb5cd3a9fe0a007c2da665f50a66"; }
+ { locale = "pt-BR"; arch = "linux-x86_64"; sha512 = "1184751c1d1a0a9044f8df2d20aee7dfe332dc5f851802ebaf2c5c83fa2bcccfd913cb6e16d2baa449cff1b02aa18f828489914c0741a2ef2a46d54fefecc268"; }
+ { locale = "pt-PT"; arch = "linux-i686"; sha512 = "86538057ae91b1297acc11c9bf3f7d24ba1950edead89d4733f7c898cf53e3848054bf391a975f19766b69f4c56f576ca54e4b8da806db7416f3e3d91777c3c3"; }
+ { locale = "pt-PT"; arch = "linux-x86_64"; sha512 = "0a480c26e5dfe2bb9b536e122ae32e18a6dac999004493839cb506c1ad615e095c554d296f1a77bfccbbb86b58bcf549db83f7de51d02b68d1eb752b421f23cc"; }
+ { locale = "rm"; arch = "linux-i686"; sha512 = "751ffe931cd60296490c7164f49f61f4a51bac5210328a18d02261a07eb607e181b2bab4fa0b59d2df15334152386bf816a984840d2331b7e801171be9c90594"; }
+ { locale = "rm"; arch = "linux-x86_64"; sha512 = "3e526c9a1a876e5d2c548c9a68803dd11c04c8214e18eb09c0b1c3fb3833f64c8a3362db8083ac5de81c59268439b53effa3bf1c64807fafc874eb8ed9baf188"; }
+ { locale = "ro"; arch = "linux-i686"; sha512 = "73cf6a18deafb7ba93fd60cba3ba0bb0191471f977c41bac11bf2fd6cc6f7fd7cf2ad125ac5cf168ef577d71dfb0e893e182f39be6ad186ddc642d87c40041a5"; }
+ { locale = "ro"; arch = "linux-x86_64"; sha512 = "b62c54b8694b4a662c1d336056d404a8d432ba0a3d4f2964b5c5acc0e39b668fd228105e1c4e307bfab1acfa5c3ce223db4229df01866cdbbc7c1ac95e70fe2c"; }
+ { locale = "ru"; arch = "linux-i686"; sha512 = "6ebd3b3a1f3613905313129cde7cf113bdd777fd0f600496231ba813a95b04309b25016dd69891d31189a93ccad3f87b9c69d54d6219ad39dd38d1181b1f3102"; }
+ { locale = "ru"; arch = "linux-x86_64"; sha512 = "539a22d13587cdcc21b6f76ff24ccfd1df98cbaaacac802aed46ba8f2bfed27cb2f3e5c146cbd2c3559aaff22297e692030b9612041a05a6bfca08f49bf0d2fb"; }
+ { locale = "si"; arch = "linux-i686"; sha512 = "bb0d1621f5b9af886fca0ea7cf7fd851d7c22d2d8f279a7b88e9bce98be33ad7b75d6a51ab47ea859802ed39b467815db60409285afaa0bbf4bb1ce6d590eabc"; }
+ { locale = "si"; arch = "linux-x86_64"; sha512 = "90337d193df7db41a1384856938bb62212952a80144dcc319a725a9b567ffd4deb7bb7af89b57891d3c17499ff466990e656edf7d0b017b8f4e0370aab445477"; }
+ { locale = "sk"; arch = "linux-i686"; sha512 = "23a15e6ad5ce9b03c218be4e26e603a412de4d870d5f64b599ae511bfc66bf2cf04613cc06fc1a054d06b80435e284456c0b08e33f34d8c9482f5ca23da6ae62"; }
+ { locale = "sk"; arch = "linux-x86_64"; sha512 = "a86cbed60f65e4ebb36c614d846fbb2515945112fd4f2482c3a63b49a62c3acb310f050dcbd57cc76a808c049eefd8f779d6aeea53362dd81798bb8d7177c86a"; }
+ { locale = "sl"; arch = "linux-i686"; sha512 = "8ae008f0077081ef40de3bf08c2de294231f41439a83d8a41a485f53e95ba3f4fc6ef03d6ac98e8848c3f3dad290978f1607d8c847f1622bd86b7d38cd0be730"; }
+ { locale = "sl"; arch = "linux-x86_64"; sha512 = "34efb560c65329c7f3f6b341cc49ac4952f24e6e9b34e7f5bd45d98618a4d03ac89c6f62580223efd2d37db24a03f76a54381d4162f5430b887122bb56eb49d9"; }
+ { locale = "son"; arch = "linux-i686"; sha512 = "d3e5a25fbc4a786239a7ae543fefb7b7e3ecc34192c8326af915f18b9b08436656bf68faa4953a34bdc464e32305baecce800f91ef0152bb4b4a8323ab448f33"; }
+ { locale = "son"; arch = "linux-x86_64"; sha512 = "ffee5d1a23e91911fd1dedb5ecf24bfc6b1733fb582e64a5e07d4df4b7afd9a6c502a70ab3af6624b4594f5ddcd81bc8962ede5b693cc035a96a561389f6bfca"; }
+ { locale = "sq"; arch = "linux-i686"; sha512 = "1cbaf8c32d1d3205cd85127839eed11b416903960c9e411b9adc71c42ba4add47acddd32a9217bb68f27b90d6765892edf2d356e21235c5bfd5cf69d1ee719f9"; }
+ { locale = "sq"; arch = "linux-x86_64"; sha512 = "16d93961a53ecc3e1ae3480be9e34f2a22dec2bdab55dbd35d1ea79ecf2ee48f195380bd52efc7d39529601610793b75daadeeb54dd76c9a3702c786af25acdd"; }
+ { locale = "sr"; arch = "linux-i686"; sha512 = "0b2c5234f1787cd972fad398dc270766fbc3015dc1bba29755e5316f207af9f5787d4aa41e96cffd2c9d31c57a5d1896e63fcd04e6235a4a6798469e738fa10d"; }
+ { locale = "sr"; arch = "linux-x86_64"; sha512 = "e7c7e7ff7fd81ca86f45997faed7244e4d807c3e5ad7ed66d6feb38c3e9173eaf136bd34af690ce28534f0c531c7f1d11595ec6502dfa42778cc19dee4334c49"; }
+ { locale = "sv-SE"; arch = "linux-i686"; sha512 = "dffb94b0ddb4b9d2effba3894b408c9f191f2079dc4b47e214347a235c9bf1adf77e520465691d14a274c3f3344c7f8b7d41965051d506728347e0af1117ad27"; }
+ { locale = "sv-SE"; arch = "linux-x86_64"; sha512 = "b601906d28f071c6beb3dbd6b37fa68f50809c9c47c9db69d631127ccc7b784e7d3b278aea6de060b34d83b6c78137da32b77f8e17ed199c3213b89dd9391264"; }
+ { locale = "ta"; arch = "linux-i686"; sha512 = "1a496470ef8e0899bfce66b41490f54d4d32776eaf60aca8725c4732512f1d3befb2e1fc3b942ebea95fe2359509c43d41649e5f90498264b8e02a3352244260"; }
+ { locale = "ta"; arch = "linux-x86_64"; sha512 = "00e6dbc43ad3c77693903fe534722094826637698df691b266eb801b27cd5e63502c21ca3e34ff939a7645a1f75d36fce6154626019eb96bc73cc39ab845c952"; }
+ { locale = "te"; arch = "linux-i686"; sha512 = "70ed539571cadf241f819b68ff24829db32f56287aadab31656fdf66c0ed94ccc6cc11b6cef6e2e963203cda47af2c6032db6e5689c37aaaf495b1e4fa970207"; }
+ { locale = "te"; arch = "linux-x86_64"; sha512 = "d491acd4635ab9b22f76531740c7ee7a85832678aef9ed646e75f56755c02538440adeea71e9ca5a7a5e11f3f2f6941c3c4c1e47380547179f63baaf6c20ad07"; }
+ { locale = "th"; arch = "linux-i686"; sha512 = "0414f74c6266fc204f2741b6860f7919c957364bd56ccc2cec5ef4b9c4be812c554ab584e6ce53387e6b7a18ad02991a44d9507a16da59a4aabfd44e7fb5b754"; }
+ { locale = "th"; arch = "linux-x86_64"; sha512 = "2952cceaecdd4013882150e8158607639e4ab2cffdef563d4fd1a015c41f1eff6c5ac22c0b9301a05ab6f9fef9659d54916275d5a50d97ad43bf69f10da7b3c8"; }
+ { locale = "tr"; arch = "linux-i686"; sha512 = "c5c6273bae2b9a46108a433af3a85b5cbbba4cd3154ee124ccc49f46c4a76264836a76d1b2da4b1064e9a913cc9fe461911c53e44f40343c5f780be04da932e5"; }
+ { locale = "tr"; arch = "linux-x86_64"; sha512 = "f0b5bef1ea4b948d699a79d902055d5b31afbe5c4f1814d98cadef1ca820ce39212ec009f68d875860a48942e9d797bda88eec4f6ed591dd8b3b260e04170974"; }
+ { locale = "uk"; arch = "linux-i686"; sha512 = "3a069ba914716ce122c4a89612988708d811b9350d333aab203dde212527c0e0cc86ec4781e6aa23f40b77f2266f76eca366cf355651870f43e180b97aa25c43"; }
+ { locale = "uk"; arch = "linux-x86_64"; sha512 = "db7931aa3f1d150e4b5b8c87b9d069df4a515fb2aa5e250b8f8a1bae0d8fd9a210ae949df056c47e3c88e8faf28f2571311ce2d6f179e3365720b42f1335b546"; }
+ { locale = "uz"; arch = "linux-i686"; sha512 = "110a82749e187f39d77f63b16ad515218e5512e5974916e4145e625a40d797e23fdbb5d110a23f061448cfc3d3c597858636c9304e941a34c68368f749c3c900"; }
+ { locale = "uz"; arch = "linux-x86_64"; sha512 = "1dbf94cef034449e8d1342822384bf1761dc61748e2d876aec1ac628dd161f92b62da832fe397b2fe4f8a1b82f9adf1c3690f26e07ee3e48c6299f95969533cf"; }
+ { locale = "vi"; arch = "linux-i686"; sha512 = "af97e1dcfc9bfbdce95a5cd35025b2540ad928d3238863471116e071a51b354b7818577bc3e7427c513e7b335bc1510605ba3ad1a37221389de7c7fedf6e2103"; }
+ { locale = "vi"; arch = "linux-x86_64"; sha512 = "cc938935395e66ef721fdbb8c8b781ef648b5419393ed1687a116a4d9ae12dd18f2edbc8287235504aa6782bbd6a41f9f5dd89c9c712ed4980fb9fa44f46ef38"; }
+ { locale = "xh"; arch = "linux-i686"; sha512 = "a76dbac054cdb7f5c194766dc54f215de4cb4cca4aacd7c883e0e3632b9dfc18cc25d7a54788e213bc65c894dd26ca9b863199b55b649133f93da9fed9a58fe4"; }
+ { locale = "xh"; arch = "linux-x86_64"; sha512 = "cfd8bbb81637c19464ec34788254740e999c13bc8a64b4289b0e1c64f76d711a5a5a8380995271f309444032739066f06334da2f81b6ca2b2be33ff55d3ff402"; }
+ { locale = "zh-CN"; arch = "linux-i686"; sha512 = "d11637b0c28aa1c45b315322ff12392e133aebe21f435564da278b9e301f0c8515ccb721df2bd55c175c48c3e24934837abbba4b84c9fa659b7a58db1da68f04"; }
+ { locale = "zh-CN"; arch = "linux-x86_64"; sha512 = "27a06d87f23eaeec170d1ea7f3df636198bfd4787001e178948fe9b8a3f1aafff3be59b9d01ed5b5851902b550601f061e923a4cda3a972f0ac68928cab28577"; }
+ { locale = "zh-TW"; arch = "linux-i686"; sha512 = "7c6ef5592b273749ccbf7b37c09984b11722beb7f49d4ed25555b84f0521e0dbac5197c7642ac508a21a1a40c5578dcfb49310858819875cc9407c85426d599a"; }
+ { locale = "zh-TW"; arch = "linux-x86_64"; sha512 = "9ccce84a292144f3758190ff2858c077d1e7ec6d49ff5e1efb404b8dfb3bcfebf96eab15d0ec32325e4d96d94f4c6bcc67f4e43dd22af418b822d82a2afaf6f1"; }
];
}
diff --git a/pkgs/applications/networking/browsers/firefox/default.nix b/pkgs/applications/networking/browsers/firefox/default.nix
index c3afa9dc95f..eaa60084b6d 100644
--- a/pkgs/applications/networking/browsers/firefox/default.nix
+++ b/pkgs/applications/networking/browsers/firefox/default.nix
@@ -99,7 +99,7 @@ common = { pname, version, sha512 }: stdenv.mkDerivation rec {
postInstall =
''
# For grsecurity kernels
- paxmark m $out/lib/${pname}-${version}/{firefox,firefox-bin,plugin-container}
+ paxmark m $out/lib/firefox-[0-9]*/{firefox,firefox-bin,plugin-container}
# Remove SDK cruft. FIXME: move to a separate output?
rm -rf $out/share/idl $out/include $out/lib/firefox-devel-*
@@ -135,14 +135,14 @@ in {
firefox-unwrapped = common {
pname = "firefox";
- version = "47.0";
- sha512 = "35275e5595e7f01a232e5ea6d7899857d0a1d7eab640fe614ef66c865abedae3e08bc6c0cde13165d53140ccf6f721bbcd583d091032e119d44884287393c223";
+ version = "47.0.1";
+ sha512 = "f79c53b9acf0d96917aa11e57092a4e540ce694471123ef8e616e15864195fab7b37235ebd37367e4d0cc8e594a881a30c973075cc97346ef6f88d92944c0312";
};
firefox-esr-unwrapped = common {
pname = "firefox-esr";
- version = "45.1.1esr";
- sha512 = "ee6bccdf01450c5b371e31c35f5bb084ad49f796fcc9cf3a346646972044ad85ce198cc34b697c32e2d3ad1e25955ef5b91b68790704ecaa4de9d3a412914fc7";
+ version = "45.2.0esr";
+ sha512 = "fd67353cff9400080a311af92562b1ed26d20ca2229e32e8c8289b364ebe27fd501eed78c72b614e0501c3841ae9b17f2102158fbeef5083bee8c12d952660e6";
};
}
diff --git a/pkgs/applications/networking/browsers/kwebkitpart/default.nix b/pkgs/applications/networking/browsers/kwebkitpart/default.nix
index 56147883f4b..1cbffdd2544 100644
--- a/pkgs/applications/networking/browsers/kwebkitpart/default.nix
+++ b/pkgs/applications/networking/browsers/kwebkitpart/default.nix
@@ -19,7 +19,7 @@ stdenv.mkDerivation rec {
meta = with stdenv.lib; {
platforms = platforms.linux;
maintainers = [ maintainers.phreedom ];
- description = "a WebKit KPart for Konqueror, Akregator and other KDE applications";
+ description = "A WebKit KPart for Konqueror, Akregator and other KDE applications";
homepage = https://projects.kde.org/projects/extragear/base/kwebkitpart;
};
}
diff --git a/pkgs/applications/networking/browsers/links2/default.nix b/pkgs/applications/networking/browsers/links2/default.nix
index 4ea6e619b17..148e20f1bbc 100644
--- a/pkgs/applications/networking/browsers/links2/default.nix
+++ b/pkgs/applications/networking/browsers/links2/default.nix
@@ -8,12 +8,12 @@
}:
stdenv.mkDerivation rec {
- version = "2.12";
+ version = "2.13";
name = "links2-${version}";
src = fetchurl {
url = "${meta.homepage}/download/links-${version}.tar.bz2";
- sha256 = "0knq15yrp60s4jh92aacw8yfc2pcv3bqsw7dba7h5s6ivq8ihhcq";
+ sha256 = "c252095334a3b199fa791c6f9a9affe2839a7fbd536685ab07851cb7efaa4405";
};
buildInputs =
diff --git a/pkgs/applications/networking/browsers/luakit/default.nix b/pkgs/applications/networking/browsers/luakit/default.nix
index 2777cb15fca..163eb8cf589 100644
--- a/pkgs/applications/networking/browsers/luakit/default.nix
+++ b/pkgs/applications/networking/browsers/luakit/default.nix
@@ -48,8 +48,8 @@ stdenv.mkDerivation {
--prefix GIO_EXTRA_MODULES : "${glib_networking.out}/lib/gio/modules" \
--prefix XDG_DATA_DIRS : "${gsettings_desktop_schemas}/share:$out/usr/share/:$out/share/:$GSETTINGS_SCHEMAS_PATH" \
--prefix XDG_CONFIG_DIRS : "$out/etc/xdg" \
- --set LUA_PATH '"${luaKitPath};${luaPath};"' \
- --set LUA_CPATH '"${luaCPath};"'
+ --set LUA_PATH '${luaKitPath};${luaPath};' \
+ --set LUA_CPATH '${luaCPath};'
'';
}
diff --git a/pkgs/applications/networking/browsers/mozilla-plugins/bluejeans/default.nix b/pkgs/applications/networking/browsers/mozilla-plugins/bluejeans/default.nix
index 6abc2bc7fc4..574fd9efdd4 100644
--- a/pkgs/applications/networking/browsers/mozilla-plugins/bluejeans/default.nix
+++ b/pkgs/applications/networking/browsers/mozilla-plugins/bluejeans/default.nix
@@ -17,11 +17,11 @@ in
stdenv.mkDerivation rec {
name = "bluejeans-${version}";
- version = "2.155.17.5";
+ version = "2.160.63.8";
src = fetchurl {
url = "https://swdl.bluejeans.com/skinny/bjnplugin_${version}-1_amd64.deb";
- sha256 = "1vszk0nrnpji4lm2pndq11kfcrcq1xccjbif9nkm15s3hcb1b66m";
+ sha256 = "1sfz9xvvrbw7gg7fxxwg9wmgbxgv3fa14p7i4m85mg10l3qxaqfc";
};
phases = [ "unpackPhase" "installPhase" "fixupPhase" ];
diff --git a/pkgs/applications/networking/browsers/mozilla-plugins/flashplayer-11/default.nix b/pkgs/applications/networking/browsers/mozilla-plugins/flashplayer-11/default.nix
index 959348fa65e..5ed1636aa65 100644
--- a/pkgs/applications/networking/browsers/mozilla-plugins/flashplayer-11/default.nix
+++ b/pkgs/applications/networking/browsers/mozilla-plugins/flashplayer-11/default.nix
@@ -70,11 +70,11 @@ let
in
stdenv.mkDerivation rec {
name = "flashplayer-${version}";
- version = "11.2.202.621";
+ version = "11.2.202.632";
src = fetchurl {
url = "https://fpdownload.macromedia.com/pub/flashplayer/installers/archive/fp_${version}_archive.zip";
- sha256 = "0xv7pzna4pfmi9bjwfbr0kf92xvdgpirm97kks4kphwngf3bzrm0";
+ sha256 = "0nf2d7jn8g6bp9vilkwwkkh6pm05fg3h73njsn4yvx3285k73lpn";
};
nativeBuildInputs = [ unzip ];
diff --git a/pkgs/applications/networking/browsers/mozilla-plugins/trezor/default.nix b/pkgs/applications/networking/browsers/mozilla-plugins/trezor/default.nix
index ad3c1a715b3..db871c0c9a5 100644
--- a/pkgs/applications/networking/browsers/mozilla-plugins/trezor/default.nix
+++ b/pkgs/applications/networking/browsers/mozilla-plugins/trezor/default.nix
@@ -39,6 +39,9 @@ stdenv.mkDerivation {
homepage = https://mytrezor.com;
license = licenses.unfree;
maintainers = with maintainers; [ ehmry ];
+ # Download URL, .deb content & hash (yikes) changed, not version.
+ # New archive doesn't contain any Mozilla plugin at all.
+ broken = true;
};
}
\ No newline at end of file
diff --git a/pkgs/applications/networking/browsers/qutebrowser/default.nix b/pkgs/applications/networking/browsers/qutebrowser/default.nix
index 93aff9498df..2812be0f172 100644
--- a/pkgs/applications/networking/browsers/qutebrowser/default.nix
+++ b/pkgs/applications/networking/browsers/qutebrowser/default.nix
@@ -1,8 +1,8 @@
{ stdenv, fetchurl, python, buildPythonApplication, qtmultimedia, pyqt5
, jinja2, pygments, pyyaml, pypeg2, gst-plugins-base, gst-plugins-good
-, gst-plugins-bad, gst-libav, wrapGAppsHook, glib_networking }:
+, gst-plugins-bad, gst-libav, wrapGAppsHook, glib_networking, makeQtWrapper }:
-let version = "0.6.1"; in
+let version = "0.7.0"; in
buildPythonApplication rec {
name = "qutebrowser-${version}";
@@ -10,13 +10,14 @@ buildPythonApplication rec {
src = fetchurl {
url = "https://github.com/The-Compiler/qutebrowser/releases/download/v${version}/${name}.tar.gz";
- sha256 = "1xb95yjc390h7f75l1jk252qiwcamgz2bls2978mmjkhf5hm3jm0";
+ sha256 = "17xvv4h86frcn7zmi0y9gjsz2cazlb59v3dqi9mdc11w00b1cqbn";
};
# Needs tox
doCheck = false;
- buildInputs = [ wrapGAppsHook
+ buildInputs = [ wrapGAppsHook makeQtWrapper
+ qtmultimedia
gst-plugins-base gst-plugins-good gst-plugins-bad gst-libav
glib_networking ];
@@ -24,8 +25,9 @@ buildPythonApplication rec {
python pyyaml pyqt5 jinja2 pygments pypeg2
];
- makeWrapperArgs = ''
- --prefix QT_PLUGIN_PATH : "${qtmultimedia}/lib/qt5/plugins"
+ postInstall = ''
+ mv $out/bin/qutebrowser $out/bin/.qutebrowser-noqtpath
+ makeQtWrapper $out/bin/.qutebrowser-noqtpath $out/bin/qutebrowser
'';
meta = {
diff --git a/pkgs/applications/networking/browsers/vivaldi/default.nix b/pkgs/applications/networking/browsers/vivaldi/default.nix
index 107de678425..95a1e621b07 100644
--- a/pkgs/applications/networking/browsers/vivaldi/default.nix
+++ b/pkgs/applications/networking/browsers/vivaldi/default.nix
@@ -10,16 +10,16 @@
}:
let
- version = "1.1";
- build = "453.47-1";
+ version = "1.2";
+ build = "490.39-1";
fullVersion = "stable_${version}.${build}";
info = if stdenv.is64bit then {
arch = "amd64";
- sha256 = "09kadsi4ydjciq092i6linapqzjdzx915zqmz7vfq6w1yp9mqbwq";
+ sha256 = "188fb91f1eb41e1dcaeda982567260adb6c004f4df00de55eed962e6ca7c621e";
} else {
arch = "i386";
- sha256 = "0b5410phnkpg6sz0j345vdn0r6n89rm865bchqw8p4kx7pmy78z3";
+ sha256 = "0c699a0d7ced5e77c41a85e81077a1b4561d64071ec89e0e875a1c55e78634eb";
};
in stdenv.mkDerivation rec {
product = "vivaldi";
diff --git a/pkgs/applications/networking/cluster/habitat/chroot-env.nix b/pkgs/applications/networking/cluster/habitat/chroot-env.nix
new file mode 100644
index 00000000000..7d6b3749904
--- /dev/null
+++ b/pkgs/applications/networking/cluster/habitat/chroot-env.nix
@@ -0,0 +1,9 @@
+# TODO: Drop once https://github.com/habitat-sh/habitat/issues/994
+# is resolved.
+{ habitat, libsodium, libarchive, openssl, buildFHSUserEnv }:
+
+buildFHSUserEnv {
+ name = "habitat-sh";
+ targetPkgs = pkgs: [ habitat libsodium libarchive openssl ];
+ runScript = "bash";
+}
diff --git a/pkgs/applications/networking/cluster/habitat/default.nix b/pkgs/applications/networking/cluster/habitat/default.nix
new file mode 100644
index 00000000000..da82dac0019
--- /dev/null
+++ b/pkgs/applications/networking/cluster/habitat/default.nix
@@ -0,0 +1,32 @@
+{ stdenv, lib, fetchFromGitHub, rustPlatform, pkgconfig
+, libsodium, libarchive, openssl }:
+
+with rustPlatform;
+
+buildRustPackage rec {
+ name = "habitat-${version}";
+ version = "0.8.0";
+
+ src = fetchFromGitHub {
+ owner = "habitat-sh";
+ repo = "habitat";
+ rev = version;
+ sha256 = "1h9wv2v4hcv79jkkjf8j96lzxni9d51755zfflfr5s3ayaip7rzj";
+ };
+
+ sourceRoot = "habitat-${version}-src/components/hab";
+
+ depsSha256 = "1612jaw3zdrgrb56r755bb18l8szdmf1wi7p9lpv3d2gklqcb7l1";
+
+ buildInputs = [ libsodium libarchive openssl ];
+
+ nativeBuildInputs = [ pkgconfig ];
+
+ meta = with lib; {
+ description = "An application automation framework";
+ homepage = https://www.habitat.sh;
+ license = licenses.asl20;
+ maintainers = [ maintainers.rushmorem ];
+ platforms = [ "x86_64-linux" "x86_64-darwin" ];
+ };
+}
diff --git a/pkgs/applications/networking/cluster/hadoop/default.nix b/pkgs/applications/networking/cluster/hadoop/default.nix
index 96d263a525e..925fe19d72e 100644
--- a/pkgs/applications/networking/cluster/hadoop/default.nix
+++ b/pkgs/applications/networking/cluster/hadoop/default.nix
@@ -30,7 +30,7 @@ stdenv.mkDerivation rec {
meta = {
homepage = "http://hadoop.apache.org/";
- description = "framework for distributed processing of large data sets across clusters of computers";
+ description = "Framework for distributed processing of large data sets across clusters of computers";
license = stdenv.lib.licenses.asl20;
longDescription = ''
diff --git a/pkgs/applications/networking/cluster/nomad/default.nix b/pkgs/applications/networking/cluster/nomad/default.nix
index b718447e8f8..4ca54811ce8 100644
--- a/pkgs/applications/networking/cluster/nomad/default.nix
+++ b/pkgs/applications/networking/cluster/nomad/default.nix
@@ -2,7 +2,7 @@
buildGoPackage rec {
name = "nomad-${version}";
- version = "0.3.2";
+ version = "0.4.0";
rev = "v${version}";
goPackagePath = "github.com/hashicorp/nomad";
@@ -12,14 +12,14 @@ buildGoPackage rec {
owner = "hashicorp";
repo = "nomad";
inherit rev;
- sha256 = "1m2pdragpzrq0xbmnba039iiyhb16wirj3n1s52z5r8r0mr7drai";
+ sha256 = "0c6qrprb33fb3y4d1xn3df0nvh0hsnqccq6xaab0jb40cbz3048p";
};
meta = with stdenv.lib; {
homepage = https://www.nomadproject.io/;
- license = licenses.mpl20;
description = "A Distributed, Highly Available, Datacenter-Aware Scheduler";
platforms = platforms.linux;
+ license = licenses.mpl20;
maintainers = with maintainers; [ rushmorem ];
};
}
diff --git a/pkgs/applications/networking/cluster/terraform/default.nix b/pkgs/applications/networking/cluster/terraform/default.nix
index 1ce86cac5c5..3d1834ce9b6 100644
--- a/pkgs/applications/networking/cluster/terraform/default.nix
+++ b/pkgs/applications/networking/cluster/terraform/default.nix
@@ -2,16 +2,16 @@
buildGoPackage rec {
name = "terraform-${version}";
- version = "0.6.15";
+ version = "0.6.16";
rev = "v${version}";
-
+
goPackagePath = "github.com/hashicorp/terraform";
src = fetchFromGitHub {
inherit rev;
owner = "hashicorp";
repo = "terraform";
- sha256 = "1mf98hagb0yp40g2mbar7aw7hmpq01clnil6y9khvykrb33vy0nb";
+ sha256 = "1bg8hn4b31xphyxrc99bpnf7gmq20fxqx1k871nidx132brcsah2";
};
postInstall = ''
diff --git a/pkgs/applications/networking/davmail/default.nix b/pkgs/applications/networking/davmail/default.nix
index 5fc770624c2..d4dd13b880d 100644
--- a/pkgs/applications/networking/davmail/default.nix
+++ b/pkgs/applications/networking/davmail/default.nix
@@ -1,10 +1,10 @@
{ fetchurl, stdenv, jre, glib, libXtst, gtk, makeWrapper }:
stdenv.mkDerivation rec {
- name = "davmail-4.7.1";
+ name = "davmail-4.7.2";
src = fetchurl {
url = "mirror://sourceforge/davmail/4.7.1/davmail-linux-x86_64-4.7.1-2416.tgz";
- sha256 = "c3bf1a3a94f35586a3a8d2d28cdaf8c9514a8cf904a51fd74961e93909c9d2a4";
+ sha256 = "196jr44kksb197biz984z664llf9z3d8rlnjm2iqcmgkjhx1mgy3";
};
buildInputs = [ makeWrapper ];
diff --git a/pkgs/applications/networking/dropbox/default.nix b/pkgs/applications/networking/dropbox/default.nix
index 1f10751cd5b..e0fa18dcb42 100644
--- a/pkgs/applications/networking/dropbox/default.nix
+++ b/pkgs/applications/networking/dropbox/default.nix
@@ -3,6 +3,7 @@
, libdrm, libffi, libICE, libSM
, libX11, libXcomposite, libXext, libXmu, libXrender, libxcb
, libxml2, libxslt, ncurses, zlib
+, qtbase, qtdeclarative, qtquick1, qtwebkit
}:
# this package contains the daemon version of dropbox
@@ -20,12 +21,13 @@
# them with our own.
let
- # NOTE: When updating, please also update in current stable, as older versions stop working
- version = "3.20.1";
+ # NOTE: When updating, please also update in current stable,
+ # as older versions stop working
+ version = "4.4.29";
sha256 =
{
- "x86_64-linux" = "170xnrxlsadl5iw96276f8l3w687l6n5j5m8z4djsfqqr3lqjxvg";
- "i686-linux" = "0a7k56ib2qp5560wmbk7b30pqf7h9h7rjnq850993gn9lfwz81q2";
+ "x86_64-linux" = "1ff01vqi9jiwhkqm81rh321bsz4brl11xal2xzm9gll7s2m8lz06";
+ "i686-linux" = "0lwvvyxy5xyxh0b2g8a9bdy0y2hgpbak4n6q6b30167fvpj1ad1i";
}."${stdenv.system}" or (throw "system ${stdenv.system} not supported");
arch =
@@ -42,6 +44,8 @@ let
dbus_libs fontconfig freetype gcc.cc glib libdrm libffi libICE libSM
libX11 libXcomposite libXext libXmu libXrender libxcb libxml2 libxslt
ncurses zlib
+
+ qtbase qtdeclarative qtquick1 qtwebkit
];
desktopItem = makeDesktopItem {
@@ -77,6 +81,19 @@ in stdenv.mkDerivation {
rm "$out/${appdir}/libGL.so.1"
rm "$out/${appdir}/libX11-xcb.so.1"
+ rm "$out/${appdir}/libQt5Core.so.5"
+ rm "$out/${appdir}/libQt5DBus.so.5"
+ rm "$out/${appdir}/libQt5Gui.so.5"
+ rm "$out/${appdir}/libQt5Network.so.5"
+ rm "$out/${appdir}/libQt5OpenGL.so.5"
+ rm "$out/${appdir}/libQt5PrintSupport.so.5"
+ rm "$out/${appdir}/libQt5Qml.so.5"
+ rm "$out/${appdir}/libQt5Quick.so.5"
+ rm "$out/${appdir}/libQt5Sql.so.5"
+ rm "$out/${appdir}/libQt5WebKit.so.5"
+ rm "$out/${appdir}/libQt5WebKitWidgets.so.5"
+ rm "$out/${appdir}/libQt5XcbQpa.so.5"
+
mkdir -p "$out/share/applications"
cp "${desktopItem}/share/applications/"* $out/share/applications
diff --git a/pkgs/applications/networking/errbot/default.nix b/pkgs/applications/networking/errbot/default.nix
new file mode 100644
index 00000000000..5b8140bfa51
--- /dev/null
+++ b/pkgs/applications/networking/errbot/default.nix
@@ -0,0 +1,36 @@
+{ stdenv, fetchurl, pythonPackages }:
+
+pythonPackages.buildPythonPackage rec {
+ name = "errbot-${version}";
+ version = "4.2.2";
+
+ src = fetchurl {
+ url = "mirror://pypi/e/errbot/${name}.tar.gz";
+ sha256 = "1f1nw4m58dvmw0a37gbnihgdxxr3sz0l39653jigq9ysh3nznifv";
+ };
+
+ disabled = !pythonPackages.isPy3k;
+
+ patches = [
+ ./fix-dnspython.patch
+ ];
+
+ buildInputs = with pythonPackages; [
+ pep8 mock pytest pytest_xdist
+ ];
+
+ propagatedBuildInputs = with pythonPackages; [
+ webtest bottle threadpool rocket-errbot requests2 jinja2
+ pyopenssl colorlog Yapsy markdown ansi pygments dns pep8
+ daemonize pygments-markdown-lexer telegram irc slackclient
+ pyside sleekxmpp hypchat
+ ];
+
+ meta = with stdenv.lib; {
+ description = "Chatbot designed to be simple to extend with plugins written in Python";
+ homepage = http://errbot.io/;
+ maintainers = with maintainers; [ fpletz ];
+ license = licenses.gpl3;
+ platforms = platforms.unix;
+ };
+}
diff --git a/pkgs/applications/networking/errbot/fix-dnspython.patch b/pkgs/applications/networking/errbot/fix-dnspython.patch
new file mode 100644
index 00000000000..7e2b037d78d
--- /dev/null
+++ b/pkgs/applications/networking/errbot/fix-dnspython.patch
@@ -0,0 +1,13 @@
+diff --git a/setup.py b/setup.py
+index d57d4e8..9d036fc 100755
+--- a/setup.py
++++ b/setup.py
+@@ -58,7 +58,7 @@ if PY2:
+ 'backports.functools_lru_cache',
+ 'configparser>=3.5.0b2'] # This is a backport from Python 3
+ else:
+- deps += ['dnspython3', ] # dnspython3 for SRV records
++ deps += ['dnspython', ] # dnspython for SRV records
+
+ if not PY35_OR_GREATER:
+ deps += ['typing', ] # backward compatibility for 3.3 and 3.4
diff --git a/pkgs/applications/networking/feedreaders/canto-curses/default.nix b/pkgs/applications/networking/feedreaders/canto-curses/default.nix
index 37736d6edd7..3db20d3de4c 100644
--- a/pkgs/applications/networking/feedreaders/canto-curses/default.nix
+++ b/pkgs/applications/networking/feedreaders/canto-curses/default.nix
@@ -1,14 +1,14 @@
{ stdenv, fetchFromGitHub, python34Packages, readline, ncurses, canto-daemon }:
python34Packages.buildPythonApplication rec {
- version = "0.9.6";
+ version = "0.9.7";
name = "canto-curses-${version}";
src = fetchFromGitHub {
owner = "themoken";
repo = "canto-curses";
rev = "v${version}";
- sha256 = "0hxzpx314cflxq68gswjf2vrqf1z1ci9mxhxgwrk7sa6di86ygy0";
+ sha256 = "0ap1b4m5gbzi0l7vj6pwvvg77i2aarbynbdc147z2b1lzvr985zq";
};
buildInputs = [ readline ncurses canto-daemon ];
diff --git a/pkgs/applications/networking/feedreaders/canto-daemon/default.nix b/pkgs/applications/networking/feedreaders/canto-daemon/default.nix
index b6f0ff19dc3..18837299e93 100644
--- a/pkgs/applications/networking/feedreaders/canto-daemon/default.nix
+++ b/pkgs/applications/networking/feedreaders/canto-daemon/default.nix
@@ -1,7 +1,7 @@
{ stdenv, fetchFromGitHub, python34Packages, }:
python34Packages.buildPythonApplication rec {
- version = "0.9.5";
+ version = "0.9.6";
name = "canto-daemon-${version}";
namePrefix = "";
@@ -9,7 +9,7 @@ python34Packages.buildPythonApplication rec {
owner = "themoken";
repo = "canto-next";
rev = "v${version}";
- sha256 = "1ycwrg5n2il833mdxgzz07r0vb4rxz89rk5c6l9g5x33ifinykdq";
+ sha256 = "0ibakwmsbpk10bvxsr5vvka0pks89arric428y5cmfgcpr72sqzw";
};
propagatedBuildInputs = with python34Packages; [ feedparser ];
diff --git a/pkgs/applications/networking/ftp/filezilla/default.nix b/pkgs/applications/networking/ftp/filezilla/default.nix
index 7fa944d86c0..5d92f7455d6 100644
--- a/pkgs/applications/networking/ftp/filezilla/default.nix
+++ b/pkgs/applications/networking/ftp/filezilla/default.nix
@@ -1,13 +1,13 @@
{ stdenv, fetchurl, dbus, gnutls, wxGTK30, libidn, tinyxml, gettext
, pkgconfig, xdg_utils, gtk2, sqlite, pugixml, libfilezilla, nettle }:
-let version = "3.17.0.1"; in
+let version = "3.19.0"; in
stdenv.mkDerivation {
name = "filezilla-${version}";
src = fetchurl {
url = "mirror://sourceforge/project/filezilla/FileZilla_Client/${version}/FileZilla_${version}_src.tar.bz2";
- sha256 = "0ai3a0nys3yjmlvlv57nli77x6x0a2r409b4f5w4kr9mi6f4z4a7";
+ sha256 = "0827z1jmn8pkzrcpjgh5yh2r23vgv73yb4rikraxa9i7l118g9l2";
};
configureFlags = [
diff --git a/pkgs/applications/networking/instant-messengers/gale/default.nix b/pkgs/applications/networking/instant-messengers/gale/default.nix
index 65f6cab6e81..21f2afdde68 100644
--- a/pkgs/applications/networking/instant-messengers/gale/default.nix
+++ b/pkgs/applications/networking/instant-messengers/gale/default.nix
@@ -24,7 +24,7 @@ stdenv.mkDerivation {
meta = with stdenv.lib; {
homepage = "http://gale.org/";
- description = "chat/messaging system (server and client)";
+ description = "Chat/messaging system (server and client)";
platforms = platforms.all;
license = licenses.gpl2Plus;
};
diff --git a/pkgs/applications/networking/instant-messengers/slack/default.nix b/pkgs/applications/networking/instant-messengers/slack/default.nix
index 1f2b5ebe7fa..669ab7d3bed 100644
--- a/pkgs/applications/networking/instant-messengers/slack/default.nix
+++ b/pkgs/applications/networking/instant-messengers/slack/default.nix
@@ -4,7 +4,7 @@
let
- version = "2.0.3";
+ version = "2.1.0";
rpath = stdenv.lib.makeLibraryPath [
alsaLib
@@ -42,7 +42,7 @@ let
if stdenv.system == "x86_64-linux" then
fetchurl {
url = "https://slack-ssb-updates.global.ssl.fastly.net/linux_releases/slack-desktop-${version}-amd64.deb";
- sha256 = "0pp8n1w9kmh3pph5kc6akdswl3z2lqwryjg9d267wgj62mslr3cg";
+ sha256 = "0p9ffcy3xva1jwaafw4kw424687838s6cn5dh82ncvcr1pnyk63b";
}
else
throw "Slack is not supported on ${stdenv.system}";
diff --git a/pkgs/applications/networking/instant-messengers/telegram/tdesktop/default.nix b/pkgs/applications/networking/instant-messengers/telegram/tdesktop/default.nix
index 9f398fbf954..70eedeb42d3 100644
--- a/pkgs/applications/networking/instant-messengers/telegram/tdesktop/default.nix
+++ b/pkgs/applications/networking/instant-messengers/telegram/tdesktop/default.nix
@@ -9,18 +9,40 @@
}:
let
+ /* Find the index of the first element in the list matching the specified
+ predicate or returns null if no such element exists.
+
+ Example:
+ findFirstIndex (x: x > 3) [ 1 6 4 ]
+ => 1
+ */
+ findFirstIndex = pred: list:
+ # Poor man's Either via a list.
+ let searchFun = old: curr:
+ if lib.isList old then old
+ else if pred curr then [old]
+ else old + 1;
+ res = lib.foldl searchFun 0 list;
+ in if lib.isList res then lib.elemAt res 0 else null;
+
+ extractVersion = ver:
+ let suffix = findFirstIndex (x: x == "-") (lib.stringToCharacters ver);
+ in if suffix == null then ver else lib.substring 0 suffix ver;
+
system-x86_64 = lib.elem stdenv.system lib.platforms.x86_64;
packagedQt = "5.6.0";
+ systemQt = extractVersion qtbase.version;
+
in stdenv.mkDerivation rec {
name = "telegram-desktop-${version}";
- version = "0.9.49";
+ version = "0.9.56";
qtVersion = lib.replaceStrings ["."] ["_"] packagedQt;
src = fetchFromGitHub {
owner = "telegramdesktop";
repo = "tdesktop";
rev = "v${version}";
- sha256 = "1smz0d07xcpv7kv5v739b5a8wrgv5fx0wy15d3zzm3s69418a6nc";
+ sha256 = "000ngg6arfb6mif0hvin099f83q3sn7mw4vfvrikskczblw3a5lc";
};
tgaur = fetchgit {
@@ -60,6 +82,7 @@ in stdenv.mkDerivation rec {
"INCLUDEPATH+=${dee}/include/dee-1.0"
"INCLUDEPATH+=${libdbusmenu-glib}/include/libdbusmenu-glib-0.4"
"INCLUDEPATH+=${breakpad}/include/breakpad"
+ "QT_TDESKTOP_VERSION=${systemQt}"
"LIBS+=-lcrypto"
"LIBS+=-lssl"
];
@@ -74,14 +97,14 @@ in stdenv.mkDerivation rec {
patchPhase
sed -i 'Telegram/Telegram.pro' \
-e 's,CUSTOM_API_ID,,g' \
- -e "s,/usr/local/tdesktop/Qt-[^/]*,$PWD/../qt,g" \
-e 's,/usr,/does-not-exist,g' \
-e '/LIBS += .*libxkbcommon.a/d' \
-e 's,LIBS += .*libz.a,LIBS += -lz,' \
-e 's,LIBS += .*libbreakpad_client.a,LIBS += ${breakpad}/lib/libbreakpad_client.a,' \
-e 's, -flto,,g' \
- -e 's, -static-libstdc++,,g' \
- -e 's,${packagedQt},${qtbase.version},g'
+ -e 's, -static-libstdc++,,g'
+
+ export qmakeFlags="$qmakeFlags QT_TDESKTOP_PATH=$PWD/../qt"
export QMAKE=$PWD/../qt/bin/qmake
( mkdir -p ../Libraries
@@ -90,7 +113,8 @@ in stdenv.mkDerivation rec {
tar -xaf $i
done
cd qtbase-*
- patch -p1 < ../../$sourceRoot/Telegram/Patches/qtbase_${qtVersion}.diff
+ # This patch is outdated but the fixes doesn't feel very important
+ patch -p1 < ../../$sourceRoot/Telegram/Patches/qtbase_${qtVersion}.diff || true
for i in $qtPatches; do
patch -p1 < $i
done
@@ -121,17 +145,17 @@ in stdenv.mkDerivation rec {
( mkdir -p Linux/obj/codegen_style/Debug
cd Linux/obj/codegen_style/Debug
- $QMAKE CONFIG+=debug ../../../../Telegram/build/qmake/codegen_style/codegen_style.pro
+ $QMAKE $qmakeFlags ../../../../Telegram/build/qmake/codegen_style/codegen_style.pro
buildPhase
)
( mkdir -p Linux/obj/codegen_numbers/Debug
cd Linux/obj/codegen_numbers/Debug
- $QMAKE CONFIG+=debug ../../../../Telegram/build/qmake/codegen_numbers/codegen_numbers.pro
+ $QMAKE $qmakeFlags ../../../../Telegram/build/qmake/codegen_numbers/codegen_numbers.pro
buildPhase
)
( mkdir -p Linux/DebugIntermediateLang
cd Linux/DebugIntermediateLang
- $QMAKE CONFIG+=debug ../../Telegram/MetaLang.pro
+ $QMAKE $qmakeFlags ../../Telegram/MetaLang.pro
buildPhase
)
diff --git a/pkgs/applications/networking/instant-messengers/tkabber/default.nix b/pkgs/applications/networking/instant-messengers/tkabber/default.nix
index 9c84e60601b..b4403a780ed 100644
--- a/pkgs/applications/networking/instant-messengers/tkabber/default.nix
+++ b/pkgs/applications/networking/instant-messengers/tkabber/default.nix
@@ -51,7 +51,7 @@ in mkTkabber (main // {
for prog in $out/bin/*; do
wrapProgram "$prog" \
--prefix PATH : "${tk}/bin" \
- --set TCLLIBPATH '"${tclLibPaths}"' \
+ --set TCLLIBPATH '${tclLibPaths}' \
${optionalString withSitePlugins ''
--set TKABBER_SITE_PLUGINS '${mkTkabber plugins}/share/tkabber-plugins'
''}
diff --git a/pkgs/applications/networking/instant-messengers/utox/default.nix b/pkgs/applications/networking/instant-messengers/utox/default.nix
index 8fd653534e2..227198ccd6b 100644
--- a/pkgs/applications/networking/instant-messengers/utox/default.nix
+++ b/pkgs/applications/networking/instant-messengers/utox/default.nix
@@ -3,13 +3,13 @@
stdenv.mkDerivation rec {
name = "utox-${version}";
- version = "0.9.0";
+ version = "0.9.4";
src = fetchFromGitHub {
owner = "GrayHatter";
repo = "uTox";
rev = "v${version}";
- sha256 = "12l2821m4r8p3vmsqhqhfj60yhkl4w4xfy73cvy73qqw6xf2yam1";
+ sha256 = "0kcz8idjsf3vc94ccxqkwnqdj5q1m8c720nsvixk25klzws2cshv";
};
buildInputs = [ pkgconfig libtoxcore-dev dbus libvpx libX11 openal freetype
diff --git a/pkgs/applications/networking/instant-messengers/viber/default.nix b/pkgs/applications/networking/instant-messengers/viber/default.nix
index 8e07bbf975b..f16ee8bd5cc 100644
--- a/pkgs/applications/networking/instant-messengers/viber/default.nix
+++ b/pkgs/applications/networking/instant-messengers/viber/default.nix
@@ -1,20 +1,20 @@
-{ fetchurl, stdenv, dpkg, makeWrapper, xorg, qt5Full, gstreamer, zlib, sqlite, libxslt }:
+{fetchurl, stdenv, dpkg, makeWrapper,
+ alsaLib, cups, curl, dbus, expat, fontconfig, freetype, glib, gst_all_1, harfbuzz, libcap,
+ libpulseaudio, mesa, nspr, nss, libudev, wayland, xorg, zlib, ...
+}:
assert stdenv.system == "x86_64-linux";
-# BUG: viber tries to access contacts list and that causes segfault
-# FIX: you have to do `chmod 444 ~/.ViberPC//Avatars`
-# BUG: viber tries to it's downloads and that causes segfault
-# FIX: you have to do `chmod 444 ~/Documents/ViberDownloads`
-# TODO: fix bugs
+# BUG: Viber requires running tray application, segfaulting if it's missing
+# FIX: Start something like `stalonetray` if you DE doesn't provide tray
stdenv.mkDerivation rec {
name = "viber-${version}";
- version = "4.2.2.6";
+ version = "6.0.1.5";
src = fetchurl {
url = "http://download.cdn.viber.com/cdn/desktop/Linux/viber.deb";
- sha256 = "1fv269z9sni21lc1ka25jnxr9w8zfg1gfn2c7fnd8cdd5fm57d26";
+ sha256 = "026vp2pv66b2dlwi5w5wk4yjnnmnsqapdww98p7xdnz8n0hnsbbi";
};
buildInputs = [ dpkg makeWrapper ];
@@ -22,36 +22,74 @@ stdenv.mkDerivation rec {
unpackPhase = "true";
libPath = stdenv.lib.makeLibraryPath [
- qt5Full
- xorg.libX11
- gstreamer
- zlib
- sqlite
- xorg.libXrender
- libxslt
+ alsaLib
+ cups
+ curl
+ dbus
+ expat
+ fontconfig
+ freetype
+ glib
+ gst_all_1.gst-plugins-base
+ gst_all_1.gstreamer
+ harfbuzz
+ libcap
+ libpulseaudio
+ mesa
+ nspr
+ nss
stdenv.cc.cc
- xorg.libXScrnSaver
+ libudev
+ wayland
+ zlib
+
+ xorg.libICE
+ xorg.libSM
+ xorg.libX11
+ xorg.libxcb
+ xorg.libXcomposite
+ xorg.libXcursor
+ xorg.libXdamage
xorg.libXext
- ];
+ xorg.libXfixes
+ xorg.libXi
+ xorg.libXrandr
+ xorg.libXrender
+ xorg.libXScrnSaver
+ xorg.libXtst
+ xorg.xcbutilimage
+ xorg.xcbutilkeysyms
+ xorg.xcbutilrenderutil
+ xorg.xcbutilwm
+ ]
+ ;
installPhase = ''
dpkg-deb -x $src $out
mkdir -p $out/bin
- mv $out/opt/viber/{Sound,icons,libqfacebook.so} $out
- mv $out/opt/viber/Viber $out/viber
- rm -rf $out/opt
- ln -s $out/viber $out/bin/viber
- mkdir -p usr/lib/mozilla/plugins
- patchelf \
- --set-rpath $libPath \
- $out/libqfacebook.so
- patchelf \
- --set-interpreter "$(cat $NIX_CC/nix-support/dynamic-linker)" \
- --set-rpath $libPath:$out \
- $out/viber
+ # Soothe nix-build "suspicions"
+ chmod -R g-w $out
- wrapProgram $out/viber --prefix LD_LIBRARY_PATH : $libPath:$out
+ for file in $(find $out -type f \( -perm /0111 -o -name \*.so\* \) ); do
+ patchelf --set-interpreter "$(cat $NIX_CC/nix-support/dynamic-linker)" "$file" || true
+ patchelf --set-rpath $libPath:$out/opt/viber/lib $file || true
+ done
+
+ # qt.conf is not working, so override everything using environment variables
+ wrapProgram $out/opt/viber/Viber \
+ --set QT_PLUGIN_PATH "$out/opt/viber/plugins" \
+ --set QT_XKB_CONFIG_ROOT "${xorg.xkeyboardconfig}/share/X11/xkb" \
+ --set QTCOMPOSE "${xorg.libX11}/share/X11/locale"
+ ln -s $out/opt/viber/Viber $out/bin/viber
+
+ mv $out/usr/share $out/share
+ rm -rf $out/usr
+
+ # Fix the desktop link
+ substituteInPlace $out/share/applications/viber.desktop \
+ --replace /opt/viber/Viber $out/opt/viber/Viber \
+ --replace /usr/share/ $out/share/
'';
dontStrip = true;
@@ -63,7 +101,6 @@ stdenv.mkDerivation rec {
license = stdenv.lib.licenses.unfree;
platforms = stdenv.lib.platforms.linux;
maintainers = with stdenv.lib.maintainers; [ jagajaga ];
- broken = true;
};
}
diff --git a/pkgs/applications/networking/instant-messengers/zoom-us/default.nix b/pkgs/applications/networking/instant-messengers/zoom-us/default.nix
new file mode 100644
index 00000000000..7f4a27cf9a2
--- /dev/null
+++ b/pkgs/applications/networking/instant-messengers/zoom-us/default.nix
@@ -0,0 +1,105 @@
+{ alsaLib
+, fetchurl
+, gcc
+, glib
+, gst_plugins_base
+, gstreamer
+, icu_54_1
+, libpulseaudio
+, libuuid
+, libxml2
+, libxslt
+, makeQtWrapper
+, qt55
+, sqlite
+, stdenv
+, xlibs
+, xorg
+, zlib
+}:
+
+stdenv.mkDerivation rec {
+ name = "zoom-us";
+ meta = {
+ homepage = http://zoom.us;
+ description = "zoom.us instant messenger";
+ license = stdenv.lib.licenses.unfree;
+ platforms = stdenv.lib.platforms.linux;
+ };
+
+ version = "2.0.52458.0531";
+ src = fetchurl {
+ url = "https://zoom.us/client/latest/zoom_${version}_x86_64.tar.xz";
+ sha256 = "16d64pn9j27v3fnh4c9i32vpkr10q1yr26w14964n0af1mv5jf7a";
+ };
+
+ phases = [ "unpackPhase" "installPhase" ];
+ nativeBuildInputs = [ makeQtWrapper ];
+ libPath = stdenv.lib.makeLibraryPath [
+ alsaLib
+ gcc.cc
+ glib
+ gst_plugins_base
+ gstreamer
+ icu_54_1
+ libpulseaudio
+ libuuid
+ libxml2
+ libxslt
+ qt55.qtbase
+ qt55.qtdeclarative
+ qt55.qtscript
+ qt55.qtwebkit
+ sqlite
+ xlibs.xcbutilkeysyms
+ xorg.libX11
+ xorg.libxcb
+ xorg.libXcomposite
+ xorg.libXext
+ xorg.libXfixes
+ xorg.libXrender
+ xorg.xcbutilimage
+ zlib
+ ];
+ installPhase = ''
+ mkdir -p $out/share
+ cp -r \
+ application-x-zoom.png \
+ audio \
+ imageformats \
+ chrome.bmp \
+ config-dump.sh \
+ dingdong1.pcm \
+ dingdong.pcm \
+ doc \
+ Droplet.pcm \
+ Droplet.wav \
+ platforminputcontexts \
+ platforms \
+ platformthemes \
+ Qt \
+ QtMultimedia \
+ QtQml \
+ QtQuick \
+ QtQuick.2 \
+ QtWebKit \
+ QtWebProcess \
+ ring.pcm \
+ ring.wav \
+ version.txt \
+ xcbglintegrations \
+ zcacert.pem \
+ zoom \
+ Zoom.png \
+ ZXMPPROOT.cer \
+ $out/share
+
+ patchelf \
+ --set-interpreter $(cat $NIX_CC/nix-support/dynamic-linker) \
+ --set-rpath ${libPath} \
+ $out/share/zoom
+ wrapQtProgram "$out/share/zoom"
+ mkdir -p $out/bin
+ ln -s $out/share/zoom $out/bin/zoom-us
+ '';
+ }
diff --git a/pkgs/applications/networking/mailreaders/mutt/default.nix b/pkgs/applications/networking/mailreaders/mutt/default.nix
index 1964faf2f5c..31ead22e1fd 100644
--- a/pkgs/applications/networking/mailreaders/mutt/default.nix
+++ b/pkgs/applications/networking/mailreaders/mutt/default.nix
@@ -1,43 +1,51 @@
{ stdenv, fetchurl, ncurses, which, perl, autoreconfHook
-, sslSupport ? true
-, imapSupport ? true
-, headerCache ? true
-, saslSupport ? true
-, gpgmeSupport ? true
, gdbm ? null
, openssl ? null
, cyrus_sasl ? null
, gpgme ? null
-, withSidebar ? false
+, aclocal ? null
+, headerCache ? true
+, sslSupport ? true
+, saslSupport ? true
+, gpgmeSupport ? true
+, imapSupport ? true
+, withSidebar ? false
+, withTrash ? false
}:
-assert headerCache -> gdbm != null;
-assert sslSupport -> openssl != null;
-assert saslSupport -> cyrus_sasl != null;
-assert gpgmeSupport -> gpgme != null;
+assert headerCache -> gdbm != null;
+assert sslSupport -> openssl != null;
+assert saslSupport -> cyrus_sasl != null;
+assert gpgmeSupport -> gpgme != null;
+
+with stdenv.lib;
-let
- version = "1.6.0";
-in
stdenv.mkDerivation rec {
- name = "mutt${stdenv.lib.optionalString withSidebar "-with-sidebar"}-${version}";
+ name = "mutt-${version}";
+ version = "1.6.2";
src = fetchurl {
- url = "http://ftp.mutt.org/pub/mutt/mutt-${version}.tar.gz";
- sha256 = "06bc2drbgalkk68rzg7hq2v5m5qgjxff5357wg0419dpi8ivdbr9";
+ url = "http://ftp.mutt.org/pub/mutt/${name}.tar.gz";
+ sha256 = "13hxmji7v9m2agmvzrs7gzx8s3c9jiwrv7pbkr7z1kc6ckq2xl65";
};
- buildInputs = with stdenv.lib;
+ buildInputs =
[ ncurses which perl ]
- ++ optional headerCache gdbm
- ++ optional sslSupport openssl
- ++ optional saslSupport cyrus_sasl
- ++ optional gpgmeSupport gpgme;
-
- nativeBuildInputs = stdenv.lib.optional withSidebar autoreconfHook;
+ ++ optional headerCache gdbm
+ ++ optional sslSupport openssl
+ ++ optional saslSupport cyrus_sasl
+ ++ optional gpgmeSupport gpgme
+ ++ optional withSidebar autoreconfHook;
configureFlags = [
- "--with-mailpath=" "--enable-smtp"
+ (enableFeature headerCache "hcache")
+ (enableFeature gpgmeSupport "gpgme")
+ (enableFeature imapSupport "imap")
+ (enableFeature withSidebar "sidebar")
+ "--enable-smtp"
+ "--enable-pop"
+ "--enable-imap"
+ "--with-mailpath="
# Look in $PATH at runtime, instead of hardcoding /usr/bin/sendmail
"ac_cv_path_SENDMAIL=sendmail"
@@ -45,36 +53,22 @@ stdenv.mkDerivation rec {
# This allows calls with "-d N", that output debug info into ~/.muttdebug*
"--enable-debug"
- "--enable-pop" "--enable-imap"
-
# The next allows building mutt without having anything setgid
# set by the installer, and removing the need for the group 'mail'
# I set the value 'mailbox' because it is a default in the configure script
"--with-homespool=mailbox"
- (if headerCache then "--enable-hcache" else "--disable-hcache")
- (if sslSupport then "--with-ssl" else "--without-ssl")
- (if imapSupport then "--enable-imap" else "--disable-imap")
- (if saslSupport then "--with-sasl" else "--without-sasl")
- (if gpgmeSupport then "--enable-gpgme" else "--disable-gpgme")
- ];
+ ] ++ optional sslSupport "--with-ssl"
+ ++ optional saslSupport "--with-sasl";
- # Adding the sidebar
- patches = stdenv.lib.optional withSidebar [
- ./trash-folder.patch
- ./sidebar.patch
- ./sidebar-dotpathsep.patch
- ./sidebar-utf8.patch
- ./sidebar-newonly.patch
- ./sidebar-delimnullwide.patch
- ./sidebar-compose.patch
- ./sidebar-new.patch
- ];
+ patches =
+ optional withTrash ./trash.patch ++
+ optional withSidebar ./sidebar.patch;
- meta = with stdenv.lib; {
+ meta = {
description = "A small but very powerful text-based mail client";
homepage = http://www.mutt.org;
- license = stdenv.lib.licenses.gpl2Plus;
+ license = licenses.gpl2Plus;
platforms = platforms.unix;
- maintainers = with maintainers; [ the-kenny ];
+ maintainers = with maintainers; [ the-kenny rnhmjoj ];
};
}
diff --git a/pkgs/applications/networking/mailreaders/mutt/sidebar-compose.patch b/pkgs/applications/networking/mailreaders/mutt/sidebar-compose.patch
deleted file mode 100644
index 90d815b841d..00000000000
--- a/pkgs/applications/networking/mailreaders/mutt/sidebar-compose.patch
+++ /dev/null
@@ -1,40 +0,0 @@
-From: Evgeni Golov
-Date: Fri, 14 Mar 2014 08:54:47 +0100
-Subject: sidebar-compose
-
-draw_sidebar sets SidebarWidth to 0 when sidebar_visible is false.
-However, if you start mutt in compose mode, draw_sidebar won't be
-called until the next redraw and your header lines will be off by
-the width of the sidebar, even when you did not want a sidebar at
-all.
-
-Can be tested with:
- HOME=/ LC_ALL=C mutt -e 'unset sidebar_visible' -s test recipient
-
-Closes: #502627
-
-Gbp-Pq: Topic mutt-patched
----
- compose.c | 2 ++
- 1 file changed, 2 insertions(+)
-
-diff --git a/compose.c b/compose.c
-index b63695f..0fa6df2 100644
---- a/compose.c
-+++ b/compose.c
-@@ -32,6 +32,7 @@
- #include "mailbox.h"
- #include "sort.h"
- #include "charset.h"
-+#include "sidebar.h"
-
- #ifdef MIXMASTER
- #include "remailer.h"
-@@ -248,6 +249,7 @@ static void draw_envelope_addr (int line, ADDRESS *addr)
-
- static void draw_envelope (HEADER *msg, char *fcc)
- {
-+ draw_sidebar (MENU_COMPOSE);
- draw_envelope_addr (HDR_FROM, msg->env->from);
- draw_envelope_addr (HDR_TO, msg->env->to);
- draw_envelope_addr (HDR_CC, msg->env->cc);
diff --git a/pkgs/applications/networking/mailreaders/mutt/sidebar-delimnullwide.patch b/pkgs/applications/networking/mailreaders/mutt/sidebar-delimnullwide.patch
deleted file mode 100644
index 11d2ced5a0c..00000000000
--- a/pkgs/applications/networking/mailreaders/mutt/sidebar-delimnullwide.patch
+++ /dev/null
@@ -1,38 +0,0 @@
-From: Evgeni Golov
-Date: Wed, 5 Mar 2014 17:46:07 +0100
-Subject: sidebar-delimnullwide
-
-SidebarDelim can be NULL and strlen(NULL) is a bad idea, as it will segfault.
-Wrap it with NONULL().
-
-While at it, change strlen to mbstowcs for better utf8 support.
-
-Closes: #696145, #663883
-
-Gbp-Pq: Topic mutt-patched
----
- sidebar.c | 4 ++--
- 1 file changed, 2 insertions(+), 2 deletions(-)
-
-diff --git a/sidebar.c b/sidebar.c
-index 51a25ca..c3ea338 100644
---- a/sidebar.c
-+++ b/sidebar.c
-@@ -88,7 +88,7 @@ char *make_sidebar_entry(char *box, int size, int new, int flagged)
- int box_len, box_bytes;
- int int_len;
- int right_offset = 0;
-- int delim_len = strlen(SidebarDelim);
-+ int delim_len = mbstowcs(NULL, NONULL(SidebarDelim), 0);
- static char *entry;
-
- right_width = left_width = 0;
-@@ -178,7 +178,7 @@ int draw_sidebar(int menu) {
- #ifndef USE_SLANG_CURSES
- attr_t attrs;
- #endif
-- short delim_len = strlen(SidebarDelim);
-+ short delim_len = mbstowcs(NULL, NONULL(SidebarDelim), 0);
- short color_pair;
-
- static bool initialized = false;
diff --git a/pkgs/applications/networking/mailreaders/mutt/sidebar-dotpathsep.patch b/pkgs/applications/networking/mailreaders/mutt/sidebar-dotpathsep.patch
deleted file mode 100644
index 315fa1649bc..00000000000
--- a/pkgs/applications/networking/mailreaders/mutt/sidebar-dotpathsep.patch
+++ /dev/null
@@ -1,98 +0,0 @@
-From: Fabian Groffen
-Date: Tue, 4 Mar 2014 21:12:15 +0100
-Subject: sidebar-dotpathsep
-
-Make path separators for sidebar folders configurable.
-
-When using IMAP, a '.' is often used as path separator, hence make the
-path separators configurable through sidebar_delim_chars variable.
-It defaults to "/." to work for both mboxes as well as IMAP folders. It
-can be set to only "/" or "." or whichever character desired as needed.
-
-Gbp-Pq: Topic mutt-patched
----
- globals.h | 1 +
- init.h | 8 ++++++++
- sidebar.c | 31 ++++++++++++++++++++++++-------
- 3 files changed, 33 insertions(+), 7 deletions(-)
-
-diff --git a/globals.h b/globals.h
-index 004c795..602f932 100644
---- a/globals.h
-+++ b/globals.h
-@@ -119,6 +119,7 @@ WHERE char *SendCharset;
- WHERE char *Sendmail;
- WHERE char *Shell;
- WHERE char *SidebarDelim;
-+WHERE char *SidebarDelimChars INITVAL (NULL);
- WHERE char *Signature;
- WHERE char *SimpleSearch;
- #if USE_SMTP
-diff --git a/init.h b/init.h
-index c664e5f..166671b 100644
---- a/init.h
-+++ b/init.h
-@@ -2051,6 +2051,14 @@ struct option_t MuttVars[] = {
- ** .pp
- ** The width of the sidebar.
- */
-+ { "sidebar_delim_chars", DT_STR, R_NONE, UL &SidebarDelimChars, UL "/." },
-+ /*
-+ ** .pp
-+ ** This contains the list of characters which you would like to treat
-+ ** as folder separators for displaying paths in the sidebar. If
-+ ** you're not using IMAP folders, you probably prefer setting this to "/"
-+ ** alone.
-+ */
- { "pgp_use_gpg_agent", DT_BOOL, R_NONE, OPTUSEGPGAGENT, 0},
- /*
- ** .pp
-diff --git a/sidebar.c b/sidebar.c
-index 6098c2a..4356ffc 100644
---- a/sidebar.c
-+++ b/sidebar.c
-@@ -249,20 +249,37 @@ int draw_sidebar(int menu) {
- // calculate depth of current folder and generate its display name with indented spaces
- int sidebar_folder_depth = 0;
- char *sidebar_folder_name;
-- sidebar_folder_name = basename(tmp->path);
-+ int i;
-+ sidebar_folder_name = tmp->path;
-+ /* disregard a trailing separator, so strlen() - 2
-+ * https://bugs.gentoo.org/show_bug.cgi?id=373197#c16 */
-+ for (i = strlen(sidebar_folder_name) - 2; i >= 0; i--) {
-+ if (SidebarDelimChars &&
-+ strchr(SidebarDelimChars, sidebar_folder_name[i]))
-+ {
-+ sidebar_folder_name += i + 1;
-+ break;
-+ }
-+ }
- if ( maildir_is_prefix ) {
- char *tmp_folder_name;
-- int i;
-+ int lastsep = 0;
- tmp_folder_name = tmp->path + strlen(Maildir);
-- for (i = 0; i < strlen(tmp->path) - strlen(Maildir); i++) {
-- if (tmp_folder_name[i] == '/') sidebar_folder_depth++;
-- }
-+ for (i = 0; i < strlen(tmp_folder_name) - 1; i++) {
-+ if (SidebarDelimChars &&
-+ strchr(SidebarDelimChars, tmp_folder_name[i]))
-+ {
-+ sidebar_folder_depth++;
-+ lastsep = i + 1;
-+ }
-+ }
- if (sidebar_folder_depth > 0) {
-- sidebar_folder_name = malloc(strlen(basename(tmp->path)) + sidebar_folder_depth + 1);
-+ tmp_folder_name += lastsep; /* basename */
-+ sidebar_folder_name = malloc(strlen(tmp_folder_name) + sidebar_folder_depth + 1);
- for (i=0; i < sidebar_folder_depth; i++)
- sidebar_folder_name[i]=' ';
- sidebar_folder_name[i]=0;
-- strncat(sidebar_folder_name, basename(tmp->path), strlen(basename(tmp->path)) + sidebar_folder_depth);
-+ strncat(sidebar_folder_name, tmp_folder_name, strlen(tmp_folder_name) + sidebar_folder_depth);
- }
- }
- printw( "%.*s", SidebarWidth - delim_len + 1,
diff --git a/pkgs/applications/networking/mailreaders/mutt/sidebar-new.patch b/pkgs/applications/networking/mailreaders/mutt/sidebar-new.patch
deleted file mode 100644
index fb265346361..00000000000
--- a/pkgs/applications/networking/mailreaders/mutt/sidebar-new.patch
+++ /dev/null
@@ -1,97 +0,0 @@
-From 355399bde98203af59d20821f9e840fc056bd383 Mon Sep 17 00:00:00 2001
-From: Julius Haertl
-Date: Tue, 9 Sep 2014 22:31:49 +0200
-Subject: Patch for sidebar iteration functionality
-
-sidebar-new will move the selected folder to the next with new messages.
-If the end is reached, it will start at the top.
-
-Useful macros would be:
-
- macro index a ""
- macro pager a ""
----
- OPS | 1 +
- curs_main.c | 1 +
- functions.h | 2 ++
- pager.c | 1 +
- sidebar.c | 10 ++++++++++
- 5 files changed, 15 insertions(+)
-
-diff --git a/OPS b/OPS
-index 1ed9c96..3ffb82a 100644
---- a/OPS
-+++ b/OPS
-@@ -187,3 +187,4 @@ OP_SIDEBAR_PREV "go to previous mailbox"
- OP_SIDEBAR_OPEN "open hilighted mailbox"
- OP_SIDEBAR_NEXT_NEW "go down to next mailbox with new mail"
- OP_SIDEBAR_PREV_NEW "go to previous mailbox with new mail"
-+OP_SIDEBAR_NEW "iterate though mailboxes with new mail"
-diff --git a/curs_main.c b/curs_main.c
-index acb106d..2e35f90 100644
---- a/curs_main.c
-+++ b/curs_main.c
-@@ -2328,6 +2328,7 @@ int mutt_index_menu (void)
- case OP_SIDEBAR_PREV:
- case OP_SIDEBAR_NEXT_NEW:
- case OP_SIDEBAR_PREV_NEW:
-+ case OP_SIDEBAR_NEW:
- scroll_sidebar(op, menu->menu);
- break;
- default:
-diff --git a/functions.h b/functions.h
-index 363b4d5..1485080 100644
---- a/functions.h
-+++ b/functions.h
-@@ -176,6 +176,7 @@ const struct binding_t OpMain[] = { /* map: index */
- { "sidebar-prev", OP_SIDEBAR_PREV, NULL },
- { "sidebar-next-new", OP_SIDEBAR_NEXT_NEW, NULL},
- { "sidebar-prev-new", OP_SIDEBAR_PREV_NEW, NULL},
-+ { "sidebar-new", OP_SIDEBAR_NEW, NULL },
- { "sidebar-open", OP_SIDEBAR_OPEN, NULL },
- { NULL, 0, NULL }
- };
-@@ -287,6 +288,7 @@ const struct binding_t OpPager[] = { /* map: pager */
- { "sidebar-prev", OP_SIDEBAR_PREV, NULL },
- { "sidebar-next-new", OP_SIDEBAR_NEXT_NEW, NULL},
- { "sidebar-prev-new", OP_SIDEBAR_PREV_NEW, NULL},
-+ { "sidebar-new", OP_SIDEBAR_NEW, NULL },
- { "sidebar-open", OP_SIDEBAR_OPEN, NULL },
- { NULL, 0, NULL }
- };
-diff --git a/pager.c b/pager.c
-index 8d64fe1..696e55c 100644
---- a/pager.c
-+++ b/pager.c
-@@ -2791,6 +2791,7 @@ search_next:
- case OP_SIDEBAR_PREV:
- case OP_SIDEBAR_NEXT_NEW:
- case OP_SIDEBAR_PREV_NEW:
-+ case OP_SIDEBAR_NEW:
- scroll_sidebar(ch, MENU_PAGER);
- break;
-
-diff --git a/sidebar.c b/sidebar.c
-index c3ea338..eb8ecd2 100644
---- a/sidebar.c
-+++ b/sidebar.c
-@@ -429,6 +429,16 @@ void scroll_sidebar(int op, int menu)
- CurBuffy = CurBuffy->next;
- }
- break;
-+ case OP_SIDEBAR_NEW:
-+ if ( (tmp = exist_next_new()) == NULL)
-+ tmp = TopBuffy;
-+ if ( tmp->msg_unread == 0 ) {
-+ CurBuffy = tmp;
-+ tmp = exist_next_new();
-+ }
-+ if ( tmp != NULL )
-+ CurBuffy = tmp;
-+ break;
- default:
- return;
- }
---
-2.6.0.rc0.2.g7662973.dirty
-
diff --git a/pkgs/applications/networking/mailreaders/mutt/sidebar-newonly.patch b/pkgs/applications/networking/mailreaders/mutt/sidebar-newonly.patch
deleted file mode 100644
index d206848026b..00000000000
--- a/pkgs/applications/networking/mailreaders/mutt/sidebar-newonly.patch
+++ /dev/null
@@ -1,198 +0,0 @@
-From: Steve Kemp
-Date: Tue, 4 Mar 2014 22:07:06 +0100
-Subject: sidebar-newonly
-
-patches written by Steve Kemp, it adds two new functionalities to the sidebar,
-so only the mailbox with new messages will be shown (and/or) selected
-See Debian bug http://bugs.debian.org/532510
-
-Gbp-Pq: Topic mutt-patched
----
- OPS | 2 ++
- curs_main.c | 2 ++
- functions.h | 4 ++++
- init.h | 5 +++++
- mutt.h | 2 ++
- pager.c | 2 ++
- sidebar.c | 55 +++++++++++++++++++++++++++++++++++++++++++++++++++++--
- 7 files changed, 70 insertions(+), 2 deletions(-)
-
-diff --git a/OPS b/OPS
-index b036db9..1ed9c96 100644
---- a/OPS
-+++ b/OPS
-@@ -185,3 +185,5 @@ OP_SIDEBAR_SCROLL_DOWN "scroll the mailbox pane down 1 page"
- OP_SIDEBAR_NEXT "go down to next mailbox"
- OP_SIDEBAR_PREV "go to previous mailbox"
- OP_SIDEBAR_OPEN "open hilighted mailbox"
-+OP_SIDEBAR_NEXT_NEW "go down to next mailbox with new mail"
-+OP_SIDEBAR_PREV_NEW "go to previous mailbox with new mail"
-diff --git a/curs_main.c b/curs_main.c
-index ea530a6..acb106d 100644
---- a/curs_main.c
-+++ b/curs_main.c
-@@ -2326,6 +2326,8 @@ int mutt_index_menu (void)
- case OP_SIDEBAR_SCROLL_DOWN:
- case OP_SIDEBAR_NEXT:
- case OP_SIDEBAR_PREV:
-+ case OP_SIDEBAR_NEXT_NEW:
-+ case OP_SIDEBAR_PREV_NEW:
- scroll_sidebar(op, menu->menu);
- break;
- default:
-diff --git a/functions.h b/functions.h
-index ef8937a..363b4d5 100644
---- a/functions.h
-+++ b/functions.h
-@@ -174,6 +174,8 @@ const struct binding_t OpMain[] = { /* map: index */
- { "sidebar-scroll-down", OP_SIDEBAR_SCROLL_DOWN, NULL },
- { "sidebar-next", OP_SIDEBAR_NEXT, NULL },
- { "sidebar-prev", OP_SIDEBAR_PREV, NULL },
-+ { "sidebar-next-new", OP_SIDEBAR_NEXT_NEW, NULL},
-+ { "sidebar-prev-new", OP_SIDEBAR_PREV_NEW, NULL},
- { "sidebar-open", OP_SIDEBAR_OPEN, NULL },
- { NULL, 0, NULL }
- };
-@@ -283,6 +285,8 @@ const struct binding_t OpPager[] = { /* map: pager */
- { "sidebar-scroll-down", OP_SIDEBAR_SCROLL_DOWN, NULL },
- { "sidebar-next", OP_SIDEBAR_NEXT, NULL },
- { "sidebar-prev", OP_SIDEBAR_PREV, NULL },
-+ { "sidebar-next-new", OP_SIDEBAR_NEXT_NEW, NULL},
-+ { "sidebar-prev-new", OP_SIDEBAR_PREV_NEW, NULL},
- { "sidebar-open", OP_SIDEBAR_OPEN, NULL },
- { NULL, 0, NULL }
- };
-diff --git a/init.h b/init.h
-index 166671b..a5d4238 100644
---- a/init.h
-+++ b/init.h
-@@ -2059,6 +2059,11 @@ struct option_t MuttVars[] = {
- ** you're not using IMAP folders, you probably prefer setting this to "/"
- ** alone.
- */
-+ {"sidebar_newmail_only", DT_BOOL, R_BOTH, OPTSIDEBARNEWMAILONLY, 0 },
-+ /*
-+ ** .pp
-+ ** Show only new mail in the sidebar.
-+ */
- { "pgp_use_gpg_agent", DT_BOOL, R_NONE, OPTUSEGPGAGENT, 0},
- /*
- ** .pp
-diff --git a/mutt.h b/mutt.h
-index 5f25406..d73e514 100644
---- a/mutt.h
-+++ b/mutt.h
-@@ -529,6 +529,8 @@ enum
- OPTDONTHANDLEPGPKEYS, /* (pseudo) used to extract PGP keys */
- OPTUNBUFFEREDINPUT, /* (pseudo) don't use key buffer */
-
-+ OPTSIDEBARNEWMAILONLY,
-+
- OPTMAX
- };
-
-diff --git a/pager.c b/pager.c
-index 5cfcb75..8d64fe1 100644
---- a/pager.c
-+++ b/pager.c
-@@ -2789,6 +2789,8 @@ search_next:
- case OP_SIDEBAR_SCROLL_DOWN:
- case OP_SIDEBAR_NEXT:
- case OP_SIDEBAR_PREV:
-+ case OP_SIDEBAR_NEXT_NEW:
-+ case OP_SIDEBAR_PREV_NEW:
- scroll_sidebar(ch, MENU_PAGER);
- break;
-
-diff --git a/sidebar.c b/sidebar.c
-index 8f58f85..51a25ca 100644
---- a/sidebar.c
-+++ b/sidebar.c
-@@ -269,8 +269,21 @@ int draw_sidebar(int menu) {
- SETCOLOR(MT_COLOR_NEW);
- else if ( tmp->msg_flagged > 0 )
- SETCOLOR(MT_COLOR_FLAGGED);
-- else
-- SETCOLOR(MT_COLOR_NORMAL);
-+ else {
-+ /* make sure the path is either:
-+ 1. Containing new mail.
-+ 2. The inbox.
-+ 3. The current box.
-+ */
-+ if ((option (OPTSIDEBARNEWMAILONLY)) &&
-+ ( (tmp->msg_unread <= 0) &&
-+ ( tmp != Incoming ) &&
-+ Context &&
-+ ( strcmp( tmp->path, Context->path ) != 0 ) ) )
-+ continue;
-+ else
-+ SETCOLOR(MT_COLOR_NORMAL);
-+ }
-
- move( lines, 0 );
- if ( Context && !strcmp( tmp->path, Context->path ) ) {
-@@ -336,6 +349,29 @@ int draw_sidebar(int menu) {
- return 0;
- }
-
-+BUFFY * exist_next_new()
-+{
-+ BUFFY *tmp = CurBuffy;
-+ if(tmp == NULL) return NULL;
-+ while (tmp->next != NULL)
-+ {
-+ tmp = tmp->next;
-+ if(tmp->msg_unread) return tmp;
-+ }
-+ return NULL;
-+}
-+
-+BUFFY * exist_prev_new()
-+{
-+ BUFFY *tmp = CurBuffy;
-+ if(tmp == NULL) return NULL;
-+ while (tmp->prev != NULL)
-+ {
-+ tmp = tmp->prev;
-+ if(tmp->msg_unread) return tmp;
-+ }
-+ return NULL;
-+}
-
- void set_buffystats(CONTEXT* Context)
- {
-@@ -352,18 +388,33 @@ void set_buffystats(CONTEXT* Context)
-
- void scroll_sidebar(int op, int menu)
- {
-+ BUFFY *tmp;
- if(!SidebarWidth) return;
- if(!CurBuffy) return;
-
- switch (op) {
- case OP_SIDEBAR_NEXT:
-+ if (!option (OPTSIDEBARNEWMAILONLY)) {
- if ( CurBuffy->next == NULL ) return;
- CurBuffy = CurBuffy->next;
- break;
-+ }
-+ case OP_SIDEBAR_NEXT_NEW:
-+ if ( (tmp = exist_next_new()) == NULL)
-+ return;
-+ else CurBuffy = tmp;
-+ break;
- case OP_SIDEBAR_PREV:
-+ if (!option (OPTSIDEBARNEWMAILONLY)) {
- if ( CurBuffy->prev == NULL ) return;
- CurBuffy = CurBuffy->prev;
- break;
-+ }
-+ case OP_SIDEBAR_PREV_NEW:
-+ if ( (tmp = exist_prev_new()) == NULL)
-+ return;
-+ else CurBuffy = tmp;
-+ break;
- case OP_SIDEBAR_SCROLL_UP:
- CurBuffy = TopBuffy;
- if ( CurBuffy != Incoming ) {
diff --git a/pkgs/applications/networking/mailreaders/mutt/sidebar-utf8.patch b/pkgs/applications/networking/mailreaders/mutt/sidebar-utf8.patch
deleted file mode 100644
index d67e43c24b6..00000000000
--- a/pkgs/applications/networking/mailreaders/mutt/sidebar-utf8.patch
+++ /dev/null
@@ -1,132 +0,0 @@
-From: Antonio Radici
-Date: Tue, 4 Mar 2014 15:39:14 +0100
-Subject: sidebar-utf8
-
-This patch fixes a problem with utf-8 strings and the sidebar,
-it rewrites entirely make_sidebar_entry so it also fixes some
-segfaults due to misallocations and overflows.
-
-See:
- http://bugs.debian.org/584581
- http://bugs.debian.org/603287
-
-Gbp-Pq: Topic mutt-patched
----
- sidebar.c | 97 +++++++++++++++++++++++++++++++++++++++++++--------------------
- 1 file changed, 67 insertions(+), 30 deletions(-)
-
-diff --git a/sidebar.c b/sidebar.c
-index 4356ffc..8f58f85 100644
---- a/sidebar.c
-+++ b/sidebar.c
-@@ -30,6 +30,7 @@
- #include
- #include "keymap.h"
- #include
-+#include
-
- /*BUFFY *CurBuffy = 0;*/
- static BUFFY *TopBuffy = 0;
-@@ -82,36 +83,72 @@ void calc_boundaries (int menu)
-
- char *make_sidebar_entry(char *box, int size, int new, int flagged)
- {
-- static char *entry = 0;
-- char *c;
-- int i = 0;
-- int delim_len = strlen(SidebarDelim);
--
-- c = realloc(entry, SidebarWidth - delim_len + 2);
-- if ( c ) entry = c;
-- entry[SidebarWidth - delim_len + 1] = 0;
-- for (; i < SidebarWidth - delim_len + 1; entry[i++] = ' ' );
-- i = strlen(box);
-- strncpy( entry, box, i < (SidebarWidth - delim_len + 1) ? i : (SidebarWidth - delim_len + 1) );
--
-- if (size == -1)
-- sprintf(entry + SidebarWidth - delim_len - 3, "?");
-- else if ( new ) {
-- if (flagged > 0) {
-- sprintf(
-- entry + SidebarWidth - delim_len - 5 - quick_log10(size) - quick_log10(new) - quick_log10(flagged),
-- "% d(%d)[%d]", size, new, flagged);
-- } else {
-- sprintf(
-- entry + SidebarWidth - delim_len - 3 - quick_log10(size) - quick_log10(new),
-- "% d(%d)", size, new);
-- }
-- } else if (flagged > 0) {
-- sprintf( entry + SidebarWidth - delim_len - 3 - quick_log10(size) - quick_log10(flagged), "% d[%d]", size, flagged);
-- } else {
-- sprintf( entry + SidebarWidth - delim_len - 1 - quick_log10(size), "% d", size);
-- }
-- return entry;
-+ char int_store[20]; // up to 64 bits integers
-+ int right_width, left_width;
-+ int box_len, box_bytes;
-+ int int_len;
-+ int right_offset = 0;
-+ int delim_len = strlen(SidebarDelim);
-+ static char *entry;
-+
-+ right_width = left_width = 0;
-+ box_len = box_bytes = 0;
-+
-+ // allocate an entry big enough to contain SidebarWidth wide chars
-+ entry = malloc((SidebarWidth*4)+1); // TODO: error check
-+
-+ // determine the right space (i.e.: how big are the numbers that we want to print)
-+ if ( size > 0 ) {
-+ int_len = snprintf(int_store, sizeof(int_store), "%d", size);
-+ right_width += int_len;
-+ } else {
-+ right_width = 1; // to represent 0
-+ }
-+ if ( new > 0 ) {
-+ int_len = snprintf(int_store, sizeof(int_store), "%d", new);
-+ right_width += int_len + 2; // 2 is for ()
-+ }
-+ if ( flagged > 0 ) {
-+ int_len = snprintf(int_store, sizeof(int_store), "%d", flagged);
-+ right_width += int_len + 2; // 2 is for []
-+ }
-+
-+ // determine how much space we have for *box and its padding (if any)
-+ left_width = SidebarWidth - right_width - 1 - delim_len; // 1 is for the space
-+ //fprintf(stdout, "left_width: %d right_width: %d\n", left_width, right_width);
-+ // right side overflow case
-+ if ( left_width <= 0 ) {
-+ snprintf(entry, SidebarWidth*4, "%-*.*s ...", SidebarWidth-4-delim_len, SidebarWidth-4-delim_len, box);
-+ return entry;
-+ }
-+ right_width -= delim_len;
-+
-+ // to support utf-8 chars we need to add enough space padding in case there
-+ // are less chars than bytes in *box
-+ box_len = mbstowcs(NULL, box, 0);
-+ box_bytes = strlen(box);
-+ // debug
-+ //fprintf(stdout, "box_len: %d box_bytes: %d (diff: %d)\n", box_len, box_bytes, (box_bytes-box_len));
-+ // if there is less string than the space we allow, then we will add the
-+ // spaces
-+ if ( box_len != -1 && box_len < left_width ) {
-+ left_width += (box_bytes - box_len);
-+ }
-+ // otherwise sprintf will truncate the string for us (therefore, no else case)
-+
-+ // print the sidebar entry (without new and flagged messages, at the moment)
-+ //fprintf(stdout, "left_width: %d right_width: %d\n", left_width, right_width);
-+ right_offset = snprintf(entry, SidebarWidth*4, "%-*.*s %d", left_width, left_width, box, size);
-+
-+ // then pad new and flagged messages if any
-+ if ( new > 0 ) {
-+ right_offset += snprintf(entry+right_offset, SidebarWidth*4-right_offset, "(%d)", new);
-+ }
-+ if ( flagged > 0 ) {
-+ right_offset += snprintf(entry+right_offset, SidebarWidth*4-right_offset, "[%d]", flagged);
-+ }
-+
-+ return entry;
- }
-
- void set_curbuffy(char buf[LONG_STRING])
diff --git a/pkgs/applications/networking/mailreaders/mutt/sidebar.patch b/pkgs/applications/networking/mailreaders/mutt/sidebar.patch
index bac1b4ab83b..218de7a0c46 100644
--- a/pkgs/applications/networking/mailreaders/mutt/sidebar.patch
+++ b/pkgs/applications/networking/mailreaders/mutt/sidebar.patch
@@ -1,306 +1,373 @@
-From: Antonio Radici
-Date: Tue, 4 Mar 2014 15:21:10 +0100
-Subject: sidebar
-
-When enabled, mutt will show a list of mailboxes with (new) message counts in a
-separate column on the left side of the screen.
-
-As this feature is still considered to be unstable, this patch is only applied
-in the "mutt-patched" package.
-
-* Configuration variables:
-
- sidebar_delim (string, default "|")
-
- This specifies the delimiter between the sidebar (if visible) and
- other screens.
-
- sidebar_visible (boolean, default no)
-
- This specifies whether or not to show sidebar (left-side list of folders).
-
- sidebar_width (integer, default 0)
--
- The width of the sidebar.
-
-* Patch source:
- - http://www.lunar-linux.org/index.php?page=mutt-sidebar
- - http://lunar-linux.org/~tchan/mutt/patch-1.5.19.sidebar.20090522.txt
-
-* Changes made:
- - 2008-08-02 myon: Refreshed patch using quilt push -f to remove hunks we do
- not need (Makefile.in).
-
- - 2014-03-04 evgeni: refresh sidebar patch with the version from OpenBSD
- Source:
- ftp://ftp.openbsd.org/pub/OpenBSD/distfiles/mutt/sidebar-1.5.22.diff1.gz
-
-Signed-off-by: Matteo F. Vescovi
-Signed-off-by: Evgeni Golov
-
-Gbp-Pq: Topic mutt-patched
----
- Makefile.am | 1 +
- OPS | 5 +
- buffy.c | 124 +++++++++++++++++++++
- buffy.h | 4 +
- color.c | 2 +
- compose.c | 26 ++---
- curs_main.c | 30 +++++-
- flags.c | 3 +
- functions.h | 10 ++
- globals.h | 4 +
- imap/command.c | 7 ++
- imap/imap.c | 2 +-
- init.h | 21 ++++
- mailbox.h | 1 +
- mbox.c | 2 +
- menu.c | 20 ++--
- mh.c | 22 ++++
- mutt.h | 4 +
- mutt_curses.h | 3 +
- muttlib.c | 48 +++++++++
- mx.c | 15 +++
- mx.h | 1 +
- pager.c | 30 ++++--
- sidebar.c | 333 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++
- sidebar.h | 36 +++++++
- 25 files changed, 720 insertions(+), 34 deletions(-)
- create mode 100644 sidebar.c
- create mode 100644 sidebar.h
-
-diff --git a/Makefile.am b/Makefile.am
-index 5dfeff6..cf1ac98 100644
---- a/Makefile.am
-+++ b/Makefile.am
-@@ -33,6 +33,7 @@ mutt_SOURCES = \
- rfc822.c rfc1524.c rfc2047.c rfc2231.c rfc3676.c \
- score.c send.c sendlib.c signal.c sort.c \
- status.c system.c thread.c charset.c history.c lib.c \
-+ sidebar.c \
- muttlib.c editmsg.c mbyte.c mutt_idna.c \
- url.c ascii.c crypt-mod.c crypt-mod.h safe_asprintf.c
+diff -urN mutt-1.6.1/buffy.c mutt-1.6.1-sidebar/buffy.c
+--- mutt-1.6.1/buffy.c 2016-06-12 18:43:00.397447512 +0100
++++ mutt-1.6.1-sidebar/buffy.c 2016-06-12 18:43:03.951502935 +0100
+@@ -27,6 +27,10 @@
-diff --git a/OPS b/OPS
-index 02cea8e..b036db9 100644
---- a/OPS
-+++ b/OPS
-@@ -180,3 +180,8 @@ OP_WHAT_KEY "display the keycode for a key press"
- OP_MAIN_SHOW_LIMIT "show currently active limit pattern"
- OP_MAIN_COLLAPSE_THREAD "collapse/uncollapse current thread"
- OP_MAIN_COLLAPSE_ALL "collapse/uncollapse all threads"
-+OP_SIDEBAR_SCROLL_UP "scroll the mailbox pane up 1 page"
-+OP_SIDEBAR_SCROLL_DOWN "scroll the mailbox pane down 1 page"
-+OP_SIDEBAR_NEXT "go down to next mailbox"
-+OP_SIDEBAR_PREV "go to previous mailbox"
-+OP_SIDEBAR_OPEN "open hilighted mailbox"
-diff --git a/buffy.c b/buffy.c
-index 12a16d1..90ca6db 100644
---- a/buffy.c
-+++ b/buffy.c
-@@ -161,6 +161,49 @@ void mutt_buffy_cleanup (const char *buf, struct stat *st)
- }
- }
+ #include "mutt_curses.h"
-+static int buffy_compare_name(const void *a, const void *b) {
-+ const BUFFY *b1 = * (BUFFY * const *) a;
-+ const BUFFY *b2 = * (BUFFY * const *) b;
++#ifdef USE_SIDEBAR
++#include "sidebar.h"
++#endif
+
-+ return mutt_strcoll(b1->path, b2->path);
-+}
-+
-+static BUFFY *buffy_sort(BUFFY *b)
-+{
-+ BUFFY *tmp = b;
-+ int buffycount = 0;
-+ BUFFY **ary;
-+ int i;
-+
-+ if (!option(OPTSIDEBARSORT))
-+ return b;
-+
-+ for (; tmp != NULL; tmp = tmp->next)
-+ buffycount++;
-+
-+ ary = (BUFFY **) safe_calloc(buffycount, sizeof (*ary));
-+
-+ tmp = b;
-+ for (i = 0; tmp != NULL; tmp = tmp->next, i++) {
-+ ary[i] = tmp;
-+ }
-+
-+ qsort(ary, buffycount, sizeof(*ary), buffy_compare_name);
-+
-+ for (i = 0; i < buffycount - 1; i++) {
-+ ary[i]->next = ary[i+1];
-+ }
-+ ary[buffycount - 1]->next = NULL;
-+ for (i = 1; i < buffycount; i++) {
-+ ary[i]->prev = ary[i-1];
-+ }
-+ ary[0]->prev = NULL;
-+
-+ tmp = ary[0];
-+ free(ary);
-+ return tmp;
-+}
-+
- BUFFY *mutt_find_mailbox (const char *path)
+ #ifdef USE_IMAP
+ #include "imap.h"
+ #endif
+@@ -196,9 +200,17 @@
+ static BUFFY *buffy_new (const char *path)
{
- BUFFY *tmp = NULL;
-@@ -282,6 +325,7 @@ int mutt_parse_mailboxes (BUFFER *path, BUFFER *s, unsigned long data, BUFFER *e
- else
- (*tmp)->size = 0;
+ BUFFY* buffy;
++#ifdef USE_SIDEBAR
++ char rp[PATH_MAX] = "";
++ char *r = NULL;
++#endif
+
+ buffy = (BUFFY *) safe_calloc (1, sizeof (BUFFY));
+ strfcpy (buffy->path, path, sizeof (buffy->path));
++#ifdef USE_SIDEBAR
++ r = realpath (path, rp);
++ strfcpy (buffy->realpath, r ? rp : path, sizeof (buffy->realpath));
++#endif
+ buffy->next = NULL;
+ buffy->magic = 0;
+
+@@ -215,7 +227,10 @@
+ BUFFY **tmp,*tmp1;
+ char buf[_POSIX_PATH_MAX];
+ struct stat sb;
+- char f1[PATH_MAX], f2[PATH_MAX];
++ char f1[PATH_MAX];
++#ifndef USE_SIDEBAR
++ char f2[PATH_MAX];
++#endif
+ char *p, *q;
+
+ while (MoreArgs (s))
+@@ -228,6 +243,9 @@
+ for (tmp = &Incoming; *tmp;)
+ {
+ tmp1=(*tmp)->next;
++#ifdef USE_SIDEBAR
++ mutt_sb_notify_mailbox (*tmp, 0);
++#endif
+ buffy_free (tmp);
+ *tmp=tmp1;
+ }
+@@ -243,8 +261,13 @@
+ p = realpath (buf, f1);
+ for (tmp = &Incoming; *tmp; tmp = &((*tmp)->next))
+ {
++#ifdef USE_SIDEBAR
++ q = (*tmp)->realpath;
++ if (mutt_strcmp (p ? p : buf, q) == 0)
++#else
+ q = realpath ((*tmp)->path, f2);
+ if (mutt_strcmp (p ? p : buf, q ? q : (*tmp)->path) == 0)
++#endif
+ {
+ dprint(3,(debugfile,"mailbox '%s' already registered as '%s'\n", buf, (*tmp)->path));
+ break;
+@@ -256,14 +279,21 @@
+ if(*tmp)
+ {
+ tmp1=(*tmp)->next;
++#ifdef USE_SIDEBAR
++ mutt_sb_notify_mailbox (*tmp, 0);
++#endif
+ buffy_free (tmp);
+ *tmp=tmp1;
+ }
+ continue;
+ }
+
+- if (!*tmp)
++ if (!*tmp) {
+ *tmp = buffy_new (buf);
++#ifdef USE_SIDEBAR
++ mutt_sb_notify_mailbox (*tmp, 1);
++#endif
++ }
+
+ (*tmp)->new = 0;
+ (*tmp)->notified = 1;
+@@ -306,6 +336,13 @@
+ return 0;
}
-+ Incoming = buffy_sort(Incoming);
- return 0;
- }
-@@ -357,6 +401,69 @@ static int buffy_maildir_hasnew (BUFFY* mailbox)
++#ifdef USE_SIDEBAR
++ if (option (OPTSIDEBAR) && mailbox->msg_unread > 0) {
++ mailbox->new = 1;
++ return 1;
++ }
++#endif
++
+ if ((dirp = opendir (path)) == NULL)
+ {
+ mailbox->magic = 0;
+@@ -357,6 +394,93 @@
return 0;
}
+
-+/* update message counts for the sidebar */
-+void buffy_maildir_update (BUFFY* mailbox)
++#ifdef USE_SIDEBAR
++/**
++ * buffy_maildir_update_dir - Update counts for one directory
++ * @mailbox: BUFFY representing a maildir mailbox
++ * @dir: Which directory to search
++ *
++ * Look through one directory of a maildir mailbox. The directory could
++ * be either "new" or "cur".
++ *
++ * Count how many new, or flagged, messages there are.
++ */
++static void
++buffy_maildir_update_dir (BUFFY *mailbox, const char *dir)
+{
-+ char path[_POSIX_PATH_MAX];
-+ DIR *dirp;
-+ struct dirent *de;
-+ char *p;
++ char path[_POSIX_PATH_MAX] = "";
++ DIR *dirp = NULL;
++ struct dirent *de = NULL;
++ char *p = NULL;
++ int read;
+
-+ mailbox->msgcount = 0;
-+ mailbox->msg_unread = 0;
-+ mailbox->msg_flagged = 0;
++ snprintf (path, sizeof (path), "%s/%s", mailbox->path, dir);
+
-+ snprintf (path, sizeof (path), "%s/new", mailbox->path);
-+
-+ if ((dirp = opendir (path)) == NULL)
-+ {
++ dirp = opendir (path);
++ if (!dirp)
++ {
+ mailbox->magic = 0;
+ return;
-+ }
-+
++ }
++
+ while ((de = readdir (dirp)) != NULL)
+ {
+ if (*de->d_name == '.')
+ continue;
+
-+ if (!(p = strstr (de->d_name, ":2,")) || !strchr (p + 3, 'T')) {
-+ mailbox->new = 1;
-+ mailbox->msgcount++;
++ /* Matches maildir_parse_flags logic */
++ read = 0;
++ mailbox->msg_count++;
++ p = strstr (de->d_name, ":2,");
++ if (p)
++ {
++ p += 3;
++ if (strchr (p, 'S'))
++ read = 1;
++ if (strchr (p, 'F'))
++ mailbox->msg_flagged++;
++ }
++ if (!read) {
+ mailbox->msg_unread++;
+ }
+ }
+
+ closedir (dirp);
-+ snprintf (path, sizeof (path), "%s/cur", mailbox->path);
-+
-+ if ((dirp = opendir (path)) == NULL)
-+ {
-+ mailbox->magic = 0;
-+ return;
-+ }
-+
-+ while ((de = readdir (dirp)) != NULL)
-+ {
-+ if (*de->d_name == '.')
-+ continue;
-+
-+ if (!(p = strstr (de->d_name, ":2,")) || !strchr (p + 3, 'T')) {
-+ mailbox->msgcount++;
-+ if ((p = strstr (de->d_name, ":2,"))) {
-+ if (!strchr (p + 3, 'T')) {
-+ if (!strchr (p + 3, 'S'))
-+ mailbox->msg_unread++;
-+ if (strchr(p + 3, 'F'))
-+ mailbox->msg_flagged++;
-+ }
-+ }
-+ }
-+ }
-+
-+ closedir (dirp);
+}
++
++/**
++ * buffy_maildir_update - Update messages counts for a maildir mailbox
++ * @mailbox: BUFFY representing a maildir mailbox
++ *
++ * Open a mailbox directories and update our record of how many new, or
++ * flagged, messages there are.
++ */
++void
++buffy_maildir_update (BUFFY *mailbox)
++{
++ if (!option (OPTSIDEBAR))
++ return;
++
++ mailbox->msg_count = 0;
++ mailbox->msg_unread = 0;
++ mailbox->msg_flagged = 0;
++
++ buffy_maildir_update_dir (mailbox, "new");
++ if (mailbox->msg_count) {
++ mailbox->new = 1;
++ }
++ buffy_maildir_update_dir (mailbox, "cur");
++
++ mailbox->sb_last_checked = time (NULL);
++
++ /* make sure the updates are actually put on screen */
++ if (SidebarWidth)
++ mutt_sb_draw();
++}
++
++#endif
+
/* returns 1 if mailbox has new mail */
static int buffy_mbox_hasnew (BUFFY* mailbox, struct stat *sb)
{
-@@ -388,6 +495,20 @@ static int buffy_mbox_hasnew (BUFFY* mailbox, struct stat *sb)
+@@ -368,7 +491,11 @@
+ else
+ statcheck = sb->st_mtime > sb->st_atime
+ || (mailbox->newly_created && sb->st_ctime == sb->st_mtime && sb->st_ctime == sb->st_atime);
++#ifdef USE_SIDEBAR
++ if ((!option (OPTSIDEBAR) && statcheck) || (option (OPTSIDEBAR) && mailbox->msg_unread > 0))
++#else
+ if (statcheck)
++#endif
+ {
+ if (!option(OPTMAILCHECKRECENT) || sb->st_mtime > mailbox->last_visited)
+ {
+@@ -388,6 +515,42 @@
return rc;
}
-+/* update message counts for the sidebar */
-+void buffy_mbox_update (BUFFY* mailbox)
++#ifdef USE_SIDEBAR
++/**
++ * buffy_mbox_update - Update messages counts for an mbox mailbox
++ * @mailbox: BUFFY representing an mbox mailbox
++ * @sb: stat(2) infomation about the mailbox file
++ *
++ * Open a mbox file and update our record of how many new, or flagged,
++ * messages there are. If the mailbox hasn't changed since the last call,
++ * the function does nothing.
++ */
++void
++buffy_mbox_update (BUFFY *mailbox, struct stat *sb)
+{
+ CONTEXT *ctx = NULL;
+
-+ ctx = mx_open_mailbox(mailbox->path, M_READONLY | M_QUIET | M_NOSORT | M_PEEK, NULL);
-+ if(ctx)
++ if (!option (OPTSIDEBAR))
++ return;
++ if ((mailbox->sb_last_checked > sb->st_mtime) && (mailbox->msg_count != 0))
++ return; /* no check necessary */
++
++ ctx = mx_open_mailbox (mailbox->path, M_READONLY | M_QUIET | M_NOSORT | M_PEEK, NULL);
++ if (ctx)
+ {
-+ mailbox->msgcount = ctx->msgcount;
-+ mailbox->msg_unread = ctx->unread;
-+ mx_close_mailbox(ctx, 0);
++ mailbox->msg_count = ctx->msgcount;
++ mailbox->msg_unread = ctx->unread;
++ mailbox->msg_flagged = ctx->flagged;
++ mailbox->sb_last_checked = time (NULL);
++ mx_close_mailbox (ctx, 0);
+ }
++
++ /* make sure the updates are actually put on screen */
++ if (SidebarWidth)
++ mutt_sb_draw();
+}
++#endif
+
int mutt_buffy_check (int force)
{
BUFFY *tmp;
-@@ -461,16 +582,19 @@ int mutt_buffy_check (int force)
+@@ -461,16 +623,25 @@
{
case M_MBOX:
case M_MMDF:
-+ buffy_mbox_update (tmp);
++#ifdef USE_SIDEBAR
++ buffy_mbox_update (tmp, &sb);
++#endif
if (buffy_mbox_hasnew (tmp, &sb) > 0)
BuffyCount++;
break;
case M_MAILDIR:
++#ifdef USE_SIDEBAR
+ buffy_maildir_update (tmp);
++#endif
if (buffy_maildir_hasnew (tmp) > 0)
BuffyCount++;
break;
case M_MH:
-+ mh_buffy_update (tmp->path, &tmp->msgcount, &tmp->msg_unread, &tmp->msg_flagged);
++#ifdef USE_SIDEBAR
++ mh_buffy_update (tmp);
++#endif
mh_buffy(tmp);
if (tmp->new)
BuffyCount++;
-diff --git a/buffy.h b/buffy.h
-index f9fc55a..672d178 100644
---- a/buffy.h
-+++ b/buffy.h
-@@ -25,7 +25,11 @@ typedef struct buffy_t
+diff -urN mutt-1.6.1/buffy.h mutt-1.6.1-sidebar/buffy.h
+--- mutt-1.6.1/buffy.h 2016-06-12 18:43:00.397447512 +0100
++++ mutt-1.6.1-sidebar/buffy.h 2016-06-12 18:43:03.951502935 +0100
+@@ -16,6 +16,9 @@
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
+ */
+
++#ifndef _BUFFY_H
++#define _BUFFY_H
++
+ /*parameter to mutt_parse_mailboxes*/
+ #define M_MAILBOXES 1
+ #define M_UNMAILBOXES 2
+@@ -23,13 +26,28 @@
+ typedef struct buffy_t
+ {
char path[_POSIX_PATH_MAX];
++#ifdef USE_SIDEBAR
++ char realpath[_POSIX_PATH_MAX];
++#endif
off_t size;
struct buffy_t *next;
++#ifdef USE_SIDEBAR
+ struct buffy_t *prev;
++#endif
short new; /* mailbox has new mail */
-+ int msgcount; /* total number of messages */
++#ifdef USE_SIDEBAR
++ int msg_count; /* total number of messages */
+ int msg_unread; /* number of unread messages */
+ int msg_flagged; /* number of flagged messages */
++ short is_hidden; /* is hidden from the sidebar */
++#endif
short notified; /* user has been notified */
short magic; /* mailbox type */
short newly_created; /* mbox or mmdf just popped into existence */
-diff --git a/color.c b/color.c
-index 64a46dc..d6f9198 100644
---- a/color.c
-+++ b/color.c
-@@ -94,6 +94,8 @@ static const struct mapping_t Fields[] =
+ time_t last_visited; /* time of last exit from this mailbox */
++#ifdef USE_SIDEBAR
++ time_t sb_last_checked; /* time of last buffy check from sidebar */
++#endif
+ }
+ BUFFY;
+
+@@ -49,3 +67,5 @@
+ void mutt_buffy_setnotified (const char *path);
+
+ void mh_buffy (BUFFY *);
++
++#endif /* _BUFFY_H */
+diff -urN mutt-1.6.1/color.c mutt-1.6.1-sidebar/color.c
+--- mutt-1.6.1/color.c 2016-06-12 18:43:00.397447512 +0100
++++ mutt-1.6.1-sidebar/color.c 2016-06-12 18:43:03.951502935 +0100
+@@ -94,6 +94,14 @@
{ "underline", MT_COLOR_UNDERLINE },
{ "index", MT_COLOR_INDEX },
{ "prompt", MT_COLOR_PROMPT },
-+ { "sidebar_new", MT_COLOR_NEW },
++#ifdef USE_SIDEBAR
++ { "sidebar_divider", MT_COLOR_DIVIDER },
+ { "sidebar_flagged", MT_COLOR_FLAGGED },
++ { "sidebar_highlight",MT_COLOR_HIGHLIGHT },
++ { "sidebar_indicator",MT_COLOR_SB_INDICATOR },
++ { "sidebar_new", MT_COLOR_NEW },
++ { "sidebar_spoolfile",MT_COLOR_SB_SPOOLFILE },
++#endif
{ NULL, 0 }
};
-diff --git a/compose.c b/compose.c
-index 9d87060..b63695f 100644
---- a/compose.c
-+++ b/compose.c
-@@ -72,7 +72,7 @@ enum
+@@ -146,6 +154,9 @@
+ ColorDefs[MT_COLOR_INDICATOR] = A_REVERSE;
+ ColorDefs[MT_COLOR_SEARCH] = A_REVERSE;
+ ColorDefs[MT_COLOR_MARKERS] = A_REVERSE;
++#ifdef USE_SIDEBAR
++ ColorDefs[MT_COLOR_HIGHLIGHT] = A_UNDERLINE;
++#endif
+ /* special meaning: toggle the relevant attribute */
+ ColorDefs[MT_COLOR_BOLD] = 0;
+ ColorDefs[MT_COLOR_UNDERLINE] = 0;
+diff -urN mutt-1.6.1/compose.c mutt-1.6.1-sidebar/compose.c
+--- mutt-1.6.1/compose.c 2016-06-12 18:43:00.398447528 +0100
++++ mutt-1.6.1-sidebar/compose.c 2016-06-12 18:43:03.952502951 +0100
+@@ -32,6 +32,9 @@
+ #include "mailbox.h"
+ #include "sort.h"
+ #include "charset.h"
++#ifdef USE_SIDEBAR
++#include "sidebar.h"
++#endif
+
+ #ifdef MIXMASTER
+ #include "remailer.h"
+@@ -72,7 +75,7 @@
#define HDR_XOFFSET 10
#define TITLE_FMT "%10s" /* Used for Prompts, which are ASCII */
@@ -309,16 +376,16 @@ index 9d87060..b63695f 100644
static const char * const Prompts[] =
{
-@@ -110,7 +110,7 @@ static void snd_entry (char *b, size_t blen, MUTTMENU *menu, int num)
+@@ -110,7 +113,7 @@
static void redraw_crypt_lines (HEADER *msg)
{
- mvaddstr (HDR_CRYPT, 0, "Security: ");
-+ mvaddstr (HDR_CRYPT, SidebarWidth, "Security: ");
++ mvprintw (HDR_CRYPT, SidebarWidth, TITLE_FMT, "Security: ");
if ((WithCrypto & (APPLICATION_PGP | APPLICATION_SMIME)) == 0)
{
-@@ -145,7 +145,7 @@ static void redraw_crypt_lines (HEADER *msg)
+@@ -145,16 +148,16 @@
addstr (_(" (OppEnc mode)"));
clrtoeol ();
@@ -327,7 +394,18 @@ index 9d87060..b63695f 100644
clrtoeol ();
if ((WithCrypto & APPLICATION_PGP)
-@@ -162,7 +162,7 @@ static void redraw_crypt_lines (HEADER *msg)
+ && (msg->security & APPLICATION_PGP) && (msg->security & SIGN))
+- printw ("%s%s", _(" sign as: "), PgpSignAs ? PgpSignAs : _(""));
++ printw (TITLE_FMT "%s", _("sign as: "), PgpSignAs ? PgpSignAs : _(""));
+
+ if ((WithCrypto & APPLICATION_SMIME)
+ && (msg->security & APPLICATION_SMIME) && (msg->security & SIGN)) {
+- printw ("%s%s", _(" sign as: "), SmimeDefaultKey ? SmimeDefaultKey : _(""));
++ printw (TITLE_FMT "%s", _("sign as: "), SmimeDefaultKey ? SmimeDefaultKey : _(""));
+ }
+
+ if ((WithCrypto & APPLICATION_SMIME)
+@@ -162,7 +165,7 @@
&& (msg->security & ENCRYPT)
&& SmimeCryptAlg
&& *SmimeCryptAlg) {
@@ -336,16 +414,17 @@ index 9d87060..b63695f 100644
NONULL(SmimeCryptAlg));
}
}
-@@ -175,7 +175,7 @@ static void redraw_mix_line (LIST *chain)
+@@ -175,7 +178,8 @@
int c;
char *t;
- mvaddstr (HDR_MIX, 0, " Mix: ");
-+ mvaddstr (HDR_MIX, SidebarWidth, " Mix: ");
++ /* L10N: "Mix" refers to the MixMaster chain for anonymous email */
++ mvprintw (HDR_MIX, SidebarWidth, TITLE_FMT, _("Mix: "));
if (!chain)
{
-@@ -190,7 +190,7 @@ static void redraw_mix_line (LIST *chain)
+@@ -190,7 +194,7 @@
if (t && t[0] == '0' && t[1] == '\0')
t = "";
@@ -354,7 +433,7 @@ index 9d87060..b63695f 100644
break;
addstr (NONULL(t));
-@@ -242,7 +242,7 @@ static void draw_envelope_addr (int line, ADDRESS *addr)
+@@ -242,20 +246,23 @@
buf[0] = 0;
rfc822_write_address (buf, sizeof (buf), addr, 1);
@@ -363,7 +442,12 @@ index 9d87060..b63695f 100644
mutt_paddstr (W, buf);
}
-@@ -252,10 +252,10 @@ static void draw_envelope (HEADER *msg, char *fcc)
+ static void draw_envelope (HEADER *msg, char *fcc)
+ {
++#ifdef USE_SIDEBAR
++ mutt_sb_draw();
++#endif
+ draw_envelope_addr (HDR_FROM, msg->env->from);
draw_envelope_addr (HDR_TO, msg->env->to);
draw_envelope_addr (HDR_CC, msg->env->cc);
draw_envelope_addr (HDR_BCC, msg->env->bcc);
@@ -376,7 +460,7 @@ index 9d87060..b63695f 100644
mutt_paddstr (W, fcc);
if (WithCrypto)
-@@ -266,7 +266,7 @@ static void draw_envelope (HEADER *msg, char *fcc)
+@@ -266,7 +273,7 @@
#endif
SETCOLOR (MT_COLOR_STATUS);
@@ -385,16 +469,25 @@ index 9d87060..b63695f 100644
clrtoeol ();
NORMAL_COLOR;
-@@ -302,7 +302,7 @@ static int edit_address_list (int line, ADDRESS **addr)
+@@ -302,7 +309,7 @@
/* redraw the expanded list so the user can see the result */
buf[0] = 0;
rfc822_write_address (buf, sizeof (buf), *addr, 1);
- move (line, HDR_XOFFSET);
-+ move (line, HDR_XOFFSET+SidebarWidth);
++ move (line, HDR_XOFFSET + SidebarWidth);
mutt_paddstr (W, buf);
return 0;
-@@ -562,7 +562,7 @@ int mutt_compose_menu (HEADER *msg, /* structure for new message */
+@@ -515,7 +522,7 @@
+ menu->tag = mutt_tag_attach;
+ menu->data = idx;
+ menu->help = mutt_compile_help (helpstr, sizeof (helpstr), MENU_COMPOSE, ComposeHelp);
+-
++
+ while (loop)
+ {
+ switch (op = mutt_menuLoop (menu))
+@@ -564,7 +571,7 @@
if (mutt_get_field ("Subject: ", buf, sizeof (buf), 0) == 0)
{
mutt_str_replace (&msg->env->subject, buf);
@@ -403,7 +496,7 @@ index 9d87060..b63695f 100644
if (msg->env->subject)
mutt_paddstr (W, msg->env->subject);
else
-@@ -580,7 +580,7 @@ int mutt_compose_menu (HEADER *msg, /* structure for new message */
+@@ -582,7 +589,7 @@
{
strfcpy (fcc, buf, fcclen);
mutt_pretty_mailbox (fcc, fcclen);
@@ -412,57 +505,118 @@ index 9d87060..b63695f 100644
mutt_paddstr (W, fcc);
fccSet = 1;
}
-diff --git a/curs_main.c b/curs_main.c
-index 9d718ee..ea530a6 100644
---- a/curs_main.c
-+++ b/curs_main.c
-@@ -26,7 +26,9 @@
+diff -urN mutt-1.6.1/configure.ac mutt-1.6.1-sidebar/configure.ac
+--- mutt-1.6.1/configure.ac 2016-06-12 18:43:00.398447528 +0100
++++ mutt-1.6.1-sidebar/configure.ac 2016-06-12 18:43:03.952502951 +0100
+@@ -175,6 +175,14 @@
+ SMIMEAUX_TARGET="smime_keys"
+ fi
+
++AC_ARG_ENABLE(sidebar, AC_HELP_STRING([--enable-sidebar], [Enable Sidebar support]),
++[ if test x$enableval = xyes ; then
++ AC_DEFINE(USE_SIDEBAR, 1, [Define if you want support for the sidebar.])
++ OPS="$OPS \$(srcdir)/OPS.SIDEBAR"
++ MUTT_LIB_OBJECTS="$MUTT_LIB_OBJECTS sidebar.o"
++ fi
++])
++
+ AC_ARG_WITH(mixmaster, AS_HELP_STRING([--with-mixmaster@<:@=PATH@:>@],[Include Mixmaster support]),
+ [if test "$withval" != no
+ then
+diff -urN mutt-1.6.1/copy.c mutt-1.6.1-sidebar/copy.c
+--- mutt-1.6.1/copy.c 2016-06-12 18:43:00.398447528 +0100
++++ mutt-1.6.1-sidebar/copy.c 2016-06-12 18:43:03.952502951 +0100
+@@ -288,7 +288,8 @@
+ if (flags & (CH_DECODE|CH_PREFIX))
+ {
+ if (mutt_write_one_header (out, 0, headers[x],
+- flags & CH_PREFIX ? prefix : 0, mutt_term_width (Wrap), flags) == -1)
++ flags & CH_PREFIX ? prefix : 0,
++ mutt_term_width (Wrap), flags) == -1)
+ {
+ error = TRUE;
+ break;
+diff -urN mutt-1.6.1/curs_main.c mutt-1.6.1-sidebar/curs_main.c
+--- mutt-1.6.1/curs_main.c 2016-06-12 18:43:00.399447544 +0100
++++ mutt-1.6.1-sidebar/curs_main.c 2016-06-12 18:43:03.953502966 +0100
+@@ -26,8 +26,13 @@
#include "mailbox.h"
#include "mapping.h"
#include "sort.h"
+#include "buffy.h"
#include "mx.h"
-+#include "sidebar.h"
++#ifdef USE_SIDEBAR
++#include "sidebar.h"
++#endif
++
#ifdef USE_POP
#include "pop.h"
-@@ -596,8 +598,12 @@ int mutt_index_menu (void)
+ #endif
+@@ -595,21 +600,39 @@
menu->redraw |= REDRAW_STATUS;
if (do_buffy_notify)
{
- if (mutt_buffy_notify () && option (OPTBEEPNEW))
- beep ();
-+ if (mutt_buffy_notify ())
++ if (mutt_buffy_notify())
+ {
-+ menu->redraw |= REDRAW_FULL;
++ menu->redraw |= REDRAW_STATUS;
+ if (option (OPTBEEPNEW))
-+ beep ();
++ beep();
+ }
}
else
do_buffy_notify = 1;
-@@ -609,6 +615,7 @@ int mutt_index_menu (void)
+ }
+
++#ifdef USE_SIDEBAR
++ if (option (OPTSIDEBAR))
++ menu->redraw |= REDRAW_SIDEBAR;
++#endif
++
+ if (op != -1)
+ mutt_curs_set (0);
+
if (menu->redraw & REDRAW_FULL)
{
menu_redraw_full (menu);
-+ draw_sidebar(menu->menu);
++#ifdef USE_SIDEBAR
++ mutt_sb_draw();
++#endif
mutt_show_error ();
}
++#ifdef USE_SIDEBAR
++ else if (menu->redraw & REDRAW_SIDEBAR) {
++ mutt_sb_draw();
++ menu->redraw &= ~REDRAW_SIDEBAR;
++ }
++#endif
-@@ -631,9 +638,12 @@ int mutt_index_menu (void)
+ if (menu->menu == MENU_MAIN)
+ {
+@@ -630,9 +653,20 @@
if (menu->redraw & REDRAW_STATUS)
{
-+ DrawFullLine = 1;
++#ifdef USE_SIDEBAR
++ /* Temporarily lie about the sidebar width */
++ short sw = SidebarWidth;
++ SidebarWidth = 0;
++#endif
menu_status_line (buf, sizeof (buf), menu, NONULL (Status));
-+ DrawFullLine = 0;
++#ifdef USE_SIDEBAR
++ SidebarWidth = sw; /* Restore the sidebar width */
++#endif
move (option (OPTSTATUSONTOP) ? 0 : LINES-2, 0);
SETCOLOR (MT_COLOR_STATUS);
-+ set_buffystats(Context);
++#ifdef USE_SIDEBAR
++ mutt_sb_set_buffystats (Context);
++#endif
mutt_paddstr (COLS, buf);
NORMAL_COLOR;
menu->redraw &= ~REDRAW_STATUS;
-@@ -653,7 +663,7 @@ int mutt_index_menu (void)
+@@ -652,7 +686,7 @@
menu->oldcurrent = -1;
if (option (OPTARROWCURSOR))
@@ -471,229 +625,1948 @@ index 9d718ee..ea530a6 100644
else if (option (OPTBRAILLEFRIENDLY))
move (menu->current - menu->top + menu->offset, 0);
else
-@@ -1154,6 +1164,7 @@ int mutt_index_menu (void)
+@@ -1091,6 +1125,9 @@
+ break;
+
+ CHECK_MSGCOUNT;
++#ifdef USE_SIDEBAR
++ CHECK_VISIBLE;
++#endif
+ CHECK_READONLY;
+ {
+ int oldvcount = Context->vcount;
+@@ -1150,6 +1187,9 @@
menu->redraw = REDRAW_FULL;
break;
++#ifdef USE_SIDEBAR
+ case OP_SIDEBAR_OPEN:
++#endif
case OP_MAIN_CHANGE_FOLDER:
case OP_MAIN_NEXT_UNREAD_MAILBOX:
-@@ -1185,7 +1196,11 @@ int mutt_index_menu (void)
+@@ -1181,6 +1221,14 @@
{
mutt_buffy (buf, sizeof (buf));
-- if (mutt_enter_fname (cp, buf, sizeof (buf), &menu->redraw, 1) == -1)
-+ if ( op == OP_SIDEBAR_OPEN ) {
-+ if(!CurBuffy)
-+ break;
-+ strncpy( buf, CurBuffy->path, sizeof(buf) );
-+ } else if (mutt_enter_fname (cp, buf, sizeof (buf), &menu->redraw, 1) == -1)
++#ifdef USE_SIDEBAR
++ if (op == OP_SIDEBAR_OPEN) {
++ const char *path = mutt_sb_get_highlight();
++ if (!path)
++ break;
++ strncpy (buf, path, sizeof (buf));
++ } else
++#endif
+ if (mutt_enter_fname (cp, buf, sizeof (buf), &menu->redraw, 1) == -1)
{
if (menu->menu == MENU_PAGER)
- {
-@@ -1203,6 +1218,7 @@ int mutt_index_menu (void)
+@@ -1199,6 +1247,9 @@
}
mutt_expand_path (buf, sizeof (buf));
-+ set_curbuffy(buf);
++#ifdef USE_SIDEBAR
++ mutt_sb_set_open_buffy (buf);
++#endif
if (mx_get_magic (buf) <= 0)
{
mutt_error (_("%s is not a mailbox."), buf);
-@@ -2306,6 +2322,12 @@ int mutt_index_menu (void)
+@@ -2310,6 +2361,21 @@
mutt_what_key();
break;
-+ case OP_SIDEBAR_SCROLL_UP:
-+ case OP_SIDEBAR_SCROLL_DOWN:
++#ifdef USE_SIDEBAR
+ case OP_SIDEBAR_NEXT:
++ case OP_SIDEBAR_NEXT_NEW:
++ case OP_SIDEBAR_PAGE_DOWN:
++ case OP_SIDEBAR_PAGE_UP:
+ case OP_SIDEBAR_PREV:
-+ scroll_sidebar(op, menu->menu);
++ case OP_SIDEBAR_PREV_NEW:
++ mutt_sb_change_mailbox (op);
+ break;
++
++ case OP_SIDEBAR_TOGGLE_VISIBLE:
++ toggle_option (OPTSIDEBAR);
++ menu->redraw = REDRAW_FULL;
++ break;
++#endif
default:
if (menu->menu == MENU_MAIN)
km_error_key (MENU_MAIN);
-diff --git a/flags.c b/flags.c
-index 133fa35..48fb287 100644
---- a/flags.c
-+++ b/flags.c
-@@ -22,8 +22,10 @@
+diff -urN mutt-1.6.1/doc/manual.xml.head mutt-1.6.1-sidebar/doc/manual.xml.head
+--- mutt-1.6.1/doc/manual.xml.head 2016-06-12 18:43:00.402447590 +0100
++++ mutt-1.6.1-sidebar/doc/manual.xml.head 2016-06-12 18:43:03.955502998 +0100
+@@ -405,6 +405,623 @@
+
+
+
++
++
+
+ Help
+
+@@ -6773,6 +7390,17 @@
+
+
+
++Mutt will set the COLUMNS environment variable to
++the width of the pager. Some programs make use of this environment
++variable automatically. Others provide a command line argument that
++can use this to set the output width:
++
++
++
++text/html; lynx -dump -width ${COLUMNS:-80} %s; copiousoutput
++
++
++
+ Note that when using the built-in pager, only
+ entries with this flag will be considered a handler for a MIME type
+ — all other entries will be ignored.
+@@ -7467,6 +8095,16 @@
+
+
+
++
++Mutt Patches
++
++Mutt may also be patched
to support smaller features.
++These patches should add a free-form string to the end Mutt's version string.
++Running mutt -v might show:
++patch-1.6.1.sidebar.20160502
++
++
++
+
+ URL Syntax
+
+@@ -8081,6 +8719,469 @@
+
+
+
++
++
+
+
+
+@@ -9237,6 +10338,17 @@
+
+
+
++ sidebar_whitelist
++
++item
++
++
++command
++
++
++
++
++
+ source
+
+ filename
+diff -urN mutt-1.6.1/doc/mutt.css mutt-1.6.1-sidebar/doc/mutt.css
+--- mutt-1.6.1/doc/mutt.css 2016-06-12 18:43:00.402447590 +0100
++++ mutt-1.6.1-sidebar/doc/mutt.css 2016-06-12 18:43:03.811500752 +0100
+@@ -9,17 +9,24 @@
+ div.table-contents table th, div.informaltable table th {
+ font-family:sans-serif;
+ background:#d0d0d0;
+- font-weight:normal;
++ font-weight:bold;
+ vertical-align:top;
+ }
+-div.cmdsynopsis { border-left:1px solid #707070; padding-left:5px; }
++div.cmdsynopsis { border-left:1px solid #707070; padding-left: 1em; }
+ li div.cmdsynopsis { border-left:none; padding-left:0px; }
+-pre.screen, div.note { background:#f0f0f0; border:1px solid #c0c0c0; padding:5px; margin-left:2%; margin-right:2%; }
++li p { margin: 0; }
++pre.screen, div.note { border:1px solid #c0c0c0; margin-left:2%; margin-right:2%; }
++pre.screen { color: #ffffff; background:#000000; padding: 0.5em; }
++div.note { background:#ffff80; padding: 0.5em; }
+ div.example p.title { margin-left:2%; }
+ div.note h3 { font-size:small; font-style:italic; font-variant: small-caps; }
+ div.note h3:after { content: ":" }
+ div.note { margin-bottom: 5px; }
+-.command { font-family: monospace; font-weight: normal; }
++div.literallayout, .command { font-family: monospace; font-weight: normal; }
+ .command strong { font-weight: normal; }
+ tr { vertical-align: top; }
+-.comment { color:#707070; }
++.comment { color:#00c000; }
++code.literal { background: #f0f0f0; color: #000000; }
++span.indicator { background: #000060; color: #ffffff; }
++span.highlight { background: #404040; color: #ffffff; }
++span.reverse { background: #ffffff; color: #000000; }
+diff -urN mutt-1.6.1/doc/muttrc.sidebar mutt-1.6.1-sidebar/doc/muttrc.sidebar
+--- mutt-1.6.1/doc/muttrc.sidebar 1970-01-01 01:00:00.000000000 +0100
++++ mutt-1.6.1-sidebar/doc/muttrc.sidebar 2016-06-12 18:43:03.812500768 +0100
+@@ -0,0 +1,116 @@
++# This is a complete list of sidebar-related configuration.
++
++# --------------------------------------------------------------------------
++# VARIABLES - shown with their default values
++# --------------------------------------------------------------------------
++
++# Should the Sidebar be shown?
++set sidebar_visible = no
++
++# How wide should the Sidebar be in screen columns?
++# Note: Some characters, e.g. Chinese, take up two columns each.
++set sidebar_width = 20
++
++# Should the mailbox paths be abbreviated?
++set sidebar_short_path = no
++
++# When abbreviating mailbox path names, use any of these characters as path
++# separators. Only the part after the last separators will be shown.
++# For file folders '/' is good. For IMAP folders, often '.' is useful.
++set sidebar_delim_chars = '/.'
++
++# If the mailbox path is abbreviated, should it be indented?
++set sidebar_folder_indent = no
++
++# Indent mailbox paths with this string.
++set sidebar_indent_string = ' '
++
++# Make the Sidebar only display mailboxes that contain new, or flagged,
++# mail.
++set sidebar_new_mail_only = no
++
++# Any mailboxes that are whitelisted will always be visible, even if the
++# sidebar_new_mail_only option is enabled.
++sidebar_whitelist '/home/user/mailbox1'
++sidebar_whitelist '/home/user/mailbox2'
++
++# When searching for mailboxes containing new mail, should the search wrap
++# around when it reaches the end of the list?
++set sidebar_next_new_wrap = no
++
++# The character to use as the divider between the Sidebar and the other Mutt
++# panels.
++# Note: Only the first character of this string is used.
++set sidebar_divider_char = '|'
++
++# Display the Sidebar mailboxes using this format string.
++set sidebar_format = '%B%?F? [%F]?%* %?N?%N/?%S'
++
++# Sidebar will not refresh its list of mailboxes any more frequently than
++# this number of seconds. This will help reduce disk/network traffic.
++set sidebar_refresh_time = 60
++
++# Sort the mailboxes in the Sidebar using this method:
++# count - total number of messages
++# flagged - number of flagged messages
++# new - number of new messages
++# path - mailbox path
++# unsorted - do not sort the mailboxes
++set sidebar_sort_method = 'unsorted'
++
++# --------------------------------------------------------------------------
++# FUNCTIONS - shown with an example mapping
++# --------------------------------------------------------------------------
++
++# Move the highlight to the previous mailbox
++bind index,pager \Cp sidebar-prev
++
++# Move the highlight to the next mailbox
++bind index,pager \Cn sidebar-next
++
++# Open the highlighted mailbox
++bind index,pager \Co sidebar-open
++
++# Move the highlight to the previous page
++# This is useful if you have a LOT of mailboxes.
++bind index,pager sidebar-page-up
++
++# Move the highlight to the next page
++# This is useful if you have a LOT of mailboxes.
++bind index,pager sidebar-page-down
++
++# Move the highlight to the previous mailbox containing new, or flagged,
++# mail.
++bind index,pager sidebar-prev-new
++
++# Move the highlight to the next mailbox containing new, or flagged, mail.
++bind index,pager sidebar-next-new
++
++# Toggle the visibility of the Sidebar.
++bind index,pager B sidebar-toggle-visible
++
++# --------------------------------------------------------------------------
++# COLORS - some unpleasant examples are given
++# --------------------------------------------------------------------------
++# Note: All color operations are of the form:
++# color OBJECT FOREGROUND BACKGROUND
++
++# Color of the current, open, mailbox
++# Note: This is a general Mutt option which colors all selected items.
++color indicator cyan black
++
++# Color of the highlighted, but not open, mailbox.
++color sidebar_highlight black color8
++
++# Color of the divider separating the Sidebar from Mutt panels
++color sidebar_divider color8 black
++
++# Color to give mailboxes containing flagged mail
++color sidebar_flagged red black
++
++# Color to give mailboxes containing new mail
++color sidebar_new green black
++
++# --------------------------------------------------------------------------
++
++# vim: syntax=muttrc
+diff -urN mutt-1.6.1/doc/vimrc.sidebar mutt-1.6.1-sidebar/doc/vimrc.sidebar
+--- mutt-1.6.1/doc/vimrc.sidebar 1970-01-01 01:00:00.000000000 +0100
++++ mutt-1.6.1-sidebar/doc/vimrc.sidebar 2016-06-12 18:43:03.813500783 +0100
+@@ -0,0 +1,35 @@
++" Vim syntax file for the mutt sidebar patch
++
++syntax keyword muttrcVarBool skipwhite contained sidebar_folder_indent nextgroup=muttrcSetBoolAssignment,muttrcVPrefix,muttrcVarBool,muttrcVarQuad,muttrcVarNum,muttrcVarStr
++syntax keyword muttrcVarBool skipwhite contained sidebar_new_mail_only nextgroup=muttrcSetBoolAssignment,muttrcVPrefix,muttrcVarBool,muttrcVarQuad,muttrcVarNum,muttrcVarStr
++syntax keyword muttrcVarBool skipwhite contained sidebar_next_new_wrap nextgroup=muttrcSetBoolAssignment,muttrcVPrefix,muttrcVarBool,muttrcVarQuad,muttrcVarNum,muttrcVarStr
++syntax keyword muttrcVarBool skipwhite contained sidebar_short_path nextgroup=muttrcSetBoolAssignment,muttrcVPrefix,muttrcVarBool,muttrcVarQuad,muttrcVarNum,muttrcVarStr
++syntax keyword muttrcVarBool skipwhite contained sidebar_visible nextgroup=muttrcSetBoolAssignment,muttrcVPrefix,muttrcVarBool,muttrcVarQuad,muttrcVarNum,muttrcVarStr
++
++syntax keyword muttrcVarNum skipwhite contained sidebar_refresh_time nextgroup=muttrcSetNumAssignment,muttrcVPrefix,muttrcVarBool,muttrcVarQuad,muttrcVarNum,muttrcVarStr
++syntax keyword muttrcVarNum skipwhite contained sidebar_width nextgroup=muttrcSetNumAssignment,muttrcVPrefix,muttrcVarBool,muttrcVarQuad,muttrcVarNum,muttrcVarStr
++
++syntax keyword muttrcVarStr contained skipwhite sidebar_divider_char nextgroup=muttrcVarEqualsIdxFmt
++syntax keyword muttrcVarStr contained skipwhite sidebar_delim_chars nextgroup=muttrcVarEqualsIdxFmt
++syntax keyword muttrcVarStr contained skipwhite sidebar_format nextgroup=muttrcVarEqualsIdxFmt
++syntax keyword muttrcVarStr contained skipwhite sidebar_indent_string nextgroup=muttrcVarEqualsIdxFmt
++syntax keyword muttrcVarStr contained skipwhite sidebar_sort_method nextgroup=muttrcVarEqualsIdxFmt
++
++syntax keyword muttrcCommand sidebar_whitelist
++
++syntax match muttrcFunction contained "\"
++syntax match muttrcFunction contained "\"
++syntax match muttrcFunction contained "\"
++syntax match muttrcFunction contained "\"
++syntax match muttrcFunction contained "\"
++syntax match muttrcFunction contained "\"
++syntax match muttrcFunction contained "\"
++syntax match muttrcFunction contained "\"
++
++syntax keyword muttrcColorField contained sidebar_divider
++syntax keyword muttrcColorField contained sidebar_flagged
++syntax keyword muttrcColorField contained sidebar_highlight
++syntax keyword muttrcColorField contained sidebar_indicator
++syntax keyword muttrcColorField contained sidebar_new
++
++" vim: syntax=vim
+diff -urN mutt-1.6.1/filter.c mutt-1.6.1-sidebar/filter.c
+--- mutt-1.6.1/filter.c 2016-06-12 18:43:00.403447606 +0100
++++ mutt-1.6.1-sidebar/filter.c 2016-06-12 18:43:03.835501127 +0100
+@@ -21,6 +21,7 @@
+ #endif
#include "mutt.h"
- #include "mutt_curses.h"
-+#include "mutt_menu.h"
++#include "mutt_curses.h"
+
+ #include
+ #include
+@@ -34,6 +35,7 @@
+ int fdin, int fdout, int fderr)
+ {
+ int pin[2], pout[2], perr[2], thepid;
++ char columns[11];
+
+ if (in)
+ {
+@@ -117,6 +119,9 @@
+ close (fderr);
+ }
+
++ snprintf (columns, sizeof (columns), "%d", COLS - SidebarWidth);
++ setenv ("COLUMNS", columns, 1);
++
+ execl (EXECSHELL, "sh", "-c", cmd, NULL);
+ _exit (127);
+ }
+diff -urN mutt-1.6.1/flags.c mutt-1.6.1-sidebar/flags.c
+--- mutt-1.6.1/flags.c 2016-06-12 18:43:00.403447606 +0100
++++ mutt-1.6.1-sidebar/flags.c 2016-06-12 18:43:03.956503013 +0100
+@@ -25,6 +25,10 @@
#include "sort.h"
#include "mx.h"
-+#include "sidebar.h"
++#ifdef USE_SIDEBAR
++#include "sidebar.h"
++#endif
++
void _mutt_set_flag (CONTEXT *ctx, HEADER *h, int flag, int bf, int upd_ctx)
{
-@@ -290,6 +292,7 @@ void _mutt_set_flag (CONTEXT *ctx, HEADER *h, int flag, int bf, int upd_ctx)
+ int changed = h->changed;
+@@ -263,6 +267,9 @@
*/
if (h->searched && (changed != h->changed || deleted != ctx->deleted || tagged != ctx->tagged || flagged != ctx->flagged))
h->searched = 0;
-+ draw_sidebar(0);
++#ifdef USE_SIDEBAR
++ mutt_sb_draw();
++#endif
}
void mutt_tag_set_flag (int flag, int bf)
-diff --git a/functions.h b/functions.h
-index 26171a0..ef8937a 100644
---- a/functions.h
-+++ b/functions.h
-@@ -170,6 +170,11 @@ const struct binding_t OpMain[] = { /* map: index */
+diff -urN mutt-1.6.1/functions.h mutt-1.6.1-sidebar/functions.h
+--- mutt-1.6.1/functions.h 2016-06-12 18:43:00.403447606 +0100
++++ mutt-1.6.1-sidebar/functions.h 2016-06-12 18:43:03.956503013 +0100
+@@ -168,6 +168,16 @@
+ { "decrypt-copy", OP_DECRYPT_COPY, NULL },
{ "decrypt-save", OP_DECRYPT_SAVE, NULL },
++#ifdef USE_SIDEBAR
++ { "sidebar-next", OP_SIDEBAR_NEXT, NULL },
++ { "sidebar-next-new", OP_SIDEBAR_NEXT_NEW, NULL },
++ { "sidebar-open", OP_SIDEBAR_OPEN, NULL },
++ { "sidebar-page-down", OP_SIDEBAR_PAGE_DOWN, NULL },
++ { "sidebar-page-up", OP_SIDEBAR_PAGE_UP, NULL },
++ { "sidebar-prev", OP_SIDEBAR_PREV, NULL },
++ { "sidebar-prev-new", OP_SIDEBAR_PREV_NEW, NULL },
++ { "sidebar-toggle-visible", OP_SIDEBAR_TOGGLE_VISIBLE, NULL },
++#endif
-+ { "sidebar-scroll-up", OP_SIDEBAR_SCROLL_UP, NULL },
-+ { "sidebar-scroll-down", OP_SIDEBAR_SCROLL_DOWN, NULL },
-+ { "sidebar-next", OP_SIDEBAR_NEXT, NULL },
-+ { "sidebar-prev", OP_SIDEBAR_PREV, NULL },
-+ { "sidebar-open", OP_SIDEBAR_OPEN, NULL },
{ NULL, 0, NULL }
};
-
-@@ -274,6 +279,11 @@ const struct binding_t OpPager[] = { /* map: pager */
+@@ -272,6 +282,17 @@
{ "what-key", OP_WHAT_KEY, NULL },
-+ { "sidebar-scroll-up", OP_SIDEBAR_SCROLL_UP, NULL },
-+ { "sidebar-scroll-down", OP_SIDEBAR_SCROLL_DOWN, NULL },
-+ { "sidebar-next", OP_SIDEBAR_NEXT, NULL },
-+ { "sidebar-prev", OP_SIDEBAR_PREV, NULL },
-+ { "sidebar-open", OP_SIDEBAR_OPEN, NULL },
++#ifdef USE_SIDEBAR
++ { "sidebar-next", OP_SIDEBAR_NEXT, NULL },
++ { "sidebar-next-new", OP_SIDEBAR_NEXT_NEW, NULL },
++ { "sidebar-open", OP_SIDEBAR_OPEN, NULL },
++ { "sidebar-page-down", OP_SIDEBAR_PAGE_DOWN, NULL },
++ { "sidebar-page-up", OP_SIDEBAR_PAGE_UP, NULL },
++ { "sidebar-prev", OP_SIDEBAR_PREV, NULL },
++ { "sidebar-prev-new", OP_SIDEBAR_PREV_NEW, NULL },
++ { "sidebar-toggle-visible", OP_SIDEBAR_TOGGLE_VISIBLE, NULL },
++#endif
++
{ NULL, 0, NULL }
};
-diff --git a/globals.h b/globals.h
-index 282fde3..004c795 100644
---- a/globals.h
-+++ b/globals.h
-@@ -118,6 +118,7 @@ WHERE short SearchContext;
+diff -urN mutt-1.6.1/globals.h mutt-1.6.1-sidebar/globals.h
+--- mutt-1.6.1/globals.h 2016-06-12 18:43:00.403447606 +0100
++++ mutt-1.6.1-sidebar/globals.h 2016-06-12 18:43:03.956503013 +0100
+@@ -118,6 +118,12 @@
WHERE char *SendCharset;
WHERE char *Sendmail;
WHERE char *Shell;
-+WHERE char *SidebarDelim;
++#ifdef USE_SIDEBAR
++WHERE char *SidebarDelimChars;
++WHERE char *SidebarDividerChar;
++WHERE char *SidebarFormat;
++WHERE char *SidebarIndentString;
++#endif
WHERE char *Signature;
WHERE char *SimpleSearch;
#if USE_SMTP
-@@ -214,6 +215,9 @@ WHERE short ScoreThresholdDelete;
+@@ -214,6 +220,14 @@
WHERE short ScoreThresholdRead;
WHERE short ScoreThresholdFlag;
-+WHERE struct buffy_t *CurBuffy INITVAL(0);
-+WHERE short DrawFullLine INITVAL(0);
++/* This isn't excluded from the build because it's too entwined in the code.
++ * For now. */
+WHERE short SidebarWidth;
++#ifdef USE_SIDEBAR
++WHERE short SidebarRefreshTime;
++WHERE LIST *SidebarWhitelist INITVAL(0);
++#endif
++
#ifdef USE_IMAP
WHERE short ImapKeepalive;
WHERE short ImapPipelineDepth;
-diff --git a/imap/command.c b/imap/command.c
-index 32f8417..d68e3ab 100644
---- a/imap/command.c
-+++ b/imap/command.c
-@@ -1012,6 +1012,13 @@ static void cmd_parse_status (IMAP_DATA* idata, char* s)
+diff -urN mutt-1.6.1/imap/command.c mutt-1.6.1-sidebar/imap/command.c
+--- mutt-1.6.1/imap/command.c 2016-06-12 18:43:00.405447637 +0100
++++ mutt-1.6.1-sidebar/imap/command.c 2016-06-12 18:43:03.839501189 +0100
+@@ -1016,6 +1016,14 @@
opened */
status->uidnext = oldun;
-+ /* Added to make the sidebar show the correct numbers */
-+ if (status->messages)
-+ {
-+ inc->msgcount = status->messages;
-+ inc->msg_unread = status->unseen;
-+ }
++#ifdef USE_SIDEBAR
++ /* Make the sidebar show the correct numbers */
++ if (status->messages) {
++ inc->msg_count = status->messages;
++ inc->msg_unread = status->unseen;
++ }
++#endif
+
FREE (&value);
return;
}
-diff --git a/imap/imap.c b/imap/imap.c
-index f476873..af3ac3d 100644
---- a/imap/imap.c
-+++ b/imap/imap.c
-@@ -1529,7 +1529,7 @@ int imap_buffy_check (int force)
+diff -urN mutt-1.6.1/imap/imap.c mutt-1.6.1-sidebar/imap/imap.c
+--- mutt-1.6.1/imap/imap.c 2016-06-12 18:43:00.405447637 +0100
++++ mutt-1.6.1-sidebar/imap/imap.c 2016-06-12 18:43:03.958503044 +0100
+@@ -1535,7 +1535,11 @@
- imap_munge_mbox_name (munged, sizeof (munged), name);
+ imap_munge_mbox_name (idata, munged, sizeof (munged), name);
snprintf (command, sizeof (command),
-- "STATUS %s (UIDNEXT UIDVALIDITY UNSEEN RECENT)", munged);
++#ifdef USE_SIDEBAR
+ "STATUS %s (UIDNEXT UIDVALIDITY UNSEEN RECENT MESSAGES)", munged);
++#else
+ "STATUS %s (UIDNEXT UIDVALIDITY UNSEEN RECENT)", munged);
++#endif
if (imap_exec (idata, command, IMAP_CMD_QUEUE) < 0)
{
-diff --git a/init.h b/init.h
-index 35224c1..c664e5f 100644
---- a/init.h
-+++ b/init.h
-@@ -2030,6 +2030,27 @@ struct option_t MuttVars[] = {
- ** not used.
- ** (PGP only)
+diff -urN mutt-1.6.1/init.c mutt-1.6.1-sidebar/init.c
+--- mutt-1.6.1/init.c 2016-06-12 18:43:00.406447652 +0100
++++ mutt-1.6.1-sidebar/init.c 2016-06-12 18:43:03.959503060 +0100
+@@ -2173,6 +2173,9 @@
+ case DT_SORT_AUX:
+ map = SortAuxMethods;
+ break;
++ case DT_SORT_SIDEBAR:
++ map = SortSidebarMethods;
++ break;
+ default:
+ map = SortMethods;
+ break;
+diff -urN mutt-1.6.1/init.h mutt-1.6.1-sidebar/init.h
+--- mutt-1.6.1/init.h 2016-06-12 18:43:00.408447684 +0100
++++ mutt-1.6.1-sidebar/init.h 2016-06-12 18:43:03.960503075 +0100
+@@ -42,11 +42,12 @@
+ #define DTYPE(x) ((x) & DT_MASK)
+
+ /* subtypes */
+-#define DT_SUBTYPE_MASK 0xf0
++#define DT_SUBTYPE_MASK 0xff0
+ #define DT_SORT_ALIAS 0x10
+ #define DT_SORT_BROWSER 0x20
+ #define DT_SORT_KEYS 0x40
+ #define DT_SORT_AUX 0x80
++#define DT_SORT_SIDEBAR 0x100
+
+ /* flags to parse_set() */
+ #define M_SET_INV (1<<0) /* default is to invert all vars */
+@@ -2665,6 +2666,147 @@
+ ** Command to use when spawning a subshell. By default, the user's login
+ ** shell from \fC/etc/passwd\fP is used.
*/
-+ {"sidebar_delim", DT_STR, R_BOTH, UL &SidebarDelim, "|"},
++#ifdef USE_SIDEBAR
++ { "sidebar_divider_char", DT_STR, R_BOTH, UL &SidebarDividerChar, UL "|" },
+ /*
+ ** .pp
-+ ** This specifies the delimiter between the sidebar (if visible) and
-+ ** other screens.
++ ** This specifies the characters to be drawn between the sidebar (when
++ ** visible) and the other Mutt panels. ASCII and Unicode line-drawing
++ ** characters are supported.
++ */
++ { "sidebar_delim_chars", DT_STR, R_NONE, UL &SidebarDelimChars, UL "/." },
++ /*
++ ** .pp
++ ** This contains the list of characters which you would like to treat
++ ** as folder separators for displaying paths in the sidebar.
++ ** .pp
++ ** Local mail is often arranged in directories: `dir1/dir2/mailbox'.
++ ** .ts
++ ** set sidebar_delim_chars='/'
++ ** .te
++ ** .pp
++ ** IMAP mailboxes are often named: `folder1.folder2.mailbox'.
++ ** .ts
++ ** set sidebar_delim_chars='.'
++ ** .te
++ ** .pp
++ ** \fBSee also:\fP $$sidebar_short_path, $$sidebar_folder_indent, $$sidebar_indent_string.
++ */
++ { "sidebar_folder_indent", DT_BOOL, R_BOTH, OPTSIDEBARFOLDERINDENT, 0 },
++ /*
++ ** .pp
++ ** Set this to indent mailboxes in the sidebar.
++ ** .pp
++ ** \fBSee also:\fP $$sidebar_short_path, $$sidebar_indent_string, $$sidebar_delim_chars.
++ */
++ { "sidebar_format", DT_STR, R_NONE, UL &SidebarFormat, UL "%B%?F? [%F]?%* %?N?%N/?%S" },
++ /*
++ ** .pp
++ ** This variable allows you to customize the sidebar display. This string is
++ ** similar to $$index_format, but has its own set of \fCprintf(3)\fP-like
++ ** sequences:
++ ** .dl
++ ** .dt %B .dd Name of the mailbox
++ ** .dt %S .dd * Size of mailbox (total number of messages)
++ ** .dt %N .dd * Number of New messages in the mailbox
++ ** .dt %F .dd * Number of Flagged messages in the mailbox
++ ** .dt %! .dd ``!'' : one flagged message;
++ ** ``!!'' : two flagged messages;
++ ** ``n!'' : n flagged messages (for n > 2).
++ ** Otherwise prints nothing.
++ ** .dt %d .dd * @ Number of deleted messages
++ ** .dt %L .dd * @ Number of messages after limiting
++ ** .dt %t .dd * @ Number of tagged messages
++ ** .dt %>X .dd right justify the rest of the string and pad with ``X''
++ ** .dt %|X .dd pad to the end of the line with ``X''
++ ** .dt %*X .dd soft-fill with character ``X'' as pad
++ ** .de
++ ** .pp
++ ** * = Can be optionally printed if nonzero
++ ** @ = Only applicable to the current folder
++ */
++ { "sidebar_indent_string", DT_STR, R_BOTH, UL &SidebarIndentString, UL " " },
++ /*
++ ** .pp
++ ** This specifies the string that is used to indent mailboxes in the sidebar.
++ ** It defaults to two spaces.
++ ** .pp
++ ** \fBSee also:\fP $$sidebar_short_path, $$sidebar_folder_indent, $$sidebar_delim_chars.
++ */
++ { "sidebar_new_mail_only", DT_BOOL, R_BOTH, OPTSIDEBARNEWMAILONLY, 0 },
++ /*
++ ** .pp
++ ** When set, the sidebar will only display mailboxes containing new, or
++ ** flagged, mail.
++ ** .pp
++ ** \fBSee also:\fP $sidebar_whitelist.
++ */
++ { "sidebar_next_new_wrap", DT_BOOL, R_BOTH, UL OPTSIDEBARNEXTNEWWRAP, 0 },
++ /*
++ ** .pp
++ ** When set, the \fC\fP command will not stop and the end of
++ ** the list of mailboxes, but wrap around to the beginning. The
++ ** \fC\fP command is similarly affected, wrapping around to
++ ** the end of the list.
++ */
++ { "sidebar_refresh_time", DT_NUM, R_BOTH, UL &SidebarRefreshTime, 60 },
++ /*
++ ** .pp
++ ** Set sidebar_refresh_time to the minimum number of seconds between refreshes.
++ ** This will reduce network traffic.
++ ** .pp
++ ** \fBNote:\fP Set to 0 to disable refreshing.
++ */
++ { "sidebar_short_path", DT_BOOL, R_BOTH, OPTSIDEBARSHORTPATH, 0 },
++ /*
++ ** .pp
++ ** By default the sidebar will show the mailbox's path, relative to the
++ ** $$folder variable. Setting \fCsidebar_shortpath=yes\fP will shorten the
++ ** names relative to the previous name. Here's an example:
++ ** .dl
++ ** .dt \fBshortpath=no\fP .dd \fBshortpath=yes\fP .dd \fBshortpath=yes, folderindent=yes, indentstr=".."\fP
++ ** .dt \fCfruit\fP .dd \fCfruit\fP .dd \fCfruit\fP
++ ** .dt \fCfruit.apple\fP .dd \fCapple\fP .dd \fC..apple\fP
++ ** .dt \fCfruit.banana\fP .dd \fCbanana\fP .dd \fC..banana\fP
++ ** .dt \fCfruit.cherry\fP .dd \fCcherry\fP .dd \fC..cherry\fP
++ ** .de
++ ** .pp
++ ** \fBSee also:\fP $$sidebar_delim_chars, $$sidebar_folder_indent, $$sidebar_indent_string.
++ */
++ { "sidebar_sort_method", DT_SORT|DT_SORT_SIDEBAR, R_NONE, UL &SidebarSortMethod, SORT_ORDER },
++ /*
++ ** .pp
++ ** Specifies how to sort entries in the file browser. By default, the
++ ** entries are sorted alphabetically. Valid values:
++ ** .il
++ ** .dd alpha (alphabetically)
++ ** .dd count (all message count)
++ ** .dd date
++ ** .dd desc (description)
++ ** .dd new (new message count)
++ ** .dd size
++ ** .dd unsorted
++ ** .ie
++ ** .pp
++ ** You may optionally use the ``reverse-'' prefix to specify reverse sorting
++ ** order (example: ``\fCset sort_browser=reverse-date\fP'').
+ */
+ { "sidebar_visible", DT_BOOL, R_BOTH, OPTSIDEBAR, 0 },
+ /*
+ ** .pp
-+ ** This specifies whether or not to show sidebar (left-side list of folders).
-+ */
-+ { "sidebar_sort", DT_BOOL, R_BOTH, OPTSIDEBARSORT, 0 },
-+ /*
++ ** This specifies whether or not to show sidebar. The sidebar shows a list of
++ ** all your mailboxes.
+ ** .pp
-+ ** This specifies whether or not to sort the sidebar alphabetically.
++ ** \fBSee also:\fP $$sidebar_format, $$sidebar_width
+ */
+ { "sidebar_width", DT_NUM, R_BOTH, UL &SidebarWidth, 0 },
+ /*
+ ** .pp
-+ ** The width of the sidebar.
++ ** This controls the width of the sidebar. It is measured in screen columns.
++ ** For example: sidebar_width=20 could display 20 ASCII characters, or 10
++ ** Chinese characters.
+ */
- { "pgp_use_gpg_agent", DT_BOOL, R_NONE, OPTUSEGPGAGENT, 0},
++#endif
+ { "sig_dashes", DT_BOOL, R_NONE, OPTSIGDASHES, 1 },
/*
** .pp
-diff --git a/mailbox.h b/mailbox.h
-index 2b2c9a1..000503d 100644
---- a/mailbox.h
-+++ b/mailbox.h
-@@ -27,6 +27,7 @@
+@@ -3652,6 +3794,19 @@
+ { NULL, 0 }
+ };
+
++const struct mapping_t SortSidebarMethods[] = {
++ { "alpha", SORT_PATH },
++ { "count", SORT_COUNT },
++ { "desc", SORT_DESC },
++ { "flagged", SORT_FLAGGED },
++ { "mailbox-order", SORT_ORDER },
++ { "name", SORT_PATH },
++ { "new", SORT_COUNT_NEW },
++ { "path", SORT_PATH },
++ { "unsorted", SORT_ORDER },
++ { NULL, 0 }
++};
++
+
+ /* functions used to parse commands in a rc file */
+
+@@ -3741,6 +3896,9 @@
+ { "send-hook", mutt_parse_hook, M_SENDHOOK },
+ { "send2-hook", mutt_parse_hook, M_SEND2HOOK },
+ { "set", parse_set, 0 },
++#ifdef USE_SIDEBAR
++ { "sidebar_whitelist",parse_list, UL &SidebarWhitelist },
++#endif
+ { "source", parse_source, 0 },
+ { "spam", parse_spam_list, M_SPAM },
+ { "nospam", parse_spam_list, M_NOSPAM },
+diff -urN mutt-1.6.1/keymap.c mutt-1.6.1-sidebar/keymap.c
+--- mutt-1.6.1/keymap.c 2016-06-12 18:43:00.408447684 +0100
++++ mutt-1.6.1-sidebar/keymap.c 2016-06-12 18:43:03.960503075 +0100
+@@ -453,6 +453,9 @@
+ }
+ #endif
+
++ /* update sidebar stats */
++ mutt_buffy_check(0);
++
+ timeout (i * 1000);
+ tmp = mutt_getch();
+ timeout (-1);
+diff -urN mutt-1.6.1/mailbox.h mutt-1.6.1-sidebar/mailbox.h
+--- mutt-1.6.1/mailbox.h 2016-06-12 18:43:00.408447684 +0100
++++ mutt-1.6.1-sidebar/mailbox.h 2016-06-12 18:43:03.960503075 +0100
+@@ -27,6 +27,9 @@
#define M_NEWFOLDER (1<<4) /* create a new folder - same as M_APPEND, but uses
* safe_fopen() for mbox-style folders.
*/
++#ifdef USE_SIDEBAR
+#define M_PEEK (1<<5) /* revert atime back after taking a look (if applicable) */
++#endif
/* mx_open_new_message() */
#define M_ADD_FROM (1<<0) /* add a From_ line */
-diff --git a/mbox.c b/mbox.c
-index 6d3b6bd..fa82eb3 100644
---- a/mbox.c
-+++ b/mbox.c
-@@ -104,6 +104,7 @@ int mmdf_parse_mailbox (CONTEXT *ctx)
+diff -urN mutt-1.6.1/main.c mutt-1.6.1-sidebar/main.c
+--- mutt-1.6.1/main.c 2016-06-12 18:43:00.409447699 +0100
++++ mutt-1.6.1-sidebar/main.c 2016-06-12 18:43:03.961503091 +0100
+@@ -31,6 +31,9 @@
+ #include "url.h"
+ #include "mutt_crypt.h"
+ #include "mutt_idna.h"
++#ifdef USE_SIDEBAR
++#include "sidebar.h"
++#endif
+
+ #ifdef USE_SASL
+ #include "mutt_sasl.h"
+@@ -485,6 +488,12 @@
+ "-USE_HCACHE "
+ #endif
+
++#ifdef USE_SIDEBAR
++ "+USE_SIDEBAR "
++#else
++ "-USE_SIDEBAR "
++#endif
++
+ );
+
+ #ifdef ISPELL
+@@ -557,7 +566,11 @@
+
+ int main (int argc, char **argv)
+ {
++#ifdef USE_SIDEBAR
++ char folder[PATH_MAX] = "";
++#else
+ char folder[_POSIX_PATH_MAX] = "";
++#endif
+ char *subject = NULL;
+ char *includeFile = NULL;
+ char *draftFile = NULL;
+@@ -828,6 +841,9 @@
+ clear ();
+ mutt_error = mutt_curses_error;
+ mutt_message = mutt_curses_message;
++#ifdef USE_SIDEBAR
++ mutt_sb_init();
++#endif
+ }
+
+ /* Create the Maildir directory if it doesn't exist. */
+@@ -1184,6 +1200,15 @@
+ strfcpy (folder, NONULL(Spoolfile), sizeof (folder));
+ mutt_expand_path (folder, sizeof (folder));
+
++#ifdef USE_SIDEBAR
++ {
++ char tmpfolder[PATH_MAX] = "";
++ strfcpy (tmpfolder, folder, sizeof (tmpfolder));
++ if (!realpath (tmpfolder, folder))
++ strfcpy (folder, tmpfolder, sizeof (tmpfolder));
++ }
++#endif
++
+ mutt_str_replace (&CurrentFolder, folder);
+ mutt_str_replace (&LastFolder, folder);
+
+@@ -1206,6 +1231,9 @@
+ if((Context = mx_open_mailbox (folder, ((flags & M_RO) || option (OPTREADONLY)) ? M_READONLY : 0, NULL))
+ || !explicit_folder)
+ {
++#ifdef USE_SIDEBAR
++ mutt_sb_set_open_buffy (folder);
++#endif
+ mutt_index_menu ();
+ if (Context)
+ FREE (&Context);
+diff -urN mutt-1.6.1/Makefile.am mutt-1.6.1-sidebar/Makefile.am
+--- mutt-1.6.1/Makefile.am 2016-06-12 18:43:00.389447388 +0100
++++ mutt-1.6.1-sidebar/Makefile.am 2016-06-12 18:43:03.944502826 +0100
+@@ -56,7 +56,7 @@
+ mutt_idna.c mutt_sasl.c mutt_socket.c mutt_ssl.c mutt_ssl_gnutls.c \
+ mutt_tunnel.c pgp.c pgpinvoke.c pgpkey.c pgplib.c pgpmicalg.c \
+ pgppacket.c pop.c pop_auth.c pop_lib.c remailer.c resize.c sha1.c \
+- smime.c smtp.c utf8.c wcwidth.c \
++ sidebar.c smime.c smtp.c utf8.c wcwidth.c \
+ bcache.h browser.h hcache.h mbyte.h mutt_idna.h remailer.h url.h
+
+ EXTRA_DIST = COPYRIGHT GPL OPS OPS.PGP OPS.CRYPT OPS.SMIME TODO UPDATING \
+@@ -71,7 +71,7 @@
+ mbyte.h lib.h extlib.c pgpewrap.c smime_keys.pl pgplib.h \
+ README.SSL smime.h group.h \
+ muttbug pgppacket.h depcomp ascii.h BEWARE PATCHES patchlist.sh \
+- ChangeLog mkchangelog.sh mutt_idna.h \
++ ChangeLog mkchangelog.sh mutt_idna.h sidebar.h OPS.sidebar \
+ snprintf.c regex.c crypt-gpgme.h hcachever.sh.in sys_socket.h \
+ txt2c.c txt2c.sh version.sh check_sec.sh
+
+@@ -129,9 +129,9 @@
+ keymap_defs.h: $(OPS) $(srcdir)/gen_defs
+ $(srcdir)/gen_defs $(OPS) > keymap_defs.h
+
+-keymap_alldefs.h: $(srcdir)/OPS $(srcdir)/OPS.PGP $(srcdir)/OPS.MIX $(srcdir)/OPS.CRYPT $(srcdir)/OPS.SMIME $(srcdir)/gen_defs
++keymap_alldefs.h: $(srcdir)/OPS $(srcdir)/OPS.SIDEBAR $(srcdir)/OPS.PGP $(srcdir)/OPS.MIX $(srcdir)/OPS.CRYPT $(srcdir)/OPS.SMIME $(srcdir)/gen_defs
+ rm -f $@
+- $(srcdir)/gen_defs $(srcdir)/OPS $(srcdir)/OPS.PGP \
++ $(srcdir)/gen_defs $(srcdir)/OPS $(srcdir)/OPS.SIDEBAR $(srcdir)/OPS.PGP \
+ $(srcdir)/OPS.MIX $(srcdir)/OPS.CRYPT $(srcdir)/OPS.SMIME \
+ > keymap_alldefs.h
+
+diff -urN mutt-1.6.1/mbox.c mutt-1.6.1-sidebar/mbox.c
+--- mutt-1.6.1/mbox.c 2016-06-12 18:43:00.409447699 +0100
++++ mutt-1.6.1-sidebar/mbox.c 2016-06-12 18:43:03.961503091 +0100
+@@ -100,6 +100,9 @@
mutt_perror (ctx->path);
return (-1);
}
++#ifdef USE_SIDEBAR
+ ctx->atime = sb.st_atime;
++#endif
ctx->mtime = sb.st_mtime;
ctx->size = sb.st_size;
-@@ -255,6 +256,7 @@ int mbox_parse_mailbox (CONTEXT *ctx)
+@@ -251,6 +254,9 @@
ctx->size = sb.st_size;
ctx->mtime = sb.st_mtime;
++#ifdef USE_SIDEBAR
+ ctx->atime = sb.st_atime;
++#endif
#ifdef NFS_ATTRIBUTE_HACK
if (sb.st_mtime > sb.st_atime)
-diff --git a/menu.c b/menu.c
-index 27b5f8e..bc3a02f 100644
---- a/menu.c
-+++ b/menu.c
-@@ -24,6 +24,7 @@
+diff -urN mutt-1.6.1/menu.c mutt-1.6.1-sidebar/menu.c
+--- mutt-1.6.1/menu.c 2016-06-12 18:43:00.409447699 +0100
++++ mutt-1.6.1-sidebar/menu.c 2016-06-12 18:43:03.961503091 +0100
+@@ -24,6 +24,9 @@
#include "mutt_curses.h"
#include "mutt_menu.h"
#include "mbyte.h"
++#ifdef USE_SIDEBAR
+#include "sidebar.h"
++#endif
- extern size_t UngetCount;
+ char* SearchBuffers[MENU_MAX];
-@@ -186,7 +187,7 @@ static void menu_pad_string (char *s, size_t n)
+@@ -184,7 +187,7 @@
{
char *scratch = safe_strdup (s);
int shift = option (OPTARROWCURSOR) ? 3 : 0;
@@ -702,15 +2575,17 @@ index 27b5f8e..bc3a02f 100644
mutt_format_string (s, n, cols, cols, FMT_LEFT, ' ', scratch, mutt_strlen (scratch), 1);
s[n - 1] = 0;
-@@ -239,6 +240,7 @@ void menu_redraw_index (MUTTMENU *menu)
+@@ -237,6 +240,9 @@
int do_color;
int attr;
-+ draw_sidebar(1);
++#ifdef USE_SIDEBAR
++ mutt_sb_draw();
++#endif
for (i = menu->top; i < menu->top + menu->pagelen; i++)
{
if (i < menu->max)
-@@ -249,7 +251,7 @@ void menu_redraw_index (MUTTMENU *menu)
+@@ -247,7 +253,7 @@
menu_pad_string (buf, sizeof (buf));
ATTRSET(attr);
@@ -719,16 +2594,19 @@ index 27b5f8e..bc3a02f 100644
do_color = 1;
if (i == menu->current)
-@@ -272,7 +274,7 @@ void menu_redraw_index (MUTTMENU *menu)
+@@ -270,7 +276,11 @@
else
{
NORMAL_COLOR;
-- CLEARLINE(i - menu->top + menu->offset);
++#ifdef USE_SIDEBAR
+ CLEARLINE_WIN(i - menu->top + menu->offset);
++#else
+ CLEARLINE(i - menu->top + menu->offset);
++#endif
}
}
NORMAL_COLOR;
-@@ -289,7 +291,7 @@ void menu_redraw_motion (MUTTMENU *menu)
+@@ -287,7 +297,7 @@
return;
}
@@ -737,7 +2615,7 @@ index 27b5f8e..bc3a02f 100644
ATTRSET(menu->color (menu->oldcurrent));
if (option (OPTARROWCURSOR))
-@@ -301,13 +303,13 @@ void menu_redraw_motion (MUTTMENU *menu)
+@@ -299,13 +309,13 @@
{
menu_make_entry (buf, sizeof (buf), menu, menu->oldcurrent);
menu_pad_string (buf, sizeof (buf));
@@ -753,7 +2631,7 @@ index 27b5f8e..bc3a02f 100644
}
else
{
-@@ -320,7 +322,7 @@ void menu_redraw_motion (MUTTMENU *menu)
+@@ -318,7 +328,7 @@
menu_make_entry (buf, sizeof (buf), menu, menu->current);
menu_pad_string (buf, sizeof (buf));
SETCOLOR(MT_COLOR_INDICATOR);
@@ -762,7 +2640,7 @@ index 27b5f8e..bc3a02f 100644
print_enriched_string (menu->color(menu->current), (unsigned char *) buf, 0);
}
menu->redraw &= REDRAW_STATUS;
-@@ -332,7 +334,7 @@ void menu_redraw_current (MUTTMENU *menu)
+@@ -330,7 +340,7 @@
char buf[LONG_STRING];
int attr = menu->color (menu->current);
@@ -771,7 +2649,7 @@ index 27b5f8e..bc3a02f 100644
menu_make_entry (buf, sizeof (buf), menu, menu->current);
menu_pad_string (buf, sizeof (buf));
-@@ -881,7 +883,7 @@ int mutt_menuLoop (MUTTMENU *menu)
+@@ -873,7 +883,7 @@
if (option (OPTARROWCURSOR))
@@ -780,160 +2658,207 @@ index 27b5f8e..bc3a02f 100644
else if (option (OPTBRAILLEFRIENDLY))
move (menu->current - menu->top + menu->offset, 0);
else
-diff --git a/mh.c b/mh.c
-index 63e12d2..4a84a99 100644
---- a/mh.c
-+++ b/mh.c
-@@ -295,6 +295,28 @@ void mh_buffy(BUFFY *b)
+diff -urN mutt-1.6.1/mh.c mutt-1.6.1-sidebar/mh.c
+--- mutt-1.6.1/mh.c 2016-06-12 18:43:00.410447715 +0100
++++ mutt-1.6.1-sidebar/mh.c 2016-06-12 18:43:03.962503107 +0100
+@@ -295,6 +295,48 @@
mhs_free_sequences (&mhs);
}
-+void mh_buffy_update (const char *path, int *msgcount, int *msg_unread, int *msg_flagged)
++#ifdef USE_SIDEBAR
++/**
++ * mh_buffy_update - Update messages counts for an mh mailbox
++ * @mailbox: BUFFY representing a maildir mailbox
++ *
++ * Read through an mh mailbox and count messages. Save the number of new,
++ * flagged messages and a timestamp for now.
++ */
++void
++mh_buffy_update (BUFFY *mailbox)
+{
+ int i;
+ struct mh_sequences mhs;
-+ memset (&mhs, 0, sizeof (mhs));
+
-+ if (mh_read_sequences (&mhs, path) < 0)
++ if (!mailbox)
+ return;
+
-+ msgcount = 0;
-+ msg_unread = 0;
-+ msg_flagged = 0;
++ if (!option (OPTSIDEBAR))
++ return;
++
++ memset (&mhs, 0, sizeof (mhs));
++
++ if (mh_read_sequences (&mhs, mailbox->path) < 0)
++ return;
++
++ mailbox->msg_count = 0;
++ mailbox->msg_unread = 0;
++ mailbox->msg_flagged = 0;
++
+ for (i = 0; i <= mhs.max; i++)
-+ msgcount++;
-+ if (mhs_check (&mhs, i) & MH_SEQ_UNSEEN) {
-+ msg_unread++;
++ {
++ mailbox->msg_count++;
++ if (mhs_check (&mhs, i) & MH_SEQ_UNSEEN)
++ mailbox->msg_unread++;
++ if (mhs_check (&mhs, i) & MH_SEQ_FLAGGED)
++ mailbox->msg_flagged++;
+ }
-+ if (mhs_check (&mhs, i) & MH_SEQ_FLAGGED)
-+ msg_flagged++;
+ mhs_free_sequences (&mhs);
++ mailbox->sb_last_checked = time (NULL);
+}
++#endif
+
static int mh_mkstemp (CONTEXT * dest, FILE ** fp, char **tgt)
{
int fd;
-diff --git a/mutt.h b/mutt.h
-index 01d47de..5f25406 100644
---- a/mutt.h
-+++ b/mutt.h
-@@ -435,6 +435,8 @@ enum
- OPTSAVEEMPTY,
- OPTSAVENAME,
- OPTSCORE,
-+ OPTSIDEBAR,
-+ OPTSIDEBARSORT,
- OPTSIGDASHES,
- OPTSIGONTOP,
- OPTSORTRE,
-@@ -880,6 +882,7 @@ typedef struct _context
- {
- char *path;
- FILE *fp;
-+ time_t atime;
- time_t mtime;
- off_t size;
- off_t vsize;
-@@ -920,6 +923,7 @@ typedef struct _context
- unsigned int quiet : 1; /* inhibit status messages? */
- unsigned int collapsed : 1; /* are all threads collapsed? */
- unsigned int closing : 1; /* mailbox is being closed */
-+ unsigned int peekonly : 1; /* just taking a glance, revert atime */
-
- /* driver hooks */
- void *data; /* driver specific data */
-diff --git a/mutt_curses.h b/mutt_curses.h
-index f8bc47c..ef9884e 100644
---- a/mutt_curses.h
-+++ b/mutt_curses.h
-@@ -64,6 +64,7 @@
+diff -urN mutt-1.6.1/mutt_curses.h mutt-1.6.1-sidebar/mutt_curses.h
+--- mutt-1.6.1/mutt_curses.h 2016-06-12 18:43:00.410447715 +0100
++++ mutt-1.6.1-sidebar/mutt_curses.h 2016-06-12 18:43:03.962503107 +0100
+@@ -64,6 +64,9 @@
#undef lines
#endif /* lines */
-+#define CLEARLINE_WIN(x) move(x,SidebarWidth), clrtoeol()
++#ifdef USE_SIDEBAR
++#define CLEARLINE_WIN(x) move (x,SidebarWidth), clrtoeol()
++#endif
#define CLEARLINE(x) move(x,0), clrtoeol()
#define CENTERLINE(x,y) move(y, (COLS-strlen(x))/2), addstr(x)
#define BEEP() do { if (option (OPTBEEP)) beep(); } while (0)
-@@ -121,6 +122,8 @@ enum
+@@ -124,6 +127,14 @@
MT_COLOR_UNDERLINE,
MT_COLOR_INDEX,
MT_COLOR_PROMPT,
-+ MT_COLOR_NEW,
++#ifdef USE_SIDEBAR
++ MT_COLOR_DIVIDER,
+ MT_COLOR_FLAGGED,
++ MT_COLOR_HIGHLIGHT,
++ MT_COLOR_NEW,
++ MT_COLOR_SB_INDICATOR,
++ MT_COLOR_SB_SPOOLFILE,
++#endif
MT_COLOR_MAX
};
-diff --git a/muttlib.c b/muttlib.c
-index c1d565f..039e7c3 100644
---- a/muttlib.c
-+++ b/muttlib.c
-@@ -1279,6 +1279,8 @@ void mutt_FormatString (char *dest, /* output buffer */
+@@ -163,12 +174,16 @@
+
+ static inline int mutt_term_width(short wrap)
+ {
++ int cols = COLS;
++#ifdef USE_SIDEBAR
++ cols -= SidebarWidth;
++#endif
+ if (wrap < 0)
+- return COLS > -wrap ? COLS + wrap : COLS;
++ return cols > -wrap ? cols + wrap : cols;
+ else if (wrap)
+- return wrap < COLS ? wrap : COLS;
++ return wrap < cols ? wrap : cols;
+ else
+- return COLS;
++ return cols;
+ }
+
+ extern int *ColorQuote;
+diff -urN mutt-1.6.1/mutt.h mutt-1.6.1-sidebar/mutt.h
+--- mutt-1.6.1/mutt.h 2016-06-12 18:43:00.410447715 +0100
++++ mutt-1.6.1-sidebar/mutt.h 2016-06-12 18:43:03.962503107 +0100
+@@ -428,6 +428,13 @@
+ OPTSAVEEMPTY,
+ OPTSAVENAME,
+ OPTSCORE,
++#ifdef USE_SIDEBAR
++ OPTSIDEBAR,
++ OPTSIDEBARFOLDERINDENT,
++ OPTSIDEBARNEWMAILONLY,
++ OPTSIDEBARNEXTNEWWRAP,
++ OPTSIDEBARSHORTPATH,
++#endif
+ OPTSIGDASHES,
+ OPTSIGONTOP,
+ OPTSORTRE,
+@@ -872,6 +879,9 @@
+ {
+ char *path;
+ FILE *fp;
++#ifdef USE_SIDEBAR
++ time_t atime;
++#endif
+ time_t mtime;
+ off_t size;
+ off_t vsize;
+@@ -906,6 +916,9 @@
+ unsigned int quiet : 1; /* inhibit status messages? */
+ unsigned int collapsed : 1; /* are all threads collapsed? */
+ unsigned int closing : 1; /* mailbox is being closed */
++#ifdef USE_SIDEBAR
++ unsigned int peekonly : 1; /* just taking a glance, revert atime */
++#endif
+
+ /* driver hooks */
+ void *data; /* driver specific data */
+diff -urN mutt-1.6.1/muttlib.c mutt-1.6.1-sidebar/muttlib.c
+--- mutt-1.6.1/muttlib.c 2016-06-12 18:43:00.411447731 +0100
++++ mutt-1.6.1-sidebar/muttlib.c 2016-06-12 18:43:03.963503122 +0100
+@@ -1282,7 +1282,7 @@
pl = pw = 1;
/* see if there's room to add content, else ignore */
-+ if ( DrawFullLine )
-+ {
- if ((col < COLS && wlen < destlen) || soft)
+- if ((col < COLS && wlen < destlen) || soft)
++ if ((col < (COLS - SidebarWidth) && (wlen < destlen)) || soft)
{
int pad;
-@@ -1322,6 +1324,52 @@ void mutt_FormatString (char *dest, /* output buffer */
- col += wid;
- src += pl;
- }
-+ }
-+ else
-+ {
-+ if ((col < COLS-SidebarWidth && wlen < destlen) || soft)
-+ {
-+ int pad;
-+
-+ /* get contents after padding */
-+ mutt_FormatString (buf, sizeof (buf), 0, src + pl, callback, data, flags);
-+ len = mutt_strlen (buf);
-+ wid = mutt_strwidth (buf);
-+
-+ /* try to consume as many columns as we can, if we don't have
-+ * memory for that, use as much memory as possible */
+
+@@ -1293,7 +1293,7 @@
+
+ /* try to consume as many columns as we can, if we don't have
+ * memory for that, use as much memory as possible */
+- pad = (COLS - col - wid) / pw;
+ pad = (COLS - SidebarWidth - col - wid) / pw;
-+ if (pad > 0 && wlen + (pad * pl) + len > destlen)
-+ pad = ((signed)(destlen - wlen - len)) / pl;
-+ if (pad > 0)
-+ {
-+ while (pad--)
-+ {
-+ memcpy (wptr, src, pl);
-+ wptr += pl;
-+ wlen += pl;
-+ col += pw;
-+ }
-+ }
-+ else if (soft && pad < 0)
-+ {
-+ /* \0-terminate dest for length computation in mutt_wstr_trunc() */
-+ *wptr = 0;
-+ /* make sure right part is at most as wide as display */
-+ len = mutt_wstr_trunc (buf, destlen, COLS, &wid);
-+ /* truncate left so that right part fits completely in */
-+ wlen = mutt_wstr_trunc (dest, destlen - len, col + pad, &col);
-+ wptr = dest + wlen;
-+ }
-+ if (len + wlen > destlen)
+ if (pad > 0 && wlen + (pad * pl) + len > destlen)
+ pad = ((signed)(destlen - wlen - len)) / pl;
+ if (pad > 0)
+@@ -1312,13 +1312,13 @@
+ /* \0-terminate dest for length computation in mutt_wstr_trunc() */
+ *wptr = 0;
+ /* make sure right part is at most as wide as display */
+- len = mutt_wstr_trunc (buf, destlen, COLS-offset, &wid);
++ len = mutt_wstr_trunc (buf, destlen, COLS - offset - SidebarWidth, &wid);
+ /* truncate left so that right part fits completely in */
+ wlen = mutt_wstr_trunc (dest, destlen - len, col + pad*pw -offset, &col);
+ wptr = dest + wlen;
+ }
+ if (len + wlen > destlen)
+- len = mutt_wstr_trunc (buf, destlen - wlen, COLS - col, NULL);
+ len = mutt_wstr_trunc (buf, destlen - wlen, COLS - SidebarWidth - col, NULL);
-+ memcpy (wptr, buf, len);
-+ wptr += len;
-+ wlen += len;
-+ col += wid;
-+ src += pl;
-+ }
-+ }
- break; /* skip rest of input */
- }
- else if (ch == '|')
-diff --git a/mx.c b/mx.c
-index 0a1a80e..e80b8ff 100644
---- a/mx.c
-+++ b/mx.c
-@@ -595,6 +595,7 @@ static int mx_open_mailbox_append (CONTEXT *ctx, int flags)
+ memcpy (wptr, buf, len);
+ wptr += len;
+ wlen += len;
+diff -urN mutt-1.6.1/mutt_menu.h mutt-1.6.1-sidebar/mutt_menu.h
+--- mutt-1.6.1/mutt_menu.h 2016-06-12 18:43:00.410447715 +0100
++++ mutt-1.6.1-sidebar/mutt_menu.h 2016-06-12 18:43:03.962503107 +0100
+@@ -34,6 +34,9 @@
+ #define REDRAW_FULL (1<<5)
+ #define REDRAW_BODY (1<<6)
+ #define REDRAW_SIGWINCH (1<<7)
++#ifdef USE_SIDEBAR
++#define REDRAW_SIDEBAR (1<<8)
++#endif
+
+ #define M_MODEFMT "-- Mutt: %s"
+
+diff -urN mutt-1.6.1/mx.c mutt-1.6.1-sidebar/mx.c
+--- mutt-1.6.1/mx.c 2016-06-12 18:43:00.411447731 +0100
++++ mutt-1.6.1-sidebar/mx.c 2016-06-12 18:43:03.963503122 +0100
+@@ -29,6 +29,9 @@
+ #include "copy.h"
+ #include "keymap.h"
+ #include "url.h"
++#ifdef USE_SIDEBAR
++#include "sidebar.h"
++#endif
+
+ #ifdef USE_IMAP
+ #include "imap.h"
+@@ -580,6 +583,7 @@
* M_APPEND open mailbox for appending
* M_READONLY open mailbox in read-only mode
* M_QUIET only print error messages
@@ -941,70 +2866,128 @@ index 0a1a80e..e80b8ff 100644
* ctx if non-null, context struct to use
*/
CONTEXT *mx_open_mailbox (const char *path, int flags, CONTEXT *pctx)
-@@ -617,6 +618,8 @@ CONTEXT *mx_open_mailbox (const char *path, int flags, CONTEXT *pctx)
+@@ -602,6 +606,10 @@
ctx->quiet = 1;
if (flags & M_READONLY)
ctx->readonly = 1;
++#ifdef USE_SIDEBAR
+ if (flags & M_PEEK)
+ ctx->peekonly = 1;
++#endif
if (flags & (M_APPEND|M_NEWFOLDER))
{
-@@ -721,9 +724,21 @@ CONTEXT *mx_open_mailbox (const char *path, int flags, CONTEXT *pctx)
- void mx_fastclose_mailbox (CONTEXT *ctx)
- {
- int i;
-+#ifndef BUFFY_SIZE
-+ struct utimbuf ut;
-+#endif
-
+@@ -705,8 +713,21 @@
if(!ctx)
return;
-+#ifndef BUFFY_SIZE
+
++#ifdef USE_SIDEBAR
+ /* fix up the times so buffy won't get confused */
-+ if (ctx->peekonly && ctx->path && ctx->mtime > ctx->atime)
-+ {
-+ ut.actime = ctx->atime;
++ struct utimbuf ut;
++ if (ctx->peekonly && ctx->path && (ctx->mtime > ctx->atime)) {
++ ut.actime = ctx->atime;
+ ut.modtime = ctx->mtime;
-+ utime (ctx->path, &ut);
++ utime (ctx->path, &ut);
+ }
+#endif
-
++
/* never announce that a mailbox we've just left has new mail. #3290
* XXX: really belongs in mx_close_mailbox, but this is a nice hook point */
-diff --git a/mx.h b/mx.h
-index 2ef4ec7..4aabadf 100644
---- a/mx.h
-+++ b/mx.h
-@@ -60,6 +60,7 @@ void mbox_reset_atime (CONTEXT *, struct stat *);
++#ifdef USE_SIDEBAR
++ if (!ctx->peekonly)
++#endif
+ mutt_buffy_setnotified(ctx->path);
+
+ if (ctx->mx_close)
+@@ -812,6 +833,12 @@
+ if (!ctx->hdrs[i]->deleted && ctx->hdrs[i]->read
+ && !(ctx->hdrs[i]->flagged && option (OPTKEEPFLAGGED)))
+ read_msgs++;
++#ifdef USE_SIDEBAR
++ if (ctx->hdrs[i]->deleted && !ctx->hdrs[i]->read)
++ ctx->unread--;
++ if (ctx->hdrs[i]->deleted && ctx->hdrs[i]->flagged)
++ ctx->flagged--;
++#endif
+ }
+
+ if (read_msgs && quadoption (OPT_MOVE) != M_NO)
+@@ -981,6 +1008,11 @@
+ !mutt_is_spool(ctx->path) && !option (OPTSAVEEMPTY))
+ mx_unlink_empty (ctx->path);
+
++#ifdef USE_SIDEBAR
++ ctx->msgcount -= ctx->deleted;
++ mutt_sb_set_buffystats (ctx);
++#endif
++
+ mx_fastclose_mailbox (ctx);
+
+ return 0;
+diff -urN mutt-1.6.1/mx.h mutt-1.6.1-sidebar/mx.h
+--- mutt-1.6.1/mx.h 2016-06-12 18:43:00.411447731 +0100
++++ mutt-1.6.1-sidebar/mx.h 2016-06-12 18:43:03.963503122 +0100
+@@ -26,6 +26,7 @@
+ #define _MX_H
+
+ #include "mailbox.h"
++#include "buffy.h"
+
+ /* supported mailbox formats */
+ enum
+@@ -57,6 +58,9 @@
int mh_read_dir (CONTEXT *, const char *);
int mh_sync_mailbox (CONTEXT *, int *);
int mh_check_mailbox (CONTEXT *, int *);
-+void mh_buffy_update (const char *, int *, int *, int *);
++#ifdef USE_SIDEBAR
++void mh_buffy_update (BUFFY *mailbox);
++#endif
int mh_check_empty (const char *);
int maildir_read_dir (CONTEXT *);
-diff --git a/pager.c b/pager.c
-index c99f1e4..5cfcb75 100644
---- a/pager.c
-+++ b/pager.c
-@@ -29,6 +29,7 @@
+diff -urN mutt-1.6.1/OPS.SIDEBAR mutt-1.6.1-sidebar/OPS.SIDEBAR
+--- mutt-1.6.1/OPS.SIDEBAR 1970-01-01 01:00:00.000000000 +0100
++++ mutt-1.6.1-sidebar/OPS.SIDEBAR 2016-06-12 18:43:03.944502826 +0100
+@@ -0,0 +1,8 @@
++OP_SIDEBAR_NEXT "Move the highlight to next mailbox"
++OP_SIDEBAR_NEXT_NEW "Move the highlight to next mailbox with new mail"
++OP_SIDEBAR_OPEN "Open highlighted mailbox"
++OP_SIDEBAR_PAGE_DOWN "Scroll the Sidebar down 1 page"
++OP_SIDEBAR_PAGE_UP "Scroll the Sidebar up 1 page"
++OP_SIDEBAR_PREV "Move the highlight to previous mailbox"
++OP_SIDEBAR_PREV_NEW "Move the highlight to previous mailbox with new mail"
++OP_SIDEBAR_TOGGLE_VISIBLE "Make the Sidebar (in)visible"
+diff -urN mutt-1.6.1/pager.c mutt-1.6.1-sidebar/pager.c
+--- mutt-1.6.1/pager.c 2016-06-12 18:43:00.412447746 +0100
++++ mutt-1.6.1-sidebar/pager.c 2016-06-12 18:43:03.964503138 +0100
+@@ -29,6 +29,9 @@
#include "pager.h"
#include "attach.h"
#include "mbyte.h"
++#ifdef USE_SIDEBAR
+#include "sidebar.h"
++#endif
#include "mutt_crypt.h"
-@@ -1095,6 +1096,7 @@ static int format_line (struct line_t **lineInfo, int n, unsigned char *buf,
- wchar_t wc;
- mbstate_t mbstate;
- int wrap_cols = mutt_term_width ((flags & M_PAGER_NOWRAP) ? 0 : Wrap);
-+ wrap_cols -= SidebarWidth;
+@@ -1491,7 +1494,7 @@
+ * a newline (grr!).
+ */
+ #ifndef USE_SLANG_CURSES
+- if (col < COLS)
++ if (col < (COLS - SidebarWidth))
+ #endif
+ addch ('\n');
- if (check_attachment_marker ((char *)buf) == 0)
- wrap_cols = COLS;
-@@ -1746,7 +1748,7 @@ mutt_pager (const char *banner, const char *fname, int flags, pager_t *extra)
+@@ -1573,6 +1576,7 @@
+
+ int bodyoffset = 1; /* offset of first line of real text */
+ int statusoffset = 0; /* offset for the status bar */
++ int statuswidth = COLS;
+ int helpoffset = LINES - 2; /* offset for the help bar. */
+ int bodylen = LINES - 2 - bodyoffset; /* length of displayable area */
+
+@@ -1747,7 +1751,7 @@
if ((redraw & REDRAW_BODY) || topline != oldtopline)
{
do {
@@ -1013,465 +2996,1455 @@ index c99f1e4..5cfcb75 100644
curline = oldtopline = topline;
lines = 0;
force_redraw = 0;
-@@ -1759,6 +1761,7 @@ mutt_pager (const char *banner, const char *fname, int flags, pager_t *extra)
+@@ -1760,6 +1764,9 @@
&QuoteList, &q_level, &force_redraw, &SearchRE) > 0)
lines++;
curline++;
-+ move(lines + bodyoffset, SidebarWidth);
++#ifdef USE_SIDEBAR
++ move (lines + bodyoffset, SidebarWidth);
++#endif
}
last_offset = lineInfo[curline].offset;
} while (force_redraw);
-@@ -1771,6 +1774,7 @@ mutt_pager (const char *banner, const char *fname, int flags, pager_t *extra)
+@@ -1772,6 +1779,9 @@
addch ('~');
addch ('\n');
lines++;
-+ move(lines + bodyoffset, SidebarWidth);
++#ifdef USE_SIDEBAR
++ move (lines + bodyoffset, SidebarWidth);
++#endif
}
NORMAL_COLOR;
-@@ -1794,22 +1798,22 @@ mutt_pager (const char *banner, const char *fname, int flags, pager_t *extra)
+@@ -1789,29 +1799,49 @@
+ hfi.ctx = Context;
+ hfi.pager_progress = pager_progress_str;
+
++#ifdef USE_SIDEBAR
++ statuswidth = COLS;
++ if (option (OPTSTATUSONTOP) && (PagerIndexLines > 0))
++ statuswidth -= SidebarWidth;
++#endif
++
+ if (last_pos < sb.st_size - 1)
+ snprintf(pager_progress_str, sizeof(pager_progress_str), OFF_T_FMT "%%", (100 * last_offset / sb.st_size));
+ else
strfcpy(pager_progress_str, (topline == 0) ? "all" : "end", sizeof(pager_progress_str));
/* print out the pager status bar */
- move (statusoffset, 0);
+ move (statusoffset, SidebarWidth);
SETCOLOR (MT_COLOR_STATUS);
++#ifdef USE_SIDEBAR
++ short sw = SidebarWidth;
++ if (option (OPTSTATUSONTOP) && PagerIndexLines > 0) {
++ CLEARLINE_WIN (statusoffset);
++ } else {
++ CLEARLINE (statusoffset);
++ /* Temporarily lie about the sidebar width */
++ SidebarWidth = 0;
++ }
++#endif
if (IsHeader (extra) || IsMsgAttach (extra))
{
- size_t l1 = COLS * MB_LEN_MAX;
-+ size_t l1 = (COLS-SidebarWidth) * MB_LEN_MAX;
++ size_t l1 = statuswidth * MB_LEN_MAX;
size_t l2 = sizeof (buffer);
hfi.hdr = (IsHeader (extra)) ? extra->hdr : extra->bdy->hdr;
mutt_make_string_info (buffer, l1 < l2 ? l1 : l2, NONULL (PagerFmt), &hfi, M_FORMAT_MAKEPRINT);
- mutt_paddstr (COLS, buffer);
-+ mutt_paddstr (COLS-SidebarWidth, buffer);
++ mutt_paddstr (statuswidth, buffer);
}
else
{
char bn[STRING];
snprintf (bn, sizeof (bn), "%s (%s)", banner, pager_progress_str);
- mutt_paddstr (COLS, bn);
-+ mutt_paddstr (COLS-SidebarWidth, bn);
++ mutt_paddstr (statuswidth, bn);
}
++#ifdef USE_SIDEBAR
++ if (!option (OPTSTATUSONTOP) || PagerIndexLines == 0)
++ SidebarWidth = sw; /* Restore the sidebar width */
++#endif
NORMAL_COLOR;
if (option(OPTTSENABLED) && TSSupported)
-@@ -1826,16 +1830,21 @@ mutt_pager (const char *banner, const char *fname, int flags, pager_t *extra)
+ {
+@@ -1827,16 +1857,26 @@
/* redraw the pager_index indicator, because the
* flags for this message might have changed. */
menu_redraw_current (index);
-+ draw_sidebar(MENU_PAGER);
++#ifdef USE_SIDEBAR
++ mutt_sb_draw();
++#endif
/* print out the index status bar */
menu_status_line (buffer, sizeof (buffer), index, NONULL(Status));
- move (indexoffset + (option (OPTSTATUSONTOP) ? 0 : (indexlen - 1)), 0);
-+ move (indexoffset + (option (OPTSTATUSONTOP) ? 0 : (indexlen - 1)), SidebarWidth);
++ move (indexoffset + (option (OPTSTATUSONTOP) ? 0 : (indexlen - 1)),
++ (option(OPTSTATUSONTOP) ? 0: SidebarWidth));
SETCOLOR (MT_COLOR_STATUS);
- mutt_paddstr (COLS, buffer);
-+ mutt_paddstr (COLS-SidebarWidth, buffer);
++ mutt_paddstr (COLS - (option(OPTSTATUSONTOP) ? 0 : SidebarWidth), buffer);
NORMAL_COLOR;
}
++#ifdef USE_SIDEBAR
+ /* if we're not using the index, update every time */
-+ if ( index == 0 )
-+ draw_sidebar(MENU_PAGER);
++ if (index == 0)
++ mutt_sb_draw();
++#endif
+
redraw = 0;
if (option(OPTBRAILLEFRIENDLY)) {
-@@ -2776,6 +2785,13 @@ search_next:
+@@ -2498,8 +2538,12 @@
+ ch = 0;
+ }
+
+- if (option (OPTFORCEREDRAWPAGER))
++ if (option (OPTFORCEREDRAWPAGER)) {
+ redraw = REDRAW_FULL;
++#ifdef USE_SIDEBAR
++ mutt_sb_draw();
++#endif
++ }
+ unset_option (OPTFORCEREDRAWINDEX);
+ unset_option (OPTFORCEREDRAWPAGER);
+ break;
+@@ -2777,6 +2821,22 @@
mutt_what_key ();
break;
-+ case OP_SIDEBAR_SCROLL_UP:
-+ case OP_SIDEBAR_SCROLL_DOWN:
++#ifdef USE_SIDEBAR
+ case OP_SIDEBAR_NEXT:
++ case OP_SIDEBAR_NEXT_NEW:
++ case OP_SIDEBAR_PAGE_DOWN:
++ case OP_SIDEBAR_PAGE_UP:
+ case OP_SIDEBAR_PREV:
-+ scroll_sidebar(ch, MENU_PAGER);
-+ break;
++ case OP_SIDEBAR_PREV_NEW:
++ mutt_sb_change_mailbox (ch);
++ break;
++
++ case OP_SIDEBAR_TOGGLE_VISIBLE:
++ toggle_option (OPTSIDEBAR);
++ redraw = REDRAW_FULL;
++ break;
++#endif
+
default:
ch = -1;
break;
-diff --git a/sidebar.c b/sidebar.c
-new file mode 100644
-index 0000000..6098c2a
---- /dev/null
-+++ b/sidebar.c
-@@ -0,0 +1,333 @@
-+/*
-+ * Copyright (C) ????-2004 Justin Hibbits
+diff -urN mutt-1.6.1/PATCHES mutt-1.6.1-sidebar/PATCHES
+--- mutt-1.6.1/PATCHES 2016-06-12 18:43:00.395447481 +0100
++++ mutt-1.6.1-sidebar/PATCHES 2016-06-12 18:43:03.949502904 +0100
+@@ -0,0 +1 @@
++patch-sidebar-neo-20160612
+diff -urN mutt-1.6.1/README.sidebar mutt-1.6.1-sidebar/README.sidebar
+--- mutt-1.6.1/README.sidebar 1970-01-01 01:00:00.000000000 +0100
++++ mutt-1.6.1-sidebar/README.sidebar 2016-06-12 18:43:03.792500456 +0100
+@@ -0,0 +1,145 @@
++Sidebar Patch
++=============
++
++ Overview of mailboxes
++
++ NOTES:
++
++ If you haven't used the sidebar before, you might like to read the
++ Sidebar Introduction:
++
++ http://www.neomutt.org/sidebar-intro.html
++
++ If you have used an older version of the Sidebar, please note that some
++ of the configuration has changed.
++
++ http://www.neomutt.org/sidebar-intro.html#intro-sidebar-config-changes
++
++Patch
++-----
++
++ To check if Mutt supports "Sidebar", look for "+USE_SIDEBAR" in the mutt
++ version.
++
++ Dependencies
++ * mutt-1.6.1
++
++Introduction
++------------
++
++ The Sidebar shows a list of all your mailboxes. The list can be turned on
++ and off, it can be themed and the list style can be configured.
++
++ This part of the manual is a reference guide. If you want a simple
++ introduction with examples see the Sidebar Howto. If you just want to get
++ started, you could use the sample Sidebar muttrc.
++
++ This version of Sidebar is based on Terry Chan's [2015-11-11
++ release](http://www.lunar-linux.org/mutt-sidebar/). It contains many new
++ features, lots of bugfixes.
++
++Variables
++---------
++
++ Sidebar Variables
++
++ | Name | Type | Default |
++ |-------------------------|---------|-----------------------------|
++ | 'sidebar_delim_chars' | string | '/.' |
++ | 'sidebar_divider_char' | string | '|' |
++ | 'sidebar_folder_indent' | boolean | 'no' |
++ | 'sidebar_format' | string | '%B%?F? [%F]?%* %?N?%N/?%S' |
++ | 'sidebar_indent_string' | string | ' ' (two spaces) |
++ | 'sidebar_new_mail_only' | boolean | 'no' |
++ | 'sidebar_next_new_wrap' | boolean | 'no' |
++ | 'sidebar_refresh_time' | number | '60' |
++ | 'sidebar_short_path' | boolean | 'no' |
++ | 'sidebar_sort_method' | enum | 'SORT_ORDER' |
++ | 'sidebar_visible' | boolean | 'no' |
++ | 'sidebar_whitelist' | list | (empty) |
++ | 'sidebar_width' | number | '20' |
++
++Functions
++---------
++
++ Sidebar Functions
++
++ Sidebar adds the following functions to Mutt. By default, none of them are
++ bound to keys.
++
++ | Menus | Function | Description |
++ |-------------|----------------------------|------------------------------------------------------|
++ | index,pager | '' | Move the highlight to next mailbox |
++ | index,pager | '' | Move the highlight to next mailbox with new mail |
++ | index,pager | '' | Open highlighted mailbox |
++ | index,pager | '' | Scroll the Sidebar down 1 page |
++ | index,pager | '' | Scroll the Sidebar up 1 page |
++ | index,pager | '' | Move the highlight to previous mailbox |
++ | index,pager | '' | Move the highlight to previous mailbox with new mail |
++ | index,pager | '' | Make the Sidebar (in)visible |
++
++Commands
++--------
++
++ sidebar_whitelist mailbox [ mailbox... ]
++
++Colors
++------
++
++ Sidebar Colors
++
++ | Name | Default Color | Description |
++ |---------------------|------------------|------------------------------------------------------------------|
++ | 'sidebar_divider' | default | The dividing line between the Sidebar and the Index/Pager panels |
++ | 'sidebar_flagged' | default | Mailboxes containing flagged mail |
++ | 'sidebar_highlight' | underline | Cursor to select a mailbox |
++ | 'sidebar_indicator' | mutt 'indicator' | The mailbox open in the Index panel |
++ | 'sidebar_new' | default | Mailboxes containing new mail |
++ | 'sidebar_spoolfile' | default | Mailbox that receives incoming mail |
++
++ If the sidebar_indicator color isn't set, then the default Mutt indicator
++ color will be used (the color used in the index panel).
++
++Sort
++----
++
++ Sidebar Sort
++
++ | Sort | Description |
++ |------------|----------------------------|
++ | 'alpha' | Alphabetically by path |
++ | 'count' | Total number of messages |
++ | 'flagged' | Number of flagged messages |
++ | 'name' | Alphabetically by path |
++ | 'new' | Number of new messages |
++ | 'path' | Alphabetically by path |
++ | 'unsorted' | Do not resort the paths |
++
++See Also
++--------
++
++ * Regular Expressions
++ * Patterns
++ * Color command
++ * notmuch patch
++
++Known Bugs
++----------
++
++ Unsorted isn't
++
++Credits
++-------
++
++ * Justin Hibbits
++ * Thomer M. Gil
++ * David Sterba
++ * Evgeni Golov
++ * Fabian Groffen
++ * Jason DeTiberus
++ * Stefan Assmann
++ * Steve Kemp
++ * Terry Chan
++ * Tyler Earnest
++ * Richard Russon
++
+diff -urN mutt-1.6.1/sidebar.c mutt-1.6.1-sidebar/sidebar.c
+--- mutt-1.6.1/sidebar.c 1970-01-01 01:00:00.000000000 +0100
++++ mutt-1.6.1-sidebar/sidebar.c 2016-06-14 18:46:00.000000000 +0100
+@@ -0,0 +1,1090 @@
++/* Copyright (C) 2004 Justin Hibbits
+ * Copyright (C) 2004 Thomer M. Gil
-+ *
++ * Copyright (C) 2015-2016 Richard Russon
++ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
-+ *
++ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
-+ *
++ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111, USA.
-+ */
-+
++ */
+
+#if HAVE_CONFIG_H
+# include "config.h"
+#endif
+
+#include "mutt.h"
-+#include "mutt_menu.h"
-+#include "mutt_curses.h"
-+#include "sidebar.h"
+#include "buffy.h"
-+#include
+#include "keymap.h"
-+#include
++#include "mutt_curses.h"
++#include "mutt_menu.h"
++#include "sort.h"
+
-+/*BUFFY *CurBuffy = 0;*/
-+static BUFFY *TopBuffy = 0;
-+static BUFFY *BottomBuffy = 0;
-+static int known_lines = 0;
++/* Previous values for some sidebar config */
++static short OldVisible; /* sidebar_visible */
++static short OldWidth; /* sidebar_width */
++static short PreviousSort; /* sidebar_sort_method */
++static time_t LastRefresh; /* Time of last refresh */
+
-+static int quick_log10(int n)
++/* Keep track of various BUFFYs */
++static BUFFY *TopBuffy; /* First mailbox visible in sidebar */
++static BUFFY *OpnBuffy; /* Current (open) mailbox */
++static BUFFY *HilBuffy; /* Highlighted mailbox */
++static BUFFY *BotBuffy; /* Last mailbox visible in sidebar */
++static BUFFY *Outgoing; /* Last mailbox in the linked list */
++
++/**
++ * struct sidebar_entry - Info about folders in the sidebar
++ *
++ * Used in the mutt_FormatString callback
++ */
++struct sidebar_entry
+{
-+ char string[32];
-+ sprintf(string, "%d", n);
-+ return strlen(string);
++ char box[STRING];
++ BUFFY *buffy;
++};
++
++
++/**
++ * find_next_new - Find the next folder that contains new mail
++ * @wrap: Wrap around to the beginning if the end is reached
++ *
++ * Search down the list of mail folders for one containing new mail.
++ *
++ * Returns:
++ * BUFFY*: Success
++ * NULL: Failure
++ */
++static BUFFY *find_next_new (int wrap)
++{
++ BUFFY *b = HilBuffy;
++ if (!b)
++ return NULL;
++
++ do
++ {
++ b = b->next;
++ if (!b && wrap)
++ b = Incoming;
++ if (!b || (b == HilBuffy))
++ break;
++ if (b->msg_unread > 0)
++ return b;
++ } while (b);
++
++ return NULL;
+}
+
-+void calc_boundaries (int menu)
++/**
++ * find_prev_new - Find the previous folder that contains new mail
++ * @wrap: Wrap around to the beginning if the end is reached
++ *
++ * Search up the list of mail folders for one containing new mail.
++ *
++ * Returns:
++ * BUFFY*: Success
++ * NULL: Failure
++ */
++static BUFFY *find_prev_new (int wrap)
+{
-+ BUFFY *tmp = Incoming;
++ BUFFY *b = HilBuffy;
++ if (!b)
++ return NULL;
+
-+ if ( known_lines != LINES ) {
-+ TopBuffy = BottomBuffy = 0;
-+ known_lines = LINES;
-+ }
-+ for ( ; tmp->next != 0; tmp = tmp->next )
-+ tmp->next->prev = tmp;
++ do
++ {
++ b = b->prev;
++ if (!b && wrap)
++ b = Outgoing;
++ if (!b || (b == HilBuffy))
++ break;
++ if (b->msg_unread > 0)
++ return b;
++ } while (b);
+
-+ if ( TopBuffy == 0 && BottomBuffy == 0 )
-+ TopBuffy = Incoming;
-+ if ( BottomBuffy == 0 ) {
-+ int count = LINES - 2 - (menu != MENU_PAGER || option(OPTSTATUSONTOP));
-+ BottomBuffy = TopBuffy;
-+ while ( --count && BottomBuffy->next )
-+ BottomBuffy = BottomBuffy->next;
-+ }
-+ else if ( TopBuffy == CurBuffy->next ) {
-+ int count = LINES - 2 - (menu != MENU_PAGER);
-+ BottomBuffy = CurBuffy;
-+ tmp = BottomBuffy;
-+ while ( --count && tmp->prev)
-+ tmp = tmp->prev;
-+ TopBuffy = tmp;
-+ }
-+ else if ( BottomBuffy == CurBuffy->prev ) {
-+ int count = LINES - 2 - (menu != MENU_PAGER);
-+ TopBuffy = CurBuffy;
-+ tmp = TopBuffy;
-+ while ( --count && tmp->next )
-+ tmp = tmp->next;
-+ BottomBuffy = tmp;
-+ }
++ return NULL;
+}
+
-+char *make_sidebar_entry(char *box, int size, int new, int flagged)
++/**
++ * cb_format_str - Create the string to show in the sidebar
++ * @dest: Buffer in which to save string
++ * @destlen: Buffer length
++ * @col: Starting column, UNUSED
++ * @op: printf-like operator, e.g. 'B'
++ * @src: printf-like format string
++ * @prefix: Field formatting string, UNUSED
++ * @ifstring: If condition is met, display this string
++ * @elsestring: Otherwise, display this string
++ * @data: Pointer to our sidebar_entry
++ * @flags: Format flags, e.g. M_FORMAT_OPTIONAL
++ *
++ * cb_format_str is a callback function for mutt_FormatString. It understands
++ * five operators. '%B' : Mailbox name, '%F' : Number of flagged messages,
++ * '%N' : Number of new messages, '%S' : Size (total number of messages),
++ * '%!' : Icon denoting number of flagged messages.
++ *
++ * Returns: src (unchanged)
++ */
++static const char *cb_format_str(char *dest, size_t destlen, size_t col, char op,
++ const char *src, const char *prefix, const char *ifstring,
++ const char *elsestring, unsigned long data, format_flag flags)
+{
-+ static char *entry = 0;
-+ char *c;
-+ int i = 0;
-+ int delim_len = strlen(SidebarDelim);
++ struct sidebar_entry *sbe = (struct sidebar_entry *) data;
++ unsigned int optional;
++ char fmt[STRING];
+
-+ c = realloc(entry, SidebarWidth - delim_len + 2);
-+ if ( c ) entry = c;
-+ entry[SidebarWidth - delim_len + 1] = 0;
-+ for (; i < SidebarWidth - delim_len + 1; entry[i++] = ' ' );
-+ i = strlen(box);
-+ strncpy( entry, box, i < (SidebarWidth - delim_len + 1) ? i : (SidebarWidth - delim_len + 1) );
++ if (!sbe || !dest)
++ return src;
+
-+ if (size == -1)
-+ sprintf(entry + SidebarWidth - delim_len - 3, "?");
-+ else if ( new ) {
-+ if (flagged > 0) {
-+ sprintf(
-+ entry + SidebarWidth - delim_len - 5 - quick_log10(size) - quick_log10(new) - quick_log10(flagged),
-+ "% d(%d)[%d]", size, new, flagged);
-+ } else {
-+ sprintf(
-+ entry + SidebarWidth - delim_len - 3 - quick_log10(size) - quick_log10(new),
-+ "% d(%d)", size, new);
-+ }
-+ } else if (flagged > 0) {
-+ sprintf( entry + SidebarWidth - delim_len - 3 - quick_log10(size) - quick_log10(flagged), "% d[%d]", size, flagged);
-+ } else {
-+ sprintf( entry + SidebarWidth - delim_len - 1 - quick_log10(size), "% d", size);
-+ }
-+ return entry;
++ dest[0] = 0; /* Just in case there's nothing to do */
++
++ BUFFY *b = sbe->buffy;
++ if (!b)
++ return src;
++
++ int c = Context && (mutt_strcmp (Context->path, b->path) == 0);
++
++ optional = flags & M_FORMAT_OPTIONAL;
++
++ switch (op)
++ {
++ case 'B':
++ mutt_format_s (dest, destlen, prefix, sbe->box);
++ break;
++
++ case 'd':
++ if (!optional)
++ {
++ snprintf (fmt, sizeof (fmt), "%%%sd", prefix);
++ snprintf (dest, destlen, fmt, c ? Context->deleted : 0);
++ }
++ else if ((c && Context->deleted == 0) || !c)
++ optional = 0;
++ break;
++
++ case 'F':
++ if (!optional)
++ {
++ snprintf (fmt, sizeof (fmt), "%%%sd", prefix);
++ snprintf (dest, destlen, fmt, b->msg_flagged);
++ }
++ else if (b->msg_flagged == 0)
++ optional = 0;
++ break;
++
++ case 'L':
++ if (!optional)
++ {
++ snprintf (fmt, sizeof (fmt), "%%%sd", prefix);
++ snprintf (dest, destlen, fmt, c ? Context->vcount : b->msg_count);
++ }
++ else if ((c && Context->vcount == b->msg_count) || !c)
++ optional = 0;
++ break;
++
++ case 'N':
++ if (!optional)
++ {
++ snprintf (fmt, sizeof (fmt), "%%%sd", prefix);
++ snprintf (dest, destlen, fmt, b->msg_unread);
++ }
++ else if (b->msg_unread == 0)
++ optional = 0;
++ break;
++
++ case 'S':
++ if (!optional)
++ {
++ snprintf (fmt, sizeof (fmt), "%%%sd", prefix);
++ snprintf (dest, destlen, fmt, b->msg_count);
++ }
++ else if (b->msg_count == 0)
++ optional = 0;
++ break;
++
++ case 't':
++ if (!optional)
++ {
++ snprintf (fmt, sizeof (fmt), "%%%sd", prefix);
++ snprintf (dest, destlen, fmt, c ? Context->tagged : 0);
++ }
++ else if ((c && Context->tagged == 0) || !c)
++ optional = 0;
++ break;
++
++ case '!':
++ if (b->msg_flagged == 0)
++ mutt_format_s (dest, destlen, prefix, "");
++ else if (b->msg_flagged == 1)
++ mutt_format_s (dest, destlen, prefix, "!");
++ else if (b->msg_flagged == 2)
++ mutt_format_s (dest, destlen, prefix, "!!");
++ else
++ {
++ snprintf (fmt, sizeof (fmt), "%d!", b->msg_flagged);
++ mutt_format_s (dest, destlen, prefix, fmt);
++ }
++ break;
++ }
++
++ if (optional)
++ mutt_FormatString (dest, destlen, col, ifstring, cb_format_str, (unsigned long) sbe, flags);
++ else if (flags & M_FORMAT_OPTIONAL)
++ mutt_FormatString (dest, destlen, col, elsestring, cb_format_str, (unsigned long) sbe, flags);
++
++ /* We return the format string, unchanged */
++ return src;
+}
+
-+void set_curbuffy(char buf[LONG_STRING])
++/**
++ * make_sidebar_entry - Turn mailbox data into a sidebar string
++ * @buf: Buffer in which to save string
++ * @buflen: Buffer length
++ * @width: Desired width in screen cells
++ * @box: Mailbox name
++ * @size: Size (total number of messages)
++ * @new: Number of new messages
++ * @flagged: Number of flagged messages
++ *
++ * Take all the relevant mailbox data and the desired screen width and then get
++ * mutt_FormatString to do the actual work. mutt_FormatString will callback to
++ * us using cb_format_str() for the sidebar specific formatting characters.
++ */
++static void make_sidebar_entry (char *buf, unsigned int buflen, int width, char *box,
++ BUFFY *b)
+{
-+ BUFFY* tmp = CurBuffy = Incoming;
++ struct sidebar_entry sbe;
+
-+ if (!Incoming)
++ if (!buf || !box || !b)
+ return;
+
-+ while(1) {
-+ if(!strcmp(tmp->path, buf)) {
-+ CurBuffy = tmp;
-+ break;
-+ }
++ sbe.buffy = b;
++ strfcpy (sbe.box, box, sizeof (sbe.box));
+
-+ if(tmp->next)
-+ tmp = tmp->next;
-+ else
-+ break;
++ /* Temporarily lie about the screen width */
++ int oc = COLS;
++ COLS = width + SidebarWidth;
++ mutt_FormatString (buf, buflen, 0, NONULL(SidebarFormat), cb_format_str, (unsigned long) &sbe, 0);
++ COLS = oc;
++
++ /* Force string to be exactly the right width */
++ int w = mutt_strwidth (buf);
++ int s = strlen (buf);
++ width = MIN(buflen, width);
++ if (w < width)
++ {
++ /* Pad with spaces */
++ memset (buf + s, ' ', width - w);
++ buf[s + width - w] = 0;
++ }
++ else if (w > width)
++ {
++ /* Truncate to fit */
++ int len = mutt_wstr_trunc (buf, buflen, width, NULL);
++ buf[len] = 0;
+ }
+}
+
-+int draw_sidebar(int menu) {
++/**
++ * cb_qsort_buffy - qsort callback to sort BUFFYs
++ * @a: First BUFFY to compare
++ * @b: Second BUFFY to compare
++ *
++ * Compare the paths of two BUFFYs taking the locale into account.
++ *
++ * Returns:
++ * -1: a precedes b
++ * 0: a and b are identical
++ * 1: b precedes a
++ */
++static int cb_qsort_buffy (const void *a, const void *b)
++{
++ const BUFFY *b1 = *(const BUFFY **) a;
++ const BUFFY *b2 = *(const BUFFY **) b;
+
-+ int lines = option(OPTHELP) ? 1 : 0;
-+ BUFFY *tmp;
-+#ifndef USE_SLANG_CURSES
-+ attr_t attrs;
-+#endif
-+ short delim_len = strlen(SidebarDelim);
-+ short color_pair;
++ /* Special case -- move hidden BUFFYs to the end */
++ if (b1->is_hidden != b2->is_hidden)
++ {
++ if (b1->is_hidden)
++ return 1;
++ else
++ return -1;
++ }
+
-+ static bool initialized = false;
-+ static int prev_show_value;
-+ static short saveSidebarWidth;
++ int result = 0;
+
-+ /* initialize first time */
-+ if(!initialized) {
-+ prev_show_value = option(OPTSIDEBAR);
-+ saveSidebarWidth = SidebarWidth;
-+ if(!option(OPTSIDEBAR)) SidebarWidth = 0;
-+ initialized = true;
-+ }
++ switch ((SidebarSortMethod & SORT_MASK))
++ {
++ case SORT_COUNT:
++ result = (b2->msg_count - b1->msg_count);
++ break;
++ case SORT_COUNT_NEW:
++ result = (b2->msg_unread - b1->msg_unread);
++ break;
++ case SORT_FLAGGED:
++ result = (b2->msg_flagged - b1->msg_flagged);
++ break;
++ case SORT_PATH:
++ result = mutt_strcasecmp (b1->path, b2->path);
++ break;
++ }
+
-+ /* save or restore the value SidebarWidth */
-+ if(prev_show_value != option(OPTSIDEBAR)) {
-+ if(prev_show_value && !option(OPTSIDEBAR)) {
-+ saveSidebarWidth = SidebarWidth;
-+ SidebarWidth = 0;
-+ } else if(!prev_show_value && option(OPTSIDEBAR)) {
-+ SidebarWidth = saveSidebarWidth;
-+ }
-+ prev_show_value = option(OPTSIDEBAR);
-+ }
++ if (SidebarSortMethod & SORT_REVERSE)
++ result = -result;
+
++ return result;
++}
+
-+// if ( SidebarWidth == 0 ) return 0;
-+ if (SidebarWidth > 0 && option (OPTSIDEBAR)
-+ && delim_len >= SidebarWidth) {
-+ unset_option (OPTSIDEBAR);
-+ /* saveSidebarWidth = SidebarWidth; */
-+ if (saveSidebarWidth > delim_len) {
-+ SidebarWidth = saveSidebarWidth;
-+ mutt_error (_("Value for sidebar_delim is too long. Disabling sidebar."));
-+ sleep (2);
-+ } else {
-+ SidebarWidth = 0;
-+ mutt_error (_("Value for sidebar_delim is too long. Disabling sidebar. Please set your sidebar_width to a sane value."));
-+ sleep (4); /* the advise to set a sane value should be seen long enough */
-+ }
-+ saveSidebarWidth = 0;
-+ return (0);
-+ }
++/**
++ * buffy_going - Prevent our pointers becoming invalid
++ * @b: BUFFY about to be deleted
++ *
++ * If we receive a delete-notification for a BUFFY, we need to change any
++ * pointers we have to reference a different BUFFY, or set them to NULL.
++ *
++ * We don't update the prev/next pointers, they'll be fixed on the next
++ * call to prepare_sidebar().
++ *
++ * Returns:
++ * A valid alternative BUFFY, or NULL
++ */
++static BUFFY *buffy_going (const BUFFY *b)
++{
++ if (!b)
++ return NULL;
+
-+ if ( SidebarWidth == 0 || !option(OPTSIDEBAR)) {
-+ if (SidebarWidth > 0) {
-+ saveSidebarWidth = SidebarWidth;
-+ SidebarWidth = 0;
-+ }
-+ unset_option(OPTSIDEBAR);
-+ return 0;
++ if (b->prev)
++ {
++ b->prev->next = NULL;
++ }
++
++ if (b->next)
++ {
++ b->next->prev = NULL;
++ return b->next;
++ }
++
++ return b->prev;
++}
++
++/**
++ * update_buffy_visibility - Should a BUFFY be displayed in the sidebar
++ * @arr: array of BUFFYs
++ * @arr_len: number of BUFFYs in array
++ *
++ * For each BUFFY in the array, check whether we should display it.
++ * This is determined by several criteria. If the BUFFY:
++ * is the currently open mailbox
++ * is the currently highlighted mailbox
++ * has unread messages
++ * has flagged messages
++ * is whitelisted
++ */
++static void update_buffy_visibility (BUFFY **arr, int arr_len)
++{
++ if (!arr)
++ return;
++
++ short new_only = option (OPTSIDEBARNEWMAILONLY);
++
++ BUFFY *b;
++ int i;
++ for (i = 0; i < arr_len; i++)
++ {
++ b = arr[i];
++
++ b->is_hidden = 0;
++
++ if (!new_only)
++ continue;
++
++ if ((b == OpnBuffy) || (b->msg_unread > 0) ||
++ (b == HilBuffy) || (b->msg_flagged > 0))
++ continue;
++
++ if (Context && (strcmp (b->path, Context->path) == 0))
++ /* Spool directory */
++ continue;
++
++ if (mutt_find_list (SidebarWhitelist, b->path))
++ /* Explicitly asked to be visible */
++ continue;
++
++ b->is_hidden = 1;
++ }
++}
++
++/**
++ * sort_buffy_array - Sort an array of BUFFY pointers
++ * @arr: array of BUFFYs
++ * @arr_len: number of BUFFYs in array
++ *
++ * Sort an array of BUFFY pointers according to the current sort config
++ * option "sidebar_sort_method". This calls qsort to do the work which calls our
++ * callback function "cb_qsort_buffy".
++ *
++ * Once sorted, the prev/next links will be reconstructed.
++ */
++static void sort_buffy_array (BUFFY **arr, int arr_len)
++{
++ if (!arr)
++ return;
++
++ /* These are the only sort methods we understand */
++ short ssm = (SidebarSortMethod & SORT_MASK);
++ if ((ssm == SORT_COUNT) ||
++ (ssm == SORT_COUNT_NEW) ||
++ (ssm == SORT_DESC) ||
++ (ssm == SORT_FLAGGED) ||
++ (ssm == SORT_PATH))
++ qsort (arr, arr_len, sizeof (*arr), cb_qsort_buffy);
++
++ int i;
++ for (i = 0; i < (arr_len - 1); i++)
++ arr[i]->next = arr[i + 1];
++ arr[arr_len - 1]->next = NULL;
++
++ for (i = 1; i < arr_len; i++)
++ arr[i]->prev = arr[i - 1];
++ arr[0]->prev = NULL;
++}
++
++/**
++ * prepare_sidebar - Prepare the list of BUFFYs for the sidebar display
++ * @page_size: The number of lines on a page
++ *
++ * Before painting the sidebar, we count the BUFFYs, determine which are
++ * visible, sort them and set up our page pointers.
++ *
++ * This is a lot of work to do each refresh, but there are many things that
++ * can change outside of the sidebar that we don't hear about.
++ *
++ * Returns:
++ * 0: No, don't draw the sidebar
++ * 1: Yes, draw the sidebar
++ */
++static int prepare_sidebar (int page_size)
++{
++ BUFFY *b = Incoming;
++ if (!b)
++ return 0;
++
++ int count = 0;
++ for (; b; b = b->next)
++ count++;
++
++ BUFFY **arr = safe_malloc (count * sizeof (*arr));
++
++ int i = 0;
++ for (b = Incoming; b; b = b->next, i++)
++ arr[i] = b;
++
++ update_buffy_visibility (arr, count);
++ sort_buffy_array (arr, count);
++
++ Incoming = arr[0];
++
++ int top_index = 0;
++ int opn_index = -1;
++ int hil_index = -1;
++ int bot_index = -1;
++
++ for (i = 0; i < count; i++)
++ {
++ if (OpnBuffy == arr[i])
++ opn_index = i;
++ if (HilBuffy == arr[i])
++ hil_index = i;
++ }
++
++ if (!HilBuffy || (SidebarSortMethod != PreviousSort))
++ {
++ if (OpnBuffy)
++ {
++ HilBuffy = OpnBuffy;
++ hil_index = opn_index;
++ }
++ else
++ {
++ HilBuffy = arr[0];
++ hil_index = 0;
++ }
++ }
++ if (TopBuffy)
++ top_index = (hil_index / page_size) * page_size;
++ else
++ top_index = hil_index;
++ TopBuffy = arr[top_index];
++
++ bot_index = top_index + page_size - 1;
++ if (bot_index > (count - 1))
++ bot_index = count - 1;
++ BotBuffy = arr[bot_index];
++
++ Outgoing = arr[count - 1];
++
++ PreviousSort = SidebarSortMethod;
++ FREE (&arr);
++ return 1;
++}
++
++/**
++ * visible - Should we display the sidebar?
++ *
++ * After validating the config options "sidebar_visible" and "sidebar_width",
++ * determine whether we should should display the sidebar.
++ *
++ * When not visible, set the global SidebarWidth to 0.
++ *
++ * Returns:
++ * Boolean
++ */
++static short
++visible (void)
++{
++ short new_visible = option (OPTSIDEBAR);
++ short new_width = SidebarWidth;
++
++ if (OldWidth != new_width)
++ {
++ if (new_width > 0)
++ {
++ OldWidth = new_width;
++ }
++ }
++
++ if (OldVisible != new_visible)
++ {
++ if (new_visible)
++ {
++ set_option (OPTSIDEBAR);
++ }
++ else
++ {
++ unset_option (OPTSIDEBAR);
++ }
++ OldVisible = new_visible;
++ }
++ else if (new_width == 0)
++ {
++ unset_option (OPTSIDEBAR);
++ OldVisible = 0;
++ }
++
++ if (!option (OPTSIDEBAR))
++ {
++ SidebarWidth = 0;
++ }
++ else if (new_width == 0)
++ {
++ SidebarWidth = OldWidth;
++ }
++ else
++ {
++ SidebarWidth = new_width;
++ }
++
++ return new_visible;
++}
++
++/**
++ * draw_divider - Draw a line between the sidebar and the rest of mutt
++ * @first_row: Screen line to start (0-based)
++ * @num_rows: Number of rows to fill
++ *
++ * Draw a divider using characters from the config option "sidebar_divider_char".
++ * This can be an ASCII or Unicode character. First we calculate this
++ * characters' width in screen columns, then subtract that from the config
++ * option "sidebar_width".
++ *
++ * Returns:
++ * -1: Error: bad character, etc
++ * 0: Error: 0 width character
++ * n: Success: character occupies n screen columns
++ */
++static int draw_divider (int first_row, int num_rows)
++{
++ /* Calculate the width of the delimiter in screen cells */
++ int delim_len = mutt_strwidth (SidebarDividerChar);
++
++ if (delim_len < 1)
++ return delim_len;
++
++ if ((SidebarWidth + delim_len) > (COLS + 1))
++ return 0;
++
++ if (delim_len > SidebarWidth)
++ return -1;
++
++ SETCOLOR(MT_COLOR_DIVIDER);
++
++ int i;
++ for (i = 0; i < num_rows; i++)
++ {
++ move (first_row + i, SidebarWidth - delim_len);
++ addstr (NONULL(SidebarDividerChar));
++ }
++
++ return delim_len;
++}
++
++/**
++ * fill_empty_space - Wipe the remaining Sidebar space
++ * @first_row: Screen line to start (0-based)
++ * @num_rows: Number of rows to fill
++ * @width: Width of the Sidebar (minus the divider)
++ *
++ * Write spaces over the area the sidebar isn't using.
++ */
++static void fill_empty_space (int first_row, int num_rows, int width)
++{
++ /* Fill the remaining rows with blank space */
++ SETCOLOR(MT_COLOR_NORMAL);
++
++ int r;
++ for (r = 0; r < num_rows; r++)
++ {
++ int i = 0;
++ move (first_row + r, 0);
++ for (; i < width; i++)
++ addch (' ');
++ }
++}
++
++/**
++ * draw_sidebar - Write out a list of mailboxes, on the left
++ * @first_row: Screen line to start (0-based)
++ * @num_rows: Number of rows to fill
++ * @div_width: Width in screen characters taken by the divider
++ *
++ * Display a list of mailboxes in a panel on the left. What's displayed will
++ * depend on our index markers: TopBuffy, OpnBuffy, HilBuffy, BotBuffy.
++ * On the first run they'll be NULL, so we display the top of Mutt's list
++ * (Incoming).
++ *
++ * TopBuffy - first visible mailbox
++ * BotBuffy - last visible mailbox
++ * OpnBuffy - mailbox shown in Mutt's Index Panel
++ * HilBuffy - Unselected mailbox (the paging follows this)
++ *
++ * The entries are formatted using "sidebar_format" and may be abbreviated:
++ * "sidebar_short_path", indented: "sidebar_folder_indent",
++ * "sidebar_indent_string" and sorted: "sidebar_sort_method". Finally, they're
++ * trimmed to fit the available space.
++ */
++static void draw_sidebar (int first_row, int num_rows, int div_width)
++{
++ BUFFY *b = TopBuffy;
++ if (!b)
++ return;
++
++ int w = MIN(COLS, (SidebarWidth - div_width));
++ int row = 0;
++ for (b = TopBuffy; b && (row < num_rows); b = b->next)
++ {
++ if (b->is_hidden)
++ continue;
++
++ if (b == OpnBuffy)
++ {
++ if ((ColorDefs[MT_COLOR_SB_INDICATOR] != 0))
++ SETCOLOR(MT_COLOR_SB_INDICATOR);
++ else
++ SETCOLOR(MT_COLOR_INDICATOR);
++ }
++ else if (b == HilBuffy)
++ SETCOLOR(MT_COLOR_HIGHLIGHT);
++ else if ((ColorDefs[MT_COLOR_SB_SPOOLFILE] != 0) &&
++ (mutt_strcmp (b->path, Spoolfile) == 0))
++ SETCOLOR(MT_COLOR_SB_SPOOLFILE);
++ else if (b->msg_unread > 0)
++ SETCOLOR(MT_COLOR_NEW);
++ else if (b->msg_flagged > 0)
++ SETCOLOR(MT_COLOR_FLAGGED);
++ else
++ SETCOLOR(MT_COLOR_NORMAL);
++
++ move (first_row + row, 0);
++ if (Context && Context->path &&
++ (!strcmp (b->path, Context->path)||
++ !strcmp (b->realpath, Context->path)))
++ {
++ b->msg_unread = Context->unread;
++ b->msg_count = Context->msgcount;
++ b->msg_flagged = Context->flagged;
+ }
+
-+ /* get attributes for divider */
-+ SETCOLOR(MT_COLOR_STATUS);
-+#ifndef USE_SLANG_CURSES
-+ attr_get(&attrs, &color_pair, 0);
-+#else
-+ color_pair = attr_get();
-+#endif
-+ SETCOLOR(MT_COLOR_NORMAL);
++ /* compute length of Maildir without trailing separator */
++ size_t maildirlen = strlen (Maildir);
++ if (SidebarDelimChars && strchr (SidebarDelimChars, Maildir[maildirlen - 1]))
++ maildirlen--;
+
-+ /* draw the divider */
++ /* check whether Maildir is a prefix of the current folder's path */
++ short maildir_is_prefix = 0;
++ if ((strlen (b->path) > maildirlen) && (strncmp (Maildir, b->path, maildirlen) == 0))
++ maildir_is_prefix = 1;
+
-+ for ( ; lines < LINES-1-(menu != MENU_PAGER || option(OPTSTATUSONTOP)); lines++ ) {
-+ move(lines, SidebarWidth - delim_len);
-+ addstr(NONULL(SidebarDelim));
-+#ifndef USE_SLANG_CURSES
-+ mvchgat(lines, SidebarWidth - delim_len, delim_len, 0, color_pair, NULL);
-+#endif
-+ }
-+
-+ if ( Incoming == 0 ) return 0;
-+ lines = option(OPTHELP) ? 1 : 0; /* go back to the top */
-+
-+ if ( known_lines != LINES || TopBuffy == 0 || BottomBuffy == 0 )
-+ calc_boundaries(menu);
-+ if ( CurBuffy == 0 ) CurBuffy = Incoming;
-+
-+ tmp = TopBuffy;
-+
-+ SETCOLOR(MT_COLOR_NORMAL);
-+
-+ for ( ; tmp && lines < LINES-1 - (menu != MENU_PAGER || option(OPTSTATUSONTOP)); tmp = tmp->next ) {
-+ if ( tmp == CurBuffy )
-+ SETCOLOR(MT_COLOR_INDICATOR);
-+ else if ( tmp->msg_unread > 0 )
-+ SETCOLOR(MT_COLOR_NEW);
-+ else if ( tmp->msg_flagged > 0 )
-+ SETCOLOR(MT_COLOR_FLAGGED);
-+ else
-+ SETCOLOR(MT_COLOR_NORMAL);
-+
-+ move( lines, 0 );
-+ if ( Context && !strcmp( tmp->path, Context->path ) ) {
-+ tmp->msg_unread = Context->unread;
-+ tmp->msgcount = Context->msgcount;
-+ tmp->msg_flagged = Context->flagged;
-+ }
-+ // check whether Maildir is a prefix of the current folder's path
-+ short maildir_is_prefix = 0;
-+ if ( (strlen(tmp->path) > strlen(Maildir)) &&
-+ (strncmp(Maildir, tmp->path, strlen(Maildir)) == 0) )
-+ maildir_is_prefix = 1;
-+ // calculate depth of current folder and generate its display name with indented spaces
-+ int sidebar_folder_depth = 0;
-+ char *sidebar_folder_name;
-+ sidebar_folder_name = basename(tmp->path);
-+ if ( maildir_is_prefix ) {
-+ char *tmp_folder_name;
-+ int i;
-+ tmp_folder_name = tmp->path + strlen(Maildir);
-+ for (i = 0; i < strlen(tmp->path) - strlen(Maildir); i++) {
-+ if (tmp_folder_name[i] == '/') sidebar_folder_depth++;
-+ }
-+ if (sidebar_folder_depth > 0) {
-+ sidebar_folder_name = malloc(strlen(basename(tmp->path)) + sidebar_folder_depth + 1);
-+ for (i=0; i < sidebar_folder_depth; i++)
-+ sidebar_folder_name[i]=' ';
-+ sidebar_folder_name[i]=0;
-+ strncat(sidebar_folder_name, basename(tmp->path), strlen(basename(tmp->path)) + sidebar_folder_depth);
-+ }
-+ }
-+ printw( "%.*s", SidebarWidth - delim_len + 1,
-+ make_sidebar_entry(sidebar_folder_name, tmp->msgcount,
-+ tmp->msg_unread, tmp->msg_flagged));
-+ if (sidebar_folder_depth > 0)
-+ free(sidebar_folder_name);
-+ lines++;
-+ }
-+ SETCOLOR(MT_COLOR_NORMAL);
-+ for ( ; lines < LINES-1 - (menu != MENU_PAGER || option(OPTSTATUSONTOP)); lines++ ) {
-+ int i = 0;
-+ move( lines, 0 );
-+ for ( ; i < SidebarWidth - delim_len; i++ )
-+ addch(' ');
-+ }
-+ return 0;
-+}
-+
-+
-+void set_buffystats(CONTEXT* Context)
-+{
-+ BUFFY *tmp = Incoming;
-+ while(tmp) {
-+ if(Context && !strcmp(tmp->path, Context->path)) {
-+ tmp->msg_unread = Context->unread;
-+ tmp->msgcount = Context->msgcount;
-+ break;
-+ }
-+ tmp = tmp->next;
++ /* calculate depth of current folder and generate its display name with indented spaces */
++ int sidebar_folder_depth = 0;
++ char *sidebar_folder_name;
++ int i;
++ if (option (OPTSIDEBARSHORTPATH))
++ {
++ /* disregard a trailing separator, so strlen() - 2 */
++ sidebar_folder_name = b->path;
++ for (i = strlen (sidebar_folder_name) - 2; i >= 0; i--)
++ {
++ if (SidebarDelimChars &&
++ strchr (SidebarDelimChars, sidebar_folder_name[i]))
++ {
++ sidebar_folder_name += (i + 1);
++ break;
+ }
++ }
++ }
++ else
++ sidebar_folder_name = b->path + maildir_is_prefix * (maildirlen + 1);
++
++ if (maildir_is_prefix && option (OPTSIDEBARFOLDERINDENT))
++ {
++ const char *tmp_folder_name;
++ int lastsep = 0;
++ tmp_folder_name = b->path + maildirlen + 1;
++ int tmplen = (int) strlen (tmp_folder_name) - 1;
++ for (i = 0; i < tmplen; i++)
++ {
++ if (SidebarDelimChars && strchr (SidebarDelimChars, tmp_folder_name[i]))
++ {
++ sidebar_folder_depth++;
++ lastsep = i + 1;
++ }
++ }
++ if (sidebar_folder_depth > 0)
++ {
++ if (option (OPTSIDEBARSHORTPATH))
++ tmp_folder_name += lastsep; /* basename */
++ sidebar_folder_name = malloc (strlen (tmp_folder_name) + sidebar_folder_depth*strlen (NONULL(SidebarIndentString)) + 1);
++ sidebar_folder_name[0]=0;
++ for (i=0; i < sidebar_folder_depth; i++)
++ strncat (sidebar_folder_name, NONULL(SidebarIndentString), strlen (NONULL(SidebarIndentString)));
++ strncat (sidebar_folder_name, tmp_folder_name, strlen (tmp_folder_name));
++ }
++ }
++ char str[STRING];
++ make_sidebar_entry (str, sizeof (str), w, sidebar_folder_name, b);
++ printw ("%s", str);
++ if (sidebar_folder_depth > 0)
++ FREE (&sidebar_folder_name);
++ row++;
++ }
++
++ fill_empty_space (first_row + row, num_rows - row, w);
+}
+
-+void scroll_sidebar(int op, int menu)
++
++/**
++ * mutt_sb_init - Set some default values for the sidebar.
++ */
++void
++mutt_sb_init (void)
+{
-+ if(!SidebarWidth) return;
-+ if(!CurBuffy) return;
-+
-+ switch (op) {
-+ case OP_SIDEBAR_NEXT:
-+ if ( CurBuffy->next == NULL ) return;
-+ CurBuffy = CurBuffy->next;
-+ break;
-+ case OP_SIDEBAR_PREV:
-+ if ( CurBuffy->prev == NULL ) return;
-+ CurBuffy = CurBuffy->prev;
-+ break;
-+ case OP_SIDEBAR_SCROLL_UP:
-+ CurBuffy = TopBuffy;
-+ if ( CurBuffy != Incoming ) {
-+ calc_boundaries(menu);
-+ CurBuffy = CurBuffy->prev;
-+ }
-+ break;
-+ case OP_SIDEBAR_SCROLL_DOWN:
-+ CurBuffy = BottomBuffy;
-+ if ( CurBuffy->next ) {
-+ calc_boundaries(menu);
-+ CurBuffy = CurBuffy->next;
-+ }
-+ break;
-+ default:
-+ return;
-+ }
-+ calc_boundaries(menu);
-+ draw_sidebar(menu);
++ OldVisible = option (OPTSIDEBAR);
++ if (SidebarWidth > 0)
++ {
++ OldWidth = SidebarWidth;
++ }
++ else
++ {
++ OldWidth = 20;
++ if (OldVisible)
++ {
++ SidebarWidth = OldWidth;
++ }
++ }
+}
+
-diff --git a/sidebar.h b/sidebar.h
-new file mode 100644
-index 0000000..d195f11
---- /dev/null
-+++ b/sidebar.h
++/**
++ * mutt_sb_draw - Completely redraw the sidebar
++ *
++ * Completely refresh the sidebar region. First draw the divider; then, for
++ * each BUFFY, call make_sidebar_entry; finally blank out any remaining space.
++ */
++void mutt_sb_draw (void)
++{
++ if (!visible())
++ return;
++
++ /* XXX - if transitioning from invisible to visible */
++ /* if (OldVisible == 0) */
++ /* mutt_buffy_check (1); we probably have bad or no numbers */
++
++ int x = getcurx (stdscr);
++ int y = getcury (stdscr);
++
++ int first_row = 0;
++ int num_rows = LINES - 2;
++
++ if (option (OPTHELP) || option (OPTSTATUSONTOP))
++ first_row++;
++
++ if (option (OPTHELP))
++ num_rows--;
++
++ int div_width = draw_divider (first_row, num_rows);
++ if (div_width < 0)
++ return;
++
++ if (!Incoming)
++ {
++ int w = MIN(COLS, (SidebarWidth - div_width));
++ fill_empty_space (first_row, num_rows, w);
++ return;
++ }
++
++ if (!prepare_sidebar (num_rows))
++ return;
++
++ draw_sidebar (first_row, num_rows, div_width);
++ move (y, x);
++}
++
++/**
++ * mutt_sb_should_refresh - Check if the sidebar is due to be refreshed
++ *
++ * The "sidebar_refresh_time" config option allows the user to limit the frequency
++ * with which the sidebar is refreshed.
++ *
++ * Returns:
++ * 1 Yes, refresh is due
++ * 0 No, refresh happened recently
++ */
++int mutt_sb_should_refresh (void)
++{
++ if (!option (OPTSIDEBAR))
++ return 0;
++
++ if (SidebarRefreshTime == 0)
++ return 0;
++
++ time_t diff = (time (NULL) - LastRefresh);
++
++ return (diff >= SidebarRefreshTime);
++}
++
++/**
++ * mutt_sb_change_mailbox - Change the selected mailbox
++ * @op: Operation code
++ *
++ * Change the selected mailbox, e.g. "Next mailbox", "Previous Mailbox
++ * with new mail". The operations are listed OPS.SIDEBAR which is built
++ * into an enum in keymap_defs.h.
++ *
++ * If the operation is successful, HilBuffy will be set to the new mailbox.
++ * This function only *selects* the mailbox, doesn't *open* it.
++ *
++ * Allowed values are: OP_SIDEBAR_NEXT, OP_SIDEBAR_NEXT_NEW,
++ * OP_SIDEBAR_PAGE_DOWN, OP_SIDEBAR_PAGE_UP, OP_SIDEBAR_PREV,
++ * OP_SIDEBAR_PREV_NEW.
++ */
++void mutt_sb_change_mailbox (int op)
++{
++ BUFFY *b;
++ if (!HilBuffy) /* It'll get reset on the next draw */
++ return;
++
++ switch (op)
++ {
++ case OP_SIDEBAR_NEXT:
++ if (!HilBuffy->next)
++ return;
++ if (HilBuffy->next->is_hidden)
++ return;
++ HilBuffy = HilBuffy->next;
++ break;
++ case OP_SIDEBAR_NEXT_NEW:
++ b = find_next_new (option (OPTSIDEBARNEXTNEWWRAP));
++ if (!b)
++ return;
++ else
++ HilBuffy = b;
++ break;
++ case OP_SIDEBAR_PAGE_DOWN:
++ HilBuffy = BotBuffy;
++ if (HilBuffy->next)
++ HilBuffy = HilBuffy->next;
++ break;
++ case OP_SIDEBAR_PAGE_UP:
++ HilBuffy = TopBuffy;
++ if (HilBuffy != Incoming)
++ HilBuffy = HilBuffy->prev;
++ break;
++ case OP_SIDEBAR_PREV:
++ if (!HilBuffy->prev)
++ return;
++ if (HilBuffy->prev->is_hidden) /* Can't happen, we've sorted the hidden to the end */
++ return;
++ HilBuffy = HilBuffy->prev;
++ break;
++ case OP_SIDEBAR_PREV_NEW:
++ b = find_prev_new (option (OPTSIDEBARNEXTNEWWRAP));
++ if (!b)
++ return;
++ else
++ HilBuffy = b;
++ break;
++ default:
++ return;
++ }
++
++ /* We can change folder even if the sidebar is hidden */
++ if (option (OPTSIDEBAR))
++ mutt_sb_draw();
++}
++
++/**
++ * mutt_sb_set_buffystats - Update the BUFFY's message counts from the CONTEXT
++ * @ctx: A mailbox CONTEXT
++ *
++ * Given a mailbox CONTEXT, find a matching mailbox BUFFY and copy the message
++ * counts into it.
++ */
++void mutt_sb_set_buffystats (const CONTEXT *ctx)
++{
++ /* Even if the sidebar's hidden,
++ * we should take note of the new data. */
++ BUFFY *b = Incoming;
++ if (!ctx || !b)
++ return;
++
++ for (; b; b = b->next)
++ {
++ if (!strcmp (b->path, ctx->path) ||
++ !strcmp (b->realpath, ctx->path))
++ {
++ b->msg_unread = ctx->unread;
++ b->msg_count = ctx->msgcount;
++ b->msg_flagged = ctx->flagged;
++ break;
++ }
++ }
++}
++
++/**
++ * mutt_sb_get_highlight - Get the BUFFY that's highlighted in the sidebar
++ *
++ * Get the path of the mailbox that's highlighted in the sidebar.
++ *
++ * Returns:
++ * Mailbox path
++ */
++const char *mutt_sb_get_highlight (void)
++{
++ if (!HilBuffy)
++ return NULL;
++
++ return HilBuffy->path;
++}
++
++/**
++ * mutt_sb_set_open_buffy - Set the OpnBuffy based on a mailbox path
++ * @path: Mailbox path
++ *
++ * Search through the list of mailboxes. If a BUFFY has a matching path, set
++ * OpnBuffy to it.
++ */
++BUFFY *mutt_sb_set_open_buffy (const char *path)
++{
++ /* Even if the sidebar is hidden */
++
++ BUFFY *b = Incoming;
++
++ if (!path || !b)
++ return NULL;
++
++ OpnBuffy = NULL;
++
++ for (; b; b = b->next)
++ {
++ if (!strcmp (b->path, path) ||
++ !strcmp (b->realpath, path))
++ {
++ OpnBuffy = b;
++ HilBuffy = b;
++ break;
++ }
++ }
++
++ return OpnBuffy;
++}
++
++/**
++ * mutt_sb_set_update_time - Note the time that the sidebar was updated
++ *
++ * Update the timestamp representing the last sidebar update. If the user
++ * configures "sidebar_refresh_time", this will help to reduce traffic.
++ */
++void mutt_sb_set_update_time (void)
++{
++ /* XXX - should this be public? */
++
++ LastRefresh = time (NULL);
++}
++
++/**
++ * mutt_sb_notify_mailbox - The state of a BUFFY is about to change
++ *
++ * We receive a notification:
++ * After a new BUFFY has been created
++ * Before a BUFFY is deleted
++ *
++ * Before a deletion, check that our pointers won't be invalidated.
++ */
++void mutt_sb_notify_mailbox (BUFFY *b, int created)
++{
++ if (!b)
++ return;
++
++ /* Any new/deleted mailboxes will cause a refresh. As long as
++ * they're valid, our pointers will be updated in prepare_sidebar() */
++
++ if (created)
++ {
++ if (!TopBuffy)
++ TopBuffy = b;
++ if (!HilBuffy)
++ HilBuffy = b;
++ if (!BotBuffy)
++ BotBuffy = b;
++ if (!Outgoing)
++ Outgoing = b;
++ if (!OpnBuffy && Context)
++ {
++ /* This might happen if the user "unmailboxes *", then
++ * "mailboxes" our current mailbox back again */
++ if (mutt_strcmp (b->path, Context->path) == 0)
++ OpnBuffy = b;
++ }
++ }
++ else
++ {
++ BUFFY *replacement = buffy_going (b);
++ if (TopBuffy == b)
++ TopBuffy = replacement;
++ if (OpnBuffy == b)
++ OpnBuffy = NULL;
++ if (HilBuffy == b)
++ HilBuffy = replacement;
++ if (BotBuffy == b)
++ BotBuffy = replacement;
++ if (Outgoing == b)
++ Outgoing = replacement;
++ }
++}
+diff -urN mutt-1.6.1/sidebar.h mutt-1.6.1-sidebar/sidebar.h
+--- mutt-1.6.1/sidebar.h 1970-01-01 01:00:00.000000000 +0100
++++ mutt-1.6.1-sidebar/sidebar.h 2016-06-12 18:43:03.967503185 +0100
@@ -0,0 +1,36 @@
-+/*
-+ * Copyright (C) ????-2004 Justin Hibbits
++/* Copyright (C) 2004 Justin Hibbits
+ * Copyright (C) 2004 Thomer M. Gil
-+ *
++ * Copyright (C) 2015-2016 Richard Russon
++ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
-+ *
++ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
-+ *
++ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111, USA.
-+ */
++ */
+
+#ifndef SIDEBAR_H
+#define SIDEBAR_H
+
-+struct MBOX_LIST {
-+ char *path;
-+ int msgcount;
-+ int new;
-+} MBLIST;
++#include "mutt.h"
++#include "buffy.h"
+
-+/* parameter is whether or not to go to the status line */
-+/* used for omitting the last | that covers up the status bar in the index */
-+int draw_sidebar(int);
-+void scroll_sidebar(int, int);
-+void set_curbuffy(char*);
-+void set_buffystats(CONTEXT*);
++void mutt_sb_change_mailbox (int op);
++void mutt_sb_draw (void);
++const char * mutt_sb_get_highlight (void);
++void mutt_sb_init (void);
++void mutt_sb_notify_mailbox (BUFFY *b, int created);
++void mutt_sb_set_buffystats (const CONTEXT *ctx);
++BUFFY * mutt_sb_set_open_buffy (const char *path);
++void mutt_sb_set_update_time (void);
++int mutt_sb_should_refresh (void);
+
+#endif /* SIDEBAR_H */
+diff -urN mutt-1.6.1/sort.h mutt-1.6.1-sidebar/sort.h
+--- mutt-1.6.1/sort.h 2016-06-12 18:43:00.415447793 +0100
++++ mutt-1.6.1-sidebar/sort.h 2016-06-12 18:43:03.968503200 +0100
+@@ -31,6 +31,12 @@
+ #define SORT_KEYID 12
+ #define SORT_TRUST 13
+ #define SORT_SPAM 14
++#define SORT_COUNT 15
++#define SORT_COUNT_NEW 16
++#define SORT_DESC 17
++#define SORT_FLAGGED 18
++#define SORT_PATH 19
++
+ /* dgc: Sort & SortAux are shorts, so I'm bumping these bitflags up from
+ * bits 4 & 5 to bits 8 & 9 to make room for more sort keys in the future. */
+ #define SORT_MASK 0xff
+@@ -50,6 +56,7 @@
+ WHERE short Sort INITVAL (SORT_DATE);
+ WHERE short SortAux INITVAL (SORT_DATE); /* auxiliary sorting method */
+ WHERE short SortAlias INITVAL (SORT_ALIAS);
++WHERE short SidebarSortMethod INITVAL (SORT_ORDER);
+
+ /* FIXME: This one does not belong to here */
+ WHERE short PgpSortKeys INITVAL (SORT_ADDRESS);
diff --git a/pkgs/applications/networking/mailreaders/mutt/trash-folder.patch b/pkgs/applications/networking/mailreaders/mutt/trash-folder.patch
deleted file mode 100644
index ce47b0c30e5..00000000000
--- a/pkgs/applications/networking/mailreaders/mutt/trash-folder.patch
+++ /dev/null
@@ -1,316 +0,0 @@
-From: Cedric Duval
-Date: Thu, 27 Feb 2014 12:27:41 +0100
-Subject: trash-folder
-
-With this patch, if the trash variable is set to a path (unset by default), the
-deleted mails will be moved to a trash folder instead of being irremediably
-purged when syncing the mailbox.
-
-For instance, set trash="~/Mail/trash" will cause every deleted mail to go to
-this folder.
-
-Note that the append to the trash folder doesn't occur until the resync is
-done. This allows you to change your mind and undo deletes, and thus the moves
-to the trash folder are unnecessary.
-
-Notes
-
- * You might also want to have a look at the purge message feature below
- which is related to this patch.
- * IMAP is now supported. To retain the previous behavior, add this to your
- muttrc:
- folder-hook ^imap:// 'unset trash'
-
-FAQ
-
-Every once in a while, someone asks what are the advantages of this patch over
-a macro based solution. Here's an attempt to answer this question:
-
- * The folder history doesn't clutter up with unwanted trash entries.
- * Delayed move to the trash allows to change one's mind.
- * No need to treat the case of "normal folders" and trash folders
- separately with folder-hooks, and to create two sets of macros (one for
- the index, one for the pager).
- * Works not only with delete-message, but also with every deletion
- functions like delete-pattern, delete-thread or delete-subthread.
-
-To sum up, it's more integrated and transparent to the user.
-
-* Patch last synced with upstream:
- - Date: 2007-02-15
- - File: http://cedricduval.free.fr/mutt/patches/download/patch-1.5.5.1.cd.trash_folder.3.4
-
-* Changes made:
- - Updated to 1.5.13:
- - structure of _mutt_save_message changed (commands.c)
- - context of option (OPTCONFIRMAPPEND) changed (muttlib.c)
- - Fixed indentation of "appended" in mutt.h.
-
-Signed-off-by: Matteo F. Vescovi
-
-Gbp-Pq: Topic features
----
- commands.c | 1 +
- flags.c | 19 +++++++++++++++++-
- globals.h | 1 +
- imap/message.c | 2 ++
- init.h | 10 ++++++++++
- mutt.h | 3 +++
- muttlib.c | 4 +++-
- mx.c | 62 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
- postpone.c | 3 +++
- 9 files changed, 103 insertions(+), 2 deletions(-)
-
-diff --git a/commands.c b/commands.c
-index 5dbd100..7fd014b 100644
---- a/commands.c
-+++ b/commands.c
-@@ -720,6 +720,7 @@ int _mutt_save_message (HEADER *h, CONTEXT *ctx, int delete, int decode, int dec
- if (option (OPTDELETEUNTAG))
- mutt_set_flag (Context, h, M_TAG, 0);
- }
-+ mutt_set_flag (Context, h, M_APPENDED, 1);
-
- return 0;
- }
-diff --git a/flags.c b/flags.c
-index f0f3d81..dfa6a50 100644
---- a/flags.c
-+++ b/flags.c
-@@ -65,7 +65,13 @@ void _mutt_set_flag (CONTEXT *ctx, HEADER *h, int flag, int bf, int upd_ctx)
- {
- h->deleted = 0;
- update = 1;
-- if (upd_ctx) ctx->deleted--;
-+ if (upd_ctx)
-+ {
-+ ctx->deleted--;
-+ if (h->appended)
-+ ctx->appended--;
-+ }
-+ h->appended = 0; /* when undeleting, also reset the appended flag */
- #ifdef USE_IMAP
- /* see my comment above */
- if (ctx->magic == M_IMAP)
-@@ -87,6 +93,17 @@ void _mutt_set_flag (CONTEXT *ctx, HEADER *h, int flag, int bf, int upd_ctx)
- }
- break;
-
-+ case M_APPENDED:
-+ if (bf)
-+ {
-+ if (!h->appended)
-+ {
-+ h->appended = 1;
-+ if (upd_ctx) ctx->appended++;
-+ }
-+ }
-+ break;
-+
- case M_NEW:
-
- if (!mutt_bit_isset(ctx->rights,M_ACL_SEEN))
-diff --git a/globals.h b/globals.h
-index e77030c..6a1b8da 100644
---- a/globals.h
-+++ b/globals.h
-@@ -144,6 +144,7 @@ WHERE char *Tochars;
- WHERE char *TSStatusFormat;
- WHERE char *TSIconFormat;
- WHERE short TSSupported;
-+WHERE char *TrashPath;
- WHERE char *Username;
- WHERE char *Visual;
-
-diff --git a/imap/message.c b/imap/message.c
-index 3877381..039fda6 100644
---- a/imap/message.c
-+++ b/imap/message.c
-@@ -884,6 +884,7 @@ int imap_copy_messages (CONTEXT* ctx, HEADER* h, char* dest, int delete)
- if (ctx->hdrs[n]->tagged)
- {
- mutt_set_flag (ctx, ctx->hdrs[n], M_DELETE, 1);
-+ mutt_set_flag (ctx, ctx->hdrs[n], M_APPENDED, 1);
- if (option (OPTDELETEUNTAG))
- mutt_set_flag (ctx, ctx->hdrs[n], M_TAG, 0);
- }
-@@ -891,6 +892,7 @@ int imap_copy_messages (CONTEXT* ctx, HEADER* h, char* dest, int delete)
- else
- {
- mutt_set_flag (ctx, h, M_DELETE, 1);
-+ mutt_set_flag (ctx, h, M_APPENDED, 1);
- if (option (OPTDELETEUNTAG))
- mutt_set_flag (ctx, h, M_TAG, 0);
- }
-diff --git a/init.h b/init.h
-index 6b49341..d3206f9 100644
---- a/init.h
-+++ b/init.h
-@@ -3341,6 +3341,16 @@ struct option_t MuttVars[] = {
- ** provided that ``$$ts_enabled'' has been set. This string is identical in
- ** formatting to the one used by ``$$status_format''.
- */
-+ { "trash", DT_PATH, R_NONE, UL &TrashPath, 0 },
-+ /*
-+ ** .pp
-+ ** If set, this variable specifies the path of the trash folder where the
-+ ** mails marked for deletion will be moved, instead of being irremediably
-+ ** purged.
-+ ** .pp
-+ ** NOTE: When you delete a message in the trash folder, it is really
-+ ** deleted, so that you have a way to clean the trash.
-+ */
- #ifdef USE_SOCKET
- { "tunnel", DT_STR, R_NONE, UL &Tunnel, UL 0 },
- /*
-diff --git a/mutt.h b/mutt.h
-index f8565fa..29bb6c2 100644
---- a/mutt.h
-+++ b/mutt.h
-@@ -185,6 +185,7 @@ enum
- M_DELETE,
- M_UNDELETE,
- M_DELETED,
-+ M_APPENDED,
- M_FLAG,
- M_TAG,
- M_UNTAG,
-@@ -713,6 +714,7 @@ typedef struct header
- unsigned int mime : 1; /* has a MIME-Version header? */
- unsigned int flagged : 1; /* marked important? */
- unsigned int tagged : 1;
-+ unsigned int appended : 1; /* has been saved */
- unsigned int deleted : 1;
- unsigned int changed : 1;
- unsigned int attach_del : 1; /* has an attachment marked for deletion */
-@@ -885,6 +887,7 @@ typedef struct _context
- int new; /* how many new messages? */
- int unread; /* how many unread messages? */
- int deleted; /* how many deleted messages */
-+ int appended; /* how many saved messages? */
- int flagged; /* how many flagged messages */
- int msgnotreadyet; /* which msg "new" in pager, -1 if none */
-
-diff --git a/muttlib.c b/muttlib.c
-index 02067cc..0fd9766 100644
---- a/muttlib.c
-+++ b/muttlib.c
-@@ -1505,7 +1505,9 @@ int mutt_save_confirm (const char *s, struct stat *st)
-
- if (magic > 0 && !mx_access (s, W_OK))
- {
-- if (option (OPTCONFIRMAPPEND))
-+ if (option (OPTCONFIRMAPPEND) &&
-+ (!TrashPath || (mutt_strcmp (s, TrashPath) != 0)))
-+ /* if we're appending to the trash, there's no point in asking */
- {
- snprintf (tmp, sizeof (tmp), _("Append messages to %s?"), s);
- if ((rc = mutt_yesorno (tmp, M_YES)) == M_NO)
-diff --git a/mx.c b/mx.c
-index 4c5cb07..c0a6d30 100644
---- a/mx.c
-+++ b/mx.c
-@@ -776,6 +776,53 @@ static int sync_mailbox (CONTEXT *ctx, int *index_hint)
- return rc;
- }
-
-+/* move deleted mails to the trash folder */
-+static int trash_append (CONTEXT *ctx)
-+{
-+ CONTEXT *ctx_trash;
-+ int i = 0;
-+ struct stat st, stc;
-+
-+ if (!TrashPath || !ctx->deleted ||
-+ (ctx->magic == M_MAILDIR && option (OPTMAILDIRTRASH)))
-+ return 0;
-+
-+ for (;i < ctx->msgcount && (!ctx->hdrs[i]->deleted ||
-+ ctx->hdrs[i]->appended); i++);
-+ if (i == ctx->msgcount)
-+ return 0; /* nothing to be done */
-+
-+ if (mutt_save_confirm (TrashPath, &st) != 0)
-+ {
-+ mutt_error _("message(s) not deleted");
-+ return -1;
-+ }
-+
-+ if (lstat (ctx->path, &stc) == 0 && stc.st_ino == st.st_ino
-+ && stc.st_dev == st.st_dev && stc.st_rdev == st.st_rdev)
-+ return 0; /* we are in the trash folder: simple sync */
-+
-+ if ((ctx_trash = mx_open_mailbox (TrashPath, M_APPEND, NULL)) != NULL)
-+ {
-+ for (i = 0 ; i < ctx->msgcount ; i++)
-+ if (ctx->hdrs[i]->deleted && !ctx->hdrs[i]->appended
-+ && mutt_append_message (ctx_trash, ctx, ctx->hdrs[i], 0, 0) == -1)
-+ {
-+ mx_close_mailbox (ctx_trash, NULL);
-+ return -1;
-+ }
-+
-+ mx_close_mailbox (ctx_trash, NULL);
-+ }
-+ else
-+ {
-+ mutt_error _("Can't open trash folder");
-+ return -1;
-+ }
-+
-+ return 0;
-+}
-+
- /* save changes and close mailbox */
- int mx_close_mailbox (CONTEXT *ctx, int *index_hint)
- {
-@@ -912,6 +959,7 @@ int mx_close_mailbox (CONTEXT *ctx, int *index_hint)
- if (mutt_append_message (&f, ctx, ctx->hdrs[i], 0, CH_UPDATE_LEN) == 0)
- {
- mutt_set_flag (ctx, ctx->hdrs[i], M_DELETE, 1);
-+ mutt_set_flag (ctx, ctx->hdrs[i], M_APPENDED, 1);
- }
- else
- {
-@@ -936,6 +984,14 @@ int mx_close_mailbox (CONTEXT *ctx, int *index_hint)
- return 0;
- }
-
-+ /* copy mails to the trash before expunging */
-+ if (purge && ctx->deleted && mutt_strcmp(ctx->path, TrashPath))
-+ if (trash_append (ctx) != 0)
-+ {
-+ ctx->closing = 0;
-+ return -1;
-+ }
-+
- #ifdef USE_IMAP
- /* allow IMAP to preserve the deleted flag across sessions */
- if (ctx->magic == M_IMAP)
-@@ -1133,6 +1189,12 @@ int mx_sync_mailbox (CONTEXT *ctx, int *index_hint)
- msgcount = ctx->msgcount;
- deleted = ctx->deleted;
-
-+ if (purge && ctx->deleted && mutt_strcmp(ctx->path, TrashPath))
-+ {
-+ if (trash_append (ctx) == -1)
-+ return -1;
-+ }
-+
- #ifdef USE_IMAP
- if (ctx->magic == M_IMAP)
- rc = imap_sync_mailbox (ctx, purge, index_hint);
-diff --git a/postpone.c b/postpone.c
-index a703161..7a4cbb1 100644
---- a/postpone.c
-+++ b/postpone.c
-@@ -277,6 +277,9 @@ int mutt_get_postponed (CONTEXT *ctx, HEADER *hdr, HEADER **cur, char *fcc, size
- /* finished with this message, so delete it. */
- mutt_set_flag (PostContext, h, M_DELETE, 1);
-
-+ /* and consider it saved, so that it won't be moved to the trash folder */
-+ mutt_set_flag (PostContext, h, M_APPENDED, 1);
-+
- /* update the count for the status display */
- PostCount = PostContext->msgcount - PostContext->deleted;
-
diff --git a/pkgs/applications/networking/mailreaders/mutt/trash.patch b/pkgs/applications/networking/mailreaders/mutt/trash.patch
new file mode 100644
index 00000000000..a7bda4c4c8b
--- /dev/null
+++ b/pkgs/applications/networking/mailreaders/mutt/trash.patch
@@ -0,0 +1,797 @@
+diff -urN mutt-1.6.1/commands.c mutt-1.6.1-trash/commands.c
+--- mutt-1.6.1/commands.c 2016-06-12 18:43:00.397447512 +0100
++++ mutt-1.6.1-trash/commands.c 2016-06-12 18:43:04.892517610 +0100
+@@ -720,6 +720,7 @@
+ if (option (OPTDELETEUNTAG))
+ mutt_set_flag (Context, h, M_TAG, 0);
+ }
++ mutt_set_flag (Context, h, M_APPENDED, 1);
+
+ return 0;
+ }
+diff -urN mutt-1.6.1/curs_main.c mutt-1.6.1-trash/curs_main.c
+--- mutt-1.6.1/curs_main.c 2016-06-12 18:43:00.399447544 +0100
++++ mutt-1.6.1-trash/curs_main.c 2016-06-12 18:43:04.895517656 +0100
+@@ -1919,6 +1919,7 @@
+ MAYBE_REDRAW (menu->redraw);
+ break;
+
++ case OP_PURGE_MESSAGE:
+ case OP_DELETE:
+
+ CHECK_MSGCOUNT;
+@@ -1930,6 +1931,7 @@
+ if (tag)
+ {
+ mutt_tag_set_flag (M_DELETE, 1);
++ mutt_tag_set_flag (M_PURGED, (op != OP_PURGE_MESSAGE) ? 0 : 1);
+ if (option (OPTDELETEUNTAG))
+ mutt_tag_set_flag (M_TAG, 0);
+ menu->redraw = REDRAW_INDEX;
+@@ -1937,6 +1939,8 @@
+ else
+ {
+ mutt_set_flag (Context, CURHDR, M_DELETE, 1);
++ mutt_set_flag (Context, CURHDR, M_PURGED,
++ (op != OP_PURGE_MESSAGE) ? 0 : 1);
+ if (option (OPTDELETEUNTAG))
+ mutt_set_flag (Context, CURHDR, M_TAG, 0);
+ if (option (OPTRESOLVE))
+@@ -2242,11 +2246,13 @@
+ if (tag)
+ {
+ mutt_tag_set_flag (M_DELETE, 0);
++ mutt_tag_set_flag (M_PURGED, 0);
+ menu->redraw = REDRAW_INDEX;
+ }
+ else
+ {
+ mutt_set_flag (Context, CURHDR, M_DELETE, 0);
++ mutt_set_flag (Context, CURHDR, M_PURGED, 0);
+ if (option (OPTRESOLVE) && menu->current < Context->vcount - 1)
+ {
+ menu->current++;
+@@ -2268,9 +2274,11 @@
+ CHECK_ACL(M_ACL_DELETE, _("Cannot undelete message(s)"));
+
+ rc = mutt_thread_set_flag (CURHDR, M_DELETE, 0,
+- op == OP_UNDELETE_THREAD ? 0 : 1);
++ op == OP_UNDELETE_THREAD ? 0 : 1)
++ + mutt_thread_set_flag (CURHDR, M_PURGED, 0,
++ (op == OP_UNDELETE_THREAD) ? 0 : 1);
+
+- if (rc != -1)
++ if (rc > -1)
+ {
+ if (option (OPTRESOLVE))
+ {
+diff -urN mutt-1.6.1/doc/manual.xml.head mutt-1.6.1-trash/doc/manual.xml.head
+--- mutt-1.6.1/doc/manual.xml.head 2016-06-12 18:43:00.402447590 +0100
++++ mutt-1.6.1-trash/doc/manual.xml.head 2016-06-12 18:43:04.901517750 +0100
+@@ -7467,6 +7467,16 @@
+
+
+
++
++Mutt Patches
++
++Mutt may also be patched
to support smaller features.
++These patches should add a free-form string to the end Mutt's version string.
++Running mutt -v might show:
++patch-1.6.1.sidebar.20160502
++
++
++
+
+ URL Syntax
+
+@@ -8081,6 +8091,175 @@
+
+
+
++
++ Trash Folder Patch
++ Automatically move "deleted" emails to a trash bin
++
++
++ Patch
++
++
++ To check if Mutt supports Trash Folder
, look for
++ patch-trash
in the mutt version.
++ See: .
++
++
++ If IMAP is enabled, this patch will use it
++
++
++ Dependencies:
++ mutt-1.6.1
++ IMAP support
++
++
++ This patch is part of the NeoMutt Project .
++
++
++
++ Introduction
++
++
++ In Mutt, when you delete
an email it is first marked
++ deleted. The email isn't really gone until
++ <sync-mailbox> is called.
++ This happens when the user leaves the folder, or the function is called
++ manually.
++
++
++
++ After <sync-mailbox> has been called the email is gone forever.
++
++
++
++ The $trash variable defines a folder in
++ which to keep old emails. As before, first you mark emails for
++ deletion. When <sync-mailbox> is called the emails are moved to
++ the trash folder.
++
++
++
++ The $trash path can be either a full directory,
++ or be relative to the $folder
++ variable, like the mailboxes command.
++
++
++
++ Emails deleted from the trash folder are gone forever.
++
++
++
++
++ Variables
++
++ Trash Variables
++
++
++
++ Name
++ Type
++ Default
++
++
++
++
++ trash
++ string
++ (none)
++
++
++
++
++
++
++
++ Functions
++
++ Trash Functions
++
++
++
++ Menus
++ Default Key
++ Function
++ Description
++
++
++
++
++ index,pager
++ (none)
++ <purge-message>
++ really delete the current entry, bypassing the trash folder
++
++
++
++
++
++
++
++
++
++ Muttrc
++
++# Example Mutt config file for the 'trash' feature.
++
++# This feature defines a new 'trash' folder.
++# When mail is deleted it will be moved to this folder.
++
++# Folder in which to put deleted emails
++set trash='+Trash'
++set trash='/home/flatcap/Mail/Trash'
++
++# The default delete key 'd' will move an email to the 'trash' folder
++# Bind 'D' to REALLY delete an email
++bind index D purge-message
++
++# Note: Deleting emails from the 'trash' folder will REALLY delete them.
++
++# vim: syntax=muttrc
++
++
++
++
++ See Also
++
++
++ NeoMutt Project
++ folder-hook
++
++
++
++
++ Known Bugs
++ None
++
++
++
++ Credits
++
++ Cedric Duval cedricduval@free.fr
++ Benjamin Kuperman kuperman@acm.org
++ Paul Miller paul@voltar.org
++ Richard Russon rich@flatcap.org
++
++
++
++
+
+
+
+diff -urN mutt-1.6.1/doc/muttrc.trash mutt-1.6.1-trash/doc/muttrc.trash
+--- mutt-1.6.1/doc/muttrc.trash 1970-01-01 01:00:00.000000000 +0100
++++ mutt-1.6.1-trash/doc/muttrc.trash 2016-06-12 18:43:04.768515676 +0100
+@@ -0,0 +1,16 @@
++# Example Mutt config file for the 'trash' feature.
++
++# This feature defines a new 'trash' folder.
++# When mail is deleted it will be moved to this folder.
++
++# Folder in which to put deleted emails
++set trash='+Trash'
++set trash='/home/flatcap/Mail/Trash'
++
++# The default delete key 'd' will move an email to the 'trash' folder
++# Bind 'D' to REALLY delete an email
++bind index D purge-message
++
++# Note: Deleting emails from the 'trash' folder will REALLY delete them.
++
++# vim: syntax=muttrc
+diff -urN mutt-1.6.1/doc/vimrc.trash mutt-1.6.1-trash/doc/vimrc.trash
+--- mutt-1.6.1/doc/vimrc.trash 1970-01-01 01:00:00.000000000 +0100
++++ mutt-1.6.1-trash/doc/vimrc.trash 2016-06-12 18:43:04.769515692 +0100
+@@ -0,0 +1,7 @@
++" Vim syntax file for the mutt trash patch
++
++syntax keyword muttrcVarStr contained skipwhite trash nextgroup=muttrcVarEqualsIdxFmt
++
++syntax match muttrcFunction contained "\"
++
++" vim: syntax=vim
+diff -urN mutt-1.6.1/flags.c mutt-1.6.1-trash/flags.c
+--- mutt-1.6.1/flags.c 2016-06-12 18:43:00.403447606 +0100
++++ mutt-1.6.1-trash/flags.c 2016-06-12 18:43:04.902517766 +0100
+@@ -65,7 +65,13 @@
+ {
+ h->deleted = 0;
+ update = 1;
+- if (upd_ctx) ctx->deleted--;
++ if (upd_ctx) {
++ ctx->deleted--;
++ if (h->appended) {
++ ctx->appended--;
++ }
++ }
++ h->appended = 0; /* when undeleting, also reset the appended flag */
+ #ifdef USE_IMAP
+ /* see my comment above */
+ if (ctx->magic == M_IMAP)
+@@ -87,6 +93,27 @@
+ }
+ break;
+
++ case M_APPENDED:
++ if (bf) {
++ if (!h->appended) {
++ h->appended = 1;
++ if (upd_ctx) {
++ ctx->appended++;
++ }
++ }
++ }
++ break;
++
++ case M_PURGED:
++ if (bf) {
++ if (!h->purged) {
++ h->purged = 1;
++ }
++ } else if (h->purged) {
++ h->purged = 0;
++ }
++ break;
++
+ case M_NEW:
+
+ if (!mutt_bit_isset(ctx->rights,M_ACL_SEEN))
+diff -urN mutt-1.6.1/functions.h mutt-1.6.1-trash/functions.h
+--- mutt-1.6.1/functions.h 2016-06-12 18:43:00.403447606 +0100
++++ mutt-1.6.1-trash/functions.h 2016-06-12 18:43:04.902517766 +0100
+@@ -121,6 +121,7 @@
+ { "toggle-write", OP_TOGGLE_WRITE, "%" },
+ { "next-thread", OP_MAIN_NEXT_THREAD, "\016" },
+ { "next-subthread", OP_MAIN_NEXT_SUBTHREAD, "\033n" },
++ { "purge-message", OP_PURGE_MESSAGE, NULL },
+ { "query", OP_QUERY, "Q" },
+ { "quit", OP_QUIT, "q" },
+ { "reply", OP_REPLY, "r" },
+@@ -213,6 +214,7 @@
+ { "print-message", OP_PRINT, "p" },
+ { "previous-thread", OP_MAIN_PREV_THREAD, "\020" },
+ { "previous-subthread",OP_MAIN_PREV_SUBTHREAD, "\033p" },
++ { "purge-message", OP_PURGE_MESSAGE, NULL },
+ { "quit", OP_QUIT, "Q" },
+ { "exit", OP_EXIT, "q" },
+ { "reply", OP_REPLY, "r" },
+diff -urN mutt-1.6.1/globals.h mutt-1.6.1-trash/globals.h
+--- mutt-1.6.1/globals.h 2016-06-12 18:43:00.403447606 +0100
++++ mutt-1.6.1-trash/globals.h 2016-06-12 18:43:04.903517781 +0100
+@@ -141,6 +141,7 @@
+ WHERE char *Status;
+ WHERE char *Tempdir;
+ WHERE char *Tochars;
++WHERE char *TrashPath;
+ WHERE char *TSStatusFormat;
+ WHERE char *TSIconFormat;
+ WHERE short TSSupported;
+diff -urN mutt-1.6.1/imap/imap.c mutt-1.6.1-trash/imap/imap.c
+--- mutt-1.6.1/imap/imap.c 2016-06-12 18:43:00.405447637 +0100
++++ mutt-1.6.1-trash/imap/imap.c 2016-06-12 18:43:04.905517812 +0100
+@@ -888,6 +888,12 @@
+ if (hdrs[n]->deleted != HEADER_DATA(hdrs[n])->deleted)
+ match = invert ^ hdrs[n]->deleted;
+ break;
++ case M_EXPIRED: /* imap_fast_trash version of M_DELETED */
++ if (hdrs[n]->purged)
++ break;
++ if (hdrs[n]->deleted != HEADER_DATA(hdrs[n])->deleted)
++ match = invert ^ (hdrs[n]->deleted && !hdrs[n]->appended);
++ break;
+ case M_FLAG:
+ if (hdrs[n]->flagged != HEADER_DATA(hdrs[n])->flagged)
+ match = invert ^ hdrs[n]->flagged;
+@@ -2038,3 +2044,53 @@
+
+ return -1;
+ }
++
++/**
++ * imap_fast_trash - XXX
++ */
++int
++imap_fast_trash (void)
++{
++ if ((Context->magic == M_IMAP) && mx_is_imap (TrashPath)) {
++ IMAP_MBOX mx;
++ IMAP_DATA *idata = (IMAP_DATA *) Context->data;
++ char mbox[LONG_STRING];
++ char mmbox[LONG_STRING];
++ int rc;
++ dprint (1, (debugfile, "[itf] trashcan seems to be on imap.\n"));
++
++ if (imap_parse_path (TrashPath, &mx) == 0) {
++ if (mutt_account_match (&(idata->conn->account), &(mx.account))) {
++ dprint (1, (debugfile, "[itf] trashcan seems to be on the same account.\n"));
++
++ imap_fix_path (idata, mx.mbox, mbox, sizeof (mbox));
++ if (!*mbox)
++ strfcpy (mbox, "INBOX", sizeof (mbox));
++ imap_munge_mbox_name (idata, mmbox, sizeof (mmbox), mbox);
++
++ rc = imap_exec_msgset (idata, "UID COPY", mmbox, M_EXPIRED, 0, 0);
++ if (rc == 0) {
++ dprint (1, (debugfile, "imap_copy_messages: No messages del-tagged\n"));
++ rc = -1;
++ goto old_way;
++ } else if (rc < 0) {
++ dprint (1, (debugfile, "could not queue copy\n"));
++ goto old_way;
++ } else {
++ mutt_message (_("Copying %d messages to %s..."), rc, mbox);
++ return 0;
++ }
++ } else {
++ dprint (1, (debugfile, "[itf] trashcan seems to be on a different account.\n"));
++ }
++old_way:
++ FREE(&mx.mbox); /* we probably only need to free this when the parse works */
++ } else {
++ dprint (1, (debugfile, "[itf] failed to parse TrashPath.\n"));
++ }
++
++ dprint (1, (debugfile, "[itf] giving up and trying old fasioned way.\n"));
++ }
++
++ return 1;
++}
+diff -urN mutt-1.6.1/imap/imap.h mutt-1.6.1-trash/imap/imap.h
+--- mutt-1.6.1/imap/imap.h 2016-06-12 18:43:00.405447637 +0100
++++ mutt-1.6.1-trash/imap/imap.h 2016-06-12 18:43:04.774515769 +0100
+@@ -72,4 +72,7 @@
+
+ int imap_account_match (const ACCOUNT* a1, const ACCOUNT* a2);
+
++/* trash */
++int imap_fast_trash (void);
++
+ #endif
+diff -urN mutt-1.6.1/imap/message.c mutt-1.6.1-trash/imap/message.c
+--- mutt-1.6.1/imap/message.c 2016-06-12 18:43:00.406447652 +0100
++++ mutt-1.6.1-trash/imap/message.c 2016-06-12 18:43:04.906517828 +0100
+@@ -886,6 +886,7 @@
+ if (ctx->hdrs[n]->tagged)
+ {
+ mutt_set_flag (ctx, ctx->hdrs[n], M_DELETE, 1);
++ mutt_set_flag (ctx, ctx->hdrs[n], M_APPENDED, 1);
+ if (option (OPTDELETEUNTAG))
+ mutt_set_flag (ctx, ctx->hdrs[n], M_TAG, 0);
+ }
+@@ -893,6 +894,7 @@
+ else
+ {
+ mutt_set_flag (ctx, h, M_DELETE, 1);
++ mutt_set_flag (ctx, h, M_APPENDED, 1);
+ if (option (OPTDELETEUNTAG))
+ mutt_set_flag (ctx, h, M_TAG, 0);
+ }
+diff -urN mutt-1.6.1/init.h mutt-1.6.1-trash/init.h
+--- mutt-1.6.1/init.h 2016-06-12 18:43:00.408447684 +0100
++++ mutt-1.6.1-trash/init.h 2016-06-12 18:43:04.909517875 +0100
+@@ -3419,6 +3419,16 @@
+ ** provided that ``$$ts_enabled'' has been set. This string is identical in
+ ** formatting to the one used by ``$$status_format''.
+ */
++ { "trash", DT_PATH, R_NONE, UL &TrashPath, 0 },
++ /*
++ ** .pp
++ ** If set, this variable specifies the path of the trash folder where the
++ ** mails marked for deletion will be moved, instead of being irremediably
++ ** purged.
++ ** .pp
++ ** NOTE: When you delete a message in the trash folder, it is really
++ ** deleted, so that you have a way to clean the trash.
++ */
+ #ifdef USE_SOCKET
+ { "tunnel", DT_STR, R_NONE, UL &Tunnel, UL 0 },
+ /*
+diff -urN mutt-1.6.1/mutt.h mutt-1.6.1-trash/mutt.h
+--- mutt-1.6.1/mutt.h 2016-06-12 18:43:00.410447715 +0100
++++ mutt-1.6.1-trash/mutt.h 2016-06-12 18:43:04.912517922 +0100
+@@ -182,6 +182,8 @@
+ M_DELETE,
+ M_UNDELETE,
+ M_DELETED,
++ M_APPENDED,
++ M_PURGED,
+ M_FLAG,
+ M_TAG,
+ M_UNTAG,
+@@ -719,6 +721,8 @@
+ unsigned int mime : 1; /* has a MIME-Version header? */
+ unsigned int flagged : 1; /* marked important? */
+ unsigned int tagged : 1;
++ unsigned int appended : 1; /* has been saved */
++ unsigned int purged : 1; /* bypassing the trash folder */
+ unsigned int deleted : 1;
+ unsigned int changed : 1;
+ unsigned int attach_del : 1; /* has an attachment marked for deletion */
+@@ -891,6 +895,7 @@
+ int new; /* how many new messages? */
+ int unread; /* how many unread messages? */
+ int deleted; /* how many deleted messages */
++ int appended; /* how many saved messages? */
+ int flagged; /* how many flagged messages */
+ int msgnotreadyet; /* which msg "new" in pager, -1 if none */
+
+diff -urN mutt-1.6.1/muttlib.c mutt-1.6.1-trash/muttlib.c
+--- mutt-1.6.1/muttlib.c 2016-06-12 18:43:00.411447731 +0100
++++ mutt-1.6.1-trash/muttlib.c 2016-06-12 18:43:04.913517937 +0100
+@@ -1511,7 +1511,9 @@
+
+ if (magic > 0 && !mx_access (s, W_OK))
+ {
+- if (option (OPTCONFIRMAPPEND))
++ if (option (OPTCONFIRMAPPEND) &&
++ (!TrashPath || (mutt_strcmp (s, TrashPath) != 0)))
++ /* if we're appending to the trash, there's no point in asking */
+ {
+ snprintf (tmp, sizeof (tmp), _("Append messages to %s?"), s);
+ if ((rc = mutt_yesorno (tmp, M_YES)) == M_NO)
+diff -urN mutt-1.6.1/mx.c mutt-1.6.1-trash/mx.c
+--- mutt-1.6.1/mx.c 2016-06-12 18:43:00.411447731 +0100
++++ mutt-1.6.1-trash/mx.c 2016-06-12 18:43:04.914517953 +0100
+@@ -776,6 +776,62 @@
+ return rc;
+ }
+
++/**
++ * trash_append - XXX
++ *
++ * move deleted mails to the trash folder
++ */
++static int trash_append (CONTEXT *ctx)
++{
++ CONTEXT *ctx_trash;
++ int i = 0;
++ struct stat st, stc;
++
++ if (!TrashPath || !ctx->deleted ||
++ ((ctx->magic == M_MAILDIR) && option (OPTMAILDIRTRASH))) {
++ return 0;
++ }
++
++ for (; i < ctx->msgcount && (!ctx->hdrs[i]->deleted || ctx->hdrs[i]->appended); i++);
++ /* nothing */
++
++ if (i == ctx->msgcount)
++ return 0; /* nothing to be done */
++
++ if (mutt_save_confirm (TrashPath, &st) != 0) {
++ mutt_error _("message(s) not deleted");
++ return -1;
++ }
++
++ if (lstat (ctx->path, &stc) == 0 && stc.st_ino == st.st_ino
++ && stc.st_dev == st.st_dev && stc.st_rdev == st.st_rdev) {
++ return 0; /* we are in the trash folder: simple sync */
++ }
++
++#ifdef USE_IMAP
++ if (!imap_fast_trash())
++ return 0;
++#endif
++
++ if ((ctx_trash = mx_open_mailbox (TrashPath, M_APPEND, NULL)) != NULL) {
++ for (i = 0 ; i < ctx->msgcount ; i++) {
++ if (ctx->hdrs[i]->deleted && !ctx->hdrs[i]->appended
++ && !ctx->hdrs[i]->purged
++ && mutt_append_message (ctx_trash, ctx, ctx->hdrs[i], 0, 0) == -1) {
++ mx_close_mailbox (ctx_trash, NULL);
++ return -1;
++ }
++ }
++
++ mx_close_mailbox (ctx_trash, NULL);
++ } else {
++ mutt_error _("Can't open trash folder");
++ return -1;
++ }
++
++ return 0;
++}
++
+ /* save changes and close mailbox */
+ int mx_close_mailbox (CONTEXT *ctx, int *index_hint)
+ {
+@@ -912,6 +968,7 @@
+ if (mutt_append_message (&f, ctx, ctx->hdrs[i], 0, CH_UPDATE_LEN) == 0)
+ {
+ mutt_set_flag (ctx, ctx->hdrs[i], M_DELETE, 1);
++ mutt_set_flag (ctx, ctx->hdrs[i], M_APPENDED, 1);
+ }
+ else
+ {
+@@ -936,6 +993,14 @@
+ return 0;
+ }
+
++ /* copy mails to the trash before expunging */
++ if (purge && ctx->deleted && mutt_strcmp (ctx->path, TrashPath)) {
++ if (trash_append (ctx) != 0) {
++ ctx->closing = 0;
++ return -1;
++ }
++ }
++
+ #ifdef USE_IMAP
+ /* allow IMAP to preserve the deleted flag across sessions */
+ if (ctx->magic == M_IMAP)
+@@ -1140,6 +1205,12 @@
+ msgcount = ctx->msgcount;
+ deleted = ctx->deleted;
+
++ if (purge && ctx->deleted && mutt_strcmp (ctx->path, TrashPath)) {
++ if (trash_append (ctx) == -1) {
++ return -1;
++ }
++ }
++
+ #ifdef USE_IMAP
+ if (ctx->magic == M_IMAP)
+ rc = imap_sync_mailbox (ctx, purge, index_hint);
+diff -urN mutt-1.6.1/OPS mutt-1.6.1-trash/OPS
+--- mutt-1.6.1/OPS 2016-06-12 18:43:00.389447388 +0100
++++ mutt-1.6.1-trash/OPS 2016-06-12 18:43:04.883517469 +0100
+@@ -142,6 +142,7 @@
+ OP_PREV_LINE "scroll up one line"
+ OP_PREV_PAGE "move to the previous page"
+ OP_PRINT "print the current entry"
++OP_PURGE_MESSAGE "really delete the current entry, bypassing the trash folder"
+ OP_QUERY "query external program for addresses"
+ OP_QUERY_APPEND "append new query results to current results"
+ OP_QUIT "save changes to mailbox and quit"
+diff -urN mutt-1.6.1/pager.c mutt-1.6.1-trash/pager.c
+--- mutt-1.6.1/pager.c 2016-06-12 18:43:00.412447746 +0100
++++ mutt-1.6.1-trash/pager.c 2016-06-12 18:43:04.915517968 +0100
+@@ -2351,6 +2351,7 @@
+ MAYBE_REDRAW (redraw);
+ break;
+
++ case OP_PURGE_MESSAGE:
+ case OP_DELETE:
+ CHECK_MODE(IsHeader (extra));
+ CHECK_READONLY;
+@@ -2358,6 +2359,8 @@
+ CHECK_ACL(M_ACL_DELETE, _("Cannot delete message"));
+
+ mutt_set_flag (Context, extra->hdr, M_DELETE, 1);
++ mutt_set_flag (Context, extra->hdr, M_PURGED,
++ ch != OP_PURGE_MESSAGE ? 0 : 1);
+ if (option (OPTDELETEUNTAG))
+ mutt_set_flag (Context, extra->hdr, M_TAG, 0);
+ redraw = REDRAW_STATUS | REDRAW_INDEX;
+@@ -2688,6 +2691,7 @@
+ CHECK_ACL(M_ACL_DELETE, _("Cannot undelete message"));
+
+ mutt_set_flag (Context, extra->hdr, M_DELETE, 0);
++ mutt_set_flag (Context, extra->hdr, M_PURGED, 0);
+ redraw = REDRAW_STATUS | REDRAW_INDEX;
+ if (option (OPTRESOLVE))
+ {
+@@ -2704,9 +2708,11 @@
+ CHECK_ACL(M_ACL_DELETE, _("Cannot undelete message(s)"));
+
+ r = mutt_thread_set_flag (extra->hdr, M_DELETE, 0,
++ ch == OP_UNDELETE_THREAD ? 0 : 1)
++ + mutt_thread_set_flag (extra->hdr, M_PURGED, 0,
+ ch == OP_UNDELETE_THREAD ? 0 : 1);
+
+- if (r != -1)
++ if (r > -1)
+ {
+ if (option (OPTRESOLVE))
+ {
+diff -urN mutt-1.6.1/PATCHES mutt-1.6.1-trash/PATCHES
+--- mutt-1.6.1/PATCHES 2016-06-12 18:43:00.395447481 +0100
++++ mutt-1.6.1-trash/PATCHES 2016-06-12 18:43:04.889517563 +0100
+@@ -0,0 +1 @@
++patch-trash-neo-20160612
+diff -urN mutt-1.6.1/pattern.c mutt-1.6.1-trash/pattern.c
+--- mutt-1.6.1/pattern.c 2016-06-12 18:43:00.413447762 +0100
++++ mutt-1.6.1-trash/pattern.c 2016-06-12 18:43:04.916517984 +0100
+@@ -1367,8 +1367,9 @@
+ {
+ switch (op)
+ {
+- case M_DELETE:
+ case M_UNDELETE:
++ mutt_set_flag (Context, Context->hdrs[Context->v2r[i]], M_PURGED, 0);
++ case M_DELETE:
+ mutt_set_flag (Context, Context->hdrs[Context->v2r[i]], M_DELETE,
+ (op == M_DELETE));
+ break;
+diff -urN mutt-1.6.1/postpone.c mutt-1.6.1-trash/postpone.c
+--- mutt-1.6.1/postpone.c 2016-06-12 18:43:00.414447777 +0100
++++ mutt-1.6.1-trash/postpone.c 2016-06-12 18:43:04.917518000 +0100
+@@ -277,6 +277,9 @@
+ /* finished with this message, so delete it. */
+ mutt_set_flag (PostContext, h, M_DELETE, 1);
+
++ /* and consider it saved, so that it won't be moved to the trash folder */
++ mutt_set_flag (PostContext, h, M_APPENDED, 1);
++
+ /* update the count for the status display */
+ PostCount = PostContext->msgcount - PostContext->deleted;
+
+diff -urN mutt-1.6.1/README.trash mutt-1.6.1-trash/README.trash
+--- mutt-1.6.1/README.trash 1970-01-01 01:00:00.000000000 +0100
++++ mutt-1.6.1-trash/README.trash 2016-06-12 18:43:04.748515364 +0100
+@@ -0,0 +1,74 @@
++Trash Folder Patch
++==================
++
++ Automatically move "deleted" emails to a trash bin
++
++Patch
++-----
++
++ To check if Mutt supports "Trash Folder", look for "patch-trash" in the
++ mutt version.
++
++ If IMAP is enabled, this patch will use it
++
++ Dependencies
++ * mutt-1.6.1
++ * IMAP support
++
++Introduction
++------------
++
++ In Mutt, when you "delete" an email it is first marked deleted. The email
++ isn't really gone until is called. This happens when the
++ user leaves the folder, or the function is called manually.
++
++ After '' has been called the email is gone forever.
++
++ The $trash variable defines a folder in which to keep old emails. As
++ before, first you mark emails for deletion. When is called
++ the emails are moved to the trash folder.
++
++ The '$trash' path can be either a full directory, or be relative to the
++ $folder variable, like the 'mailboxes' command.
++
++ > Note
++ >
++ > Emails deleted from the trash folder are gone forever.
++
++Variables
++---------
++
++ Trash Variables
++
++ | Name | Type | Default |
++ |-------|--------|---------|
++ | trash | string | (none) |
++
++Functions
++---------
++
++ Trash Functions
++
++ | Menus | Default Key | Function | Description |
++ |-------------|-------------|-------------------|-------------------------------------------------------------|
++ | index,pager | (none) | '' | really delete the current entry, bypassing the trash folder |
++
++See Also
++--------
++
++ * NeoMutt project
++ * folder-hook
++
++Known Bugs
++----------
++
++ None
++
++Credits
++-------
++
++ * Cedric Duval
++ * Benjamin Kuperman
++ * Paul Miller
++ * Richard Russon
++
diff --git a/pkgs/applications/networking/mailreaders/neomutt/default.nix b/pkgs/applications/networking/mailreaders/neomutt/default.nix
index fd5f4a18bd4..00d472b11bc 100644
--- a/pkgs/applications/networking/mailreaders/neomutt/default.nix
+++ b/pkgs/applications/networking/mailreaders/neomutt/default.nix
@@ -2,14 +2,14 @@
, cyrus_sasl, gdbm, gpgme, kerberos, libidn, notmuch, openssl }:
stdenv.mkDerivation rec {
- version = "20160502";
+ version = "20160611";
name = "neomutt-${version}";
src = fetchFromGitHub {
owner = "neomutt";
repo = "neomutt";
rev = "neomutt-${version}";
- sha256 = "0r7nn7yjhf3d7nc89gwpgrq45gqiwsrcaw1pkgmvrd16p0jhga1m";
+ sha256 = "12487hydn9x1yyxzc0x7hssgjwji3i64glmbi7synjc8arfqc5zs";
};
buildInputs =
@@ -25,7 +25,9 @@ stdenv.mkDerivation rec {
"--enable-pgp"
"--enable-pop"
"--enable-sidebar"
+ "--enable-keywords"
"--enable-smtp"
+ "--enable-nntp"
"--with-homespool=mailbox"
"--with-gss"
"--with-mailpath="
@@ -46,6 +48,6 @@ stdenv.mkDerivation rec {
homepage = http://www.neomutt.org;
license = stdenv.lib.licenses.gpl2Plus;
platforms = platforms.unix;
- maintainers = with maintainers; [ hiberno cstrahan ];
+ maintainers = with maintainers; [ hiberno cstrahan vrthra ];
};
}
diff --git a/pkgs/applications/networking/mailreaders/thunderbird-bin/generate_sources.rb b/pkgs/applications/networking/mailreaders/thunderbird-bin/generate_sources.rb
index 07374a827f2..43b41658413 100644
--- a/pkgs/applications/networking/mailreaders/thunderbird-bin/generate_sources.rb
+++ b/pkgs/applications/networking/mailreaders/thunderbird-bin/generate_sources.rb
@@ -29,7 +29,7 @@ puts(<<"EOH")
# This file is generated from generate_sources.rb. DO NOT EDIT.
# Execute the following command to update the file.
#
-# ruby generate_sources.rb 45.1.0 > sources.nix
+# ruby generate_sources.rb 45.1.1 > sources.nix
{
version = "#{version}";
diff --git a/pkgs/applications/networking/mailreaders/thunderbird-bin/sources.nix b/pkgs/applications/networking/mailreaders/thunderbird-bin/sources.nix
index 227babe397d..84845c764bc 100644
--- a/pkgs/applications/networking/mailreaders/thunderbird-bin/sources.nix
+++ b/pkgs/applications/networking/mailreaders/thunderbird-bin/sources.nix
@@ -1,126 +1,126 @@
# This file is generated from generate_sources.rb. DO NOT EDIT.
# Execute the following command to update the file.
#
-# ruby generate_sources.rb 45.1.0 > sources.nix
+# ruby generate_sources.rb 45.1.1 > sources.nix
{
- version = "45.1.1";
+ version = "45.2.0";
sources = [
- { locale = "ar"; arch = "linux-i686"; sha512 = "9825f8a9cc465435539aface355797d1f35437abd4a684efbc39ffe9948302e095e7aa9ab336e239a9d11a592f2c7d75fe21ef20747ff18a27ab404d0a43c659"; }
- { locale = "ar"; arch = "linux-x86_64"; sha512 = "b2d16d69b78ade4fa9e5827411670e0a19d7fe7c1e2d893865f94514f5b50832ccf9ca5fb92354b152041605b1d7b7c1673d697537fc48ea3323b6b9563c4599"; }
- { locale = "ast"; arch = "linux-i686"; sha512 = "37fcf68df5d69e56d9ab20e84542fd95b0e0f4fae56bc652b5037c9af97596ba27e4b3b92ea76dc81dc878cd125ee1b024ab5cf05662fbe6354eac303382396e"; }
- { locale = "ast"; arch = "linux-x86_64"; sha512 = "f29f59ad51794e4bf1c570fdf3c5d45c61c23dc8ec9aaab5827abd961ce1228211277200782bf95c76a1c87138c2e1005d9474a055f4bbc1f0d9401b75cc856c"; }
- { locale = "be"; arch = "linux-i686"; sha512 = "c2064f08f4e7f8154764d14605bf30d687670b0e617f21f99b80852ed41ef942a6573a2ec4bc4e01cbf1823efe064da011dd1f29841b2765323d78694465c8d2"; }
- { locale = "be"; arch = "linux-x86_64"; sha512 = "d0c96406e0d889cbef011bdcb6f7d65f2ca4077b4c1c28d1790cf54fc6553092f7188ac32d5e2d80389c316ae205a982cb7d95b4bffe57f7e159304d3256978e"; }
- { locale = "bg"; arch = "linux-i686"; sha512 = "43c7f27b227af8dd647008247bc0bd858d65126d34543a1e8376887fefe27d8f42997e9832802429343cc80c2b9cbdf02f99a195fcd99d9fcecea66e9a6968cc"; }
- { locale = "bg"; arch = "linux-x86_64"; sha512 = "98da4029e345db4b123a32f57a2bdc01277b023d5e2463b04c31703fb5bb7e59cdf5322af62f62a0388a5046e8a2a151849110b24b51295c2f68fe96db0d936e"; }
- { locale = "bn-BD"; arch = "linux-i686"; sha512 = "2b87536b6b9205d6078a028941703f19788c09e62cd1e17f00aac6da20859fcf4ca284d651e57e0b4332f197d5420b4f2121818445aa03f0580c10cb383c64e9"; }
- { locale = "bn-BD"; arch = "linux-x86_64"; sha512 = "8a70702117a5a270b5f2dae44dec45471d7c7e791c3ed65aebc6fc016dee9df950dae7f5c9186c5b10d2b3cf483b57bfc43905862283bea6406c99c744c5b87e"; }
- { locale = "br"; arch = "linux-i686"; sha512 = "7b2caaab28a8615fa68fab3ac93c9ddda08715d6c3674908febb50bf3a876659ed868656d545e1021056e64115a56e4bf7a88fcfc42d7e2292f9947ccfd2c42c"; }
- { locale = "br"; arch = "linux-x86_64"; sha512 = "8d6a53a190c99fa4686139ad5f5c2f41572f8a5d6e2937035975585505eaa445807cbc5e7abc5584e82328dbb39b525b555dba6a13ff26d4ce53e564dc494344"; }
- { locale = "ca"; arch = "linux-i686"; sha512 = "428d48e3609611354eead00a123d48cfe5e214fa405a97e701180b14c82329620fa7df45e703c5e8a8f84616839d022fb3be7192ff340ddb996229dba110b7e9"; }
- { locale = "ca"; arch = "linux-x86_64"; sha512 = "560f6bdcc55c62db0ded2abfcbedf006a1b27c127ad193a4deebf117402aaa531a7069954e94cbe7b1c3d6b95e4cdfb46543e9ed623a22b6e14a64bff1b7b682"; }
- { locale = "cs"; arch = "linux-i686"; sha512 = "48b984956b2f2139704caca7c45fdbeb0e0c138b7ce0548a3946be2dd2de5f83e9ac1b0605c08ed32e54d34fc830d2aabd127a8679c1d933d802e89db1ddad1e"; }
- { locale = "cs"; arch = "linux-x86_64"; sha512 = "9a28daa1f56d5e676e9bb9c2fea52f7324c40eaf237ea5cd4614c66ec67ef9604967c864ac1fb1ab81d2e490c829916b4f5a2a93179fdcae55495837fd002700"; }
- { locale = "cy"; arch = "linux-i686"; sha512 = "7e97b3ea0046406aa0c7254125215dc7cd109e7ffdbb8586c1b9928f3474a75f022d36f7f5e0d102b3a8dfd3c13ab78b7a3d4478e8334e685136ece57e2abbe7"; }
- { locale = "cy"; arch = "linux-x86_64"; sha512 = "4445d1e434f7bfc646a9ac3ee796e70345f109fea93824cd4eea95f2b58fe81e3c1b2a6a667ff1c6b9f648294b3b2ea2d42b98477bb7e6ebd8d66bbb6fe4eaf5"; }
- { locale = "da"; arch = "linux-i686"; sha512 = "1ea50eedeab6be84fe94ae52d50dba4d17bbcefb31f06cf439ce5e7dd743c03a87c59d4e17dbd931bb8e833701fb273a536fc3a89345686462fec12b64f50908"; }
- { locale = "da"; arch = "linux-x86_64"; sha512 = "df90ab827acd69ff8e47011020e8d4a02cf669e1994d0238d11027270a8bc97fc7ff6f52ac766af6817b44efb62b985c8688d23efda3ab0a740734bf6764f755"; }
- { locale = "de"; arch = "linux-i686"; sha512 = "3d0f2db8eefcecec01f6d102c413f6125a2eb37f2ce03458f75a34a9c1086531c0df4979a02bcf760c26f7d43aa4f6a5444b662cebf124f5f8b02ed5decbf83f"; }
- { locale = "de"; arch = "linux-x86_64"; sha512 = "9de6e8002e57c9c51bcd01b3e49f6fb04e527ee9fd961ca5ad22806cbfaf9cc2e01e554576606866576094a2331e9aae36bd40b83a8c5fe892c726148ac08c0b"; }
- { locale = "dsb"; arch = "linux-i686"; sha512 = "4600a52aa52ac9efc077b50e6b0b756af3e14c84fdfab2eddd83cd95568f6ca143754b0bd152a36165728f5c47b757cd3a21c06f4c92edc244b7be5775c298a4"; }
- { locale = "dsb"; arch = "linux-x86_64"; sha512 = "472d1de923605ab68989cec03f9d447366d3afdddf94272bed9a52c7bbe2b50b172702e54004e4fd80a5f98d5170d541f060dd8fea0dbf04fc5ad54ae9bac6fb"; }
- { locale = "el"; arch = "linux-i686"; sha512 = "83b81f80adc8311a77972596b21a602260ccb8d1c7bafd88e791f2e5549b3e9498ff4d62954faf2937ed6b9419eba23610521b1ad73ffe20bd8d6d1a5ad65bb4"; }
- { locale = "el"; arch = "linux-x86_64"; sha512 = "64f16763606d69a0a1fde2d8901064d9c64c44d5d1f0f791167e0223f9fc943eb71023f7fc636c978f56ab1c9354fe042530eac740bbd3dc78be82fa74873a39"; }
- { locale = "en-GB"; arch = "linux-i686"; sha512 = "3c3ec265945f796df2fc5d4ba35c32903534c3520629c952ccc984e76812041282b338e662c9aeefb87417c5ad01753acaed21f8089eae66464365caa2cb9609"; }
- { locale = "en-GB"; arch = "linux-x86_64"; sha512 = "c6d91ae956ab4698802f4208e381dd9d7310595179badd564b32d9fd7dd7f2735d9be4317b1c39886e7b8d6886c998e3c174fdbcc2159e5e6e3d62ce78f3451a"; }
- { locale = "en-US"; arch = "linux-i686"; sha512 = "f5f85a0c0bbe8066fc06891760113323b23de7d90480c1aeaac3f5fb2a9492792fb0de1cb4b7d7cbedc93ded0098afb5a30d144748a1bfc0b59481885214f581"; }
- { locale = "en-US"; arch = "linux-x86_64"; sha512 = "88d037587e5d80d02621881ce6ba4034f686b87e3fd25741127345b655edb106d5d43f5900504b7f41b5403389e4f8317d715e6fb3994425dadcd4a5e527cde3"; }
- { locale = "es-AR"; arch = "linux-i686"; sha512 = "3419e117a6c92db56be90d2511c726ba61606ca23ecc6c1d6939d2645a9d903459cc4400e229b2f5c59f5579eedf5d5c5506476093b864109796e619d3273a15"; }
- { locale = "es-AR"; arch = "linux-x86_64"; sha512 = "c073b5502f37837ad418cca401a81d2b72100e86a5628062f2a24f8a978ba5f1f71bb75be707e9078fdbb9de797ecebc3d17b0a09cde8846e6900297dc6ded7e"; }
- { locale = "es-ES"; arch = "linux-i686"; sha512 = "995abd683ae784fa337cb992b8741e729ea487e766895f226dbd37db79b78d9af0ed5cb3b06b9d50cbfdc9699fe06a65f6cda698661b74159fe9465cbc599a46"; }
- { locale = "es-ES"; arch = "linux-x86_64"; sha512 = "d09be3138272a7061b48ef71b02a4faa6ef1010df4a99387364dc89c329a173c9843c0a4a8ca8e035999b0c5d69e91b647e79240505a4e474612423e232c802d"; }
- { locale = "et"; arch = "linux-i686"; sha512 = "7d70752e672686602f94f80cfbaf24fe7e839b95a4868b1e88bd3a851a1aacb294a0ee7931ab5132dca7a06d5a4b2e3e1f1812af38f92b7d544ee1f08516f31f"; }
- { locale = "et"; arch = "linux-x86_64"; sha512 = "a54cecb455a6a294dc8ea6f55b150d13d96c5f6c0dbfd81065f96efa5b41859c82a767de186eb4d0329b103bb516ad9a86789c4101f7c9cb0fe1773ddfae27c7"; }
- { locale = "eu"; arch = "linux-i686"; sha512 = "fc813f13d74161baf8bd46bec0db69cfa33ba5cc4eaeb6b12f3ed48d294af973c35f1b8c03ea20ac254e00f2b8a30d0ac4a5e649998886b429e2d043f1755dbf"; }
- { locale = "eu"; arch = "linux-x86_64"; sha512 = "2ce51531f64afc7b578d9972225d95b371161ba758aca52b9a6328e4c50a3337a2a7aa8d1307de6a00ac42ed53351efe8c8e83caec8192ff1bc2897b679668a2"; }
- { locale = "fi"; arch = "linux-i686"; sha512 = "43d31ad2d6f59f17fd4704f8f8de089e90938454bd9b3755b30e50abbd18f3cd3ce4a4207c3cf5e4d70ddee73318643fc9913b6543a16989ad74d60e246e7392"; }
- { locale = "fi"; arch = "linux-x86_64"; sha512 = "83055313856408d29079e8feaacbcc777fba655ed5bcec8400807ee3a497276d1fe4a6c1f911098c348a3789cef53db7c172c1771608e0c7241ce3739114b059"; }
- { locale = "fr"; arch = "linux-i686"; sha512 = "170120a291c764280cdd00f8d4b2e59a0be31326c41943920e54eb816163b9182a531235aa96564e94db47716c8ce7aa87ff60817c262652822427a02dcb571d"; }
- { locale = "fr"; arch = "linux-x86_64"; sha512 = "3ed963c5a7221ace7585caa34ad58db2ee087d90ad7de649fc397f26d512e180c10c25588ffb13ab7fc363d1bcc44d4e82fed67aa0561222af9af87e12330ebd"; }
- { locale = "fy-NL"; arch = "linux-i686"; sha512 = "c59591f05938110429c2ef6d0751850f01b02c936e8af3ee9cf895af41a96bef9d3b9c62ef3af88ed8c2772094eeb85e6914351c8a3233a7800643c159b9aa12"; }
- { locale = "fy-NL"; arch = "linux-x86_64"; sha512 = "f90ad1d08c44380b97f79e5b771abcf2aab8f69dcfed718e3ef44e64163e85e63203bdda65f01a231bb63bb04a8cf00aa87141499366996c568cbf9897b7d306"; }
- { locale = "ga-IE"; arch = "linux-i686"; sha512 = "5449f8bbcb5a693f7c4d2f09a2e43b76a78aa9e5cdfaec450aebba7c11f061b6cd2e189889c56001304ae6ac8687b52275111dd39bc752885abb26add1ad2b84"; }
- { locale = "ga-IE"; arch = "linux-x86_64"; sha512 = "82c3cc95bb4ca0a3def0deb5ecae003229cd62494a896c8706a600f70819c1709ad4b7c35f3edd14dda1560a300b4626898ec42057efe1835a718fd976d0d574"; }
- { locale = "gd"; arch = "linux-i686"; sha512 = "ab4f895734cf6242efecf35306d79601bc2bb4d695170cf069cc740d49213828e86b3d26754c38438cbf4ada0abfe5195e9406658c4bc2da98583a427c132ff9"; }
- { locale = "gd"; arch = "linux-x86_64"; sha512 = "2f710c027b7187a2e668a236e2b967490ecdd4c66ab9f4fbfc1a609431ff3f998371e0f14c673ce0647b0aa7d8ea5b0e31cc88238b69853a178705c00eefdc82"; }
- { locale = "gl"; arch = "linux-i686"; sha512 = "7ee2fe3154adbb1f9a43a0e4979fb101205229e786b45a5edc5d9f39889ddff7abc45be73137e0df2bf789d0e9ab2b6f62e29a5a5a220a345d798a6fc48d009d"; }
- { locale = "gl"; arch = "linux-x86_64"; sha512 = "294ca5fba76da62ba467b75798e55480beb672405a675a0050db76b07c612e44617ba8b316afa47b8041ec765dc3067e3d743e229f49ff75a1a3ce810aaec9a5"; }
- { locale = "he"; arch = "linux-i686"; sha512 = "e91b8e2ec22e79d603d3047245d3f9da849f24c124f256dc993f6f4dd2f76c8c5b87a73b8b4c3152b7e5be71524ce7a7e17067bbc62bee57c0124e613fc71c29"; }
- { locale = "he"; arch = "linux-x86_64"; sha512 = "97c2a2d9186c1816e9209ebc91e831c1c705e00030881c5e86c1e30b31a1866e9fe3abc4f02a359782d537f25d147c0011a7a03898b54882277ebe59da25a0d0"; }
- { locale = "hr"; arch = "linux-i686"; sha512 = "5cf6afd2ceb62dbef77ff86eb995532901edc4bbd03d5e79916bef72d813e2f55ef40098c7029f7f380cbe9db195bca2a5fc0a7a1a561a607b38f9b32f6b2a18"; }
- { locale = "hr"; arch = "linux-x86_64"; sha512 = "658dafb507d9521dba2c6757a0c98e10f0976672850aff6b88ce4eb2b047cab9661925ace07b49b901c3c19759d76d62eee5fe0b1ac986c6da7dc82fa7cad2be"; }
- { locale = "hsb"; arch = "linux-i686"; sha512 = "37f582d813b991a25c66788ae013fb4cfa49ffd5d45da6f56c54c976e268b7418f25ad00cd7335238c16753fed4114e49ecadcb67ca26fa61094b72c74245c2b"; }
- { locale = "hsb"; arch = "linux-x86_64"; sha512 = "28ab2743f87ea4a240d09cb5eb7bd6fce168c44eec3dfdefd1345b9c819381fac1699d133fe2c39244bcc7dda796e76f4ce495f5e530098bf19d4929d344f95c"; }
- { locale = "hu"; arch = "linux-i686"; sha512 = "53312f4feeb4dc88ee102bfb8ff16f4cb67624b427f1852748eebaa1eb6faa5b66569e655f5f03a3c99584593b00d5d76f6e38ac473d589076e203da28d37ec7"; }
- { locale = "hu"; arch = "linux-x86_64"; sha512 = "1719e0c33584508ea6e5528a7dca9f94d3b546cde758bf6fede8346c66f6c2ec9c85d49667aebcf065c09a81e0e1ea6b149af809eb9584aacfbd4674c6c66583"; }
- { locale = "hy-AM"; arch = "linux-i686"; sha512 = "4b9f24ea4a3c53db1b667fdcb441f237dbe63a4a8ffa27c72387548369d1b56d818540f1e82c0121734009d3ae9e8bc266695a8ff64ac1f2aaddb86e56da0238"; }
- { locale = "hy-AM"; arch = "linux-x86_64"; sha512 = "4b3a6c97be1d38ed1e556ec7567f12af1aec054a76fedc74bb26a53f6185009d7254f0aecd8ff14d07553abe1e0356e443707b0d9800c7d19a8e883bee9ca2ef"; }
- { locale = "id"; arch = "linux-i686"; sha512 = "bbd6f3caac34e74469043a25935fdd4ee5cecf180025403ddf3d7b651fd52a9aad26dfe9f73cb1f4e3dde2a463d3a9c773fe08ebce42ed908ef107bde231c9d1"; }
- { locale = "id"; arch = "linux-x86_64"; sha512 = "09dda35699dc17eca61b063d53c9a0326ad34cd43cc2ed4e822b4597bd108068db6cbe2b6347d0d28ec34f1271012cc42c31ef471e4f4d6cce211e5b31de33dc"; }
- { locale = "is"; arch = "linux-i686"; sha512 = "b08603695e3539619b7450d03c88aec309d2f9b938b89455705fde1c75540e1d14a3d3111446aa6a41a8d271c5633b6d14861540751ddd7f45dd936322af6bd4"; }
- { locale = "is"; arch = "linux-x86_64"; sha512 = "7ca4d5ca884713ab1bdcbae470be7435f7c20d273a50d6ff8304374f5a8c43d06702a1690080a94e28238d9afc4d6dfabc170ed842bf8359ada774a8e8b2d474"; }
- { locale = "it"; arch = "linux-i686"; sha512 = "a27de0ec1735dc30e7c6a06bdad5fd7604f02446d8a9838251a6f6a0f621948d05beebb8e2f308ebb2df6207d3c6fb17dcfe5d1c2c2a48b3ca826006527271ba"; }
- { locale = "it"; arch = "linux-x86_64"; sha512 = "dcf639e215e8941b0fee2c20471840fa77d7b9684f2e196042e201ae7de0b4aa8fabbc712e2217cf1c1883c78415b7839f8669cb897cf345ae00296b887ffd59"; }
- { locale = "ja"; arch = "linux-i686"; sha512 = "497aa0048b4f53913e3a4461282fc809b99e7a1c43024dc937d5defd85e29b354290bf4962b200fdaa4dc2871f24b10a0aa2401e52b7b47a8c16dd32d49e2311"; }
- { locale = "ja"; arch = "linux-x86_64"; sha512 = "61433f6cda12b4d7843c76f8a3a7a2fed3d08dac0c7df00fbef0a732df65afca595320ac9e01169f3ab277bbc0074e589b12737c4d2b9e031211e1aa10cfb18b"; }
- { locale = "ko"; arch = "linux-i686"; sha512 = "d9a3538b444821d14fb8636d7282001a8130aea7437b8a919d71b7261c445443113dc1e45bf8ecce20679b4995175334918e58ac7c9d63ed40773f901c8168aa"; }
- { locale = "ko"; arch = "linux-x86_64"; sha512 = "07d8661036b0dfa7390a940f879c961d25d08dd7eb8ab19cf3dd1964d44f74117bf2e8bfa64697d9576851270b5cf411c1660db9f7ce988970650b5824f8da42"; }
- { locale = "lt"; arch = "linux-i686"; sha512 = "cc583cac7892ecc6a5c32a44761750efc9d566abab65fbb802f40b0f23b60099a0977b66ff1869db8723f8956aa370e1dc6a1ecffa739ec064a0c270471ba0f6"; }
- { locale = "lt"; arch = "linux-x86_64"; sha512 = "20e7619a4f16492e73ba4576c6be9228c2377a57300b48fee5109dd21771f33200a9127db6215cb078cf1e76dc1ccdffd72dd361ebeeb76f1562fc4e82951e47"; }
- { locale = "nb-NO"; arch = "linux-i686"; sha512 = "c64ceff628e315d7bc4991df0e7e5d872d8f3111948461c26cc9535977afb5c5123e3d8b575478ab0b1ab0fe07fd21c3484109e46b0407ad86933e082b29e491"; }
- { locale = "nb-NO"; arch = "linux-x86_64"; sha512 = "9caf7fc7d5a5d11e532f60757f0bd6000d96ac42bf67c2ddf0a018bec8299b2f1e28cbeb97d862254a5036c44871ac14d059563b3b37d41efc5773e4a300391b"; }
- { locale = "nl"; arch = "linux-i686"; sha512 = "3c5f36dd64d2f170339e7762e357fa901547891ed4f278dba8b835fe8be999e93869682747463f9364ca9b728e3dc63639b992898bd0cc1eb5e70edf0b9f2628"; }
- { locale = "nl"; arch = "linux-x86_64"; sha512 = "17881c4a3771b1a96659278d87b242dcdf4f7fa85be100126c246babb61efd34a8e1ca45ef2f5501c5369f2c741ff44cd2d968b3e252b0a7c8ee2d3cfdda7bae"; }
- { locale = "nn-NO"; arch = "linux-i686"; sha512 = "c28c62615b8c882373e2fc774733982b990b31ad291b6a48ca0d1f3583063e2c66b0dc7b4b9a17246e252255e75546752c84ec015c913ab312d573dcabf9146f"; }
- { locale = "nn-NO"; arch = "linux-x86_64"; sha512 = "0b5ece430c8511cbdd7121f8f2128ece8cbfac954f4471e5358b425cfb5c7f09c925428fce03fd411c7d5d3258f2fb4e1003be3404deb0ecd4d79d40dac9fa7c"; }
- { locale = "pa-IN"; arch = "linux-i686"; sha512 = "16cd5714f216637dee401ebf3b081f61400a05eafb3ac35b1db35b9afa4736e8334af7930fba6a87d2a7ce042eee235b3a57e1abd03964d28dad23fdb547a31d"; }
- { locale = "pa-IN"; arch = "linux-x86_64"; sha512 = "865044c92a277fcde2fa9cfa21266f1737cda59f60cefaf852a80e0d1960bbb9af500b74c591e90dcea43643bc73e1adb726488a51e29746978bad84bf9a867c"; }
- { locale = "pl"; arch = "linux-i686"; sha512 = "85ccc72a9d4421d6112e37fb2664b3189c6fef3efa3ad86d32658e40b102541f1fa345810d44e0e19b6c757a31bad934fa9a7b1df6cdbef7c6c0fb120dc38505"; }
- { locale = "pl"; arch = "linux-x86_64"; sha512 = "08023b730410b4be5df7ed15261e1c1346be56e58645fc476dac6228adc21dae336b25ef11b9adec7ac8b9b1f7f942c1c579118a99bb6897099948bbd1c3f45a"; }
- { locale = "pt-BR"; arch = "linux-i686"; sha512 = "84e80dfc3bd12f4900205dfbf1c4d20b64bc2ea220275c85f0ca2f9a9a2caf357ecdebc0d72788873524ff16a97e7c24afa3aa69314553cf4e693618334427a6"; }
- { locale = "pt-BR"; arch = "linux-x86_64"; sha512 = "fc6de72f9457a6967f0ae18e5a71bd7b463d8c4a7c091795cac8f676125e580929382862d79a8b7659ade8ff8f87478f705c057270d9953900f36fa467dad3b2"; }
- { locale = "pt-PT"; arch = "linux-i686"; sha512 = "7f454b2c5dfda9518b32c117955f04a3c582ce186e97146735891a3fcbd5873db56cd3495688b63eb59665bf3055d0db1ca426d5b5e98f559faea2da10c7daf2"; }
- { locale = "pt-PT"; arch = "linux-x86_64"; sha512 = "f5f397958c9c10869381f0facb64530f7c3d1e4c669ebb0e2b32fccbee560b742b7350c9c314683f949e5c9cb0161beae4e706243f1214f0cca84244a7d2df84"; }
- { locale = "rm"; arch = "linux-i686"; sha512 = "90aed589668ca02cd33ae08d430871b16ac5778c43f042ba9b8df7701b074636c61fcff059471fd9c5796df3a68d08cfcef190790fd4059fa47c118971882648"; }
- { locale = "rm"; arch = "linux-x86_64"; sha512 = "eff8e94a8779771f66571febb9e793653484b45660285107020f871ffc70ad935a3fc68ea3f8eb942b3b7e05533c8235770d1727c2a43b27201872638685a464"; }
- { locale = "ro"; arch = "linux-i686"; sha512 = "9fb422f3eff8417db103f8481acef1bcbf794e6e05bf831aa6b8bd839f42fd4baca1aaf999249e1776e9758ef041494ccb3a93c65c9060e240a73f77867df262"; }
- { locale = "ro"; arch = "linux-x86_64"; sha512 = "fae562ec1ce02c4183f971f849aa904adc719470cfef55ac7f79ad8a57a1d31f9f926638565c9ee0e0cba51507a827e15a130f54406c59b7c0ac8fcac81fdc3c"; }
- { locale = "ru"; arch = "linux-i686"; sha512 = "0039d541632368c41e2ce7f89263c6f6a6adf330ebd6205e637eca43fedd1a06a20080d621ba19163a0b9d4a91fc9a4b4b5ce50a694cdf985f36d9eb41c5311f"; }
- { locale = "ru"; arch = "linux-x86_64"; sha512 = "cf289f78ffb353457eacaaea091ababf4b284cf4caa01f50fef3ae36d8c67f5d0786f366fcc1a35d231bd8ec1077392be662442852791337caa80a0b00f7fa40"; }
- { locale = "si"; arch = "linux-i686"; sha512 = "9db7054433c6e06f8188478ee639a7b9d20ca9f868143de7861eb804276e5f620736f1ec44d21017eb126d62814cc276d75734ae32cae590194558bfc41375ff"; }
- { locale = "si"; arch = "linux-x86_64"; sha512 = "258d1db736872157b276c67e7a7c5d5e89740c8e19de09091c05d2de1610ae1e50e17f8d020ee74b8b9e0ec70bc419b357289368c90de5b6c6067ba692564567"; }
- { locale = "sk"; arch = "linux-i686"; sha512 = "8ae01308c4013b53a009c95114fe349cee67c1bd918e42da976994941aad6ece4b285168ce26634a0eba9a589a1e0a9d9a6fcd742113b69220ea504cb076e547"; }
- { locale = "sk"; arch = "linux-x86_64"; sha512 = "9af3e23397534c6b72d5b720842ab6aa2df5e7c62134947555dea0837caadcaff57fd4fcfbf68d623be8875940fe20983a9144ef9f1ec0d228e8ac956ca9b708"; }
- { locale = "sl"; arch = "linux-i686"; sha512 = "f58e111856ab370b5720acd96578874dcdbc0913cec8f5f6956e33802f2fc7648ee39f0d0b8df9fce85d6df42186ccc0df070afc597f032b3f30af4b00074c1e"; }
- { locale = "sl"; arch = "linux-x86_64"; sha512 = "1dbdcf95dfa3a6148c23d5e5ef5b2520ad3558f8c6e528a6a1585d57545f7f3ad81761a0c4ec04794753ddffc089135168dc5ec82b0eb8699f09e29722f90aad"; }
- { locale = "sq"; arch = "linux-i686"; sha512 = "b7759d1b50bd3700d717c0bfe2a3b384aea864b2a62f41e04aed12e5f24be9ace991f8e2a142e1c1c329818fd3a0643f538412f03999dc7d1cba5a87a82c3bc9"; }
- { locale = "sq"; arch = "linux-x86_64"; sha512 = "cc55ec09a7fbd1a798bfb1d4f0199ecf125329873515c549e6a701e3bdf0e0d6d444be203c424a67e27ad96f2e486ac9b823e6d286b0699adb8812f43ebd6437"; }
- { locale = "sr"; arch = "linux-i686"; sha512 = "65562e1be17a16ff6d09e1f6bc0d6f9b0fdfe67de8661992f561b57778c52e49931b8b1f9b658c65c540cc1e3596ea06d3ca5da644b39c05b7964c2fd6927fb3"; }
- { locale = "sr"; arch = "linux-x86_64"; sha512 = "784cf692425ce351d5fea5dfa33f80eabe0d996a6158ada1c50d8937571549f06cb52eaf8faefcc73f39eeb2a4a79b5fb9a5c4b221796c0da1b23fd3aa36f74f"; }
- { locale = "sv-SE"; arch = "linux-i686"; sha512 = "fa7dd0bf6440cbfc4ed01f34be82c86bae770c7e8b7ea84ab4ee30ea087c4d3fc10c09f9c8e8b2d3dc1b285ac12db611d18f1cab62411b1e4d2ff16edef02a45"; }
- { locale = "sv-SE"; arch = "linux-x86_64"; sha512 = "1bbb03695bfe04c1dc3cac1fd37b24910f746a128efd10274db4b7e8025ef5270a66c344a2e9dacb88b6eb2a186e10bde0fa0ba41a73a241d548454806d049e6"; }
- { locale = "ta-LK"; arch = "linux-i686"; sha512 = "ea498d149d452321f98de5f6320f0980c22cf9859e332e08e359e9399caaa1e2b0d2d66880e045cc1d17636f0821386be9ddcb510840c7d442f1eb1b4051494b"; }
- { locale = "ta-LK"; arch = "linux-x86_64"; sha512 = "055b33db08bf48e016077242e8d52a1f0fa72a36e72bcadde5429eb3ddf39898ab7514d70173b4f8b765014d984bff1180da7e57e6235bfc41f5ba5e502fb423"; }
- { locale = "tr"; arch = "linux-i686"; sha512 = "a4d04d2430935904377d995646c84acf75d2c0b6a05a7b4935ad49b89fc5f895c6e9b772ad09cca7d9634614ff685aa268f834e1d09dd0d5d4fd33402c56bdd5"; }
- { locale = "tr"; arch = "linux-x86_64"; sha512 = "bf29e50b724fadc0ff324664ff191ed49799bd540d9e4483651caa87a5cb6e3614b87a5e3cc4957560627698e0991b97c3501f4fe8bbdc87b1afa5018e9d6e02"; }
- { locale = "uk"; arch = "linux-i686"; sha512 = "44c9a47daf570f6a669210ec8cb883c5cc1cdb614b7fdbf98a4a087d87f862cf00695849ec73c9d79c99008ee98e4b1ddc96ac050ed5af7ff20db52163026188"; }
- { locale = "uk"; arch = "linux-x86_64"; sha512 = "0d67fe5c1ab189b25d0ef22b3180b1b67139cca94a02aad622b5b000e212bf88b84b65e034c6720b41bfeb98e4cde38a8f4998f40661f7a0334f5df743de2152"; }
- { locale = "vi"; arch = "linux-i686"; sha512 = "f8fe254886133e05a297ebdaf97de0115595c5a6243e58e7b3057c1d007c75fb85ec78e1942c7d005d5fdf218b52ac9418f120788e2000c121168c7c82f4b4b7"; }
- { locale = "vi"; arch = "linux-x86_64"; sha512 = "7db410ee86ae7810315b8349dada32411fcd37bc5670e1aaa15be15a00bcf40280f1d4e94aa934ee507baedb1a5b2d096697d6ae7bba953263c7b6943877ab08"; }
- { locale = "zh-CN"; arch = "linux-i686"; sha512 = "f7f0d6794ffa6128941cec38266cf68c9718d702a261808d1f689adb34bc03cfda2c1e30d496974f1d2c98acde2461c17f99691a8a46f52b27ce02123e1d52d2"; }
- { locale = "zh-CN"; arch = "linux-x86_64"; sha512 = "15239b95519c79b16fc09f6ed1058e48aaf932a796661c800371ba69e67f7e9712d191019b4d8a4dd32a391f688fe023e0e9b284a58de7d8918a198c24c63d08"; }
- { locale = "zh-TW"; arch = "linux-i686"; sha512 = "abfa901719a55673831c41ca5363f993e14b555766fb63d6e0e33def7bbc021fade2ce9b34c8354b8315c614114be58c0a19c9b74766400ca284fdac6057ab5b"; }
- { locale = "zh-TW"; arch = "linux-x86_64"; sha512 = "66b3b31e00ec4ff8dc9810d07e1928554f78535975b54f1ac436d7b9eeee3b6dcf2aeb485e80f2d10b07f75eaffb2fdbd7be7208da67bac60515320efd5d60df"; }
+ { locale = "ar"; arch = "linux-i686"; sha512 = "fa7457cf48ca68f559b14b79acefe90f8d449e7dd7a32a97f728ef33b26e3f513064bf733eed77b12237902491852a66fce690b1cf1de049e2f09d27416d8786"; }
+ { locale = "ar"; arch = "linux-x86_64"; sha512 = "6b2bc528ef7401a5ca6d6c5e68eaf68386a706925a3087ed16b4a2560a449ccba52c8dacae39d9a761323cc46f934ca2ea3c07bc5ef49df07eff9760a8a0ed15"; }
+ { locale = "ast"; arch = "linux-i686"; sha512 = "2917644f88a775441634a8b2dc214e29a34eb0cc7ad88c423a5cc02f7603cf321392c7fc3c7ce97231835fd39d1d8e264d8a9fb084651ec722719d5110d83cbb"; }
+ { locale = "ast"; arch = "linux-x86_64"; sha512 = "d047bc41a3ee0a444c8e4870a986c0068a67deff043bf96a9ae6338247461f2b51ecf02348c4a5b5e2ae4f68f7bd665c64582f0afc45bd480588cc82cdebc1e5"; }
+ { locale = "be"; arch = "linux-i686"; sha512 = "830fce5b2361acef206876a43af60963ddd720ad4c49c30936b0231c94096c5f43fb9479679c0260846a28a315f359ee2cdcb66e1f2bce0d222f1495b1cf1f58"; }
+ { locale = "be"; arch = "linux-x86_64"; sha512 = "8ec67cd108abb51b86fb8cc528a6bd43628847e47e2a7e5ffe3bc971b6c89aa0c7cbce2ce0738a7316a54c4ab376502187ddf5be9d74db31985187b7e6ae3038"; }
+ { locale = "bg"; arch = "linux-i686"; sha512 = "d18965ad8f1456d688811e972b09e293cedaa98832b4d5898d62a80dc9cb4799d898a14ad968fc2f05c3e6dcf3fc480d21d1d8de63a4ea9c10b8081b28c321fa"; }
+ { locale = "bg"; arch = "linux-x86_64"; sha512 = "a7dcbe29dc4b28b3273693bec60f9ed66d1eb81899a049f7181271e84763f13817f97e07a9696ce803d151b382f3339f3b0d2b1bdfc5bc687c3f6198627e2fd3"; }
+ { locale = "bn-BD"; arch = "linux-i686"; sha512 = "3919ffd44cb501f5c8d273651e3bef27203270ae269e8682f2c749a32eb6a622a8106179cb9a493f7e62f255da62381ab497e2a590f84bd207a1bbabc039827d"; }
+ { locale = "bn-BD"; arch = "linux-x86_64"; sha512 = "8e4d026bf30a0fc69eb2c7982b3866a4745f506f5365677540e050cba81a569df1b367c42b9bcaf58ae20243a82a9e7d006c476a83ecc29b4b77f042f8aad5d1"; }
+ { locale = "br"; arch = "linux-i686"; sha512 = "cd00e42cce4a5efd18ba5b9a784dc93282c200a43796b826cc05eb4858d44775df827dafcda0c6468d17ea5f7f930590db1546b544fc19ad52d9d5e1cf7c522d"; }
+ { locale = "br"; arch = "linux-x86_64"; sha512 = "be84c92859014a055606588fd7e9c8d8c13fed8ca253ccaed560a2b457305b487cb2664df8af7416220349a85a4db15f7420674ab46c1ba8f8cdec03f0002d83"; }
+ { locale = "ca"; arch = "linux-i686"; sha512 = "2e678aec4efde29b659f1e4de071f7b5cf2fc56b28b362bfc7fc2a3ba8ceaaa53a3452cb9c2a565ea5bf83304be87fa18dd246d2207e5ba6f5ad16a0f008ffe7"; }
+ { locale = "ca"; arch = "linux-x86_64"; sha512 = "7bebca69abdf5510793e376693d82e626fbce49d01fc66d28bc53ad51ab70fd9432266e2cc1b0d83359fb2bfdd075daa181c66618f6094996355f6cc0920b239"; }
+ { locale = "cs"; arch = "linux-i686"; sha512 = "2f8d5faaa0952ad37e3777a2d15e2a1ac7aed1ed275faf909e479f56e4ee2e9f385aedf6b08cdb3abd9e0830949b6b6b1048e19ac489d0d0e881595b31816068"; }
+ { locale = "cs"; arch = "linux-x86_64"; sha512 = "01e807c22d90e07503b92e3821ddf91b509763d9c7b2ebc5e21ec9788333086de25508979422446a2e0469be611f890db682757ddebf15e549bb8714f40877d4"; }
+ { locale = "cy"; arch = "linux-i686"; sha512 = "e87718bbd286e1e2fcef8e114aa27b81a1917b37cba996c59ddc30d5300bf53a4e3662d3770f70362850d41e564887ba510f605412e57d8e6510f02e5a4d54d8"; }
+ { locale = "cy"; arch = "linux-x86_64"; sha512 = "f3287f4cec54f6814a678dfd9875952d5109716cd15d097ad5589fb2bbf75aabf2496cff6d320929c825b1a1e61d50f060b9d9fd7f7011078620995570dbe88a"; }
+ { locale = "da"; arch = "linux-i686"; sha512 = "6cc8e7c2c3aec96dc9639a8663915db2e86437b8b9a598570946b2dc63c9d261a257dcba3359762668683a67cf39d5448e0203eeeeb4da41f6d5df51c955da3d"; }
+ { locale = "da"; arch = "linux-x86_64"; sha512 = "bcba101b8438ff5a61ecb76f1328174aaaf7dccf5031a836cfcd8e597db8d0b120623e15a8c8231373732b6796015ed9fe212797bf0f664055d3be3755bf38d5"; }
+ { locale = "de"; arch = "linux-i686"; sha512 = "fffa1b9a61ef75ac077bf03f85abbb5a40131a9a35a49835ac40b424870b773a42f8fb534ba5757da7c0bf6781efe39dbe2942ddd436860efe5799170952dbed"; }
+ { locale = "de"; arch = "linux-x86_64"; sha512 = "db88539be38c0a62d9c56b5295af2bb67d342996c85e788a17fe2a74e974a8d196765343ca005207b8b1ebb8f76421640dc7cdf36c51e23a4bc03edfbdbfe73c"; }
+ { locale = "dsb"; arch = "linux-i686"; sha512 = "2191707e5c796eb5ef210798c3519004f5cfcc9be0f56a22c03eef52a34f04f011e556894dc932467c142c8ec876105cab628c947ded0e11d7a63733db83bdac"; }
+ { locale = "dsb"; arch = "linux-x86_64"; sha512 = "07a9bb323db8f626ff0614dd8cfbbb1f0c8d922aac4c7ce21770b79c40e79ca09c798903998d44c236cfaa76daaaa94814bff697d34aafa417533078405cef1f"; }
+ { locale = "el"; arch = "linux-i686"; sha512 = "4325888c1b2585d7f2bf9c999407dba260783570816b0edfadd90bdebe6d6db637f9aa9589f2b5824ab6e833c4527fa760e177ed866ce302fce85d9b9daa2608"; }
+ { locale = "el"; arch = "linux-x86_64"; sha512 = "bbb2971ba5c3ebda94312f740c54ef0b4b4b4f2311d4a017e272260945a9f063eb4d341857919da4107f2207f3265df9439aea78d636d9c357fd79a11239fd9e"; }
+ { locale = "en-GB"; arch = "linux-i686"; sha512 = "507f8f79718698b9599d52e7b5a4a9157c05ae1642622eff1b3547861532ece9727b3d56f67a20ca38df0f32375beec65ec3c7b1ba929799ddc057b4b95d1b8d"; }
+ { locale = "en-GB"; arch = "linux-x86_64"; sha512 = "bbaceccac3ad841259058c738ef2baef780e96177b3b6a635fbc8a18de53137ec6831729b9f98bcb6b4442fe58b5dd71f526a9f0f3b86231a41bb0a48ea4c930"; }
+ { locale = "en-US"; arch = "linux-i686"; sha512 = "28b5d2699a65792457414d178bb3bc4d73abf911860ecbcf75bbcfae91b24a056fd67d6aa4d50e4b3003ef84c63750050e16e74c92b690fe9b24347de3ad54a7"; }
+ { locale = "en-US"; arch = "linux-x86_64"; sha512 = "08034ab8d833f7a2e63a7e40a56dfc78a2dd762e73d1a4b8fd0dd70ad23da5d525771846f47c8e7798517d1f85fef9bc2a8437af3d6ba71d7402a9f6a93d5679"; }
+ { locale = "es-AR"; arch = "linux-i686"; sha512 = "3f08fc47b03cf095bcfc0af78064fd7179006a4b3240292fbd109b2a4c58c55719328eed631a67ca7a3f0f68ac8d2fcc577596bf532ad95442fba728270ef28a"; }
+ { locale = "es-AR"; arch = "linux-x86_64"; sha512 = "cfe7e9f8dd67fb52462f840048115e54e5f789a34b63c5d7ec592ccc3a2b25220a66fb7499a50f32539d61205fc46199c0167ad5a75ea46123b96070329a236d"; }
+ { locale = "es-ES"; arch = "linux-i686"; sha512 = "d2c4cc32d2ae7bfdde1870686675f644f4eb3f2bd0870fa72986f5cef2cc3c45b8070b6df3196e67275bc67c1ece63706f1fcae3b89d80fea8db5c34b9f4b638"; }
+ { locale = "es-ES"; arch = "linux-x86_64"; sha512 = "6f4d295638ab8d16e1ec1db176d9a60946ee76cacb21c7e10018c2b908e5dad0527705d37b7050d11587244e922fa9e218482fcef40c3beab06c07db3dd8ccfb"; }
+ { locale = "et"; arch = "linux-i686"; sha512 = "e352de0fb13570e5fd39bae39ea7dfab746529e8617beb8cca51c0a6183614722f62f93e91065c74fbe24e0cd91c03428d76c6e70369a60a64957ebebd1052d7"; }
+ { locale = "et"; arch = "linux-x86_64"; sha512 = "583be1a8c7f1e2aac3242371ca8f34710510c6750b95f933e1574f9ba0e2a6ad733de4c9cc503909a063250d969aaaee6a53a69aae0c502274f5b0d43fc33b43"; }
+ { locale = "eu"; arch = "linux-i686"; sha512 = "9de8f87c48c65535c7b073ad90d9c1ad3b7f4932124529ffc1ece36175e5a139d4660efc4a850bd0034d885afc7d7889f137b10fb5972377a4ec97d6858c932f"; }
+ { locale = "eu"; arch = "linux-x86_64"; sha512 = "101beb0a0dc8f33a78583f9b15036815b030429d471ba0c8852dde7a2e2c91bb6436c8dd36f39e4eab1ecdb38cec08c7ab88f4649b5d25a246657d358984f7c2"; }
+ { locale = "fi"; arch = "linux-i686"; sha512 = "9670d209fabc23fed2dadb873335e3964b7107b67fbfda39e53fa28ff1d91fd617f73d041cd9d4d0b9dfbdc9e619f69ce05199f7afd383a4fd6717b9f912dee9"; }
+ { locale = "fi"; arch = "linux-x86_64"; sha512 = "3c2b135437a80047ec04e9995d119b32e948d105677bde0efe505272a0768d860e8b68dbe487bb81c38f9eee94a7bcc23c976a3dd614300056ec578bb5dbe7a1"; }
+ { locale = "fr"; arch = "linux-i686"; sha512 = "d14822f3ef67082a77488ee3f7b6e3294a01f12e48cf037fb2b41ab9c5e4af01f1b0a76b29673c9196f2caa16dade84183d69a6bbf1dd618e7742f9e1d903477"; }
+ { locale = "fr"; arch = "linux-x86_64"; sha512 = "e1fdb863309bcdf382c3533b15ff1c3e4e9ee6f4c0ea097790c432d302b4a0712d00b1f0851dbc4c4e9c3758f941eddffd82dd1d3912dc76afc20e05083b82ad"; }
+ { locale = "fy-NL"; arch = "linux-i686"; sha512 = "3881348184cdbac93b452e9f5c9ebbf14c542dff68cb500c82204dec42c3433e3b356f2d332c1fb5a4f6649e8bd5b03564bbd1f75bb25c2d946c72ba955c4b63"; }
+ { locale = "fy-NL"; arch = "linux-x86_64"; sha512 = "3182f39c26085bc882cb1a391c63f2ce58a8ffcffce4ae1ca9293a08e572d888691cb2968d93caee77576bc7568a0ad67f0ccb6815dfffadc9f8f798343c92b2"; }
+ { locale = "ga-IE"; arch = "linux-i686"; sha512 = "a653b578be20b8127de26e7c8ac90adc04024cd108e078b5a5e2e7634d834d76f9227341e52ab8b72fdc5f8c11787405eabc19403922c854f0d0fc7e9fcb0774"; }
+ { locale = "ga-IE"; arch = "linux-x86_64"; sha512 = "28dcbcefd11807482becc961244f58520498e0f9540f28c1e74d18f499cf5a209d51599783b8551ee937f228b406bd0605adef4146e29dccd8ccf2e5ef155a2c"; }
+ { locale = "gd"; arch = "linux-i686"; sha512 = "2b39ed0b1533cce97f4c4e5663ffef0fc88611334cceeaee0687ccc87e8c4b0f58afd9d826e7e9b66634b51249b776820cf03fc841e739ff3504eadc02597dd5"; }
+ { locale = "gd"; arch = "linux-x86_64"; sha512 = "525f632482577a3dcc2668495ad8c127bb8bc06412ef01ccf0188c1dbf735e73460cbabac439fc3dd80cf70519c45a439897ef91a1b32208d527e0b6487044f2"; }
+ { locale = "gl"; arch = "linux-i686"; sha512 = "232bbd56d92ce7648ba57a061d8154b38bc6068dbde32b9ef17199d3a8bb28e1b0b384859d99c526fa96fbb35405520675ab3b45adc90caf125ac813bc77b5bd"; }
+ { locale = "gl"; arch = "linux-x86_64"; sha512 = "5758ab0d5a6733395ba62601735193073fcee47ba7c3ab24d7031ce87447fb9018264bf3df1ab715ea786beb63a9d479e57217d56477d987021aa482c7b116a5"; }
+ { locale = "he"; arch = "linux-i686"; sha512 = "dc7cd600a93276995634303cff80d77724b56f0b7ff2fdfe8fe7da23d57d5f4f3d0e0169508c02c9ac57092da58d9ac9e3646f951ca4cb1fd398c70196fc6405"; }
+ { locale = "he"; arch = "linux-x86_64"; sha512 = "bdb385f4df861b1109169e1819860d46e8edf4d58588d4cdce609387117adeafe35e8bb17a0a2e43bcf12b1bb2244f089f3a1669cd69bb507434da202a1c7e15"; }
+ { locale = "hr"; arch = "linux-i686"; sha512 = "e7dc17107f762128bac6f0e173ceaec6a9e910dc84d486a0c9447365f1df07fcc1379dd2f05416aa904637836deac5a924f704396ab2af149676a6b1d075c52f"; }
+ { locale = "hr"; arch = "linux-x86_64"; sha512 = "74600954b56b03d4f2bcc71b32f6c8a19be483af16a7cd2b841fabea6eb042ded21afb1c196aa9bea97c81aae1732d7153e8419f97f439b44570ae53e53f88ea"; }
+ { locale = "hsb"; arch = "linux-i686"; sha512 = "d42d5b10480100a38d2fe275be060423593f54f9aa6cda13fdac96fca9a36590dd9bb8d1638cca935faedbd09bf2435c0a2858ae9c2ce653af7b2dd183f46f29"; }
+ { locale = "hsb"; arch = "linux-x86_64"; sha512 = "c41c5b57d7c170c54cd0817dbe21be8ba9e94b99fe28d7478ceb6545c6bf64a215d9ed6c66f99f116f43bb7b442ba6765613c15d14648ff64be3c0c5d7a6c763"; }
+ { locale = "hu"; arch = "linux-i686"; sha512 = "d2ee002d390bf44ecdadba86ece0d77bdb4ea96a69a79dac4064a4c3f3244c9aeed95df4a1101535fb02225e0305e1d7e97389d4419574ad98d9484237aaff84"; }
+ { locale = "hu"; arch = "linux-x86_64"; sha512 = "aca465875d8f3cb5815dd2de0546b7a822b55090c78f049d6d3a885f29c90fcbc437f0b7184e8249bb9c8dcc1ca4f146f1cf0067a751590df2d8c5fe4aeeea5d"; }
+ { locale = "hy-AM"; arch = "linux-i686"; sha512 = "567cba4a91dcc944e1922a429c8b328fc3b2843105056cef938a97c2ba73806f0fee2471b6fe6898856230c54ae0cb6110ebb249eaf9363a0beb35ed2aa0daba"; }
+ { locale = "hy-AM"; arch = "linux-x86_64"; sha512 = "34bf0a6638822fd1ea6c1a51e01d0d2f370202c61bb5a728abbeb2c1335c9130f3a4fbb7c26f9cb8025849aefde09eaf58567c7aedfd7d854d7313baeb8fd698"; }
+ { locale = "id"; arch = "linux-i686"; sha512 = "9dd1e0ba44787921fe8fce39f430575334e61948cbbd2e31923c67779c795dc0fc64cc0e46d62e3fa749a3d6cac12c3cb54c3f9e62e02930c1f4fd9a17fa50b2"; }
+ { locale = "id"; arch = "linux-x86_64"; sha512 = "78385b8276c5a9449d34a0233b40280437dacfc04a9d5d8291ae8603ee5b89337c5b53d4da80f41ca8c7153719654d6506027179c4a79575fd555d9dc8740d4f"; }
+ { locale = "is"; arch = "linux-i686"; sha512 = "02bc577e3d696735a280079fef84361d556a04c5d3f11f5af93f9ec5220ed729f237eb67120739192dfeedcb4570480bc40da9c413ca2b7f9023a5742cbb2e4a"; }
+ { locale = "is"; arch = "linux-x86_64"; sha512 = "5de6270e4dd79f402163fdd724fa0987563c1f474c54b555e84ebd94cdb865bd890de21e3dc44ace9dc2bcc70fb182b78752840b6860a6f0494fbfadf4f705c6"; }
+ { locale = "it"; arch = "linux-i686"; sha512 = "d81131a4322b0a069f3f914d394f8400b0d532aad4f1a0316288ed00df184798c5c61484cbb50a134e7b681a2f150bd04416147734f0d73731811349e537a2d3"; }
+ { locale = "it"; arch = "linux-x86_64"; sha512 = "7c9ce8e652dc994ee1155e4d1d3375ad093d8f684c422157a5c450edc3701151a1ca8036dda5f79781860ea1e138960266a7df77c16770418f4cb8327e2a2767"; }
+ { locale = "ja"; arch = "linux-i686"; sha512 = "6b96e8bba64fb004021838e41a36f13469eb48cb03659bceb12b897dd09fdc44f32d279e71e97b146a77fc0433cd85eb38449bf666355692a25f39eddc2775b8"; }
+ { locale = "ja"; arch = "linux-x86_64"; sha512 = "90c7f76fecc1c9eafbbd7f2f935a006266372d4192c2382c447b52a7993b650b6bb769d1f2f067540f038588b862a82ab4f1dc3b8a7c2a484fedaee55c82889e"; }
+ { locale = "ko"; arch = "linux-i686"; sha512 = "c2e509fd91664c9ae9d12ad4eebbc875b96c3b7124b88373fbbfb8ef3ec45b3525e8e9c6a295680c583b55564ee26855f2d607a661bfce9d9f57acdc4b90a3cb"; }
+ { locale = "ko"; arch = "linux-x86_64"; sha512 = "b5fb1e955dde624bdf52a58d5ffadf99cc7fb0a0e757d236c553675aca14fbc942d420a63c91f64e584486fda3e0ecc39c62dbba6b3a62910d01447d7cafd4fc"; }
+ { locale = "lt"; arch = "linux-i686"; sha512 = "a24deedd6a2ed118cbdb9fc66c17aeb5756d8bf3586a096164c0c1841e1bd7a4b6179cacff3f058bbc9bef40186acf3833a5b2e75aeca8ee525302953fd7ea58"; }
+ { locale = "lt"; arch = "linux-x86_64"; sha512 = "f4e0a5ec95a30f04a8ee84dd1f4f8bf7427255d382c0fc6a35f63a935edf54380dcd73bca5329ea01147e89c4d3faf30582412618e93a543643ee5922e9044b9"; }
+ { locale = "nb-NO"; arch = "linux-i686"; sha512 = "c10d7ce6f66d716c550f27ba793cd6239d98ef7fb1dc75605288f426bb2fb65357af95134c4c2241f0438ac90995f666a488a3a61e7696318180496bc29cc94f"; }
+ { locale = "nb-NO"; arch = "linux-x86_64"; sha512 = "a722d43addca22cfc791da37de60d5ab96e18d66fbb0d8b4b3de9f08202b01bec8c5b8300404df19689d154249d80b0f84a6e09335f607c74a7ee65f64daecee"; }
+ { locale = "nl"; arch = "linux-i686"; sha512 = "030da83ad81fcb1ce7188d8957fc0ea216372aa4e1fd6fd7d173ef5e329d95d8cd61d1ec9db3e28887d2f949056172644b0590e05815478abb42427d0ad5c06b"; }
+ { locale = "nl"; arch = "linux-x86_64"; sha512 = "6ea70e3fedc1cf1ea6f75ce9be7c8a7a6245e167f65baaabcdfd3194e70ca5474766e9ccd0d8180270b84c78697793a9af5b82a8f7a773c46b1af0a025382a99"; }
+ { locale = "nn-NO"; arch = "linux-i686"; sha512 = "354bb0c0447c8e7a54e8e8218f659f4810a6e2848f85c482cf289fe77518fce9c33bd817019bf089f254f71b141d65061c2a690190000c968badd939feaacec0"; }
+ { locale = "nn-NO"; arch = "linux-x86_64"; sha512 = "fa2484614a067461d8cc3c1fab8675f65b17fc6419c0fe1a8f15e98e8ffffea7297391ec8ec50ec8d2fe1cac4b348afe0b82f2db55584c46cbe2d62daf3a8e4b"; }
+ { locale = "pa-IN"; arch = "linux-i686"; sha512 = "045fa66125cc3c4fc4650bf4e5ea12aae1b26f2cc4191d6b464f41e5305f015611463b311f3bb55264d07b48edbbff606cb58f73d91b22b3bfaaf5de0b830121"; }
+ { locale = "pa-IN"; arch = "linux-x86_64"; sha512 = "696dad47dde2f2494f0410fb698b52ca87112e2c29310aea585b703f4633e404f533d37e6bbe09939aa6f575f426d0a4f2605ca5b95fccafc033569bfe258872"; }
+ { locale = "pl"; arch = "linux-i686"; sha512 = "1848c4c819fa0aebeeec75ac43f3bcf3fa332ba08b79c8296a17aadc7d0434d2b634280541c8d71a68390e3a892a88dd49a0ab4b25c3a2b4b5e7321132801ee9"; }
+ { locale = "pl"; arch = "linux-x86_64"; sha512 = "e9e0b937a165fd90e0639a01001c9b4ada645c9a1201b64ae6cbc1bbf885b5d0b89e195ca5732aaae66360dfc4f188ac8f1643bf12bdbfa029a348aa29a0f79a"; }
+ { locale = "pt-BR"; arch = "linux-i686"; sha512 = "4a69c26598d48d25d048288b6d1785dc8e4d89078eca3d300497a93d44639a8eaca0c32c1988abd831d33e0c32788e8ca6d07fdec9cd4ba7f451a23afbddc525"; }
+ { locale = "pt-BR"; arch = "linux-x86_64"; sha512 = "72d387d49ae5f4dd6406f63fd5c0003f99865079c9d63d7d3deaf15268437dba592642ee8bc759df85fb679da094078c1bdf9808de05bf5e35ac870a62b960e2"; }
+ { locale = "pt-PT"; arch = "linux-i686"; sha512 = "b3ff7eecd345f789bc4798e94402fe7cf7a0cbf27b03f3d8f92274f39764cfd38bd1e4ad5745f3d177645f2c5bea6cb4aa2f1110c90d524bc6b89916c00b2eb2"; }
+ { locale = "pt-PT"; arch = "linux-x86_64"; sha512 = "684849e41f77410c290688582488243fed9594c02ebdd85812a2c63e0cc410b470c14533d09184a83df43555b9ff1d775ed0f1ddbe24bb6890848ccce4e041f6"; }
+ { locale = "rm"; arch = "linux-i686"; sha512 = "02c4171d05c1f070cde474ad60edd7aded613ec1fd7bf51391fe4718554eed435282c44bf891703c356f5bfc0dd08093ef5bc7c979174d5b7fdab1529dde9dbe"; }
+ { locale = "rm"; arch = "linux-x86_64"; sha512 = "9ea31a30e8b5624c03c1627a6e2e1895a3ede5d35e1b9da0b16d6571c13af0e34cfcbe17f396638c8946b1f96037e9c833b3ed58ad46a9e0bf38ffc0e1dc8bba"; }
+ { locale = "ro"; arch = "linux-i686"; sha512 = "dc5b581971333067b25317b702a2e9f58484ae66f640ecda0f9d7c8323fbf8c9fb6ca47fb59c94494e641787f7e9b95c6a4cf3037bf2fc974cc394160359910e"; }
+ { locale = "ro"; arch = "linux-x86_64"; sha512 = "92ef0d86e46d8c80685e9bcd16331447e310147b87cdb45bf80ab2992b4ea11626cf5fbf860ee807d2d8d4e6c7c4fdd352de4c498a57c6951f66ebf72bd60aeb"; }
+ { locale = "ru"; arch = "linux-i686"; sha512 = "511f96bd7713ea798904216d466f362115922c1566d7214115df7665d9e152b9866bb66608f5426080251f55391ac92eb8ec8a0e76d9471563a0bd84fc8c4431"; }
+ { locale = "ru"; arch = "linux-x86_64"; sha512 = "57f6669ae5706a4673bb15b1eb06d89807a9a1a0fb59493b2380778efd8dd3f014d1e0a354c16e71207bf0121a561720caa1a71a846237044889916374b6a5d6"; }
+ { locale = "si"; arch = "linux-i686"; sha512 = "9eb41ae08570098f2cd9d099cec9d2a21490f5bbd7a5a9a422ae9c83b72fb50af2768ed7c33d0d174c3bd09b365107b1e726a57db8fd6bcf52dcc7430f8d22fe"; }
+ { locale = "si"; arch = "linux-x86_64"; sha512 = "03291a8e69b3b6ebb69e25627ed77fed3e7a008ae77f869b262983fb9334e61748a1028f6dd4e1aabf513b7f6cbaefef83c237107d88c1b177c31f34fff54e3f"; }
+ { locale = "sk"; arch = "linux-i686"; sha512 = "0152a947109f5257ec17889453cf650d1dcdd40825208053e65b70e8281579fce307d1f38e6d682d7a8d2f3da377c91ca1e249bc1d507c768d2f08292e5e6b90"; }
+ { locale = "sk"; arch = "linux-x86_64"; sha512 = "d2fdb7585af8a1507362b44b9383acc611668cc4aeb912d98424a49543cefb9a58f95aaa77c1b36a1082fd1334f60df939900e1673e32d3af764ca5ce746d144"; }
+ { locale = "sl"; arch = "linux-i686"; sha512 = "c2cedc7a07a27f439e5833ca9a1214d0e75b2154ff879fa39b06ab6baa05d13feac227b51d1126d70ef907942db1dcaf1e7c987128f752d0dc1d147266cf520f"; }
+ { locale = "sl"; arch = "linux-x86_64"; sha512 = "07aa88c7d281e247e9c30f9ae3b8329132d4a145e8a8b0f88b544995d39f58d196fb6ce6a5604954129222a848ce49aa07a0bf6f1ab3a4b1fd29e61f51c7664f"; }
+ { locale = "sq"; arch = "linux-i686"; sha512 = "e2afd03139f475ae68206cc1f35780261abd7646babd7f05c255acbcdbb712f11ea0b7b68887d0fc05e8bcded3a166cea490c86b2936be7d400c919efbb221cd"; }
+ { locale = "sq"; arch = "linux-x86_64"; sha512 = "7b91f7c6cdeda2735dbe7befcdec777a6d22c1aa278d4a1caa8cb15441841b4edb7599e8d4d4fbc1d198cc6178625ad4a29455e7195ab563e9bd3ac4faa1104c"; }
+ { locale = "sr"; arch = "linux-i686"; sha512 = "6b92ea68fde0ede23bdd7998a81d9924e35b8cb77cc396636fb91495cafe039c32efa272f8c3693fa4ec582eb04bc0db6d22991e3056d22188e0eb8c64bf352b"; }
+ { locale = "sr"; arch = "linux-x86_64"; sha512 = "3ca3f049f677f9283d9af660d2989f5c05ed418bb904e7695e456f73d9615da106e0f0db2c3a371109c77fd7348eef5a94d8061b3a0ad508d193e1234839f954"; }
+ { locale = "sv-SE"; arch = "linux-i686"; sha512 = "95bbcfaade0c12d87c8b591e3d9d6205e1056741e9eb526cc505687e2ee43fbdb96ff0b411c63b58c6fdd57260180a94d343155163518843a843f5f3b086b25b"; }
+ { locale = "sv-SE"; arch = "linux-x86_64"; sha512 = "15d0bfb22e6f0d3425737dd05dedc5af7e1f98744fb0d943cd88ad6125083bc86bbfb700d71839a090f9b54642cc1b0ebb8fbd205d46316f83cab75bd5442ec9"; }
+ { locale = "ta-LK"; arch = "linux-i686"; sha512 = "89b3a7997d3cc3a8372ee49df3dee21e535403d08a2aa742a1416c1e7c41c63fa56fe50fe133f588f3a34db180c4505f05034e99e078c0b19e1eef6f48e3d7fb"; }
+ { locale = "ta-LK"; arch = "linux-x86_64"; sha512 = "00c20fc4c27005e13cda53c5332bf874267e4bda6894480e599557e5e90a334b648a47ce28fff6353060d9a6fb4e547e632e2deb1513175023c1bf6d453a9583"; }
+ { locale = "tr"; arch = "linux-i686"; sha512 = "1b791b57b9d8c3da228293c83fa02fc1a24a0b6b8a6efaecbfef42962f2390fb448d2fb08e5a812df8efcf135f9cecb98cba3b2b174e59b43575236ba5fb2f76"; }
+ { locale = "tr"; arch = "linux-x86_64"; sha512 = "7040da3720ce3b0dad6e2863b48e025c32206c8a0d6cdae4e4fb13b7b6754796e9e1b83a09280303a83c97ddaf391c10a56aa8edfe1e7eca60534a6e1d4006d3"; }
+ { locale = "uk"; arch = "linux-i686"; sha512 = "54412cf33dab4be4553d267cad386d47ca38726e8643de10b8509828ba6c25f2c35e151165d3d999c22724ba57028b740f9b5e5f9a05aa773779759ffe6ced78"; }
+ { locale = "uk"; arch = "linux-x86_64"; sha512 = "3725c3c9c7ee8140b2c9ae3ad928e933afbfaab60ec27b8f1a8c56a87553c0123031d50d27c794407b6971b347b8f379c1c92ddff00db960bb635fb0cd945ebf"; }
+ { locale = "vi"; arch = "linux-i686"; sha512 = "92edb5e4789d1e1a63d5f69f99a06ae474d85949771c07ef572ce5ae66a125d5c04ea207b51fcb4ee2d1f00052f53ee8415d109cb06e53c55e9436f37e375d3f"; }
+ { locale = "vi"; arch = "linux-x86_64"; sha512 = "e786670f4033857873e5238118b23a86638b190db51d70ac55662718126621580bffd705803638bf71556caa397f3420efaa08e83e06abb4c2e2dbdd22f111af"; }
+ { locale = "zh-CN"; arch = "linux-i686"; sha512 = "9af79559703b8734df11c2773ccd7f77a88d9dc5ebf2df1bac14fdef4ad0f45c840102e5bb86f6172ad6e7d225af8a1723d4de84b877fb2574fd1a729213ea08"; }
+ { locale = "zh-CN"; arch = "linux-x86_64"; sha512 = "4d63dc15450d9297d4f161c72eded27d6176bc755f657012821cd9d9e989597c296f985e12af39d7a1b37dd5cf442fdbf9d2e1f7e6f11ba841ed87ea279d813b"; }
+ { locale = "zh-TW"; arch = "linux-i686"; sha512 = "7bca2ef8b1e597346c0450870fcd0058fac18b3f3607c6280774db97d594e98928bf291ee22146d70f2de40437e38088b9a8af71b0b076b9bbf2049067bfc448"; }
+ { locale = "zh-TW"; arch = "linux-x86_64"; sha512 = "64ee5cf56a48159c1a2aee2c8dc9118ce9187c5c68a9a1393e2c28a35786fd42042b13d48d30ececf1893973ccab92c0a8b23cbaec340a5150cc1a994236c6cc"; }
];
}
diff --git a/pkgs/applications/networking/mailreaders/thunderbird/default.nix b/pkgs/applications/networking/mailreaders/thunderbird/default.nix
index cd919566138..dc6d43fefb8 100644
--- a/pkgs/applications/networking/mailreaders/thunderbird/default.nix
+++ b/pkgs/applications/networking/mailreaders/thunderbird/default.nix
@@ -13,7 +13,7 @@
enableOfficialBranding ? false
}:
-let version = "45.1.0"; in
+let version = "45.2.0"; in
let verName = "${version}"; in
stdenv.mkDerivation rec {
@@ -21,7 +21,7 @@ stdenv.mkDerivation rec {
src = fetchurl {
url = "mirror://mozilla/thunderbird/releases/${verName}/source/thunderbird-${verName}.source.tar.xz";
- sha256 = "0293cwnqj4ys629ra87577c7snv4p8x2nbs1kzcnjpc96vjypsca";
+ sha256 = "1h1p14zswrg71qvzshwvw03mhicwwkfg29hvnj56cf41nb5qj8xx";
};
buildInputs = # from firefox30Pkgs.xulrunner, without gstreamer and libvpx
diff --git a/pkgs/applications/networking/mailreaders/trojita/default.nix b/pkgs/applications/networking/mailreaders/trojita/default.nix
new file mode 100644
index 00000000000..892d9d8fa57
--- /dev/null
+++ b/pkgs/applications/networking/mailreaders/trojita/default.nix
@@ -0,0 +1,41 @@
+{ stdenv
+, lib
+, fetchgit
+, cmake
+, qtbase
+, qtwebkit
+, makeQtWrapper
+}:
+
+stdenv.mkDerivation rec {
+ name = "trojita-${version}";
+ version = "0.7";
+
+ src = fetchgit {
+ url = "https://anongit.kde.org/trojita.git";
+ rev = "065d527c63e8e4a3ca0df73994f848b52e14ed58";
+ sha256 = "1zlwhir33hha2p3l08wnb4njnfdg69j88ycf1fa4q3x86qm3r7hw";
+ };
+
+ buildInputs = [
+ cmake
+ qtbase
+ qtwebkit
+ ];
+
+ nativeBuildInputs = [
+ makeQtWrapper
+ ];
+
+ postInstall = ''
+ wrapQtProgram "$out/bin/trojita"
+ '';
+
+
+ meta = {
+ description = "A Qt IMAP e-mail client";
+ homepage = http://trojita.flaska.net/;
+ license = with lib.licenses; [ gpl2 gpl3 ];
+ };
+
+}
diff --git a/pkgs/applications/networking/netperf/default.nix b/pkgs/applications/networking/netperf/default.nix
index 40aa3263629..9bad7a8b42a 100644
--- a/pkgs/applications/networking/netperf/default.nix
+++ b/pkgs/applications/networking/netperf/default.nix
@@ -9,7 +9,7 @@ stdenv.mkDerivation rec {
};
meta = {
- description = "benchmark to measure the performance of many different types of networking";
+ description = "Benchmark to measure the performance of many different types of networking";
homepage = "http://www.netperf.org/netperf/";
license = "Hewlett-Packard BSD-like license";
diff --git a/pkgs/applications/networking/owncloud-client/default.nix b/pkgs/applications/networking/owncloud-client/default.nix
index bbbee40a7b4..18d31c22077 100644
--- a/pkgs/applications/networking/owncloud-client/default.nix
+++ b/pkgs/applications/networking/owncloud-client/default.nix
@@ -3,11 +3,11 @@
stdenv.mkDerivation rec {
name = "owncloud-client" + "-" + version;
- version = "2.1.1";
+ version = "2.2.1";
src = fetchurl {
url = "https://download.owncloud.com/desktop/stable/owncloudclient-${version}.tar.xz";
- sha256 = "4e7cfeb72ec565392e7968f352c4a7f0ef2988cc577ebdfd668a3887d320b1cb";
+ sha256 = "1wis62jk4y4mbr25y39y6af57pi6vp2mbryazmvn6zgnygf69m3h";
};
buildInputs =
diff --git a/pkgs/applications/networking/p2p/gnunet/default.nix b/pkgs/applications/networking/p2p/gnunet/default.nix
index 54e042f17b9..54c232674bf 100644
--- a/pkgs/applications/networking/p2p/gnunet/default.nix
+++ b/pkgs/applications/networking/p2p/gnunet/default.nix
@@ -20,25 +20,21 @@ stdenv.mkDerivation rec {
# Brute force: since nix-worker chroots don't provide
# /etc/{resolv.conf,hosts}, replace all references to `localhost'
# by their IPv4 equivalent.
- for i in $(find . \( -name \*.c -or -name \*.conf \) \
- -exec grep -l '\' {} \;)
- do
- echo "$i: substituting \`127.0.0.1' to \`localhost'..."
- sed -i "$i" -e's/\/127.0.0.1/g'
- done
+ find . \( -name \*.c -or -name \*.conf \) | \
+ xargs sed -ie 's|\|127.0.0.1|g'
# Make sure the tests don't rely on `/tmp', for the sake of chroot
# builds.
- for i in $(find . \( -iname \*test\*.c -or -name \*.conf \) \
- -exec grep -l /tmp {} \;)
- do
- echo "$i: replacing references to \`/tmp' by \`$TMPDIR'..."
- substituteInPlace "$i" --replace "/tmp" "$TMPDIR"
- done
+ find . \( -iname \*test\*.c -or -name \*.conf \) | \
+ xargs sed -ie "s|/tmp|$TMPDIR|g"
# Ensure NSS installation works fine
configureFlags="$configureFlags --with-nssdir=$out/lib"
patchShebangs src/gns/nss/install-nss-plugin.sh
+
+ sed -ie 's|@LDFLAGS@|@LDFLAGS@ $(Z_LIBS)|g' \
+ src/regex/Makefile.in \
+ src/fs/Makefile.in
'';
doCheck = false;
@@ -53,7 +49,7 @@ stdenv.mkDerivation rec {
'';
*/
- meta = {
+ meta = with stdenv.lib; {
description = "GNU's decentralized anonymous and censorship-resistant P2P framework";
longDescription = ''
@@ -73,9 +69,9 @@ stdenv.mkDerivation rec {
homepage = http://gnunet.org/;
- license = stdenv.lib.licenses.gpl2Plus;
+ license = licenses.gpl2Plus;
- maintainers = with stdenv.lib.maintainers; [ viric ];
- platforms = stdenv.lib.platforms.gnu;
+ maintainers = with maintainers; [ viric vrthra ];
+ platforms = platforms.gnu;
};
}
diff --git a/pkgs/applications/networking/p2p/qbittorrent/default.nix b/pkgs/applications/networking/p2p/qbittorrent/default.nix
index 78f2c79923a..f3c94e8577f 100644
--- a/pkgs/applications/networking/p2p/qbittorrent/default.nix
+++ b/pkgs/applications/networking/p2p/qbittorrent/default.nix
@@ -10,11 +10,11 @@ assert guiSupport -> (dbus_libs != null);
with stdenv.lib;
stdenv.mkDerivation rec {
name = "qbittorrent-${version}";
- version = "3.3.4";
+ version = "3.3.5";
src = fetchurl {
url = "mirror://sourceforge/qbittorrent/${name}.tar.xz";
- sha256 = "1f4impsjck8anl39pwypsck7j6xw0dl18qd0b4xi23r45jvx9l60";
+ sha256 = "1nh4lr4kbgh6rrsjax2a4lg82vn1ld0rnqjpp7sb6vpz8ikavk9q";
};
nativeBuildInputs = [ pkgconfig which ];
diff --git a/pkgs/applications/networking/p2p/transgui/default.nix b/pkgs/applications/networking/p2p/transgui/default.nix
new file mode 100644
index 00000000000..421fd9afb16
--- /dev/null
+++ b/pkgs/applications/networking/p2p/transgui/default.nix
@@ -0,0 +1,70 @@
+{ stdenv, fetchsvn, pkgconfig, makeDesktopItem, unzip, fpc, lazarus,
+libX11, glib, gtk, gdk_pixbuf, pango, atk, cairo, openssl }:
+
+stdenv.mkDerivation rec {
+ name = "transgui-5.0.1-svn-r${revision}";
+ revision = "986";
+
+ src = fetchsvn {
+ url = "https://svn.code.sf.net/p/transgui/code/trunk/";
+ rev = revision;
+ sha256 = "0z83hvlhllm6p1z4gkcfi1x3akgn2xkssnfhwp74qynb0n5362pi";
+ };
+
+ buildInputs = [
+ pkgconfig unzip fpc lazarus stdenv.cc
+ libX11 glib gtk gdk_pixbuf pango atk cairo openssl
+ ];
+
+ NIX_LDFLAGS = "
+ -L${stdenv.cc.cc.lib}/lib
+ -lX11 -lglib-2.0 -lgtk-x11-2.0 -lgdk-x11-2.0
+ -lgdk_pixbuf-2.0 -lpango-1.0 -latk-1.0 -lcairo -lc -lcrypto
+ ";
+
+ prePatch = ''
+ substituteInPlace restranslator.pas --replace /usr/ $out/
+ '';
+
+ makeFlags = [
+ "FPC=fpc"
+ "PP=fpc"
+ "INSTALL_PREFIX=$(out)"
+ ];
+
+ LCL_PLATFORM = "gtk2";
+
+ desktopItem = makeDesktopItem rec {
+ name = "transgui";
+ exec = name + " %U";
+ icon = name;
+ type = "Application";
+ comment = meta.description;
+ desktopName = "Transmission Remote GUI";
+ genericName = "BitTorrent Client";
+ categories = stdenv.lib.concatStringsSep ";" [
+ "Application" "Network" "FileTransfer" "P2P" "GTK"
+ ];
+ startupNotify = "true";
+ mimeType = stdenv.lib.concatStringsSep ";" [
+ "application/x-bittorrent" "x-scheme-handler/magnet"
+ ];
+ };
+
+ postInstall = ''
+ mkdir -p "$out/share/applications"
+ cp $desktopItem/share/applications/* $out/share/applications
+ mkdir -p "$out/share/icons/hicolor/48x48/apps"
+ cp transgui.png "$out/share/icons/hicolor/48x48/apps"
+ mkdir -p "$out/share/transgui"
+ cp -r "./lang" "$out/share/transgui"
+ '';
+
+ meta = {
+ description = "A cross platform front-end for the Transmission Bit-Torrent client";
+ homepage = https://sourceforge.net/p/transgui;
+ license = stdenv.lib.licenses.gpl2Plus;
+ maintainers = with stdenv.lib.maintainers; [ ramkromberg ];
+ platforms = stdenv.lib.platforms.linux;
+ };
+}
diff --git a/pkgs/applications/networking/sniffers/wireshark/default.nix b/pkgs/applications/networking/sniffers/wireshark/default.nix
index 0febee72096..bf7c8f75245 100644
--- a/pkgs/applications/networking/sniffers/wireshark/default.nix
+++ b/pkgs/applications/networking/sniffers/wireshark/default.nix
@@ -11,7 +11,7 @@ assert withQt -> !withGtk && qt4 != null;
with stdenv.lib;
let
- version = "2.0.3";
+ version = "2.0.4";
variant = if withGtk then "gtk" else if withQt then "qt" else "cli";
in
@@ -20,7 +20,7 @@ stdenv.mkDerivation {
src = fetchurl {
url = "http://www.wireshark.org/download/src/all-versions/wireshark-${version}.tar.bz2";
- sha256 = "1z358k65frp9m0l07cppwxhvbcp1w9ya5sml87pzs8gyfmp3g5p1";
+ sha256 = "19g11m8m8qd7dkcvcb27lyppklg608d9ap7wr3mr88clm4nwiacy";
};
buildInputs = [
diff --git a/pkgs/applications/networking/sync/lsyncd/default.nix b/pkgs/applications/networking/sync/lsyncd/default.nix
index b190b05e289..a7cf26ea7ae 100644
--- a/pkgs/applications/networking/sync/lsyncd/default.nix
+++ b/pkgs/applications/networking/sync/lsyncd/default.nix
@@ -29,7 +29,7 @@ stdenv.mkDerivation rec {
homepage = https://github.com/axkibe/lsyncd;
description = "A utility that synchronizes local directories with remote targets";
license = licenses.gpl2;
- platforms = platforms.unix;
+ platforms = platforms.linux;
maintainers = with maintainers; [ bobvanderlinden ];
};
}
diff --git a/pkgs/applications/networking/syncthing/default.nix b/pkgs/applications/networking/syncthing/default.nix
index 83e5f2bd328..87d74aeafd8 100644
--- a/pkgs/applications/networking/syncthing/default.nix
+++ b/pkgs/applications/networking/syncthing/default.nix
@@ -1,13 +1,13 @@
{ stdenv, fetchgit, go }:
stdenv.mkDerivation rec {
- version = "0.13.4";
+ version = "0.13.9";
name = "syncthing-${version}";
src = fetchgit {
url = https://github.com/syncthing/syncthing;
rev = "refs/tags/v${version}";
- sha256 = "0aa0nqi0gmka5r5dzph4g51jlsy7w5q4ri8f4gy3qnma4pgp7pg2";
+ sha256 = "1ah3a86rjfqlx4mqyvn8j3r806i65mzhs5xnfg4aakzmwpr5zpx0";
};
buildInputs = [ go ];
diff --git a/pkgs/applications/office/beancount/default.nix b/pkgs/applications/office/beancount/default.nix
index 4114fbffa39..77fcb8ce7e9 100644
--- a/pkgs/applications/office/beancount/default.nix
+++ b/pkgs/applications/office/beancount/default.nix
@@ -32,7 +32,7 @@ pythonPackages.buildPythonApplication rec {
meta = {
homepage = http://furius.ca/beancount/;
- description = "double-entry bookkeeping computer language";
+ description = "Double-entry bookkeeping computer language";
longDescription = ''
A double-entry bookkeeping computer language that lets you define
financial transaction records in a text file, read them in memory,
diff --git a/pkgs/applications/office/gnucash/2.6.nix b/pkgs/applications/office/gnucash/2.6.nix
index 03af54f0ce1..4a997d08d83 100644
--- a/pkgs/applications/office/gnucash/2.6.nix
+++ b/pkgs/applications/office/gnucash/2.6.nix
@@ -13,11 +13,11 @@ Two cave-ats right now:
*/
stdenv.mkDerivation rec {
- name = "gnucash-2.6.9";
+ name = "gnucash-2.6.12";
src = fetchurl {
url = "mirror://sourceforge/gnucash/${name}.tar.bz2";
- sha256 = "0iw25l1kv60cg6fd2vg11mcvzmjqnc5p9lp3rjy06ghkjfrn3and";
+ sha256 = "0x84f07p30pwhriamv8ifljgw755cj87rc12jy1xddf47spyj7rp";
};
buildInputs = [
diff --git a/pkgs/applications/office/jabref/default.nix b/pkgs/applications/office/jabref/default.nix
index 5f32077104e..176da6c1391 100644
--- a/pkgs/applications/office/jabref/default.nix
+++ b/pkgs/applications/office/jabref/default.nix
@@ -1,11 +1,12 @@
{ stdenv, fetchurl, makeWrapper, makeDesktopItem, ant, jdk, jre }:
stdenv.mkDerivation rec {
- version = "2.10";
+ version = "3.4";
name = "jabref-${version}";
+
src = fetchurl {
- url = "mirror://sourceforge/jabref/${version}/JabRef-${version}-src.tar.bz2";
- sha256 = "09b57afcfeb1730b58a887dc28f0f4c803e9c00fade1f57245ab70e2a98ce6ad";
+ url = "https://github.com/JabRef/jabref/releases/download/v${version}/JabRef-${version}.jar";
+ sha256 = "1pimjx1452z159hvi199n52j5vkdj5c59mns9mi5mqvwhgm9dghd";
};
desktopItem = makeDesktopItem {
@@ -18,17 +19,21 @@ stdenv.mkDerivation rec {
exec = "jabref";
};
- buildInputs = [ ant jdk makeWrapper ];
+ buildInputs = [ makeWrapper jdk ];
- buildPhase = ''ant'';
+ phases = [ "installPhase" ];
installPhase = ''
mkdir -p $out/bin $out/share/java $out/share/icons
+
cp -r ${desktopItem}/share/applications $out/share/
- cp build/lib/JabRef-${version}.jar $out/share/java/
- cp src/images/JabRef-icon-mac.svg $out/share/icons/jabref.svg
+
+ jar xf $src images/icons/JabRef-icon-mac.svg
+ cp images/icons/JabRef-icon-mac.svg $out/share/icons/jabref.svg
+
+ ln -s $src $out/share/java/jabref-${version}.jar
makeWrapper ${jre}/bin/java $out/bin/jabref \
- --add-flags "-jar $out/share/java/JabRef-${version}.jar"
+ --add-flags "-jar $out/share/java/jabref-${version}.jar"
'';
meta = with stdenv.lib; {
diff --git a/pkgs/applications/office/ledger/default.nix b/pkgs/applications/office/ledger/default.nix
index 44135928a62..ac90e0c4cb2 100644
--- a/pkgs/applications/office/ledger/default.nix
+++ b/pkgs/applications/office/ledger/default.nix
@@ -2,7 +2,7 @@
, texinfo, gnused }:
let
- version = "3.1";
+ version = "3.1.1";
in
stdenv.mkDerivation {
@@ -13,7 +13,7 @@ stdenv.mkDerivation {
src = fetchgit {
url = "https://github.com/ledger/ledger.git";
rev = "refs/tags/v${version}";
- sha256 = "07r8ds4qdzgicfdf0ar3kp1zn09ami87jkrx1yn5k7hi8n4ns0ka";
+ sha256 = "1j4p7djkmdmd858hylrsc3inamh9z0vkfl98s9wiqfmrzw51pmxp";
};
buildInputs = [ cmake boost gmp mpfr libedit python texinfo gnused ];
diff --git a/pkgs/applications/office/libreoffice/default.nix b/pkgs/applications/office/libreoffice/default.nix
index 745dd7cc01c..9c1e1b78990 100644
--- a/pkgs/applications/office/libreoffice/default.nix
+++ b/pkgs/applications/office/libreoffice/default.nix
@@ -251,5 +251,6 @@ in stdenv.mkDerivation rec {
license = licenses.lgpl3;
maintainers = with maintainers; [ viric raskin ];
platforms = platforms.linux;
+ hydraPlatforms = [];
};
}
diff --git a/pkgs/applications/office/libreoffice/still.nix b/pkgs/applications/office/libreoffice/still.nix
index e42c4f1a0a4..b8ad900fb14 100644
--- a/pkgs/applications/office/libreoffice/still.nix
+++ b/pkgs/applications/office/libreoffice/still.nix
@@ -251,6 +251,5 @@ in stdenv.mkDerivation rec {
license = licenses.lgpl3;
maintainers = with maintainers; [ viric raskin ];
platforms = platforms.linux;
- hydraPlatforms = [];
};
}
diff --git a/pkgs/applications/office/timetrap/default.nix b/pkgs/applications/office/timetrap/default.nix
index 71d0f923dbd..f6a408d0384 100644
--- a/pkgs/applications/office/timetrap/default.nix
+++ b/pkgs/applications/office/timetrap/default.nix
@@ -9,7 +9,7 @@ bundlerEnv {
gemset = ./gemset.nix;
meta = {
- description = "a simple command line time tracker written in ruby";
+ description = "A simple command line time tracker written in ruby";
homepage = https://github.com/samg/timetrap;
license = lib.licenses.mit;
};
diff --git a/pkgs/applications/office/wpsoffice/default.nix b/pkgs/applications/office/wpsoffice/default.nix
index ed37cedde37..d6640b6c5bb 100644
--- a/pkgs/applications/office/wpsoffice/default.nix
+++ b/pkgs/applications/office/wpsoffice/default.nix
@@ -2,12 +2,12 @@
stdenv.mkDerivation rec{
name = "wpsoffice-${version}";
- version = "10.1.0.5503";
+ version = "10.1.0.5672";
src = fetchurl {
name = "${name}.tar.gz";
- url = "http://kdl.cc.ksosoft.com/wps-community/download/a20/wps-office_10.1.0.5503~a20p2_x86_64.tar.xz";
- sha256 = "0h9f8s7zkpd056ibrj978mr04imv631sp1wljplh99l5ncns6hws";
+ url = "http://kdl.cc.ksosoft.com/wps-community/download/a21/wps-office_10.1.0.5672~a21_x86_64.tar.xz";
+ sha1 = "7e9b17572ed5cea50af24f01457f726fc558a515";
};
meta = {
diff --git a/pkgs/applications/office/zanshin/default.nix b/pkgs/applications/office/zanshin/default.nix
index 7ae758d7e4f..a16ab1baef4 100644
--- a/pkgs/applications/office/zanshin/default.nix
+++ b/pkgs/applications/office/zanshin/default.nix
@@ -1,17 +1,17 @@
{ stdenv, fetchurl, automoc4, cmake, perl, pkgconfig
-, kdelibs, kdepimlibs, boost }:
+, kdelibs, kdepimlibs, boost, baloo }:
stdenv.mkDerivation rec {
- name = "zanshin-0.2.1";
+ name = "zanshin-0.3.1";
src = fetchurl {
url = "http://files.kde.org/zanshin/${name}.tar.bz2";
- sha256 = "155k72vk7kw0p0x9dhlky6q017kanzcbwvp4dpf1hcbr1dsr55fx";
+ sha256 = "1ck2ncz8i816d6d1gcsdrh6agd2zri24swgz3bhn8vzbk4215yzl";
};
nativeBuildInputs = [ automoc4 cmake perl pkgconfig ];
- buildInputs = [ kdelibs kdepimlibs boost ];
+ buildInputs = [ kdelibs kdepimlibs boost baloo ];
meta = {
description = "GTD for KDE";
diff --git a/pkgs/applications/science/biology/bcftools/default.nix b/pkgs/applications/science/biology/bcftools/default.nix
new file mode 100644
index 00000000000..d4e4ed5b954
--- /dev/null
+++ b/pkgs/applications/science/biology/bcftools/default.nix
@@ -0,0 +1,26 @@
+{ stdenv, fetchurl, zlib, htslib }:
+
+stdenv.mkDerivation rec {
+ name = "${pname}-${version}";
+ pname = "bcftools";
+ version = "1.3.1";
+
+ src = fetchurl {
+ url = "https://github.com/samtools/${pname}/releases/download/${version}/${name}.tar.bz2";
+ sha256 = "095ry68vmz9q5s1scjsa698dhgyvgw5aicz24c19iwfbai07mhqj";
+ };
+
+ buildInputs = [ zlib ];
+
+ preBuild = ''
+ makeFlagsArray=("HSTDIR=${htslib}" "prefix=$out")
+ '';
+
+ meta = with stdenv.lib; {
+ description = "Tools for manipulating BCF2/VCF/gVCF format, SNP and short indel sequence variants";
+ license = licenses.mit;
+ homepage = http://www.htslib.org/;
+ platforms = platforms.unix;
+ maintainers = [ maintainers.mimadrid ];
+ };
+}
diff --git a/pkgs/applications/science/biology/igv/default.nix b/pkgs/applications/science/biology/igv/default.nix
new file mode 100644
index 00000000000..3d0f7154e0e
--- /dev/null
+++ b/pkgs/applications/science/biology/igv/default.nix
@@ -0,0 +1,33 @@
+{ stdenv, fetchurl, unzip, jre }:
+
+stdenv.mkDerivation rec {
+ name = "igv-${version}";
+ version = "2.3.77";
+
+ src = fetchurl {
+ url = "http://data.broadinstitute.org/igv/projects/downloads/IGV_${version}.zip";
+ sha256 = "9d8c622649f9f02026e92fa44006bb57e897baad4359c8708ca9cdbb71f94bb5";
+ };
+
+ buildInputs = [ unzip jre ];
+
+ installPhase = ''
+ mkdir -pv $out/{share,bin}
+ cp -Rv * $out/share/
+
+ sed -i "s#prefix=.*#prefix=$out/share#g" $out/share/igv.sh
+ sed -i 's#java#${jre}/bin/java#g' $out/share/igv.sh
+
+ ln -s $out/share/igv.sh $out/bin/igv
+
+ chmod +x $out/bin/igv
+ '';
+
+ meta = with stdenv.lib; {
+ homepage = "https://www.broadinstitute.org/igv/";
+ description = "A visualization tool for interactive exploration of genomic datasets";
+ license = licenses.lgpl21;
+ platforms = platforms.unix;
+ maintainers = [ maintainers.mimadrid ];
+ };
+}
diff --git a/pkgs/applications/science/biology/samtools/default.nix b/pkgs/applications/science/biology/samtools/default.nix
index 9535609fa78..e97af1ea0ee 100644
--- a/pkgs/applications/science/biology/samtools/default.nix
+++ b/pkgs/applications/science/biology/samtools/default.nix
@@ -1,19 +1,25 @@
-{ stdenv, fetchurl, zlib, ncurses }:
+{ stdenv, fetchurl, zlib, htslib, ncurses ? null }:
stdenv.mkDerivation rec {
- name = "samtools-${version}";
+ name = "${pname}-${version}";
+ pname = "samtools";
version = "1.3.1";
src = fetchurl {
- url = "https://github.com/samtools/samtools/releases/download/${version}/${name}.tar.bz2";
+ url = "https://github.com/samtools/${pname}/releases/download/${version}/${name}.tar.bz2";
sha256 = "0znnnxc467jbf1as2dpskrjhfh8mbll760j6w6rdkwlwbqsp8gbc";
};
- buildInputs = [ zlib ncurses ];
+ buildInputs = [ zlib ncurses htslib ];
+
+ configureFlags = [ "--with-htslib=${htslib}" ]
+ ++ stdenv.lib.optional (ncurses == null) "--without-curses";
meta = with stdenv.lib; {
- description = "Tools (written in C using htslib) for manipulating next-generation sequencing data";
+ description = "Tools for manipulating SAM/BAM/CRAM format";
license = licenses.mit;
homepage = http://www.htslib.org/;
+ platforms = platforms.unix;
+ maintainers = [ maintainers.mimadrid ];
};
}
diff --git a/pkgs/applications/science/logic/aspino/default.nix b/pkgs/applications/science/logic/aspino/default.nix
new file mode 100644
index 00000000000..5207245b0ba
--- /dev/null
+++ b/pkgs/applications/science/logic/aspino/default.nix
@@ -0,0 +1,31 @@
+{ stdenv, fetchFromGitHub, zlib, boost, glucose }:
+stdenv.mkDerivation rec {
+ name = "aspino-2016-01-31";
+
+ src = fetchFromGitHub {
+ owner = "alviano";
+ repo = "aspino";
+ rev = "d28579b5967988b88bce6d9964a8f0a926286e9c";
+ sha256 = "0r9dnkq3rldv5hhnmycmzqyg23hv5w3g3i5a00a8zalnzfiyirnq";
+ };
+
+ buildInputs = [ zlib boost ];
+
+ preBuild = ''
+ cp ${glucose.src} patches/glucose-syrup.tgz
+ ./bootstrap.sh
+ '';
+
+ installPhase = ''
+ mkdir -p $out/bin
+ install -m0755 build/release/{aspino,fairino-{bs,ls,ps},maxino-2015-{k16,kdyn}} $out/bin
+ '';
+
+ meta = with stdenv.lib; {
+ description = "SAT/PseudoBoolean/MaxSat/ASP solver using glucose";
+ maintainers = with maintainers; [ gebner ];
+ platforms = platforms.unix;
+ license = licenses.asl20;
+ homepage = http://alviano.net/software/maxino/;
+ };
+}
diff --git a/pkgs/applications/science/logic/cryptoverif/default.nix b/pkgs/applications/science/logic/cryptoverif/default.nix
new file mode 100644
index 00000000000..47077c2e255
--- /dev/null
+++ b/pkgs/applications/science/logic/cryptoverif/default.nix
@@ -0,0 +1,37 @@
+{ stdenv, fetchurl, ocaml }:
+
+stdenv.mkDerivation rec {
+ name = "cryptoverif-${version}";
+ version = "1.22";
+
+ src = fetchurl {
+ url = "http://prosecco.gforge.inria.fr/personal/bblanche/cryptoverif/cryptoverif${version}.tar.gz";
+ sha256 = "17fbmv0askgfnhs5a0ilhizvrr93jkmq82ybm3cgyxhh2zrk0rq1";
+ };
+
+ buildInputs = [ ocaml ];
+
+ /* Fix up the frontend to load the 'default' cryptoverif library
+ ** from under $out/libexec. By default, it expects to find the files
+ ** in $CWD which doesn't work. */
+ patchPhase = ''
+ substituteInPlace ./src/settings.ml \
+ --replace \"default\" \"$out/libexec/default\"
+ '';
+
+ buildPhase = "./build";
+ installPhase = ''
+ mkdir -p $out/bin $out/libexec
+ cp ./cryptoverif $out/bin
+ cp ./default.cvl $out/libexec
+ cp ./default.ocvl $out/libexec
+ '';
+
+ meta = {
+ description = "Cryptographic protocol verifier in the computational model";
+ homepage = "http://prosecco.gforge.inria.fr/personal/bblanche/cryptoverif/";
+ license = stdenv.lib.licenses.cecill-b;
+ platforms = stdenv.lib.platforms.unix;
+ maintainers = [ stdenv.lib.maintainers.thoughtpolice ];
+ };
+}
diff --git a/pkgs/applications/science/logic/glucose/default.nix b/pkgs/applications/science/logic/glucose/default.nix
new file mode 100644
index 00000000000..5b318be1664
--- /dev/null
+++ b/pkgs/applications/science/logic/glucose/default.nix
@@ -0,0 +1,25 @@
+{ stdenv, fetchurl, zlib }:
+stdenv.mkDerivation rec {
+ name = "glucose-${version}";
+ version = "4.0";
+
+ src = fetchurl {
+ url = "http://www.labri.fr/perso/lsimon/downloads/softwares/glucose-syrup.tgz";
+ sha256 = "0bq5l2jabhdfhng002qfk0mcj4pfi1v5853x3c7igwfrgx0jmfld";
+ };
+
+ buildInputs = [ zlib ];
+
+ sourceRoot = "glucose-syrup/simp";
+ makeFlags = [ "r" ];
+ installPhase = ''
+ install -Dm0755 glucose_release $out/bin/glucose
+ '';
+
+ meta = with stdenv.lib; {
+ description = "Modern, parallel SAT solver (sequential version)";
+ license = licenses.mit;
+ platforms = platforms.unix;
+ maintainers = with maintainers; [ gebner ];
+ };
+}
diff --git a/pkgs/applications/science/logic/glucose/syrup.nix b/pkgs/applications/science/logic/glucose/syrup.nix
new file mode 100644
index 00000000000..7604ebc1a3d
--- /dev/null
+++ b/pkgs/applications/science/logic/glucose/syrup.nix
@@ -0,0 +1,25 @@
+{ stdenv, fetchurl, zlib }:
+stdenv.mkDerivation rec {
+ name = "glucose-syrup-${version}";
+ version = "4.0";
+
+ src = fetchurl {
+ url = "http://www.labri.fr/perso/lsimon/downloads/softwares/glucose-syrup.tgz";
+ sha256 = "0bq5l2jabhdfhng002qfk0mcj4pfi1v5853x3c7igwfrgx0jmfld";
+ };
+
+ buildInputs = [ zlib ];
+
+ sourceRoot = "glucose-syrup/parallel";
+ makeFlags = [ "r" ];
+ installPhase = ''
+ install -Dm0755 glucose-syrup_release $out/bin/glucose-syrup
+ '';
+
+ meta = with stdenv.lib; {
+ description = "Modern, parallel SAT solver (parallel version)";
+ license = licenses.unfreeRedistributable;
+ platforms = platforms.unix;
+ maintainers = with maintainers; [ gebner ];
+ };
+}
diff --git a/pkgs/applications/science/logic/ltl2ba/default.nix b/pkgs/applications/science/logic/ltl2ba/default.nix
index 8eedafcd68b..f0947fa0ed6 100644
--- a/pkgs/applications/science/logic/ltl2ba/default.nix
+++ b/pkgs/applications/science/logic/ltl2ba/default.nix
@@ -22,7 +22,7 @@ stdenv.mkDerivation rec {
'';
meta = {
- description = "fast translation from LTL formulae to Buchi automata";
+ description = "Fast translation from LTL formulae to Buchi automata";
homepage = "http://www.lsv.ens-cachan.fr/~gastin/ltl2ba";
license = stdenv.lib.licenses.gpl2Plus;
platforms = stdenv.lib.platforms.darwin ++ stdenv.lib.platforms.linux;
diff --git a/pkgs/applications/science/logic/minisat/clang.diff b/pkgs/applications/science/logic/minisat/clang.diff
new file mode 100644
index 00000000000..5b5072c71f3
--- /dev/null
+++ b/pkgs/applications/science/logic/minisat/clang.diff
@@ -0,0 +1,45 @@
+diff -aur minisat/core/SolverTypes.h minisat.clang/core/SolverTypes.h
+--- minisat/core/SolverTypes.h 2010-07-10 18:07:36.000000000 +0200
++++ minisat.clang/core/SolverTypes.h 2016-05-13 12:14:50.759671959 +0200
+@@ -47,7 +47,7 @@
+ int x;
+
+ // Use this as a constructor:
+- friend Lit mkLit(Var var, bool sign = false);
++ //friend Lit mkLit(Var var, bool sign = false);
+
+ bool operator == (Lit p) const { return x == p.x; }
+ bool operator != (Lit p) const { return x != p.x; }
+@@ -55,7 +55,7 @@
+ };
+
+
+-inline Lit mkLit (Var var, bool sign) { Lit p; p.x = var + var + (int)sign; return p; }
++inline Lit mkLit (Var var, bool sign = false) { Lit p; p.x = var + var + (int)sign; return p; }
+ inline Lit operator ~(Lit p) { Lit q; q.x = p.x ^ 1; return q; }
+ inline Lit operator ^(Lit p, bool b) { Lit q; q.x = p.x ^ (unsigned int)b; return q; }
+ inline bool sign (Lit p) { return p.x & 1; }
+diff -aur minisat/utils/Options.h minisat.clang/utils/Options.h
+--- minisat/utils/Options.h 2010-07-10 18:07:36.000000000 +0200
++++ minisat.clang/utils/Options.h 2016-05-13 12:14:50.759671959 +0200
+@@ -282,15 +282,15 @@
+ if (range.begin == INT64_MIN)
+ fprintf(stderr, "imin");
+ else
+- fprintf(stderr, "%4"PRIi64, range.begin);
++ fprintf(stderr, "%4" PRIi64, range.begin);
+
+ fprintf(stderr, " .. ");
+ if (range.end == INT64_MAX)
+ fprintf(stderr, "imax");
+ else
+- fprintf(stderr, "%4"PRIi64, range.end);
++ fprintf(stderr, "%4" PRIi64, range.end);
+
+- fprintf(stderr, "] (default: %"PRIi64")\n", value);
++ fprintf(stderr, "] (default: %" PRIi64 ")\n", value);
+ if (verbose){
+ fprintf(stderr, "\n %s\n", description);
+ fprintf(stderr, "\n");
+Only in minisat.clang/utils: Options.o
+Only in minisat.clang/utils: System.o
diff --git a/pkgs/applications/science/logic/minisat/default.nix b/pkgs/applications/science/logic/minisat/default.nix
index c821020b738..3ed055cc093 100644
--- a/pkgs/applications/science/logic/minisat/default.nix
+++ b/pkgs/applications/science/logic/minisat/default.nix
@@ -9,9 +9,11 @@ stdenv.mkDerivation rec {
sha256 = "023qdnsb6i18yrrawlhckm47q8x0sl7chpvvw3gssfyw3j2pv5cj";
};
+ patches = stdenv.lib.optionals stdenv.cc.isClang [ ./clang.diff ];
+
buildInputs = [ zlib ];
- sourceRoot = "minisat/simp";
+ preBuild = "cd simp";
makeFlags = [ "r" "MROOT=.." ];
installPhase = ''
mkdir -p $out/bin
diff --git a/pkgs/applications/science/logic/proverif/default.nix b/pkgs/applications/science/logic/proverif/default.nix
new file mode 100644
index 00000000000..4f5e9155078
--- /dev/null
+++ b/pkgs/applications/science/logic/proverif/default.nix
@@ -0,0 +1,28 @@
+{ stdenv, fetchurl, ocaml }:
+
+stdenv.mkDerivation rec {
+ name = "proverif-${version}";
+ version = "1.94";
+
+ src = fetchurl {
+ url = "http://prosecco.gforge.inria.fr/personal/bblanche/proverif/proverif${version}.tar.gz";
+ sha256 = "0dv2hgk76y0ap7dwf80qd94dmxjw47c50iavxgq5702k1d6qap56";
+ };
+
+ buildInputs = [ ocaml ];
+
+ buildPhase = "./build";
+ installPhase = ''
+ mkdir -p $out/bin
+ cp ./proverif $out/bin
+ cp ./proveriftotex $out/bin
+ '';
+
+ meta = {
+ description = "Cryptographic protocol verifier in the Dolev-Yao model";
+ homepage = "http://prosecco.gforge.inria.fr/personal/bblanche/proverif/";
+ license = stdenv.lib.licenses.gpl2;
+ platforms = stdenv.lib.platforms.unix;
+ maintainers = [ stdenv.lib.maintainers.thoughtpolice ];
+ };
+}
diff --git a/pkgs/applications/science/logic/spass/default.nix b/pkgs/applications/science/logic/spass/default.nix
index 24da52b9d07..2bb2b911d49 100644
--- a/pkgs/applications/science/logic/spass/default.nix
+++ b/pkgs/applications/science/logic/spass/default.nix
@@ -1,8 +1,11 @@
-{ stdenv, fetchurl }:
+{ stdenv, fetchurl, bison, flex }:
let
baseVersion="3";
- minorVersion="7";
+ minorVersion="9";
+
+ extraTools = "FLOTTER prolog2dfg dfg2otter dfg2dimacs dfg2tptp"
+ + " dfg2ascii dfg2dfg tptp2dfg dimacs2dfg pgen rescmp";
in
stdenv.mkDerivation rec {
@@ -11,16 +14,28 @@ stdenv.mkDerivation rec {
src = fetchurl {
url = "http://www.spass-prover.org/download/sources/spass${baseVersion}${minorVersion}.tgz";
- sha256 = "1k5a98kr3vzga54zs7slwwaaf6v6agk1yfcayd8bl55q15g7xihk";
+ sha256 = "11cyn3kcff4r79rsw2s0xm6rdb8bi0kpkazv2b48jhcms7xw75qp";
};
+ sourceRoot = ".";
+
+ nativeBuildInputs = [ bison flex ];
+
+ buildPhase = ''
+ make RM="rm -f" proparser.c ${extraTools} opt
+ '';
+ installPhase = ''
+ mkdir -p $out/bin
+ install -m0755 SPASS ${extraTools} $out/bin/
+ '';
+
meta = with stdenv.lib; {
- description = "An automated theorem preover for FOL";
+ description = "Automated theorem prover for first-order logic";
maintainers = with maintainers;
[
raskin
];
- platforms = platforms.linux;
+ platforms = platforms.unix;
license = licenses.bsd2;
downloadPage = "http://www.spass-prover.org/download/index.html";
};
diff --git a/pkgs/applications/science/logic/statverif/default.nix b/pkgs/applications/science/logic/statverif/default.nix
new file mode 100644
index 00000000000..9e51849a93b
--- /dev/null
+++ b/pkgs/applications/science/logic/statverif/default.nix
@@ -0,0 +1,34 @@
+{ stdenv, fetchurl, ocaml }:
+
+stdenv.mkDerivation rec {
+ name = "statverif-${version}";
+ version = "1.86pl4";
+
+ src = fetchurl {
+ url = "http://prosecco.gforge.inria.fr/personal/bblanche/proverif/proverif${version}.tar.gz";
+ sha256 = "163vdcixs764jj8xa08w80qm4kcijf7xj911yp8jvz6pi1q5g13i";
+ };
+
+ pf-patch = fetchurl {
+ url = "http://markryan.eu/research/statverif/files/proverif-${version}-statverif-2657ab4.patch";
+ sha256 = "113jjhi1qkcggbsmbw8fa9ln8vs7vy2r288szks7rn0jjn0wxmbw";
+ };
+
+ buildInputs = [ ocaml ];
+
+ patchPhase = "patch -p1 < ${pf-patch}";
+ buildPhase = "./build";
+ installPhase = ''
+ mkdir -p $out/bin
+ cp ./proverif $out/bin/statverif
+ cp ./proveriftotex $out/bin/statveriftotex
+ '';
+
+ meta = {
+ description = "Verification of stateful processes (via Proverif)";
+ homepage = "http://markryan.eu/research/statverif/";
+ license = stdenv.lib.licenses.gpl2;
+ platforms = stdenv.lib.platforms.unix;
+ maintainers = [ stdenv.lib.maintainers.thoughtpolice ];
+ };
+}
diff --git a/pkgs/applications/science/logic/tptp/default.nix b/pkgs/applications/science/logic/tptp/default.nix
index f3cd8ab6927..e9a89bc0dc6 100644
--- a/pkgs/applications/science/logic/tptp/default.nix
+++ b/pkgs/applications/science/logic/tptp/default.nix
@@ -9,7 +9,7 @@ stdenv.mkDerivation rec {
"http://www.cs.miami.edu/~tptp/TPTP/Distribution/TPTP-v${version}.tgz"
"http://www.cs.miami.edu/~tptp/TPTP/Archive/TPTP-v${version}/TPTP-v${version}.tgz"
];
- sha256 = "17wl80mnm91jp3npdjzfbb8ds45f2gni250jlfw0d91i1476wcl3";
+ sha256 = "0xy4cqniyx9fv8r9mc5q5b7xl163pkr9hcmpq6gkls2a0pvg07w9";
};
buildInputs = [ tcsh yap perl patchelf ];
diff --git a/pkgs/applications/science/math/LiE/default.nix b/pkgs/applications/science/math/LiE/default.nix
new file mode 100644
index 00000000000..233f44b44cc
--- /dev/null
+++ b/pkgs/applications/science/math/LiE/default.nix
@@ -0,0 +1,47 @@
+{ stdenv, fetchurl
+, bison, readline }:
+
+stdenv.mkDerivation rec {
+ version = "2.2.2";
+ # The current version of LiE is 2.2.2, which is more or less unchanged
+ # since about the year 2000. Minor bugfixes do get applied now and then.
+ name = "LiE-${version}";
+
+ meta = {
+ description = "A Computer algebra package for Lie group computations";
+ homepage = "http://wwwmathlabo.univ-poitiers.fr/~maavl/LiE/";
+ license = stdenv.lib.licenses.lgpl3; # see the website
+
+ longDescription = ''
+ LiE is a computer algebra system that is specialised in computations
+ involving (reductive) Lie groups and their representations. It is
+ publically available for free in source code. For a description of its
+ characteristics, we refer to the following sources of information.
+ ''; # take from the website
+
+ platforms = stdenv.lib.platforms.unix;
+ maintainers = [ ]; # this package is probably not going to change anyway
+ };
+
+ src = fetchurl {
+ url = "http://wwwmathlabo.univ-poitiers.fr/~maavl/LiE/conLiE.tar.gz";
+ sha256 = "07lbj75qqr4pq1j1qz8fyfnmrz1gnk92lnsshxycfavxl5zzdmn4";
+ };
+
+ buildInputs = [ bison readline ];
+
+ patchPhase = ''
+ substituteInPlace make_lie \
+ --replace \`/bin/pwd\` $out
+ '';
+
+ installPhase = ''
+ mkdir -vp $out/bin
+
+ cp -v Lie.exe $out
+ cp -v lie $out/bin
+
+ cp -v LEARN LEARN.ind $out
+ cp -v INFO.ind INFO.[0-4] $out
+ '';
+}
diff --git a/pkgs/applications/science/math/gmsh/CMakeLists.txt.patch b/pkgs/applications/science/math/gmsh/CMakeLists.txt.patch
new file mode 100644
index 00000000000..0326a8d296a
--- /dev/null
+++ b/pkgs/applications/science/math/gmsh/CMakeLists.txt.patch
@@ -0,0 +1,37 @@
+--- a/CMakeLists.txt
++++ b/CMakeLists.txt
+@@ -324,25 +324,16 @@
+ set_config_option(HAVE_BLAS "Blas(IntelMKL)")
+ set_config_option(HAVE_LAPACK "Lapack(IntelMKL)")
+ else(LAPACK_LIBRARIES)
+- # on Linux also try to find ATLAS without a Fortran compiler, because
+- # cmake ships with a buggy FindBLAS e.g. on Ubuntu Lucid Lynx
+- set(ATLAS_LIBS_REQUIRED lapack f77blas cblas atlas)
+- find_all_libraries(LAPACK_LIBRARIES ATLAS_LIBS_REQUIRED "" "")
++ # try with generic names
++ set(GENERIC_LIBS_REQUIRED lapack blas pthread)
++ find_all_libraries(LAPACK_LIBRARIES GENERIC_LIBS_REQUIRED "" "")
+ if(LAPACK_LIBRARIES)
+- set_config_option(HAVE_BLAS "Blas(ATLAS)")
+- set_config_option(HAVE_LAPACK "Lapack(ATLAS)")
+- else(LAPACK_LIBRARIES)
+- # try with generic names
+- set(GENERIC_LIBS_REQUIRED lapack blas pthread)
+- find_all_libraries(LAPACK_LIBRARIES GENERIC_LIBS_REQUIRED "" "")
+- if(LAPACK_LIBRARIES)
+- set_config_option(HAVE_BLAS "Blas(Generic)")
+- set_config_option(HAVE_LAPACK "Lapack(Generic)")
+- find_library(GFORTRAN_LIB gfortran)
+- if(GFORTRAN_LIB)
+- list(APPEND LAPACK_LIBRARIES ${GFORTRAN_LIB})
+- endif(GFORTRAN_LIB)
+- endif(LAPACK_LIBRARIES)
++ set_config_option(HAVE_BLAS "Blas(Generic)")
++ set_config_option(HAVE_LAPACK "Lapack(Generic)")
++ find_library(GFORTRAN_LIB gfortran)
++ if(GFORTRAN_LIB)
++ list(APPEND LAPACK_LIBRARIES ${GFORTRAN_LIB})
++ endif(GFORTRAN_LIB)
+ endif(LAPACK_LIBRARIES)
+ endif(LAPACK_LIBRARIES)
+ elseif(${CMAKE_SYSTEM_NAME} MATCHES "SunOS")
diff --git a/pkgs/applications/science/math/gmsh/default.nix b/pkgs/applications/science/math/gmsh/default.nix
new file mode 100644
index 00000000000..b5596120592
--- /dev/null
+++ b/pkgs/applications/science/math/gmsh/default.nix
@@ -0,0 +1,29 @@
+{ stdenv, fetchurl, cmake, blas, liblapack, gfortran, fltk, libjpeg
+, zlib, mesa, mesa_glu, xorg }:
+
+let version = "2.12.0"; in
+
+stdenv.mkDerivation {
+ name = "gmsh-${version}";
+
+ src = fetchurl {
+ url = "http://gmsh.info/src/gmsh-${version}-source.tgz";
+ sha256 = "02cx2mfbxx6m18s54z4yzbk4ybch3v9489z7cr974y8y0z42xgbz";
+ };
+
+ # The original CMakeLists tries to use some version of the Lapack lib
+ # that is supposed to work without Fortran but didn't for me.
+ patches = [ ./CMakeLists.txt.patch ];
+
+ buildInputs = [ cmake blas liblapack gfortran fltk libjpeg zlib mesa
+ mesa_glu xorg.libXrender xorg.libXcursor xorg.libXfixes xorg.libXext
+ xorg.libXft xorg.libXinerama xorg.libX11 xorg.libSM xorg.libICE
+ ];
+
+ meta = {
+ description = "A three-dimensional finite element mesh generator";
+ homepage = http://gmsh.info/;
+ platforms = stdenv.lib.platforms.all;
+ license = stdenv.lib.licenses.gpl2Plus;
+ };
+}
diff --git a/pkgs/applications/science/math/msieve/default.nix b/pkgs/applications/science/math/msieve/default.nix
index c8b388a06b7..5a6d3dd5404 100644
--- a/pkgs/applications/science/math/msieve/default.nix
+++ b/pkgs/applications/science/math/msieve/default.nix
@@ -20,7 +20,7 @@ stdenv.mkDerivation {
cp msieve $out/bin/'';
meta = {
- description = "a C library implementing a suite of algorithms to factor large integers";
+ description = "A C library implementing a suite of algorithms to factor large integers";
license = stdenv.lib.licenses.publicDomain;
homepage = http://msieve.sourceforge.net/;
maintainers = [ stdenv.lib.maintainers.roconnor ];
diff --git a/pkgs/applications/science/math/pssp/default.nix b/pkgs/applications/science/math/pssp/default.nix
index 4a126797d69..6ced805b311 100644
--- a/pkgs/applications/science/math/pssp/default.nix
+++ b/pkgs/applications/science/math/pssp/default.nix
@@ -19,7 +19,7 @@ stdenv.mkDerivation rec {
meta = {
homepage = "http://www.gnu.org/software/pspp/";
- description = "a free replacement for SPSS, a program for statistical analysis of sampled data";
+ description = "A free replacement for SPSS, a program for statistical analysis of sampled data";
license = stdenv.lib.licenses.gpl3Plus;
longDescription = ''
diff --git a/pkgs/applications/science/math/qalculate-gtk/default.nix b/pkgs/applications/science/math/qalculate-gtk/default.nix
index d27f998b793..72a31fb5764 100644
--- a/pkgs/applications/science/math/qalculate-gtk/default.nix
+++ b/pkgs/applications/science/math/qalculate-gtk/default.nix
@@ -1,21 +1,21 @@
-{ stdenv, fetchurl, intltool, pkgconfig, libqalculate, gtk, gnome2 }:
+{ stdenv, fetchurl, intltool, autoreconfHook, pkgconfig, libqalculate, gtk3, wrapGAppsHook }:
stdenv.mkDerivation rec {
name = "qalculate-gtk-${version}";
- version = "0.9.7";
+ version = "0.9.8";
src = fetchurl {
- url = "mirror://sourceforge/qalculate/${name}.tar.gz";
- sha256 = "0b986x5yny9vrzgxlbyg80b23mxylxv2zz8ppd9svhva6vi8xsm4";
+ url = "https://github.com/Qalculate/qalculate-gtk/archive/v${version}.tar.gz";
+ sha256 = "15ci0p7jlikk2rira6ykgrmcdvgpxzprpqmkdxx6hsg4pvzrj54s";
};
hardeningDisable = [ "format" ];
- nativeBuildInputs = [ intltool pkgconfig ];
- buildInputs = [ libqalculate gtk gnome2.libglade gnome2.libgnome gnome2.scrollkeeper ];
+ nativeBuildInputs = [ intltool pkgconfig autoreconfHook wrapGAppsHook ];
+ buildInputs = [ libqalculate gtk3 ];
meta = with stdenv.lib; {
description = "The ultimate desktop calculator";
- homepage = http://qalculate.sourceforge.net;
+ homepage = http://qalculate.github.io;
maintainers = with maintainers; [ gebner ];
platforms = platforms.all;
};
diff --git a/pkgs/applications/science/math/speedcrunch/default.nix b/pkgs/applications/science/math/speedcrunch/default.nix
index 66292499f2b..56ae454831b 100644
--- a/pkgs/applications/science/math/speedcrunch/default.nix
+++ b/pkgs/applications/science/math/speedcrunch/default.nix
@@ -1,30 +1,22 @@
{ stdenv, fetchurl, qt, cmake }:
stdenv.mkDerivation rec {
- name = "speedcrunch-0.11-alpha";
+ name = "speedcrunch-${version}";
+ version = "0.11";
src = fetchurl {
- url = "http://speedcrunch.googlecode.com/files/${name}.tar.gz";
- sha256 = "c6d6328e0c018cd8b98a0e86fb6c49fedbab5dcc831b47fbbc1537730ff80882";
+ url = "https://bitbucket.org/heldercorreia/speedcrunch/get/${version}.tar.gz";
+ sha256 = "0phba14z9jmbmax99klbxnffwzv3awlzyhpcwr1c9lmyqnbcsnkd";
};
- patches = [./speedcrunch-0.11-alpha-dso_linking.patch];
-
buildInputs = [cmake qt];
dontUseCmakeBuildDir = true;
- cmakeDir = "../src";
-
- preConfigure = ''
- mkdir -p build
- cd build
- '';
-
- buildFlags = "VERBOSE=1";
+ cmakeDir = "src";
meta = with stdenv.lib; {
- homepage = "http://speedcrunch.digitalfanatics.org";
+ homepage = http://speedcrunch.org;
license = licenses.gpl2Plus;
description = "A fast power user calculator";
longDescription = ''
@@ -33,6 +25,8 @@ stdenv.mkDerivation rec {
precisions, unlimited variable storage, intelligent automatic completion
full keyboard-friendly and more than 15 built-in math function.
'';
+ maintainers = with maintainers; [ gebner ];
+ platforms = platforms.all;
};
}
diff --git a/pkgs/applications/science/math/speedcrunch/speedcrunch-0.11-alpha-dso_linking.patch b/pkgs/applications/science/math/speedcrunch/speedcrunch-0.11-alpha-dso_linking.patch
deleted file mode 100644
index 1b03c16b63d..00000000000
--- a/pkgs/applications/science/math/speedcrunch/speedcrunch-0.11-alpha-dso_linking.patch
+++ /dev/null
@@ -1,23 +0,0 @@
-diff -up speedcrunch-0.11-alpha/src/CMakeLists.txt.dso_linking speedcrunch-0.11-alpha/src/CMakeLists.txt
---- speedcrunch-0.11-alpha/src/CMakeLists.txt.dso_linking 2009-11-04 15:37:15.000000000 -0600
-+++ speedcrunch-0.11-alpha/src/CMakeLists.txt 2010-06-25 13:25:07.133460528 -0500
-@@ -54,6 +54,10 @@ ENDIF(CMAKE_COMPILER_IS_GNUCXX )
- SET(QT_USE_QTNETWORK TRUE)
- #SET(QT_USE_QTXML TRUE)
- find_package(Qt4 REQUIRED)
-+if (Q_WS_X11)
-+ find_package(X11 REQUIRED)
-+endif (Q_WS_X11)
-+
- include(${QT_USE_FILE})
-
- # build everything
-@@ -80,7 +84,7 @@ ENDIF( APPLE )
-
- ADD_CUSTOM_TARGET( confclean COMMAND rm -rf Makefile CMakeFiles/ CMakeCache.txt cmake_install.cmake DartTestfile.txt install_manifest.txt )
-
--TARGET_LINK_LIBRARIES(${PROGNAME} ${QT_LIBRARIES})
-+TARGET_LINK_LIBRARIES(${PROGNAME} ${QT_LIBRARIES} ${X11_X11_LIB} )
- # only needed for static builds when directx is enabled in qt and you
- # get a linker error because of missing a directx function
- #IF(WIN32)
diff --git a/pkgs/applications/science/math/weka/default.nix b/pkgs/applications/science/math/weka/default.nix
index 3d59898098c..78ed209b1f6 100644
--- a/pkgs/applications/science/math/weka/default.nix
+++ b/pkgs/applications/science/math/weka/default.nix
@@ -1,32 +1,34 @@
{ stdenv, fetchurl, jre, unzip }:
-stdenv.mkDerivation {
- name = "weka-3.6.12";
-
+stdenv.mkDerivation rec {
+ name = "weka-${version}";
+ version = "3.8.0";
+
src = fetchurl {
- url = "mirror://sourceforge/weka/weka-3-6-12.zip";
- sha256 = "0sdhiv1nr5rxgjry05srsnynsydkyny79zvaxdj6dk8m1768qksh";
+ url = "mirror://sourceforge/weka/${stdenv.lib.replaceChars ["."]["-"] name}.zip";
+ sha256 = "2586298688059a025e2810b1ffc73f4fb3cf81ebf2183d8d19b0763d33857f61";
};
buildInputs = [ unzip ];
-
+
# The -Xmx1000M comes suggested from their download page:
# http://www.cs.waikato.ac.nz/ml/weka/downloading.html
installPhase = ''
mkdir -pv $out/share/weka $out/bin
cp -Rv * $out/share/weka
-
+
cat > $out/bin/weka << EOF
#!${stdenv.shell}
${jre}/bin/java -Xmx1000M -jar $out/share/weka/weka.jar
EOF
-
+
chmod +x $out/bin/weka
'';
-
+
meta = {
homepage = "http://www.cs.waikato.ac.nz/ml/weka/";
description = "Collection of machine learning algorithms for data mining tasks";
license = stdenv.lib.licenses.gpl2Plus;
+ maintainer = [stdenv.lib.maintainers.mimadrid];
};
}
diff --git a/pkgs/applications/science/misc/cytoscape/default.nix b/pkgs/applications/science/misc/cytoscape/default.nix
new file mode 100644
index 00000000000..108a089d981
--- /dev/null
+++ b/pkgs/applications/science/misc/cytoscape/default.nix
@@ -0,0 +1,33 @@
+{ stdenv, fetchurl, jre, makeWrapper }:
+
+stdenv.mkDerivation rec {
+ name = "cytoscape-${version}";
+ version = "3.4.0";
+
+ src = fetchurl {
+ url = "http://chianti.ucsd.edu/${name}/${name}.tar.gz";
+ sha256 = "065fsqa01w7j85nljwwc0677lfw112xphnyn1c4hb04166q082p2";
+ };
+
+ buildInputs = [jre makeWrapper];
+
+ installPhase = ''
+ mkdir -pv $out/{share,bin}
+ cp -Rv * $out/share/
+
+ ln -s $out/share/cytoscape.sh $out/bin/cytoscape
+
+ wrapProgram $out/share/gen_vmoptions.sh \
+ --set JAVA_HOME "${jre}" \
+ --set JAVA "${jre}/bin/java"
+
+ chmod +x $out/bin/cytoscape
+ '';
+
+ meta = {
+ homepage = "http://www.cytoscape.org";
+ description = "A general platform for complex network analysis and visualization";
+ license = stdenv.lib.licenses.lgpl21;
+ maintainers = [stdenv.lib.maintainers.mimadrid];
+ };
+}
diff --git a/pkgs/applications/science/misc/gephi/default.nix b/pkgs/applications/science/misc/gephi/default.nix
new file mode 100644
index 00000000000..6736ce75897
--- /dev/null
+++ b/pkgs/applications/science/misc/gephi/default.nix
@@ -0,0 +1,37 @@
+{stdenv, fetchurl, jdk}:
+
+with stdenv.lib;
+
+let version = "0.9.1"; in
+stdenv.mkDerivation {
+ name = "gephi-${version}";
+
+ src = fetchurl {
+ url = "https://github.com/gephi/gephi/releases/download/v${version}/gephi-${version}-linux.tar.gz";
+ sha256 = "f1d54157302df05a53b94e1518880c949c43ba4ab21e52d57f3edcbdaa06c7ee";
+ };
+
+ meta = {
+ inherit version;
+ description = "A platform for visualizing and manipulating large graphs";
+ homepage = https://gephi.org;
+ license = licenses.gpl3;
+ maintainers = [maintainers.taeer];
+ platforms = platforms.linux;
+ };
+
+ buildInputs = [jdk];
+
+ configurePhase = "
+ echo \"jdkhome=${jdk}\" >> etc/gephi.conf
+ ";
+
+ dontBuild = true;
+
+ installPhase = "
+ mkdir $out
+ for a in ./*; do
+ mv $a $out
+ done
+ ";
+}
diff --git a/pkgs/applications/science/robotics/qgroundcontrol/default.nix b/pkgs/applications/science/robotics/qgroundcontrol/default.nix
index b67da5b5516..81f5accd478 100644
--- a/pkgs/applications/science/robotics/qgroundcontrol/default.nix
+++ b/pkgs/applications/science/robotics/qgroundcontrol/default.nix
@@ -27,6 +27,11 @@ stdenv.mkDerivation rec {
] ++ qtInputs;
patches = [ ./0001-fix-gcc-cmath-namespace-issues.patch ];
+ postPatch = ''
+ sed '1i#include ' -i src/Vehicle/Vehicle.cc \
+ -i src/comm/{QGCFlightGearLink,QGCJSBSimLink}.cc \
+ -i src/{uas/UAS,ui/QGCDataPlot2D}.cc
+ '';
preConfigure = ''
mkdir build
@@ -79,7 +84,7 @@ stdenv.mkDerivation rec {
};
meta = {
- description = "provides full ground station support and configuration for the PX4 and APM Flight Stacks";
+ description = "Provides full ground station support and configuration for the PX4 and APM Flight Stacks";
homepage = http://qgroundcontrol.org/;
license = stdenv.lib.licenses.gpl3Plus;
platforms = with stdenv.lib.platforms; linux;
diff --git a/pkgs/applications/search/catfish/default.nix b/pkgs/applications/search/catfish/default.nix
index 795d804038d..bad10a8607a 100644
--- a/pkgs/applications/search/catfish/default.nix
+++ b/pkgs/applications/search/catfish/default.nix
@@ -3,13 +3,13 @@
pythonPackages.buildPythonApplication rec {
majorver = "1.4";
- minorver = "1";
+ minorver = "2";
version = "${majorver}.${minorver}";
name = "catfish-${version}";
src = fetchurl {
url = "https://launchpad.net/catfish-search/${majorver}/${version}/+download/${name}.tar.bz2";
- sha256 = "0dc9xq1l1w22xk1hg63mgwr0920jqxrwfzmkhif01yms1m7vfdv8";
+ sha256 = "0j3by9yfs4j9za3s5qdxrsm7idmps69pimc9d0mjyakvviy0izm3";
};
nativeBuildInputs = [
@@ -25,7 +25,7 @@ pythonPackages.buildPythonApplication rec {
gnome3.dconf
pythonPackages.pyxdg
pythonPackages.ptyprocess
- pycairo
+ pythonPackages.pycairo
];
propagatedBuildInputs = [
@@ -34,8 +34,9 @@ pythonPackages.buildPythonApplication rec {
xdg_utils
findutils
];
-
+
preFixup = ''
+ rm "$out/${pythonPackages.python.sitePackages}/catfish_lib/catfishconfig.pyc"
for f in \
"$out/${pythonPackages.python.sitePackages}/catfish_lib/catfishconfig.py" \
"$out/share/applications/catfish.desktop"
diff --git a/pkgs/applications/version-management/bazaar/add_certificates.patch b/pkgs/applications/version-management/bazaar/add_certificates.patch
index 332f42aa89c..18fac36daec 100644
--- a/pkgs/applications/version-management/bazaar/add_certificates.patch
+++ b/pkgs/applications/version-management/bazaar/add_certificates.patch
@@ -1,11 +1,11 @@
-diff -ru orig/bzrlib/transport/http/_urllib2_wrappers.py bzr-2.6.0/bzrlib/transport/http/_urllib2_wrappers.py
---- orig/bzrlib/transport/http/_urllib2_wrappers.py 2013-07-27 13:50:53.000000000 +0200
-+++ bzr-2.6.0/bzrlib/transport/http/_urllib2_wrappers.py 2014-02-04 18:34:15.838622492 +0100
-@@ -86,6 +86,7 @@
- u"/usr/local/share/certs/ca-root-nss.crt", # FreeBSD
+diff -ru orig/bzrlib/transport/http/_urllib2_wrappers.py bzr-2.7.0/bzrlib/transport/http/_urllib2_wrappers.py
+--- orig/bzr-2.7.0/bzrlib/transport/http/_urllib2_wrappers.py 2016-02-01 20:49:17.000000000 +0100
++++ bzr-2.7.0/bzrlib/transport/http/_urllib2_wrappers.py 2016-06-18 23:15:21.089511349 +0200
+@@ -95,6 +95,7 @@
+ u"/usr/local/share/certs/ca-root-nss.crt", # FreeBSD
# XXX: Needs checking, can't trust the interweb ;) -- vila 2012-01-25
- u'/etc/openssl/certs/ca-certificates.crt', # Solaris
+ u'/etc/openssl/certs/ca-certificates.crt', # Solaris
+ u'@certPath@',
- ]
- def default_ca_certs():
- if sys.platform == 'win32':
+ ]
+
+
diff --git a/pkgs/applications/version-management/bazaar/default.nix b/pkgs/applications/version-management/bazaar/default.nix
index 28406cecbb0..29dee3f03c5 100644
--- a/pkgs/applications/version-management/bazaar/default.nix
+++ b/pkgs/applications/version-management/bazaar/default.nix
@@ -1,13 +1,13 @@
{ stdenv, fetchurl, pythonPackages }:
stdenv.mkDerivation rec {
- version = "2.6";
+ version = "2.7";
release = ".0";
name = "bazaar-${version}${release}";
src = fetchurl {
- url = "http://launchpad.net/bzr/${version}/${version}${release}/+download/bzr-${version}${release}.tar.gz";
- sha256 = "1c6sj77h5f97qimjc14kr532kgc0jk3wq778xrkqi0pbh9qpk509";
+ url = "https://launchpad.net/bzr/${version}/${version}${release}/+download/bzr-${version}${release}.tar.gz";
+ sha256 = "1cysix5k3wa6y7jjck3ckq3abls4gvz570s0v0hxv805nwki4i8d";
};
buildInputs = [ pythonPackages.python pythonPackages.wrapPython ];
diff --git a/pkgs/applications/version-management/git-and-tools/default.nix b/pkgs/applications/version-management/git-and-tools/default.nix
index 0732b0d7329..1aafb0aa99a 100644
--- a/pkgs/applications/version-management/git-and-tools/default.nix
+++ b/pkgs/applications/version-management/git-and-tools/default.nix
@@ -23,6 +23,8 @@ rec {
darcsToGit = callPackage ./darcs-to-git { };
+ diff-so-fancy = callPackage ./diff-so-fancy { };
+
git = appendToName "minimal" gitBase;
# The full-featured Git.
diff --git a/pkgs/applications/version-management/git-and-tools/diff-so-fancy/default.nix b/pkgs/applications/version-management/git-and-tools/diff-so-fancy/default.nix
new file mode 100644
index 00000000000..8f96f36cf86
--- /dev/null
+++ b/pkgs/applications/version-management/git-and-tools/diff-so-fancy/default.nix
@@ -0,0 +1,49 @@
+{stdenv, git, perl, ncurses, coreutils, fetchFromGitHub, makeWrapper, ...}:
+
+stdenv.mkDerivation rec {
+ name = "diff-so-fancy-${version}";
+ version = "0.10.0";
+
+ # perl is needed here so patchShebangs can do its job
+ buildInputs = [perl makeWrapper];
+
+ src = fetchFromGitHub {
+ owner = "so-fancy";
+ repo = "diff-so-fancy";
+ rev = "v${version}";
+ sha256 = "08dv9xlrsyjr1ylm83lbsv2p5asfia4ib97bwgcacsdxxh5zyqh9";
+ };
+
+ buildPhase = null;
+
+ installPhase = ''
+ mkdir -p $out/bin $out/lib/diff-so-fancy
+
+ # diff-so-fancy executable searches for it's library relative to
+ # itself, so we are copying executable to lib, and only symlink it
+ # from bin/
+ cp diff-so-fancy $out/lib/diff-so-fancy
+ cp -r lib $out/lib/diff-so-fancy
+ ln -s $out/lib/diff-so-fancy/diff-so-fancy $out/bin
+
+ # ncurses is needed for `tput`
+ wrapProgram $out/lib/diff-so-fancy/diff-so-fancy \
+ --prefix PATH : "${git}/share/git/contrib/diff-highlight" \
+ --prefix PATH : "${git}/bin" \
+ --prefix PATH : "${coreutils}/bin" \
+ --prefix PATH : "${ncurses.out}/bin"
+ '';
+
+ meta = {
+ homepage = https://github.com/so-fancy/diff-so-fancy;
+ description = "Good-looking diffs filter for git";
+ license = stdenv.lib.licenses.mit;
+
+ longDescription = ''
+ diff-so-fancy builds on the good-lookin' output of git contrib's
+ diff-highlight to upgrade your diffs' appearances.
+ '';
+
+ platforms = stdenv.lib.platforms.all;
+ };
+}
diff --git a/pkgs/applications/version-management/git-and-tools/git-crypt/default.nix b/pkgs/applications/version-management/git-and-tools/git-crypt/default.nix
index 8e537c32313..5ce665dda0f 100644
--- a/pkgs/applications/version-management/git-and-tools/git-crypt/default.nix
+++ b/pkgs/applications/version-management/git-and-tools/git-crypt/default.nix
@@ -21,7 +21,7 @@ stdenv.mkDerivation rec {
meta = with stdenv.lib; {
homepage = "https://www.agwa.name/projects/git-crypt";
- description = "transparent file encryption in git";
+ description = "Transparent file encryption in git";
longDescription = ''
git-crypt enables transparent encryption and decryption of files in a git
repository. Files which you choose to protect are encrypted when
diff --git a/pkgs/applications/version-management/git-and-tools/git-extras/default.nix b/pkgs/applications/version-management/git-and-tools/git-extras/default.nix
index aa62fbc4d16..ba53994d44c 100644
--- a/pkgs/applications/version-management/git-and-tools/git-extras/default.nix
+++ b/pkgs/applications/version-management/git-and-tools/git-extras/default.nix
@@ -2,11 +2,11 @@
stdenv.mkDerivation rec {
name = "git-extras-${version}";
- version = "3.0.0";
+ version = "4.1.0";
src = fetchurl {
url = "https://github.com/tj/git-extras/archive/${version}.tar.gz";
- sha256 = "01x8n9i5sgl1s53sgglg9sd9lyp35dhvdhwlx03yimi4i11441s9";
+ sha256 = "d4c028e2fe78abde8f3e640b70f431318fb28d82894dde22772efe8ba3563f85";
};
phases = [ "unpackPhase" "installPhase" ];
@@ -18,6 +18,6 @@ stdenv.mkDerivation rec {
description = "GIT utilities -- repo summary, repl, changelog population, author commit percentages and more";
license = licenses.mit;
platforms = platforms.all;
- maintainers = [ maintainers.spwhitt ];
+ maintainers = [ maintainers.spwhitt maintainers.cko ];
};
}
diff --git a/pkgs/applications/version-management/git-and-tools/git-remote-hg/default.nix b/pkgs/applications/version-management/git-and-tools/git-remote-hg/default.nix
index 86a11d04ed7..e90fc9ad258 100644
--- a/pkgs/applications/version-management/git-and-tools/git-remote-hg/default.nix
+++ b/pkgs/applications/version-management/git-and-tools/git-remote-hg/default.nix
@@ -28,7 +28,7 @@ stdenv.mkDerivation rec {
meta = with stdenv.lib; {
homepage = "https://github.com/felipec/git-remote-hg";
- description = "semi-official Mercurial bridge from Git project, once installed, it allows you to clone, fetch and push to and from Mercurial repositories as if they were Git ones";
+ description = "Semi-official Mercurial bridge from Git project, once installed, it allows you to clone, fetch and push to and from Mercurial repositories as if they were Git ones";
license = licenses.gpl2;
maintainers = [ maintainers.garbas ];
};
diff --git a/pkgs/applications/version-management/git-and-tools/git/default.nix b/pkgs/applications/version-management/git-and-tools/git/default.nix
index 9c6f274d82b..17a5e3b394b 100644
--- a/pkgs/applications/version-management/git-and-tools/git/default.nix
+++ b/pkgs/applications/version-management/git-and-tools/git/default.nix
@@ -10,7 +10,7 @@
}:
let
- version = "2.8.3";
+ version = "2.9.1";
svn = subversionClient.override { perlBindings = true; };
in
@@ -19,7 +19,7 @@ stdenv.mkDerivation {
src = fetchurl {
url = "https://www.kernel.org/pub/software/scm/git/git-${version}.tar.xz";
- sha256 = "14dafk7rz8cy2z5b92yf009qf4pc70s0viwq7hxsgd4898knr3kx";
+ sha256 = "18l2jb4bkp9ljz6p2aviwzxqyzza9z3v6h1pnkz7kjf1fay61zp8";
};
hardeningDisable = [ "format" ];
@@ -39,7 +39,7 @@ stdenv.mkDerivation {
done
'';
- buildInputs = [curl openssl zlib expat gettext cpio makeWrapper libiconv]
+ buildInputs = [curl openssl zlib expat gettext cpio makeWrapper libiconv perl]
++ stdenv.lib.optionals withManual [ asciidoc texinfo xmlto docbook2x
docbook_xsl docbook_xml_dtd_45 libxslt ]
++ stdenv.lib.optionals guiSupport [tcl tk];
diff --git a/pkgs/applications/version-management/git-and-tools/git2cl/default.nix b/pkgs/applications/version-management/git-and-tools/git2cl/default.nix
index 1e372c928f8..ade9ac1312a 100644
--- a/pkgs/applications/version-management/git-and-tools/git2cl/default.nix
+++ b/pkgs/applications/version-management/git-and-tools/git2cl/default.nix
@@ -17,6 +17,6 @@ stdenv.mkDerivation {
meta = {
homepage = "http://josefsson.org/git2cl/";
- description = "convert git logs to GNU style ChangeLog files";
+ description = "Convert git logs to GNU style ChangeLog files";
};
}
diff --git a/pkgs/applications/version-management/meld/default.nix b/pkgs/applications/version-management/meld/default.nix
index d25decf35eb..3da377414d4 100644
--- a/pkgs/applications/version-management/meld/default.nix
+++ b/pkgs/applications/version-management/meld/default.nix
@@ -4,8 +4,8 @@
let
- minor = "3.14";
- version = "${minor}.0";
+ minor = "3.16";
+ version = "${minor}.1";
in
buildPythonApplication rec {
@@ -14,7 +14,7 @@ buildPythonApplication rec {
src = fetchurl {
url = "mirror://gnome/sources/meld/${minor}/meld-${version}.tar.xz";
- sha256 = "0g0h9wdr6nqdalqkz4r037569apw253cklwr17x0zjc7nwv2j3j3";
+ sha256 = "1bec697aa1ababa315ca8241ade65dc68ea87f0d316632f590975afcf967cfab";
};
buildInputs = [
@@ -55,5 +55,6 @@ buildPythonApplication rec {
homepage = http://meldmerge.org/;
license = stdenv.lib.licenses.gpl2;
platforms = platforms.linux ++ stdenv.lib.platforms.darwin;
+ maintainers = [ maintainers.mimadrid ];
};
}
diff --git a/pkgs/applications/version-management/mercurial/default.nix b/pkgs/applications/version-management/mercurial/default.nix
index f0ffffde5fa..f2e47178775 100644
--- a/pkgs/applications/version-management/mercurial/default.nix
+++ b/pkgs/applications/version-management/mercurial/default.nix
@@ -12,7 +12,7 @@ stdenv.mkDerivation {
inherit name;
src = fetchurl {
- url = "http://mercurial.selenic.com/release/${name}.tar.gz";
+ url = "https://mercurial-scm.org/release/${name}.tar.gz";
sha256 = "1zdz42znd6i7c3nf31j0k6frcs68qyniyvcad8k2a1hlarlv2y6b";
};
diff --git a/pkgs/applications/version-management/src/default.nix b/pkgs/applications/version-management/src/default.nix
index f6fdff16204..cfecd96107b 100644
--- a/pkgs/applications/version-management/src/default.nix
+++ b/pkgs/applications/version-management/src/default.nix
@@ -1,21 +1,21 @@
-{ stdenv, fetchurl, python, rcs, git }:
+{ stdenv, fetchurl, python, rcs, git, pylint }:
stdenv.mkDerivation rec {
- name = "src-0.19";
+ name = "src-1.11";
src = fetchurl {
url = "http://www.catb.org/~esr/src/${name}.tar.gz";
- sha256 = "0p56g09ndbmnxxjz2rn7fq3yjx572ywj0xdim9rz5cqnx0pmr71x";
+ sha256 = "07kj0ri0s0vn8s54yvkyzaag332spxs0379r718b80y31c4mgbyl";
};
buildInputs = [ python rcs git ];
- preConfigure = "patchShebangs .";
+ preConfigure = ''
+ patchShebangs .
+ '';
makeFlags = [ "prefix=$(out)" ];
- doCheck = true;
-
meta = {
description = "Simple single-file revision control";
homepage = http://www.catb.org/~esr/src/;
diff --git a/pkgs/applications/video/bomi/default.nix b/pkgs/applications/video/bomi/default.nix
index c017ed4cda3..841fe299430 100644
--- a/pkgs/applications/video/bomi/default.nix
+++ b/pkgs/applications/video/bomi/default.nix
@@ -1,8 +1,9 @@
-{ stdenv, fetchurl, fetchFromGitHub, pkgconfig, perl, python, which, makeQtWrapper
+{ stdenv, fetchFromGitHub, fetchpatch, pkgconfig, perl, python, which, makeQtWrapper
, libX11, libxcb, mesa
, qtbase, qtdeclarative, qtquickcontrols, qttools, qtx11extras, qmakeHook
-, ffmpeg
, libchardet
+, ffmpeg
+
, mpg123
, libass
, libdvdread
@@ -38,11 +39,30 @@ stdenv.mkDerivation rec {
sha256 = "0a7n46gn3n5098lxxvl3s29s8jlkzss6by9074jx94ncn9cayf2h";
};
+ patches = [
+ (fetchpatch rec {
+ name = "bomi-compilation-fix.patch";
+ url = "https://svnweb.mageia.org/packages/cauldron/bomi/current/SOURCES/${name}?revision=995725&view=co&pathrev=995725";
+ sha256 = "1dwryya5ljx35dbx6ag9d3rjjazni2mfn3vwirjdijdy6yz22jm6";
+ })
+ (fetchpatch rec {
+ name = "bomi-fix-expected-unqualified-id-before-numeric-constant-unix.patch";
+ url = "https://svnweb.mageia.org/packages/cauldron/bomi/current/SOURCES/${name}?revision=995725&view=co&pathrev=995725";
+ sha256 = "0n3xsrdrggimzw30gxlnrr088ndbdjqlqr46dzmfv8zan79lv5ri";
+ })
+ ];
+
buildInputs = with stdenv.lib;
- [ libX11 libxcb mesa
- qtbase qtx11extras
+ [ libX11
+ libxcb
+ mesa
+ qtbase
+ qtx11extras
+ qtdeclarative
+ qtquickcontrols
ffmpeg
libchardet
+
mpg123
libass
libdvdread
@@ -53,8 +73,6 @@ stdenv.mkDerivation rec {
libvdpau
libva
libbluray
- qtdeclarative
- qtquickcontrols
]
++ optional jackSupport jack
++ optional portaudioSupport portaudio
diff --git a/pkgs/applications/video/clipgrab/default.nix b/pkgs/applications/video/clipgrab/default.nix
index b8967323c98..26128f44fa2 100644
--- a/pkgs/applications/video/clipgrab/default.nix
+++ b/pkgs/applications/video/clipgrab/default.nix
@@ -2,12 +2,12 @@
stdenv.mkDerivation rec {
name = "clipgrab-${version}";
- version = "3.5.6";
+ version = "3.6.1";
src = fetchurl {
- sha256 = "0wm6hqaq6ydbvvd0fqkfydxd5h7gf4di7lvq63xgxl4z40jqc25n";
+ sha256 = "1pmsnb9yfyadp8kzxldw09wmv2r0wmg9yza9ariqc27jz1j3kpsc";
# The .tar.bz2 "Download" link is a binary blob, the source is the .tar.gz!
- url = "http://download.clipgrab.de/${name}.tar.gz";
+ url = "https://download.clipgrab.org/${name}.tar.gz";
};
buildInputs = [ ffmpeg qt4 ];
@@ -28,7 +28,7 @@ stdenv.mkDerivation rec {
exec = name;
icon = name;
desktopName = "ClipGrab";
- comment = "A friendly downloader for YouTube and other sites";
+ comment = meta.description;
genericName = "Web video downloader";
categories = "Qt;AudioVideo;Audio;Video";
};
@@ -46,7 +46,7 @@ stdenv.mkDerivation rec {
Dailymotion and many other online video sites. It converts downloaded
videos to MPEG4, MP3 or other formats in just one easy step.
'';
- homepage = http://clipgrab.org/;
+ homepage = https://clipgrab.org/;
license = licenses.gpl3Plus;
platforms = platforms.linux;
maintainers = with maintainers; [ nckx ];
diff --git a/pkgs/applications/video/handbrake/default.nix b/pkgs/applications/video/handbrake/default.nix
index d0cd82039f2..351cf5c5211 100644
--- a/pkgs/applications/video/handbrake/default.nix
+++ b/pkgs/applications/video/handbrake/default.nix
@@ -20,7 +20,7 @@
libogg, libtheora, libvorbis, libdvdcss, a52dec, fdk_aac,
lame, faac, ffmpeg, libdvdread, libdvdnav, libbluray,
mp4v2, mpeg2dec, x264, libmkv,
- fontconfig, freetype,
+ fontconfig, freetype, hicolor_icon_theme,
glib, gtk, webkitgtk, intltool, libnotify,
gst_all_1, dbus_glib, udev, libgudev,
useGtk ? true,
@@ -45,7 +45,7 @@ stdenv.mkDerivation rec {
nativeBuildInputs = [ python pkgconfig yasm autoconf automake libtool m4 ];
buildInputs = [
- fribidi fontconfig freetype
+ fribidi fontconfig freetype hicolor_icon_theme
libass libsamplerate libxml2 bzip2
libogg libtheora libvorbis libdvdcss a52dec libmkv fdk_aac
lame ffmpeg libdvdread libdvdnav libbluray mp4v2 mpeg2dec x264
diff --git a/pkgs/applications/video/makemkv/default.nix b/pkgs/applications/video/makemkv/default.nix
index 46b5712ca9a..6a13bcc015a 100644
--- a/pkgs/applications/video/makemkv/default.nix
+++ b/pkgs/applications/video/makemkv/default.nix
@@ -23,7 +23,7 @@ stdenv.mkDerivation rec {
+ ":" + stdenv.cc.cc + "/lib64";
meta = with stdenv.lib; {
- description = "convert blu-ray and dvd to mkv";
+ description = "Convert blu-ray and dvd to mkv";
longDescription = ''
makemkv is a one-click QT application that transcodes an encrypted
blu-ray or DVD disc into a more portable set of mkv files, preserving
diff --git a/pkgs/applications/video/mkvtoolnix/default.nix b/pkgs/applications/video/mkvtoolnix/default.nix
index 4eeb733d978..69e52065419 100644
--- a/pkgs/applications/video/mkvtoolnix/default.nix
+++ b/pkgs/applications/video/mkvtoolnix/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchgit, pkgconfig, autoconf, automake
+{ stdenv, fetchFromGitHub, pkgconfig, autoconf, automake
, ruby, file, xdg_utils, gettext, expat, qt5, boost
, libebml, zlib, libmatroska, libogg, libvorbis, flac
, withGUI ? true
@@ -10,18 +10,19 @@ with stdenv.lib;
stdenv.mkDerivation rec {
name = "mkvtoolnix-${version}";
- version = "8.9.0";
+ version = "9.2.0";
- src = fetchgit {
- url = "https://github.com/mbunkus/mkvtoolnix.git";
- rev = "54e6b52b3dde07f89da4542997ef059e18802128";
- sha256 = "1gipydk1xisqy110rr38dgjzpxl8zxbm12kf7b2f4xh4iw17j0k2";
+ src = fetchFromGitHub {
+ owner = "mbunkus";
+ repo = "mkvtoolnix";
+ rev = "release-${version}";
+ sha256 = "02w3161iqaijs3bz5w2wily9nz55xnhq1bdm2s5qi8v3sbcqd6df";
};
- nativeBuildInputs = [ gettext ruby ];
+ nativeBuildInputs = [ pkgconfig autoconf automake gettext ruby ];
buildInputs = [
- pkgconfig autoconf automake expat
+ expat
file xdg_utils boost libebml zlib
libmatroska libogg libvorbis flac
(optional withGUI qt5.qtbase)
diff --git a/pkgs/applications/video/mpv/default.nix b/pkgs/applications/video/mpv/default.nix
index bd1af2ce29a..23f6daf0d61 100644
--- a/pkgs/applications/video/mpv/default.nix
+++ b/pkgs/applications/video/mpv/default.nix
@@ -62,11 +62,11 @@ in
stdenv.mkDerivation rec {
name = "mpv-${version}";
- version = "0.17.0";
+ version = "0.18.1";
src = fetchurl {
url = "https://github.com/mpv-player/mpv/archive/v${version}.tar.gz";
- sha256 = "0vms3viwqcwl1mrgmf2yy4c69fvv7xpbkyrl693l6zpwynqd4b30";
+ sha256 = "0ab3lkvx1j06x7qlp9m4r4zk28dr7z8ki3w4kfgkpm2axizxa4z4";
};
patchPhase = ''
diff --git a/pkgs/applications/video/recordmydesktop/default.nix b/pkgs/applications/video/recordmydesktop/default.nix
index 95c06d54d6e..54dc88b452e 100644
--- a/pkgs/applications/video/recordmydesktop/default.nix
+++ b/pkgs/applications/video/recordmydesktop/default.nix
@@ -1,18 +1,23 @@
-{ stdenv, fetchsvn, automake, autoconf, zlib, popt, xorg, libvorbis, libtheora }:
+{ stdenv, fetchsvn, autoreconfHook, zlib, popt, alsaLib, libvorbis, libtheora
+, libICE, libSM, libX11, libXext, libXfixes, libXdamage }:
stdenv.mkDerivation rec {
name = "recordmydesktop-${version}";
- version = "0.3.8.1-svn602";
+ version = "0.3.8.1-svn${rev}";
+ rev = "602";
src = fetchsvn {
url = https://recordmydesktop.svn.sourceforge.net/svnroot/recordmydesktop/trunk/recordmydesktop;
- rev = 602;
+ inherit rev;
sha256 = "1avirkc4ymrd575m616pi6wpgq1i0r5sb3qahps1g18sjpxks0lf";
};
- buildInputs = [ automake autoconf zlib popt xorg.libICE xorg.libSM xorg.libX11 xorg.libXext xorg.libXfixes xorg.libXdamage libvorbis libtheora ];
+ nativeBuildInputs = [ autoreconfHook ];
- preConfigure = ''./autogen.sh'';
+ buildInputs = [
+ zlib popt alsaLib libICE libSM libX11 libXext
+ libXfixes libXdamage libvorbis libtheora
+ ];
meta = with stdenv.lib; {
description = "Desktop session recorder";
diff --git a/pkgs/applications/video/recordmydesktop/gtk.nix b/pkgs/applications/video/recordmydesktop/gtk.nix
new file mode 100644
index 00000000000..f3bf714b941
--- /dev/null
+++ b/pkgs/applications/video/recordmydesktop/gtk.nix
@@ -0,0 +1,37 @@
+{ stdenv, lib, fetchsvn, recordmydesktop, autoreconfHook, pkgconfig, glib
+, pythonPackages, jack2, xwininfo }:
+
+let
+ binPath = lib.makeBinPath [ recordmydesktop jack2 xwininfo ];
+
+in stdenv.mkDerivation rec {
+ name = "gtk-recordmydesktop-${version}";
+ version = "0.3.8-svn${recordmydesktop.rev}";
+
+ src = fetchsvn {
+ url = https://recordmydesktop.svn.sourceforge.net/svnroot/recordmydesktop/trunk/gtk-recordmydesktop;
+ inherit (recordmydesktop) rev;
+ sha256 = "010aykgjfxhyiixq9a9fg3p1a1ixz59m1vkn16hpy0lybgf4dsby";
+ };
+
+ nativeBuildInputs = [ autoreconfHook pkgconfig ];
+
+ buildInputs = with pythonPackages; [
+ python pygtk wrapPython
+ ];
+
+ pythonPath = with pythonPackages; [ pygtk ];
+
+ postInstall = ''
+ makeWrapperArgs="--prefix PATH : ${binPath}"
+ wrapPythonPrograms
+ '';
+
+ meta = with stdenv.lib; {
+ description = "GTK frontend for recordmydesktop";
+ homepage = http://recordmydesktop.sourceforge.net/;
+ license = licenses.gpl2;
+ platforms = platforms.linux;
+ maintainers = [ maintainers.DamienCassou ];
+ };
+}
diff --git a/pkgs/applications/video/recordmydesktop/qt.nix b/pkgs/applications/video/recordmydesktop/qt.nix
new file mode 100644
index 00000000000..de372c905bd
--- /dev/null
+++ b/pkgs/applications/video/recordmydesktop/qt.nix
@@ -0,0 +1,37 @@
+{ stdenv, lib, fetchsvn, recordmydesktop, autoreconfHook, pkgconfig
+, glib, pythonPackages, qt4, jack2, xwininfo }:
+
+let
+ binPath = lib.makeBinPath [ recordmydesktop jack2 xwininfo ];
+
+in stdenv.mkDerivation rec {
+ name = "qt-recordmydesktop-${version}";
+ version = "0.3.8-svn${recordmydesktop.rev}";
+
+ src = fetchsvn {
+ url = https://recordmydesktop.svn.sourceforge.net/svnroot/recordmydesktop/trunk/qt-recordmydesktop;
+ inherit (recordmydesktop) rev;
+ sha256 = "0vz7amrmz317sbx2cv2186d0r57as4l26xa9rpim5gbvzk20caqc";
+ };
+
+ nativeBuildInputs = [ autoreconfHook pkgconfig ];
+
+ buildInputs = [ glib qt4 ] ++ (with pythonPackages; [
+ python wrapPython pyqt4
+ ]);
+
+ pythonPath = with pythonPackages; [ pyqt4 ];
+
+ postInstall = ''
+ makeWrapperArgs="--prefix PATH : ${binPath}"
+ wrapPythonPrograms
+ '';
+
+ meta = with stdenv.lib; {
+ description = "GTK frontend for recordmydesktop";
+ homepage = http://recordmydesktop.sourceforge.net/;
+ license = licenses.gpl2;
+ platforms = platforms.linux;
+ maintainers = [ maintainers.DamienCassou ];
+ };
+}
diff --git a/pkgs/applications/video/simplescreenrecorder/default.nix b/pkgs/applications/video/simplescreenrecorder/default.nix
index a5fb122cf89..f50a41129ad 100644
--- a/pkgs/applications/video/simplescreenrecorder/default.nix
+++ b/pkgs/applications/video/simplescreenrecorder/default.nix
@@ -11,11 +11,26 @@ stdenv.mkDerivation rec {
sha256 = "1d89ncspjd8c4mckf0nb6y3hrxpv4rjpbj868pznhvfmdgr5nvql";
};
+ patches = [ ./fix-paths.patch ];
+
+ postPatch = ''
+ # #455
+ sed '1i#include ' -i src/Benchmark.cpp
+
+ for i in scripts/ssr-glinject src/AV/Input/GLInjectInput.cpp; do
+ substituteInPlace $i \
+ --subst-var out \
+ --subst-var-by sh ${stdenv.shell}
+ done
+ '';
+
buildInputs = [
alsaLib ffmpeg libjack2 libX11 libXext libXfixes mesa pkgconfig
libpulseaudio qt4
];
+ enableParallelBuilding = true;
+
meta = with stdenv.lib; {
description = "A screen recorder for Linux";
homepage = http://www.maartenbaert.be/simplescreenrecorder;
diff --git a/pkgs/applications/video/simplescreenrecorder/fix-paths.patch b/pkgs/applications/video/simplescreenrecorder/fix-paths.patch
new file mode 100644
index 00000000000..ba02240ce1f
--- /dev/null
+++ b/pkgs/applications/video/simplescreenrecorder/fix-paths.patch
@@ -0,0 +1,35 @@
+diff --git a/scripts/ssr-glinject b/scripts/ssr-glinject
+index 48be48d..5038d4c 100755
+--- a/scripts/ssr-glinject
++++ b/scripts/ssr-glinject
+@@ -59,6 +59,6 @@ do
+ fi
+ done
+
+-echo "ssr-glinject: LD_PRELOAD = $LD_PRELOAD:libssr-glinject.so"
++echo "ssr-glinject: LD_PRELOAD = $LD_PRELOAD:@out@/lib/libssr-glinject.so"
+ echo "ssr-glinject: command = $@"
+-LD_PRELOAD="$LD_PRELOAD:libssr-glinject.so" "$@"
++LD_PRELOAD="$LD_PRELOAD:@out@/lib/libssr-glinject.so" "$@"
+diff --git a/src/AV/Input/GLInjectInput.cpp b/src/AV/Input/GLInjectInput.cpp
+index 6b378f8..cbcf82b 100644
+--- a/src/AV/Input/GLInjectInput.cpp
++++ b/src/AV/Input/GLInjectInput.cpp
+@@ -96,7 +96,7 @@ void GLInjectInput::SetCapturing(bool capturing) {
+ bool GLInjectInput::LaunchApplication(const QString& channel, bool relax_permissions, const QString& command, const QString& working_directory) {
+
+ // prepare command
+- QString full_command = "LD_PRELOAD=\"libssr-glinject.so\" ";
++ QString full_command = "LD_PRELOAD=\"@out@/lib/libssr-glinject.so\" ";
+ full_command += "SSR_CHANNEL=\"" + ShellEscape(channel) + "\" ";
+ if(relax_permissions)
+ full_command += "SSR_STREAM_RELAX_PERMISSIONS=1 ";
+@@ -106,7 +106,7 @@ bool GLInjectInput::LaunchApplication(const QString& channel, bool relax_permiss
+ QStringList args;
+ args.push_back("-c");
+ args.push_back(full_command);
+- return QProcess::startDetached("/bin/sh", args, working_directory);
++ return QProcess::startDetached("@sh@", args, working_directory);
+
+ }
+
diff --git a/pkgs/applications/video/vlc/default.nix b/pkgs/applications/video/vlc/default.nix
index 3f883694e08..3cc4c310ed5 100644
--- a/pkgs/applications/video/vlc/default.nix
+++ b/pkgs/applications/video/vlc/default.nix
@@ -20,11 +20,11 @@ assert (!withQt5 -> qt4 != null);
stdenv.mkDerivation rec {
name = "vlc-${version}";
- version = "2.2.3";
+ version = "2.2.4";
src = fetchurl {
url = "http://get.videolan.org/vlc/${version}/${name}.tar.xz";
- sha256 = "0nxzspnyzlm17imlggi8ypnwiizi0f5wrj3436c3qg7i6mymimxr";
+ sha256 = "1gjkrwlg8ab3skzl67cxb9qzg4187ifckd1z9kpy11q058fyjchn";
};
# Comment-out the Qt 5.5 version check, as we do apply the relevant patch.
diff --git a/pkgs/applications/video/xvidcap/default.nix b/pkgs/applications/video/xvidcap/default.nix
index ade840dc021..527d31004b0 100644
--- a/pkgs/applications/video/xvidcap/default.nix
+++ b/pkgs/applications/video/xvidcap/default.nix
@@ -20,7 +20,7 @@ stdenv.mkDerivation {
NIX_LDFLAGS = "-lXext -lX11 -lz -lgcc_s";
meta = with stdenv.lib; {
- description = "screencast video catpuring tool";
+ description = "Screencast video catpuring tool";
homepage = http://xvidcap.sourceforge.net/;
license = stdenv.lib.licenses.gpl2;
platforms = platforms.linux;
diff --git a/pkgs/applications/virtualization/docker/default.nix b/pkgs/applications/virtualization/docker/default.nix
index 961a78eebe5..cfa58c71768 100644
--- a/pkgs/applications/virtualization/docker/default.nix
+++ b/pkgs/applications/virtualization/docker/default.nix
@@ -39,7 +39,7 @@ stdenv.mkDerivation rec {
buildPhase = ''
patchShebangs .
export AUTO_GOPATH=1
- export DOCKER_GITCOMMIT="a34a1d59"
+ export DOCKER_GITCOMMIT="20f81dde"
./hack/make.sh dynbinary
'';
@@ -54,6 +54,7 @@ stdenv.mkDerivation rec {
# completion
install -Dm644 ./contrib/completion/bash/docker $out/share/bash-completion/completions/docker
+ install -Dm644 ./contrib/completion/fish/docker.fish $out/share/fish/vendor_completions.d/docker.fish
install -Dm644 ./contrib/completion/zsh/_docker $out/share/zsh/site-functions/_docker
'';
diff --git a/pkgs/applications/virtualization/qemu/default.nix b/pkgs/applications/virtualization/qemu/default.nix
index ed59f5eb510..4cdb2f7ec7d 100644
--- a/pkgs/applications/virtualization/qemu/default.nix
+++ b/pkgs/applications/virtualization/qemu/default.nix
@@ -60,6 +60,13 @@ stdenv.mkDerivation rec {
++ optional stdenv.isDarwin "--enable-cocoa"
++ optional stdenv.isLinux "--enable-linux-aio";
+ postFixup =
+ ''
+ for exe in $out/bin/qemu-system-* ; do
+ paxmark m $exe
+ done
+ '';
+
postInstall =
''
# Add a ‘qemu-kvm’ wrapper for compatibility/convenience.
diff --git a/pkgs/applications/virtualization/rkt/default.nix b/pkgs/applications/virtualization/rkt/default.nix
index 2440d54f692..17c7f7e2928 100644
--- a/pkgs/applications/virtualization/rkt/default.nix
+++ b/pkgs/applications/virtualization/rkt/default.nix
@@ -4,14 +4,14 @@
let
# Always get the information from
# https://github.com/coreos/rkt/blob/v${VERSION}/stage1/usr_from_coreos/coreos-common.mk
- coreosImageRelease = "1032.0.0";
+ coreosImageRelease = "1068.0.0";
coreosImageSystemdVersion = "229";
# TODO: track https://github.com/coreos/rkt/issues/1758 to allow "host" flavor.
- stage1Flavours = [ "coreos" "fly" "host" ];
+ stage1Flavours = [ "coreos" "fly" ];
in stdenv.mkDerivation rec {
- version = "1.7.0";
+ version = "1.10.1";
name = "rkt-${version}";
BUILDDIR="build-${name}";
@@ -19,12 +19,12 @@ in stdenv.mkDerivation rec {
rev = "v${version}";
owner = "coreos";
repo = "rkt";
- sha256 = "1ds063q205p5fbahl2qqawhav1fkcvs9ynh80j8g0h9ls0bbv8j7";
+ sha256 = "0hy6b0lyjsh0m1ca7hga31nybrbi9wpf8c59wbzvm1wlnqzsjkqi";
};
stage1BaseImage = fetchurl {
url = "http://alpha.release.core-os.net/amd64-usr/${coreosImageRelease}/coreos_production_pxe_image.cpio.gz";
- sha256 = "1lmyhncvw5cby4nbpw6ryiki05wra90fsr6xnsdgi9yqqs6v2d1f";
+ sha256 = "06jawmjkhrrw9hsk98w5j6pxci17d46mvzbj52pslakacw60pbpp";
};
buildInputs = [
@@ -50,7 +50,7 @@ in stdenv.mkDerivation rec {
installPhase = ''
mkdir -p $out/bin
- cp -Rv $BUILDDIR/bin/* $out/bin
+ cp -Rv $BUILDDIR/target/bin/* $out/bin
wrapProgram $out/bin/rkt \
--prefix LD_LIBRARY_PATH : ${systemd}/lib \
--prefix PATH : ${iptables}/bin
diff --git a/pkgs/applications/virtualization/seabios/default.nix b/pkgs/applications/virtualization/seabios/default.nix
index 3bc95a1c392..82ed4b7fe76 100644
--- a/pkgs/applications/virtualization/seabios/default.nix
+++ b/pkgs/applications/virtualization/seabios/default.nix
@@ -3,11 +3,11 @@
stdenv.mkDerivation rec {
name = "seabios-${version}";
- version = "1.7.5.2";
+ version = "1.9.2";
src = fetchurl {
url = "http://code.coreboot.org/p/seabios/downloads/get/${name}.tar.gz";
- sha256 = "1syd3gi5gq0gj2pjvmdis64xc3j1xf0jgy49ngymap0pdpm0cmh0";
+ sha256 = "1rdvbqb374jimxbkk9yvk9rnzhkn0w0sbvi1l3gnz6ah1sdla7gh";
};
buildInputs = [ iasl python ];
diff --git a/pkgs/applications/virtualization/virt-manager/default.nix b/pkgs/applications/virtualization/virt-manager/default.nix
index 9e04cdf3825..1a0f8f93625 100644
--- a/pkgs/applications/virtualization/virt-manager/default.nix
+++ b/pkgs/applications/virtualization/virt-manager/default.nix
@@ -9,12 +9,12 @@ with pythonPackages;
buildPythonApplication rec {
name = "virt-manager-${version}";
- version = "1.3.1";
+ version = "1.4.0";
namePrefix = "";
src = fetchurl {
url = "http://virt-manager.org/download/sources/virt-manager/${name}.tar.gz";
- sha256 = "0lqd9ix7k4jswqzxarnvxfbq6rvpcm8rrc1if86nw67ms1dh2i36";
+ sha256 = "1jnawqjmcqd2db78ngx05x7cxxn3iy1sb4qfgbwcn045qh6a8cdz";
};
propagatedBuildInputs =
diff --git a/pkgs/applications/virtualization/virtualbox/default.nix b/pkgs/applications/virtualization/virtualbox/default.nix
index 97536f77e7b..ada571586c6 100644
--- a/pkgs/applications/virtualization/virtualbox/default.nix
+++ b/pkgs/applications/virtualization/virtualbox/default.nix
@@ -99,7 +99,14 @@ in stdenv.mkDerivation {
set +x
'';
- patches = optional enableHardening ./hardened.patch;
+ patches = optional enableHardening ./hardened.patch
+ ++ [
+ (fetchurl rec {
+ name = "fix-detect-gcc-5.4.patch";
+ url = "https://bugs.debian.org/cgi-bin/bugreport.cgi?att=1;bug=827193;filename=${name};msg=5";
+ sha256 = "0y6v5dc6fqj9iv27cl8q2g87v1kxg19129mpas4vjg7g0529v4g9";
+ })
+ ];
postPatch = ''
sed -i -e 's|/sbin/ifconfig|${nettools}/bin/ifconfig|' \
diff --git a/pkgs/applications/window-managers/fvwm/default.nix b/pkgs/applications/window-managers/fvwm/default.nix
index 77263293847..2385fd3c41f 100644
--- a/pkgs/applications/window-managers/fvwm/default.nix
+++ b/pkgs/applications/window-managers/fvwm/default.nix
@@ -8,11 +8,11 @@
assert gestures -> libstroke != null;
stdenv.mkDerivation rec {
- name = "fvwm-2.6.5";
+ name = "fvwm-2.6.6";
src = fetchurl {
- url = "ftp://ftp.fvwm.org/pub/fvwm/version-2/${name}.tar.bz2";
- sha256 = "1ks8igvmzm0m0sra05k8xzc8vkqy3gv1qskl6davw1irqnarjm11";
+ url = "https://github.com/fvwmorg/fvwm/releases/download/version-2_6_6/${name}.tar.gz";
+ sha256 = "c5de085ff25b2128a401a80225481e63335f815f84eea139f80a5f66e606dc2c";
};
buildInputs = [
diff --git a/pkgs/applications/window-managers/i3/gaps.nix b/pkgs/applications/window-managers/i3/gaps.nix
new file mode 100644
index 00000000000..fa03bc47d9e
--- /dev/null
+++ b/pkgs/applications/window-managers/i3/gaps.nix
@@ -0,0 +1,44 @@
+{ fetchurl, stdenv, i3 }:
+
+i3.overrideDerivation (super : rec {
+
+ name = "i3-gaps-${version}";
+ version = "4.12";
+ releaseDate = "2016-03-06";
+
+ src = fetchurl {
+ url = "https://github.com/Airblader/i3/archive/${version}.tar.gz";
+ sha256 = "1i9l993cak85fcw12zgrb5cpspmjixr3yf8naa4zb8589mg4rb8s";
+ };
+
+ postUnpack = ''
+ echo -n "${version} (${releaseDate}, branch \\\"gaps-next\\\")" > ./i3-${version}/I3_VERSION
+ echo -n "${version}" > ./i3-${version}/VERSION
+ '';
+
+ postInstall = ''
+ wrapProgram "$out/bin/i3-save-tree" --prefix PERL5LIB ":" "$PERL5LIB"
+ for program in $out/bin/i3-sensible-*; do
+ sed -i 's/which/command -v/' $program
+ done
+ '';
+
+}) // {
+
+ meta = with stdenv.lib; {
+ description = "A fork of the i3 tiling window manager with some additional features";
+ homepage = "https://github.com/Airblader/i3";
+ maintainers = with maintainers; [ fmthoma ];
+ license = licenses.bsd3;
+ platforms = platforms.all;
+
+ longDescription = ''
+ Fork of i3wm, a tiling window manager primarily targeted at advanced users
+ and developers. Based on a tree as data structure, supports tiling,
+ stacking, and tabbing layouts, handled dynamically, as well as floating
+ windows. This fork adds a few features such as gaps between windows.
+ Configured via plain text file. Multi-monitor. UTF-8 clean.
+ '';
+ };
+
+}
diff --git a/pkgs/applications/window-managers/i3/lock.nix b/pkgs/applications/window-managers/i3/lock.nix
index 56e0643811f..d9ea14828dd 100644
--- a/pkgs/applications/window-managers/i3/lock.nix
+++ b/pkgs/applications/window-managers/i3/lock.nix
@@ -2,11 +2,11 @@
pam, libX11, libev, cairo, libxkbcommon, libxkbfile }:
stdenv.mkDerivation rec {
- name = "i3lock-2.7";
+ name = "i3lock-2.8";
src = fetchurl {
url = "http://i3wm.org/i3lock/${name}.tar.bz2";
- sha256 = "1qlgafbyqjpqdfs50f2y0xphn2jdigafkqqsmpikk97cs0z1i0k8";
+ sha256 = "028fc0f74df10826514d5a4ed38f6895935d1f5d47ca9fcffc64b076aaf6e2f4";
};
buildInputs = [ which pkgconfig libxcb xcbutilkeysyms xcbutilimage pam libX11
diff --git a/pkgs/applications/window-managers/jwm/default.nix b/pkgs/applications/window-managers/jwm/default.nix
index 2da76eabe93..460096cf16c 100644
--- a/pkgs/applications/window-managers/jwm/default.nix
+++ b/pkgs/applications/window-managers/jwm/default.nix
@@ -5,11 +5,11 @@
stdenv.mkDerivation rec {
name = "jwm-${version}";
- version = "1532";
+ version = "1535";
src = fetchurl {
url = "https://github.com/joewing/jwm/archive/s${version}.tar.gz";
- sha256 = "02g3n72rmyy5l9hn6jdb7kzhsn1c0padazxfn0sv6s95w6r8hcvr";
+ sha256 = "1v593v1n9p9nvlhz1m9vc94wj21a6rbk7hcja30421h5mwa2b6gb";
};
nativeBuildInputs = [ pkgconfig automake autoconf libtool gettext which ];
diff --git a/pkgs/applications/window-managers/qtile/default.nix b/pkgs/applications/window-managers/qtile/default.nix
index 4060b9887f7..6a5e4564122 100644
--- a/pkgs/applications/window-managers/qtile/default.nix
+++ b/pkgs/applications/window-managers/qtile/default.nix
@@ -35,9 +35,9 @@ buildPythonApplication rec {
postInstall = ''
wrapProgram $out/bin/qtile \
- --set QTILE_WRAPPER '"$0"' \
- --set QTILE_SAVED_PYTHONPATH '"$PYTHONPATH"' \
- --set QTILE_SAVED_PATH '"$PATH"'
+ --set QTILE_WRAPPER '$0' \
+ --set QTILE_SAVED_PYTHONPATH '$PYTHONPATH' \
+ --set QTILE_SAVED_PATH '$PATH'
'';
meta = with stdenv.lib; {
diff --git a/pkgs/applications/window-managers/stumpwm/default.nix b/pkgs/applications/window-managers/stumpwm/default.nix
index bfbeb9739f1..91ee7dedb5d 100644
--- a/pkgs/applications/window-managers/stumpwm/default.nix
+++ b/pkgs/applications/window-managers/stumpwm/default.nix
@@ -1,24 +1,42 @@
{ stdenv, pkgs, fetchgit, autoconf, sbcl, lispPackages, xdpyinfo, texinfo4
, makeWrapper , rlwrap, gnused, gnugrep, coreutils, xprop
-, extraModulePaths ? [] }:
+, extraModulePaths ? []
+, version }:
let
- version = "0.9.9";
contrib = (fetchgit {
url = "https://github.com/stumpwm/stumpwm-contrib.git";
rev = "9bebe3622b2b6c31a6bada9055ef3862fa79b86f";
sha256 = "1ml6mjk2fsfv4sf65fdbji3q5x0qiq99g1k8w7a99gsl2i8h60gc";
});
+ versionSpec = {
+ "latest" = {
+ name = "0.9.9";
+ rev = "refs/tags/0.9.9";
+ sha256 = "0hmvbdk2yr5wrkiwn9dfzf65s4xc2qifj0sn6w2mghzp96cph79k";
+ patches = [ ./fix-module-path.patch ];
+ };
+ "git" = {
+ name = "git-20160617";
+ rev = "7d5b5eb76aa656baf5a8713f514937765f66b10a";
+ sha256 = "1jpj978r54086hypjxqxi0r3zacqpkr61dp6dbi0lykgx7m5bjfb";
+ patches = [];
+ };
+ }.${version};
in
stdenv.mkDerivation rec {
- name = "stumpwm-${version}";
+ name = "stumpwm-${versionSpec.name}";
src = fetchgit {
url = "https://github.com/stumpwm/stumpwm";
- rev = "refs/tags/${version}";
- sha256 = "0hmvbdk2yr5wrkiwn9dfzf65s4xc2qifj0sn6w2mghzp96cph79k";
+ rev = "${versionSpec.rev}";
+ sha256 = "${versionSpec.sha256}";
};
+ # NOTE: The patch needs an update for the next release.
+ # `(stumpwm:set-module-dir "@MODULE_DIR@")' needs to be in it.
+ patches = versionSpec.patches;
+
buildInputs = [
texinfo4 makeWrapper autoconf
sbcl
@@ -27,9 +45,6 @@ stdenv.mkDerivation rec {
xdpyinfo
];
- # NOTE: The patch needs an update for the next release.
- # `(stumpwm:set-module-dir "@MODULE_DIR@")' needs to be in it.
- patches = [ ./fix-module-path.patch ];
# Stripping destroys the generated SBCL image
dontStrip = true;
diff --git a/pkgs/applications/window-managers/tabbed/default.nix b/pkgs/applications/window-managers/tabbed/default.nix
index 68c72a20e67..279ba68eae8 100644
--- a/pkgs/applications/window-managers/tabbed/default.nix
+++ b/pkgs/applications/window-managers/tabbed/default.nix
@@ -1,29 +1,33 @@
-{stdenv, fetchgit, xproto, libX11, enableXft, libXft}:
+{stdenv, fetchgit, xproto, libX11, libXft, customConfig ? null, patches ? [] }:
with stdenv.lib;
stdenv.mkDerivation rec {
- name = "tabbed-20150509";
+ name = "tabbed-20160425";
src = fetchgit {
url = http://git.suckless.org/tabbed;
- rev = "55dc32b27b73c121cab18009bf087e95ef3d9c18";
- sha256 = "0c5ayf1lrb1xiz5h8dfd4mh05kas42zzi5m5ylrvl67sfz3z4wg1";
+ rev = "bc236142fa72d2f9d6b5c790d3f3a9a9168a7164";
+ sha256 = "1fiv57g3jnlhnb6zrzl3n6lnpn2s9s0sd7bcv7r1nb3grwy7icri";
};
- patches = optional enableXft ./xft.patch;
+ inherit patches;
- buildInputs = [ xproto libX11 ] ++ optional enableXft libXft;
-
- preInstall = ''
- export makeFlags="PREFIX=$out"
+ postPatch = stdenv.lib.optionalString (customConfig != null) ''
+ cp ${builtins.toFile "config.h" customConfig} ./config.h
'';
+ buildInputs = [ xproto libX11 libXft ];
+
+ makeFlags = [
+ "PREFIX=$(out)"
+ ];
+
meta = {
homepage = http://tools.suckless.org/tabbed;
description = "Simple generic tabbed fronted to xembed aware applications";
license = licenses.mit;
- maintainers = with maintainers; [ viric ];
+ maintainers = with maintainers; [ viric vrthra ];
platforms = platforms.linux;
};
}
diff --git a/pkgs/applications/window-managers/xmonad/wrapper.nix b/pkgs/applications/window-managers/xmonad/wrapper.nix
index e8dc0b1fdac..6f3d463adb2 100644
--- a/pkgs/applications/window-managers/xmonad/wrapper.nix
+++ b/pkgs/applications/window-managers/xmonad/wrapper.nix
@@ -8,7 +8,8 @@ in stdenv.mkDerivation {
nativeBuildInputs = [ makeWrapper ];
buildCommand = ''
- mkdir -p $out/bin
+ mkdir -p $out/bin $out/share
+ ln -s ${xmonadEnv}/share/man $out/share/man
makeWrapper ${xmonadEnv}/bin/xmonad $out/bin/xmonad \
--set NIX_GHC "${xmonadEnv}/bin/ghc" \
--set XMONAD_XMESSAGE "${xmessage}/bin/xmessage"
diff --git a/pkgs/build-support/build-fhs-chrootenv/default.nix b/pkgs/build-support/build-fhs-chrootenv/default.nix
deleted file mode 100644
index dfce8edcb23..00000000000
--- a/pkgs/build-support/build-fhs-chrootenv/default.nix
+++ /dev/null
@@ -1,48 +0,0 @@
-{ stdenv } : { env, extraInstallCommands ? "" } :
-
-let
- # References to shell scripts that set up or tear down the environment
- initSh = ./init.sh.in;
- mountSh = ./mount.sh.in;
- loadSh = ./load.sh.in;
- umountSh = ./umount.sh.in;
- destroySh = ./destroy.sh.in;
-
- name = env.pname;
-
-in stdenv.mkDerivation {
- name = "${name}-chrootenv";
- preferLocalBuild = true;
- buildCommand = ''
- mkdir -p $out/bin
- cd $out/bin
-
- sed -e "s|@chrootEnv@|${env}|g" \
- -e "s|@name@|${name}|g" \
- -e "s|@shell@|${stdenv.shell}|g" \
- ${initSh} > init-${name}-chrootenv
- chmod +x init-${name}-chrootenv
-
- sed -e "s|@shell@|${stdenv.shell}|g" \
- -e "s|@name@|${name}|g" \
- ${mountSh} > mount-${name}-chrootenv
- chmod +x mount-${name}-chrootenv
-
- sed -e "s|@shell@|${stdenv.shell}|g" \
- -e "s|@name@|${name}|g" \
- ${loadSh} > load-${name}-chrootenv
- chmod +x load-${name}-chrootenv
-
- sed -e "s|@shell@|${stdenv.shell}|g" \
- -e "s|@name@|${name}|g" \
- ${umountSh} > umount-${name}-chrootenv
- chmod +x umount-${name}-chrootenv
-
- sed -e "s|@chrootEnv@|${env}|g" \
- -e "s|@shell@|${stdenv.shell}|g" \
- -e "s|@name@|${name}|g" \
- ${destroySh} > destroy-${name}-chrootenv
- chmod +x destroy-${name}-chrootenv
- ${extraInstallCommands}
- '';
-}
diff --git a/pkgs/build-support/build-fhs-chrootenv/destroy.sh.in b/pkgs/build-support/build-fhs-chrootenv/destroy.sh.in
deleted file mode 100644
index 015f742d85a..00000000000
--- a/pkgs/build-support/build-fhs-chrootenv/destroy.sh.in
+++ /dev/null
@@ -1,22 +0,0 @@
-#! @shell@ -e
-
-chrootenvDest=/run/chrootenv/@name@
-
-# Remove bind mount points
-rmdir $chrootenvDest/{dev,nix/store,nix,proc,sys,host-etc,home,var,run,tmp}
-
-# Remove symlinks to the software that should be part of the chroot system profile
-for i in @chrootEnv@/*
-do
- if [ "$i" != "@chrootEnv@/etc" ] && [ "$i" != "@chrootEnv@/var" ]
- then
- rm $chrootenvDest/$(basename $i)
- fi
-done
-
-# Remove the remaining folders
-rm -Rf $chrootenvDest/{etc,root}
-rm -Rf /tmp/chrootenv-@name@
-
-# Remove the chroot environment folder
-rmdir $chrootenvDest
diff --git a/pkgs/build-support/build-fhs-chrootenv/init.sh.in b/pkgs/build-support/build-fhs-chrootenv/init.sh.in
deleted file mode 100644
index 9c85069a655..00000000000
--- a/pkgs/build-support/build-fhs-chrootenv/init.sh.in
+++ /dev/null
@@ -1,22 +0,0 @@
-#! @shell@ -e
-
-chrootenvDest=/run/chrootenv/@name@
-
-# Create some mount points for stuff that must be bind mounted
-mkdir -p $chrootenvDest/{nix/store,dev,proc,sys,host-etc,host-tmp,home,var,run}
-
-# Symlink the software that should be part of the chroot system profile
-for i in @chrootEnv@/*
-do
- if [ "$i" != "@chrootEnv@/var" ]
- then
- ln -s "$i" "$chrootenvDest"
- fi
-done
-
-# Create root folder
-mkdir $chrootenvDest/root
-
-# Create tmp folder
-mkdir -m1777 $chrootenvDest/tmp
-mkdir -m1777 -p /tmp/chrootenv-@name@
diff --git a/pkgs/build-support/build-fhs-chrootenv/load.sh.in b/pkgs/build-support/build-fhs-chrootenv/load.sh.in
deleted file mode 100644
index f3a6d13e8ff..00000000000
--- a/pkgs/build-support/build-fhs-chrootenv/load.sh.in
+++ /dev/null
@@ -1,13 +0,0 @@
-#! @shell@ -e
-
-chrootenvDest=/run/chrootenv/@name@
-
-# Enter the LFS chroot environment
-sudo chroot --userspec "$USER:${GROUPS[0]}" --groups "${GROUPS[0]}" $chrootenvDest /usr/bin/env -i \
- TERM="$TERM" \
- DISPLAY="$DISPLAY" \
- HOME="$HOME" \
- XDG_RUNTIME_DIR="$XDG_RUNTIME_DIR" \
- LANG="$LANG" \
- SSL_CERT_FILE="$SSL_CERT_FILE" \
- /bin/bash --login
diff --git a/pkgs/build-support/build-fhs-chrootenv/mount.sh.in b/pkgs/build-support/build-fhs-chrootenv/mount.sh.in
deleted file mode 100644
index 24b28aae78f..00000000000
--- a/pkgs/build-support/build-fhs-chrootenv/mount.sh.in
+++ /dev/null
@@ -1,34 +0,0 @@
-#! @shell@ -e
-
-chrootenvDest=/run/chrootenv/@name@
-
-# Bind mount the Nix store
-mount --bind /nix/store $chrootenvDest/nix/store
-
-# Bind mount some kernel related stuff
-mount --bind /dev $chrootenvDest/dev
-mount --bind /dev/pts $chrootenvDest/dev/pts
-mount --bind /dev/shm $chrootenvDest/dev/shm
-mount --bind /proc $chrootenvDest/proc
-mount --bind /sys $chrootenvDest/sys
-
-# Bind mount home directories
-mount --bind /home $chrootenvDest/home
-
-# Bind mount state directories
-mount --bind /var $chrootenvDest/var
-mount --rbind /run $chrootenvDest/run
-
-# Bind mount the host system's /etc
-mount --bind /etc $chrootenvDest/host-etc
-
-# Bind mount the host system's /tmp
-mount --bind /tmp $chrootenvDest/host-tmp
-
-# Bind mount /tmp
-mount --bind /tmp/chrootenv-@name@ $chrootenvDest/tmp
-
-# Expose sockets in /tmp
-for i in /tmp/.*-unix; do
- ln -s "/host-tmp/$(basename "$i")" "$chrootenvDest/$i"
-done
diff --git a/pkgs/build-support/build-fhs-chrootenv/umount.sh.in b/pkgs/build-support/build-fhs-chrootenv/umount.sh.in
deleted file mode 100644
index 27000cff10a..00000000000
--- a/pkgs/build-support/build-fhs-chrootenv/umount.sh.in
+++ /dev/null
@@ -1,6 +0,0 @@
-#! @shell@ -e
-
-chrootenvDest=/run/chrootenv/@name@
-
-# Unmount all (r)bind mounts
-umount -l $chrootenvDest/{dev/pts,dev/shm,dev,nix/store,proc,sys,host-etc,host-tmp,home,var,tmp,run}
diff --git a/pkgs/build-support/build-fhs-userenv/chroot-user.rb b/pkgs/build-support/build-fhs-userenv/chroot-user.rb
index 250e6a90843..11f672acb9f 100755
--- a/pkgs/build-support/build-fhs-userenv/chroot-user.rb
+++ b/pkgs/build-support/build-fhs-userenv/chroot-user.rb
@@ -2,16 +2,15 @@
# Bind mounts hierarchy: from => to (relative)
# If 'to' is nil, path will be the same
-mounts = { '/nix/store' => nil,
- '/dev' => nil,
+mounts = { '/' => 'host',
'/proc' => nil,
'/sys' => nil,
- '/etc' => 'host-etc',
- '/tmp' => 'host-tmp',
- '/home' => nil,
+ '/nix' => nil,
+ '/tmp' => nil,
'/var' => nil,
'/run' => nil,
- '/root' => nil,
+ '/dev' => nil,
+ '/home' => nil,
}
# Propagate environment variables
@@ -21,6 +20,7 @@ envvars = [ 'TERM',
'XDG_RUNTIME_DIR',
'LANG',
'SSL_CERT_FILE',
+ 'DBUS_SESSION_BUS_ADDRESS',
]
require 'tmpdir'
@@ -62,12 +62,15 @@ $mount = make_fcall 'mount', [Fiddle::TYPE_VOIDP,
Fiddle::TYPE_INT
# Read command line args
-abort "Usage: chrootenv swdir program args..." unless ARGV.length >= 2
-swdir = Pathname.new ARGV[0]
-execp = ARGV.drop 1
+abort "Usage: chrootenv program args..." unless ARGV.length >= 1
+execp = ARGV
# Populate extra mounts
if not ENV["CHROOTENV_EXTRA_BINDS"].nil?
+ $stderr.puts "CHROOTENV_EXTRA_BINDS is discussed for deprecation."
+ $stderr.puts "If you have a usecase, please drop a note in issue #16030."
+ $stderr.puts "Notice that we now bind-mount host FS to '/host' and symlink all directories from it to '/' by default."
+
for extra in ENV["CHROOTENV_EXTRA_BINDS"].split(':')
paths = extra.split('=')
if not paths.empty?
@@ -132,24 +135,6 @@ if $cpid == 0
Dir.chroot root
Dir.chdir '/'
- # Symlink swdir hierarchy
- mount_dirs = Set.new mounts.map { |_, v| Pathname.new v }
- link_swdir = lambda do |swdir, prefix|
- swdir.find do |path|
- rel = prefix.join path.relative_path_from(swdir)
- # Don't symlink anything in binded or symlinked directories
- Find.prune if mount_dirs.include? rel or rel.symlink?
- if not rel.directory?
- # File does not exist; make a symlink and bail out
- rel.make_symlink path
- Find.prune
- end
- # Recursively follow symlinks
- link_swdir.call path.readlink, rel if path.symlink?
- end
- end
- link_swdir.call swdir, Pathname.new('')
-
# New environment
new_env = Hash[ envvars.map { |x| [x, ENV[x]] } ]
diff --git a/pkgs/build-support/build-fhs-userenv/default.nix b/pkgs/build-support/build-fhs-userenv/default.nix
index 94c72e29a22..d91cdffcf39 100644
--- a/pkgs/build-support/build-fhs-userenv/default.nix
+++ b/pkgs/build-support/build-fhs-userenv/default.nix
@@ -1,28 +1,29 @@
-{ runCommand, lib, writeText, writeScriptBin, stdenv, ruby } :
-{ env, runScript ? "bash", extraBindMounts ? [], extraInstallCommands ? "", meta ? {}, passthru ? {} } :
+{ callPackage, runCommand, lib, writeScript, stdenv, coreutils, ruby }:
+
+let buildFHSEnv = callPackage ./env.nix { }; in
+
+args@{ name, runScript ? "bash", extraBindMounts ? [], extraInstallCommands ? "", meta ? {}, passthru ? {}, ... }:
let
- name = env.pname;
+ env = buildFHSEnv (removeAttrs args [ "runScript" "extraBindMounts" "extraInstallCommands" "meta" "passthru" ]);
# Sandboxing script
- chroot-user = writeScriptBin "chroot-user" ''
+ chroot-user = writeScript "chroot-user" ''
#! ${ruby}/bin/ruby
${builtins.readFile ./chroot-user.rb}
'';
- init = run: writeText "${name}-init" ''
- source /etc/profile
-
- # Make /tmp directory
- mkdir -m 1777 /tmp
-
- # Expose sockets in /tmp
- for i in /host-tmp/.*-unix; do
- ln -s "$i" "/tmp/$(basename "$i")"
+ init = run: writeScript "${name}-init" ''
+ #! ${stdenv.shell}
+ for i in ${env}/* /host/*; do
+ path="/''${i##*/}"
+ [ -e "$path" ] || ${coreutils}/bin/ln -s "$i" "$path"
done
[ -d "$1" ] && [ -r "$1" ] && cd "$1"
shift
+
+ source /etc/profile
exec ${run} "$@"
'';
@@ -31,8 +32,8 @@ in runCommand name {
passthru = passthru // {
env = runCommand "${name}-shell-env" {
shellHook = ''
- export CHROOTENV_EXTRA_BINDS="${lib.concatStringsSep ":" extraBindMounts}:$CHROOTENV_EXTRA_BINDS"
- exec ${chroot-user}/bin/chroot-user ${env} bash ${init "bash"} "$(pwd)"
+ ${lib.optionalString (extraBindMounts != []) ''export CHROOTENV_EXTRA_BINDS="${lib.concatStringsSep ":" extraBindMounts}:$CHROOTENV_EXTRA_BINDS"''}
+ exec ${chroot-user} ${init "bash"} "$(pwd)"
'';
} ''
echo >&2 ""
@@ -45,8 +46,8 @@ in runCommand name {
mkdir -p $out/bin
cat <$out/bin/${name}
#! ${stdenv.shell}
- export CHROOTENV_EXTRA_BINDS="${lib.concatStringsSep ":" extraBindMounts}:\$CHROOTENV_EXTRA_BINDS"
- exec ${chroot-user}/bin/chroot-user ${env} bash ${init runScript} "\$(pwd)" "\$@"
+ ${lib.optionalString (extraBindMounts != []) ''export CHROOTENV_EXTRA_BINDS="${lib.concatStringsSep ":" extraBindMounts}:$CHROOTENV_EXTRA_BINDS"''}
+ exec ${chroot-user} ${init runScript} "\$(pwd)" "\$@"
EOF
chmod +x $out/bin/${name}
${extraInstallCommands}
diff --git a/pkgs/build-support/build-fhs-chrootenv/env.nix b/pkgs/build-support/build-fhs-userenv/env.nix
similarity index 70%
rename from pkgs/build-support/build-fhs-chrootenv/env.nix
rename to pkgs/build-support/build-fhs-userenv/env.nix
index 0b2f8bcba6a..1dc71987f54 100644
--- a/pkgs/build-support/build-fhs-chrootenv/env.nix
+++ b/pkgs/build-support/build-fhs-userenv/env.nix
@@ -1,7 +1,7 @@
-{ nixpkgs, nixpkgs_i686, system
-} :
+{ stdenv, buildEnv, writeText, pkgs, pkgsi686Linux, system }:
+
{ name, profile ? ""
-, pkgs ? null, targetPkgs ? pkgs: [], multiPkgs ? pkgs: []
+, targetPkgs ? pkgs: [], multiPkgs ? pkgs: []
, extraBuildCommands ? "", extraBuildCommandsMulti ? ""
, extraOutputsToInstall ? []
}:
@@ -22,37 +22,32 @@
# /lib will link to /lib32
let
- isMultiBuild = pkgs == null && multiPkgs != null && system == "x86_64-linux";
+ is64Bit = system == "x86_64-linux";
+ isMultiBuild = multiPkgs != null && is64Bit;
isTargetBuild = !isMultiBuild;
- # support deprecated "pkgs" option.
- targetPkgs' =
- if pkgs != null
- then builtins.trace "buildFHSEnv: 'pkgs' option is deprecated, use 'targetPkgs'" (pkgs': pkgs)
- else targetPkgs;
-
# list of packages (usually programs) which are only be installed for the
# host's architecture
- targetPaths = targetPkgs' nixpkgs ++ (if multiPkgs == null then [] else multiPkgs nixpkgs);
+ targetPaths = targetPkgs pkgs ++ (if multiPkgs == null then [] else multiPkgs pkgs);
# list of packages which are installed for both x86 and x86_64 on x86_64
# systems
- multiPaths = multiPkgs nixpkgs_i686;
+ multiPaths = multiPkgs pkgsi686Linux;
# base packages of the chroot
# these match the host's architecture, glibc_multi is used for multilib
# builds.
- basePkgs = with nixpkgs;
+ basePkgs = with pkgs;
[ (if isMultiBuild then glibc_multi else glibc)
- gcc.cc.lib bashInteractive coreutils less shadow su
+ (toString gcc.cc.lib) bashInteractive coreutils less shadow su
gawk diffutils findutils gnused gnugrep
gnutar gzip bzip2 xz glibcLocales
];
- baseMultiPkgs = with nixpkgs_i686;
- [ gcc.cc.lib
+ baseMultiPkgs = with pkgsi686Linux;
+ [ (toString gcc.cc.lib)
];
- etcProfile = nixpkgs.writeText "profile" ''
+ etcProfile = writeText "profile" ''
export PS1='${name}-chrootenv:\u@\h:\w\$ '
export LOCALE_ARCHIVE='/usr/lib/locale/locale-archive'
export LD_LIBRARY_PATH='/run/opengl-driver/lib:/run/opengl-driver-32/lib:/usr/lib:/usr/lib32'
@@ -67,7 +62,7 @@ let
'';
# Compose /etc for the chroot environment
- etcPkg = nixpkgs.stdenv.mkDerivation {
+ etcPkg = stdenv.mkDerivation {
name = "${name}-chrootenv-etc";
buildCommand = ''
mkdir -p $out/etc
@@ -77,38 +72,38 @@ let
ln -s ${etcProfile} profile
# compatibility with NixOS
- ln -s /host-etc/static static
+ ln -s /host/etc/static static
# symlink some NSS stuff
- ln -s /host-etc/passwd passwd
- ln -s /host-etc/group group
- ln -s /host-etc/shadow shadow
- ln -s /host-etc/hosts hosts
- ln -s /host-etc/resolv.conf resolv.conf
- ln -s /host-etc/nsswitch.conf nsswitch.conf
+ ln -s /host/etc/passwd passwd
+ ln -s /host/etc/group group
+ ln -s /host/etc/shadow shadow
+ ln -s /host/etc/hosts hosts
+ ln -s /host/etc/resolv.conf resolv.conf
+ ln -s /host/etc/nsswitch.conf nsswitch.conf
# symlink sudo and su stuff
- ln -s /host-etc/login.defs login.defs
- ln -s /host-etc/sudoers sudoers
- ln -s /host-etc/sudoers.d sudoers.d
+ ln -s /host/etc/login.defs login.defs
+ ln -s /host/etc/sudoers sudoers
+ ln -s /host/etc/sudoers.d sudoers.d
# symlink other core stuff
- ln -s /host-etc/localtime localtime
- ln -s /host-etc/machine-id machine-id
- ln -s /host-etc/os-release os-release
+ ln -s /host/etc/localtime localtime
+ ln -s /host/etc/machine-id machine-id
+ ln -s /host/etc/os-release os-release
# symlink PAM stuff
- ln -s /host-etc/pam.d pam.d
+ ln -s /host/etc/pam.d pam.d
# symlink fonts stuff
- ln -s /host-etc/fonts fonts
+ ln -s /host/etc/fonts fonts
# symlink ALSA stuff
- ln -s /host-etc/asound.conf asound.conf
+ ln -s /host/etc/asound.conf asound.conf
# symlink SSL certs
mkdir -p ssl
- ln -s /host-etc/ssl/certs ssl/certs
+ ln -s /host/etc/ssl/certs ssl/certs
# symlink /etc/mtab -> /proc/mounts (compat for old userspace progs)
ln -s /proc/mounts mtab
@@ -116,26 +111,25 @@ let
};
# Composes a /usr-like directory structure
- staticUsrProfileTarget = nixpkgs.buildEnv {
+ staticUsrProfileTarget = buildEnv {
name = "${name}-usr-target";
paths = [ etcPkg ] ++ basePkgs ++ targetPaths;
- extraOutputsToInstall = [ "lib" "out" ] ++ extraOutputsToInstall;
+ extraOutputsToInstall = [ "out" "lib" "bin" ] ++ extraOutputsToInstall;
ignoreCollisions = true;
};
- staticUsrProfileMulti = nixpkgs.buildEnv {
+ staticUsrProfileMulti = buildEnv {
name = "${name}-usr-multi";
paths = baseMultiPkgs ++ multiPaths;
- extraOutputsToInstall = [ "lib" "out" ] ++ extraOutputsToInstall;
+ extraOutputsToInstall = [ "out" "lib" ] ++ extraOutputsToInstall;
ignoreCollisions = true;
};
# setup library paths only for the targeted architecture
setupLibDirs_target = ''
- mkdir -m0755 lib
-
- # copy content of targetPaths
- cp -rsHf ${staticUsrProfileTarget}/lib/* lib/
+ # link content of targetPaths
+ cp -rsHf ${staticUsrProfileTarget}/lib lib
+ ln -s lib lib${if is64Bit then "64" else "32"}
'';
# setup /lib, /lib32 and /lib64
@@ -184,7 +178,7 @@ let
done
'';
-in nixpkgs.stdenv.mkDerivation {
+in stdenv.mkDerivation {
name = "${name}-fhs";
buildCommand = ''
mkdir -p $out
@@ -196,7 +190,4 @@ in nixpkgs.stdenv.mkDerivation {
${if isMultiBuild then extraBuildCommandsMulti else ""}
'';
preferLocalBuild = true;
- passthru = {
- pname = name;
- };
}
diff --git a/pkgs/build-support/buildenv/builder.pl b/pkgs/build-support/buildenv/builder.pl
index f6cfe52dc31..678f5a3fe9e 100755
--- a/pkgs/build-support/buildenv/builder.pl
+++ b/pkgs/build-support/buildenv/builder.pl
@@ -31,9 +31,23 @@ sub isInPathsToLink {
my %symlinks;
+# Add all pathsToLink and all parent directories.
+#
+# For "/a/b/c" that will include
+# [ "", "/a", "/a/b", "/a/b/c" ]
+#
+# That ensures the whole directory tree needed by pathsToLink is
+# created as directories and not symlinks.
+$symlinks{""} = ["", 0];
for my $p (@pathsToLink) {
- $p = "" if $p eq "/";
- $symlinks{$p} = ["", 0];
+ my @parts = split '/', $p;
+
+ my $cur = "";
+ for my $x (@parts) {
+ $cur = $cur . "/$x";
+ $cur = "" if $cur eq "/";
+ $symlinks{$cur} = ["", 0];
+ }
}
sub findFiles;
diff --git a/pkgs/build-support/cc-wrapper/default.nix b/pkgs/build-support/cc-wrapper/default.nix
index 9e1b5839f40..14ece26f6af 100644
--- a/pkgs/build-support/cc-wrapper/default.nix
+++ b/pkgs/build-support/cc-wrapper/default.nix
@@ -96,6 +96,7 @@ stdenv.mkDerivation {
echo "-L${libc_lib}/lib" > $out/nix-support/libc-ldflags
echo "${libc_lib}" > $out/nix-support/orig-libc
+ echo "${libc_dev}" > $out/nix-support/orig-libc-dev
''
+ (if nativeTools then ''
diff --git a/pkgs/build-support/fetchgit/nix-prefetch-git b/pkgs/build-support/fetchgit/nix-prefetch-git
index 21359e060ec..705d84c648b 100755
--- a/pkgs/build-support/fetchgit/nix-prefetch-git
+++ b/pkgs/build-support/fetchgit/nix-prefetch-git
@@ -12,10 +12,15 @@ fetchSubmodules=
builder=
branchName=$NIX_PREFETCH_GIT_BRANCH_NAME
+# ENV params
+out=${out:-}
+http_proxy=${http_proxy:-}
+
# populated by clone_user_rev()
fullRev=
humanReadableRev=
commitDate=
+commitDateStrict8601=
if test -n "$deepClone"; then
deepClone=true
@@ -64,7 +69,7 @@ for arg; do
--builder) builder=true;;
--help) usage; exit;;
*)
- argi=$(($argi + 1))
+ : $((++argi))
case $argi in
1) url=$arg;;
2) rev=$arg;;
@@ -76,7 +81,7 @@ for arg; do
else
case $argfun in
set_*)
- var=$(echo $argfun | sed 's,^set_,,')
+ var=${argfun#set_}
eval $var=$arg
;;
esac
@@ -92,8 +97,8 @@ fi
init_remote(){
local url=$1
git init
- git remote add origin $url
- ( [ -n "$http_proxy" ] && git config http.proxy $http_proxy ) || true
+ git remote add origin "$url"
+ ( [ -n "$http_proxy" ] && git config http.proxy "$http_proxy" ) || true
}
# Return the reference of an hash if it exists on the remote repository.
@@ -116,12 +121,13 @@ url_to_name(){
local url=$1
local ref=$2
# basename removes the / and .git suffixes
- local base=$(basename "$url" .git)
+ local base
+ base=$(basename "$url" .git)
if [[ $ref =~ ^[a-z0-9]+$ ]]; then
echo "$base-${ref:0:7}"
else
- echo $base
+ echo "$base"
fi
}
@@ -131,11 +137,11 @@ checkout_hash(){
local ref="$2"
if test -z "$hash"; then
- hash=$(hash_from_ref $ref)
+ hash=$(hash_from_ref "$ref")
fi
git fetch -t ${builder:+--progress} origin || return 1
- git checkout -b $branchName $hash || return 1
+ git checkout -b "$branchName" "$hash" || return 1
}
# Fetch only a branch/tag and checkout it.
@@ -152,13 +158,13 @@ checkout_ref(){
fi
if test -z "$ref"; then
- ref=$(ref_from_hash $hash)
+ ref=$(ref_from_hash "$hash")
fi
if test -n "$ref"; then
# --depth option is ignored on http repository.
git fetch ${builder:+--progress} --depth 1 origin +"$ref" || return 1
- git checkout -b $branchName FETCH_HEAD || return 1
+ git checkout -b "$branchName" FETCH_HEAD || return 1
else
return 1
fi
@@ -171,27 +177,32 @@ init_submodules(){
# list submodule directories and their hashes
git submodule status |
- while read l; do
+ while read -r l; do
+ local hash
+ local dir
+ local name
+ local url
+
# checkout each submodule
- local hash=$(echo $l | awk '{print substr($1,2)}')
- local dir=$(echo $l | awk '{print $2}')
- local name=$(
+ hash=$(echo "$l" | awk '{print substr($1,2)}')
+ dir=$(echo "$l" | awk '{print $2}')
+ name=$(
git config -f .gitmodules --get-regexp submodule\..*\.path |
sed -n "s,^\(.*\)\.path $dir\$,\\1,p")
- local url=$(git config --get ${name}.url)
+ url=$(git config --get "${name}.url")
clone "$dir" "$url" "$hash" ""
done
}
clone(){
- local top=$(pwd)
+ local top=$PWD
local dir="$1"
local url="$2"
local hash="$3"
local ref="$4"
- cd $dir
+ cd "$dir"
# Initialize the repository.
init_remote "$url"
@@ -208,9 +219,8 @@ clone(){
init_submodules
fi
- if [ -z "$builder" -a -f .topdeps ]; then
- if tg help 2>&1 > /dev/null
- then
+ if [ -z "$builder" ] && [ -f .topdeps ]; then
+ if tg help &>/dev/null; then
echo "populating TopGit branches..."
tg remote --populate origin
else
@@ -219,7 +229,7 @@ clone(){
fi
fi
- cd $top
+ cd "$top"
}
# Remove all remote branches, remove tags not reachable from HEAD, do a full
@@ -236,14 +246,14 @@ make_deterministic_repo(){
.git/refs/remotes/origin/HEAD .git/config
# Remove all remote branches.
- git branch -r | while read branch; do
+ git branch -r | while read -r branch; do
git branch -rD "$branch" >&2
done
# Remove tags not reachable from HEAD. If we're exactly on a tag, don't
# delete it.
maybe_tag=$(git tag --points-at HEAD)
- git tag --contains HEAD | while read tag; do
+ git tag --contains HEAD | while read -r tag; do
if [ "$tag" != "$maybe_tag" ]; then
git tag -d "$tag" >&2
fi
@@ -270,7 +280,7 @@ _clone_user_rev() {
HEAD|refs/*)
clone "$dir" "$url" "" "$rev" 1>&2;;
*)
- if test -z "$(echo $rev | tr -d 0123456789abcdef)"; then
+ if test -z "$(echo "$rev" | tr -d 0123456789abcdef)"; then
clone "$dir" "$url" "$rev" "" 1>&2
else
echo 1>&2 "Bad commit hash or bad reference."
@@ -278,9 +288,12 @@ _clone_user_rev() {
fi;;
esac
- fullRev="$(cd $dir && (git rev-parse $rev 2> /dev/null || git rev-parse refs/heads/$branchName) | tail -n1)"
- humanReadableRev="$(cd $dir && (git describe $fullRev 2> /dev/null || git describe --tags $fullRev 2> /dev/null || echo -- none --))"
- commitDate="$(cd $dir && git show --no-patch --pretty=%ci $fullRev)"
+ pushd "$dir" >/dev/null
+ fullRev=$( (git rev-parse "$rev" 2>/dev/null || git rev-parse "refs/heads/$branchName") | tail -n1)
+ humanReadableRev=$(git describe "$fullRev" 2> /dev/null || git describe --tags "$fullRev" 2> /dev/null || echo -- none --)
+ commitDate=$(git show --no-patch --pretty=%ci "$fullRev")
+ commitDateStrict8601=$(git show --no-patch --pretty=%cI "$fullRev")
+ popd >/dev/null
# Allow doing additional processing before .git removal
eval "$NIX_PREFETCH_GIT_CHECKOUT_HOOK"
@@ -288,7 +301,7 @@ _clone_user_rev() {
echo "removing \`.git'..." >&2
find "$dir" -name .git -print0 | xargs -0 rm -rf
else
- find "$dir" -name .git | while read gitdir; do
+ find "$dir" -name .git | while read -r gitdir; do
make_deterministic_repo "$(readlink -f "$gitdir/..")"
done
fi
@@ -299,6 +312,7 @@ clone_user_rev() {
_clone_user_rev "$@"
else
errfile="$(mktemp "${TMPDIR:-/tmp}/git-checkout-err-XXXXXXXX")"
+ # shellcheck disable=SC2064
trap "rm -rf \"$errfile\"" EXIT
_clone_user_rev "$@" 2> "$errfile" || (
status="$?"
@@ -327,6 +341,7 @@ print_results() {
echo "{"
echo " \"url\": \"$url\","
echo " \"rev\": \"$fullRev\","
+ echo " \"date\": \"$commitDateStrict8601\","
echo -n " \"$hashType\": \"$hash\""
if test -n "$fetchSubmodules"; then
echo ","
@@ -343,7 +358,7 @@ fi
if test -n "$builder"; then
test -n "$out" -a -n "$url" -a -n "$rev" || usage
- mkdir -p $out
+ mkdir -p "$out"
clone_user_rev "$out" "$url" "$rev"
else
if test -z "$hashType"; then
@@ -365,6 +380,7 @@ else
if test -z "$finalPath"; then
tmpPath="$(mktemp -d "${TMPDIR:-/tmp}/git-checkout-tmp-XXXXXXXX")"
+ # shellcheck disable=SC2064
trap "rm -rf \"$tmpPath\"" EXIT
tmpFile="$tmpPath/$(url_to_name "$url" "$rev")"
@@ -374,7 +390,7 @@ else
clone_user_rev "$tmpFile" "$url" "$rev"
# Compute the hash.
- hash=$(nix-hash --type $hashType --base32 $tmpFile)
+ hash=$(nix-hash --type $hashType --base32 "$tmpFile")
# Add the downloaded file to the Nix store.
finalPath=$(nix-store --add-fixed --recursive "$hashType" "$tmpFile")
@@ -389,6 +405,6 @@ else
print_results "$hash"
if test -n "$PRINT_PATH"; then
- echo $finalPath
+ echo "$finalPath"
fi
fi
diff --git a/pkgs/build-support/gcc-cross-wrapper/builder.sh b/pkgs/build-support/gcc-cross-wrapper/builder.sh
index c6bc2a7c8bf..9396ace84f1 100644
--- a/pkgs/build-support/gcc-cross-wrapper/builder.sh
+++ b/pkgs/build-support/gcc-cross-wrapper/builder.sh
@@ -111,6 +111,7 @@ chmod +x "$out/bin/$crossConfig-ld"
# Glibc.
test -n "$gcc" && echo $gcc > $out/nix-support/orig-cc
test -n "$libc" && echo $libc > $out/nix-support/orig-libc
+test -n "$libc_dev" && echo $libc_dev > $out/nix-support/orig-libc-dev
doSubstitute "$addFlags" "$out/nix-support/add-flags"
diff --git a/pkgs/build-support/gcc-cross-wrapper/default.nix b/pkgs/build-support/gcc-cross-wrapper/default.nix
index d3494b83a87..505d80a6b2a 100644
--- a/pkgs/build-support/gcc-cross-wrapper/default.nix
+++ b/pkgs/build-support/gcc-cross-wrapper/default.nix
@@ -44,7 +44,9 @@ stdenv.mkDerivation {
ldWrapper = ./ld-wrapper.sh;
utils = ./utils.sh;
addFlags = ./add-flags;
- inherit nativeTools nativeLibc nativePrefix gcc libc binutils;
+ inherit nativeTools nativeLibc nativePrefix gcc binutils;
+ libc = if libc ? out then libc.out else libc;
+ libc_dev = if libc ? dev then libc.dev else libc;
crossConfig = if cross != null then cross.config else null;
osxMinVersion = cross.osxMinVersion or null;
gccLibs = if gcc != null then gccLibs else null;
diff --git a/pkgs/build-support/grsecurity/default.nix b/pkgs/build-support/grsecurity/default.nix
index 7777b600062..8713f2d22c4 100644
--- a/pkgs/build-support/grsecurity/default.nix
+++ b/pkgs/build-support/grsecurity/default.nix
@@ -1,158 +1,33 @@
-{ grsecOptions, lib, pkgs }:
+{ stdenv
+, overrideDerivation
-with lib;
+# required for gcc plugins
+, gmp, libmpc, mpfr
-let
- cfg = {
- kernelPatch = grsecOptions.kernelPatch;
- config = {
- mode = "auto";
- sysctl = false;
- denyChrootCaps = false;
- denyChrootChmod = false;
- denyUSB = false;
- restrictProc = false;
- restrictProcWithGroup = true;
- unrestrictProcGid = 121; # Ugh, an awful hack. See grsecurity NixOS gid
- disableRBAC = false;
- disableSimultConnect = false;
- redistKernel = true;
- verboseVersion = false;
- kernelExtraConfig = "";
- } // grsecOptions.config;
- };
+# the base kernel
+, kernel
- vals = rec {
+, grsecPatch
+, kernelPatches ? []
- mkKernel = patch:
- {
- inherit patch;
- inherit (patch) kernel patches grversion revision;
- };
+, localver ? "-grsec"
+, modDirVersion ? "${kernel.version}${localver}"
+, extraConfig ? ""
+, ...
+} @ args:
- grKernel = mkKernel cfg.kernelPatch;
+assert (kernel.version == grsecPatch.kver);
- ## -- grsecurity configuration ---------------------------------------------
-
- grsecPrioCfg =
- if cfg.config.priority == "security" then
- "GRKERNSEC_CONFIG_PRIORITY_SECURITY y"
- else
- "GRKERNSEC_CONFIG_PRIORITY_PERF y";
-
- grsecSystemCfg =
- if cfg.config.system == "desktop" then
- "GRKERNSEC_CONFIG_DESKTOP y"
- else
- "GRKERNSEC_CONFIG_SERVER y";
-
- grsecVirtCfg =
- if cfg.config.virtualisationConfig == null then
- "GRKERNSEC_CONFIG_VIRT_NONE y"
- else if cfg.config.virtualisationConfig == "host" then
- "GRKERNSEC_CONFIG_VIRT_HOST y"
- else
- "GRKERNSEC_CONFIG_VIRT_GUEST y";
-
- grsecHwvirtCfg = if cfg.config.virtualisationConfig == null then "" else
- if cfg.config.hardwareVirtualisation == true then
- "GRKERNSEC_CONFIG_VIRT_EPT y"
- else
- "GRKERNSEC_CONFIG_VIRT_SOFT y";
-
- grsecVirtswCfg =
- let virtCfg = opt: "GRKERNSEC_CONFIG_VIRT_"+opt+" y";
- in
- if cfg.config.virtualisationConfig == null then ""
- else if cfg.config.virtualisationSoftware == "xen" then virtCfg "XEN"
- else if cfg.config.virtualisationSoftware == "kvm" then virtCfg "KVM"
- else if cfg.config.virtualisationSoftware == "vmware" then virtCfg "VMWARE"
- else virtCfg "VIRTUALBOX";
-
- grsecMainConfig = if cfg.config.mode == "custom" then "" else ''
- GRKERNSEC_CONFIG_AUTO y
- ${grsecPrioCfg}
- ${grsecSystemCfg}
- ${grsecVirtCfg}
- ${grsecHwvirtCfg}
- ${grsecVirtswCfg}
- '';
-
- grsecConfig =
- let boolToKernOpt = b: if b then "y" else "n";
- # Disable RANDSTRUCT under virtualbox, as it has some kind of
- # breakage with the vbox guest drivers
- #randstruct = optionalString config.virtualisation.virtualbox.guest.enable
- # "GRKERNSEC_RANDSTRUCT n";
-
- # Disable restricting links under the testing kernel, as something
- # has changed causing it to fail miserably during boot.
- #restrictLinks = optionalString cfg.testing
- # "GRKERNSEC_LINK n";
- in ''
- GRKERNSEC y
- ${grsecMainConfig}
-
- # Disable features rendered useless by redistributing the kernel
- ${optionalString cfg.config.redistKernel ''
- GRKERNSEC_RANDSTRUCT n
- GRKERNSEC_HIDESYM n
- ''}
-
- # The paxmarks mechanism relies on ELF header markings, but the default
- # grsecurity configuration only enables xattr markings
- PAX_PT_PAX_FLAGS y
-
- ${if cfg.config.restrictProc then
- "GRKERNSEC_PROC_USER y"
- else
- optionalString cfg.config.restrictProcWithGroup ''
- GRKERNSEC_PROC_USERGROUP y
- GRKERNSEC_PROC_GID ${toString cfg.config.unrestrictProcGid}
- ''
- }
-
- GRKERNSEC_SYSCTL ${boolToKernOpt cfg.config.sysctl}
- GRKERNSEC_CHROOT_CAPS ${boolToKernOpt cfg.config.denyChrootCaps}
- GRKERNSEC_CHROOT_CHMOD ${boolToKernOpt cfg.config.denyChrootChmod}
- GRKERNSEC_DENYUSB ${boolToKernOpt cfg.config.denyUSB}
- GRKERNSEC_NO_RBAC ${boolToKernOpt cfg.config.disableRBAC}
- GRKERNSEC_NO_SIMULT_CONNECT ${boolToKernOpt cfg.config.disableSimultConnect}
-
- ${cfg.config.kernelExtraConfig}
- '';
-
- ## -- grsecurity kernel packages -------------------------------------------
-
- localver = grkern:
- "-grsec" + optionalString cfg.config.verboseVersion
- "-${grkern.grversion}-${grkern.revision}";
-
- grsecurityOverrider = args: grkern: {
- # additional build inputs for gcc plugins, required by some PaX/grsec features
- nativeBuildInputs = args.nativeBuildInputs ++ (with pkgs; [ gmp libmpc mpfr ]);
-
- preConfigure = (args.preConfigure or "") + ''
- echo ${localver grkern} > localversion-grsec
- '';
- };
-
- mkGrsecKern = grkern:
- lowPrio (overrideDerivation (grkern.kernel.override (args: {
- kernelPatches = args.kernelPatches ++ [ grkern.patch ] ++ grkern.patches;
- argsOverride = {
- modDirVersion = "${grkern.kernel.modDirVersion}${localver grkern}";
- };
- extraConfig = grsecConfig;
- features.grsecurity = true;
- ignoreConfigErrors = true; # Too lazy to model the config options that work with grsecurity and don't for now
- })) (args: grsecurityOverrider args grkern));
-
- mkGrsecPkg = grkern: pkgs.linuxPackagesFor grkern (mkGrsecPkg grkern);
-
- ## -- Kernel packages ------------------------------------------------------
-
- grsecKernel = mkGrsecKern grKernel;
- grsecPackage = mkGrsecPkg grsecKernel;
- };
-in vals
+overrideDerivation (kernel.override {
+ inherit modDirVersion;
+ kernelPatches = [ { inherit (grsecPatch) name patch; } ] ++ kernelPatches ++ (kernel.kernelPatches or []);
+ features = (kernel.features or {}) // { grsecurity = true; };
+ inherit extraConfig;
+ ignoreConfigErrors = true;
+}) (attrs: {
+ nativeBuildInputs = [ gmp libmpc mpfr ] ++ (attrs.nativeBuildInputs or []);
+ preConfigure = ''
+ echo ${localver} >localversion-grsec
+ ${attrs.preConfigure or ""}
+ '';
+})
diff --git a/pkgs/build-support/grsecurity/flavors.nix b/pkgs/build-support/grsecurity/flavors.nix
deleted file mode 100644
index 1281d60aa32..00000000000
--- a/pkgs/build-support/grsecurity/flavors.nix
+++ /dev/null
@@ -1,17 +0,0 @@
-let
- mkOpts = prio: sys: virt: swvirt: hwvirt:
- { config.priority = prio;
- config.system = sys;
- config.virtualisationConfig = virt;
- config.hardwareVirtualisation = hwvirt;
- config.virtualisationSoftware = swvirt;
- };
-in
-{
- desktop =
- mkOpts "performance" "desktop" "host" "kvm" true;
- server =
- mkOpts "security" "server" "host" "kvm" true;
- server_xen =
- mkOpts "security" "server" "guest" "xen" true;
-}
diff --git a/pkgs/build-support/libredirect/libredirect.c b/pkgs/build-support/libredirect/libredirect.c
index e60319d0971..ed0d5b0043d 100644
--- a/pkgs/build-support/libredirect/libredirect.c
+++ b/pkgs/build-support/libredirect/libredirect.c
@@ -137,3 +137,10 @@ int posix_spawn(pid_t * pid, const char * path,
char buf[PATH_MAX];
return posix_spawn_real(pid, rewrite(path, buf), file_actions, attrp, argv, envp);
}
+
+int execv(const char *path, char *const argv[])
+{
+ int (*execv_real) (const char *path, char *const argv[]) = dlsym(RTLD_NEXT, "execv");
+ char buf[PATH_MAX];
+ return execv_real(rewrite(path, buf), argv);
+}
diff --git a/pkgs/build-support/rust/default.nix b/pkgs/build-support/rust/default.nix
index b889c4f2458..bbea045f637 100644
--- a/pkgs/build-support/rust/default.nix
+++ b/pkgs/build-support/rust/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, cacert, git, cargo, rustRegistry }:
+{ stdenv, cacert, git, rust, rustRegistry }:
{ name, depsSha256
, src ? null
, srcs ? null
@@ -10,7 +10,7 @@
let
fetchDeps = import ./fetchcargo.nix {
- inherit stdenv cacert git cargo rustRegistry;
+ inherit stdenv cacert git rust rustRegistry;
};
cargoDeps = fetchDeps {
@@ -23,7 +23,7 @@ in stdenv.mkDerivation (args // {
patchRegistryDeps = ./patch-registry-deps;
- buildInputs = [ git cargo cargo.rustc ] ++ buildInputs;
+ buildInputs = [ git rust.cargo rust.rustc ] ++ buildInputs;
configurePhase = args.configurePhase or "true";
diff --git a/pkgs/build-support/rust/fetchcargo.nix b/pkgs/build-support/rust/fetchcargo.nix
index 51842000262..1b4983e3259 100644
--- a/pkgs/build-support/rust/fetchcargo.nix
+++ b/pkgs/build-support/rust/fetchcargo.nix
@@ -1,9 +1,9 @@
-{ stdenv, cacert, git, cargo, rustRegistry }:
+{ stdenv, cacert, git, rust, rustRegistry }:
{ name ? "cargo-deps", src, srcs, sourceRoot, sha256, cargoUpdateHook ? "" }:
stdenv.mkDerivation {
name = "${name}-fetch";
- buildInputs = [ cargo git ];
+ buildInputs = [ rust.cargo rust.rustc git ];
inherit src srcs sourceRoot rustRegistry cargoUpdateHook;
phases = "unpackPhase installPhase";
diff --git a/pkgs/build-support/setup-hooks/make-wrapper.sh b/pkgs/build-support/setup-hooks/make-wrapper.sh
index 7d0f88abb85..d922db5ccf5 100644
--- a/pkgs/build-support/setup-hooks/make-wrapper.sh
+++ b/pkgs/build-support/setup-hooks/make-wrapper.sh
@@ -16,7 +16,7 @@ makeWrapper() {
varName=${params[$((n + 1))]}
value=${params[$((n + 2))]}
n=$((n + 2))
- echo "export $varName=$value" >> $wrapper
+ echo "export $varName=\"$value\"" >> $wrapper
fi
if test "$p" = "--unset"; then
diff --git a/pkgs/build-support/setup-hooks/patch-shebangs.sh b/pkgs/build-support/setup-hooks/patch-shebangs.sh
index 38660718d0e..4317a5f4dad 100644
--- a/pkgs/build-support/setup-hooks/patch-shebangs.sh
+++ b/pkgs/build-support/setup-hooks/patch-shebangs.sh
@@ -46,7 +46,8 @@ patchShebangs() {
args="$arg0 $args"
fi
- newInterpreterLine="$newPath $args"
+ # Strip trailing whitespace introduced when no arguments are present
+ newInterpreterLine="$(echo "$newPath $args" | sed 's/[[:space:]]*$//')"
if [ -n "$oldPath" -a "${oldPath:0:${#NIX_STORE}}" != "$NIX_STORE" ]; then
if [ -n "$newPath" -a "$newPath" != "$oldPath" ]; then
diff --git a/pkgs/build-support/trivial-builders.nix b/pkgs/build-support/trivial-builders.nix
index 73f4d7783c4..8775286b117 100644
--- a/pkgs/build-support/trivial-builders.nix
+++ b/pkgs/build-support/trivial-builders.nix
@@ -8,6 +8,7 @@ rec {
runCommand = name: env: buildCommand:
stdenv.mkDerivation ({
inherit name buildCommand;
+ passAsFile = [ "buildCommand" ];
} // env);
@@ -48,15 +49,17 @@ rec {
# Create a forest of symlinks to the files in `paths'.
symlinkJoin =
- args@{ name
+ args_@{ name
, paths
, preferLocalBuild ? true
, allowSubstitutes ? false
, postBuild ? ""
, ...
}:
- runCommand name
- (removeAttrs args [ "name" "postBuild" ])
+ let
+ args = removeAttrs args_ [ "name" "postBuild" ]
+ // { inherit preferLocalBuild allowSubstitutes; }; # pass the defaults
+ in runCommand name args
''
mkdir -p $out
for i in $paths; do
diff --git a/pkgs/build-support/vm/default.nix b/pkgs/build-support/vm/default.nix
index 7a3d816efc9..fa7107bd738 100644
--- a/pkgs/build-support/vm/default.nix
+++ b/pkgs/build-support/vm/default.nix
@@ -319,6 +319,7 @@ rec {
origArgs = args;
origBuilder = builder;
QEMU_OPTS = "${QEMU_OPTS} -m ${toString memSize}";
+ passAsFile = []; # HACK fix - see https://github.com/NixOS/nixpkgs/issues/16742
});
@@ -1832,44 +1833,44 @@ rec {
debian70x86_64 = debian7x86_64;
debian7i386 = {
- name = "debian-7.10-wheezy-i386";
- fullName = "Debian 7.10 Wheezy (i386)";
+ name = "debian-7.11-wheezy-i386";
+ fullName = "Debian 7.11 Wheezy (i386)";
packagesList = fetchurl {
url = mirror://debian/dists/wheezy/main/binary-i386/Packages.bz2;
- sha256 = "02dncyhz3c02jzdxqngbhfic7acsa7p2yv76xwrhawj38yjgqzrm";
+ sha256 = "57ea423dc1c0cc082cae580360f8e7192c9fd60e2ef775a4ce7f48784277462d";
};
urlPrefix = mirror://debian;
packages = commonDebianPackages;
};
debian7x86_64 = {
- name = "debian-7.10-wheezy-amd64";
- fullName = "Debian 7.10 Wheezy (amd64)";
+ name = "debian-7.11-wheezy-amd64";
+ fullName = "Debian 7.11 Wheezy (amd64)";
packagesList = fetchurl {
url = mirror://debian/dists/wheezy/main/binary-amd64/Packages.bz2;
- sha256 = "1kir3j6y81s914njvs0sbwywq7qv28f8s615r9agg9s0h5g760fw";
+ sha256 = "b400e459ce2f8af8621182c3a9ea843f0df3dc2d5662e6c6204f9406f5ff2d41";
};
urlPrefix = mirror://debian;
packages = commonDebianPackages;
};
debian8i386 = {
- name = "debian-8.4-jessie-i386";
- fullName = "Debian 8.4 Jessie (i386)";
+ name = "debian-8.5-jessie-i386";
+ fullName = "Debian 8.5 Jessie (i386)";
packagesList = fetchurl {
url = mirror://debian/dists/jessie/main/binary-i386/Packages.xz;
- sha256 = "1j8swc1nzsi20vbcmya2sv0fzcnz7lhwb32lxabgcwm3xlkzlg58";
+ sha256 = "f87a1ee673b335c28cb6ac87be61d6ef20f32dd847835c2bb7d400a00a464c7f";
};
urlPrefix = mirror://debian;
packages = commonDebianPackages;
};
debian8x86_64 = {
- name = "debian-8.4-jessie-amd64";
- fullName = "Debian 8.4 Jessie (amd64)";
+ name = "debian-8.5-jessie-amd64";
+ fullName = "Debian 8.5 Jessie (amd64)";
packagesList = fetchurl {
url = mirror://debian/dists/jessie/main/binary-amd64/Packages.xz;
- sha256 = "0kipisyjkhczghzqj4a8y1n4az9c4c8lsj8sw7js13b053lpj6ga";
+ sha256 = "df6aea15d5547ae8dc6d7ceadc8bf6499bc5a3907d13231f811bf3c1c22474ef";
};
urlPrefix = mirror://debian;
packages = commonDebianPackages;
diff --git a/pkgs/build-support/vm/windows/controller/default.nix b/pkgs/build-support/vm/windows/controller/default.nix
index 1c8e6af83b8..06a0a229306 100644
--- a/pkgs/build-support/vm/windows/controller/default.nix
+++ b/pkgs/build-support/vm/windows/controller/default.nix
@@ -71,8 +71,6 @@ let
};
};
- shellEscape = x: "'${replaceChars ["'"] [("'\\'" + "'")] x}'";
-
loopForever = "while :; do ${coreutils}/bin/sleep 1; done";
initScript = writeScript "init.sh" (''
@@ -132,7 +130,7 @@ let
-o StrictHostKeyChecking=no \
-i /ssh.key \
-l Administrator \
- 192.168.0.1 -- ${shellEscape command}
+ 192.168.0.1 -- ${lib.escapeShellArg command}
'') + optionalString (suspendTo != null) ''
${coreutils}/bin/touch /xchg/suspend_now
${loopForever}
diff --git a/pkgs/data/documentation/bgnet/default.nix b/pkgs/data/documentation/bgnet/default.nix
new file mode 100644
index 00000000000..e205129db19
--- /dev/null
+++ b/pkgs/data/documentation/bgnet/default.nix
@@ -0,0 +1,32 @@
+{ stdenv, lib, fetchurl, python, zip, fop }:
+
+stdenv.mkDerivation rec {
+ name = "bgnet-${version}";
+ version = "3.0.21";
+
+ src = fetchurl {
+ url = https://beej.us/guide/bgnet/bgnet.tgz;
+ sha256 = "00ggr5prc5i3w9gaaw2sadfq6haq7lmh0vdilaxx8xz9z5znxvyv";
+ };
+
+ buildInputs = [ python zip fop ];
+
+ preBuild = ''
+ sed -i "s/#disable=1/disable=1/" bin/bgvalidate
+ # build scripts need some love
+ patchShebangs .
+ '';
+
+ installPhase = ''
+ mkdir -p $out
+ mv * $out/
+ '';
+
+ meta = {
+ description = "Beej’s Guide to Network Programming";
+ homepage = https://beej.us/guide/bgnet/;
+ license = lib.licenses.unfree;
+
+ maintainers = with lib.maintainers; [ profpatsch ];
+ };
+}
diff --git a/pkgs/data/fonts/emojione/default.nix b/pkgs/data/fonts/emojione/default.nix
new file mode 100644
index 00000000000..3e74ca9270a
--- /dev/null
+++ b/pkgs/data/fonts/emojione/default.nix
@@ -0,0 +1,35 @@
+{ stdenv, fetchFromGitHub, inkscape, imagemagick, potrace, svgo, scfbuild }:
+
+stdenv.mkDerivation rec {
+ name = "emojione-${version}";
+ version = "1.2";
+
+ src = fetchFromGitHub {
+ owner = "eosrei";
+ repo = "emojione-color-font";
+ rev = "v${version}";
+ sha256 = "001c2bph4jcdg9arfmyxrscf1i09gvg44kqy28chjmhxzq99hpcg";
+ };
+
+ preBuild = ''
+ sed -i 's,SCFBUILD :=.*,SCFBUILD := scfbuild,' Makefile
+ # Shut up inkscape's warnings
+ export HOME="$NIX_BUILD_ROOT"
+ '';
+
+ nativeBuildInputs = [ inkscape imagemagick potrace svgo scfbuild ];
+
+ enableParallelBuilding = true;
+
+ installPhase = ''
+ install -Dm755 build/EmojiOneColor-SVGinOT.ttf $out/share/fonts/truetype/EmojiOneColor-SVGinOT.ttf
+ '';
+
+ meta = with stdenv.lib; {
+ description = "Open source emoji set";
+ homepage = "http://emojione.com/";
+ licenses = licenses.cc-by-40;
+ platforms = platforms.all;
+ maintainers = with maintainers; [ abbradar ];
+ };
+}
diff --git a/pkgs/data/fonts/font-awesome-ttf/default.nix b/pkgs/data/fonts/font-awesome-ttf/default.nix
index 284416ad629..9cbf7059d92 100644
--- a/pkgs/data/fonts/font-awesome-ttf/default.nix
+++ b/pkgs/data/fonts/font-awesome-ttf/default.nix
@@ -1,11 +1,11 @@
{stdenv, fetchurl, unzip}:
stdenv.mkDerivation rec {
- name = "font-awesome-4.5.0";
+ name = "font-awesome-4.6.3";
src = fetchurl {
url = "http://fortawesome.github.io/Font-Awesome/assets/${name}.zip";
- sha256 = "1lvxs4isrk80cczq6nrxksvqxs04k13i23i6c2l5vmfs2ndjsdm2";
+ sha256 = "06d6p3rydy86hg82igra4vqglyx7bii19jj5kdyhva0d2gqv7zfn";
};
buildCommand = ''
diff --git a/pkgs/data/fonts/gdouros/default.nix b/pkgs/data/fonts/gdouros/default.nix
index 114b88c3040..7cbad019d2f 100644
--- a/pkgs/data/fonts/gdouros/default.nix
+++ b/pkgs/data/fonts/gdouros/default.nix
@@ -5,7 +5,7 @@ let
description = "Scripts and symbols of the Aegean world"; };
textfonts = { version = "6.00"; file = "Textfonts.zip"; sha256 = "06igp3hdql0yfaj9h2ahh5n7yvj2ni7rj2jdmz534f9618l8qi6r";
description = "Fonts based on early Greek editions"; };
- symbola = { version = "8.00"; file = "Symbola.zip"; sha256 = "1lfs2j816332ysvpb5ibj2gwpmyqyispqdl7skkshf2gra18hmhd";
+ symbola = { version = "9.00"; file = "Symbola.zip"; sha256 = "0d9zrlvzh8inhr17p99banr0dmrvkwxbk3q7zhqqx2z4gf2yavc5";
description = "Basic Latin, Greek, Cyrillic and many Symbol blocks of Unicode"; };
aegyptus = { version = "6.00"; file = "Aegyptus.zip"; sha256 = "10mr54ja9b169fhqfkrw510jybghrpjx7a8a7m38k5v39ck8wz6v";
description = "Egyptian Hieroglyphs, Coptic, Meroitic"; };
diff --git a/pkgs/data/fonts/iosevka/default.nix b/pkgs/data/fonts/iosevka/default.nix
index aded5b1cddf..cbd963e903d 100644
--- a/pkgs/data/fonts/iosevka/default.nix
+++ b/pkgs/data/fonts/iosevka/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, lib, fetchFromGitHub }:
+{ stdenv, fetchFromGitHub }:
stdenv.mkDerivation rec {
name = "iosevka-${version}";
@@ -18,7 +18,7 @@ stdenv.mkDerivation rec {
cp -v iosevka-* $fontdir
'';
- meta = with lib; {
+ meta = with stdenv.lib; {
homepage = "http://be5invis.github.io/Iosevka/";
downloadPage = "https://github.com/be5invis/Iosevka/releases";
description = ''
diff --git a/pkgs/data/fonts/libertine/default.nix b/pkgs/data/fonts/libertine/default.nix
index 3b89f3db36d..c69cc7ae34d 100644
--- a/pkgs/data/fonts/libertine/default.nix
+++ b/pkgs/data/fonts/libertine/default.nix
@@ -14,7 +14,7 @@ stdenv.mkDerivation rec {
buildPhase = ''
for i in *.sfd; do
- fontforge -c \
+ fontforge -lang=ff -c \
'Open($1);
ScaleToEm(1000);
Reencode("unicode");
diff --git a/pkgs/data/fonts/mononoki/default.nix b/pkgs/data/fonts/mononoki/default.nix
new file mode 100644
index 00000000000..fe429fe1df8
--- /dev/null
+++ b/pkgs/data/fonts/mononoki/default.nix
@@ -0,0 +1,27 @@
+{ stdenv, fetchurl, unzip }:
+
+stdenv.mkDerivation rec {
+ name = "mononoki-${version}";
+ version = "1.2";
+
+ src = fetchurl {
+ url = "https://github.com/madmalik/mononoki/releases/download/${version}/mononoki.zip";
+ sha256 = "0n66bnn2i776fbky14qjijwsbrja9yzc1xfsmvz99znvcdvflafg";
+ };
+
+ buildInputs = [ unzip ];
+ phases = [ "unpackPhase" ];
+
+ unpackPhase = ''
+ mkdir -p $out/share/fonts/mononoki
+ unzip $src -d $out/share/fonts/mononoki
+ '';
+
+ meta = with stdenv.lib; {
+ homepage = https://github.com/madmalik/mononoki;
+ description = "A font for programming and code review";
+ license = licenses.ofl;
+ maintainers = [ maintainers.hiberno ];
+ platforms = platforms.all;
+ };
+}
diff --git a/pkgs/data/fonts/norwester/default.nix b/pkgs/data/fonts/norwester/default.nix
new file mode 100644
index 00000000000..cc2a2617f34
--- /dev/null
+++ b/pkgs/data/fonts/norwester/default.nix
@@ -0,0 +1,29 @@
+{ stdenv, fetchurl, unzip }:
+
+stdenv.mkDerivation rec {
+ pname = "norwester";
+ version = "1.2";
+ name = "${pname}-${version}";
+
+ src = fetchurl {
+ url = "http://jamiewilson.io/norwester/assets/norwester.zip";
+ sha256 = "0syg8ss7mpli4cbxvh3ld7qrlbhb2dfv3wchm765iw6ndc05g92d";
+ };
+
+ phases = [ "installPhase" ];
+
+ buildInputs = [ unzip ];
+
+ installPhase = ''
+ mkdir -p $out/share/fonts/opentype
+ unzip -D -j $src ${pname}-v${version}/${pname}.otf -d $out/share/fonts/opentype/
+ '';
+
+ meta = with stdenv.lib; {
+ homepage = "http://jamiewilson.io/norwester";
+ description = "A condensed geometric sans serif by Jamie Wilson";
+ maintainers = with maintainers; [ leenaars ];
+ license = licenses.ofl;
+ platforms = platforms.all;
+ };
+}
diff --git a/pkgs/data/fonts/orbitron/default.nix b/pkgs/data/fonts/orbitron/default.nix
new file mode 100644
index 00000000000..d68bf37f4da
--- /dev/null
+++ b/pkgs/data/fonts/orbitron/default.nix
@@ -0,0 +1,50 @@
+{ stdenv, fetchFromGitHub }:
+
+stdenv.mkDerivation rec {
+ name = "orbitron-${version}";
+ version = "20110526";
+
+ src = fetchFromGitHub {
+ owner = "theleagueof";
+ repo = "orbitron";
+ rev = "13e6a52";
+ sha256 = "1c6jb7ayr07j1pbnzf3jxng9x9bbqp3zydf8mqdw9ifln1b4ycyf";
+ };
+
+ phases = [ "unpackPhase" "installPhase" ];
+
+ installPhase = ''
+ otfdir=$out/share/fonts/opentype/orbitron
+ ttfdir=$out/share/fonts/ttf/orbitron
+ mkdir -p $otfdir $ttfdir
+ cp -v Orbitron*.otf $otfdir
+ cp -v Orbitron*.ttf $ttfdir
+ '';
+
+ meta = with stdenv.lib; {
+ homepage = "https://www.theleagueofmoveabletype.com/orbitron";
+ downloadPage = "https://www.theleagueofmoveabletype.com/orbitron/download";
+ description = ''
+ Geometric sans-serif for display purposes by Matt McInerney'';
+ longDescription = ''
+ Orbitron is a geometric sans-serif typeface intended for display
+ purposes. It features four weights (light, medium, bold, and
+ black), a stylistic alternative, small caps, and a ton of
+ alternate glyphs.
+
+ Orbitron was designed so that graphic designers in the future
+ will have some alternative to typefaces like Eurostile or Bank
+ Gothic. If you’ve ever seen a futuristic sci-fi movie, you have
+ may noticed that all other fonts have been lost or destroyed in
+ the apocalypse that led humans to flee earth. Only those very few
+ geometric typefaces have survived to be used on spaceship
+ exteriors, space station signage, monopolistic corporate
+ branding, uniforms featuring aerodynamic shoulder pads, etc. Of
+ course Orbitron could also be used on the posters for the movies
+ portraying this inevitable future.
+ '';
+ license = licenses.ofl;
+ platforms = platforms.all;
+ maintainers = [ maintainers.leenaars ];
+ };
+}
diff --git a/pkgs/data/fonts/unifont/default.nix b/pkgs/data/fonts/unifont/default.nix
index e6fe5afa9b1..76537c89571 100644
--- a/pkgs/data/fonts/unifont/default.nix
+++ b/pkgs/data/fonts/unifont/default.nix
@@ -2,16 +2,16 @@
stdenv.mkDerivation rec {
name = "unifont-${version}";
- version = "8.0.01";
+ version = "9.0.01";
ttf = fetchurl {
url = "http://fossies.org/linux/unifont/font/precompiled/${name}.ttf";
- sha256 = "0g4g2n024072cdrs2wjp7xmkr3i9dm52a5g9hiafxjgj5a45c8kl";
+ sha256 = "0n2vdzrp86bjxfyqgmryrqckmjiiz4jvsfz9amgg3dv2p42y0dhd";
};
pcf = fetchurl {
url = "http://fossies.org/linux/unifont/font/precompiled/${name}.pcf.gz";
- sha256 = "0mpdy2k7z9s60x8i6sbv64p9wrihfwgrw81x5yj13rl6x7zzghr8";
+ sha256 = "1n3zff46pk6s2x5y7h76aq7h9wfq2acv77gpmxkhz5iwvbpxgb4z";
};
buildInputs = [ mkfontscale mkfontdir ];
@@ -34,7 +34,7 @@ stdenv.mkDerivation rec {
# Basically GPL2+ with font exception.
license = http://unifoundry.com/LICENSE.txt;
- maintainers = [ maintainers.rycee ];
+ maintainers = [ maintainers.rycee maintainers.vrthra ];
platforms = platforms.all;
};
}
diff --git a/pkgs/data/fonts/unifont_upper/default.nix b/pkgs/data/fonts/unifont_upper/default.nix
index 7dff5f82a6e..27440a2a95d 100644
--- a/pkgs/data/fonts/unifont_upper/default.nix
+++ b/pkgs/data/fonts/unifont_upper/default.nix
@@ -2,11 +2,11 @@
stdenv.mkDerivation rec {
name = "unifont_upper-${version}";
- version = "8.0.01";
+ version = "9.0.01";
ttf = fetchurl {
- url = "http://unifoundry.com/pub/unifont-8.0.01/font-builds/${name}.ttf";
- sha256 = "0ffqm85bk345pnql1x0rbg0z31472y844xibb27njjg4avb21lga";
+ url = "http://unifoundry.com/pub/unifont-9.0.01/font-builds/${name}.ttf";
+ sha256 = "06b7na4vb2fjn0zn14bmarzn6vb3ndkysixc89kmb2cc24kfpix1";
};
phases = "installPhase";
@@ -23,7 +23,7 @@ stdenv.mkDerivation rec {
# Basically GPL2+ with font exception.
license = http://unifoundry.com/LICENSE.txt;
- maintainers = [ maintainers.mathnerd314 ];
+ maintainers = [ maintainers.mathnerd314 maintainers.vrthra ];
platforms = platforms.all;
};
}
diff --git a/pkgs/data/icons/arc-icon-theme/default.nix b/pkgs/data/icons/arc-icon-theme/default.nix
new file mode 100644
index 00000000000..07900eebeef
--- /dev/null
+++ b/pkgs/data/icons/arc-icon-theme/default.nix
@@ -0,0 +1,26 @@
+{ stdenv, fetchFromGitHub, autoreconfHook, moka-icon-theme }:
+
+stdenv.mkDerivation rec {
+ name = "${package-name}-${version}";
+ package-name = "arc-icon-theme";
+ version = "2016-06-06";
+
+ src = fetchFromGitHub {
+ owner = "horst3180";
+ repo = package-name;
+ rev = "69da5eed0761237fd287ea2fc95c708353ccc332";
+ sha256 = "04ym3ix2cpjh1q7lwvhl578pv41mn9zsadlsygl0nck8yd22widq";
+ };
+
+ nativeBuildInputs = [ autoreconfHook ];
+
+ buildInputs = [ moka-icon-theme ];
+
+ meta = with stdenv.lib; {
+ description = "Arc icon theme";
+ homepage = https://github.com/horst3180/arc-icon-theme;
+ license = with licenses; [ gpl3 ];
+ platforms = platforms.all;
+ maintainers = with maintainers; [ romildo ];
+ };
+}
diff --git a/pkgs/data/icons/faba-icon-theme/default.nix b/pkgs/data/icons/faba-icon-theme/default.nix
new file mode 100644
index 00000000000..b83abbe7e80
--- /dev/null
+++ b/pkgs/data/icons/faba-icon-theme/default.nix
@@ -0,0 +1,30 @@
+{ stdenv, fetchFromGitHub, autoreconfHook, elementary-icon-theme }:
+
+stdenv.mkDerivation rec {
+ name = "${package-name}-${version}";
+ package-name = "faba-icon-theme";
+ version = "2016-06-02";
+
+ src = fetchFromGitHub {
+ owner = "moka-project";
+ repo = package-name;
+ rev = "e50649d0171fd8cce42404c7c5002d77710ffcfc";
+ sha256 = "1fn969a6l58asnl9181c2z1fsj4dybl2mgbcpwig20bri6q7yz20";
+ };
+
+ nativeBuildInputs = [ autoreconfHook ];
+
+ buildInputs = [ elementary-icon-theme ];
+
+ postPatch = ''
+ substituteInPlace Makefile.am --replace '$(DESTDIR)'/usr $out
+ '';
+
+ meta = with stdenv.lib; {
+ description = "A sexy and modern icon theme with Tango influences";
+ homepage = https://snwh.org/moka;
+ license = with licenses; [ cc-by-sa-40 gpl3 ];
+ platforms = platforms.all;
+ maintainers = with maintainers; [ romildo ];
+ };
+}
diff --git a/pkgs/data/icons/faba-mono-icons/default.nix b/pkgs/data/icons/faba-mono-icons/default.nix
new file mode 100644
index 00000000000..16fa63c5424
--- /dev/null
+++ b/pkgs/data/icons/faba-mono-icons/default.nix
@@ -0,0 +1,26 @@
+{ stdenv, fetchFromGitHub, autoreconfHook, moka-icon-theme }:
+
+stdenv.mkDerivation rec {
+ name = "${package-name}-${version}";
+ package-name = "faba-mono-icons";
+ version = "2016-04-30";
+
+ src = fetchFromGitHub {
+ owner = "moka-project";
+ repo = package-name;
+ rev = "2006c5281eb988c799068734f289a85443800cda";
+ sha256 = "0nisfl92y6hrbakp9qxi0ygayl6avkzrhwirg6854bwqjy2dvjv9";
+ };
+
+ nativeBuildInputs = [ autoreconfHook ];
+
+ buildInputs = [ moka-icon-theme ];
+
+ meta = with stdenv.lib; {
+ description = "The full set of Faba monochrome panel icons";
+ homepage = https://snwh.org/moka;
+ license = with licenses; [ gpl3 ];
+ platforms = platforms.all;
+ maintainers = with maintainers; [ romildo ];
+ };
+}
diff --git a/pkgs/data/icons/moka-icon-theme/default.nix b/pkgs/data/icons/moka-icon-theme/default.nix
new file mode 100644
index 00000000000..4d98a50c0c4
--- /dev/null
+++ b/pkgs/data/icons/moka-icon-theme/default.nix
@@ -0,0 +1,30 @@
+{ stdenv, fetchFromGitHub, autoreconfHook, faba-icon-theme }:
+
+stdenv.mkDerivation rec {
+ name = "${package-name}-${version}";
+ package-name = "moka-icon-theme";
+ version = "2016-06-07";
+
+ src = fetchFromGitHub {
+ owner = "moka-project";
+ repo = package-name;
+ rev = "a03d14e30dbdf05e8ea904994b8081ad0824e155";
+ sha256 = "1j1cnrrg0gfr4vfzxlabrv8090fg4yni99g61s82vnyszkiy1rcm";
+ };
+
+ nativeBuildInputs = [ autoreconfHook ];
+
+ buildInputs = [ faba-icon-theme ];
+
+ postPatch = ''
+ substituteInPlace Makefile.am --replace '$(DESTDIR)'/usr $out
+ '';
+
+ meta = with stdenv.lib; {
+ description = "An icon theme designed with a minimal flat style using simple geometry and bright colours";
+ homepage = https://snwh.org/moka;
+ license = with licenses; [ cc-by-sa-40 gpl3 ];
+ platforms = platforms.all;
+ maintainers = with maintainers; [ romildo ];
+ };
+}
diff --git a/pkgs/data/icons/numix-icon-theme-circle/default.nix b/pkgs/data/icons/numix-icon-theme-circle/default.nix
index ace58a4d703..414360f2d7a 100644
--- a/pkgs/data/icons/numix-icon-theme-circle/default.nix
+++ b/pkgs/data/icons/numix-icon-theme-circle/default.nix
@@ -1,7 +1,7 @@
-{ stdenv, fetchFromGitHub }:
+{ stdenv, fetchFromGitHub, numix-icon-theme }:
stdenv.mkDerivation rec {
- version = "2016-05-25";
+ version = "2016-06-10";
package-name = "numix-icon-theme-circle";
@@ -10,10 +10,12 @@ stdenv.mkDerivation rec {
src = fetchFromGitHub {
owner = "numixproject";
repo = package-name;
- rev = "e2d2fe68e34e1650584f798c3cdb7e91ef62e6d3";
- sha256 = "0fah812ymc6kczjhjsz0ai57ih6d8r6pknhvc54i7r3xqxshryc8";
+ rev = "577b8a2a8dd6429f7d3df37b15d9fd7fcbb58d56";
+ sha256 = "1zx26ng6z45j1yff2m0cng4nffk8swdq1pya1l2dm7841mx5ram4";
};
+ buildInputs = [ numix-icon-theme ];
+
dontBuild = true;
installPhase = ''
diff --git a/pkgs/data/icons/numix-icon-theme/default.nix b/pkgs/data/icons/numix-icon-theme/default.nix
index 45f5d2f5ae7..735d1544cf5 100644
--- a/pkgs/data/icons/numix-icon-theme/default.nix
+++ b/pkgs/data/icons/numix-icon-theme/default.nix
@@ -1,7 +1,7 @@
{ stdenv, fetchFromGitHub }:
stdenv.mkDerivation rec {
- version = "2016-05-18";
+ version = "2016-06-10";
package-name = "numix-icon-theme";
@@ -10,8 +10,8 @@ stdenv.mkDerivation rec {
src = fetchFromGitHub {
owner = "numixproject";
repo = package-name;
- rev = "d571e845b9db0e5cc5a50e6d4423d25fc0d613bd";
- sha256 = "0d9ajh12n1ms7wbgaa3nsdhlwsjwj4flm67cxzsb3dwhpql75z0c";
+ rev = "8196e9eaa5a60b5c02a9e37a4ca768b07966b41f";
+ sha256 = "0cyv0r66vil54y6w317msddq2fjs9zhrdx17m3bx85xpqz67zq5i";
};
dontBuild = true;
diff --git a/pkgs/data/icons/paper-icon-theme/default.nix b/pkgs/data/icons/paper-icon-theme/default.nix
index 93c39b9eddd..4baaca194bf 100644
--- a/pkgs/data/icons/paper-icon-theme/default.nix
+++ b/pkgs/data/icons/paper-icon-theme/default.nix
@@ -3,13 +3,13 @@
stdenv.mkDerivation rec {
name = "${package-name}-${version}";
package-name = "paper-icon-theme";
- version = "2016-05-25";
+ version = "2016-06-08";
src = fetchFromGitHub {
owner = "snwh";
repo = package-name;
- rev = "f221537532181a71938faaa1f695c762defe2626";
- sha256 = "0knsdhgssh1wyhcrbk6lddqy7zn24528lnajqij467mpgiliabfy";
+ rev = "6aa0a2c8d802199d0a9f71579f136bd6476d5d8e";
+ sha256 = "07ak1lnvd0gwaclkcvccjbxikh701vfi07gmjp4zcqi6b5crl7f5";
};
nativeBuildInputs = [ autoreconfHook ];
diff --git a/pkgs/data/misc/cacert/default.nix b/pkgs/data/misc/cacert/default.nix
index 0b125485fd4..3ce6dc81a39 100644
--- a/pkgs/data/misc/cacert/default.nix
+++ b/pkgs/data/misc/cacert/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, nss, curl, perl, perlPackages }:
+{ stdenv, nss, curl, perl }:
stdenv.mkDerivation rec {
name = "nss-cacert-${nss.version}";
@@ -7,9 +7,16 @@ stdenv.mkDerivation rec {
postPatch = ''
unpackFile ${curl.src};
+
+ # Remove dependency on LWP, curl is enough. Also, since curl here
+ # is working on a local file it will not actually get a 200 OK, so
+ # remove that expectation.
+ substituteInPlace curl-*/lib/mk-ca-bundle.pl \
+ --replace 'use LWP::UserAgent;' "" \
+ --replace ' && $out[0] == 200' ""
'';
- nativeBuildInputs = [ perl perlPackages.LWP ];
+ nativeBuildInputs = [ curl perl ];
buildPhase = ''
perl curl-*/lib/mk-ca-bundle.pl -d "file://$(pwd)/nss/lib/ckfw/builtins/certdata.txt" ca-bundle.crt
diff --git a/pkgs/data/misc/geolite-legacy/default.nix b/pkgs/data/misc/geolite-legacy/default.nix
index 33a38f609b6..07c5828a9e7 100644
--- a/pkgs/data/misc/geolite-legacy/default.nix
+++ b/pkgs/data/misc/geolite-legacy/default.nix
@@ -8,26 +8,26 @@ let
in
stdenv.mkDerivation rec {
name = "geolite-legacy-${version}";
- version = "2016-06-08";
+ version = "2016-07-08";
srcGeoIP = fetchDB
"GeoLiteCountry/GeoIP.dat.gz" "GeoIP.dat.gz"
- "1msm12a6m7rszvdbfldaq3d2hpq0rmpb0af678xwk1m6ff1rinm6";
+ "03rp862snj4pxpz272az2mjp0vdw9a6rzbzcml9bzwvsi1ap5sl7";
srcGeoIPv6 = fetchDB
"GeoIPv6.dat.gz" "GeoIPv6.dat.gz"
- "0sjh77cawlv5jix148r0kg5hy5xymgwsw1lf02dhn1mwqy9k4j9p";
+ "1s5y6r4ji1ljsl1d3w9mcqppxy2kvxjk5aq5lldbj616rbcp2v72";
srcGeoLiteCity = fetchDB
"GeoLiteCity.dat.xz" "GeoIPCity.dat.xz"
- "02g7qhjk1mh4gnplyry3nashkl3whlr4mv1lr56fh7qmi2fhjpk3";
+ "07dp3wf5b6g62y6zgm9f1zfc7gn2wnss7fjdips879373kj3lgbr";
srcGeoLiteCityv6 = fetchDB
"GeoLiteCityv6-beta/GeoLiteCityv6.dat.gz" "GeoIPCityv6.dat.gz"
- "0dq5rh08xgwsrmkniww001b2dpd1d7db4sd385p70hkbbry496l3";
+ "1y7c8f84x99dbrqij124bylddc7bmcld1xp4h3qxvmmp8ch5hcxz";
srcGeoIPASNum = fetchDB
"asnum/GeoIPASNum.dat.gz" "GeoIPASNum.dat.gz"
- "0isimfb0as6hblsbi0zlpj0zyyr6g3y7n1q7sic748hdf7a1zphn";
+ "168z6j6adrn80sl3ip41fa0jfv2p26lfa8qil6w17sqhg8f61rnp";
srcGeoIPASNumv6 = fetchDB
"asnum/GeoIPASNumv6.dat.gz" "GeoIPASNumv6.dat.gz"
- "1klh5s7z0z1mipi92q1kf5k9zznvxs9ma69q704vpblfah3km3cc";
+ "0q0vgjgxixcq5qnl5d6hxg3bpsbylmmjkhdp308vbbd68q6fws22";
meta = with stdenv.lib; {
description = "GeoLite Legacy IP geolocation databases";
diff --git a/pkgs/data/misc/tzdata/default.nix b/pkgs/data/misc/tzdata/default.nix
index 9adbbcb7d7f..a633b9abe83 100644
--- a/pkgs/data/misc/tzdata/default.nix
+++ b/pkgs/data/misc/tzdata/default.nix
@@ -2,16 +2,16 @@
stdenv.mkDerivation rec {
name = "tzdata-${version}";
- version = "2016d";
+ version = "2016e";
srcs =
[ (fetchurl {
url = "http://www.iana.org/time-zones/repository/releases/tzdata${version}.tar.gz";
- sha256 = "1d51y1cmp2mhfmk51pagw7p15vrnf269xn1bb19n1mzgl3xlsmfr";
+ sha256 = "10dxnv6mwpm1rbv0dp7fhih4jd7lvqgmw7x2gy6h9i4dy6czh05s";
})
(fetchurl {
url = "http://www.iana.org/time-zones/repository/releases/tzcode${version}.tar.gz";
- sha256 = "1jp06jd3vpsh38549xnx0wnxadrnwvvcg7vnwh4y3xxfhxpkvwx8";
+ sha256 = "17j5z894cfnid3dhh8y934hn86pvxz2ym672s1bhdag8spyc9n2p";
})
];
diff --git a/pkgs/data/sgml+xml/stylesheets/xslt/docbook-xsl/default.nix b/pkgs/data/sgml+xml/stylesheets/xslt/docbook-xsl/default.nix
index 77cd666b8c6..a955f5cf8a4 100644
--- a/pkgs/data/sgml+xml/stylesheets/xslt/docbook-xsl/default.nix
+++ b/pkgs/data/sgml+xml/stylesheets/xslt/docbook-xsl/default.nix
@@ -3,7 +3,7 @@
let
common = { pname, sha256 }: stdenv.mkDerivation rec {
- name = "${pname}-1.78.1";
+ name = "${pname}-1.79.1";
src = fetchurl {
url = "mirror://sourceforge/docbook/${name}.tar.bz2";
@@ -35,12 +35,12 @@ in {
docbook_xsl = common {
pname = "docbook-xsl";
- sha256 = "0rxl013ncmz1n6ymk2idvx3hix9pdabk8xn01cpcv32wmfb753y9";
+ sha256 = "0s59lihif2fr7rznckxr2kfyrvkirv76r1zvidp9b5mj28p4apvj";
};
docbook_xsl_ns = common {
pname = "docbook-xsl-ns";
- sha256 = "1x3sc0axk9z3i6n0jhlsmzlmb723a4sjgslm9g12by6phirdx3ng";
+ sha256 = "170ggf5dgjar65kkn5n33kvjr3pdinpj66nnxfx8b2avw0k91jin";
};
}
diff --git a/pkgs/desktops/enlightenment/efl.nix b/pkgs/desktops/enlightenment/efl.nix
index 4b0ad244a77..19079d7793d 100644
--- a/pkgs/desktops/enlightenment/efl.nix
+++ b/pkgs/desktops/enlightenment/efl.nix
@@ -3,10 +3,11 @@
stdenv.mkDerivation rec {
name = "efl-${version}";
- version = "1.17.1";
+ version = "1.17.2";
+
src = fetchurl {
url = "http://download.enlightenment.org/rel/libs/efl/${name}.tar.xz";
- sha256 = "0d58bhvwg7c5hp07wywlwnqi01k4jhmpgac7gkx9lil1x6kmahqs";
+ sha256 = "1dpq5flygrjg931nzsr2ra8icqffzrzbs1lnrzarbpsbmgq3zacs";
};
nativeBuildInputs = [ pkgconfig ];
diff --git a/pkgs/desktops/enlightenment/enlightenment.nix b/pkgs/desktops/enlightenment/enlightenment.nix
index 1f802385bd8..eb4fc57cedd 100644
--- a/pkgs/desktops/enlightenment/enlightenment.nix
+++ b/pkgs/desktops/enlightenment/enlightenment.nix
@@ -4,10 +4,10 @@ libffi, pam, alsaLib, luajit, bzip2, libuuid, libpthreadstubs, gdbm, libcap, mes
stdenv.mkDerivation rec {
name = "enlightenment-${version}";
- version = "0.20.9";
+ version = "0.21.0";
src = fetchurl {
url = "http://download.enlightenment.org/rel/apps/enlightenment/${name}.tar.xz";
- sha256 = "1gniy7i3mg3q9cgqf004lvnv397yncdr2b7w1gzj69bvv7a2lyfv";
+ sha256 = "0p85dmk9ysbf9y7vlc92z7495mh9l860xj3s8pspy9mscv3dnwg9";
};
nativeBuildInputs = [ pkgconfig ];
diff --git a/pkgs/desktops/gnome-3/3.18/core/epiphany/libxml_depend.patch b/pkgs/desktops/gnome-3/3.18/core/epiphany/libxml_depend.patch
deleted file mode 100644
index 89e3694a02d..00000000000
--- a/pkgs/desktops/gnome-3/3.18/core/epiphany/libxml_depend.patch
+++ /dev/null
@@ -1,10 +0,0 @@
---- configure.ac.orig 2015-04-08 18:53:52.284580835 +0200
-+++ configure.ac 2015-04-08 18:55:55.697225280 +0200
-@@ -113,6 +113,7 @@
- PKG_CHECK_MODULES(WEB_EXTENSION, [
- webkit2gtk-web-extension-4.0 >= $WEBKIT_GTK_REQUIRED
- libsecret-1 >= $LIBSECRET_REQUIRED
-+ libxml-2.0 >= $LIBXML_REQUIRED
- ])
- AC_SUBST(WEB_EXTENSION_CFLAGS)
- AC_SUBST(WEB_EXTENSION_LIBS)
diff --git a/pkgs/desktops/gnome-3/3.18/core/gdm/default.nix b/pkgs/desktops/gnome-3/3.18/core/gdm/default.nix
index 0d21bf54666..588c6bc639b 100644
--- a/pkgs/desktops/gnome-3/3.18/core/gdm/default.nix
+++ b/pkgs/desktops/gnome-3/3.18/core/gdm/default.nix
@@ -1,6 +1,6 @@
{ stdenv, fetchurl, pkgconfig, glib, itstool, libxml2, xorg, dbus
, intltool, accountsservice, libX11, gnome3, systemd, gnome_session, autoreconfHook
-, gtk, libcanberra_gtk3, pam, libtool, gobjectIntrospection }:
+, gtk, libcanberra_gtk3, pam, libtool, gobjectIntrospection, plymouth }:
stdenv.mkDerivation rec {
inherit (import ./src.nix fetchurl) name src;
@@ -13,12 +13,13 @@ stdenv.mkDerivation rec {
configureFlags = [ "--sysconfdir=/etc"
"--localstatedir=/var"
"--with-systemd=yes"
+ "--with-plymouth=yes"
"--with-systemdsystemunitdir=$(out)/etc/systemd/system" ];
buildInputs = [ pkgconfig glib itstool libxml2 intltool autoreconfHook
accountsservice gnome3.dconf systemd
gobjectIntrospection libX11 gtk
- libcanberra_gtk3 pam libtool ];
+ libcanberra_gtk3 pam libtool plymouth ];
#enableParallelBuilding = true; # problems compiling
diff --git a/pkgs/desktops/gnome-3/3.18/core/gnome-keyring/default.nix b/pkgs/desktops/gnome-3/3.18/core/gnome-keyring/default.nix
index 8e755383dd6..e3dc558a49a 100644
--- a/pkgs/desktops/gnome-3/3.18/core/gnome-keyring/default.nix
+++ b/pkgs/desktops/gnome-3/3.18/core/gnome-keyring/default.nix
@@ -15,7 +15,6 @@ stdenv.mkDerivation rec {
nativeBuildInputs = [ pkgconfig intltool docbook_xsl_ns docbook_xsl ];
configureFlags = [
- "--with-ca-certificates=/etc/ssl/certs/ca-certificates.crt" # NixOS hardcoded path
"--with-pkcs11-config=$$out/etc/pkcs11/" # installation directories
"--with-pkcs11-modules=$$out/lib/pkcs11/"
];
diff --git a/pkgs/desktops/gnome-3/3.18/misc/gpaste/default.nix b/pkgs/desktops/gnome-3/3.18/misc/gpaste/default.nix
index 02d7912b3a6..e740d3e7e0e 100644
--- a/pkgs/desktops/gnome-3/3.18/misc/gpaste/default.nix
+++ b/pkgs/desktops/gnome-3/3.18/misc/gpaste/default.nix
@@ -2,12 +2,12 @@
, pango, gtk3, gnome3, dbus, clutter, appstream-glib, makeWrapper }:
stdenv.mkDerivation rec {
- version = "${gnome3.version}.4";
+ version = "${gnome3.version}.5";
name = "gpaste-${version}";
src = fetchurl {
url = "https://github.com/Keruspe/GPaste/archive/v${version}.tar.gz";
- sha256 = "0x4yj3cdbgjys9g7d5j8ascr9y27skl5ys8csln7vsk525l12a7p";
+ sha256 = "11sv605c70hgri06ycb74lg1hz1951gqvai1pnax8d6zyrfxdw1c";
};
buildInputs = [ intltool autoreconfHook pkgconfig vala glib
diff --git a/pkgs/desktops/gnome-3/3.20/apps/cheese/default.nix b/pkgs/desktops/gnome-3/3.20/apps/cheese/default.nix
index db50656cf37..b5f70d84e52 100644
--- a/pkgs/desktops/gnome-3/3.20/apps/cheese/default.nix
+++ b/pkgs/desktops/gnome-3/3.20/apps/cheese/default.nix
@@ -14,7 +14,7 @@ stdenv.mkDerivation rec {
enableParallelBuilding = true;
- NIX_CFLAGS_COMPILE = "-I${glib}/include/gio-unix-2.0";
+ NIX_CFLAGS_COMPILE = "-I${glib.dev}/include/gio-unix-2.0";
meta = with stdenv.lib; {
homepage = https://wiki.gnome.org/Apps/Cheese;
diff --git a/pkgs/desktops/gnome-3/3.20/apps/file-roller/default.nix b/pkgs/desktops/gnome-3/3.20/apps/file-roller/default.nix
index df90c7b2977..18188829377 100644
--- a/pkgs/desktops/gnome-3/3.20/apps/file-roller/default.nix
+++ b/pkgs/desktops/gnome-3/3.20/apps/file-roller/default.nix
@@ -1,17 +1,16 @@
{ stdenv, fetchurl, glib, pkgconfig, gnome3, intltool, itstool, libxml2, libarchive
-, attr, bzip2, acl, wrapGAppsHook, librsvg, gdk_pixbuf }:
+, attr, bzip2, acl, wrapGAppsHook, librsvg, gdk_pixbuf, libnotify, nautilus }:
stdenv.mkDerivation rec {
inherit (import ./src.nix fetchurl) name src;
- # TODO: support nautilus
- # it tries to create {nautilus}/lib/nautilus/extensions-3.0/libnautilus-fileroller.so
-
nativeBuildInputs = [ pkgconfig wrapGAppsHook ];
buildInputs = [ glib gnome3.gtk intltool itstool libxml2 libarchive
gnome3.defaultIconTheme attr bzip2 acl gdk_pixbuf librsvg
- gnome3.dconf ];
+ gnome3.dconf libnotify nautilus ];
+
+ installFlags = [ "nautilus_extensiondir=$(out)/lib/nautilus/extensions-3.0" ];
meta = with stdenv.lib; {
homepage = https://wiki.gnome.org/Apps/FileRoller;
diff --git a/pkgs/desktops/gnome-3/3.20/apps/gnome-calendar/default.nix b/pkgs/desktops/gnome-3/3.20/apps/gnome-calendar/default.nix
index cbd5a84bdb5..5fe6583660c 100644
--- a/pkgs/desktops/gnome-3/3.20/apps/gnome-calendar/default.nix
+++ b/pkgs/desktops/gnome-3/3.20/apps/gnome-calendar/default.nix
@@ -5,7 +5,7 @@
stdenv.mkDerivation rec {
inherit (import ./src.nix fetchurl) name src;
- NIX_CFLAGS_COMPILE = "-I${gnome3.glib}/include/gio-unix-2.0";
+ NIX_CFLAGS_COMPILE = "-I${gnome3.glib.dev}/include/gio-unix-2.0";
buildInputs = [
pkgconfig gtk3 wrapGAppsHook intltool evolution_data_server
diff --git a/pkgs/desktops/gnome-3/3.20/apps/gnome-documents/default.nix b/pkgs/desktops/gnome-3/3.20/apps/gnome-documents/default.nix
index 7f1f70114b7..5daa7277f7b 100644
--- a/pkgs/desktops/gnome-3/3.20/apps/gnome-documents/default.nix
+++ b/pkgs/desktops/gnome-3/3.20/apps/gnome-documents/default.nix
@@ -24,7 +24,7 @@ stdenv.mkDerivation rec {
enableParallelBuilding = true;
preFixup = ''
- substituteInPlace $out/bin/gnome-documents --replace gapplication "${glib}/bin/gapplication"
+ substituteInPlace $out/bin/gnome-documents --replace gapplication "${glib.dev}/bin/gapplication"
gappsWrapperArgs+=(--run 'if [ -z "$XDG_CACHE_DIR" ]; then XDG_CACHE_DIR=$HOME/.cache; fi; if [ -w "$XDG_CACHE_DIR/.." ]; then mkdir -p "$XDG_CACHE_DIR/gnome-documents"; fi')
'';
diff --git a/pkgs/desktops/gnome-3/3.20/apps/gnome-maps/default.nix b/pkgs/desktops/gnome-3/3.20/apps/gnome-maps/default.nix
index b9aac0539ae..caff53dcc1d 100644
--- a/pkgs/desktops/gnome-3/3.20/apps/gnome-maps/default.nix
+++ b/pkgs/desktops/gnome-3/3.20/apps/gnome-maps/default.nix
@@ -11,6 +11,7 @@ stdenv.mkDerivation rec {
gtk3 geoclue2 gnome3.gjs gnome3.libgee folks gfbgraph
gnome3.geocode_glib libchamplain file libsoup
gdk_pixbuf librsvg autoreconfHook
+ gnome3.gsettings_desktop_schemas gnome3.evolution_data_server
gnome3.gnome_online_accounts gnome3.defaultIconTheme ];
patches = [ ./soup.patch ];
diff --git a/pkgs/desktops/gnome-3/3.20/apps/gnome-photos/default.nix b/pkgs/desktops/gnome-3/3.20/apps/gnome-photos/default.nix
index 09e0d9505ff..df7e23ef9d4 100644
--- a/pkgs/desktops/gnome-3/3.20/apps/gnome-photos/default.nix
+++ b/pkgs/desktops/gnome-3/3.20/apps/gnome-photos/default.nix
@@ -9,7 +9,7 @@ stdenv.mkDerivation rec {
# doCheck = true;
- NIX_CFLAGS_COMPILE = "-I${gnome3.glib}/include/gio-unix-2.0";
+ NIX_CFLAGS_COMPILE = "-I${gnome3.glib.dev}/include/gio-unix-2.0";
buildInputs = [ pkgconfig gtk3 glib intltool itstool gegl babl gnome3.libgdata
gnome3.gsettings_desktop_schemas makeWrapper gmp libmediaart
diff --git a/pkgs/desktops/gnome-3/3.20/apps/seahorse/default.nix b/pkgs/desktops/gnome-3/3.20/apps/seahorse/default.nix
index 3b78babadd9..49c48a6b962 100644
--- a/pkgs/desktops/gnome-3/3.20/apps/seahorse/default.nix
+++ b/pkgs/desktops/gnome-3/3.20/apps/seahorse/default.nix
@@ -11,7 +11,7 @@ stdenv.mkDerivation rec {
propagatedUserEnvPkgs = [ gnome3.gnome_themes_standard ];
- NIX_CFLAGS_COMPILE = "-I${gnome3.glib}/include/gio-unix-2.0";
+ NIX_CFLAGS_COMPILE = "-I${gnome3.glib.dev}/include/gio-unix-2.0";
buildInputs = [ pkgconfig gtk3 glib intltool itstool gnome3.gcr
gnome3.gsettings_desktop_schemas makeWrapper gnupg
diff --git a/pkgs/desktops/gnome-3/3.20/core/baobab/default.nix b/pkgs/desktops/gnome-3/3.20/core/baobab/default.nix
index 2ff85662bbb..874c7280949 100644
--- a/pkgs/desktops/gnome-3/3.20/core/baobab/default.nix
+++ b/pkgs/desktops/gnome-3/3.20/core/baobab/default.nix
@@ -8,7 +8,7 @@ stdenv.mkDerivation rec {
doCheck = true;
- NIX_CFLAGS_COMPILE = "-I${gnome3.glib}/include/gio-unix-2.0";
+ NIX_CFLAGS_COMPILE = "-I${gnome3.glib.dev}/include/gio-unix-2.0";
propagatedUserEnvPkgs = [ gnome3.gnome_themes_standard ];
diff --git a/pkgs/desktops/gnome-3/3.20/core/epiphany/libxml_depend.patch b/pkgs/desktops/gnome-3/3.20/core/epiphany/libxml_depend.patch
deleted file mode 100644
index 89e3694a02d..00000000000
--- a/pkgs/desktops/gnome-3/3.20/core/epiphany/libxml_depend.patch
+++ /dev/null
@@ -1,10 +0,0 @@
---- configure.ac.orig 2015-04-08 18:53:52.284580835 +0200
-+++ configure.ac 2015-04-08 18:55:55.697225280 +0200
-@@ -113,6 +113,7 @@
- PKG_CHECK_MODULES(WEB_EXTENSION, [
- webkit2gtk-web-extension-4.0 >= $WEBKIT_GTK_REQUIRED
- libsecret-1 >= $LIBSECRET_REQUIRED
-+ libxml-2.0 >= $LIBXML_REQUIRED
- ])
- AC_SUBST(WEB_EXTENSION_CFLAGS)
- AC_SUBST(WEB_EXTENSION_LIBS)
diff --git a/pkgs/desktops/gnome-3/3.20/core/evince/default.nix b/pkgs/desktops/gnome-3/3.20/core/evince/default.nix
index d0857a1d32a..7629e5b5655 100644
--- a/pkgs/desktops/gnome-3/3.20/core/evince/default.nix
+++ b/pkgs/desktops/gnome-3/3.20/core/evince/default.nix
@@ -26,7 +26,7 @@ stdenv.mkDerivation rec {
(if supportXPS then "--enable-xps" else "--disable-xps")
];
- NIX_CFLAGS_COMPILE = "-I${gnome3.glib}/include/gio-unix-2.0";
+ NIX_CFLAGS_COMPILE = "-I${gnome3.glib.dev}/include/gio-unix-2.0";
preConfigure = with stdenv.lib;
optionalString doCheck ''
diff --git a/pkgs/desktops/gnome-3/3.20/core/gdm/default.nix b/pkgs/desktops/gnome-3/3.20/core/gdm/default.nix
index 0d21bf54666..25a44d90a5b 100644
--- a/pkgs/desktops/gnome-3/3.20/core/gdm/default.nix
+++ b/pkgs/desktops/gnome-3/3.20/core/gdm/default.nix
@@ -1,6 +1,6 @@
{ stdenv, fetchurl, pkgconfig, glib, itstool, libxml2, xorg, dbus
, intltool, accountsservice, libX11, gnome3, systemd, gnome_session, autoreconfHook
-, gtk, libcanberra_gtk3, pam, libtool, gobjectIntrospection }:
+, gtk, libcanberra_gtk3, pam, libtool, gobjectIntrospection, plymouth }:
stdenv.mkDerivation rec {
inherit (import ./src.nix fetchurl) name src;
@@ -13,12 +13,13 @@ stdenv.mkDerivation rec {
configureFlags = [ "--sysconfdir=/etc"
"--localstatedir=/var"
"--with-systemd=yes"
+ "--with-plymouth=yes"
"--with-systemdsystemunitdir=$(out)/etc/systemd/system" ];
buildInputs = [ pkgconfig glib itstool libxml2 intltool autoreconfHook
accountsservice gnome3.dconf systemd
gobjectIntrospection libX11 gtk
- libcanberra_gtk3 pam libtool ];
+ libcanberra_gtk3 pam libtool plymouth ];
#enableParallelBuilding = true; # problems compiling
@@ -33,6 +34,10 @@ stdenv.mkDerivation rec {
installFlags = [ "sysconfdir=$(out)/etc" "dbusconfdir=$(out)/etc/dbus-1/system.d" ];
+ postInstall = ''
+ mv $out/share/gdm/greeter/applications/gnome-shell.desktop $out/share/gdm/greeter/applications/org.gnome.Shell.desktop
+ '';
+
meta = with stdenv.lib; {
homepage = https://wiki.gnome.org/Projects/GDM;
description = "A program that manages graphical display servers and handles graphical user logins";
diff --git a/pkgs/desktops/gnome-3/3.20/core/gnome-calculator/default.nix b/pkgs/desktops/gnome-3/3.20/core/gnome-calculator/default.nix
index 5458f933a75..e1b81339e91 100644
--- a/pkgs/desktops/gnome-3/3.20/core/gnome-calculator/default.nix
+++ b/pkgs/desktops/gnome-3/3.20/core/gnome-calculator/default.nix
@@ -5,7 +5,7 @@
stdenv.mkDerivation rec {
inherit (import ./src.nix fetchurl) name src;
- NIX_CFLAGS_COMPILE = "-I${gnome3.glib}/include/gio-unix-2.0";
+ NIX_CFLAGS_COMPILE = "-I${gnome3.glib.dev}/include/gio-unix-2.0";
propagatedUserEnvPkgs = [ gnome3.gnome_themes_standard ];
diff --git a/pkgs/desktops/gnome-3/3.20/core/gnome-desktop/default.nix b/pkgs/desktops/gnome-3/3.20/core/gnome-desktop/default.nix
index bf0ccd0224e..7265f09731f 100644
--- a/pkgs/desktops/gnome-3/3.20/core/gnome-desktop/default.nix
+++ b/pkgs/desktops/gnome-3/3.20/core/gnome-desktop/default.nix
@@ -6,7 +6,7 @@ stdenv.mkDerivation rec {
inherit (import ./src.nix fetchurl) name src;
# this should probably be setuphook for glib
- NIX_CFLAGS_COMPILE = "-I${glib}/include/gio-unix-2.0";
+ NIX_CFLAGS_COMPILE = "-I${glib.dev}/include/gio-unix-2.0";
enableParallelBuilding = true;
diff --git a/pkgs/desktops/gnome-3/3.20/core/gnome-dictionary/default.nix b/pkgs/desktops/gnome-3/3.20/core/gnome-dictionary/default.nix
index 1d1f9d18c56..8421bb362c3 100644
--- a/pkgs/desktops/gnome-3/3.20/core/gnome-dictionary/default.nix
+++ b/pkgs/desktops/gnome-3/3.20/core/gnome-dictionary/default.nix
@@ -8,7 +8,7 @@ stdenv.mkDerivation rec {
doCheck = true;
- NIX_CFLAGS_COMPILE = "-I${gnome3.glib}/include/gio-unix-2.0";
+ NIX_CFLAGS_COMPILE = "-I${gnome3.glib.dev}/include/gio-unix-2.0";
propagatedUserEnvPkgs = [ gnome3.gnome_themes_standard ];
propagatedBuildInputs = [ gdk_pixbuf gnome3.defaultIconTheme librsvg ];
diff --git a/pkgs/desktops/gnome-3/3.20/core/gnome-disk-utility/default.nix b/pkgs/desktops/gnome-3/3.20/core/gnome-disk-utility/default.nix
index 3f9f653bdba..c329d68674a 100644
--- a/pkgs/desktops/gnome-3/3.20/core/gnome-disk-utility/default.nix
+++ b/pkgs/desktops/gnome-3/3.20/core/gnome-disk-utility/default.nix
@@ -8,7 +8,7 @@ stdenv.mkDerivation rec {
doCheck = true;
- NIX_CFLAGS_COMPILE = "-I${gnome3.glib}/include/gio-unix-2.0";
+ NIX_CFLAGS_COMPILE = "-I${gnome3.glib.dev}/include/gio-unix-2.0";
propagatedUserEnvPkgs = [ gnome3.gnome_themes_standard ];
diff --git a/pkgs/desktops/gnome-3/3.20/core/gnome-font-viewer/default.nix b/pkgs/desktops/gnome-3/3.20/core/gnome-font-viewer/default.nix
index 54767dbc4c5..d0ec2307a85 100644
--- a/pkgs/desktops/gnome-3/3.20/core/gnome-font-viewer/default.nix
+++ b/pkgs/desktops/gnome-3/3.20/core/gnome-font-viewer/default.nix
@@ -8,7 +8,7 @@ stdenv.mkDerivation rec {
doCheck = true;
- NIX_CFLAGS_COMPILE = "-I${gnome3.glib}/include/gio-unix-2.0";
+ NIX_CFLAGS_COMPILE = "-I${gnome3.glib.dev}/include/gio-unix-2.0";
propagatedUserEnvPkgs = [ gnome3.gnome_themes_standard ];
diff --git a/pkgs/desktops/gnome-3/3.20/core/gnome-keyring/default.nix b/pkgs/desktops/gnome-3/3.20/core/gnome-keyring/default.nix
index 8e755383dd6..e3dc558a49a 100644
--- a/pkgs/desktops/gnome-3/3.20/core/gnome-keyring/default.nix
+++ b/pkgs/desktops/gnome-3/3.20/core/gnome-keyring/default.nix
@@ -15,7 +15,6 @@ stdenv.mkDerivation rec {
nativeBuildInputs = [ pkgconfig intltool docbook_xsl_ns docbook_xsl ];
configureFlags = [
- "--with-ca-certificates=/etc/ssl/certs/ca-certificates.crt" # NixOS hardcoded path
"--with-pkcs11-config=$$out/etc/pkcs11/" # installation directories
"--with-pkcs11-modules=$$out/lib/pkcs11/"
];
diff --git a/pkgs/desktops/gnome-3/3.20/core/gnome-screenshot/default.nix b/pkgs/desktops/gnome-3/3.20/core/gnome-screenshot/default.nix
index 763fc990bda..72aa97fa6b6 100644
--- a/pkgs/desktops/gnome-3/3.20/core/gnome-screenshot/default.nix
+++ b/pkgs/desktops/gnome-3/3.20/core/gnome-screenshot/default.nix
@@ -7,7 +7,7 @@ stdenv.mkDerivation rec {
doCheck = true;
- NIX_CFLAGS_COMPILE = "-I${gnome3.glib}/include/gio-unix-2.0";
+ NIX_CFLAGS_COMPILE = "-I${gnome3.glib.dev}/include/gio-unix-2.0";
propagatedUserEnvPkgs = [ gnome3.gnome_themes_standard ];
propagatedBuildInputs = [ gdk_pixbuf gnome3.defaultIconTheme librsvg ];
diff --git a/pkgs/desktops/gnome-3/3.20/core/gnome-settings-daemon/default.nix b/pkgs/desktops/gnome-3/3.20/core/gnome-settings-daemon/default.nix
index 99e1f596f18..2a93328d8ca 100644
--- a/pkgs/desktops/gnome-3/3.20/core/gnome-settings-daemon/default.nix
+++ b/pkgs/desktops/gnome-3/3.20/core/gnome-settings-daemon/default.nix
@@ -7,7 +7,7 @@ stdenv.mkDerivation rec {
inherit (import ./src.nix fetchurl) name src;
# fatal error: gio/gunixfdlist.h: No such file or directory
- NIX_CFLAGS_COMPILE = "-I${glib}/include/gio-unix-2.0";
+ NIX_CFLAGS_COMPILE = "-I${glib.dev}/include/gio-unix-2.0";
buildInputs = with gnome3;
[ intltool pkgconfig ibus gtk glib gsettings_desktop_schemas networkmanager
diff --git a/pkgs/desktops/gnome-3/3.20/core/gnome-shell/default.nix b/pkgs/desktops/gnome-3/3.20/core/gnome-shell/default.nix
index 11d78cd6132..d0d7bceef61 100644
--- a/pkgs/desktops/gnome-3/3.20/core/gnome-shell/default.nix
+++ b/pkgs/desktops/gnome-3/3.20/core/gnome-shell/default.nix
@@ -1,5 +1,5 @@
{ fetchurl, stdenv, pkgconfig, gnome3, json_glib, libcroco, intltool, libsecret
-, python3, libsoup, polkit, clutter, networkmanager, docbook_xsl, docbook_xsl_ns, at_spi2_core
+, python3Packages, libsoup, polkit, clutter, networkmanager, docbook_xsl , docbook_xsl_ns, at_spi2_core
, libstartup_notification, telepathy_glib, telepathy_logger, libXtst, p11_kit, unzip
, sqlite, libgweather, libcanberra_gtk3
, libpulseaudio, libical, libtool, nss, gobjectIntrospection, gstreamer, makeWrapper
@@ -15,16 +15,18 @@ stdenv.mkDerivation rec {
buildInputs = with gnome3;
[ gsettings_desktop_schemas gnome_keyring gnome-menus glib gcr json_glib accountsservice
- libcroco intltool libsecret pkgconfig python3 libsoup polkit libcanberra gdk_pixbuf librsvg
+ libcroco intltool libsecret pkgconfig libsoup polkit libcanberra gdk_pixbuf librsvg
clutter networkmanager libstartup_notification telepathy_glib docbook_xsl docbook_xsl_ns
libXtst p11_kit networkmanagerapplet gjs mutter libpulseaudio caribou evolution_data_server
- libical libtool nss gobjectIntrospection gtk gstreamer makeWrapper gdm
+ libical libtool nss gtk gstreamer makeWrapper gdm
libcanberra_gtk3 gnome_control_center
defaultIconTheme sqlite gnome3.gnome-bluetooth
libgweather # not declared at build time, but typelib is needed at runtime
gnome3.gnome-clocks # schemas needed
at_spi2_core upower ibus gnome_session gnome_desktop telepathy_logger gnome3.gnome_settings_daemon ];
+ propagatedBuildInputs = [ python3Packages.pygobject3 python3Packages.python gobjectIntrospection ];
+
installFlags = [ "keysdir=$(out)/share/gnome-control-center/keybindings" ];
preBuild = ''
@@ -40,6 +42,9 @@ stdenv.mkDerivation rec {
--prefix XDG_DATA_DIRS : "${gnome_themes_standard}/share:$out/share:$XDG_ICON_DIRS" \
--suffix XDG_DATA_DIRS : "$GSETTINGS_SCHEMAS_PATH"
+ wrapProgram "$out/bin/gnome-shell-extension-tool" \
+ --prefix PYTHONPATH : "${python3Packages.pygobject3}/${python3Packages.python.sitePackages}:$PYTHONPATH"
+
wrapProgram "$out/libexec/gnome-shell-calendar-server" \
--prefix XDG_DATA_DIRS : "${evolution_data_server}/share:$out/share:$XDG_ICON_DIRS:$GSETTINGS_SCHEMAS_PATH"
diff --git a/pkgs/desktops/gnome-3/3.20/core/gnome-system-log/default.nix b/pkgs/desktops/gnome-3/3.20/core/gnome-system-log/default.nix
index 716f92a072d..271f23e6920 100644
--- a/pkgs/desktops/gnome-3/3.20/core/gnome-system-log/default.nix
+++ b/pkgs/desktops/gnome-3/3.20/core/gnome-system-log/default.nix
@@ -12,7 +12,7 @@ stdenv.mkDerivation rec {
doCheck = true;
- NIX_CFLAGS_COMPILE = "-I${gnome3.glib}/include/gio-unix-2.0";
+ NIX_CFLAGS_COMPILE = "-I${gnome3.glib.dev}/include/gio-unix-2.0";
propagatedUserEnvPkgs = [ gnome3.gnome_themes_standard ];
propagatedBuildInputs = [ gdk_pixbuf gnome3.defaultIconTheme librsvg ];
diff --git a/pkgs/desktops/gnome-3/3.20/core/gnome-terminal/default.nix b/pkgs/desktops/gnome-3/3.20/core/gnome-terminal/default.nix
index 052a16affdc..c523d732e03 100644
--- a/pkgs/desktops/gnome-3/3.20/core/gnome-terminal/default.nix
+++ b/pkgs/desktops/gnome-3/3.20/core/gnome-terminal/default.nix
@@ -11,8 +11,15 @@ stdenv.mkDerivation rec {
nativeBuildInputs = [ pkgconfig intltool gnome_doc_utils which libuuid libxml2
desktop_file_utils wrapGAppsHook ];
+ # Silly ./configure, it looks for dbus file from gnome-shell in the
+ # installation tree of the package it is configuring.
+ preConfigure = ''
+ mkdir -p "$out/share/dbus-1/interfaces"
+ cp "${gnome3.gnome_shell}/share/dbus-1/interfaces/org.gnome.ShellSearchProvider2.xml" "$out/share/dbus-1/interfaces"
+ '';
+
# FIXME: enable for gnome3
- configureFlags = [ "--disable-search-provider" "--disable-migration" ];
+ configureFlags = [ "--disable-migration" ];
meta = with stdenv.lib; {
description = "The GNOME Terminal Emulator";
diff --git a/pkgs/desktops/gnome-3/3.20/core/gnome-user-share/default.nix b/pkgs/desktops/gnome-3/3.20/core/gnome-user-share/default.nix
index 49ad40912c6..977c5800aeb 100644
--- a/pkgs/desktops/gnome-3/3.20/core/gnome-user-share/default.nix
+++ b/pkgs/desktops/gnome-3/3.20/core/gnome-user-share/default.nix
@@ -8,7 +8,7 @@ stdenv.mkDerivation rec {
doCheck = true;
- NIX_CFLAGS_COMPILE = "-I${gnome3.glib}/include/gio-unix-2.0";
+ NIX_CFLAGS_COMPILE = "-I${gnome3.glib.dev}/include/gio-unix-2.0";
preConfigure = ''
sed -e 's,^LoadModule dnssd_module.\+,LoadModule dnssd_module ${mod_dnssd}/modules/mod_dnssd.so,' -i data/dav_user_2.2.conf
@@ -26,7 +26,7 @@ stdenv.mkDerivation rec {
postInstall = ''
mkdir -p $out/share/gsettings-schemas/$name
mv $out/share/glib-2.0 $out/share/gsettings-schemas/$name
- ${glib}/bin/glib-compile-schemas $out/share/gsettings-schemas/$name/glib-2.0/schemas
+ ${glib.dev}/bin/glib-compile-schemas $out/share/gsettings-schemas/$name/glib-2.0/schemas
'';
preFixup = ''
diff --git a/pkgs/desktops/gnome-3/3.20/core/grilo-plugins/default.nix b/pkgs/desktops/gnome-3/3.20/core/grilo-plugins/default.nix
index 4c952e3de27..caa0176036f 100644
--- a/pkgs/desktops/gnome-3/3.20/core/grilo-plugins/default.nix
+++ b/pkgs/desktops/gnome-3/3.20/core/grilo-plugins/default.nix
@@ -4,12 +4,12 @@
stdenv.mkDerivation rec {
major = "0.3";
- minor = "1";
+ minor = "2";
name = "grilo-plugins-${major}.${minor}";
src = fetchurl {
url = "mirror://gnome/sources/grilo-plugins/${major}/${name}.tar.xz";
- sha256 = "1akd7q6pqnkcnayrdfjb0qx5w5yyl06kxzwhqp2gxm4y1b208pb0";
+ sha256 = "1z8s62a29zidm35ajf708r7d36glb27im4s52l02q9w1jwl8j6vr";
};
installFlags = [ "GRL_PLUGINS_DIR=$(out)/lib/grilo-${major}" ];
diff --git a/pkgs/desktops/gnome-3/3.20/core/grilo/default.nix b/pkgs/desktops/gnome-3/3.20/core/grilo/default.nix
index e178985c178..0bae28387bb 100644
--- a/pkgs/desktops/gnome-3/3.20/core/grilo/default.nix
+++ b/pkgs/desktops/gnome-3/3.20/core/grilo/default.nix
@@ -1,14 +1,14 @@
{ stdenv, fetchurl, pkgconfig, file, intltool, glib
-, libxml2, gnome3, gobjectIntrospection, libsoup }:
+, libxml2, gnome3, gobjectIntrospection, libsoup, python3Packages }:
stdenv.mkDerivation rec {
- major = "0.3";
- minor = "0";
+ major = "0.3"; # if you change this, also change ./setup-hook.sh
+ minor = "1";
name = "grilo-${major}.${minor}";
src = fetchurl {
url = "mirror://gnome/sources/grilo/${major}/${name}.tar.xz";
- sha256 = "0q5wcvnckpfks48hy0gvlfdmvqm67vnblm3912rssmkgc1ysil8z";
+ sha256 = "0k6d8drgh7inbpxqfa9m9dm4vrhfb9ifi5b88fn8q2ljqwfwdggb";
};
setupHook = ./setup-hook.sh;
@@ -23,7 +23,9 @@ stdenv.mkDerivation rec {
'';
buildInputs = [ pkgconfig file intltool glib libxml2 libsoup
- gnome3.totem-pl-parser gobjectIntrospection ];
+ gnome3.totem-pl-parser ];
+
+ propagatedBuildInputs = [ python3Packages.pygobject3 gobjectIntrospection ];
meta = with stdenv.lib; {
homepage = https://wiki.gnome.org/action/show/Projects/Grilo;
diff --git a/pkgs/desktops/gnome-3/3.20/core/grilo/setup-hook.sh b/pkgs/desktops/gnome-3/3.20/core/grilo/setup-hook.sh
index bc93dddec38..3291e38addb 100644
--- a/pkgs/desktops/gnome-3/3.20/core/grilo/setup-hook.sh
+++ b/pkgs/desktops/gnome-3/3.20/core/grilo/setup-hook.sh
@@ -1,6 +1,6 @@
make_grilo_find_plugins() {
- if [ -d "$1"/lib/grilo-0.2 ]; then
- addToSearchPath GRL_PLUGIN_PATH "$1/lib/grilo-0.2"
+ if [ -d "$1"/lib/grilo-0.3 ]; then
+ addToSearchPath GRL_PLUGIN_PATH "$1/lib/grilo-0.3"
fi
}
diff --git a/pkgs/desktops/gnome-3/3.20/core/libcroco/default.nix b/pkgs/desktops/gnome-3/3.20/core/libcroco/default.nix
index 76d9118c4b9..563a18e510f 100644
--- a/pkgs/desktops/gnome-3/3.20/core/libcroco/default.nix
+++ b/pkgs/desktops/gnome-3/3.20/core/libcroco/default.nix
@@ -1,11 +1,11 @@
{ stdenv, fetchurl, pkgconfig, libxml2, glib }:
stdenv.mkDerivation rec {
- name = "libcroco-0.6.8";
+ name = "libcroco-0.6.11";
src = fetchurl {
url = "mirror://gnome/sources/libcroco/0.6/${name}.tar.xz";
- sha256 = "0w453f3nnkbkrly7spx5lx5pf6mwynzmd5qhszprq8amij2invpa";
+ sha256 = "0mm0wldbi40am5qn0nv7psisbg01k42rwzjxl3gv11l5jj554aqk";
};
outputs = [ "dev" "out" ];
diff --git a/pkgs/desktops/gnome-3/3.20/core/libgdata/default.nix b/pkgs/desktops/gnome-3/3.20/core/libgdata/default.nix
index 0a5fc0f8f60..e455be07bdf 100644
--- a/pkgs/desktops/gnome-3/3.20/core/libgdata/default.nix
+++ b/pkgs/desktops/gnome-3/3.20/core/libgdata/default.nix
@@ -12,7 +12,7 @@ stdenv.mkDerivation rec {
sha256 = "1xniw4y90hbk9fa548pa9pfclibw7amr2f458lfh16jdzq7gw5cz";
};
- NIX_CFLAGS_COMPILE = "-I${gnome3.libsoup}/include/libsoup-gnome-2.4/ -I${gnome3.gcr}/include/gcr-3 -I${gnome3.gcr}/include/gck-1";
+ NIX_CFLAGS_COMPILE = "-I${gnome3.libsoup.dev}/include/libsoup-gnome-2.4/ -I${gnome3.gcr}/include/gcr-3 -I${gnome3.gcr}/include/gck-1";
buildInputs = with gnome3;
[ pkgconfig libsoup intltool libxml2 glib gobjectIntrospection
diff --git a/pkgs/desktops/gnome-3/3.20/core/libpeas/default.nix b/pkgs/desktops/gnome-3/3.20/core/libpeas/default.nix
index 8d40d977a80..1ba143539d4 100644
--- a/pkgs/desktops/gnome-3/3.20/core/libpeas/default.nix
+++ b/pkgs/desktops/gnome-3/3.20/core/libpeas/default.nix
@@ -1,14 +1,13 @@
{ stdenv, fetchurl, pkgconfig, intltool, gnome3
-, glib, gtk3, gobjectIntrospection, python, pygobject3
+, glib, gtk3, gobjectIntrospection, python3Packages, ncurses
}:
stdenv.mkDerivation rec {
inherit (import ./src.nix fetchurl) name src;
- buildInputs = [
- intltool pkgconfig glib gtk3 gobjectIntrospection python pygobject3
- gnome3.defaultIconTheme
- ];
+ configureFlags = [ "--enable-python3" ];
+
+ buildInputs = [ intltool pkgconfig glib gtk3 gnome3.defaultIconTheme ncurses python3Packages.python python3Packages.pygobject3 gobjectIntrospection ];
meta = with stdenv.lib; {
description = "A GObject-based plugins engine";
diff --git a/pkgs/desktops/gnome-3/3.20/core/libpeas/src.nix b/pkgs/desktops/gnome-3/3.20/core/libpeas/src.nix
index 8a24097bbd6..cd440858946 100644
--- a/pkgs/desktops/gnome-3/3.20/core/libpeas/src.nix
+++ b/pkgs/desktops/gnome-3/3.20/core/libpeas/src.nix
@@ -1,10 +1,13 @@
# Autogenerated by maintainers/scripts/gnome.sh update
-fetchurl: {
- name = "libpeas-1.16.0";
+fetchurl: rec {
+ major = "1.18";
+ minor = "0";
+ version = "${major}.${minor}";
+ name = "libpeas-${version}";
src = fetchurl {
- url = mirror://gnome/sources/libpeas/1.16/libpeas-1.16.0.tar.xz;
- sha256 = "b093008ecd65f7d55c80517589509698ff15ad41f664b11a3eb88ff461b1454e";
+ url = "mirror://gnome/sources/libpeas/${major}/${name}.tar.xz";
+ sha256 = "09jy2rwwgp0xx7cnypxl56m7zzxnj3j4v58xqjxjasf3chn88jdz";
};
}
diff --git a/pkgs/desktops/gnome-3/3.20/core/mutter/default.nix b/pkgs/desktops/gnome-3/3.20/core/mutter/default.nix
index dd08a96cc23..a128990b402 100644
--- a/pkgs/desktops/gnome-3/3.20/core/mutter/default.nix
+++ b/pkgs/desktops/gnome-3/3.20/core/mutter/default.nix
@@ -6,7 +6,7 @@ stdenv.mkDerivation rec {
inherit (import ./src.nix fetchurl) name src;
# fatal error: gio/gunixfdlist.h: No such file or directory
- NIX_CFLAGS_COMPILE = "-I${gnome3.glib}/include/gio-unix-2.0";
+ NIX_CFLAGS_COMPILE = "-I${gnome3.glib.dev}/include/gio-unix-2.0";
configureFlags = "--with-x --disable-static --enable-shape --enable-sm --enable-startup-notification --enable-xsync --enable-verbose-mode --with-libcanberra";
diff --git a/pkgs/desktops/gnome-3/3.20/core/totem/default.nix b/pkgs/desktops/gnome-3/3.20/core/totem/default.nix
index bce3bd0ceba..194b4aca438 100644
--- a/pkgs/desktops/gnome-3/3.20/core/totem/default.nix
+++ b/pkgs/desktops/gnome-3/3.20/core/totem/default.nix
@@ -1,8 +1,8 @@
{ stdenv, intltool, fetchurl, gst_all_1
-, clutter_gtk, clutter-gst, pygobject3, shared_mime_info
-, pkgconfig, gtk3, glib
-, bash, makeWrapper, itstool, libxml2, dbus_glib
-, gnome3, librsvg, gdk_pixbuf, file }:
+, clutter_gtk, clutter-gst, python3Packages, shared_mime_info
+, pkgconfig, gtk3, glib, gobjectIntrospection
+, bash, wrapGAppsHook, itstool, libxml2, dbus_glib
+, gnome3, librsvg, gdk_pixbuf, file, tracker, nautilus }:
stdenv.mkDerivation rec {
inherit (import ./src.nix fetchurl) name src;
@@ -11,29 +11,28 @@ stdenv.mkDerivation rec {
enableParallelBuilding = true;
- NIX_CFLAGS_COMPILE = "-I${gnome3.glib}/include/gio-unix-2.0";
+ NIX_CFLAGS_COMPILE = "-I${gnome3.glib.dev}/include/gio-unix-2.0";
propagatedUserEnvPkgs = [ gnome3.gnome_themes_standard ];
buildInputs = [ pkgconfig gtk3 glib intltool itstool libxml2 gnome3.grilo
clutter_gtk clutter-gst gnome3.totem-pl-parser gnome3.grilo-plugins
gst_all_1.gstreamer gst_all_1.gst-plugins-base
- gst_all_1.gst-plugins-good gst_all_1.gst-plugins-bad
- gnome3.libpeas pygobject3 shared_mime_info dbus_glib
+ gst_all_1.gst-plugins-good gst_all_1.gst-plugins-bad gst_all_1.gst-plugins-ugly gst_all_1.gst-libav
+ gnome3.libpeas shared_mime_info dbus_glib
gdk_pixbuf gnome3.defaultIconTheme librsvg gnome3.gnome_desktop
- gnome3.gsettings_desktop_schemas makeWrapper file ];
-
- preFixup = ''
- wrapProgram "$out/bin/totem" \
- --set GDK_PIXBUF_MODULE_FILE "$GDK_PIXBUF_MODULE_FILE" \
- --prefix GST_PLUGIN_SYSTEM_PATH_1_0 : "$GST_PLUGIN_SYSTEM_PATH_1_0" \
- --prefix GRL_PLUGIN_PATH : "${gnome3.grilo-plugins}/lib/grilo-0.2" \
- --prefix XDG_DATA_DIRS : "${gnome3.gnome_themes_standard}/share:$XDG_ICON_DIRS:$GSETTINGS_SCHEMAS_PATH"
-
- '';
+ gnome3.gsettings_desktop_schemas wrapGAppsHook file tracker nautilus ];
patches = [ ./x86.patch ];
+ propagatedBuildInputs = [ gobjectIntrospection python3Packages.pylint python3Packages.pygobject ];
+
+ configureFlags = [ "--with-nautilusdir=$(out)/lib/nautilus/extensions-3.0" ];
+
+ GI_TYPELIB_PATH = "$out/lib/girepository-1.0";
+
+ wrapPrefixVariables = [ "PYTHONPATH" ];
+
meta = with stdenv.lib; {
homepage = https://wiki.gnome.org/Apps/Videos;
description = "Movie player for the GNOME desktop based on GStreamer";
diff --git a/pkgs/desktops/gnome-3/3.20/default.nix b/pkgs/desktops/gnome-3/3.20/default.nix
index 4e00db3962e..fe122d75e97 100644
--- a/pkgs/desktops/gnome-3/3.20/default.nix
+++ b/pkgs/desktops/gnome-3/3.20/default.nix
@@ -385,6 +385,8 @@ let
gpaste = callPackage ./misc/gpaste { };
+ pidgin-im-gnome-shell-extension = callPackage ./misc/pidgin { };
+
gtkhtml = callPackage ./misc/gtkhtml { };
pomodoro = callPackage ./misc/pomodoro { };
diff --git a/pkgs/desktops/gnome-3/3.20/misc/geary/disable_valadoc.patch b/pkgs/desktops/gnome-3/3.20/misc/geary/disable_valadoc.patch
deleted file mode 100644
index e65c0dea747..00000000000
--- a/pkgs/desktops/gnome-3/3.20/misc/geary/disable_valadoc.patch
+++ /dev/null
@@ -1,24 +0,0 @@
---- src/CMakeLists.txt.orig 2014-05-23 14:41:20.809160364 +0200
-+++ src/CMakeLists.txt 2014-05-23 14:41:29.240261581 +0200
-@@ -696,21 +696,6 @@
- ${CMAKE_COMMAND} -E copy geary-mailer ${CMAKE_BINARY_DIR}/
- )
-
--# Valadoc
--#################################################
--foreach(pkg ${ENGINE_PACKAGES})
-- list(APPEND valadoc_pkg_opts "--pkg=${pkg}")
--endforeach(pkg ${ENGINE_PACKAGES})
--
--include(FindValadoc)
--add_custom_target(
-- valadoc
-- WORKING_DIRECTORY
-- ${CMAKE_SOURCE_DIR}/src
-- COMMAND
-- ${VALADOC_EXECUTABLE} --force --no-protected -b ${CMAKE_CURRENT_SOURCE_DIR} -o ${CMAKE_SOURCE_DIR}/valadoc --package-name=geary --package-version=${VERSION} ${ENGINE_SRC} ${valadoc_pkg_opts} --vapidir=${CMAKE_SOURCE_DIR}/bindings/vapi
--)
--
- ## Make clean: remove copied files
- ##################################################
- set_property(
diff --git a/pkgs/desktops/gnome-3/3.20/misc/gnome-tweak-tool/default.nix b/pkgs/desktops/gnome-3/3.20/misc/gnome-tweak-tool/default.nix
index 986d4058af9..e6c4b8c8202 100644
--- a/pkgs/desktops/gnome-3/3.20/misc/gnome-tweak-tool/default.nix
+++ b/pkgs/desktops/gnome-3/3.20/misc/gnome-tweak-tool/default.nix
@@ -1,9 +1,11 @@
-{ stdenv, intltool, fetchurl, python, pygobject3, atk
+{ stdenv, intltool, fetchurl, atk
, pkgconfig, gtk3, glib, libsoup
-, bash, makeWrapper, itstool, libxml2, python3Packages
-, gnome3, librsvg, gdk_pixbuf, file, libnotify }:
+, bash, makeWrapper, itstool, libxml2, python2Packages
+, gnome3, librsvg, gdk_pixbuf, file, libnotify, gobjectIntrospection, wrapGAppsHook }:
-stdenv.mkDerivation rec {
+let
+ python = python2Packages.python.withPackages ( ps: with ps; [ pygobject3 ] );
+in stdenv.mkDerivation rec {
inherit (import ./src.nix fetchurl) name src;
doCheck = true;
@@ -15,17 +17,15 @@ stdenv.mkDerivation rec {
buildInputs = [ pkgconfig gtk3 glib intltool itstool libxml2
gnome3.gsettings_desktop_schemas makeWrapper file
gdk_pixbuf gnome3.defaultIconTheme librsvg
- python pygobject3 libnotify gnome3.gnome_shell
+ libnotify gnome3.gnome_shell
libsoup gnome3.gnome_settings_daemon gnome3.nautilus
- gnome3.gnome_desktop ];
+ gnome3.gnome_desktop wrapGAppsHook ];
- preFixup = ''
- wrapProgram "$out/bin/gnome-tweak-tool" \
- --set GDK_PIXBUF_MODULE_FILE "$GDK_PIXBUF_MODULE_FILE" \
- --suffix XDG_DATA_DIRS : "${gtk3}/share:${gnome3.gnome_themes_standard}/share:$out/share:$XDG_ICON_DIRS:$GSETTINGS_SCHEMAS_PATH" \
- --prefix GI_TYPELIB_PATH : "$GI_TYPELIB_PATH" \
- --prefix PYTHONPATH : "$PYTHONPATH:$(toPythonPath $out)"
- '';
+ propagatedBuildInputs = [ python gobjectIntrospection ];
+
+ PYTHONPATH = "$out/${python.python.sitePackages}";
+
+ wrapPrefixVariables = [ "PYTHONPATH" ];
patches = [
./find_gsettings.patch
diff --git a/pkgs/desktops/gnome-3/3.20/misc/gpaste/default.nix b/pkgs/desktops/gnome-3/3.20/misc/gpaste/default.nix
index 2dc93b6843f..5b9f1638400 100644
--- a/pkgs/desktops/gnome-3/3.20/misc/gpaste/default.nix
+++ b/pkgs/desktops/gnome-3/3.20/misc/gpaste/default.nix
@@ -2,12 +2,12 @@
, pango, gtk3, gnome3, dbus, clutter, appstream-glib, makeWrapper, systemd, gobjectIntrospection }:
stdenv.mkDerivation rec {
- version = "${gnome3.version}";
+ version = "${gnome3.version}.4";
name = "gpaste-${version}";
src = fetchurl {
url = "https://github.com/Keruspe/GPaste/archive/v${version}.tar.gz";
- sha256 = "129bz9ph398n1n43qggr8xfrd7y30nm8gdgn1hq0xq7a4v1fb2dj";
+ sha256 = "08h1igdgapz7px12r7mrfcxmz68g9ijg73w69j75spg0yc6f4xax";
};
buildInputs = [ intltool autoreconfHook pkgconfig vala glib
diff --git a/pkgs/desktops/gnome-3/3.20/misc/pidgin/default.nix b/pkgs/desktops/gnome-3/3.20/misc/pidgin/default.nix
new file mode 100644
index 00000000000..64f7920d9af
--- /dev/null
+++ b/pkgs/desktops/gnome-3/3.20/misc/pidgin/default.nix
@@ -0,0 +1,42 @@
+{ stdenv, fetchFromGitHub, glib }:
+
+stdenv.mkDerivation rec {
+ version = "1.0";
+ basename = "pidgin-im-gnome-shell-extension";
+ name = "${basename}-${version}";
+
+ src = fetchFromGitHub {
+ owner = "muffinmad";
+ repo = "${basename}";
+ rev = "v${version}";
+ sha256 = "0vj4w9qqx9gads24w3f6v6mfh5va28bp8rc4w7lz0vhp7njmy1yy";
+ };
+
+ buildInputs = [ glib ];
+
+ configurePhase = "";
+ buildPhase = "";
+ installPhase = ''
+ share_dir="$prefix/share"
+ extensions_dir="$share_dir/gnome-shell/extensions/pidgin@muffinmad"
+ mkdir -p "$extensions_dir"
+ mv *.js metadata.json dbus.xml gnome-shell-extension-pidgin.pot "$extensions_dir"
+
+ schemas_dir="$share_dir/gsettings-schemas/${name}/glib-2.0/schemas"
+ mkdir -p "$schemas_dir"
+ mv schemas/* "$schemas_dir" # fix Emacs syntax highlighting: */
+ ${glib.dev}/bin/glib-compile-schemas "$schemas_dir"
+
+ locale_dir="$share_dir/locale"
+ mkdir -p "$locale_dir"
+ mv locale/* $locale_dir # fix Emacs syntax highlighting: */
+ '';
+
+ meta = with stdenv.lib; {
+ homepage = https://github.com/muffinmad/pidgin-im-gnome-shell-extension;
+ description = "Make Pidgin IM conversations appear in the Gnome Shell message tray";
+ license = licenses.gpl2;
+ platforms = platforms.linux;
+ maintainers = with maintainers; [ DamienCassou ];
+ };
+}
diff --git a/pkgs/desktops/kde-4.14/kdegames/bomber.nix b/pkgs/desktops/kde-4.14/kdegames/bomber.nix
index 026227910f2..542ff24f5e6 100644
--- a/pkgs/desktops/kde-4.14/kdegames/bomber.nix
+++ b/pkgs/desktops/kde-4.14/kdegames/bomber.nix
@@ -2,6 +2,6 @@
kde {
buildInputs = [ kdelibs libkdegames ];
meta = {
- description = "a single player arcade game. The player is invading various cities in a plane that is decreasing in height";
+ description = "A single player arcade game. The player is invading various cities in a plane that is decreasing in height";
};
}
diff --git a/pkgs/desktops/kde-4.14/kdegames/bovo.nix b/pkgs/desktops/kde-4.14/kdegames/bovo.nix
index b0e7d99c589..89dff46129b 100644
--- a/pkgs/desktops/kde-4.14/kdegames/bovo.nix
+++ b/pkgs/desktops/kde-4.14/kdegames/bovo.nix
@@ -2,7 +2,7 @@
kde {
buildInputs = [ kdelibs libkdegames ];
meta = {
- description = "a Gomoku (from Japanese 五目並べ - lit. \"five points\") like game for two players, where the opponents alternate in placing their respective pictogram on the game board";
+ description = "A Gomoku (from Japanese 五目並べ - lit. \"five points\") like game for two players, where the opponents alternate in placing their respective pictogram on the game board";
};
}
diff --git a/pkgs/desktops/kde-4.14/kdegames/granatier.nix b/pkgs/desktops/kde-4.14/kdegames/granatier.nix
index 9f1ab005309..50c3bf985b5 100644
--- a/pkgs/desktops/kde-4.14/kdegames/granatier.nix
+++ b/pkgs/desktops/kde-4.14/kdegames/granatier.nix
@@ -2,6 +2,6 @@
kde {
buildInputs = [ kdelibs libkdegames ];
meta = {
- description = "a clone of the classic Bomberman game, inspired by the work of the Clanbomber clone";
+ description = "A clone of the classic Bomberman game, inspired by the work of the Clanbomber clone";
};
}
diff --git a/pkgs/desktops/kde-4.14/kdegames/kajongg.nix b/pkgs/desktops/kde-4.14/kdegames/kajongg.nix
index 9a6f5e83695..cea4fb38b4f 100644
--- a/pkgs/desktops/kde-4.14/kdegames/kajongg.nix
+++ b/pkgs/desktops/kde-4.14/kdegames/kajongg.nix
@@ -8,6 +8,6 @@ kde rec {
postInstall = "wrapPythonPrograms";
meta = {
- description = "an ancient Chinese board game for 4 players";
+ description = "An ancient Chinese board game for 4 players";
};
}
diff --git a/pkgs/desktops/kde-4.14/kdegames/kapman.nix b/pkgs/desktops/kde-4.14/kdegames/kapman.nix
index f10e099da3c..616533911ff 100644
--- a/pkgs/desktops/kde-4.14/kdegames/kapman.nix
+++ b/pkgs/desktops/kde-4.14/kdegames/kapman.nix
@@ -2,6 +2,6 @@
kde {
buildInputs = [ kdelibs libkdegames ];
meta = {
- description = "a clone of the well known game Pac-Man";
+ description = "A clone of the well known game Pac-Man";
};
}
diff --git a/pkgs/desktops/kde-4.14/kdegames/katomic.nix b/pkgs/desktops/kde-4.14/kdegames/katomic.nix
index a9936c04f0e..3f7c1343289 100644
--- a/pkgs/desktops/kde-4.14/kdegames/katomic.nix
+++ b/pkgs/desktops/kde-4.14/kdegames/katomic.nix
@@ -2,6 +2,6 @@
kde {
buildInputs = [ kdelibs libkdegames ];
meta = {
- description = "a fun and educational puzzle game built around molecular geometry";
+ description = "A fun and educational puzzle game built around molecular geometry";
};
}
diff --git a/pkgs/desktops/kde-4.14/kdegames/kblackbox.nix b/pkgs/desktops/kde-4.14/kdegames/kblackbox.nix
index 27eeff2f65b..1e20cf0051e 100644
--- a/pkgs/desktops/kde-4.14/kdegames/kblackbox.nix
+++ b/pkgs/desktops/kde-4.14/kdegames/kblackbox.nix
@@ -2,6 +2,6 @@
kde {
buildInputs = [ kdelibs libkdegames ];
meta = {
- description = "a game of hide and seek played on an grid of boxes, where the player shoots rays into the grid to deduce the positions of hidden objects";
+ description = "A game of hide and seek played on an grid of boxes, where the player shoots rays into the grid to deduce the positions of hidden objects";
};
}
diff --git a/pkgs/desktops/kde-4.14/kdegames/kblocks.nix b/pkgs/desktops/kde-4.14/kdegames/kblocks.nix
index 98cf068de09..08e8c62d262 100644
--- a/pkgs/desktops/kde-4.14/kdegames/kblocks.nix
+++ b/pkgs/desktops/kde-4.14/kdegames/kblocks.nix
@@ -2,6 +2,6 @@
kde {
buildInputs = [ kdelibs libkdegames ];
meta = {
- description = "a classic single player falling blocks puzzle game";
+ description = "A classic single player falling blocks puzzle game";
};
}
diff --git a/pkgs/desktops/kde-4.14/kdegames/kbounce.nix b/pkgs/desktops/kde-4.14/kdegames/kbounce.nix
index 77fa0db6352..291e4c65a43 100644
--- a/pkgs/desktops/kde-4.14/kdegames/kbounce.nix
+++ b/pkgs/desktops/kde-4.14/kdegames/kbounce.nix
@@ -2,6 +2,6 @@
kde {
buildInputs = [ kdelibs libkdegames ];
meta = {
- description = "a single player arcade game with the elements of puzzle";
+ description = "A single player arcade game with the elements of puzzle";
};
}
diff --git a/pkgs/desktops/kde-4.14/kdegames/kbreakout.nix b/pkgs/desktops/kde-4.14/kdegames/kbreakout.nix
index 3a484d919bb..4c5b2f62852 100644
--- a/pkgs/desktops/kde-4.14/kdegames/kbreakout.nix
+++ b/pkgs/desktops/kde-4.14/kdegames/kbreakout.nix
@@ -2,6 +2,6 @@
kde {
buildInputs = [ kdelibs libkdegames ];
meta = {
- description = "a Breakout-like game. Its object is to destroy as many bricks as possible without losing the ball";
+ description = "A Breakout-like game. Its object is to destroy as many bricks as possible without losing the ball";
};
}
diff --git a/pkgs/desktops/kde-4.14/kdegames/kdiamond.nix b/pkgs/desktops/kde-4.14/kdegames/kdiamond.nix
index 06dfcee5ac3..b21a945a64b 100644
--- a/pkgs/desktops/kde-4.14/kdegames/kdiamond.nix
+++ b/pkgs/desktops/kde-4.14/kdegames/kdiamond.nix
@@ -2,6 +2,6 @@
kde {
buildInputs = [ kdelibs libkdegames ];
meta = {
- description = "a single player puzzle game. The object of the game is to build lines of three similar diamonds";
+ description = "A single player puzzle game. The object of the game is to build lines of three similar diamonds";
};
}
diff --git a/pkgs/desktops/kde-4.14/kdegames/kfourinline.nix b/pkgs/desktops/kde-4.14/kdegames/kfourinline.nix
index 11b8838e708..6504d069660 100644
--- a/pkgs/desktops/kde-4.14/kdegames/kfourinline.nix
+++ b/pkgs/desktops/kde-4.14/kdegames/kfourinline.nix
@@ -2,6 +2,6 @@
kde {
buildInputs = [ kdelibs libkdegames ];
meta = {
- description = "a board game for two players based on the Connect-Four game";
+ description = "A board game for two players based on the Connect-Four game";
};
}
diff --git a/pkgs/desktops/kde-4.14/kdegames/kgoldrunner.nix b/pkgs/desktops/kde-4.14/kdegames/kgoldrunner.nix
index 6217c47a806..86aff7e77ac 100644
--- a/pkgs/desktops/kde-4.14/kdegames/kgoldrunner.nix
+++ b/pkgs/desktops/kde-4.14/kdegames/kgoldrunner.nix
@@ -2,6 +2,6 @@
kde {
buildInputs = [ kdelibs libkdegames ];
meta = {
- description = "an action game where the hero runs through a maze, climbs stairs, dig holes and dodges enemies in order to collect all the gold nuggets and escape to the next level";
+ description = "An action game where the hero runs through a maze, climbs stairs, dig holes and dodges enemies in order to collect all the gold nuggets and escape to the next level";
};
}
diff --git a/pkgs/desktops/kde-4.14/kdegames/kigo.nix b/pkgs/desktops/kde-4.14/kdegames/kigo.nix
index 32eee67cc1e..e417e89a007 100644
--- a/pkgs/desktops/kde-4.14/kdegames/kigo.nix
+++ b/pkgs/desktops/kde-4.14/kdegames/kigo.nix
@@ -2,6 +2,6 @@
kde {
buildInputs = [ kdelibs libkdegames ];
meta = {
- description = "an open-source implementation of the popular Go game";
+ description = "An open-source implementation of the popular Go game";
};
}
diff --git a/pkgs/desktops/kde-4.14/kdegames/killbots.nix b/pkgs/desktops/kde-4.14/kdegames/killbots.nix
index d9c1472495e..9d8b307be75 100644
--- a/pkgs/desktops/kde-4.14/kdegames/killbots.nix
+++ b/pkgs/desktops/kde-4.14/kdegames/killbots.nix
@@ -2,6 +2,6 @@
kde {
buildInputs = [ kdelibs libkdegames ];
meta = {
- description = "a simple game of evading killer robots";
+ description = "A simple game of evading killer robots";
};
}
diff --git a/pkgs/desktops/kde-4.14/kdegames/kiriki.nix b/pkgs/desktops/kde-4.14/kdegames/kiriki.nix
index 72f7ab67501..433991abd75 100644
--- a/pkgs/desktops/kde-4.14/kdegames/kiriki.nix
+++ b/pkgs/desktops/kde-4.14/kdegames/kiriki.nix
@@ -2,6 +2,6 @@
kde {
buildInputs = [ kdelibs libkdegames ];
meta = {
- description = "an addictive and fun dice game, designed to be played by as many as six players";
+ description = "An addictive and fun dice game, designed to be played by as many as six players";
};
}
diff --git a/pkgs/desktops/kde-4.14/kdegames/kjumpingcube.nix b/pkgs/desktops/kde-4.14/kdegames/kjumpingcube.nix
index a6d22cff51c..888dba71b66 100644
--- a/pkgs/desktops/kde-4.14/kdegames/kjumpingcube.nix
+++ b/pkgs/desktops/kde-4.14/kdegames/kjumpingcube.nix
@@ -2,6 +2,6 @@
kde {
buildInputs = [ kdelibs libkdegames ];
meta = {
- description = "a simple dice driven tactical game";
+ description = "A simple dice driven tactical game";
};
}
diff --git a/pkgs/desktops/kde-4.14/kdegames/klickety.nix b/pkgs/desktops/kde-4.14/kdegames/klickety.nix
index b592bc40641..87415f9a4f8 100644
--- a/pkgs/desktops/kde-4.14/kdegames/klickety.nix
+++ b/pkgs/desktops/kde-4.14/kdegames/klickety.nix
@@ -2,6 +2,6 @@
kde {
buildInputs = [ kdelibs libkdegames ];
meta = {
- description = "a puzzle game where the player removes groups of colored marbles to clear the board";
+ description = "A puzzle game where the player removes groups of colored marbles to clear the board";
};
}
diff --git a/pkgs/desktops/kde-4.14/kdegames/klines.nix b/pkgs/desktops/kde-4.14/kdegames/klines.nix
index 90952fe91c0..e5c32d3fa9a 100644
--- a/pkgs/desktops/kde-4.14/kdegames/klines.nix
+++ b/pkgs/desktops/kde-4.14/kdegames/klines.nix
@@ -2,6 +2,6 @@
kde {
buildInputs = [ kdelibs libkdegames ];
meta = {
- description = "a simple but highly addictive one player game. The player has to move the colored balls around the game board, gathering them into the lines of the same color by five";
+ description = "A simple but highly addictive one player game. The player has to move the colored balls around the game board, gathering them into the lines of the same color by five";
};
}
diff --git a/pkgs/desktops/kde-4.14/kdegames/kmahjongg.nix b/pkgs/desktops/kde-4.14/kdegames/kmahjongg.nix
index 946b531ff12..6aca3c22994 100644
--- a/pkgs/desktops/kde-4.14/kdegames/kmahjongg.nix
+++ b/pkgs/desktops/kde-4.14/kdegames/kmahjongg.nix
@@ -2,6 +2,6 @@
kde {
buildInputs = [ kdelibs libkdegames libkmahjongg ];
meta = {
- description = "the tiles are scrambled and staked on top of each other to resemble a certain shape. The player is then expected to remove all the tiles off the game board by locating each tile's matching pair";
+ description = "The tiles are scrambled and staked on top of each other to resemble a certain shape. The player is then expected to remove all the tiles off the game board by locating each tile's matching pair";
};
}
diff --git a/pkgs/desktops/kde-4.14/kdegames/kmines.nix b/pkgs/desktops/kde-4.14/kdegames/kmines.nix
index 538454e9598..c02a61506d7 100644
--- a/pkgs/desktops/kde-4.14/kdegames/kmines.nix
+++ b/pkgs/desktops/kde-4.14/kdegames/kmines.nix
@@ -2,6 +2,6 @@
kde {
buildInputs = [ kdelibs libkdegames ];
meta = {
- description = "a classic Minesweeper game";
+ description = "A classic Minesweeper game";
};
}
diff --git a/pkgs/desktops/kde-4.14/kdegames/knavalbattle.nix b/pkgs/desktops/kde-4.14/kdegames/knavalbattle.nix
index 42ffd2fcb4d..aed9b48511a 100644
--- a/pkgs/desktops/kde-4.14/kdegames/knavalbattle.nix
+++ b/pkgs/desktops/kde-4.14/kdegames/knavalbattle.nix
@@ -2,6 +2,6 @@
kde {
buildInputs = [ kdelibs libkdegames ];
meta = {
- description = "a Battle Ship game";
+ description = "A Battle Ship game";
};
}
diff --git a/pkgs/desktops/kde-4.14/kdegames/knetwalk.nix b/pkgs/desktops/kde-4.14/kdegames/knetwalk.nix
index a16e578ce84..d7a80f13316 100644
--- a/pkgs/desktops/kde-4.14/kdegames/knetwalk.nix
+++ b/pkgs/desktops/kde-4.14/kdegames/knetwalk.nix
@@ -2,6 +2,6 @@
kde {
buildInputs = [ kdelibs libkdegames ];
meta = {
- description = "a small game where you have to build up a computer network by rotating the wires to connect the terminals to the server";
+ description = "A small game where you have to build up a computer network by rotating the wires to connect the terminals to the server";
};
}
diff --git a/pkgs/desktops/kde-4.14/kdegames/kolf.nix b/pkgs/desktops/kde-4.14/kdegames/kolf.nix
index 78815ee5799..67a75cb9a36 100644
--- a/pkgs/desktops/kde-4.14/kdegames/kolf.nix
+++ b/pkgs/desktops/kde-4.14/kdegames/kolf.nix
@@ -2,6 +2,6 @@
kde {
buildInputs = [ kdelibs libkdegames ];
meta = {
- description = "a miniature golf game";
+ description = "A miniature golf game";
};
}
diff --git a/pkgs/desktops/kde-4.14/kdegames/kollision.nix b/pkgs/desktops/kde-4.14/kdegames/kollision.nix
index 3147c7305ea..b0911d093dd 100644
--- a/pkgs/desktops/kde-4.14/kdegames/kollision.nix
+++ b/pkgs/desktops/kde-4.14/kdegames/kollision.nix
@@ -2,6 +2,6 @@
kde {
buildInputs = [ kdelibs libkdegames ];
meta = {
- description = "a simple ball dodging game";
+ description = "A simple ball dodging game";
};
}
diff --git a/pkgs/desktops/kde-4.14/kdegames/konquest.nix b/pkgs/desktops/kde-4.14/kdegames/konquest.nix
index 53ddd64928c..974730a46d0 100644
--- a/pkgs/desktops/kde-4.14/kdegames/konquest.nix
+++ b/pkgs/desktops/kde-4.14/kdegames/konquest.nix
@@ -2,6 +2,6 @@
kde {
buildInputs = [ kdelibs libkdegames ];
meta = {
- description = "the KDE version of Gnu-Lactic Konquest";
+ description = "The KDE version of Gnu-Lactic Konquest";
};
}
diff --git a/pkgs/desktops/kde-4.14/kdegames/kpat.nix b/pkgs/desktops/kde-4.14/kdegames/kpat.nix
index b60afa786d1..f33ddfb8570 100644
--- a/pkgs/desktops/kde-4.14/kdegames/kpat.nix
+++ b/pkgs/desktops/kde-4.14/kdegames/kpat.nix
@@ -3,6 +3,6 @@ kde {
buildInputs = [ kdelibs libkdegames ];
nativeBuildInputs = [ shared_mime_info ];
meta = {
- description = "a relaxing card sorting game";
+ description = "A relaxing card sorting game";
};
}
diff --git a/pkgs/desktops/kde-4.14/kdegames/kreversi.nix b/pkgs/desktops/kde-4.14/kdegames/kreversi.nix
index 2aed981428e..065ee4bb657 100644
--- a/pkgs/desktops/kde-4.14/kdegames/kreversi.nix
+++ b/pkgs/desktops/kde-4.14/kdegames/kreversi.nix
@@ -2,6 +2,6 @@
kde {
buildInputs = [ kdelibs libkdegames ];
meta = {
- description = "a simple one player strategy game played against the computer. If a player's piece is captured by an opposing player, that piece is turned over to reveal the color of that player";
+ description = "A simple one player strategy game played against the computer. If a player's piece is captured by an opposing player, that piece is turned over to reveal the color of that player";
};
}
diff --git a/pkgs/desktops/kde-4.14/kdegames/kshisen.nix b/pkgs/desktops/kde-4.14/kdegames/kshisen.nix
index 9c888034038..085b91584c7 100644
--- a/pkgs/desktops/kde-4.14/kdegames/kshisen.nix
+++ b/pkgs/desktops/kde-4.14/kdegames/kshisen.nix
@@ -2,6 +2,6 @@
kde {
buildInputs = [ kdelibs libkdegames libkmahjongg ];
meta = {
- description = "a solitaire-like game played using the standard set of Mahjong tiles";
+ description = "A solitaire-like game played using the standard set of Mahjong tiles";
};
}
diff --git a/pkgs/desktops/kde-4.14/kdegames/ksirk.nix b/pkgs/desktops/kde-4.14/kdegames/ksirk.nix
index 767eb67971a..bfdd8f358dd 100644
--- a/pkgs/desktops/kde-4.14/kdegames/ksirk.nix
+++ b/pkgs/desktops/kde-4.14/kdegames/ksirk.nix
@@ -2,6 +2,6 @@
kde {
buildInputs = [ kdelibs libkdegames qca2 ];
meta = {
- description = "a computerized version of the well known strategic board game Risk";
+ description = "A computerized version of the well known strategic board game Risk";
};
}
diff --git a/pkgs/desktops/kde-4.14/kdegames/ksnakeduel.nix b/pkgs/desktops/kde-4.14/kdegames/ksnakeduel.nix
index ccf1fb551e9..ce5e75336c9 100644
--- a/pkgs/desktops/kde-4.14/kdegames/ksnakeduel.nix
+++ b/pkgs/desktops/kde-4.14/kdegames/ksnakeduel.nix
@@ -2,6 +2,6 @@
kde {
buildInputs = [ kdelibs libkdegames ];
meta = {
- description = "a simple Tron-Clone";
+ description = "A simple Tron-Clone";
};
}
diff --git a/pkgs/desktops/kde-4.14/kdegames/kspaceduel.nix b/pkgs/desktops/kde-4.14/kdegames/kspaceduel.nix
index 5285f7916ca..692eb1c085a 100644
--- a/pkgs/desktops/kde-4.14/kdegames/kspaceduel.nix
+++ b/pkgs/desktops/kde-4.14/kdegames/kspaceduel.nix
@@ -2,6 +2,6 @@
kde {
buildInputs = [ kdelibs libkdegames ];
meta = {
- description = "each of two possible players control a satellite spaceship orbiting the sun. As the game progresses players have to eliminate the opponent's spacecraft with bullets or mines";
+ description = "Each of two possible players control a satellite spaceship orbiting the sun. As the game progresses players have to eliminate the opponent's spacecraft with bullets or mines";
};
}
diff --git a/pkgs/desktops/kde-4.14/kdegames/ksquares.nix b/pkgs/desktops/kde-4.14/kdegames/ksquares.nix
index a17be2da632..7cad6bf0e5a 100644
--- a/pkgs/desktops/kde-4.14/kdegames/ksquares.nix
+++ b/pkgs/desktops/kde-4.14/kdegames/ksquares.nix
@@ -2,6 +2,6 @@
kde {
buildInputs = [ kdelibs libkdegames ];
meta = {
- description = "a game modeled after the well known pen and paper based game of Dots and Boxes";
+ description = "A game modeled after the well known pen and paper based game of Dots and Boxes";
};
}
diff --git a/pkgs/desktops/kde-4.14/kdegames/ksudoku.nix b/pkgs/desktops/kde-4.14/kdegames/ksudoku.nix
index ea4e13a5e4f..72a6a72b66d 100644
--- a/pkgs/desktops/kde-4.14/kdegames/ksudoku.nix
+++ b/pkgs/desktops/kde-4.14/kdegames/ksudoku.nix
@@ -2,6 +2,6 @@
kde {
buildInputs = [ kdelibs libkdegames ];
meta = {
- description = "a logic-based symbol placement puzzle";
+ description = "A logic-based symbol placement puzzle";
};
}
diff --git a/pkgs/desktops/kde-4.14/kdegames/ktuberling.nix b/pkgs/desktops/kde-4.14/kdegames/ktuberling.nix
index 1a6ba9d653c..a4480864fd8 100644
--- a/pkgs/desktops/kde-4.14/kdegames/ktuberling.nix
+++ b/pkgs/desktops/kde-4.14/kdegames/ktuberling.nix
@@ -2,6 +2,6 @@
kde {
buildInputs = [ kdelibs libkdegames ];
meta = {
- description = "a simple constructor game suitable for children and adults alike";
+ description = "A simple constructor game suitable for children and adults alike";
};
}
diff --git a/pkgs/desktops/kde-4.14/kdegames/kubrick.nix b/pkgs/desktops/kde-4.14/kdegames/kubrick.nix
index 9bdc6879db4..f80cf4a8b35 100644
--- a/pkgs/desktops/kde-4.14/kdegames/kubrick.nix
+++ b/pkgs/desktops/kde-4.14/kdegames/kubrick.nix
@@ -2,6 +2,6 @@
kde {
buildInputs = [ kdelibs libkdegames ];
meta = {
- description = "a game based on the Rubik's Cube™ puzzle";
+ description = "A game based on the Rubik's Cube™ puzzle";
};
}
diff --git a/pkgs/desktops/kde-4.14/kdegames/libkmahjongg.nix b/pkgs/desktops/kde-4.14/kdegames/libkmahjongg.nix
index 383b347dc33..d7687c1435f 100644
--- a/pkgs/desktops/kde-4.14/kdegames/libkmahjongg.nix
+++ b/pkgs/desktops/kde-4.14/kdegames/libkmahjongg.nix
@@ -2,6 +2,6 @@
kde {
buildInputs = [ kdelibs libkdegames ];
meta = {
- description = "a library for KMahjongg game";
+ description = "A library for KMahjongg game";
};
}
diff --git a/pkgs/desktops/kde-4.14/kdegames/lskat.nix b/pkgs/desktops/kde-4.14/kdegames/lskat.nix
index 2a5050cd667..d3e8268784b 100644
--- a/pkgs/desktops/kde-4.14/kdegames/lskat.nix
+++ b/pkgs/desktops/kde-4.14/kdegames/lskat.nix
@@ -2,6 +2,6 @@
kde {
buildInputs = [ kdelibs libkdegames ];
meta = {
- description = "a fun and engaging card game for two players, where the second player is either live opponent, or a built in artificial intelligence";
+ description = "A fun and engaging card game for two players, where the second player is either live opponent, or a built in artificial intelligence";
};
}
diff --git a/pkgs/desktops/kde-4.14/kdegames/palapeli.nix b/pkgs/desktops/kde-4.14/kdegames/palapeli.nix
index ddecc78c75b..a73fcf100eb 100644
--- a/pkgs/desktops/kde-4.14/kdegames/palapeli.nix
+++ b/pkgs/desktops/kde-4.14/kdegames/palapeli.nix
@@ -8,6 +8,6 @@ kde {
buildInputs = [ kdelibs libkdegames ];
meta = {
- description = "a single-player jigsaw puzzle game";
+ description = "A single-player jigsaw puzzle game";
};
}
diff --git a/pkgs/desktops/kde-4.14/kdegames/picmi.nix b/pkgs/desktops/kde-4.14/kdegames/picmi.nix
index 165d7422f95..77dcdcf48dc 100644
--- a/pkgs/desktops/kde-4.14/kdegames/picmi.nix
+++ b/pkgs/desktops/kde-4.14/kdegames/picmi.nix
@@ -2,6 +2,6 @@
kde {
buildInputs = [ kdelibs libkdegames ];
meta = {
- description = "a single player logic-based puzzle game";
+ description = "A single player logic-based puzzle game";
};
}
diff --git a/pkgs/desktops/kde-4.14/kdemultimedia/audiocd-kio.nix b/pkgs/desktops/kde-4.14/kdemultimedia/audiocd-kio.nix
index 4c56e7529dd..20e63baf723 100644
--- a/pkgs/desktops/kde-4.14/kdemultimedia/audiocd-kio.nix
+++ b/pkgs/desktops/kde-4.14/kdemultimedia/audiocd-kio.nix
@@ -2,6 +2,6 @@
kde {
buildInputs = [ kdelibs libkcompactdisc cdparanoia libkcddb libvorbis flac lame ];
meta = {
- description = "transparent audio CD access for applications using the KDE Platform";
+ description = "Transparent audio CD access for applications using the KDE Platform";
};
}
diff --git a/pkgs/desktops/kde-4.14/kdemultimedia/dragon.nix b/pkgs/desktops/kde-4.14/kdemultimedia/dragon.nix
index 006300742ec..bb44c3b7234 100644
--- a/pkgs/desktops/kde-4.14/kdemultimedia/dragon.nix
+++ b/pkgs/desktops/kde-4.14/kdemultimedia/dragon.nix
@@ -2,6 +2,6 @@
kde {
buildInputs = [ kdelibs ];
meta = {
- description = "a multimedia player with the focus on simplicity";
+ description = "A multimedia player with the focus on simplicity";
};
}
diff --git a/pkgs/desktops/kde-4.14/kdemultimedia/ffmpegthumbs.nix b/pkgs/desktops/kde-4.14/kdemultimedia/ffmpegthumbs.nix
index 45f6c9abcb6..2311b1dda58 100644
--- a/pkgs/desktops/kde-4.14/kdemultimedia/ffmpegthumbs.nix
+++ b/pkgs/desktops/kde-4.14/kdemultimedia/ffmpegthumbs.nix
@@ -2,6 +2,6 @@
kde {
buildInputs = [ kdelibs ffmpeg ];
meta = {
- description = "a video thumbnail generator for KDE file managers like Dolphin and Konqueror";
+ description = "A video thumbnail generator for KDE file managers like Dolphin and Konqueror";
};
}
diff --git a/pkgs/desktops/kde-4.14/kdemultimedia/juk.nix b/pkgs/desktops/kde-4.14/kdemultimedia/juk.nix
index 93365b194b2..1bf5584de2f 100644
--- a/pkgs/desktops/kde-4.14/kdemultimedia/juk.nix
+++ b/pkgs/desktops/kde-4.14/kdemultimedia/juk.nix
@@ -5,6 +5,6 @@ kde {
buildInputs = [ kdelibs taglib_1_9 libtunepimp ];
meta = {
- description = "an audio jukebox application";
+ description = "An audio jukebox application";
};
}
diff --git a/pkgs/desktops/kde-4.14/kdemultimedia/kmix.nix b/pkgs/desktops/kde-4.14/kdemultimedia/kmix.nix
index 8d8bc84e16e..4d36aaf4f68 100644
--- a/pkgs/desktops/kde-4.14/kdemultimedia/kmix.nix
+++ b/pkgs/desktops/kde-4.14/kdemultimedia/kmix.nix
@@ -2,6 +2,6 @@
kde {
buildInputs = [ kdelibs libcanberra libpulseaudio ];
meta = {
- description = "sound mixer, an application to allow you to change the volume of your sound card";
+ description = "Sound mixer, an application to allow you to change the volume of your sound card";
};
}
diff --git a/pkgs/desktops/kde-4.14/kdemultimedia/libkcddb.nix b/pkgs/desktops/kde-4.14/kdemultimedia/libkcddb.nix
index 720b01d1861..66b0cfe869f 100644
--- a/pkgs/desktops/kde-4.14/kdemultimedia/libkcddb.nix
+++ b/pkgs/desktops/kde-4.14/kdemultimedia/libkcddb.nix
@@ -3,6 +3,6 @@ kde {
#todo: libmusicbrainz5
buildInputs = [ kdelibs ];
meta = {
- description = "a library used to retrieve audio CD meta data from the internet";
+ description = "A library used to retrieve audio CD meta data from the internet";
};
}
diff --git a/pkgs/desktops/kde-4.14/kdemultimedia/mplayerthumbs.nix b/pkgs/desktops/kde-4.14/kdemultimedia/mplayerthumbs.nix
index c88ebcc2a5a..c34b849f4c9 100644
--- a/pkgs/desktops/kde-4.14/kdemultimedia/mplayerthumbs.nix
+++ b/pkgs/desktops/kde-4.14/kdemultimedia/mplayerthumbs.nix
@@ -2,6 +2,6 @@
kde {
buildInputs = [ kdelibs ];
meta = {
- description = "a video thumbnail generator for KDE";
+ description = "A video thumbnail generator for KDE";
};
}
diff --git a/pkgs/desktops/kde-4.14/kdesdk/kde-dev-utils.nix b/pkgs/desktops/kde-4.14/kdesdk/kde-dev-utils.nix
index 5c357cede8e..5d4f83e2656 100644
--- a/pkgs/desktops/kde-4.14/kdesdk/kde-dev-utils.nix
+++ b/pkgs/desktops/kde-4.14/kdesdk/kde-dev-utils.nix
@@ -6,6 +6,6 @@ kde {
preConfigure = "export CMAKE_PREFIX_PATH=$CMAKE_PREFIX_PATH:${gcc}:${gcc.cc}";
meta = {
- description = "various KDE development utilities";
+ description = "Various KDE development utilities";
};
}
diff --git a/pkgs/desktops/kde-5/applications-16.04/fetchsrcs.sh b/pkgs/desktops/kde-5/applications-16.04/fetchsrcs.sh
deleted file mode 100755
index dc4a4a434b4..00000000000
--- a/pkgs/desktops/kde-5/applications-16.04/fetchsrcs.sh
+++ /dev/null
@@ -1,56 +0,0 @@
-#! /usr/bin/env nix-shell
-#! nix-shell -i bash -p coreutils findutils gnused nix wget
-
-set -x
-
-# The trailing slash at the end is necessary!
-WGET_ARGS='http://download.kde.org/stable/applications/16.04.1/ -A *.tar.xz'
-
-mkdir tmp; cd tmp
-
-rm -f ../srcs.csv
-
-wget -nH -r -c --no-parent $WGET_ARGS
-
-find . | while read src; do
- if [[ -f "${src}" ]]; then
- # Sanitize file name
- filename=$(basename "$src" | tr '@' '_')
- nameVersion="${filename%.tar.*}"
- name=$(echo "$nameVersion" | sed -e 's,-[[:digit:]].*,,' | sed -e 's,-opensource-src$,,')
- version=$(echo "$nameVersion" | sed -e 's,^\([[:alpha:]][[:alnum:]]*-\)\+,,')
- echo "$name,$version,$src,$filename" >>../srcs.csv
- fi
-done
-
-cat >../srcs.nix <>../srcs.nix <>../srcs.nix
-
-rm -f ../srcs.csv
-
-cd ..
diff --git a/pkgs/desktops/kde-5/applications-16.04/srcs.nix b/pkgs/desktops/kde-5/applications-16.04/srcs.nix
deleted file mode 100644
index bf08cda44d5..00000000000
--- a/pkgs/desktops/kde-5/applications-16.04/srcs.nix
+++ /dev/null
@@ -1,2093 +0,0 @@
-# DO NOT EDIT! This file is generated automatically by fetchsrcs.sh
-{ fetchurl, mirror }:
-
-{
- akonadi = {
- version = "16.04.1";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.1/src/akonadi-16.04.1.tar.xz";
- sha256 = "1ik65izkcphc2wvb7hf8qw38fdfxd015hba8kv5ksmyydd01c6qf";
- name = "akonadi-16.04.1.tar.xz";
- };
- };
- akonadi-calendar = {
- version = "16.04.1";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.1/src/akonadi-calendar-16.04.1.tar.xz";
- sha256 = "0v7mhv4sdxnv2kcmkln0dnjw33f9y82h65wigfs7dv017jcy0ija";
- name = "akonadi-calendar-16.04.1.tar.xz";
- };
- };
- akonadi-search = {
- version = "16.04.1";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.1/src/akonadi-search-16.04.1.tar.xz";
- sha256 = "06gzs0844df0v9x8nmd3ssxg7z2zrdpcfzwjpylis55a93689rxs";
- name = "akonadi-search-16.04.1.tar.xz";
- };
- };
- analitza = {
- version = "16.04.1";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.1/src/analitza-16.04.1.tar.xz";
- sha256 = "01kakqh021qk9irf6jl0kk4lph4w8q7xb8y7jxc09abl1cbx8p0w";
- name = "analitza-16.04.1.tar.xz";
- };
- };
- ark = {
- version = "16.04.1";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.1/src/ark-16.04.1.tar.xz";
- sha256 = "0qlyl37crqw8rg1wpak0xcmnlwx1n0s8mhsd8xm1rsi2lq11sf64";
- name = "ark-16.04.1.tar.xz";
- };
- };
- artikulate = {
- version = "16.04.1";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.1/src/artikulate-16.04.1.tar.xz";
- sha256 = "0lpqsf11dw2gcvj51j47cpr3aj9shgnmqgkfd1qsy92d7hp83355";
- name = "artikulate-16.04.1.tar.xz";
- };
- };
- audiocd-kio = {
- version = "16.04.1";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.1/src/audiocd-kio-16.04.1.tar.xz";
- sha256 = "0s5hx0yzzz1y3a39ibwsspqgdmcw7921bh2fq8k1xpcy4cdkiavx";
- name = "audiocd-kio-16.04.1.tar.xz";
- };
- };
- baloo-widgets = {
- version = "16.04.1";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.1/src/baloo-widgets-16.04.1.tar.xz";
- sha256 = "1j5c70xi13c7drc2ndlzkz0nznbxlw0rrlgqpp7yxdprlp2x84g4";
- name = "baloo-widgets-16.04.1.tar.xz";
- };
- };
- blinken = {
- version = "16.04.1";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.1/src/blinken-16.04.1.tar.xz";
- sha256 = "0sj3ih0izm9vgy2k40qh5x9navcg2rhh6sn7nxnwwj9gh16g4q0a";
- name = "blinken-16.04.1.tar.xz";
- };
- };
- bomber = {
- version = "16.04.1";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.1/src/bomber-16.04.1.tar.xz";
- sha256 = "04flkvlmmsx8l5r4mcsp36b1b4rfbsw1108k7mcfd98bzx8af6r6";
- name = "bomber-16.04.1.tar.xz";
- };
- };
- bovo = {
- version = "16.04.1";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.1/src/bovo-16.04.1.tar.xz";
- sha256 = "1wynbs4p20awn5ssik36205xswlvpk17x9wmvpf6yhrpwdsyac1l";
- name = "bovo-16.04.1.tar.xz";
- };
- };
- calendarsupport = {
- version = "16.04.1";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.1/src/calendarsupport-16.04.1.tar.xz";
- sha256 = "0djmr6anfwcvxq6sqg4zwvvjcpak6x16m1wnbfbr2d8b8b2hbv2h";
- name = "calendarsupport-16.04.1.tar.xz";
- };
- };
- cantor = {
- version = "16.04.1";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.1/src/cantor-16.04.1.tar.xz";
- sha256 = "0296jj14mygx5v0q8byyks87q6gx04w6k2k6gqqfbnalimfrxyh2";
- name = "cantor-16.04.1.tar.xz";
- };
- };
- cervisia = {
- version = "16.04.1";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.1/src/cervisia-16.04.1.tar.xz";
- sha256 = "1w2qdbdgjmm8gavwg5r9law86s3mayqbwa8y22bika2ffgikb6aw";
- name = "cervisia-16.04.1.tar.xz";
- };
- };
- dolphin = {
- version = "16.04.1";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.1/src/dolphin-16.04.1.tar.xz";
- sha256 = "19g053y6icazq58zh450qhnxy60j787qgvfaic389czcvbf0rn9i";
- name = "dolphin-16.04.1.tar.xz";
- };
- };
- dolphin-plugins = {
- version = "16.04.1";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.1/src/dolphin-plugins-16.04.1.tar.xz";
- sha256 = "0kbypywyk7v13bnvsdaa6g7ln3q19v3hsymakxm3gylghn6ii0ac";
- name = "dolphin-plugins-16.04.1.tar.xz";
- };
- };
- dragon = {
- version = "16.04.1";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.1/src/dragon-16.04.1.tar.xz";
- sha256 = "063ylb10y1v9ml6lgycn5f1qrdda00147s35b3d3vslw8l1xcwj8";
- name = "dragon-16.04.1.tar.xz";
- };
- };
- eventviews = {
- version = "16.04.1";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.1/src/eventviews-16.04.1.tar.xz";
- sha256 = "1yrlr5xa21vsbl0by706plknzi2mkg9zi9w0702lyvj1y2bm3yw3";
- name = "eventviews-16.04.1.tar.xz";
- };
- };
- ffmpegthumbs = {
- version = "16.04.1";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.1/src/ffmpegthumbs-16.04.1.tar.xz";
- sha256 = "1694bxkmgzb5qsibl3dcc510xz96gjb8mrzdsmi84gbwhrnhaahw";
- name = "ffmpegthumbs-16.04.1.tar.xz";
- };
- };
- filelight = {
- version = "16.04.1";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.1/src/filelight-16.04.1.tar.xz";
- sha256 = "1gvk9y2iy48c63bgq1d38iix70jz429d0fsgqk9k1h6c5lmywf3w";
- name = "filelight-16.04.1.tar.xz";
- };
- };
- gpgmepp = {
- version = "16.04.1";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.1/src/gpgmepp-16.04.1.tar.xz";
- sha256 = "09cqnqqwh0lzfcip09pdwa6k0pf4hhl978jiry4dsvjmiymlzhac";
- name = "gpgmepp-16.04.1.tar.xz";
- };
- };
- granatier = {
- version = "16.04.1";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.1/src/granatier-16.04.1.tar.xz";
- sha256 = "0350v1jkizybicl9qqkjks0sjvnpxc09jzjbz916ya1zakw48m7i";
- name = "granatier-16.04.1.tar.xz";
- };
- };
- grantleetheme = {
- version = "16.04.1";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.1/src/grantleetheme-16.04.1.tar.xz";
- sha256 = "1205fzj49yi5nw4k28njn52jxzq12lpgdb9dz5f6g3c0zgzxdfbf";
- name = "grantleetheme-16.04.1.tar.xz";
- };
- };
- gwenview = {
- version = "16.04.1";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.1/src/gwenview-16.04.1.tar.xz";
- sha256 = "1piw2crfhxig5smscz1ch6ifbadma7fylwxa98kp9p0srslmagx7";
- name = "gwenview-16.04.1.tar.xz";
- };
- };
- incidenceeditor = {
- version = "16.04.1";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.1/src/incidenceeditor-16.04.1.tar.xz";
- sha256 = "16bzxsw09spk75zpgj9q49yvl4302zi78syi0g521gln4jjc730q";
- name = "incidenceeditor-16.04.1.tar.xz";
- };
- };
- jovie = {
- version = "16.04.1";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.1/src/jovie-16.04.1.tar.xz";
- sha256 = "10d5w5z2fgbfr263m6jvq6li7q3fxr03h4s51j2vspniyy8rq6v8";
- name = "jovie-16.04.1.tar.xz";
- };
- };
- juk = {
- version = "16.04.1";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.1/src/juk-16.04.1.tar.xz";
- sha256 = "1amxykyc97iw5ldflk9h97jnkm6zm1v48il0sm5xknlhiv7qma0v";
- name = "juk-16.04.1.tar.xz";
- };
- };
- kaccessible = {
- version = "16.04.1";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.1/src/kaccessible-16.04.1.tar.xz";
- sha256 = "0l3xrkgmfnd5pfa9jfx65f1iy4ynrx266ga6if24nkk8mp1l6hqk";
- name = "kaccessible-16.04.1.tar.xz";
- };
- };
- kaccounts-integration = {
- version = "16.04.1";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.1/src/kaccounts-integration-16.04.1.tar.xz";
- sha256 = "02is41d5zchqri8v767rzb6bp2apq8z1wwgqs2v4iaylh49fbnrf";
- name = "kaccounts-integration-16.04.1.tar.xz";
- };
- };
- kaccounts-providers = {
- version = "16.04.1";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.1/src/kaccounts-providers-16.04.1.tar.xz";
- sha256 = "1f3r48kzhnrs6af6zql1gcj5vhzs4kcmp5zj97bkh0kp5d9sqrqk";
- name = "kaccounts-providers-16.04.1.tar.xz";
- };
- };
- kajongg = {
- version = "16.04.1";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.1/src/kajongg-16.04.1.tar.xz";
- sha256 = "0sakgaaq99s1rfrrlpi81rpxrcdyhqpigczsxjw79amm368yw2va";
- name = "kajongg-16.04.1.tar.xz";
- };
- };
- kalarmcal = {
- version = "16.04.1";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.1/src/kalarmcal-16.04.1.tar.xz";
- sha256 = "1qg2hdybcss86l92xnzcgc60rdzgg8cp07rk59lrskipj12fzpp5";
- name = "kalarmcal-16.04.1.tar.xz";
- };
- };
- kalgebra = {
- version = "16.04.1";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.1/src/kalgebra-16.04.1.tar.xz";
- sha256 = "1mbbsi193vwig65xbk4c865xqbs3mxm16x7d8fxdq1j6glwa6l2j";
- name = "kalgebra-16.04.1.tar.xz";
- };
- };
- kalzium = {
- version = "16.04.1";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.1/src/kalzium-16.04.1.tar.xz";
- sha256 = "1rx57fsyc66gpsvzcig6mymhlxc4nf3cjg8bkmq89avhbpkzhzri";
- name = "kalzium-16.04.1.tar.xz";
- };
- };
- kamera = {
- version = "16.04.1";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.1/src/kamera-16.04.1.tar.xz";
- sha256 = "1s6fpzna6pvbqzcvd799r87d92l460b4zws84yik811dfqrcpf3s";
- name = "kamera-16.04.1.tar.xz";
- };
- };
- kanagram = {
- version = "16.04.1";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.1/src/kanagram-16.04.1.tar.xz";
- sha256 = "0y80gpdq17cbiwih3gndhb8qyfa84f305hisgslrdqx39nai0fmf";
- name = "kanagram-16.04.1.tar.xz";
- };
- };
- kapman = {
- version = "16.04.1";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.1/src/kapman-16.04.1.tar.xz";
- sha256 = "0im0gszmsvxfcjmlcpqxc5ik8kr890b7kd83lnydkm50xxmyk9x0";
- name = "kapman-16.04.1.tar.xz";
- };
- };
- kapptemplate = {
- version = "16.04.1";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.1/src/kapptemplate-16.04.1.tar.xz";
- sha256 = "14jq6q1bsmqp7vz7lwi4h7hqc8zyghl2mbyl1yyhv5hbvr00b2w3";
- name = "kapptemplate-16.04.1.tar.xz";
- };
- };
- kate = {
- version = "16.04.1";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.1/src/kate-16.04.1.tar.xz";
- sha256 = "0192dqf22rkr3v5ywxadjx7nmwrih336dxlma3nxprw8ng3ppacm";
- name = "kate-16.04.1.tar.xz";
- };
- };
- katomic = {
- version = "16.04.1";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.1/src/katomic-16.04.1.tar.xz";
- sha256 = "1flg9kkrv8z49amiay88010aj76s0x6f14w8701zlinl238jrp08";
- name = "katomic-16.04.1.tar.xz";
- };
- };
- kblackbox = {
- version = "16.04.1";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.1/src/kblackbox-16.04.1.tar.xz";
- sha256 = "0a6bdyqla3ip981lpmj81q3wbr6ca2slpwzfs599hadzmrwxmlxw";
- name = "kblackbox-16.04.1.tar.xz";
- };
- };
- kblocks = {
- version = "16.04.1";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.1/src/kblocks-16.04.1.tar.xz";
- sha256 = "00q70ja45g38n3l62iivyi9pzb124cvsiyszsb4b2qcvi3akzabz";
- name = "kblocks-16.04.1.tar.xz";
- };
- };
- kblog = {
- version = "16.04.1";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.1/src/kblog-16.04.1.tar.xz";
- sha256 = "0yib39p27xxbsdwazq5jwb2jaqsnf7c456y4js61hm2qh415nlkk";
- name = "kblog-16.04.1.tar.xz";
- };
- };
- kbounce = {
- version = "16.04.1";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.1/src/kbounce-16.04.1.tar.xz";
- sha256 = "0h615ijxm7rj1m89aaz8g7ikcysv10mm2w4r1x5qdf7ihq1nxn4a";
- name = "kbounce-16.04.1.tar.xz";
- };
- };
- kbreakout = {
- version = "16.04.1";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.1/src/kbreakout-16.04.1.tar.xz";
- sha256 = "18yb93jfy74ybmwd6fp2xca15zgzk0hiqzaan89a0fd02ldd4aw9";
- name = "kbreakout-16.04.1.tar.xz";
- };
- };
- kbruch = {
- version = "16.04.1";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.1/src/kbruch-16.04.1.tar.xz";
- sha256 = "03dm0q0wifz0psj51r3dxgg2qrcpvj207mw036kvqzsxgn6fcdx5";
- name = "kbruch-16.04.1.tar.xz";
- };
- };
- kcachegrind = {
- version = "16.04.1";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.1/src/kcachegrind-16.04.1.tar.xz";
- sha256 = "11f6l8189vnw3brpzgd0vsv3hrra9ha1vdmzfk5haq092rxyw26s";
- name = "kcachegrind-16.04.1.tar.xz";
- };
- };
- kcalc = {
- version = "16.04.1";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.1/src/kcalc-16.04.1.tar.xz";
- sha256 = "1wldinbl4fkgw9idvbdr4gcmnsbjfgfakg2mn9axjs98iis1igyx";
- name = "kcalc-16.04.1.tar.xz";
- };
- };
- kcalcore = {
- version = "16.04.1";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.1/src/kcalcore-16.04.1.tar.xz";
- sha256 = "0cp2pjfg34zg6s83dl5dkgn4ssdj1295vrzkidkcdxj5br1z767s";
- name = "kcalcore-16.04.1.tar.xz";
- };
- };
- kcalutils = {
- version = "16.04.1";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.1/src/kcalutils-16.04.1.tar.xz";
- sha256 = "1hlqpklni83b0vg53b8gpsirnn04q8hvk364kgq532czvkf50lyw";
- name = "kcalutils-16.04.1.tar.xz";
- };
- };
- kcharselect = {
- version = "16.04.1";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.1/src/kcharselect-16.04.1.tar.xz";
- sha256 = "05wb5is2srwy01v88nxbdvkkqw798wr8s1k8s9mwa7l5jsa97rvp";
- name = "kcharselect-16.04.1.tar.xz";
- };
- };
- kcolorchooser = {
- version = "16.04.1";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.1/src/kcolorchooser-16.04.1.tar.xz";
- sha256 = "0d9f8s5lg7j2l6sl4pivl01fmgal42frmx49cp5hhshqfxqc30kv";
- name = "kcolorchooser-16.04.1.tar.xz";
- };
- };
- kcontacts = {
- version = "16.04.1";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.1/src/kcontacts-16.04.1.tar.xz";
- sha256 = "007a02dwj71id5n3jmbj11hwqyfcy6zpygqh061s5symaqpswrw6";
- name = "kcontacts-16.04.1.tar.xz";
- };
- };
- kcron = {
- version = "16.04.1";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.1/src/kcron-16.04.1.tar.xz";
- sha256 = "0rfwg5ywgn242jfm85lvqirdxrazc4yw2nhkhvdylph9ngwqc2bn";
- name = "kcron-16.04.1.tar.xz";
- };
- };
- kde-baseapps = {
- version = "16.04.1";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.1/src/kde-baseapps-16.04.1.tar.xz";
- sha256 = "10rfn5kc6kdsp9dw0n191h87p7z60vyfq0cal233x722lmzflsjj";
- name = "kde-baseapps-16.04.1.tar.xz";
- };
- };
- kdebugsettings = {
- version = "16.04.1";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.1/src/kdebugsettings-16.04.1.tar.xz";
- sha256 = "158p1mnb0mi8ka2nc5bkmz5cw6ki4mh67ry75dxxdgnnnfcqagrc";
- name = "kdebugsettings-16.04.1.tar.xz";
- };
- };
- kde-dev-scripts = {
- version = "16.04.1";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.1/src/kde-dev-scripts-16.04.1.tar.xz";
- sha256 = "10vxiz1h9lcd133sffrdillq9ssn2b49phmx66ll9c7iawsvgs4q";
- name = "kde-dev-scripts-16.04.1.tar.xz";
- };
- };
- kde-dev-utils = {
- version = "16.04.1";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.1/src/kde-dev-utils-16.04.1.tar.xz";
- sha256 = "0ybd7kckxyc5an9kn6r31his87mvgc9cbadwd5jm9fh2v4vy8da3";
- name = "kde-dev-utils-16.04.1.tar.xz";
- };
- };
- kdeedu-data = {
- version = "16.04.1";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.1/src/kdeedu-data-16.04.1.tar.xz";
- sha256 = "0ns362vz424s4klrk9qllg0qmb41whrhv25xrb27il73nla27cn2";
- name = "kdeedu-data-16.04.1.tar.xz";
- };
- };
- kdegraphics-mobipocket = {
- version = "16.04.1";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.1/src/kdegraphics-mobipocket-16.04.1.tar.xz";
- sha256 = "0d4yd4zfkbpm7qixkiiz7lpg66afvdfsz621fby59n9i3nla5b8d";
- name = "kdegraphics-mobipocket-16.04.1.tar.xz";
- };
- };
- kdegraphics-strigi-analyzer = {
- version = "16.04.1";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.1/src/kdegraphics-strigi-analyzer-16.04.1.tar.xz";
- sha256 = "01j4ymrvd82xzfpsdl76nr7xjiaji9ki8iv41qkp32frvxj0g48z";
- name = "kdegraphics-strigi-analyzer-16.04.1.tar.xz";
- };
- };
- kdegraphics-thumbnailers = {
- version = "16.04.1";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.1/src/kdegraphics-thumbnailers-16.04.1.tar.xz";
- sha256 = "1fqj0kgq9cpq8bv4riwqfbczc6cjfv4s2han7jy267n2lgzi7kpa";
- name = "kdegraphics-thumbnailers-16.04.1.tar.xz";
- };
- };
- kde-l10n-ar = {
- version = "16.04.1";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.1/src/kde-l10n/kde-l10n-ar-16.04.1.tar.xz";
- sha256 = "0in3bzbhdalpyc366sngz2al5ycv5r3a3n1dmxzn5jw4gzr32rbg";
- name = "kde-l10n-ar-16.04.1.tar.xz";
- };
- };
- kde-l10n-ast = {
- version = "16.04.1";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.1/src/kde-l10n/kde-l10n-ast-16.04.1.tar.xz";
- sha256 = "0xn1759ccm9kvvynjf9ndav0q7fg3k20hawdmfisyan6zdsnih7i";
- name = "kde-l10n-ast-16.04.1.tar.xz";
- };
- };
- kde-l10n-bg = {
- version = "16.04.1";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.1/src/kde-l10n/kde-l10n-bg-16.04.1.tar.xz";
- sha256 = "1fvnlqljp0swx1k1lasy0k8bz4cpj8z0kwrnj5zagpys6bg5dlxh";
- name = "kde-l10n-bg-16.04.1.tar.xz";
- };
- };
- kde-l10n-bs = {
- version = "16.04.1";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.1/src/kde-l10n/kde-l10n-bs-16.04.1.tar.xz";
- sha256 = "0cvqmh275j92mdc4wwrfpgds4lnzqdd8mzv2w317n7p351nklwfd";
- name = "kde-l10n-bs-16.04.1.tar.xz";
- };
- };
- kde-l10n-ca = {
- version = "16.04.1";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.1/src/kde-l10n/kde-l10n-ca-16.04.1.tar.xz";
- sha256 = "1yzqvd3nvgvxlr49y143hs77pjrr2rb91mc3xyinrqls0awq4j4b";
- name = "kde-l10n-ca-16.04.1.tar.xz";
- };
- };
- kde-l10n-ca_valencia = {
- version = "ca_valencia-16.04.1";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.1/src/kde-l10n/kde-l10n-ca@valencia-16.04.1.tar.xz";
- sha256 = "0xv9akrnvlf983qjj9l63h9f0ppk61yi1lrhpp8ba9i57b2z0apy";
- name = "kde-l10n-ca_valencia-16.04.1.tar.xz";
- };
- };
- kde-l10n-cs = {
- version = "16.04.1";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.1/src/kde-l10n/kde-l10n-cs-16.04.1.tar.xz";
- sha256 = "0ig21rl11m9c73v3vkn3q13zw2xv39ymxdq4hnm96d323pp3lrhp";
- name = "kde-l10n-cs-16.04.1.tar.xz";
- };
- };
- kde-l10n-da = {
- version = "16.04.1";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.1/src/kde-l10n/kde-l10n-da-16.04.1.tar.xz";
- sha256 = "0m6pgyib8nbmrvqm7asb9dj64552mkadh6wfxqz7k5ylahar82l5";
- name = "kde-l10n-da-16.04.1.tar.xz";
- };
- };
- kde-l10n-de = {
- version = "16.04.1";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.1/src/kde-l10n/kde-l10n-de-16.04.1.tar.xz";
- sha256 = "1jp6iqlrxpxr3xqibph505p9qn84m3s4sq2bbfk3sb256w1qzh88";
- name = "kde-l10n-de-16.04.1.tar.xz";
- };
- };
- kde-l10n-el = {
- version = "16.04.1";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.1/src/kde-l10n/kde-l10n-el-16.04.1.tar.xz";
- sha256 = "07m80cyi8nfk1ih05dhj22gg03wjb4zv12ywqamym4pl5k08wgls";
- name = "kde-l10n-el-16.04.1.tar.xz";
- };
- };
- kde-l10n-en_GB = {
- version = "en_GB-16.04.1";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.1/src/kde-l10n/kde-l10n-en_GB-16.04.1.tar.xz";
- sha256 = "0936bai72v2fj84rnd7vr2ljwdy6x33m7iiall69cgkam4c26vyz";
- name = "kde-l10n-en_GB-16.04.1.tar.xz";
- };
- };
- kde-l10n-eo = {
- version = "16.04.1";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.1/src/kde-l10n/kde-l10n-eo-16.04.1.tar.xz";
- sha256 = "1rrhpfq24cgq0mgawmk5vz0v033gnfa68phlgsa1ynmm42cg6vn9";
- name = "kde-l10n-eo-16.04.1.tar.xz";
- };
- };
- kde-l10n-es = {
- version = "16.04.1";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.1/src/kde-l10n/kde-l10n-es-16.04.1.tar.xz";
- sha256 = "07rzyhr4hha38vdl30fhb4slan7w4fwryg59vf9fj4pb8x97qisq";
- name = "kde-l10n-es-16.04.1.tar.xz";
- };
- };
- kde-l10n-et = {
- version = "16.04.1";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.1/src/kde-l10n/kde-l10n-et-16.04.1.tar.xz";
- sha256 = "1nlnsw2z0iq9vxkclkrhkq6k3qzqq7xrg4yl4159fsdfvby11m1d";
- name = "kde-l10n-et-16.04.1.tar.xz";
- };
- };
- kde-l10n-eu = {
- version = "16.04.1";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.1/src/kde-l10n/kde-l10n-eu-16.04.1.tar.xz";
- sha256 = "0wjjq7gkmlnmwwbkqxpn3ddx335cn0g4443h1m7ddm823mqf5prv";
- name = "kde-l10n-eu-16.04.1.tar.xz";
- };
- };
- kde-l10n-fa = {
- version = "16.04.1";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.1/src/kde-l10n/kde-l10n-fa-16.04.1.tar.xz";
- sha256 = "1ikjkn8ikp959bzq32r05irxzb37mswhjps4244cgv2wzr79jinh";
- name = "kde-l10n-fa-16.04.1.tar.xz";
- };
- };
- kde-l10n-fi = {
- version = "16.04.1";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.1/src/kde-l10n/kde-l10n-fi-16.04.1.tar.xz";
- sha256 = "039v26478iqk6z2j9z2mblvl9ypmnl69xp8fybyp8nhlmakmxffp";
- name = "kde-l10n-fi-16.04.1.tar.xz";
- };
- };
- kde-l10n-fr = {
- version = "16.04.1";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.1/src/kde-l10n/kde-l10n-fr-16.04.1.tar.xz";
- sha256 = "0cmw70kvzi365sj5rlkxjj69h5si8bygyl6c6nia1v9ykdi9yw1q";
- name = "kde-l10n-fr-16.04.1.tar.xz";
- };
- };
- kde-l10n-ga = {
- version = "16.04.1";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.1/src/kde-l10n/kde-l10n-ga-16.04.1.tar.xz";
- sha256 = "0wndnikw0pi4jib6y571zgf38ggk16d66izjwcwxrvminjc6wni1";
- name = "kde-l10n-ga-16.04.1.tar.xz";
- };
- };
- kde-l10n-gl = {
- version = "16.04.1";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.1/src/kde-l10n/kde-l10n-gl-16.04.1.tar.xz";
- sha256 = "1mmwhb75cpkfz9hp5y0ncv5vga7pv34ybdav30g1m99mjih9ld2j";
- name = "kde-l10n-gl-16.04.1.tar.xz";
- };
- };
- kde-l10n-he = {
- version = "16.04.1";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.1/src/kde-l10n/kde-l10n-he-16.04.1.tar.xz";
- sha256 = "0jwi0z3mvz8r6cg9b6665qh327yyj7mb22627xavfbp0rb1a2c21";
- name = "kde-l10n-he-16.04.1.tar.xz";
- };
- };
- kde-l10n-hi = {
- version = "16.04.1";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.1/src/kde-l10n/kde-l10n-hi-16.04.1.tar.xz";
- sha256 = "1rv08lc6804ip81nvwy65zgxdb7q68sfx0v66xyckds9f2q2g9jv";
- name = "kde-l10n-hi-16.04.1.tar.xz";
- };
- };
- kde-l10n-hr = {
- version = "16.04.1";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.1/src/kde-l10n/kde-l10n-hr-16.04.1.tar.xz";
- sha256 = "1p7qa99x3bmbc41fmnsjbaimkjg89m44yxak7ka516w4r87aai5y";
- name = "kde-l10n-hr-16.04.1.tar.xz";
- };
- };
- kde-l10n-hu = {
- version = "16.04.1";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.1/src/kde-l10n/kde-l10n-hu-16.04.1.tar.xz";
- sha256 = "0a7pi8w2phn8523vv6zsvgzv6yk7iy4jixc9glxvqn4sy6cy8j1n";
- name = "kde-l10n-hu-16.04.1.tar.xz";
- };
- };
- kde-l10n-ia = {
- version = "16.04.1";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.1/src/kde-l10n/kde-l10n-ia-16.04.1.tar.xz";
- sha256 = "1cxqjrpj2pplwvdc9zg97w3nhhamzpi7a3h504r9i2wvlb76y0s2";
- name = "kde-l10n-ia-16.04.1.tar.xz";
- };
- };
- kde-l10n-id = {
- version = "16.04.1";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.1/src/kde-l10n/kde-l10n-id-16.04.1.tar.xz";
- sha256 = "17dncrhwxp8glxcgphwfaqhnr8a8s9ad6g6gw6kd3pbd9a4jpi2v";
- name = "kde-l10n-id-16.04.1.tar.xz";
- };
- };
- kde-l10n-is = {
- version = "16.04.1";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.1/src/kde-l10n/kde-l10n-is-16.04.1.tar.xz";
- sha256 = "0xif4igmrcrngy0r1pbvhwhbj7pax2v7rzrh29j4rhnx3ilsk1gv";
- name = "kde-l10n-is-16.04.1.tar.xz";
- };
- };
- kde-l10n-it = {
- version = "16.04.1";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.1/src/kde-l10n/kde-l10n-it-16.04.1.tar.xz";
- sha256 = "0frylngivi26x9l9db010knmqpb1w9qixg08w7hkbqwrhic1asif";
- name = "kde-l10n-it-16.04.1.tar.xz";
- };
- };
- kde-l10n-ja = {
- version = "16.04.1";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.1/src/kde-l10n/kde-l10n-ja-16.04.1.tar.xz";
- sha256 = "1hgfismzp69br4g0kdjmb70v6a99yjnv5y2r25d2yfkik0layglf";
- name = "kde-l10n-ja-16.04.1.tar.xz";
- };
- };
- kde-l10n-kk = {
- version = "16.04.1";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.1/src/kde-l10n/kde-l10n-kk-16.04.1.tar.xz";
- sha256 = "0iqf8sad1fcs8vffvk0h8ch5qs52djfy1lgzzqlhp2n24rmgh478";
- name = "kde-l10n-kk-16.04.1.tar.xz";
- };
- };
- kde-l10n-km = {
- version = "16.04.1";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.1/src/kde-l10n/kde-l10n-km-16.04.1.tar.xz";
- sha256 = "0c00k11nqsrvw0sy7n2zc0jdrjxd43ajbqpam7153cs00k2ff1im";
- name = "kde-l10n-km-16.04.1.tar.xz";
- };
- };
- kde-l10n-ko = {
- version = "16.04.1";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.1/src/kde-l10n/kde-l10n-ko-16.04.1.tar.xz";
- sha256 = "0z99i1426fd4vxr64m4lssbrpp6gxdqbh7107vbpcscvn5zzjika";
- name = "kde-l10n-ko-16.04.1.tar.xz";
- };
- };
- kde-l10n-lt = {
- version = "16.04.1";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.1/src/kde-l10n/kde-l10n-lt-16.04.1.tar.xz";
- sha256 = "1qkx6ca7i5d4qlp91j0sspd89jhxw2q468yf4pvkmlv5ry4ahfnd";
- name = "kde-l10n-lt-16.04.1.tar.xz";
- };
- };
- kde-l10n-lv = {
- version = "16.04.1";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.1/src/kde-l10n/kde-l10n-lv-16.04.1.tar.xz";
- sha256 = "068ka9agb4iwayrm1j4rbs83zznx3cil2ja47id20hwf2diqcjjx";
- name = "kde-l10n-lv-16.04.1.tar.xz";
- };
- };
- kde-l10n-mr = {
- version = "16.04.1";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.1/src/kde-l10n/kde-l10n-mr-16.04.1.tar.xz";
- sha256 = "0vh6pawbpmnfc7kvrqi9rm4b16zndfwvsy8xny1jjj443i58fyfh";
- name = "kde-l10n-mr-16.04.1.tar.xz";
- };
- };
- kde-l10n-nb = {
- version = "16.04.1";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.1/src/kde-l10n/kde-l10n-nb-16.04.1.tar.xz";
- sha256 = "0xn35j38fcnb6q1p6wimvr96s3rf4fs8s3jw92qcqa7n7zy866k0";
- name = "kde-l10n-nb-16.04.1.tar.xz";
- };
- };
- kde-l10n-nds = {
- version = "16.04.1";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.1/src/kde-l10n/kde-l10n-nds-16.04.1.tar.xz";
- sha256 = "0a3wsarls6g12aa2av444rkg7r8x78j7zdy9q46qh3rvsp3habh9";
- name = "kde-l10n-nds-16.04.1.tar.xz";
- };
- };
- kde-l10n-nl = {
- version = "16.04.1";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.1/src/kde-l10n/kde-l10n-nl-16.04.1.tar.xz";
- sha256 = "161y9417bynvhl6rsl6x1ncrwcgdxrzgivlf9gs9q7bii81ywcli";
- name = "kde-l10n-nl-16.04.1.tar.xz";
- };
- };
- kde-l10n-nn = {
- version = "16.04.1";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.1/src/kde-l10n/kde-l10n-nn-16.04.1.tar.xz";
- sha256 = "11kh5ld024b7ls1jgm26r7jwacbgddn78cgfg6s5rn8m1v71z3j0";
- name = "kde-l10n-nn-16.04.1.tar.xz";
- };
- };
- kde-l10n-pa = {
- version = "16.04.1";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.1/src/kde-l10n/kde-l10n-pa-16.04.1.tar.xz";
- sha256 = "052rxwah1q8zpz1ga8lw46hzmj311bqwghrlsy01qx1w1gf0b374";
- name = "kde-l10n-pa-16.04.1.tar.xz";
- };
- };
- kde-l10n-pl = {
- version = "16.04.1";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.1/src/kde-l10n/kde-l10n-pl-16.04.1.tar.xz";
- sha256 = "1j5claq1dwss2ffmdgxzsf7lnswrkvb6nzzwzs8ffa4kfl35jwks";
- name = "kde-l10n-pl-16.04.1.tar.xz";
- };
- };
- kde-l10n-pt = {
- version = "16.04.1";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.1/src/kde-l10n/kde-l10n-pt-16.04.1.tar.xz";
- sha256 = "0qjc04kkj3lp5ds0d2p1g6hsq09b4wsf2ppks0kcrv5clgj5vyg5";
- name = "kde-l10n-pt-16.04.1.tar.xz";
- };
- };
- kde-l10n-pt_BR = {
- version = "pt_BR-16.04.1";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.1/src/kde-l10n/kde-l10n-pt_BR-16.04.1.tar.xz";
- sha256 = "1jp0srhqj2yziasbibij6ks11hgi994cvpc9yyn8dadjmpv091r7";
- name = "kde-l10n-pt_BR-16.04.1.tar.xz";
- };
- };
- kde-l10n-ro = {
- version = "16.04.1";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.1/src/kde-l10n/kde-l10n-ro-16.04.1.tar.xz";
- sha256 = "09yixhqh41591kri0c6j79ikn2flcs1hvm0lcil3jfkhsas0j9mg";
- name = "kde-l10n-ro-16.04.1.tar.xz";
- };
- };
- kde-l10n-ru = {
- version = "16.04.1";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.1/src/kde-l10n/kde-l10n-ru-16.04.1.tar.xz";
- sha256 = "1x3rc8hcz8bhfyir02rq92wll0qx4rb5rgjhqwfshrq5x1qmx8g0";
- name = "kde-l10n-ru-16.04.1.tar.xz";
- };
- };
- kde-l10n-sk = {
- version = "16.04.1";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.1/src/kde-l10n/kde-l10n-sk-16.04.1.tar.xz";
- sha256 = "0qcylh5zj3258pfi0gvxsrvycc1f1b521nn00r664xhlm8akgs5g";
- name = "kde-l10n-sk-16.04.1.tar.xz";
- };
- };
- kde-l10n-sl = {
- version = "16.04.1";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.1/src/kde-l10n/kde-l10n-sl-16.04.1.tar.xz";
- sha256 = "0m0r4m8anxpmkn76rq3xkxk99xla978qd1106gi5rpadsk6id2ql";
- name = "kde-l10n-sl-16.04.1.tar.xz";
- };
- };
- kde-l10n-sr = {
- version = "16.04.1";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.1/src/kde-l10n/kde-l10n-sr-16.04.1.tar.xz";
- sha256 = "0k5s1hzdzq7k0fjmslk63bkhz87qj0dkk0i82yyfizinshyb8wiw";
- name = "kde-l10n-sr-16.04.1.tar.xz";
- };
- };
- kde-l10n-sv = {
- version = "16.04.1";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.1/src/kde-l10n/kde-l10n-sv-16.04.1.tar.xz";
- sha256 = "0i0p610a1vg6l2qh15abbvr1dgiadff0yf6j0xa51iljvjijl44i";
- name = "kde-l10n-sv-16.04.1.tar.xz";
- };
- };
- kde-l10n-tr = {
- version = "16.04.1";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.1/src/kde-l10n/kde-l10n-tr-16.04.1.tar.xz";
- sha256 = "1py52clbklvkrrydm5jc4sdcf9xqwnfw3b0cn3dj34qs2zfi4d93";
- name = "kde-l10n-tr-16.04.1.tar.xz";
- };
- };
- kde-l10n-ug = {
- version = "16.04.1";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.1/src/kde-l10n/kde-l10n-ug-16.04.1.tar.xz";
- sha256 = "1k57q3zww146sh5rbab48dj4lpkipld2xl2zicspammq21bjy1yy";
- name = "kde-l10n-ug-16.04.1.tar.xz";
- };
- };
- kde-l10n-uk = {
- version = "16.04.1";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.1/src/kde-l10n/kde-l10n-uk-16.04.1.tar.xz";
- sha256 = "1y6n97287vs2dhavdql50i8nby766b9ragrxbdlxdfmz2m7b0azp";
- name = "kde-l10n-uk-16.04.1.tar.xz";
- };
- };
- kde-l10n-wa = {
- version = "16.04.1";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.1/src/kde-l10n/kde-l10n-wa-16.04.1.tar.xz";
- sha256 = "097jnd3qrs7p1bym1b2h5672pfm39y4wk5dga18l9gf8vkh6vxx4";
- name = "kde-l10n-wa-16.04.1.tar.xz";
- };
- };
- kde-l10n-zh_CN = {
- version = "zh_CN-16.04.1";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.1/src/kde-l10n/kde-l10n-zh_CN-16.04.1.tar.xz";
- sha256 = "17askly6wn8wm9piskhvr5q7q9cg30bbnn0r4n56rbfpzhjhwwdj";
- name = "kde-l10n-zh_CN-16.04.1.tar.xz";
- };
- };
- kde-l10n-zh_TW = {
- version = "zh_TW-16.04.1";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.1/src/kde-l10n/kde-l10n-zh_TW-16.04.1.tar.xz";
- sha256 = "11cqq7nba322mgqplll4l7rkpmhxj8n1aswhdib10zifqm9ni121";
- name = "kde-l10n-zh_TW-16.04.1.tar.xz";
- };
- };
- kdelibs = {
- version = "4.14.20";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.1/src/kdelibs-4.14.20.tar.xz";
- sha256 = "1d1wijg8nn5jvprc48pfk9h4i0a39xwidn1g1sq3smk3a0y9nzmp";
- name = "kdelibs-4.14.20.tar.xz";
- };
- };
- kdenetwork-filesharing = {
- version = "16.04.1";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.1/src/kdenetwork-filesharing-16.04.1.tar.xz";
- sha256 = "17m9bl01xdxsfhchw1fzmxxnc08pj3062cnzri1d2alg9iwngn63";
- name = "kdenetwork-filesharing-16.04.1.tar.xz";
- };
- };
- kdenetwork-strigi-analyzers = {
- version = "16.04.1";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.1/src/kdenetwork-strigi-analyzers-16.04.1.tar.xz";
- sha256 = "0vy3dvrzwzf60smjsp85jyi36j3lkgni2qv5vlpn611bk59wy0kl";
- name = "kdenetwork-strigi-analyzers-16.04.1.tar.xz";
- };
- };
- kdenlive = {
- version = "16.04.1";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.1/src/kdenlive-16.04.1.tar.xz";
- sha256 = "1b1sr4pvvcpfp4lgg3y34gnw5ljf4d12np4r7mp7ybzh6nvk3pbj";
- name = "kdenlive-16.04.1.tar.xz";
- };
- };
- kdepim = {
- version = "16.04.1";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.1/src/kdepim-16.04.1.tar.xz";
- sha256 = "15p12288yksmr1i3779bz20v499yyqb3srpadbk7nrkywnj9py52";
- name = "kdepim-16.04.1.tar.xz";
- };
- };
- kdepim-addons = {
- version = "16.04.1";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.1/src/kdepim-addons-16.04.1.tar.xz";
- sha256 = "09h7pvhw4hknd62cvqk2n7zggixdzaighdy3v4fp7mfb3gkfkccj";
- name = "kdepim-addons-16.04.1.tar.xz";
- };
- };
- kdepim-apps-libs = {
- version = "16.04.1";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.1/src/kdepim-apps-libs-16.04.1.tar.xz";
- sha256 = "0yf1gr8zq5cjijmpp82ddi7q8f0lcawmz4kqlc7dri0rjc4y8x3w";
- name = "kdepim-apps-libs-16.04.1.tar.xz";
- };
- };
- kdepimlibs = {
- version = "16.04.1";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.1/src/kdepimlibs-16.04.1.tar.xz";
- sha256 = "0ych4xkzx6d1kb6fw3br82h4a3hv2anh0qfd2aawm0fzs9m52afp";
- name = "kdepimlibs-16.04.1.tar.xz";
- };
- };
- kdepim-runtime = {
- version = "16.04.1";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.1/src/kdepim-runtime-16.04.1.tar.xz";
- sha256 = "1l4iqhyvvcz3f8zy5gvv5gd6ir39iini2b8zczw70j1frdqiah9p";
- name = "kdepim-runtime-16.04.1.tar.xz";
- };
- };
- kde-runtime = {
- version = "16.04.1";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.1/src/kde-runtime-16.04.1.tar.xz";
- sha256 = "1197w24v37ghhmh36n2g2lzs7k9nvp9y13098c82dbck58xyja1m";
- name = "kde-runtime-16.04.1.tar.xz";
- };
- };
- kdesdk-kioslaves = {
- version = "16.04.1";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.1/src/kdesdk-kioslaves-16.04.1.tar.xz";
- sha256 = "11dvh0rk20qx0ckfb1aw2s01h41a3zwgi1n9wsc09qzdyix5f422";
- name = "kdesdk-kioslaves-16.04.1.tar.xz";
- };
- };
- kdesdk-strigi-analyzers = {
- version = "16.04.1";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.1/src/kdesdk-strigi-analyzers-16.04.1.tar.xz";
- sha256 = "1vylfy4nsavfxxf36yfmlad02igdqix2jns24fc0nd3z8r8la4k3";
- name = "kdesdk-strigi-analyzers-16.04.1.tar.xz";
- };
- };
- kdesdk-thumbnailers = {
- version = "16.04.1";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.1/src/kdesdk-thumbnailers-16.04.1.tar.xz";
- sha256 = "1r6c2almxa92917vi3pdzcqfb93gw4l16k4xbasn10qmn3wmyrvh";
- name = "kdesdk-thumbnailers-16.04.1.tar.xz";
- };
- };
- kdewebdev = {
- version = "16.04.1";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.1/src/kdewebdev-16.04.1.tar.xz";
- sha256 = "12jjhbifigvq8r6bn4940wmc50kfbn3v2wzvi2h2nrfpvkq7j4kf";
- name = "kdewebdev-16.04.1.tar.xz";
- };
- };
- kdf = {
- version = "16.04.1";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.1/src/kdf-16.04.1.tar.xz";
- sha256 = "0f8vqsn5cjg6hf2djhpdwm7prz36gkr1qlk1s15fnnk850dyq610";
- name = "kdf-16.04.1.tar.xz";
- };
- };
- kdgantt2 = {
- version = "16.04.1";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.1/src/kdgantt2-16.04.1.tar.xz";
- sha256 = "0xfgdrycldijyhg9q400s6ajzm3apbyam3g5n2fivsaa6s68hgdh";
- name = "kdgantt2-16.04.1.tar.xz";
- };
- };
- kdiamond = {
- version = "16.04.1";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.1/src/kdiamond-16.04.1.tar.xz";
- sha256 = "1yxy2412xl5gq59s1kpd213vsrhbf20ci528qvz6y9yz3b3safxq";
- name = "kdiamond-16.04.1.tar.xz";
- };
- };
- kfloppy = {
- version = "16.04.1";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.1/src/kfloppy-16.04.1.tar.xz";
- sha256 = "1pgr3kng88cprkp4prhg351k6pnbzqrpw4ihjfcdfa5mqirq64im";
- name = "kfloppy-16.04.1.tar.xz";
- };
- };
- kfourinline = {
- version = "16.04.1";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.1/src/kfourinline-16.04.1.tar.xz";
- sha256 = "0712fcg20jm1dq2slrk3nlgz3rqaw22fzvv2vzk4b763b6ha5xh0";
- name = "kfourinline-16.04.1.tar.xz";
- };
- };
- kgeography = {
- version = "16.04.1";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.1/src/kgeography-16.04.1.tar.xz";
- sha256 = "1cf6jaw25d1z1k7abm268qn86cvwlzvx7m7xkg8a1ipynr0zhgzi";
- name = "kgeography-16.04.1.tar.xz";
- };
- };
- kget = {
- version = "16.04.1";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.1/src/kget-16.04.1.tar.xz";
- sha256 = "1h0fc3w9s8lvcij7agin6gpbgq4i825b8jw9lvra6r4hpmsg4s8g";
- name = "kget-16.04.1.tar.xz";
- };
- };
- kgoldrunner = {
- version = "16.04.1";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.1/src/kgoldrunner-16.04.1.tar.xz";
- sha256 = "18vbyjxli5r2c9lgpvr92aqqprmybk197nff7wd5bk9qaxf0zxgr";
- name = "kgoldrunner-16.04.1.tar.xz";
- };
- };
- kgpg = {
- version = "16.04.1";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.1/src/kgpg-16.04.1.tar.xz";
- sha256 = "0w8ac7352vy2p2n0aribrc93la5hcmcvr4m53x13q29di7czf5qp";
- name = "kgpg-16.04.1.tar.xz";
- };
- };
- khangman = {
- version = "16.04.1";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.1/src/khangman-16.04.1.tar.xz";
- sha256 = "08hwiprzr12i7dlrza5rfbgpfzx8rpbx62rl6w09fcmr5sv1mbmh";
- name = "khangman-16.04.1.tar.xz";
- };
- };
- khelpcenter = {
- version = "16.04.1";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.1/src/khelpcenter-16.04.1.tar.xz";
- sha256 = "0h1fg09y95v3q8fx6z3bnjcx99vwc706pm15qkbn80wcyif3hv5n";
- name = "khelpcenter-16.04.1.tar.xz";
- };
- };
- kholidays = {
- version = "16.04.1";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.1/src/kholidays-16.04.1.tar.xz";
- sha256 = "0x7plfjmaa6ca6w35ibrparwrz3q5sydi0ci7cfsra2cizcyh5l8";
- name = "kholidays-16.04.1.tar.xz";
- };
- };
- kidentitymanagement = {
- version = "16.04.1";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.1/src/kidentitymanagement-16.04.1.tar.xz";
- sha256 = "1dbchsr6j0ll7b4mvbv5yw1jyzvs9y68gaylybsqfzdzj9yiq3np";
- name = "kidentitymanagement-16.04.1.tar.xz";
- };
- };
- kig = {
- version = "16.04.1";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.1/src/kig-16.04.1.tar.xz";
- sha256 = "1jwd66accr4xi771chv8a0lm6g6mrcksad3c28b8l0sv39l1jr3n";
- name = "kig-16.04.1.tar.xz";
- };
- };
- kigo = {
- version = "16.04.1";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.1/src/kigo-16.04.1.tar.xz";
- sha256 = "0660qd9h2ifmy13xccy7najna6zag2rziw7xf91hrgmkszzyn8l1";
- name = "kigo-16.04.1.tar.xz";
- };
- };
- killbots = {
- version = "16.04.1";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.1/src/killbots-16.04.1.tar.xz";
- sha256 = "1gdbk2403jvn2grx42vixlf3bj50a556inicg06qkgg3cf17xypr";
- name = "killbots-16.04.1.tar.xz";
- };
- };
- kimap = {
- version = "16.04.1";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.1/src/kimap-16.04.1.tar.xz";
- sha256 = "1x4s88dk62sdnlidgk3vb706ppn0acfc4iiis4srvjn1sr0xl5yb";
- name = "kimap-16.04.1.tar.xz";
- };
- };
- kio-extras = {
- version = "16.04.1";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.1/src/kio-extras-16.04.1.tar.xz";
- sha256 = "1187p0jzwhr7lixlswjjjlf367rp04pdzjyw7qw1brwj60jqz09m";
- name = "kio-extras-16.04.1.tar.xz";
- };
- };
- kiriki = {
- version = "16.04.1";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.1/src/kiriki-16.04.1.tar.xz";
- sha256 = "028r7hxqyfd029z4cbx3vdzrn9d0s8d06f4p5clx97vr2lrii26v";
- name = "kiriki-16.04.1.tar.xz";
- };
- };
- kiten = {
- version = "16.04.1";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.1/src/kiten-16.04.1.tar.xz";
- sha256 = "18c41dxn2sx64xih37n5v6vjmmw0kwv26na9cd6y5jd70yczcjzj";
- name = "kiten-16.04.1.tar.xz";
- };
- };
- kjumpingcube = {
- version = "16.04.1";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.1/src/kjumpingcube-16.04.1.tar.xz";
- sha256 = "001nvs1cppppsgr6x8vd16fzkgi6axac4k42xw7rpibcbwxvws27";
- name = "kjumpingcube-16.04.1.tar.xz";
- };
- };
- kldap = {
- version = "16.04.1";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.1/src/kldap-16.04.1.tar.xz";
- sha256 = "0r150fg9zhl2gkl9w5dlxlzz3lrg1an690if0l1rpl2kzhrpdpyp";
- name = "kldap-16.04.1.tar.xz";
- };
- };
- kleopatra = {
- version = "16.04.1";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.1/src/kleopatra-16.04.1.tar.xz";
- sha256 = "0p13ff91q6033v16rh114viqhcl383s9fzdxi69wk657kqsn5fsi";
- name = "kleopatra-16.04.1.tar.xz";
- };
- };
- klettres = {
- version = "16.04.1";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.1/src/klettres-16.04.1.tar.xz";
- sha256 = "0mqplal91q2k9jkr5ksn9lmwncdi4rvrsz1sy3lfpjrwmm74rp24";
- name = "klettres-16.04.1.tar.xz";
- };
- };
- klickety = {
- version = "16.04.1";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.1/src/klickety-16.04.1.tar.xz";
- sha256 = "1ykrsqwvyw73s6hnkn2k0xw8gs9v7znhzp0fykqcdprix2wb7qzm";
- name = "klickety-16.04.1.tar.xz";
- };
- };
- klines = {
- version = "16.04.1";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.1/src/klines-16.04.1.tar.xz";
- sha256 = "07dmfnfpp8bg907kyj3jidgyicxgsbs8jmiximdky1n8hmqa6sm3";
- name = "klines-16.04.1.tar.xz";
- };
- };
- kmag = {
- version = "16.04.1";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.1/src/kmag-16.04.1.tar.xz";
- sha256 = "0a89mhr048p7xpl8ah9p236yxx1k1jnbw8ybcgjfw6n0s7xzaf59";
- name = "kmag-16.04.1.tar.xz";
- };
- };
- kmahjongg = {
- version = "16.04.1";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.1/src/kmahjongg-16.04.1.tar.xz";
- sha256 = "10z6rfdhnv19x3sqspgz2wz7dr6yd000vlkg6wr0hsy6kqg7si8b";
- name = "kmahjongg-16.04.1.tar.xz";
- };
- };
- kmailtransport = {
- version = "16.04.1";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.1/src/kmailtransport-16.04.1.tar.xz";
- sha256 = "0h57s0wxc0xfym60i69y6lbh7cchf4clpar9f1b9x461vfcnd432";
- name = "kmailtransport-16.04.1.tar.xz";
- };
- };
- kmbox = {
- version = "16.04.1";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.1/src/kmbox-16.04.1.tar.xz";
- sha256 = "1sm5k1qsn2maa08hyxidrcapfzqwrs5i63wwlpnj8xbgfy61nr5p";
- name = "kmbox-16.04.1.tar.xz";
- };
- };
- kmime = {
- version = "16.04.1";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.1/src/kmime-16.04.1.tar.xz";
- sha256 = "01r267bf6ps5x8q1ia3jv2zi07dbcv120nq9pq3wqixk64gr7gh5";
- name = "kmime-16.04.1.tar.xz";
- };
- };
- kmines = {
- version = "16.04.1";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.1/src/kmines-16.04.1.tar.xz";
- sha256 = "12mfsrx32g46kg3s98xali2lhq1gcydmyn7j0ldgi9ksj4zhvc9p";
- name = "kmines-16.04.1.tar.xz";
- };
- };
- kmix = {
- version = "16.04.1";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.1/src/kmix-16.04.1.tar.xz";
- sha256 = "1k51s1r16zk5qgzyg6y4z24qlabgnnf6s4a5rc4pjwm734yh28g6";
- name = "kmix-16.04.1.tar.xz";
- };
- };
- kmousetool = {
- version = "16.04.1";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.1/src/kmousetool-16.04.1.tar.xz";
- sha256 = "0zn3hxy5p7fq6v617pbxcbbi3zvk3k07dx98d5pjlgzns7jjsmmf";
- name = "kmousetool-16.04.1.tar.xz";
- };
- };
- kmouth = {
- version = "16.04.1";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.1/src/kmouth-16.04.1.tar.xz";
- sha256 = "1pgyc3x2gixlw2zlh293mpisb2asblbamsbv8565pbf0rz0p84xg";
- name = "kmouth-16.04.1.tar.xz";
- };
- };
- kmplot = {
- version = "16.04.1";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.1/src/kmplot-16.04.1.tar.xz";
- sha256 = "1a4i0lj6k8fw8s34vnbiphd1xrfjlk12dbv359gnxjdqalvir9ib";
- name = "kmplot-16.04.1.tar.xz";
- };
- };
- knavalbattle = {
- version = "16.04.1";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.1/src/knavalbattle-16.04.1.tar.xz";
- sha256 = "1l7x76b0jn1vssxaxvskp62h33sk2b35n60zih36lscgpv0ldq8w";
- name = "knavalbattle-16.04.1.tar.xz";
- };
- };
- knetwalk = {
- version = "16.04.1";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.1/src/knetwalk-16.04.1.tar.xz";
- sha256 = "1rkarsvmmfi0cax7cy71g0mzcwhjcfpiq8xxdnmsn7gwdwf9mlyd";
- name = "knetwalk-16.04.1.tar.xz";
- };
- };
- kolf = {
- version = "16.04.1";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.1/src/kolf-16.04.1.tar.xz";
- sha256 = "0azkm74br2xpxg3mvnmi61d5a438igw98a5vk0jycc1y0xfbsfzf";
- name = "kolf-16.04.1.tar.xz";
- };
- };
- kollision = {
- version = "16.04.1";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.1/src/kollision-16.04.1.tar.xz";
- sha256 = "0kb5ykaayh26f2nwghdwc5vxnr2ik5b4s9k5x0sbz9p933l1wy9z";
- name = "kollision-16.04.1.tar.xz";
- };
- };
- kolourpaint = {
- version = "16.04.1";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.1/src/kolourpaint-16.04.1.tar.xz";
- sha256 = "1d07yjkxx82czpg57bnzkn5887lhn6rilgyy08zn1739avk589n7";
- name = "kolourpaint-16.04.1.tar.xz";
- };
- };
- kompare = {
- version = "16.04.1";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.1/src/kompare-16.04.1.tar.xz";
- sha256 = "1cysz9qg93jddb20hxgi29c6rm6x3nmi70ji32r8mzpv3r27217n";
- name = "kompare-16.04.1.tar.xz";
- };
- };
- konquest = {
- version = "16.04.1";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.1/src/konquest-16.04.1.tar.xz";
- sha256 = "1w8axkl0gsvbs7xhmy188xl1h2xkd80w0gdvskykdmcri4mrhldl";
- name = "konquest-16.04.1.tar.xz";
- };
- };
- konsole = {
- version = "16.04.1";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.1/src/konsole-16.04.1.tar.xz";
- sha256 = "15h38zydnlkchsdjhax15gv6507nqqgql5ykw81fqp2byibxl25s";
- name = "konsole-16.04.1.tar.xz";
- };
- };
- kontactinterface = {
- version = "16.04.1";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.1/src/kontactinterface-16.04.1.tar.xz";
- sha256 = "0qvkrpx9p3hmwqja3iv6n80j1j0b46jvbimfgjs183xlwhqy90l2";
- name = "kontactinterface-16.04.1.tar.xz";
- };
- };
- kopete = {
- version = "16.04.1";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.1/src/kopete-16.04.1.tar.xz";
- sha256 = "1i406hr0r1lfv9awy0fvlg4kh8lljc14hrg9da83nnf07njxb0gh";
- name = "kopete-16.04.1.tar.xz";
- };
- };
- kpat = {
- version = "16.04.1";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.1/src/kpat-16.04.1.tar.xz";
- sha256 = "0axm2390bjj57mkykaw196gycjvcx303l0aq3capv971ailx8mxs";
- name = "kpat-16.04.1.tar.xz";
- };
- };
- kpimtextedit = {
- version = "16.04.1";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.1/src/kpimtextedit-16.04.1.tar.xz";
- sha256 = "0bsviwk4nfy0b632xz29mdl5x9p9c3774l0ghi292rr6891ysz56";
- name = "kpimtextedit-16.04.1.tar.xz";
- };
- };
- kppp = {
- version = "16.04.1";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.1/src/kppp-16.04.1.tar.xz";
- sha256 = "1j86kcxx5wrqv72wqbcn50gysp5ddh2i0b6dbaw2qydhv56h1c50";
- name = "kppp-16.04.1.tar.xz";
- };
- };
- kqtquickcharts = {
- version = "16.04.1";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.1/src/kqtquickcharts-16.04.1.tar.xz";
- sha256 = "0yqw8l6l7k2a50djm64lrcvl8rwkkvjiaa51mwcvj34cqfg8i55k";
- name = "kqtquickcharts-16.04.1.tar.xz";
- };
- };
- krdc = {
- version = "16.04.1";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.1/src/krdc-16.04.1.tar.xz";
- sha256 = "1zij88q4x48kpww22g4p9dbz9f78s2s50m0bpxcrz5aqdvsijgfq";
- name = "krdc-16.04.1.tar.xz";
- };
- };
- kremotecontrol = {
- version = "16.04.1";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.1/src/kremotecontrol-16.04.1.tar.xz";
- sha256 = "1xxfggy6nx3ncq5h72x1mlnyw7hhi7m15kwfnsg2nhzc86mxg5k5";
- name = "kremotecontrol-16.04.1.tar.xz";
- };
- };
- kreversi = {
- version = "16.04.1";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.1/src/kreversi-16.04.1.tar.xz";
- sha256 = "091m8p6z3xw86pn71zz691s4g11jx83ja06bdcpyjwmmwdz4asmb";
- name = "kreversi-16.04.1.tar.xz";
- };
- };
- krfb = {
- version = "16.04.1";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.1/src/krfb-16.04.1.tar.xz";
- sha256 = "16xdzczf9jg22crbymsmij4gjzgbijx9sk7vblprhaqls4gnh55q";
- name = "krfb-16.04.1.tar.xz";
- };
- };
- kross-interpreters = {
- version = "16.04.1";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.1/src/kross-interpreters-16.04.1.tar.xz";
- sha256 = "1hz31lkdmkilc2rbfffjx57dwfscr5f4h406346a9qryjk4n466s";
- name = "kross-interpreters-16.04.1.tar.xz";
- };
- };
- kruler = {
- version = "16.04.1";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.1/src/kruler-16.04.1.tar.xz";
- sha256 = "1xjc1k82xvfk3ad4937v663dhn6b4d3r8gp2aqgzbjnms88sqxsm";
- name = "kruler-16.04.1.tar.xz";
- };
- };
- ksaneplugin = {
- version = "16.04.1";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.1/src/ksaneplugin-16.04.1.tar.xz";
- sha256 = "162s931ygfzdiq4l0zcfz75mhm5r4j1mz0730jchfzcpahan3cgl";
- name = "ksaneplugin-16.04.1.tar.xz";
- };
- };
- kscd = {
- version = "16.04.1";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.1/src/kscd-16.04.1.tar.xz";
- sha256 = "1nb5y4q17vg8zy7kzhadhbd0pp1n3z1kgix898is2fhain2har85";
- name = "kscd-16.04.1.tar.xz";
- };
- };
- kshisen = {
- version = "16.04.1";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.1/src/kshisen-16.04.1.tar.xz";
- sha256 = "1cdmawq2z2avl4fkwc9pb7s7m4pqcrm8zhhwkp2gqz8b0vsgz40f";
- name = "kshisen-16.04.1.tar.xz";
- };
- };
- ksirk = {
- version = "16.04.1";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.1/src/ksirk-16.04.1.tar.xz";
- sha256 = "1jmrbmdbpy0cpakzyh3nqaf8alv05v0i70m1a2b5yw7iiy1jjh0l";
- name = "ksirk-16.04.1.tar.xz";
- };
- };
- ksnakeduel = {
- version = "16.04.1";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.1/src/ksnakeduel-16.04.1.tar.xz";
- sha256 = "1l01rwg8lis624jncj07x9cdvp7g6sb4v75yp3bz8a12s14ayl6h";
- name = "ksnakeduel-16.04.1.tar.xz";
- };
- };
- kspaceduel = {
- version = "16.04.1";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.1/src/kspaceduel-16.04.1.tar.xz";
- sha256 = "0bzaq2alfkclk5496g9zf53lih52hray14nfnif49acnccs7g1a3";
- name = "kspaceduel-16.04.1.tar.xz";
- };
- };
- ksquares = {
- version = "16.04.1";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.1/src/ksquares-16.04.1.tar.xz";
- sha256 = "1law2s9wdhpzp1zd1q476afscbaxcdi023n0q9j73w1l8jais2p9";
- name = "ksquares-16.04.1.tar.xz";
- };
- };
- kstars = {
- version = "16.04.1";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.1/src/kstars-16.04.1.tar.xz";
- sha256 = "0sss1d6k89wsjqnywmklnb3ywyws50d1vfz1lfcsmhcgc37w6cm7";
- name = "kstars-16.04.1.tar.xz";
- };
- };
- ksudoku = {
- version = "16.04.1";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.1/src/ksudoku-16.04.1.tar.xz";
- sha256 = "0bb7hv8m68qhjh7z3g7qkcnyn41wacby6kaq0qhrr4x37dx96r3i";
- name = "ksudoku-16.04.1.tar.xz";
- };
- };
- ksystemlog = {
- version = "16.04.1";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.1/src/ksystemlog-16.04.1.tar.xz";
- sha256 = "0ws9vln9gz8r3m1pk1x3fk6b05h1fx070d5ln3g9vxwbkfh3g73d";
- name = "ksystemlog-16.04.1.tar.xz";
- };
- };
- kteatime = {
- version = "16.04.1";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.1/src/kteatime-16.04.1.tar.xz";
- sha256 = "0ap8nc265kylb7idgdbymln6pz4xw3pmgqp1dpqix6pskz64wn7p";
- name = "kteatime-16.04.1.tar.xz";
- };
- };
- ktimer = {
- version = "16.04.1";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.1/src/ktimer-16.04.1.tar.xz";
- sha256 = "1kkga4mcgn2zzsardcvk0r4y75ip1kbdiyp9qhpsdsf1r68m7h6i";
- name = "ktimer-16.04.1.tar.xz";
- };
- };
- ktnef = {
- version = "16.04.1";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.1/src/ktnef-16.04.1.tar.xz";
- sha256 = "1f0m75n4wxqyjiwr13znk4yhr6852mfns5n5v40yxnjhlvi1zq88";
- name = "ktnef-16.04.1.tar.xz";
- };
- };
- ktouch = {
- version = "16.04.1";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.1/src/ktouch-16.04.1.tar.xz";
- sha256 = "1hzri668q3d8q0s8n9362hm53jmrmzbil2am0naa3gkr16nj4rjd";
- name = "ktouch-16.04.1.tar.xz";
- };
- };
- ktp-accounts-kcm = {
- version = "16.04.1";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.1/src/ktp-accounts-kcm-16.04.1.tar.xz";
- sha256 = "0q06lk8agqqgs5hlmyl8pmwdcp95zys2psnzm3s6pvs3lyq9zkkd";
- name = "ktp-accounts-kcm-16.04.1.tar.xz";
- };
- };
- ktp-approver = {
- version = "16.04.1";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.1/src/ktp-approver-16.04.1.tar.xz";
- sha256 = "0wf24dvvxx9cvhihjgfpp78yymnll1bn1zbwi5lg2by75hqzvvi7";
- name = "ktp-approver-16.04.1.tar.xz";
- };
- };
- ktp-auth-handler = {
- version = "16.04.1";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.1/src/ktp-auth-handler-16.04.1.tar.xz";
- sha256 = "1p4jsnvhc6g6r1pdhhbq0b38vhi93v1715naxl5vbdfgk11q72bq";
- name = "ktp-auth-handler-16.04.1.tar.xz";
- };
- };
- ktp-call-ui = {
- version = "16.04.1";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.1/src/ktp-call-ui-16.04.1.tar.xz";
- sha256 = "01bly8lbk1mg86vjqfq8vz9ym36w4hz2gsizqs616prpxyrfgk0s";
- name = "ktp-call-ui-16.04.1.tar.xz";
- };
- };
- ktp-common-internals = {
- version = "16.04.1";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.1/src/ktp-common-internals-16.04.1.tar.xz";
- sha256 = "0jdmsg1vdvkvx9fb10l0qpwrp5i5w64qfx94231kz4gv1xci0zcb";
- name = "ktp-common-internals-16.04.1.tar.xz";
- };
- };
- ktp-contact-list = {
- version = "16.04.1";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.1/src/ktp-contact-list-16.04.1.tar.xz";
- sha256 = "1mjn4if6r7z5smnxac4mr7smh616pd7hm5jmnfgxic9dlvqbxy2x";
- name = "ktp-contact-list-16.04.1.tar.xz";
- };
- };
- ktp-contact-runner = {
- version = "16.04.1";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.1/src/ktp-contact-runner-16.04.1.tar.xz";
- sha256 = "08ch3b7pq17ah1xahvbcb8zcizj81vpbqxv0zwmnd55byx3i3nsz";
- name = "ktp-contact-runner-16.04.1.tar.xz";
- };
- };
- ktp-desktop-applets = {
- version = "16.04.1";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.1/src/ktp-desktop-applets-16.04.1.tar.xz";
- sha256 = "0n0v3q1x33z1ck1rlj5jhbsywvjlv8hr878bkv0ppgyndcjv4hwx";
- name = "ktp-desktop-applets-16.04.1.tar.xz";
- };
- };
- ktp-filetransfer-handler = {
- version = "16.04.1";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.1/src/ktp-filetransfer-handler-16.04.1.tar.xz";
- sha256 = "0d34blakmqp3qc80dpakpsk3xdzncy4q8nfg0jjjw9s5qldw0gjx";
- name = "ktp-filetransfer-handler-16.04.1.tar.xz";
- };
- };
- ktp-kded-module = {
- version = "16.04.1";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.1/src/ktp-kded-module-16.04.1.tar.xz";
- sha256 = "19fcc53bwlgdm3gvyiyzp9hdfk9hps5ng9cdqlx1agdx9ap9sbi8";
- name = "ktp-kded-module-16.04.1.tar.xz";
- };
- };
- ktp-send-file = {
- version = "16.04.1";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.1/src/ktp-send-file-16.04.1.tar.xz";
- sha256 = "0svm1ij82zgnkczhrhkmzpy2w1p2khv8wzkj4584zwfjafy3y8yj";
- name = "ktp-send-file-16.04.1.tar.xz";
- };
- };
- ktp-text-ui = {
- version = "16.04.1";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.1/src/ktp-text-ui-16.04.1.tar.xz";
- sha256 = "1s5kw9yk9m2rj48l5c54m8zsa247hv9ajq9zp2gqrvv3sz7y1bsf";
- name = "ktp-text-ui-16.04.1.tar.xz";
- };
- };
- ktuberling = {
- version = "16.04.1";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.1/src/ktuberling-16.04.1.tar.xz";
- sha256 = "05p3jiy7cykpxrjlvhnz5jc3x1mqbdyq6i2h15h315sd39wra5bx";
- name = "ktuberling-16.04.1.tar.xz";
- };
- };
- kturtle = {
- version = "16.04.1";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.1/src/kturtle-16.04.1.tar.xz";
- sha256 = "0cs7k2jv9s89sbh0ig2zvm31v906jvwjrjfdw223zl105c99xshr";
- name = "kturtle-16.04.1.tar.xz";
- };
- };
- kubrick = {
- version = "16.04.1";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.1/src/kubrick-16.04.1.tar.xz";
- sha256 = "1pxb357bmh4r4g92zxr3x6w65z9lsd34vkvbg7s250q3a7358y4n";
- name = "kubrick-16.04.1.tar.xz";
- };
- };
- kuser = {
- version = "16.04.1";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.1/src/kuser-16.04.1.tar.xz";
- sha256 = "0b0wjsbj4hin3g4dgijxvm99idzl57i65f1k6hq4mjypnd19ccwv";
- name = "kuser-16.04.1.tar.xz";
- };
- };
- kwalletmanager = {
- version = "16.04.1";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.1/src/kwalletmanager-16.04.1.tar.xz";
- sha256 = "1w6y55zk7gs7fp0qz5zgmmh3mz8d6ii5g948pwg18415x4ydbrx1";
- name = "kwalletmanager-16.04.1.tar.xz";
- };
- };
- kwordquiz = {
- version = "16.04.1";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.1/src/kwordquiz-16.04.1.tar.xz";
- sha256 = "0v3snpljvc8zf34jpwbchrqsdajd14k3g4jd3xaz9waa62kbc2m7";
- name = "kwordquiz-16.04.1.tar.xz";
- };
- };
- libgravatar = {
- version = "16.04.1";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.1/src/libgravatar-16.04.1.tar.xz";
- sha256 = "0wqp5p16jn2qnsndill5ccfk8nirx5j4iyhjny0ri19lkdkcz010";
- name = "libgravatar-16.04.1.tar.xz";
- };
- };
- libkcddb = {
- version = "16.04.1";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.1/src/libkcddb-16.04.1.tar.xz";
- sha256 = "1dpmynbb1cyin8f0hd9r1gn432pzj7lck86nbhz38w0w8x2m6b81";
- name = "libkcddb-16.04.1.tar.xz";
- };
- };
- libkcompactdisc = {
- version = "16.04.1";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.1/src/libkcompactdisc-16.04.1.tar.xz";
- sha256 = "15zm5jmybvh8q2sbwx4203yq6lgj6nm9jgqk3yh8ikbh5ml24bfr";
- name = "libkcompactdisc-16.04.1.tar.xz";
- };
- };
- libkdcraw = {
- version = "16.04.1";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.1/src/libkdcraw-16.04.1.tar.xz";
- sha256 = "13agxmqqfz38sz0vmqy2rk7xj4bmcffpn84i9a5s1191l13kj0ks";
- name = "libkdcraw-16.04.1.tar.xz";
- };
- };
- libkdeedu = {
- version = "16.04.1";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.1/src/libkdeedu-16.04.1.tar.xz";
- sha256 = "1i20ib710cn77y8q9aqwlh4rvyfv8r8w03mwnl45jn27c0rmxmrz";
- name = "libkdeedu-16.04.1.tar.xz";
- };
- };
- libkdegames = {
- version = "16.04.1";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.1/src/libkdegames-16.04.1.tar.xz";
- sha256 = "0sx09sm19s8n2imf267sazymwpx1ry68n7ahwj4mczhi3wgvs72w";
- name = "libkdegames-16.04.1.tar.xz";
- };
- };
- libkdepim = {
- version = "16.04.1";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.1/src/libkdepim-16.04.1.tar.xz";
- sha256 = "03wks48jzj0p6vvqbf5nq14ipln6lcahsi88d7q082yckgkgbjqr";
- name = "libkdepim-16.04.1.tar.xz";
- };
- };
- libkeduvocdocument = {
- version = "16.04.1";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.1/src/libkeduvocdocument-16.04.1.tar.xz";
- sha256 = "0gw0m31aa4px8ag2nh1ysm1bqlhr2b6gzlqxgjipgi4hlaw72nzs";
- name = "libkeduvocdocument-16.04.1.tar.xz";
- };
- };
- libkexiv2 = {
- version = "16.04.1";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.1/src/libkexiv2-16.04.1.tar.xz";
- sha256 = "0h0iw9sgmaascv60yzxyap6mrj7jrr2fh1dcbnfvw7162qq2ldyq";
- name = "libkexiv2-16.04.1.tar.xz";
- };
- };
- libkface = {
- version = "16.04.1";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.1/src/libkface-16.04.1.tar.xz";
- sha256 = "16bb1mpls2wxmpr5vkaapj140c2dxk4rl6cijw2gym7sm1njy98n";
- name = "libkface-16.04.1.tar.xz";
- };
- };
- libkgeomap = {
- version = "16.04.1";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.1/src/libkgeomap-16.04.1.tar.xz";
- sha256 = "0m5cg1pdzldxbv62g2vv048g5dfbkhsjj8zsli1l6arcy38anpwv";
- name = "libkgeomap-16.04.1.tar.xz";
- };
- };
- libkipi = {
- version = "16.04.1";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.1/src/libkipi-16.04.1.tar.xz";
- sha256 = "100hrb52ab2b2rgqsbk9d1hz77ch33cn60sy3zc473p8pfgsp1is";
- name = "libkipi-16.04.1.tar.xz";
- };
- };
- libkleo = {
- version = "16.04.1";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.1/src/libkleo-16.04.1.tar.xz";
- sha256 = "1s16vhv8p7ir532q122zfwibjzv08dbhbxvg0xz83hz87lyr27mj";
- name = "libkleo-16.04.1.tar.xz";
- };
- };
- libkmahjongg = {
- version = "16.04.1";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.1/src/libkmahjongg-16.04.1.tar.xz";
- sha256 = "1zrbbfrzbwlgja8n093g797aiws4nc0icp5fsxv6ryfpxxzzawsv";
- name = "libkmahjongg-16.04.1.tar.xz";
- };
- };
- libkomparediff2 = {
- version = "16.04.1";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.1/src/libkomparediff2-16.04.1.tar.xz";
- sha256 = "0zhx3bsklbj3mwj22x8svqza0z4m4wvj0dysj731kjkmg9i75g8m";
- name = "libkomparediff2-16.04.1.tar.xz";
- };
- };
- libksane = {
- version = "16.04.1";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.1/src/libksane-16.04.1.tar.xz";
- sha256 = "16jpq7ip8pjl9vglm1m5c9gpfy4p50fa2d5dmlxlr67fbjs35831";
- name = "libksane-16.04.1.tar.xz";
- };
- };
- libksieve = {
- version = "16.04.1";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.1/src/libksieve-16.04.1.tar.xz";
- sha256 = "0hdm4z30czxzdf19gwva03q3zgc3qapb4fawakcrgdr1z9k24jg6";
- name = "libksieve-16.04.1.tar.xz";
- };
- };
- lokalize = {
- version = "16.04.1";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.1/src/lokalize-16.04.1.tar.xz";
- sha256 = "1h2harrdpx1zdvgw21g9y2q93c9n9g3dansb63j6s8g4kv9skgs0";
- name = "lokalize-16.04.1.tar.xz";
- };
- };
- lskat = {
- version = "16.04.1";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.1/src/lskat-16.04.1.tar.xz";
- sha256 = "1a6n954sy4yq4f289y2ziv649fbcfbyiinx9w3rffa3mi9lxw690";
- name = "lskat-16.04.1.tar.xz";
- };
- };
- mailcommon = {
- version = "16.04.1";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.1/src/mailcommon-16.04.1.tar.xz";
- sha256 = "0n3vzgk3iaqja43aidg08yf1g1k78xf5fp02wrsvndi4spad5hv2";
- name = "mailcommon-16.04.1.tar.xz";
- };
- };
- mailimporter = {
- version = "16.04.1";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.1/src/mailimporter-16.04.1.tar.xz";
- sha256 = "00jgiplwmwdhaq0s4chan21hk6hqkgnfjhvjcn5hv8lsfmdigkkh";
- name = "mailimporter-16.04.1.tar.xz";
- };
- };
- marble = {
- version = "16.04.1";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.1/src/marble-16.04.1.tar.xz";
- sha256 = "185hcl6fg90blmik72pd32pzkfcaxhv42mmlnwbpwbb4wfxajys7";
- name = "marble-16.04.1.tar.xz";
- };
- };
- messagelib = {
- version = "16.04.1";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.1/src/messagelib-16.04.1.tar.xz";
- sha256 = "0flphkm18fbma2sb490lhnk4p01cmc4ri90gqb2ys4mfc22x1yy0";
- name = "messagelib-16.04.1.tar.xz";
- };
- };
- minuet = {
- version = "16.04.1";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.1/src/minuet-16.04.1.tar.xz";
- sha256 = "10s5fqkk98nzd0w22pcwxqqlyy49is72wbhcqsy0hf90j8qyzah5";
- name = "minuet-16.04.1.tar.xz";
- };
- };
- mplayerthumbs = {
- version = "16.04.1";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.1/src/mplayerthumbs-16.04.1.tar.xz";
- sha256 = "1r7iqlb1ik3k21frwn62552fkdxgl29sf44qc9gxi9q254cnw7nq";
- name = "mplayerthumbs-16.04.1.tar.xz";
- };
- };
- okteta = {
- version = "16.04.1";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.1/src/okteta-16.04.1.tar.xz";
- sha256 = "066p6iw5ci909pvklx900lawcyjiazl6ch3y8yrys97x498qn7pl";
- name = "okteta-16.04.1.tar.xz";
- };
- };
- okular = {
- version = "16.04.1";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.1/src/okular-16.04.1.tar.xz";
- sha256 = "11fx4a4bcrl89zi2z2wvfcinmlmq7cfnxga1x35hkk5rc6vyl3vl";
- name = "okular-16.04.1.tar.xz";
- };
- };
- palapeli = {
- version = "16.04.1";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.1/src/palapeli-16.04.1.tar.xz";
- sha256 = "1iixmx4nrjdbkhwd0wl5zv4bgvss9zkcz2a85790q3x0hcd9fshb";
- name = "palapeli-16.04.1.tar.xz";
- };
- };
- parley = {
- version = "16.04.1";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.1/src/parley-16.04.1.tar.xz";
- sha256 = "0ynvbfilfh6rw4fw7ajl4nz4j1n5ip1pcf39r4ql1qghdgz3hr9c";
- name = "parley-16.04.1.tar.xz";
- };
- };
- picmi = {
- version = "16.04.1";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.1/src/picmi-16.04.1.tar.xz";
- sha256 = "18048amjd4l9agnj0d7q4109ik76568065q6dn6p8xbnczvlanqq";
- name = "picmi-16.04.1.tar.xz";
- };
- };
- pimcommon = {
- version = "16.04.1";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.1/src/pimcommon-16.04.1.tar.xz";
- sha256 = "19lxgzy8a9ixljpjbxgj8gp0l88cs0rgvgyhzdw9b6nm8m0lr79a";
- name = "pimcommon-16.04.1.tar.xz";
- };
- };
- poxml = {
- version = "16.04.1";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.1/src/poxml-16.04.1.tar.xz";
- sha256 = "14ar7hr35sgfqk8scdbrmnkdfzns1a8pwldn1pz46yssshm0yx6b";
- name = "poxml-16.04.1.tar.xz";
- };
- };
- print-manager = {
- version = "16.04.1";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.1/src/print-manager-16.04.1.tar.xz";
- sha256 = "0mfafxnvak8svksld0ddrbsrajn7d959dr7arw0j7djj5fbwrind";
- name = "print-manager-16.04.1.tar.xz";
- };
- };
- rocs = {
- version = "16.04.1";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.1/src/rocs-16.04.1.tar.xz";
- sha256 = "0hb8bahr3gfkc41bqnk4dzw91smk4gi97vvlacirdj3wqps3phjk";
- name = "rocs-16.04.1.tar.xz";
- };
- };
- signon-kwallet-extension = {
- version = "16.04.1";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.1/src/signon-kwallet-extension-16.04.1.tar.xz";
- sha256 = "0qzgsifx6zscn8wc06wy2gi7xz0hlnvwcpgac85nf1zz7fngjq7i";
- name = "signon-kwallet-extension-16.04.1.tar.xz";
- };
- };
- spectacle = {
- version = "16.04.1";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.1/src/spectacle-16.04.1.tar.xz";
- sha256 = "1df3hp9swcy00dvfjx34a7z9naz8mpaprxigv87f3jzg9jwbppg6";
- name = "spectacle-16.04.1.tar.xz";
- };
- };
- step = {
- version = "16.04.1";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.1/src/step-16.04.1.tar.xz";
- sha256 = "0nr4maqy067d4jb25h4akljn2vqg33rdxyb619lzr9sksw04ii5k";
- name = "step-16.04.1.tar.xz";
- };
- };
- svgpart = {
- version = "16.04.1";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.1/src/svgpart-16.04.1.tar.xz";
- sha256 = "0kklmb4vq6pnf9i088n14zbzg9iz80arl8igb815zdl2bx7yqjjj";
- name = "svgpart-16.04.1.tar.xz";
- };
- };
- sweeper = {
- version = "16.04.1";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.1/src/sweeper-16.04.1.tar.xz";
- sha256 = "1lhspwgajja6fnd1nm4gnhvyi3ynnx0dicwd8ks81imvkz3kz7yc";
- name = "sweeper-16.04.1.tar.xz";
- };
- };
- syndication = {
- version = "16.04.1";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.1/src/syndication-16.04.1.tar.xz";
- sha256 = "19pqz7q02axr129wcrwr27lkr4qiv542gck4h2rlj21p9amw46kq";
- name = "syndication-16.04.1.tar.xz";
- };
- };
- umbrello = {
- version = "16.04.1";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.1/src/umbrello-16.04.1.tar.xz";
- sha256 = "04ql21kl633nxbhjbv2j9wsi7l8pqpp49x737014mz037a58ppvw";
- name = "umbrello-16.04.1.tar.xz";
- };
- };
- zeroconf-ioslave = {
- version = "16.04.1";
- src = fetchurl {
- url = "${mirror}/stable/applications/16.04.1/src/zeroconf-ioslave-16.04.1.tar.xz";
- sha256 = "0pg7q6lh5i0yhjw9qbralzjxg6f38if57s1lk57bvh0gnmj5zj9b";
- name = "zeroconf-ioslave-16.04.1.tar.xz";
- };
- };
-}
diff --git a/pkgs/desktops/kde-5/applications-16.04/ark.nix b/pkgs/desktops/kde-5/applications/ark/default.nix
similarity index 100%
rename from pkgs/desktops/kde-5/applications-16.04/ark.nix
rename to pkgs/desktops/kde-5/applications/ark/default.nix
diff --git a/pkgs/desktops/kde-5/applications-16.04/baloo-widgets.nix b/pkgs/desktops/kde-5/applications/baloo-widgets.nix
similarity index 100%
rename from pkgs/desktops/kde-5/applications-16.04/baloo-widgets.nix
rename to pkgs/desktops/kde-5/applications/baloo-widgets.nix
diff --git a/pkgs/desktops/kde-5/applications-16.04/default.nix b/pkgs/desktops/kde-5/applications/default.nix
similarity index 69%
rename from pkgs/desktops/kde-5/applications-16.04/default.nix
rename to pkgs/desktops/kde-5/applications/default.nix
index f9d65ac6d87..d3dc48b5282 100644
--- a/pkgs/desktops/kde-5/applications-16.04/default.nix
+++ b/pkgs/desktops/kde-5/applications/default.nix
@@ -1,16 +1,13 @@
-# Maintainer's Notes:
-#
-# Minor updates:
-# 1. Edit ./manifest.sh to point to the updated URL. Upstream sometimes
-# releases updates that include only the changed packages; in this case,
-# multiple URLs can be provided and the results will be merged.
-# 2. Run ./manifest.sh and ./dependencies.sh.
-# 3. Build and enjoy.
-#
-# Major updates:
-# We prefer not to immediately overwrite older versions with major updates, so
-# make a copy of this directory first. After copying, be sure to delete ./tmp
-# if it exists. Then follow the minor update instructions.
+/*
+
+# Updates
+
+1. Update the URL in `maintainers/scripts/generate-kde-applications.sh` and
+ run that script from the top of the Nixpkgs tree.
+2. Check that the new packages build correctly.
+3. Commit the changes and open a pull request.
+
+*/
{ pkgs, debug ? false }:
@@ -18,8 +15,8 @@ let
inherit (pkgs) lib stdenv;
- srcs = import ./srcs.nix { inherit (pkgs) fetchurl; inherit mirror; };
mirror = "mirror://kde";
+ srcs = import ./srcs.nix { inherit (pkgs) fetchurl; inherit mirror; };
packages = self: with self; {
@@ -30,11 +27,13 @@ let
kdelibs = callPackage ./kdelibs { inherit (pkgs) attica phonon; };
- ark = callPackage ./ark.nix {};
+ ark = callPackage ./ark/default.nix {};
baloo-widgets = callPackage ./baloo-widgets.nix {};
dolphin = callPackage ./dolphin.nix {};
dolphin-plugins = callPackage ./dolphin-plugins.nix {};
- ffmpegthumbs = callPackage ./ffmpegthumbs.nix {};
+ ffmpegthumbs = callPackage ./ffmpegthumbs.nix {
+ ffmpeg = pkgs.ffmpeg_2;
+ };
filelight = callPackage ./filelight.nix {};
gpgmepp = callPackage ./gpgmepp.nix {};
gwenview = callPackage ./gwenview.nix {};
@@ -44,11 +43,14 @@ let
kdegraphics-thumbnailers = callPackage ./kdegraphics-thumbnailers.nix {};
kdenetwork-filesharing = callPackage ./kdenetwork-filesharing.nix {};
kgpg = callPackage ./kgpg.nix { inherit (pkgs.kde4) kdepimlibs; };
+ khelpcenter = callPackage ./khelpcenter.nix {};
kio-extras = callPackage ./kio-extras.nix {};
+ kompare = callPackage ./kompare.nix {};
konsole = callPackage ./konsole.nix {};
libkdcraw = callPackage ./libkdcraw.nix {};
libkexiv2 = callPackage ./libkexiv2.nix {};
libkipi = callPackage ./libkipi.nix {};
+ libkomparediff2 = callPackage ./libkomparediff2.nix {};
okular = callPackage ./okular.nix {};
print-manager = callPackage ./print-manager.nix {};
spectacle = callPackage ./spectacle.nix {};
diff --git a/pkgs/desktops/kde-5/applications-16.04/dolphin-plugins.nix b/pkgs/desktops/kde-5/applications/dolphin-plugins.nix
similarity index 100%
rename from pkgs/desktops/kde-5/applications-16.04/dolphin-plugins.nix
rename to pkgs/desktops/kde-5/applications/dolphin-plugins.nix
diff --git a/pkgs/desktops/kde-5/applications-16.04/dolphin.nix b/pkgs/desktops/kde-5/applications/dolphin.nix
similarity index 100%
rename from pkgs/desktops/kde-5/applications-16.04/dolphin.nix
rename to pkgs/desktops/kde-5/applications/dolphin.nix
diff --git a/pkgs/desktops/kde-5/applications-16.04/ffmpegthumbs.nix b/pkgs/desktops/kde-5/applications/ffmpegthumbs.nix
similarity index 100%
rename from pkgs/desktops/kde-5/applications-16.04/ffmpegthumbs.nix
rename to pkgs/desktops/kde-5/applications/ffmpegthumbs.nix
diff --git a/pkgs/desktops/kde-5/applications-16.04/filelight.nix b/pkgs/desktops/kde-5/applications/filelight.nix
similarity index 100%
rename from pkgs/desktops/kde-5/applications-16.04/filelight.nix
rename to pkgs/desktops/kde-5/applications/filelight.nix
diff --git a/pkgs/desktops/kde-5/applications-16.04/gpgmepp.nix b/pkgs/desktops/kde-5/applications/gpgmepp.nix
similarity index 100%
rename from pkgs/desktops/kde-5/applications-16.04/gpgmepp.nix
rename to pkgs/desktops/kde-5/applications/gpgmepp.nix
diff --git a/pkgs/desktops/kde-5/applications-16.04/gwenview.nix b/pkgs/desktops/kde-5/applications/gwenview.nix
similarity index 100%
rename from pkgs/desktops/kde-5/applications-16.04/gwenview.nix
rename to pkgs/desktops/kde-5/applications/gwenview.nix
diff --git a/pkgs/desktops/kde-5/applications-16.04/kate.nix b/pkgs/desktops/kde-5/applications/kate.nix
similarity index 100%
rename from pkgs/desktops/kde-5/applications-16.04/kate.nix
rename to pkgs/desktops/kde-5/applications/kate.nix
diff --git a/pkgs/desktops/kde-5/applications-16.04/kcalc.nix b/pkgs/desktops/kde-5/applications/kcalc.nix
similarity index 100%
rename from pkgs/desktops/kde-5/applications-16.04/kcalc.nix
rename to pkgs/desktops/kde-5/applications/kcalc.nix
diff --git a/pkgs/desktops/kde-5/applications-16.04/kcolorchooser.nix b/pkgs/desktops/kde-5/applications/kcolorchooser.nix
similarity index 100%
rename from pkgs/desktops/kde-5/applications-16.04/kcolorchooser.nix
rename to pkgs/desktops/kde-5/applications/kcolorchooser.nix
diff --git a/pkgs/desktops/kde-5/applications-16.04/kde-app.nix b/pkgs/desktops/kde-5/applications/kde-app.nix
similarity index 100%
rename from pkgs/desktops/kde-5/applications-16.04/kde-app.nix
rename to pkgs/desktops/kde-5/applications/kde-app.nix
diff --git a/pkgs/desktops/kde-5/applications-16.04/kde-locale-4.nix b/pkgs/desktops/kde-5/applications/kde-locale-4.nix
similarity index 100%
rename from pkgs/desktops/kde-5/applications-16.04/kde-locale-4.nix
rename to pkgs/desktops/kde-5/applications/kde-locale-4.nix
diff --git a/pkgs/desktops/kde-5/applications-16.04/kde-locale-5.nix b/pkgs/desktops/kde-5/applications/kde-locale-5.nix
similarity index 100%
rename from pkgs/desktops/kde-5/applications-16.04/kde-locale-5.nix
rename to pkgs/desktops/kde-5/applications/kde-locale-5.nix
diff --git a/pkgs/desktops/kde-5/applications-16.04/kdegraphics-thumbnailers.nix b/pkgs/desktops/kde-5/applications/kdegraphics-thumbnailers.nix
similarity index 100%
rename from pkgs/desktops/kde-5/applications-16.04/kdegraphics-thumbnailers.nix
rename to pkgs/desktops/kde-5/applications/kdegraphics-thumbnailers.nix
diff --git a/pkgs/desktops/kde-5/applications-16.04/kdelibs/0001-old-kde4-cmake-policies.patch b/pkgs/desktops/kde-5/applications/kdelibs/0001-old-kde4-cmake-policies.patch
similarity index 100%
rename from pkgs/desktops/kde-5/applications-16.04/kdelibs/0001-old-kde4-cmake-policies.patch
rename to pkgs/desktops/kde-5/applications/kdelibs/0001-old-kde4-cmake-policies.patch
diff --git a/pkgs/desktops/kde-5/applications-16.04/kdelibs/0002-polkit-install-path.patch b/pkgs/desktops/kde-5/applications/kdelibs/0002-polkit-install-path.patch
similarity index 100%
rename from pkgs/desktops/kde-5/applications-16.04/kdelibs/0002-polkit-install-path.patch
rename to pkgs/desktops/kde-5/applications/kdelibs/0002-polkit-install-path.patch
diff --git a/pkgs/desktops/kde-5/applications-16.04/kdelibs/0003-remove_xdg_impurities.patch b/pkgs/desktops/kde-5/applications/kdelibs/0003-remove_xdg_impurities.patch
similarity index 100%
rename from pkgs/desktops/kde-5/applications-16.04/kdelibs/0003-remove_xdg_impurities.patch
rename to pkgs/desktops/kde-5/applications/kdelibs/0003-remove_xdg_impurities.patch
diff --git a/pkgs/desktops/kde-5/applications-16.04/kdelibs/default.nix b/pkgs/desktops/kde-5/applications/kdelibs/default.nix
similarity index 100%
rename from pkgs/desktops/kde-5/applications-16.04/kdelibs/default.nix
rename to pkgs/desktops/kde-5/applications/kdelibs/default.nix
diff --git a/pkgs/desktops/kde-5/applications-16.04/kdelibs/setup-hook.sh b/pkgs/desktops/kde-5/applications/kdelibs/setup-hook.sh
similarity index 100%
rename from pkgs/desktops/kde-5/applications-16.04/kdelibs/setup-hook.sh
rename to pkgs/desktops/kde-5/applications/kdelibs/setup-hook.sh
diff --git a/pkgs/desktops/kde-5/applications-16.04/kdenetwork-filesharing.nix b/pkgs/desktops/kde-5/applications/kdenetwork-filesharing.nix
similarity index 100%
rename from pkgs/desktops/kde-5/applications-16.04/kdenetwork-filesharing.nix
rename to pkgs/desktops/kde-5/applications/kdenetwork-filesharing.nix
diff --git a/pkgs/desktops/kde-5/applications-16.04/kgpg.nix b/pkgs/desktops/kde-5/applications/kgpg.nix
similarity index 100%
rename from pkgs/desktops/kde-5/applications-16.04/kgpg.nix
rename to pkgs/desktops/kde-5/applications/kgpg.nix
diff --git a/pkgs/desktops/kde-5/applications/khelpcenter.nix b/pkgs/desktops/kde-5/applications/khelpcenter.nix
new file mode 100644
index 00000000000..3cdcf22cf75
--- /dev/null
+++ b/pkgs/desktops/kde-5/applications/khelpcenter.nix
@@ -0,0 +1,20 @@
+{ kdeApp, extra-cmake-modules, kdoctools, makeQtWrapper
+, grantlee, kconfig, kcoreaddons, kdbusaddons, ki18n, kinit, kcmutils
+, kdelibs4support, khtml, kservice
+, xapian
+}:
+
+kdeApp {
+ name = "khelpcenter";
+ nativeBuildInputs = [
+ extra-cmake-modules kdoctools makeQtWrapper
+ ];
+ buildInputs = [
+ grantlee kdelibs4support khtml ki18n kconfig kcoreaddons kdbusaddons kinit
+ kcmutils kservice
+ xapian
+ ];
+ postInstall = ''
+ wrapQtProgram "$out/bin/khelpcenter"
+ '';
+}
diff --git a/pkgs/desktops/kde-5/applications-16.04/kio-extras.nix b/pkgs/desktops/kde-5/applications/kio-extras.nix
similarity index 100%
rename from pkgs/desktops/kde-5/applications-16.04/kio-extras.nix
rename to pkgs/desktops/kde-5/applications/kio-extras.nix
diff --git a/pkgs/desktops/kde-5/applications/kompare.nix b/pkgs/desktops/kde-5/applications/kompare.nix
new file mode 100644
index 00000000000..55bbfc44860
--- /dev/null
+++ b/pkgs/desktops/kde-5/applications/kompare.nix
@@ -0,0 +1,34 @@
+{ kdeApp
+, lib
+, extra-cmake-modules
+, kdoctools
+, makeQtWrapper
+, kparts
+, ktexteditor
+, kwidgetsaddons
+, libkomparediff2
+}:
+
+kdeApp {
+ name = "kompare";
+ meta = {
+ license = with lib.licenses; [ gpl2 ];
+ };
+
+ nativeBuildInputs = [
+ extra-cmake-modules
+ kdoctools
+ makeQtWrapper
+ ];
+
+ propagatedBuildInputs = [
+ kparts
+ ktexteditor
+ kwidgetsaddons
+ libkomparediff2
+ ];
+
+ postInstall = ''
+ wrapQtProgram "$out/bin/kompare"
+ '';
+}
diff --git a/pkgs/desktops/kde-5/applications-16.04/konsole.nix b/pkgs/desktops/kde-5/applications/konsole.nix
similarity index 100%
rename from pkgs/desktops/kde-5/applications-16.04/konsole.nix
rename to pkgs/desktops/kde-5/applications/konsole.nix
diff --git a/pkgs/desktops/kde-5/applications-16.04/l10n.nix b/pkgs/desktops/kde-5/applications/l10n.nix
similarity index 100%
rename from pkgs/desktops/kde-5/applications-16.04/l10n.nix
rename to pkgs/desktops/kde-5/applications/l10n.nix
diff --git a/pkgs/desktops/kde-5/applications-16.04/libkdcraw.nix b/pkgs/desktops/kde-5/applications/libkdcraw.nix
similarity index 100%
rename from pkgs/desktops/kde-5/applications-16.04/libkdcraw.nix
rename to pkgs/desktops/kde-5/applications/libkdcraw.nix
diff --git a/pkgs/desktops/kde-5/applications-16.04/libkexiv2.nix b/pkgs/desktops/kde-5/applications/libkexiv2.nix
similarity index 100%
rename from pkgs/desktops/kde-5/applications-16.04/libkexiv2.nix
rename to pkgs/desktops/kde-5/applications/libkexiv2.nix
diff --git a/pkgs/desktops/kde-5/applications-16.04/libkipi.nix b/pkgs/desktops/kde-5/applications/libkipi.nix
similarity index 100%
rename from pkgs/desktops/kde-5/applications-16.04/libkipi.nix
rename to pkgs/desktops/kde-5/applications/libkipi.nix
diff --git a/pkgs/desktops/kde-5/applications/libkomparediff2.nix b/pkgs/desktops/kde-5/applications/libkomparediff2.nix
new file mode 100644
index 00000000000..d6a4878ffbd
--- /dev/null
+++ b/pkgs/desktops/kde-5/applications/libkomparediff2.nix
@@ -0,0 +1,23 @@
+{ kdeApp
+, lib
+, extra-cmake-modules
+, ki18n
+, kxmlgui
+, kcodecs
+, kio
+}:
+
+kdeApp {
+ name = "libkomparediff2";
+
+ nativeBuildInputs = [
+ extra-cmake-modules
+ ];
+
+ propagatedBuildInputs = [
+ kcodecs
+ ki18n
+ kxmlgui
+ kio
+ ];
+}
diff --git a/pkgs/desktops/kde-5/applications-16.04/okular.nix b/pkgs/desktops/kde-5/applications/okular.nix
similarity index 100%
rename from pkgs/desktops/kde-5/applications-16.04/okular.nix
rename to pkgs/desktops/kde-5/applications/okular.nix
diff --git a/pkgs/desktops/kde-5/applications-16.04/print-manager.nix b/pkgs/desktops/kde-5/applications/print-manager.nix
similarity index 100%
rename from pkgs/desktops/kde-5/applications-16.04/print-manager.nix
rename to pkgs/desktops/kde-5/applications/print-manager.nix
diff --git a/pkgs/desktops/kde-5/applications-16.04/spectacle.nix b/pkgs/desktops/kde-5/applications/spectacle.nix
similarity index 100%
rename from pkgs/desktops/kde-5/applications-16.04/spectacle.nix
rename to pkgs/desktops/kde-5/applications/spectacle.nix
diff --git a/pkgs/desktops/kde-5/applications/srcs.nix b/pkgs/desktops/kde-5/applications/srcs.nix
new file mode 100644
index 00000000000..2eb2afcd0b1
--- /dev/null
+++ b/pkgs/desktops/kde-5/applications/srcs.nix
@@ -0,0 +1,2093 @@
+# DO NOT EDIT! This file is generated automatically by fetchsrcs.sh
+{ fetchurl, mirror }:
+
+{
+ akonadi = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/akonadi-16.04.3.tar.xz";
+ sha256 = "1fsv5znj5a7mql8swcq085qjnvcmwyjm74lwj3rdrxmw91s09w96";
+ name = "akonadi-16.04.3.tar.xz";
+ };
+ };
+ akonadi-calendar = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/akonadi-calendar-16.04.3.tar.xz";
+ sha256 = "18gwsk4snbp475kqpkl3jnca68pprpjhj8xjb4myf0s0bbsi01jl";
+ name = "akonadi-calendar-16.04.3.tar.xz";
+ };
+ };
+ akonadi-search = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/akonadi-search-16.04.3.tar.xz";
+ sha256 = "109gl55zhrmvz2k31v7i724jm1jllz0yshg556ii3n9raijmny8m";
+ name = "akonadi-search-16.04.3.tar.xz";
+ };
+ };
+ analitza = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/analitza-16.04.3.tar.xz";
+ sha256 = "0qk2gcrh2qb7krhijzvb95336l4zab4dkhplgbc1k6sdwm7r83dj";
+ name = "analitza-16.04.3.tar.xz";
+ };
+ };
+ ark = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/ark-16.04.3.tar.xz";
+ sha256 = "041bqkha4s01n8jn4agbg1vacfhiwr7x5rds9sh3jr5nvmr2573r";
+ name = "ark-16.04.3.tar.xz";
+ };
+ };
+ artikulate = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/artikulate-16.04.3.tar.xz";
+ sha256 = "166dnlp34sbnmwjrvl4rg3a9c4s8z46nn7aqp5b0l66iis6qrhyn";
+ name = "artikulate-16.04.3.tar.xz";
+ };
+ };
+ audiocd-kio = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/audiocd-kio-16.04.3.tar.xz";
+ sha256 = "1jds7f3m0x3f9x2invphsaxmj0gf3af6cbqczilhia2qchsyq0vb";
+ name = "audiocd-kio-16.04.3.tar.xz";
+ };
+ };
+ baloo-widgets = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/baloo-widgets-16.04.3.tar.xz";
+ sha256 = "06nick4dcs3qqcv7vqs2cn8848yjifhyw79cvc6562siq66vh5zp";
+ name = "baloo-widgets-16.04.3.tar.xz";
+ };
+ };
+ blinken = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/blinken-16.04.3.tar.xz";
+ sha256 = "1nbi7rshw2qd3jvgkky0hbn8yf38lmrs1x5sbd68wsxvpf2rwwzp";
+ name = "blinken-16.04.3.tar.xz";
+ };
+ };
+ bomber = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/bomber-16.04.3.tar.xz";
+ sha256 = "1lb4cgsmk99j973gn4j5mqlj6zx8in3hmq8ma9n107y8sg46bzvv";
+ name = "bomber-16.04.3.tar.xz";
+ };
+ };
+ bovo = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/bovo-16.04.3.tar.xz";
+ sha256 = "0c8jyqlzplkfa55i3pf5f4brxdyszzlp542l8w6dnl7lpazyjrsi";
+ name = "bovo-16.04.3.tar.xz";
+ };
+ };
+ calendarsupport = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/calendarsupport-16.04.3.tar.xz";
+ sha256 = "1la37axq0jz4palgw4pr0mqaw9s2dmr7jglzws5knvihvq1czls9";
+ name = "calendarsupport-16.04.3.tar.xz";
+ };
+ };
+ cantor = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/cantor-16.04.3.tar.xz";
+ sha256 = "1mqcmb1dx5gvjaa89sszdkpkgd8sb36mvx074az3w69aj6bkpq7a";
+ name = "cantor-16.04.3.tar.xz";
+ };
+ };
+ cervisia = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/cervisia-16.04.3.tar.xz";
+ sha256 = "1irxwwyc18n5j79nyyi7zimk9iqbhfhi81vkwfy9fq9w7iis1z0g";
+ name = "cervisia-16.04.3.tar.xz";
+ };
+ };
+ dolphin = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/dolphin-16.04.3.tar.xz";
+ sha256 = "16c5lnqldc8jmz90ym35l4s21wmn6lg4p5xhyyi5khq9yz9447r0";
+ name = "dolphin-16.04.3.tar.xz";
+ };
+ };
+ dolphin-plugins = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/dolphin-plugins-16.04.3.tar.xz";
+ sha256 = "1qwq1b9ivivn6sdql1q7kfg80790w1b651vwfqbqdsbgxc9b6qzg";
+ name = "dolphin-plugins-16.04.3.tar.xz";
+ };
+ };
+ dragon = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/dragon-16.04.3.tar.xz";
+ sha256 = "1d8hrh3mjf3if6asi40arpihwv91xs7ydcmr0nf355vajsn337vl";
+ name = "dragon-16.04.3.tar.xz";
+ };
+ };
+ eventviews = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/eventviews-16.04.3.tar.xz";
+ sha256 = "1rn3kfrkc48hwgd0b59gy6jax9gd78g7lwgmxcs977xzhl7mc3kh";
+ name = "eventviews-16.04.3.tar.xz";
+ };
+ };
+ ffmpegthumbs = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/ffmpegthumbs-16.04.3.tar.xz";
+ sha256 = "03imnxzkbsfwgcqx1hhkpad6pdyw157picb9ydrlkwqlg0pqcgr0";
+ name = "ffmpegthumbs-16.04.3.tar.xz";
+ };
+ };
+ filelight = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/filelight-16.04.3.tar.xz";
+ sha256 = "1li4ylbq9vr3vr91y1r085557p22bvqgg4kqm5ra7bdwp9151j09";
+ name = "filelight-16.04.3.tar.xz";
+ };
+ };
+ gpgmepp = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/gpgmepp-16.04.3.tar.xz";
+ sha256 = "1850pdysi7c1w0nxnhcbrhnkrfqyrcl0laxyjcw1g1ln764pwcmj";
+ name = "gpgmepp-16.04.3.tar.xz";
+ };
+ };
+ granatier = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/granatier-16.04.3.tar.xz";
+ sha256 = "172rlx3472gq6lv30p8sw09rj4bxj4lxny4xqi0vwkbdmfscfsxw";
+ name = "granatier-16.04.3.tar.xz";
+ };
+ };
+ grantleetheme = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/grantleetheme-16.04.3.tar.xz";
+ sha256 = "071qybjfa83441xmxd6mjj189blcrds9ddqcpvvna1zlajn0rgby";
+ name = "grantleetheme-16.04.3.tar.xz";
+ };
+ };
+ gwenview = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/gwenview-16.04.3.tar.xz";
+ sha256 = "02cjbz4zjbxvqcd7cwaxjzdhjhs86m79cdzcf41q1byk41jajshl";
+ name = "gwenview-16.04.3.tar.xz";
+ };
+ };
+ incidenceeditor = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/incidenceeditor-16.04.3.tar.xz";
+ sha256 = "1yms81yzkj84hn5w8kkzsnxb6m7rn5n1d9n1nap4rh570bmssrjf";
+ name = "incidenceeditor-16.04.3.tar.xz";
+ };
+ };
+ jovie = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/jovie-16.04.3.tar.xz";
+ sha256 = "0n8bk36n2024rhiy0qfwz03vx8nja2jylwgfqfj4y5lzdqnc9kbz";
+ name = "jovie-16.04.3.tar.xz";
+ };
+ };
+ juk = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/juk-16.04.3.tar.xz";
+ sha256 = "1nfs23dd5nd5qmdr8c2m6wxaq7m1vrxhdwjm7gqjrskmw3gcd0ai";
+ name = "juk-16.04.3.tar.xz";
+ };
+ };
+ kaccessible = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kaccessible-16.04.3.tar.xz";
+ sha256 = "1qmqpcp5dfn2iwvkfya5bb8v56d2zw9136swzv9nf44gg8mlayvx";
+ name = "kaccessible-16.04.3.tar.xz";
+ };
+ };
+ kaccounts-integration = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kaccounts-integration-16.04.3.tar.xz";
+ sha256 = "0wspjy6xpki8i2qkp289hmgz9cg8vqy50fp3ljljddqcgkxmi8lb";
+ name = "kaccounts-integration-16.04.3.tar.xz";
+ };
+ };
+ kaccounts-providers = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kaccounts-providers-16.04.3.tar.xz";
+ sha256 = "0imnqxcwyk1icbqzhmyz60sv85317w6v2ab3b35vnw65fl7dp7g9";
+ name = "kaccounts-providers-16.04.3.tar.xz";
+ };
+ };
+ kajongg = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kajongg-16.04.3.tar.xz";
+ sha256 = "0v8cvr0xf6895169w1qa9qw5ix3kb2820p6qs6klpn5jhk5v2xk5";
+ name = "kajongg-16.04.3.tar.xz";
+ };
+ };
+ kalarmcal = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kalarmcal-16.04.3.tar.xz";
+ sha256 = "1cp9z52914h6ydzvnk1zhg0s2p4i51rx1d2s8x21n7vh4l7g89js";
+ name = "kalarmcal-16.04.3.tar.xz";
+ };
+ };
+ kalgebra = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kalgebra-16.04.3.tar.xz";
+ sha256 = "17ym0q0qzgq4krk47k9vr6im658rryk51589w7r1ixpbzagwiwnv";
+ name = "kalgebra-16.04.3.tar.xz";
+ };
+ };
+ kalzium = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kalzium-16.04.3.tar.xz";
+ sha256 = "1dpq0g52qfp3fi4ymynzqalyc2640j52xkkkh85awfmqrprwrrvr";
+ name = "kalzium-16.04.3.tar.xz";
+ };
+ };
+ kamera = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kamera-16.04.3.tar.xz";
+ sha256 = "10bclanywlz3ac782hp2ahg6dik0q8dsh733w9cxww0v64pg932r";
+ name = "kamera-16.04.3.tar.xz";
+ };
+ };
+ kanagram = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kanagram-16.04.3.tar.xz";
+ sha256 = "1pnazqmcjhckywch1wkr8ddncpd2anpx233084raynylkrx5m1fg";
+ name = "kanagram-16.04.3.tar.xz";
+ };
+ };
+ kapman = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kapman-16.04.3.tar.xz";
+ sha256 = "0hzdbk741mb92fzkdpabrjkpw93yvxjwzj0q4dnlw4alyv90b2hi";
+ name = "kapman-16.04.3.tar.xz";
+ };
+ };
+ kapptemplate = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kapptemplate-16.04.3.tar.xz";
+ sha256 = "07d6vbhs5mhqv9275lgplfp8y8cdx395ykncdr6cnpsgh3swn6ck";
+ name = "kapptemplate-16.04.3.tar.xz";
+ };
+ };
+ kate = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kate-16.04.3.tar.xz";
+ sha256 = "1a8m7wzsxlxmqd6i90ascynrva61r486hqb3y78n34s64q1h9w4d";
+ name = "kate-16.04.3.tar.xz";
+ };
+ };
+ katomic = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/katomic-16.04.3.tar.xz";
+ sha256 = "1jcb4fz91abbsfmpwsi55k2nbdg6bdazi135fxr4c3cxbm55zrmk";
+ name = "katomic-16.04.3.tar.xz";
+ };
+ };
+ kblackbox = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kblackbox-16.04.3.tar.xz";
+ sha256 = "11zkp7yvwsiw54hvxmf55pw7yf165jrw6z56ak4lp936kb8w4i4v";
+ name = "kblackbox-16.04.3.tar.xz";
+ };
+ };
+ kblocks = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kblocks-16.04.3.tar.xz";
+ sha256 = "11wxi7csqrf0scb7nhyvs6vp4gissig83gjpckksy0jkyszi9j2b";
+ name = "kblocks-16.04.3.tar.xz";
+ };
+ };
+ kblog = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kblog-16.04.3.tar.xz";
+ sha256 = "0g79jb8wz3xhkq933ia7x00g2z9fb2kmif6wssipk6c88llspi70";
+ name = "kblog-16.04.3.tar.xz";
+ };
+ };
+ kbounce = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kbounce-16.04.3.tar.xz";
+ sha256 = "0p0zkn9irksf9vb4zh3anbdhq7igjs6lqf2zqk503arjzp3f0aw3";
+ name = "kbounce-16.04.3.tar.xz";
+ };
+ };
+ kbreakout = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kbreakout-16.04.3.tar.xz";
+ sha256 = "1dndpjzgksbwfqimnww4fzr69fifx7n4jrmjfxh51mkapj2p78mg";
+ name = "kbreakout-16.04.3.tar.xz";
+ };
+ };
+ kbruch = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kbruch-16.04.3.tar.xz";
+ sha256 = "1f0ws4s6q8p6xn2mhxw039fb331dwk0z6grad20p2m149pw5nc23";
+ name = "kbruch-16.04.3.tar.xz";
+ };
+ };
+ kcachegrind = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kcachegrind-16.04.3.tar.xz";
+ sha256 = "1lvql6mm032vhmva95fw6mfkwlpigg1cc2vskhylb0kprjaywc83";
+ name = "kcachegrind-16.04.3.tar.xz";
+ };
+ };
+ kcalc = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kcalc-16.04.3.tar.xz";
+ sha256 = "1bb85fjyc2phgy890c7vxn935400zpcnbh46g42qgfd7pbpy9wm6";
+ name = "kcalc-16.04.3.tar.xz";
+ };
+ };
+ kcalcore = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kcalcore-16.04.3.tar.xz";
+ sha256 = "0m71j3h7ky21858vxlx3d2pv8mpyaf47rpmb8faffjq8gmqi277l";
+ name = "kcalcore-16.04.3.tar.xz";
+ };
+ };
+ kcalutils = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kcalutils-16.04.3.tar.xz";
+ sha256 = "01kip66agfjmm6fhlaxfnn4rzikwjb4lnx7siir76zzcv1y8qqyx";
+ name = "kcalutils-16.04.3.tar.xz";
+ };
+ };
+ kcharselect = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kcharselect-16.04.3.tar.xz";
+ sha256 = "0bqbjlhi8vlx141b1p3xfjdn6cfhxbz1m66qya9pyjnvl4vqxkf4";
+ name = "kcharselect-16.04.3.tar.xz";
+ };
+ };
+ kcolorchooser = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kcolorchooser-16.04.3.tar.xz";
+ sha256 = "1kh19yd2xy3scb3knganl1c09qd5674algb4cmh7l11n1g16mx7p";
+ name = "kcolorchooser-16.04.3.tar.xz";
+ };
+ };
+ kcontacts = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kcontacts-16.04.3.tar.xz";
+ sha256 = "1y36q145gfp2qzj9yshswz6kpq5v62by2r1g3zp9dp3wl6hvdzb5";
+ name = "kcontacts-16.04.3.tar.xz";
+ };
+ };
+ kcron = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kcron-16.04.3.tar.xz";
+ sha256 = "11vy4iz59pfrbdp3z0c9gb7c6h9sps31kc48pjrjiynk6g4xharz";
+ name = "kcron-16.04.3.tar.xz";
+ };
+ };
+ kde-baseapps = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kde-baseapps-16.04.3.tar.xz";
+ sha256 = "0silcbkjk7ka81pfnli7qdcvnl5b21ig8q6jc9l10bd14mlgf3ax";
+ name = "kde-baseapps-16.04.3.tar.xz";
+ };
+ };
+ kdebugsettings = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kdebugsettings-16.04.3.tar.xz";
+ sha256 = "18vcikq8ckba7vnkz2lfd613ysn3rjiaxp7v96ngiga1d3x4b3s6";
+ name = "kdebugsettings-16.04.3.tar.xz";
+ };
+ };
+ kde-dev-scripts = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kde-dev-scripts-16.04.3.tar.xz";
+ sha256 = "133nj3n2617zdgv88s0zin1mkssa8f75cpfnqjdbd0xcyv2fyfx3";
+ name = "kde-dev-scripts-16.04.3.tar.xz";
+ };
+ };
+ kde-dev-utils = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kde-dev-utils-16.04.3.tar.xz";
+ sha256 = "0h84liwdl0i4dlyk6ybr5pcn953i907jb7crhwp8dh7xa9zyjlim";
+ name = "kde-dev-utils-16.04.3.tar.xz";
+ };
+ };
+ kdeedu-data = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kdeedu-data-16.04.3.tar.xz";
+ sha256 = "0b6lkhp8ljscm8snb0yc5kqxqnhxs0rilrw9v68ybqc6xz1pma0y";
+ name = "kdeedu-data-16.04.3.tar.xz";
+ };
+ };
+ kdegraphics-mobipocket = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kdegraphics-mobipocket-16.04.3.tar.xz";
+ sha256 = "119mdbk6zb7ppgqk2p8bmlzqpfmdrbpfb2cdmdw2cawgr0hhpfkm";
+ name = "kdegraphics-mobipocket-16.04.3.tar.xz";
+ };
+ };
+ kdegraphics-strigi-analyzer = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kdegraphics-strigi-analyzer-16.04.3.tar.xz";
+ sha256 = "05pmzqwf6mixb1za3jni1yc1i6x6dwnk9qz4vflkifqjp1lrx823";
+ name = "kdegraphics-strigi-analyzer-16.04.3.tar.xz";
+ };
+ };
+ kdegraphics-thumbnailers = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kdegraphics-thumbnailers-16.04.3.tar.xz";
+ sha256 = "14310riwij79i6f10ld9fsf193bz8k5bhwmkp59h1l6nlhgaxyha";
+ name = "kdegraphics-thumbnailers-16.04.3.tar.xz";
+ };
+ };
+ kde-l10n-ar = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kde-l10n/kde-l10n-ar-16.04.3.tar.xz";
+ sha256 = "1363604cck13wxi2i7n6in7qn2ss3qmqb1zsq2a0848d1y451y63";
+ name = "kde-l10n-ar-16.04.3.tar.xz";
+ };
+ };
+ kde-l10n-ast = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kde-l10n/kde-l10n-ast-16.04.3.tar.xz";
+ sha256 = "1a1p60djslk05nxb3m89p95w5k83k9jnwrjs26jfmkk1qi1bhxgp";
+ name = "kde-l10n-ast-16.04.3.tar.xz";
+ };
+ };
+ kde-l10n-bg = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kde-l10n/kde-l10n-bg-16.04.3.tar.xz";
+ sha256 = "0ybrki3ba5wslhk1iwh3z27x0h3nv644mrj0ylzjr51k7nxkyn05";
+ name = "kde-l10n-bg-16.04.3.tar.xz";
+ };
+ };
+ kde-l10n-bs = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kde-l10n/kde-l10n-bs-16.04.3.tar.xz";
+ sha256 = "02fpi5ahi3s6p347xwy0908kavj6jx6k4gadwv747fwh5c6879dl";
+ name = "kde-l10n-bs-16.04.3.tar.xz";
+ };
+ };
+ kde-l10n-ca = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kde-l10n/kde-l10n-ca-16.04.3.tar.xz";
+ sha256 = "0dxsnlk6my79c6fx7zxg7ccy8jvkl5pk41mh5rn2savla1f8mg20";
+ name = "kde-l10n-ca-16.04.3.tar.xz";
+ };
+ };
+ kde-l10n-ca_valencia = {
+ version = "ca_valencia-16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kde-l10n/kde-l10n-ca@valencia-16.04.3.tar.xz";
+ sha256 = "12i84ii4k94hkgdyxqpysrd7d7jid4swar2kd1vrkx7aw4n331y4";
+ name = "kde-l10n-ca_valencia-16.04.3.tar.xz";
+ };
+ };
+ kde-l10n-cs = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kde-l10n/kde-l10n-cs-16.04.3.tar.xz";
+ sha256 = "0x6sk7rgwwk20hfy7b1wm4s062p36rd4j39a7c79wrhwnc1apsqj";
+ name = "kde-l10n-cs-16.04.3.tar.xz";
+ };
+ };
+ kde-l10n-da = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kde-l10n/kde-l10n-da-16.04.3.tar.xz";
+ sha256 = "1jah412d3yzixlw2wqp29nf2ils4qf9pi5hmafl0qb2ap0jf6p6i";
+ name = "kde-l10n-da-16.04.3.tar.xz";
+ };
+ };
+ kde-l10n-de = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kde-l10n/kde-l10n-de-16.04.3.tar.xz";
+ sha256 = "0ykxlc8l9kq9zy52rgwfs4ilcxa12s99jzwsfn4wxhhhif3brsxs";
+ name = "kde-l10n-de-16.04.3.tar.xz";
+ };
+ };
+ kde-l10n-el = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kde-l10n/kde-l10n-el-16.04.3.tar.xz";
+ sha256 = "0yjq29l9c5kfqd1qgr8rwln09gss23dk7fisznswzfns9mgwwa5r";
+ name = "kde-l10n-el-16.04.3.tar.xz";
+ };
+ };
+ kde-l10n-en_GB = {
+ version = "en_GB-16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kde-l10n/kde-l10n-en_GB-16.04.3.tar.xz";
+ sha256 = "1abzb25182sk1xr1ppnfpbibspqccg72wxdg14mzq87c3v126p08";
+ name = "kde-l10n-en_GB-16.04.3.tar.xz";
+ };
+ };
+ kde-l10n-eo = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kde-l10n/kde-l10n-eo-16.04.3.tar.xz";
+ sha256 = "1lcb2payk5gq6pqj7wgr8q6f2ww3r11szw799xw4mysclnybadl6";
+ name = "kde-l10n-eo-16.04.3.tar.xz";
+ };
+ };
+ kde-l10n-es = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kde-l10n/kde-l10n-es-16.04.3.tar.xz";
+ sha256 = "1grl52msc6i2xbkgabyjkv4mvmiwlyfy51ipmb29rjygqz7xqrnc";
+ name = "kde-l10n-es-16.04.3.tar.xz";
+ };
+ };
+ kde-l10n-et = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kde-l10n/kde-l10n-et-16.04.3.tar.xz";
+ sha256 = "0a8hkf3yzqzy4sffd3c126icwsfqrhyq3xkqdg0ijz2sph9rx6vd";
+ name = "kde-l10n-et-16.04.3.tar.xz";
+ };
+ };
+ kde-l10n-eu = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kde-l10n/kde-l10n-eu-16.04.3.tar.xz";
+ sha256 = "19083h2yrnw4mpjbx590ypks9ix0axs4lqhd9bria5b5bndhn2pd";
+ name = "kde-l10n-eu-16.04.3.tar.xz";
+ };
+ };
+ kde-l10n-fa = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kde-l10n/kde-l10n-fa-16.04.3.tar.xz";
+ sha256 = "1c23m9s6gzlqbf68c5xqp8brk2q2gqsxskblk0zkial61bwnw77w";
+ name = "kde-l10n-fa-16.04.3.tar.xz";
+ };
+ };
+ kde-l10n-fi = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kde-l10n/kde-l10n-fi-16.04.3.tar.xz";
+ sha256 = "1m7cs18wgza50nb2ybasyg7j0l25bkx6zd1dlnfqdrfc9d7mg7ab";
+ name = "kde-l10n-fi-16.04.3.tar.xz";
+ };
+ };
+ kde-l10n-fr = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kde-l10n/kde-l10n-fr-16.04.3.tar.xz";
+ sha256 = "0zhfbqgir92fc5zgll5w68bdkqv24xsp4wp3vvk8cvgfqr7qxjv1";
+ name = "kde-l10n-fr-16.04.3.tar.xz";
+ };
+ };
+ kde-l10n-ga = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kde-l10n/kde-l10n-ga-16.04.3.tar.xz";
+ sha256 = "1p8vfm4b4w070k841lnsxxgwls8dhdadnf48s4igg2zhcnngg5hk";
+ name = "kde-l10n-ga-16.04.3.tar.xz";
+ };
+ };
+ kde-l10n-gl = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kde-l10n/kde-l10n-gl-16.04.3.tar.xz";
+ sha256 = "0l9nr6iqpmacaznl7d02gk6nvd97069qp065qxknsnzzhzxdr8h9";
+ name = "kde-l10n-gl-16.04.3.tar.xz";
+ };
+ };
+ kde-l10n-he = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kde-l10n/kde-l10n-he-16.04.3.tar.xz";
+ sha256 = "0dmz0acqdkg56g52nin13mdpii7p7nv5i4bscc6x5wqsvzcg83az";
+ name = "kde-l10n-he-16.04.3.tar.xz";
+ };
+ };
+ kde-l10n-hi = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kde-l10n/kde-l10n-hi-16.04.3.tar.xz";
+ sha256 = "0ywk9ylf8zjpf5cqchyziw2jmk27nhp0kgjj9a4cg88091q0ix4p";
+ name = "kde-l10n-hi-16.04.3.tar.xz";
+ };
+ };
+ kde-l10n-hr = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kde-l10n/kde-l10n-hr-16.04.3.tar.xz";
+ sha256 = "1cjdp3bm1mf50cdnr389gb58si2n8ylmgmw8xyx974ha7v6mxf71";
+ name = "kde-l10n-hr-16.04.3.tar.xz";
+ };
+ };
+ kde-l10n-hu = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kde-l10n/kde-l10n-hu-16.04.3.tar.xz";
+ sha256 = "12mlm3gczb24k66yxk3spqimzknybpgz9piprrbxabdiha8p11iw";
+ name = "kde-l10n-hu-16.04.3.tar.xz";
+ };
+ };
+ kde-l10n-ia = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kde-l10n/kde-l10n-ia-16.04.3.tar.xz";
+ sha256 = "1855ydjczfkn70s3vmdvg0qi06ix0rqp9ry49w15mmb23np8qmg2";
+ name = "kde-l10n-ia-16.04.3.tar.xz";
+ };
+ };
+ kde-l10n-id = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kde-l10n/kde-l10n-id-16.04.3.tar.xz";
+ sha256 = "0ljpg8iz1vjryp9arwr3wr66lscb6r0yd25wssxzsanfp595zhw4";
+ name = "kde-l10n-id-16.04.3.tar.xz";
+ };
+ };
+ kde-l10n-is = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kde-l10n/kde-l10n-is-16.04.3.tar.xz";
+ sha256 = "0xn7a701r80lqgbskkaca085fbkwnv872ph3p2hsiz3ps4aqp4sc";
+ name = "kde-l10n-is-16.04.3.tar.xz";
+ };
+ };
+ kde-l10n-it = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kde-l10n/kde-l10n-it-16.04.3.tar.xz";
+ sha256 = "06sbcp6maf316lr9vsa7922qqymrnj2ppyypx0vjzxswqwgykhvp";
+ name = "kde-l10n-it-16.04.3.tar.xz";
+ };
+ };
+ kde-l10n-ja = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kde-l10n/kde-l10n-ja-16.04.3.tar.xz";
+ sha256 = "0p3d9zy6l4axj7p97b2q57ccwkglhamlbfjfw6kk5c26qxss9ig4";
+ name = "kde-l10n-ja-16.04.3.tar.xz";
+ };
+ };
+ kde-l10n-kk = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kde-l10n/kde-l10n-kk-16.04.3.tar.xz";
+ sha256 = "0538hxcy2yc007m2bji8jjhdifdgyf7azbk32qn54bkvliis70l2";
+ name = "kde-l10n-kk-16.04.3.tar.xz";
+ };
+ };
+ kde-l10n-km = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kde-l10n/kde-l10n-km-16.04.3.tar.xz";
+ sha256 = "0b1vryn61pf3dqac4rn6hjznrrdylvsx8bsyamvhry7grdnaq9fp";
+ name = "kde-l10n-km-16.04.3.tar.xz";
+ };
+ };
+ kde-l10n-ko = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kde-l10n/kde-l10n-ko-16.04.3.tar.xz";
+ sha256 = "05k261wxvl9plxx6fsx8y6paaqykmsmq5flv9jcgj958llq4d0a1";
+ name = "kde-l10n-ko-16.04.3.tar.xz";
+ };
+ };
+ kde-l10n-lt = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kde-l10n/kde-l10n-lt-16.04.3.tar.xz";
+ sha256 = "1wk6q7i1p7nwa2dl4zqyqja2m615d5ghhn8hnkcnfpc2prslr3lr";
+ name = "kde-l10n-lt-16.04.3.tar.xz";
+ };
+ };
+ kde-l10n-lv = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kde-l10n/kde-l10n-lv-16.04.3.tar.xz";
+ sha256 = "153vdr9q8zp3rm4h2paxg6gm8dk3d6vdvrg9wsk21s1pc2d3kha6";
+ name = "kde-l10n-lv-16.04.3.tar.xz";
+ };
+ };
+ kde-l10n-mr = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kde-l10n/kde-l10n-mr-16.04.3.tar.xz";
+ sha256 = "1lmrs5vihb7zkl15mqihxb5vcrrzphzmfinmkbfb43sw91il8hiq";
+ name = "kde-l10n-mr-16.04.3.tar.xz";
+ };
+ };
+ kde-l10n-nb = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kde-l10n/kde-l10n-nb-16.04.3.tar.xz";
+ sha256 = "03a1d8dzpbzbpd7sr718mwaaihyhvfwfkln09cnahykdykmnb545";
+ name = "kde-l10n-nb-16.04.3.tar.xz";
+ };
+ };
+ kde-l10n-nds = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kde-l10n/kde-l10n-nds-16.04.3.tar.xz";
+ sha256 = "0716l1al3wi6ws2n25gdc845k1536nbxlxskvy1k2cravlabk2j6";
+ name = "kde-l10n-nds-16.04.3.tar.xz";
+ };
+ };
+ kde-l10n-nl = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kde-l10n/kde-l10n-nl-16.04.3.tar.xz";
+ sha256 = "1jy8shpfm7fvkzcg85w1b7h6pcl01hy3dk99cd9plaqgs25z5hg7";
+ name = "kde-l10n-nl-16.04.3.tar.xz";
+ };
+ };
+ kde-l10n-nn = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kde-l10n/kde-l10n-nn-16.04.3.tar.xz";
+ sha256 = "1parcwfwkqs8n784k2mqlpn4gly6mk72akfa0k5250w198qcc1m9";
+ name = "kde-l10n-nn-16.04.3.tar.xz";
+ };
+ };
+ kde-l10n-pa = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kde-l10n/kde-l10n-pa-16.04.3.tar.xz";
+ sha256 = "172p45xxpzh8ifiq35fzi42vad2icj5rpwqbswkd56dgvv8m6xwm";
+ name = "kde-l10n-pa-16.04.3.tar.xz";
+ };
+ };
+ kde-l10n-pl = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kde-l10n/kde-l10n-pl-16.04.3.tar.xz";
+ sha256 = "0nmjd68h4ybn68al8nhnzc9gj78j5zfzsy9h6kl6yzydgxsid9sc";
+ name = "kde-l10n-pl-16.04.3.tar.xz";
+ };
+ };
+ kde-l10n-pt = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kde-l10n/kde-l10n-pt-16.04.3.tar.xz";
+ sha256 = "03c0hwf0sc75kw81h0adbcmp6vi6ngjgq3bk1v7lqz12c3nkc6mf";
+ name = "kde-l10n-pt-16.04.3.tar.xz";
+ };
+ };
+ kde-l10n-pt_BR = {
+ version = "pt_BR-16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kde-l10n/kde-l10n-pt_BR-16.04.3.tar.xz";
+ sha256 = "1s068mz6r0crqw3jqix9x94dcwk7z9nr4jisxlj8lwfa13qb20a1";
+ name = "kde-l10n-pt_BR-16.04.3.tar.xz";
+ };
+ };
+ kde-l10n-ro = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kde-l10n/kde-l10n-ro-16.04.3.tar.xz";
+ sha256 = "0g2w1pjcwc1rk9fsqwmlv9a6hxxqzwcf8r889qcf4vrkra3xdfy8";
+ name = "kde-l10n-ro-16.04.3.tar.xz";
+ };
+ };
+ kde-l10n-ru = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kde-l10n/kde-l10n-ru-16.04.3.tar.xz";
+ sha256 = "03jvisz6y2g3y1ci384dn7gb16lcx41cx0xvn4m1mkrry0ij0s4y";
+ name = "kde-l10n-ru-16.04.3.tar.xz";
+ };
+ };
+ kde-l10n-sk = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kde-l10n/kde-l10n-sk-16.04.3.tar.xz";
+ sha256 = "14jy06js16slf1qv20mkw05l06ragf5zcskzzm772q66y1qd712r";
+ name = "kde-l10n-sk-16.04.3.tar.xz";
+ };
+ };
+ kde-l10n-sl = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kde-l10n/kde-l10n-sl-16.04.3.tar.xz";
+ sha256 = "0nq1g4hc3lnd4xwmlfa7lqical0k5rag4mw2xxgakpkhpwij5ff0";
+ name = "kde-l10n-sl-16.04.3.tar.xz";
+ };
+ };
+ kde-l10n-sr = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kde-l10n/kde-l10n-sr-16.04.3.tar.xz";
+ sha256 = "0qc5lfdfj45hpxly2bdy3h65qgq96k2sym56mwb52305dv380qlz";
+ name = "kde-l10n-sr-16.04.3.tar.xz";
+ };
+ };
+ kde-l10n-sv = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kde-l10n/kde-l10n-sv-16.04.3.tar.xz";
+ sha256 = "08rh3waajhynyllnvsghmspxqxr23lk0w5x0r61c2wzcqsvmj8xg";
+ name = "kde-l10n-sv-16.04.3.tar.xz";
+ };
+ };
+ kde-l10n-tr = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kde-l10n/kde-l10n-tr-16.04.3.tar.xz";
+ sha256 = "04fqm0hlzc77hmxkycgd04vhfq9szgf0r16liaxgd03k0p8nk54x";
+ name = "kde-l10n-tr-16.04.3.tar.xz";
+ };
+ };
+ kde-l10n-ug = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kde-l10n/kde-l10n-ug-16.04.3.tar.xz";
+ sha256 = "03dk6n5qp5qdgqbrlji9pz9lbi0kdq0w7pgk2f91xgfhnhd6c68b";
+ name = "kde-l10n-ug-16.04.3.tar.xz";
+ };
+ };
+ kde-l10n-uk = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kde-l10n/kde-l10n-uk-16.04.3.tar.xz";
+ sha256 = "0d9xxh2avammp662nsxgj57bzp38wbv56hvbzpscr3qfmyqhdndc";
+ name = "kde-l10n-uk-16.04.3.tar.xz";
+ };
+ };
+ kde-l10n-wa = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kde-l10n/kde-l10n-wa-16.04.3.tar.xz";
+ sha256 = "0hjcn24i96qsvdsf2jhghb2jmgc6z9z2xx7ldkgrq5949vf0dcb0";
+ name = "kde-l10n-wa-16.04.3.tar.xz";
+ };
+ };
+ kde-l10n-zh_CN = {
+ version = "zh_CN-16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kde-l10n/kde-l10n-zh_CN-16.04.3.tar.xz";
+ sha256 = "19qnnd4lkqf3zd4l3c0ffprd6y0bqdyrvsmhm2jlhx4z7m3c491q";
+ name = "kde-l10n-zh_CN-16.04.3.tar.xz";
+ };
+ };
+ kde-l10n-zh_TW = {
+ version = "zh_TW-16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kde-l10n/kde-l10n-zh_TW-16.04.3.tar.xz";
+ sha256 = "0kd0lkv3i4nlkgv9wapsyinv407np91h2hh14whkl2dx9mvmd7g1";
+ name = "kde-l10n-zh_TW-16.04.3.tar.xz";
+ };
+ };
+ kdelibs = {
+ version = "4.14.22";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kdelibs-4.14.22.tar.xz";
+ sha256 = "0rym674pr05in9wghhbwprlw5648ynnklfb858wxj9f3kvlsbjph";
+ name = "kdelibs-4.14.22.tar.xz";
+ };
+ };
+ kdenetwork-filesharing = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kdenetwork-filesharing-16.04.3.tar.xz";
+ sha256 = "05kb0q6krfkx8hm6pxb6qx6ihd0r300qpibk62dj0v4qzvz4fqvl";
+ name = "kdenetwork-filesharing-16.04.3.tar.xz";
+ };
+ };
+ kdenetwork-strigi-analyzers = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kdenetwork-strigi-analyzers-16.04.3.tar.xz";
+ sha256 = "1hhlpj9dzkmg3ajia5mjsxcaq27yl35cpy99afx67n3nb3wf9113";
+ name = "kdenetwork-strigi-analyzers-16.04.3.tar.xz";
+ };
+ };
+ kdenlive = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kdenlive-16.04.3.tar.xz";
+ sha256 = "0354pcfjs9xndh4mb0x4sryg0l9rvmb0qjw45053yg6lq6b3zbym";
+ name = "kdenlive-16.04.3.tar.xz";
+ };
+ };
+ kdepim = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kdepim-16.04.3.tar.xz";
+ sha256 = "1drvf4q50bknm2b806bzi2v80mlrmj1c5d6wpmrmy7f8pp2z7kj2";
+ name = "kdepim-16.04.3.tar.xz";
+ };
+ };
+ kdepim-addons = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kdepim-addons-16.04.3.tar.xz";
+ sha256 = "1gnazsd3ihghccna0880c1nlqv938q3jnn613hxa5p25j9mgvn89";
+ name = "kdepim-addons-16.04.3.tar.xz";
+ };
+ };
+ kdepim-apps-libs = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kdepim-apps-libs-16.04.3.tar.xz";
+ sha256 = "08xrpdq6d51gimi3qs1njvv7h1pl0gwpkifxxn56nznjdrgl37l3";
+ name = "kdepim-apps-libs-16.04.3.tar.xz";
+ };
+ };
+ kdepimlibs = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kdepimlibs-16.04.3.tar.xz";
+ sha256 = "02nj4hml6wns6hkpc7vm0swjfalm5rhrwd33izkyqzp30gyz2bc6";
+ name = "kdepimlibs-16.04.3.tar.xz";
+ };
+ };
+ kdepim-runtime = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kdepim-runtime-16.04.3.tar.xz";
+ sha256 = "129b94nsnwai4fd2rg3zqc5p8k1i7dq0l5z7hai15p5naab7541j";
+ name = "kdepim-runtime-16.04.3.tar.xz";
+ };
+ };
+ kde-runtime = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kde-runtime-16.04.3.tar.xz";
+ sha256 = "0pahf8rz4dfwl7c6q8liv6c4rmhiwnv03kfvj4j8lnrhif20y3k9";
+ name = "kde-runtime-16.04.3.tar.xz";
+ };
+ };
+ kdesdk-kioslaves = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kdesdk-kioslaves-16.04.3.tar.xz";
+ sha256 = "15ijhxd7x9mvpfsjv3xbs6l6nvbwa7d6sf25aa2j4h2qxx1qsq2l";
+ name = "kdesdk-kioslaves-16.04.3.tar.xz";
+ };
+ };
+ kdesdk-strigi-analyzers = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kdesdk-strigi-analyzers-16.04.3.tar.xz";
+ sha256 = "1pyqw7vg0r5amma6jjjdwgspig4w0rawj0671qv9v3rgnvxqkcq4";
+ name = "kdesdk-strigi-analyzers-16.04.3.tar.xz";
+ };
+ };
+ kdesdk-thumbnailers = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kdesdk-thumbnailers-16.04.3.tar.xz";
+ sha256 = "1yh4cddpqx6f6xw9rpxwvnw8d31psdgy4gcrd68115jan4r7ppxh";
+ name = "kdesdk-thumbnailers-16.04.3.tar.xz";
+ };
+ };
+ kdewebdev = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kdewebdev-16.04.3.tar.xz";
+ sha256 = "1lkhv4flg7rdsn6wrrnmzqgdwhi9bjisapgsdgr68hqypzhfvbjm";
+ name = "kdewebdev-16.04.3.tar.xz";
+ };
+ };
+ kdf = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kdf-16.04.3.tar.xz";
+ sha256 = "1za42wv569phlfdkdhb9v9hnz8561f8jvyh2vdjb070bkylipk5k";
+ name = "kdf-16.04.3.tar.xz";
+ };
+ };
+ kdgantt2 = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kdgantt2-16.04.3.tar.xz";
+ sha256 = "0xdm105c01svxryxg9jy8sqg9s8jdhm5jmvn662mj50m0nllvqm6";
+ name = "kdgantt2-16.04.3.tar.xz";
+ };
+ };
+ kdiamond = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kdiamond-16.04.3.tar.xz";
+ sha256 = "13rili5pp2zgbdgnr65gy43rlwnjigr3rqp954rbfh16pkdxsjzw";
+ name = "kdiamond-16.04.3.tar.xz";
+ };
+ };
+ kfloppy = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kfloppy-16.04.3.tar.xz";
+ sha256 = "16mrfk8bqp1fnldxxrpycyx0wg87v2szs406jj1qfyywrz8w76b7";
+ name = "kfloppy-16.04.3.tar.xz";
+ };
+ };
+ kfourinline = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kfourinline-16.04.3.tar.xz";
+ sha256 = "1ar4lglxy2dpmvl0s68wkmibn7m4qy8paxzhvh3pq95dcbvcg8yp";
+ name = "kfourinline-16.04.3.tar.xz";
+ };
+ };
+ kgeography = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kgeography-16.04.3.tar.xz";
+ sha256 = "0kqc39i8yj9jah52fc5afh4g94l07faq4jv0si0b3c17x7q64nwh";
+ name = "kgeography-16.04.3.tar.xz";
+ };
+ };
+ kget = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kget-16.04.3.tar.xz";
+ sha256 = "05sz7r6idkaskf193ryam83g77rzdz96wp1sqs36lr9x513bb5fh";
+ name = "kget-16.04.3.tar.xz";
+ };
+ };
+ kgoldrunner = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kgoldrunner-16.04.3.tar.xz";
+ sha256 = "1rd6k64qkpa9hz1k2x9sv018fqzv57l74rv78rv54czrc9b0wdby";
+ name = "kgoldrunner-16.04.3.tar.xz";
+ };
+ };
+ kgpg = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kgpg-16.04.3.tar.xz";
+ sha256 = "0fr3dvfrp6yy9b82k4rc4izwyxvvg2yqz2fq4s6srcsn65rkspv8";
+ name = "kgpg-16.04.3.tar.xz";
+ };
+ };
+ khangman = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/khangman-16.04.3.tar.xz";
+ sha256 = "0y63sr4q99j7m3yb6hdnydg3rl9hampkpy05qfz9jdm2znq6j1iw";
+ name = "khangman-16.04.3.tar.xz";
+ };
+ };
+ khelpcenter = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/khelpcenter-16.04.3.tar.xz";
+ sha256 = "1hlwlaja1dwjszyig17f2kfma6li2nqi76yyagfk0b35w8fk50d9";
+ name = "khelpcenter-16.04.3.tar.xz";
+ };
+ };
+ kholidays = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kholidays-16.04.3.tar.xz";
+ sha256 = "0p52bkysjfd7w24si2dcq7yv7diig2wz1a7x2c7vzwv9qw39m3g6";
+ name = "kholidays-16.04.3.tar.xz";
+ };
+ };
+ kidentitymanagement = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kidentitymanagement-16.04.3.tar.xz";
+ sha256 = "1nv5nda3wkdhwh3lggb0pmcs4h9csh4kziw6nlk0q9iyymrkf2y0";
+ name = "kidentitymanagement-16.04.3.tar.xz";
+ };
+ };
+ kig = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kig-16.04.3.tar.xz";
+ sha256 = "162ixbnb9y2h5q358m3cw51c2xapx6rb8yi9q3460jnhxmhvij7p";
+ name = "kig-16.04.3.tar.xz";
+ };
+ };
+ kigo = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kigo-16.04.3.tar.xz";
+ sha256 = "0324f2mjia73cq2v3kdipw81nsl2q74ziqhxqb9vrjk1jlpq8fhj";
+ name = "kigo-16.04.3.tar.xz";
+ };
+ };
+ killbots = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/killbots-16.04.3.tar.xz";
+ sha256 = "15jspfavyka86djb19fq7h1x573l7nsb5d8p2zfgrc1qiw794h0h";
+ name = "killbots-16.04.3.tar.xz";
+ };
+ };
+ kimap = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kimap-16.04.3.tar.xz";
+ sha256 = "0d3ckh7b6jdpwl2cqq93mz0gw6gfa7a0qbvgsrmzl25v1898dbda";
+ name = "kimap-16.04.3.tar.xz";
+ };
+ };
+ kio-extras = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kio-extras-16.04.3.tar.xz";
+ sha256 = "1sxg7jaklqxaw7s05a83x769f430085wx7bqlbl9xwqdmpbnj3hh";
+ name = "kio-extras-16.04.3.tar.xz";
+ };
+ };
+ kiriki = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kiriki-16.04.3.tar.xz";
+ sha256 = "1jk5v2z8ivc4q3zcaxmch7kym7pizch1fqpbrvql1ilfbmjgjjp9";
+ name = "kiriki-16.04.3.tar.xz";
+ };
+ };
+ kiten = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kiten-16.04.3.tar.xz";
+ sha256 = "1rjb9icam7plqj8bhd7gfhbmwa381nszk1f7ibpgwxh1416njg1l";
+ name = "kiten-16.04.3.tar.xz";
+ };
+ };
+ kjumpingcube = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kjumpingcube-16.04.3.tar.xz";
+ sha256 = "07zz862l1s348shkj9mbwppz54cqa5plw3jdca3fh5spfnllvhm0";
+ name = "kjumpingcube-16.04.3.tar.xz";
+ };
+ };
+ kldap = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kldap-16.04.3.tar.xz";
+ sha256 = "01vm2q2sxzwapq7qhsgw5vaplsawmvcrd0virwc5k83viy8jxbi4";
+ name = "kldap-16.04.3.tar.xz";
+ };
+ };
+ kleopatra = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kleopatra-16.04.3.tar.xz";
+ sha256 = "02hbdc976k304qfiak2iy34s8rcqyj8fgbz8p0yfpkh8jxrvgbym";
+ name = "kleopatra-16.04.3.tar.xz";
+ };
+ };
+ klettres = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/klettres-16.04.3.tar.xz";
+ sha256 = "0xbxvzw3vskna4sxi8yy3z9d80dpjzgpark5wnyclyrdnkla9973";
+ name = "klettres-16.04.3.tar.xz";
+ };
+ };
+ klickety = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/klickety-16.04.3.tar.xz";
+ sha256 = "12d700laya9apgp5pvrc2vpbz2d1l8dl8q37ccmkixh6dxf78z0c";
+ name = "klickety-16.04.3.tar.xz";
+ };
+ };
+ klines = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/klines-16.04.3.tar.xz";
+ sha256 = "0xybhlz7m0k4dnxzpxjsx0fk715scjdly9ahdzcwdkf83vd52x97";
+ name = "klines-16.04.3.tar.xz";
+ };
+ };
+ kmag = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kmag-16.04.3.tar.xz";
+ sha256 = "1pc7a6ry0c4wg5fm42ccmjhgazi2wixbsc9mylk4qwa0246lk8rc";
+ name = "kmag-16.04.3.tar.xz";
+ };
+ };
+ kmahjongg = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kmahjongg-16.04.3.tar.xz";
+ sha256 = "1zs4ndbf4lm9ry61bb2xcjsc2nnlvz36n8vnk2fpcvhvp266jhd7";
+ name = "kmahjongg-16.04.3.tar.xz";
+ };
+ };
+ kmailtransport = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kmailtransport-16.04.3.tar.xz";
+ sha256 = "16761r8ddmr7wdrqjwn5am35z8kz028mqcxmj582mrqfyr4w3s0k";
+ name = "kmailtransport-16.04.3.tar.xz";
+ };
+ };
+ kmbox = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kmbox-16.04.3.tar.xz";
+ sha256 = "0q6vf7813clnp349aq103m38mk0pazmwncmziwxmlwpj814887k2";
+ name = "kmbox-16.04.3.tar.xz";
+ };
+ };
+ kmime = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kmime-16.04.3.tar.xz";
+ sha256 = "1cwls6kd9sh2iilncq0k2c9nb4hfwa454fmn9y4m5g2p7yb4n70n";
+ name = "kmime-16.04.3.tar.xz";
+ };
+ };
+ kmines = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kmines-16.04.3.tar.xz";
+ sha256 = "1m5hkanihvd1g1p1131jx1fp1d9ga8yr849ari4mmjnwcmjjlxlv";
+ name = "kmines-16.04.3.tar.xz";
+ };
+ };
+ kmix = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kmix-16.04.3.tar.xz";
+ sha256 = "0iqqhsq1v1cdy53dby35d8gpb2fll1drk32g82kbs7chddv5mnpd";
+ name = "kmix-16.04.3.tar.xz";
+ };
+ };
+ kmousetool = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kmousetool-16.04.3.tar.xz";
+ sha256 = "1a4nj6c1nvi2xbnbw6iqml5gbcmfi8ymynp3lvh1h8wrclljj3kd";
+ name = "kmousetool-16.04.3.tar.xz";
+ };
+ };
+ kmouth = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kmouth-16.04.3.tar.xz";
+ sha256 = "0fwjjcyif4p4w5nzv8s7fvlfp1z3fn2g1zmkjbz7s87bssndmiz4";
+ name = "kmouth-16.04.3.tar.xz";
+ };
+ };
+ kmplot = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kmplot-16.04.3.tar.xz";
+ sha256 = "0pnawlmqr3fl0sxfll6ch4651q9cp2r1cfw7kn8fj3c9v03g6mfz";
+ name = "kmplot-16.04.3.tar.xz";
+ };
+ };
+ knavalbattle = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/knavalbattle-16.04.3.tar.xz";
+ sha256 = "1k2wl33ipbhrcbv9hnskss6l46kk05j8rqw3a2kqflql16mv7wga";
+ name = "knavalbattle-16.04.3.tar.xz";
+ };
+ };
+ knetwalk = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/knetwalk-16.04.3.tar.xz";
+ sha256 = "0jy9v11chrqkw7kddwsjg5aixs0rbkx1g2m624pa3341iqrrqbml";
+ name = "knetwalk-16.04.3.tar.xz";
+ };
+ };
+ kolf = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kolf-16.04.3.tar.xz";
+ sha256 = "0pbjkzzqfqqxl05kdb1hqfv4linzj2al6hrsp6h7gc2n5s9cq220";
+ name = "kolf-16.04.3.tar.xz";
+ };
+ };
+ kollision = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kollision-16.04.3.tar.xz";
+ sha256 = "0jwml54bd6bhgm4hygcxzw74274ddx99q45n0i4zh7lx6x7j8zji";
+ name = "kollision-16.04.3.tar.xz";
+ };
+ };
+ kolourpaint = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kolourpaint-16.04.3.tar.xz";
+ sha256 = "149w95j5fh9jxah2yjchwkcaqgd1x9qmgwnk7mzx5gxcdbawwwcc";
+ name = "kolourpaint-16.04.3.tar.xz";
+ };
+ };
+ kompare = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kompare-16.04.3.tar.xz";
+ sha256 = "0ilfk8rkb4q1lgvcki0zwlmrbv630b4iyv58g4vnf72gpgnd981v";
+ name = "kompare-16.04.3.tar.xz";
+ };
+ };
+ konquest = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/konquest-16.04.3.tar.xz";
+ sha256 = "16799yabykvfq7wcsc0vlwhws9iyf1risa8lxfdfmsh6f7yb5kf1";
+ name = "konquest-16.04.3.tar.xz";
+ };
+ };
+ konsole = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/konsole-16.04.3.tar.xz";
+ sha256 = "1dhb2xyl8qzwhpnvfkqaqcn4qpsj1d9yc28qgvwyb6kn4ygywl7n";
+ name = "konsole-16.04.3.tar.xz";
+ };
+ };
+ kontactinterface = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kontactinterface-16.04.3.tar.xz";
+ sha256 = "0fh1sy1rqs31km8v1vbv0gqrh7vsc6vdk7ab5cqx9nxkf0kqnj3v";
+ name = "kontactinterface-16.04.3.tar.xz";
+ };
+ };
+ kopete = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kopete-16.04.3.tar.xz";
+ sha256 = "1fqagh40kx4dad131vild7wxlciwm54ilsrs5ahy63xisbi2aip3";
+ name = "kopete-16.04.3.tar.xz";
+ };
+ };
+ kpat = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kpat-16.04.3.tar.xz";
+ sha256 = "02hinknnpi5cvpwdih10iizzzci9zhhcpwclw05fcwz65wig6b5r";
+ name = "kpat-16.04.3.tar.xz";
+ };
+ };
+ kpimtextedit = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kpimtextedit-16.04.3.tar.xz";
+ sha256 = "1kp3wimzvqg7dqh204kdfkqqrlb5mq895bind9g524rc4mxzd882";
+ name = "kpimtextedit-16.04.3.tar.xz";
+ };
+ };
+ kppp = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kppp-16.04.3.tar.xz";
+ sha256 = "0bnwgf3rvm3c3qgsp8301iba2yisd52miywmfblsh9z7zaf36qp2";
+ name = "kppp-16.04.3.tar.xz";
+ };
+ };
+ kqtquickcharts = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kqtquickcharts-16.04.3.tar.xz";
+ sha256 = "10hjryss35zz7mj34ix1qgxmkww9d42mqx60ywgkpjv297z06vrv";
+ name = "kqtquickcharts-16.04.3.tar.xz";
+ };
+ };
+ krdc = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/krdc-16.04.3.tar.xz";
+ sha256 = "1c4ngdc3xip72ag96fzd3fn49v5lli8g61h92c80myx57cs3qsl0";
+ name = "krdc-16.04.3.tar.xz";
+ };
+ };
+ kremotecontrol = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kremotecontrol-16.04.3.tar.xz";
+ sha256 = "0xw7fmf6npv6n845kc01apc8lqy6fpbas6427292r6qkbjqb7vgz";
+ name = "kremotecontrol-16.04.3.tar.xz";
+ };
+ };
+ kreversi = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kreversi-16.04.3.tar.xz";
+ sha256 = "1jddmjv5vnp42pgkfrgwsnnzn9bxy90d7wbhdjyqir77vb14ccj5";
+ name = "kreversi-16.04.3.tar.xz";
+ };
+ };
+ krfb = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/krfb-16.04.3.tar.xz";
+ sha256 = "13ifwp93662b8cx1hary3kx5js1w9wnpi6ykw1f5sriav3xmfyvb";
+ name = "krfb-16.04.3.tar.xz";
+ };
+ };
+ kross-interpreters = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kross-interpreters-16.04.3.tar.xz";
+ sha256 = "0nl0gb03yqn4rv0i8r6axr7rf5w416f4h5912r9004hwyf1ahzda";
+ name = "kross-interpreters-16.04.3.tar.xz";
+ };
+ };
+ kruler = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kruler-16.04.3.tar.xz";
+ sha256 = "0317sj7q7x436hzry7blpb8mnbqza7srk49r2jgiasj8i0mlxy5n";
+ name = "kruler-16.04.3.tar.xz";
+ };
+ };
+ ksaneplugin = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/ksaneplugin-16.04.3.tar.xz";
+ sha256 = "1k9zdd3h2zavp4l7npirrj3vbb4hm7gbwgmn6l9x93p8dzpw3xsw";
+ name = "ksaneplugin-16.04.3.tar.xz";
+ };
+ };
+ kscd = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kscd-16.04.3.tar.xz";
+ sha256 = "0l0wqxcajklymc21libaq1hlzbwwnzmd0s40ls1m8gfwqzrn03k4";
+ name = "kscd-16.04.3.tar.xz";
+ };
+ };
+ kshisen = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kshisen-16.04.3.tar.xz";
+ sha256 = "1q2acfvbca8jw2yd1xkyny3mplzvsbjlfzilkyc6j4ccply4zsk0";
+ name = "kshisen-16.04.3.tar.xz";
+ };
+ };
+ ksirk = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/ksirk-16.04.3.tar.xz";
+ sha256 = "03kpm7kck3d6nv2m5jmn24ni09pxg8jcfa0p6sjijpinh8n1r6aj";
+ name = "ksirk-16.04.3.tar.xz";
+ };
+ };
+ ksnakeduel = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/ksnakeduel-16.04.3.tar.xz";
+ sha256 = "0h87rbspc0b4fnq21vr9nimzjir0i0gijk2wh1lmfjvfviinw6ww";
+ name = "ksnakeduel-16.04.3.tar.xz";
+ };
+ };
+ kspaceduel = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kspaceduel-16.04.3.tar.xz";
+ sha256 = "0021pmxgh6pw777s5136hmgc83f5dy9bdk72gzfhjp20khl1dpm1";
+ name = "kspaceduel-16.04.3.tar.xz";
+ };
+ };
+ ksquares = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/ksquares-16.04.3.tar.xz";
+ sha256 = "02byd0if709zc5zrn8a17b68jfh8fi4xilybiih7nppdy9jrmbap";
+ name = "ksquares-16.04.3.tar.xz";
+ };
+ };
+ kstars = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kstars-16.04.3.tar.xz";
+ sha256 = "159gk8hslzx9lb0jgf2jv0h8p6618l9xkjdfbvydh4zvgixsh467";
+ name = "kstars-16.04.3.tar.xz";
+ };
+ };
+ ksudoku = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/ksudoku-16.04.3.tar.xz";
+ sha256 = "0x9mqzl3s9p3p8x024wllqxff4p065ajirvw05fcqac7vdvndyd0";
+ name = "ksudoku-16.04.3.tar.xz";
+ };
+ };
+ ksystemlog = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/ksystemlog-16.04.3.tar.xz";
+ sha256 = "1fzr5lbwj85zwhc3ydhijwsmm2b3sfrg67xa71vswndfi8g5gh9v";
+ name = "ksystemlog-16.04.3.tar.xz";
+ };
+ };
+ kteatime = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kteatime-16.04.3.tar.xz";
+ sha256 = "18pm3416kwi4pj71qgpm1qr83xpz5l2xjnrz9nx9vnlz9sdk44w3";
+ name = "kteatime-16.04.3.tar.xz";
+ };
+ };
+ ktimer = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/ktimer-16.04.3.tar.xz";
+ sha256 = "0n4b7hrlmr64fm3m5yhi7pg2qj0r0xsb73yzlylgsn8i7m2zjap8";
+ name = "ktimer-16.04.3.tar.xz";
+ };
+ };
+ ktnef = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/ktnef-16.04.3.tar.xz";
+ sha256 = "0ra0l0apkf9bpwwcr1i2z1qmax12qd2n01rnpff58hj1zg267aqw";
+ name = "ktnef-16.04.3.tar.xz";
+ };
+ };
+ ktouch = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/ktouch-16.04.3.tar.xz";
+ sha256 = "0c2ylp41918wqxahsnkpvq4si37nh6fps53qyd62s09d1aafh28s";
+ name = "ktouch-16.04.3.tar.xz";
+ };
+ };
+ ktp-accounts-kcm = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/ktp-accounts-kcm-16.04.3.tar.xz";
+ sha256 = "0bqcdwfm0l49dkqzj8p254bxl4wabj58g338g0i4ansky5svdfih";
+ name = "ktp-accounts-kcm-16.04.3.tar.xz";
+ };
+ };
+ ktp-approver = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/ktp-approver-16.04.3.tar.xz";
+ sha256 = "1z4sh03w0rzv70qimchgxgmqpxbzsf29mp4pr18qgxvkwcx7nm89";
+ name = "ktp-approver-16.04.3.tar.xz";
+ };
+ };
+ ktp-auth-handler = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/ktp-auth-handler-16.04.3.tar.xz";
+ sha256 = "1llqbjf89bj44wlwkp4pq4drc7qczzdf6ckqlqiidd69rwhqc8q9";
+ name = "ktp-auth-handler-16.04.3.tar.xz";
+ };
+ };
+ ktp-call-ui = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/ktp-call-ui-16.04.3.tar.xz";
+ sha256 = "07d9a28rjnb4xlmpilwzcq8dxiz3pmi57wqm1pphyw8wnf6fz1ls";
+ name = "ktp-call-ui-16.04.3.tar.xz";
+ };
+ };
+ ktp-common-internals = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/ktp-common-internals-16.04.3.tar.xz";
+ sha256 = "1l497fl1mldh926f29f51rn0d3jxkjfmacw483zgglfnl1z2igr6";
+ name = "ktp-common-internals-16.04.3.tar.xz";
+ };
+ };
+ ktp-contact-list = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/ktp-contact-list-16.04.3.tar.xz";
+ sha256 = "1s9cyxl4zkvv6j45gcdk9dkyhblz0p9w5rwdpaailx1wpx55223y";
+ name = "ktp-contact-list-16.04.3.tar.xz";
+ };
+ };
+ ktp-contact-runner = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/ktp-contact-runner-16.04.3.tar.xz";
+ sha256 = "06a72vjqrz52spjcf5gic48hmsbbshsnwws8lk18cnxxc94sbgq0";
+ name = "ktp-contact-runner-16.04.3.tar.xz";
+ };
+ };
+ ktp-desktop-applets = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/ktp-desktop-applets-16.04.3.tar.xz";
+ sha256 = "1qrwy3ghy2aja87dqyiivbcdfj24zji7765225k2djh8k4m9fl25";
+ name = "ktp-desktop-applets-16.04.3.tar.xz";
+ };
+ };
+ ktp-filetransfer-handler = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/ktp-filetransfer-handler-16.04.3.tar.xz";
+ sha256 = "0vacl8djizz6466l095snmyg400i8c8q2pxd7xjq7488pfpvl8b3";
+ name = "ktp-filetransfer-handler-16.04.3.tar.xz";
+ };
+ };
+ ktp-kded-module = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/ktp-kded-module-16.04.3.tar.xz";
+ sha256 = "0jb31d7lcby68dnq33j6yj4nqhd627i4pd0x9dpg32hf7wsc1mhs";
+ name = "ktp-kded-module-16.04.3.tar.xz";
+ };
+ };
+ ktp-send-file = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/ktp-send-file-16.04.3.tar.xz";
+ sha256 = "1fka8fg8sqh8sakaz55ja3b82nwd5a6g1w0r40s5ins8wrxinh24";
+ name = "ktp-send-file-16.04.3.tar.xz";
+ };
+ };
+ ktp-text-ui = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/ktp-text-ui-16.04.3.tar.xz";
+ sha256 = "0bdfmn4jbi8w7jnfm22hbrm3zi9i2g9byfgivlrq6iwb00lk5hxx";
+ name = "ktp-text-ui-16.04.3.tar.xz";
+ };
+ };
+ ktuberling = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/ktuberling-16.04.3.tar.xz";
+ sha256 = "1m860sim81j9gm24sjhfhx5spf3ax3m1f9jb8d7zxfc272lln1l0";
+ name = "ktuberling-16.04.3.tar.xz";
+ };
+ };
+ kturtle = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kturtle-16.04.3.tar.xz";
+ sha256 = "0bj73flllph0r4xps6kdsnjzd2vdayqyran6fd3l7k4f2qnjd70a";
+ name = "kturtle-16.04.3.tar.xz";
+ };
+ };
+ kubrick = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kubrick-16.04.3.tar.xz";
+ sha256 = "026d5sa1xbqabsf9yj4d94x0abp93z5wdivqdl7hb2zns9w7dgk5";
+ name = "kubrick-16.04.3.tar.xz";
+ };
+ };
+ kuser = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kuser-16.04.3.tar.xz";
+ sha256 = "1xcb554p0i93gyy8vm1a5aajgv0vhqxa5lpmyfz1ibrbbnm3h0h8";
+ name = "kuser-16.04.3.tar.xz";
+ };
+ };
+ kwalletmanager = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kwalletmanager-16.04.3.tar.xz";
+ sha256 = "1kfxqzidpbq88liqmh8qmxyycmfx7yyy509fbrb3c3bis0cvpgwq";
+ name = "kwalletmanager-16.04.3.tar.xz";
+ };
+ };
+ kwordquiz = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/kwordquiz-16.04.3.tar.xz";
+ sha256 = "1wnxyshncbxidksqi96h9isq9v88n6dihjv91ml5q2ld1k46sjnv";
+ name = "kwordquiz-16.04.3.tar.xz";
+ };
+ };
+ libgravatar = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/libgravatar-16.04.3.tar.xz";
+ sha256 = "1nr6p484llm4vablm41v080b8hn83254qhgw2lgrndpwl8c8wi58";
+ name = "libgravatar-16.04.3.tar.xz";
+ };
+ };
+ libkcddb = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/libkcddb-16.04.3.tar.xz";
+ sha256 = "0k6g4a1n5p4idn0aw2l134fk94py2a35hs1b7frcpvx6f395d7h8";
+ name = "libkcddb-16.04.3.tar.xz";
+ };
+ };
+ libkcompactdisc = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/libkcompactdisc-16.04.3.tar.xz";
+ sha256 = "091cijlcax2fgj8grwi7wysqq9f3z4riklv66qx89xs0kqx372c8";
+ name = "libkcompactdisc-16.04.3.tar.xz";
+ };
+ };
+ libkdcraw = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/libkdcraw-16.04.3.tar.xz";
+ sha256 = "0qxl9jcn9c6ifvc2r2i9gv6mca83ysn28m92jrhrf2wirn53s5gx";
+ name = "libkdcraw-16.04.3.tar.xz";
+ };
+ };
+ libkdeedu = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/libkdeedu-16.04.3.tar.xz";
+ sha256 = "0j0x6psx2nv6v1h0895qqzpdavz3xb4z5amqnbhjiz0kspalpa9p";
+ name = "libkdeedu-16.04.3.tar.xz";
+ };
+ };
+ libkdegames = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/libkdegames-16.04.3.tar.xz";
+ sha256 = "1ryjz1k8jfayj4cy3ih5wzbx26qy6mp9zka2bfc8h30pi0l9f8zd";
+ name = "libkdegames-16.04.3.tar.xz";
+ };
+ };
+ libkdepim = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/libkdepim-16.04.3.tar.xz";
+ sha256 = "1dxx026fd2hfwdxhwp4fswb05lx8s4wdha7lj5yk4g6s8x11m56a";
+ name = "libkdepim-16.04.3.tar.xz";
+ };
+ };
+ libkeduvocdocument = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/libkeduvocdocument-16.04.3.tar.xz";
+ sha256 = "0ajfk2yzqp1rjxllrvknhwkxv16d40fi9m24gk7j0ma19fd90xg0";
+ name = "libkeduvocdocument-16.04.3.tar.xz";
+ };
+ };
+ libkexiv2 = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/libkexiv2-16.04.3.tar.xz";
+ sha256 = "00v09mz8v7z1pan8r4qvgmsi7kyr8pmim0km88jdf3mcaswk6mia";
+ name = "libkexiv2-16.04.3.tar.xz";
+ };
+ };
+ libkface = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/libkface-16.04.3.tar.xz";
+ sha256 = "0mx706gcjb9zvi32lmlk6mp93vk6pwkb5598nm4a0qcmfdnxfdsp";
+ name = "libkface-16.04.3.tar.xz";
+ };
+ };
+ libkgeomap = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/libkgeomap-16.04.3.tar.xz";
+ sha256 = "0m5frrk6hyjzmhq7lqzx8sila9vhbxhhnlp1rwsv3gwnyq0lpf5w";
+ name = "libkgeomap-16.04.3.tar.xz";
+ };
+ };
+ libkipi = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/libkipi-16.04.3.tar.xz";
+ sha256 = "17hhs1lwckx4zgv10f8pw2y3g2arldxz5zzqi5yzf0g9zzqgv0y6";
+ name = "libkipi-16.04.3.tar.xz";
+ };
+ };
+ libkleo = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/libkleo-16.04.3.tar.xz";
+ sha256 = "1989kr8yp6s7apxgd7jb1g4ims3gff7kp6z3ywkriv27h1wq0ym3";
+ name = "libkleo-16.04.3.tar.xz";
+ };
+ };
+ libkmahjongg = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/libkmahjongg-16.04.3.tar.xz";
+ sha256 = "01lp82lyf71h7570bfgfr3inw5hxm3xs6k819gpljsb6ywjxf426";
+ name = "libkmahjongg-16.04.3.tar.xz";
+ };
+ };
+ libkomparediff2 = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/libkomparediff2-16.04.3.tar.xz";
+ sha256 = "0al466jm33mcmqwanf1mq34dqrk3dqzxpw847rfmax0npmwnsgs4";
+ name = "libkomparediff2-16.04.3.tar.xz";
+ };
+ };
+ libksane = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/libksane-16.04.3.tar.xz";
+ sha256 = "13rlpvg55ci2jcwsdl3hai9xicb41lgwsgnhpmzd1c7gpyf50c47";
+ name = "libksane-16.04.3.tar.xz";
+ };
+ };
+ libksieve = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/libksieve-16.04.3.tar.xz";
+ sha256 = "1s0mz0ndchhpaq9lzv9ml537w8mj42rvq97wxyl8hfsvcfkfkqyv";
+ name = "libksieve-16.04.3.tar.xz";
+ };
+ };
+ lokalize = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/lokalize-16.04.3.tar.xz";
+ sha256 = "1f63yzb2c9hbiyylsa7jfccr40bxwwzmz65s8ny8w3rs481i6mi1";
+ name = "lokalize-16.04.3.tar.xz";
+ };
+ };
+ lskat = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/lskat-16.04.3.tar.xz";
+ sha256 = "12xpds0nq6bbnmxvjqj3an0ji9nz698l0n0lncw37r6ijbf023my";
+ name = "lskat-16.04.3.tar.xz";
+ };
+ };
+ mailcommon = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/mailcommon-16.04.3.tar.xz";
+ sha256 = "0zls1a7dvrprbjy9l7vhyd5qcpik7z8m6s27y31rdvzjic1vpxbp";
+ name = "mailcommon-16.04.3.tar.xz";
+ };
+ };
+ mailimporter = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/mailimporter-16.04.3.tar.xz";
+ sha256 = "1w81mnnlfdq61q1q36qingwx1nsav160lw779xn9gdzb3i9ag7nz";
+ name = "mailimporter-16.04.3.tar.xz";
+ };
+ };
+ marble = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/marble-16.04.3.tar.xz";
+ sha256 = "1jriyclkdrbi5qx9znjpkmcd9l7h2fz3265b61h49d981b7sngas";
+ name = "marble-16.04.3.tar.xz";
+ };
+ };
+ messagelib = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/messagelib-16.04.3.tar.xz";
+ sha256 = "1mvjglnq8vxhrpi2nl7p78mj1idmfci5jbzv0mn15bjs4s4kld41";
+ name = "messagelib-16.04.3.tar.xz";
+ };
+ };
+ minuet = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/minuet-16.04.3.tar.xz";
+ sha256 = "13sz0a5ayis3w9d5fk9hm5jlv87vvclqwpbij6wl8df2zrqh29w4";
+ name = "minuet-16.04.3.tar.xz";
+ };
+ };
+ mplayerthumbs = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/mplayerthumbs-16.04.3.tar.xz";
+ sha256 = "01v4cc1y0rhzyxs7mhlvn1dmwgmnn8a5jn3lii6ydi2ln5s0kg7f";
+ name = "mplayerthumbs-16.04.3.tar.xz";
+ };
+ };
+ okteta = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/okteta-16.04.3.tar.xz";
+ sha256 = "0qymdfyaa3zsfjbrm4scfqg53hmfvr3c747p6wj032b9kymy0d5h";
+ name = "okteta-16.04.3.tar.xz";
+ };
+ };
+ okular = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/okular-16.04.3.tar.xz";
+ sha256 = "199q00ddqv53c6psm07xcnck9v5dmc89cj810gkkrbwwyb6r1mfd";
+ name = "okular-16.04.3.tar.xz";
+ };
+ };
+ palapeli = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/palapeli-16.04.3.tar.xz";
+ sha256 = "1j2vvk98bkldq36x0kndyw7455q6kiwmg0gvhh18kn24arw1y2as";
+ name = "palapeli-16.04.3.tar.xz";
+ };
+ };
+ parley = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/parley-16.04.3.tar.xz";
+ sha256 = "0ii0nh1m6ggza32brx6iwvl3cqsya6z2znrlxs63sra1ihlv2m1y";
+ name = "parley-16.04.3.tar.xz";
+ };
+ };
+ picmi = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/picmi-16.04.3.tar.xz";
+ sha256 = "0jsrpwgmq33510gj2flqqlhc6hwqlynsqzr883aqj9bsxc15ngil";
+ name = "picmi-16.04.3.tar.xz";
+ };
+ };
+ pimcommon = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/pimcommon-16.04.3.tar.xz";
+ sha256 = "0f5jrrdih18ar3ac43bqr3i2mqciil04aag66032izrfy4fvmp3f";
+ name = "pimcommon-16.04.3.tar.xz";
+ };
+ };
+ poxml = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/poxml-16.04.3.tar.xz";
+ sha256 = "0cv6kdrhmx7m2xg0cmrc4mifwayfvlc9vpiigwzs6928xy7ffyzn";
+ name = "poxml-16.04.3.tar.xz";
+ };
+ };
+ print-manager = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/print-manager-16.04.3.tar.xz";
+ sha256 = "1kh4malrlfchcmph9d8h1h9ljffjg8d1pfjil6gfprc6z877lmww";
+ name = "print-manager-16.04.3.tar.xz";
+ };
+ };
+ rocs = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/rocs-16.04.3.tar.xz";
+ sha256 = "1xh9hzg6kl2mcgp7yjdx2rffalis4fp6y4166s527ikjqxvwr2xw";
+ name = "rocs-16.04.3.tar.xz";
+ };
+ };
+ signon-kwallet-extension = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/signon-kwallet-extension-16.04.3.tar.xz";
+ sha256 = "015ps8zpbn15ml1s3qjwbpsf7md4sxn8232x2nl68nzv06n0bsx5";
+ name = "signon-kwallet-extension-16.04.3.tar.xz";
+ };
+ };
+ spectacle = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/spectacle-16.04.3.tar.xz";
+ sha256 = "0pxals99p5wj40x84g98rxy6g5y7jqg7x2dsw1pc8nci6l0x6p4w";
+ name = "spectacle-16.04.3.tar.xz";
+ };
+ };
+ step = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/step-16.04.3.tar.xz";
+ sha256 = "1rybd7apzp9ky094325qcgmhgwns8vvsvz6y17injxqjcwk25bxp";
+ name = "step-16.04.3.tar.xz";
+ };
+ };
+ svgpart = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/svgpart-16.04.3.tar.xz";
+ sha256 = "17xnhf9g3qcyra8h5jvvmw6gavv25lm9x57j9vl0fhfrc7s398sq";
+ name = "svgpart-16.04.3.tar.xz";
+ };
+ };
+ sweeper = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/sweeper-16.04.3.tar.xz";
+ sha256 = "1xx7im8kz08cmddy1n52ndxz67yiawabm9pyacjssr3nrs82imrh";
+ name = "sweeper-16.04.3.tar.xz";
+ };
+ };
+ syndication = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/syndication-16.04.3.tar.xz";
+ sha256 = "036wpmqkqdry6gaxf56f1yc9vn41lwmkgxdslyb7r7y0g5mxlyr5";
+ name = "syndication-16.04.3.tar.xz";
+ };
+ };
+ umbrello = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/umbrello-16.04.3.tar.xz";
+ sha256 = "05gphjb35if4882gf79vqpdpkifzp50v7g0hpbarx01b00ijb00i";
+ name = "umbrello-16.04.3.tar.xz";
+ };
+ };
+ zeroconf-ioslave = {
+ version = "16.04.3";
+ src = fetchurl {
+ url = "${mirror}/stable/applications/16.04.3/src/zeroconf-ioslave-16.04.3.tar.xz";
+ sha256 = "11bj016v0lppdqpasvqrqgljdbykar8bh1q0gwwykxh1zhk932jb";
+ name = "zeroconf-ioslave-16.04.3.tar.xz";
+ };
+ };
+}
diff --git a/pkgs/desktops/kde-5/frameworks-5.22/fetchsrcs.sh b/pkgs/desktops/kde-5/frameworks-5.22/fetchsrcs.sh
deleted file mode 100755
index 64b3ddf9abc..00000000000
--- a/pkgs/desktops/kde-5/frameworks-5.22/fetchsrcs.sh
+++ /dev/null
@@ -1,57 +0,0 @@
-#! /usr/bin/env nix-shell
-#! nix-shell -i bash -p coreutils findutils gnused nix wget
-
-set -x
-
-# The trailing slash at the end is necessary!
-RELEASE_URL="http://download.kde.org/stable/frameworks/5.22/"
-EXTRA_WGET_ARGS='-A *.tar.xz'
-
-mkdir tmp; cd tmp
-
-rm -f ../srcs.csv
-
-wget -nH -r -c --no-parent $RELEASE_URL $EXTRA_WGET_ARGS
-
-find . | while read src; do
- if [[ -f "${src}" ]]; then
- # Sanitize file name
- filename=$(basename "$src" | tr '@' '_')
- nameVersion="${filename%.tar.*}"
- name=$(echo "$nameVersion" | sed -e 's,-[[:digit:]].*,,' | sed -e 's,-opensource-src$,,')
- version=$(echo "$nameVersion" | sed -e 's,^\([[:alpha:]][[:alnum:]]*-\)\+,,')
- echo "$name,$version,$src,$filename" >>../srcs.csv
- fi
-done
-
-cat >../srcs.nix <>../srcs.nix <>../srcs.nix
-
-rm -f ../srcs.csv
-
-cd ..
diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kauth/kauth-policy-install.patch b/pkgs/desktops/kde-5/frameworks-5.22/kauth/kauth-policy-install.patch
deleted file mode 100644
index 340155256f2..00000000000
--- a/pkgs/desktops/kde-5/frameworks-5.22/kauth/kauth-policy-install.patch
+++ /dev/null
@@ -1,13 +0,0 @@
-diff --git a/KF5AuthConfig.cmake.in b/KF5AuthConfig.cmake.in
-index e859ec7..9a8ab18 100644
---- a/KF5AuthConfig.cmake.in
-+++ b/KF5AuthConfig.cmake.in
-@@ -4,7 +4,7 @@ set(KAUTH_STUB_FILES_DIR "${PACKAGE_PREFIX_DIR}/@KF5_DATA_INSTALL_DIR@/kauth/")
-
- set(KAUTH_BACKEND_NAME "@KAUTH_BACKEND_NAME@")
- set(KAUTH_HELPER_BACKEND_NAME "@KAUTH_HELPER_BACKEND_NAME@")
--set(KAUTH_POLICY_FILES_INSTALL_DIR "@KAUTH_POLICY_FILES_INSTALL_DIR@")
-+set(KAUTH_POLICY_FILES_INSTALL_DIR "\${CMAKE_INSTALL_PREFIX}/share/polkit-1/actions")
- set(KAUTH_HELPER_INSTALL_DIR "@KAUTH_HELPER_INSTALL_DIR@")
-
- find_dependency(KF5CoreAddons "@KF5_DEP_VERSION@")
diff --git a/pkgs/desktops/kde-5/frameworks-5.22/srcs.nix b/pkgs/desktops/kde-5/frameworks-5.22/srcs.nix
deleted file mode 100644
index eecb2431f80..00000000000
--- a/pkgs/desktops/kde-5/frameworks-5.22/srcs.nix
+++ /dev/null
@@ -1,581 +0,0 @@
-# DO NOT EDIT! This file is generated automatically by fetchsrcs.sh
-{ fetchurl, mirror }:
-
-{
- attica = {
- version = "5.22.0";
- src = fetchurl {
- url = "${mirror}/stable/frameworks/5.22/attica-5.22.0.tar.xz";
- sha256 = "1i26nwxyrb62icw49znlyz9y670cv7xvibzbdfnnxq9czsalwym7";
- name = "attica-5.22.0.tar.xz";
- };
- };
- baloo = {
- version = "5.22.0";
- src = fetchurl {
- url = "${mirror}/stable/frameworks/5.22/baloo-5.22.0.tar.xz";
- sha256 = "0h51j41pa8b18jkdna0247z5alqfbvgfzlxc6s6p0c7g7658z0w3";
- name = "baloo-5.22.0.tar.xz";
- };
- };
- bluez-qt = {
- version = "5.22.0";
- src = fetchurl {
- url = "${mirror}/stable/frameworks/5.22/bluez-qt-5.22.0.tar.xz";
- sha256 = "1lrkkg2f2qjj8cy968l3scdrvi506m5hr9x22d1zn6r12fvq6304";
- name = "bluez-qt-5.22.0.tar.xz";
- };
- };
- breeze-icons = {
- version = "5.22.0";
- src = fetchurl {
- url = "${mirror}/stable/frameworks/5.22/breeze-icons-5.22.0.tar.xz";
- sha256 = "162698h01cs7116la4jfygn8ka4ffjmnv7nxjl6yhcqrs25nky7l";
- name = "breeze-icons-5.22.0.tar.xz";
- };
- };
- extra-cmake-modules = {
- version = "5.22.0";
- src = fetchurl {
- url = "${mirror}/stable/frameworks/5.22/extra-cmake-modules-5.22.0.tar.xz";
- sha256 = "042ad7kp2ijp66gvz0q60glk95wj9f0fymrjyw68253rqynf3zj3";
- name = "extra-cmake-modules-5.22.0.tar.xz";
- };
- };
- frameworkintegration = {
- version = "5.22.0";
- src = fetchurl {
- url = "${mirror}/stable/frameworks/5.22/frameworkintegration-5.22.0.tar.xz";
- sha256 = "0jf9y738r86ss520hqhfll8prrfpha73myj99hbz3sqrix7b0va9";
- name = "frameworkintegration-5.22.0.tar.xz";
- };
- };
- kactivities = {
- version = "5.22.0";
- src = fetchurl {
- url = "${mirror}/stable/frameworks/5.22/kactivities-5.22.0.tar.xz";
- sha256 = "068jhc6lw47hcibvys968m4wa1b278ccy2gas9iymzzys1ccv6kr";
- name = "kactivities-5.22.0.tar.xz";
- };
- };
- kactivities-stats = {
- version = "5.22.0";
- src = fetchurl {
- url = "${mirror}/stable/frameworks/5.22/kactivities-stats-5.22.0.tar.xz";
- sha256 = "1gx5wm337nwbwqb56xvl16vhk47v7a5qpx5hhn7ygpfxkgxh6wiq";
- name = "kactivities-stats-5.22.0.tar.xz";
- };
- };
- kapidox = {
- version = "5.22.0";
- src = fetchurl {
- url = "${mirror}/stable/frameworks/5.22/kapidox-5.22.0.tar.xz";
- sha256 = "0cs133g1rvbcrdvy7zvk5c14p5iwwn0x0m76c2ifal0g8qh0hmd1";
- name = "kapidox-5.22.0.tar.xz";
- };
- };
- karchive = {
- version = "5.22.0";
- src = fetchurl {
- url = "${mirror}/stable/frameworks/5.22/karchive-5.22.0.tar.xz";
- sha256 = "1ywd38j6jpwj21kdp504gs0pfvlnvg6ak8hjk6a269pkci3dyf91";
- name = "karchive-5.22.0.tar.xz";
- };
- };
- kauth = {
- version = "5.22.0";
- src = fetchurl {
- url = "${mirror}/stable/frameworks/5.22/kauth-5.22.0.tar.xz";
- sha256 = "1c0kp25g57nldh1x5vfq9fypbznc991jrry2lydvb06d3jh44vbn";
- name = "kauth-5.22.0.tar.xz";
- };
- };
- kbookmarks = {
- version = "5.22.0";
- src = fetchurl {
- url = "${mirror}/stable/frameworks/5.22/kbookmarks-5.22.0.tar.xz";
- sha256 = "093rlg8pprjg7ba52dh2z9j2x5ir7s9kjas6ni4fqxxzpp15hh3p";
- name = "kbookmarks-5.22.0.tar.xz";
- };
- };
- kcmutils = {
- version = "5.22.0";
- src = fetchurl {
- url = "${mirror}/stable/frameworks/5.22/kcmutils-5.22.0.tar.xz";
- sha256 = "1s7gw9l2n92rrcdzy9pnwq8na65axd8bkk9nphyhpbxk76zj1gyy";
- name = "kcmutils-5.22.0.tar.xz";
- };
- };
- kcodecs = {
- version = "5.22.0";
- src = fetchurl {
- url = "${mirror}/stable/frameworks/5.22/kcodecs-5.22.0.tar.xz";
- sha256 = "0rlqs8m2ib2kkj679gn74zqqxzsddfcbywpgwlcd6b992i4cad87";
- name = "kcodecs-5.22.0.tar.xz";
- };
- };
- kcompletion = {
- version = "5.22.0";
- src = fetchurl {
- url = "${mirror}/stable/frameworks/5.22/kcompletion-5.22.0.tar.xz";
- sha256 = "07jqjrddigdqsdy2adzari7g626sakilg9d765s75vncv5amrvzy";
- name = "kcompletion-5.22.0.tar.xz";
- };
- };
- kconfig = {
- version = "5.22.0";
- src = fetchurl {
- url = "${mirror}/stable/frameworks/5.22/kconfig-5.22.0.tar.xz";
- sha256 = "0n0dzgba96pkabbvk1cfm34j9jirgbd84xha6adscpxs28506cg0";
- name = "kconfig-5.22.0.tar.xz";
- };
- };
- kconfigwidgets = {
- version = "5.22.0";
- src = fetchurl {
- url = "${mirror}/stable/frameworks/5.22/kconfigwidgets-5.22.0.tar.xz";
- sha256 = "0jr6ygd8c0gap2ay2685wj3fx4scrahzbpaaj4bjhq2s79nvmlyg";
- name = "kconfigwidgets-5.22.0.tar.xz";
- };
- };
- kcoreaddons = {
- version = "5.22.0";
- src = fetchurl {
- url = "${mirror}/stable/frameworks/5.22/kcoreaddons-5.22.0.tar.xz";
- sha256 = "0zzwcw0n9bd3pi3rv7cdwynb67x1bqf1bh3s59hjipf9d412wl15";
- name = "kcoreaddons-5.22.0.tar.xz";
- };
- };
- kcrash = {
- version = "5.22.0";
- src = fetchurl {
- url = "${mirror}/stable/frameworks/5.22/kcrash-5.22.0.tar.xz";
- sha256 = "1r0i9ngk5jypzfhhssjm5b3n5sqli3jhh896r1qwpfcq9w15x7qg";
- name = "kcrash-5.22.0.tar.xz";
- };
- };
- kdbusaddons = {
- version = "5.22.0";
- src = fetchurl {
- url = "${mirror}/stable/frameworks/5.22/kdbusaddons-5.22.0.tar.xz";
- sha256 = "0w9spb5i5qi2r5kfgrylpvw6mwjxfhd4j7yslc9jy0q4y8j3f1dk";
- name = "kdbusaddons-5.22.0.tar.xz";
- };
- };
- kdeclarative = {
- version = "5.22.0";
- src = fetchurl {
- url = "${mirror}/stable/frameworks/5.22/kdeclarative-5.22.0.tar.xz";
- sha256 = "06n6wqy8dm2hv6dbar453z4rmiyf6f34zak1fhs38sqkfy6syva1";
- name = "kdeclarative-5.22.0.tar.xz";
- };
- };
- kded = {
- version = "5.22.0";
- src = fetchurl {
- url = "${mirror}/stable/frameworks/5.22/kded-5.22.0.tar.xz";
- sha256 = "1zfggr6pmiypw5bnh6hr22agms589hm7hw35nhfhc4r7qd1drf6q";
- name = "kded-5.22.0.tar.xz";
- };
- };
- kdelibs4support = {
- version = "5.22.0";
- src = fetchurl {
- url = "${mirror}/stable/frameworks/5.22/portingAids/kdelibs4support-5.22.0.tar.xz";
- sha256 = "1mmrr54kkicnz4pjksnrh40md80m18mr5ba2la7kwjxmdyl6znm3";
- name = "kdelibs4support-5.22.0.tar.xz";
- };
- };
- kdesignerplugin = {
- version = "5.22.0";
- src = fetchurl {
- url = "${mirror}/stable/frameworks/5.22/kdesignerplugin-5.22.0.tar.xz";
- sha256 = "0cfnmpz845l39qpy5r6pknzm78js81bci9qi0xfnrf8gm3lvjg5l";
- name = "kdesignerplugin-5.22.0.tar.xz";
- };
- };
- kdesu = {
- version = "5.22.0";
- src = fetchurl {
- url = "${mirror}/stable/frameworks/5.22/kdesu-5.22.0.tar.xz";
- sha256 = "1jsr9m32dyzvsvsy743h3jih8v4yyr2zf15hh908anbamp7449bd";
- name = "kdesu-5.22.0.tar.xz";
- };
- };
- kdewebkit = {
- version = "5.22.0";
- src = fetchurl {
- url = "${mirror}/stable/frameworks/5.22/kdewebkit-5.22.0.tar.xz";
- sha256 = "0rmxa4j3jx7689jcf45fghh7jff16x34xrzrw0clg3fj4w47ik0b";
- name = "kdewebkit-5.22.0.tar.xz";
- };
- };
- kdnssd = {
- version = "5.22.0";
- src = fetchurl {
- url = "${mirror}/stable/frameworks/5.22/kdnssd-5.22.0.tar.xz";
- sha256 = "1b0s5gwn51zh2h5w2mzpzjj86qaz6pl7gzqf5q88vpzsiqjg14vp";
- name = "kdnssd-5.22.0.tar.xz";
- };
- };
- kdoctools = {
- version = "5.22.0";
- src = fetchurl {
- url = "${mirror}/stable/frameworks/5.22/kdoctools-5.22.0.tar.xz";
- sha256 = "0y4ayms0hyj4nv5flr0a198lb545plfbxkwhqsmzc0c77gagcw5k";
- name = "kdoctools-5.22.0.tar.xz";
- };
- };
- kemoticons = {
- version = "5.22.0";
- src = fetchurl {
- url = "${mirror}/stable/frameworks/5.22/kemoticons-5.22.0.tar.xz";
- sha256 = "1swrpqm441ngmps00hr15pgvw1382zbf2q2ncndj7i30725nfq1g";
- name = "kemoticons-5.22.0.tar.xz";
- };
- };
- kfilemetadata = {
- version = "5.22.0";
- src = fetchurl {
- url = "${mirror}/stable/frameworks/5.22/kfilemetadata-5.22.0.tar.xz";
- sha256 = "0p6s1r2qv5396ghkw79wyf7yf4hzj562yp83wgplwmr6lgh4b2fc";
- name = "kfilemetadata-5.22.0.tar.xz";
- };
- };
- kglobalaccel = {
- version = "5.22.0";
- src = fetchurl {
- url = "${mirror}/stable/frameworks/5.22/kglobalaccel-5.22.0.tar.xz";
- sha256 = "1m1aviz5g0vwk58j0z9jckz4rzns7md7mr3zlqqpvp1r032qc30k";
- name = "kglobalaccel-5.22.0.tar.xz";
- };
- };
- kguiaddons = {
- version = "5.22.0";
- src = fetchurl {
- url = "${mirror}/stable/frameworks/5.22/kguiaddons-5.22.0.tar.xz";
- sha256 = "10chxcvf4hxyfkgprsj7rg4dv788dzqjgsm6m0a4m6qmx12zhckh";
- name = "kguiaddons-5.22.0.tar.xz";
- };
- };
- khtml = {
- version = "5.22.0";
- src = fetchurl {
- url = "${mirror}/stable/frameworks/5.22/portingAids/khtml-5.22.0.tar.xz";
- sha256 = "1w5q41fjrqqq91j3dvhc9lrrhvrwy1izws6af7srh768gn6yig0m";
- name = "khtml-5.22.0.tar.xz";
- };
- };
- ki18n = {
- version = "5.22.0";
- src = fetchurl {
- url = "${mirror}/stable/frameworks/5.22/ki18n-5.22.0.tar.xz";
- sha256 = "0881y42h5k8ik6lf7pfsylch1ldksc5m4qm3gvshp8aazic8iyzd";
- name = "ki18n-5.22.0.tar.xz";
- };
- };
- kiconthemes = {
- version = "5.22.0";
- src = fetchurl {
- url = "${mirror}/stable/frameworks/5.22/kiconthemes-5.22.0.tar.xz";
- sha256 = "1bh76f7kpha4c5qs3n8z6g1qah0rsk99yqcz8j1dlss4ws65j9j3";
- name = "kiconthemes-5.22.0.tar.xz";
- };
- };
- kidletime = {
- version = "5.22.0";
- src = fetchurl {
- url = "${mirror}/stable/frameworks/5.22/kidletime-5.22.0.tar.xz";
- sha256 = "0dgw0rin6wz31xdspbjpvcs5x1b163ggqkz2zn73zavbr7f5jypc";
- name = "kidletime-5.22.0.tar.xz";
- };
- };
- kimageformats = {
- version = "5.22.0";
- src = fetchurl {
- url = "${mirror}/stable/frameworks/5.22/kimageformats-5.22.0.tar.xz";
- sha256 = "0g3f73m3yj5iqivcsn83pm32w4l13zbyzz5azgm3jjfhgnd00c18";
- name = "kimageformats-5.22.0.tar.xz";
- };
- };
- kinit = {
- version = "5.22.0";
- src = fetchurl {
- url = "${mirror}/stable/frameworks/5.22/kinit-5.22.0.tar.xz";
- sha256 = "1f71y6gf00p4jkqvpzyjlbnwc4gvjl2h4wi61xhpjz8lrmpsb6ac";
- name = "kinit-5.22.0.tar.xz";
- };
- };
- kio = {
- version = "5.22.0";
- src = fetchurl {
- url = "${mirror}/stable/frameworks/5.22/kio-5.22.0.tar.xz";
- sha256 = "02knylbs9ymb8qm7fkp3dkdqc9cvgw2dwfl4phzl1iax2fx2zkqy";
- name = "kio-5.22.0.tar.xz";
- };
- };
- kitemmodels = {
- version = "5.22.0";
- src = fetchurl {
- url = "${mirror}/stable/frameworks/5.22/kitemmodels-5.22.0.tar.xz";
- sha256 = "03gnglfhpzrc67bi0xdcy4xdhankic5cqnpahp9wwsis12ac6i83";
- name = "kitemmodels-5.22.0.tar.xz";
- };
- };
- kitemviews = {
- version = "5.22.0";
- src = fetchurl {
- url = "${mirror}/stable/frameworks/5.22/kitemviews-5.22.0.tar.xz";
- sha256 = "0nhwg7bmv1c8p6pnbfsz96mq9wbq339ir9yp7kfnhfrg0wqi44ar";
- name = "kitemviews-5.22.0.tar.xz";
- };
- };
- kjobwidgets = {
- version = "5.22.0";
- src = fetchurl {
- url = "${mirror}/stable/frameworks/5.22/kjobwidgets-5.22.0.tar.xz";
- sha256 = "1inqrb0j64b3519qcr0wk9izd4c1zi4kfjc8wa04s2kwxg6z7j1p";
- name = "kjobwidgets-5.22.0.tar.xz";
- };
- };
- kjs = {
- version = "5.22.0";
- src = fetchurl {
- url = "${mirror}/stable/frameworks/5.22/portingAids/kjs-5.22.0.tar.xz";
- sha256 = "0xqlkhm8r021xd5a25nwp9a4r7cbjkpqkc89fjma8qyvq5785qxw";
- name = "kjs-5.22.0.tar.xz";
- };
- };
- kjsembed = {
- version = "5.22.0";
- src = fetchurl {
- url = "${mirror}/stable/frameworks/5.22/portingAids/kjsembed-5.22.0.tar.xz";
- sha256 = "0fcc1lm5l8r0lj35r3niliyn8zxr90by2vjc9krzfm4i7kwij7wb";
- name = "kjsembed-5.22.0.tar.xz";
- };
- };
- kmediaplayer = {
- version = "5.22.0";
- src = fetchurl {
- url = "${mirror}/stable/frameworks/5.22/portingAids/kmediaplayer-5.22.0.tar.xz";
- sha256 = "1pn3fmaixcxba1wl63hblhnpj7jblrala9j3xrj8z2abhhfl5vzy";
- name = "kmediaplayer-5.22.0.tar.xz";
- };
- };
- knewstuff = {
- version = "5.22.0";
- src = fetchurl {
- url = "${mirror}/stable/frameworks/5.22/knewstuff-5.22.0.tar.xz";
- sha256 = "1gr566k95bg58hpn569kkarmlxk5rp12jcxdp7ksw1j8mp6la7a7";
- name = "knewstuff-5.22.0.tar.xz";
- };
- };
- knotifications = {
- version = "5.22.0";
- src = fetchurl {
- url = "${mirror}/stable/frameworks/5.22/knotifications-5.22.0.tar.xz";
- sha256 = "0fh6ahfr9pa8643i1ma40h7afnd1jn0m6dw5f9hgndxhwi6h3bps";
- name = "knotifications-5.22.0.tar.xz";
- };
- };
- knotifyconfig = {
- version = "5.22.0";
- src = fetchurl {
- url = "${mirror}/stable/frameworks/5.22/knotifyconfig-5.22.0.tar.xz";
- sha256 = "0p4g7wv2w6cpjzhlkh7rnzzhwcj86sgz98fl97is1fl65q8f0szr";
- name = "knotifyconfig-5.22.0.tar.xz";
- };
- };
- kpackage = {
- version = "5.22.0";
- src = fetchurl {
- url = "${mirror}/stable/frameworks/5.22/kpackage-5.22.0.tar.xz";
- sha256 = "1nbwjc4n8f2iisdckm5ll3qyls1sq02ia6vmhj4mfm4w44q4s1bk";
- name = "kpackage-5.22.0.tar.xz";
- };
- };
- kparts = {
- version = "5.22.0";
- src = fetchurl {
- url = "${mirror}/stable/frameworks/5.22/kparts-5.22.0.tar.xz";
- sha256 = "091wm2flhqgpqsffdd8nlwbdffvsj7cyd0c46949d9chm64723cg";
- name = "kparts-5.22.0.tar.xz";
- };
- };
- kpeople = {
- version = "5.22.0";
- src = fetchurl {
- url = "${mirror}/stable/frameworks/5.22/kpeople-5.22.0.tar.xz";
- sha256 = "0rbwxzmyaig92vcd26v1yqd13swk15pp0lpvjp6hdpxbhpxijyf7";
- name = "kpeople-5.22.0.tar.xz";
- };
- };
- kplotting = {
- version = "5.22.0";
- src = fetchurl {
- url = "${mirror}/stable/frameworks/5.22/kplotting-5.22.0.tar.xz";
- sha256 = "0ljiyxa2320v937lkqkxx3jc7sg45z4vjl74lxfybwspgs6y5hqk";
- name = "kplotting-5.22.0.tar.xz";
- };
- };
- kpty = {
- version = "5.22.0";
- src = fetchurl {
- url = "${mirror}/stable/frameworks/5.22/kpty-5.22.0.tar.xz";
- sha256 = "12lfwv45d06ksx5xc4hgk075mj2ckkqpc8mksx99f700yvcyk1db";
- name = "kpty-5.22.0.tar.xz";
- };
- };
- kross = {
- version = "5.22.0";
- src = fetchurl {
- url = "${mirror}/stable/frameworks/5.22/portingAids/kross-5.22.0.tar.xz";
- sha256 = "1ika9ha06vspjn8hy6mv5vi5n7xj7sj45csmjjxcqwhn2wlcdj4l";
- name = "kross-5.22.0.tar.xz";
- };
- };
- krunner = {
- version = "5.22.0";
- src = fetchurl {
- url = "${mirror}/stable/frameworks/5.22/krunner-5.22.0.tar.xz";
- sha256 = "09jhdy48dciqd8hwxmvjyw547fr48mzns5f0yknsnnb8a47yhrd4";
- name = "krunner-5.22.0.tar.xz";
- };
- };
- kservice = {
- version = "5.22.0";
- src = fetchurl {
- url = "${mirror}/stable/frameworks/5.22/kservice-5.22.0.tar.xz";
- sha256 = "1c5q8cxghbji3imamjbxymcd5cz9a9rapqriy1wmskys3ms3fag9";
- name = "kservice-5.22.0.tar.xz";
- };
- };
- ktexteditor = {
- version = "5.22.0";
- src = fetchurl {
- url = "${mirror}/stable/frameworks/5.22/ktexteditor-5.22.0.tar.xz";
- sha256 = "1jsa8cfq0245bsris46i3k8f8g7l0sc5jpj4iwkxrl9m0nk5j1v0";
- name = "ktexteditor-5.22.0.tar.xz";
- };
- };
- ktextwidgets = {
- version = "5.22.0";
- src = fetchurl {
- url = "${mirror}/stable/frameworks/5.22/ktextwidgets-5.22.0.tar.xz";
- sha256 = "01a2vkdpq06libap5g6a90jrcc0phmfd859kilraqyxhbrp9sw5l";
- name = "ktextwidgets-5.22.0.tar.xz";
- };
- };
- kunitconversion = {
- version = "5.22.0";
- src = fetchurl {
- url = "${mirror}/stable/frameworks/5.22/kunitconversion-5.22.0.tar.xz";
- sha256 = "1phbqxddp8ks36nr4982n4bwwx7d6yxll629gpb0ddc4yfsjv48p";
- name = "kunitconversion-5.22.0.tar.xz";
- };
- };
- kwallet = {
- version = "5.22.0";
- src = fetchurl {
- url = "${mirror}/stable/frameworks/5.22/kwallet-5.22.0.tar.xz";
- sha256 = "1i20kp1gkdiwmwy8vf7vd6r89qx6lpxwr6nib35khp93ci9l3838";
- name = "kwallet-5.22.0.tar.xz";
- };
- };
- kwayland = {
- version = "5.22.0";
- src = fetchurl {
- url = "${mirror}/stable/frameworks/5.22/kwayland-5.22.0.tar.xz";
- sha256 = "1jfibqai7vy1vklj19x7z0r4qc0rc7yd5r4wpp98mmdwzpnhlrgy";
- name = "kwayland-5.22.0.tar.xz";
- };
- };
- kwidgetsaddons = {
- version = "5.22.0";
- src = fetchurl {
- url = "${mirror}/stable/frameworks/5.22/kwidgetsaddons-5.22.0.tar.xz";
- sha256 = "1bwmnfa1l3s33nc6b0ryk78gxhrynyd07ffqw7mw211r34pg4c14";
- name = "kwidgetsaddons-5.22.0.tar.xz";
- };
- };
- kwindowsystem = {
- version = "5.22.0";
- src = fetchurl {
- url = "${mirror}/stable/frameworks/5.22/kwindowsystem-5.22.0.tar.xz";
- sha256 = "05jwmjqk03pc2g09rnyb9qh0dfi0c46awbaxgc7i7z4i9swv1k30";
- name = "kwindowsystem-5.22.0.tar.xz";
- };
- };
- kxmlgui = {
- version = "5.22.0";
- src = fetchurl {
- url = "${mirror}/stable/frameworks/5.22/kxmlgui-5.22.0.tar.xz";
- sha256 = "16q222jvnsd6pj49ih44qpks97lcjsamcpjg5x5ysn4a6w5h4mds";
- name = "kxmlgui-5.22.0.tar.xz";
- };
- };
- kxmlrpcclient = {
- version = "5.22.0";
- src = fetchurl {
- url = "${mirror}/stable/frameworks/5.22/kxmlrpcclient-5.22.0.tar.xz";
- sha256 = "00qj4pa7r0ny6pwivq6qqw80v4dsg9lgwd2qdlp9kddi0f8i2p1b";
- name = "kxmlrpcclient-5.22.0.tar.xz";
- };
- };
- modemmanager-qt = {
- version = "5.22.0";
- src = fetchurl {
- url = "${mirror}/stable/frameworks/5.22/modemmanager-qt-5.22.0.tar.xz";
- sha256 = "1b1gx33vrw7qcvy3zlc01x7wlalx5csfl590gfxlf870i3m7dnhf";
- name = "modemmanager-qt-5.22.0.tar.xz";
- };
- };
- networkmanager-qt = {
- version = "5.22.0";
- src = fetchurl {
- url = "${mirror}/stable/frameworks/5.22/networkmanager-qt-5.22.0.tar.xz";
- sha256 = "03b710n4107qw9c3p7wdma9fz9vqixrjydfa02f7vgzw1rixmmqq";
- name = "networkmanager-qt-5.22.0.tar.xz";
- };
- };
- oxygen-icons5 = {
- version = "5.22.0";
- src = fetchurl {
- url = "${mirror}/stable/frameworks/5.22/oxygen-icons5-5.22.0.tar.xz";
- sha256 = "1m3f5wrgahqlzzl3jyfymh6n515fsmsi8ckimvma2d8qqpb0dc2l";
- name = "oxygen-icons5-5.22.0.tar.xz";
- };
- };
- plasma-framework = {
- version = "5.22.0";
- src = fetchurl {
- url = "${mirror}/stable/frameworks/5.22/plasma-framework-5.22.0.tar.xz";
- sha256 = "1wn7ib030dw8rj5dprl8bzz4c3dv4nlmrfb9wgr6x78w4ac967zc";
- name = "plasma-framework-5.22.0.tar.xz";
- };
- };
- solid = {
- version = "5.22.0";
- src = fetchurl {
- url = "${mirror}/stable/frameworks/5.22/solid-5.22.0.tar.xz";
- sha256 = "04a7z5g2ylhbj2572wa6w51cs98ddn4d7lfirzawxf0f8d2693w2";
- name = "solid-5.22.0.tar.xz";
- };
- };
- sonnet = {
- version = "5.22.0";
- src = fetchurl {
- url = "${mirror}/stable/frameworks/5.22/sonnet-5.22.0.tar.xz";
- sha256 = "0y8l3mfa65a59vjj424ga87q3bixx8inicp2jp9zi36p4g7xwww8";
- name = "sonnet-5.22.0.tar.xz";
- };
- };
- threadweaver = {
- version = "5.22.0";
- src = fetchurl {
- url = "${mirror}/stable/frameworks/5.22/threadweaver-5.22.0.tar.xz";
- sha256 = "1ax58k6nl8za79j99spa2r76m9xz8ih9iflksgpng40wlnkwlp59";
- name = "threadweaver-5.22.0.tar.xz";
- };
- };
-}
diff --git a/pkgs/desktops/kde-5/frameworks-5.22/attica.nix b/pkgs/desktops/kde-5/frameworks/attica.nix
similarity index 100%
rename from pkgs/desktops/kde-5/frameworks-5.22/attica.nix
rename to pkgs/desktops/kde-5/frameworks/attica.nix
diff --git a/pkgs/desktops/kde-5/frameworks-5.22/baloo.nix b/pkgs/desktops/kde-5/frameworks/baloo.nix
similarity index 100%
rename from pkgs/desktops/kde-5/frameworks-5.22/baloo.nix
rename to pkgs/desktops/kde-5/frameworks/baloo.nix
diff --git a/pkgs/desktops/kde-5/frameworks-5.22/bluez-qt.nix b/pkgs/desktops/kde-5/frameworks/bluez-qt.nix
similarity index 100%
rename from pkgs/desktops/kde-5/frameworks-5.22/bluez-qt.nix
rename to pkgs/desktops/kde-5/frameworks/bluez-qt.nix
diff --git a/pkgs/desktops/kde-5/frameworks-5.22/breeze-icons.nix b/pkgs/desktops/kde-5/frameworks/breeze-icons.nix
similarity index 100%
rename from pkgs/desktops/kde-5/frameworks-5.22/breeze-icons.nix
rename to pkgs/desktops/kde-5/frameworks/breeze-icons.nix
diff --git a/pkgs/desktops/kde-5/frameworks-5.22/default.nix b/pkgs/desktops/kde-5/frameworks/default.nix
similarity index 90%
rename from pkgs/desktops/kde-5/frameworks-5.22/default.nix
rename to pkgs/desktops/kde-5/frameworks/default.nix
index 8c60c4d8856..bff2b394038 100644
--- a/pkgs/desktops/kde-5/frameworks-5.22/default.nix
+++ b/pkgs/desktops/kde-5/frameworks/default.nix
@@ -1,15 +1,13 @@
-# Maintainer's Notes:
-#
-# Minor updates:
-# 1. Edit ./fetchsrcs.sh to point to the updated URL.
-# 2. Run ./fetchsrcs.sh.
-# 3. Build and enjoy.
-#
-# Major updates:
-# We prefer not to immediately overwrite older versions with major updates, so
-# make a copy of this directory first. After copying, be sure to delete ./tmp
-# if it exists. Then follow the minor update instructions. Be sure to check if
-# any new components have been added and package them as necessary.
+/*
+
+# Updates
+
+1. Update the URL in `maintainers/scripts/generate-kde-frameworks.sh` and
+ run that script from the top of the Nixpkgs tree.
+2. Check that the new packages build correctly.
+3. Commit the changes and open a pull request.
+
+*/
{ pkgs, debug ? false }:
@@ -104,6 +102,7 @@ let
ktextwidgets = callPackage ./ktextwidgets.nix {};
kunitconversion = callPackage ./kunitconversion.nix {};
kwallet = callPackage ./kwallet.nix {};
+ kwayland = callPackage ./kwayland.nix {};
kwidgetsaddons = callPackage ./kwidgetsaddons.nix {};
kwindowsystem = callPackage ./kwindowsystem.nix {};
kxmlgui = callPackage ./kxmlgui.nix {};
diff --git a/pkgs/desktops/kde-5/frameworks-5.22/extra-cmake-modules/default.nix b/pkgs/desktops/kde-5/frameworks/extra-cmake-modules/default.nix
similarity index 100%
rename from pkgs/desktops/kde-5/frameworks-5.22/extra-cmake-modules/default.nix
rename to pkgs/desktops/kde-5/frameworks/extra-cmake-modules/default.nix
diff --git a/pkgs/desktops/kde-5/frameworks-5.22/extra-cmake-modules/nix-lib-path.patch b/pkgs/desktops/kde-5/frameworks/extra-cmake-modules/nix-lib-path.patch
similarity index 100%
rename from pkgs/desktops/kde-5/frameworks-5.22/extra-cmake-modules/nix-lib-path.patch
rename to pkgs/desktops/kde-5/frameworks/extra-cmake-modules/nix-lib-path.patch
diff --git a/pkgs/desktops/kde-5/frameworks-5.22/extra-cmake-modules/series b/pkgs/desktops/kde-5/frameworks/extra-cmake-modules/series
similarity index 100%
rename from pkgs/desktops/kde-5/frameworks-5.22/extra-cmake-modules/series
rename to pkgs/desktops/kde-5/frameworks/extra-cmake-modules/series
diff --git a/pkgs/desktops/kde-5/frameworks-5.22/extra-cmake-modules/setup-hook.sh b/pkgs/desktops/kde-5/frameworks/extra-cmake-modules/setup-hook.sh
similarity index 100%
rename from pkgs/desktops/kde-5/frameworks-5.22/extra-cmake-modules/setup-hook.sh
rename to pkgs/desktops/kde-5/frameworks/extra-cmake-modules/setup-hook.sh
diff --git a/pkgs/desktops/kde-5/frameworks-5.22/frameworkintegration.nix b/pkgs/desktops/kde-5/frameworks/frameworkintegration.nix
similarity index 100%
rename from pkgs/desktops/kde-5/frameworks-5.22/frameworkintegration.nix
rename to pkgs/desktops/kde-5/frameworks/frameworkintegration.nix
diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kactivities-stats.nix b/pkgs/desktops/kde-5/frameworks/kactivities-stats.nix
similarity index 100%
rename from pkgs/desktops/kde-5/frameworks-5.22/kactivities-stats.nix
rename to pkgs/desktops/kde-5/frameworks/kactivities-stats.nix
diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kactivities.nix b/pkgs/desktops/kde-5/frameworks/kactivities.nix
similarity index 100%
rename from pkgs/desktops/kde-5/frameworks-5.22/kactivities.nix
rename to pkgs/desktops/kde-5/frameworks/kactivities.nix
diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kapidox.nix b/pkgs/desktops/kde-5/frameworks/kapidox.nix
similarity index 100%
rename from pkgs/desktops/kde-5/frameworks-5.22/kapidox.nix
rename to pkgs/desktops/kde-5/frameworks/kapidox.nix
diff --git a/pkgs/desktops/kde-5/frameworks-5.22/karchive.nix b/pkgs/desktops/kde-5/frameworks/karchive.nix
similarity index 100%
rename from pkgs/desktops/kde-5/frameworks-5.22/karchive.nix
rename to pkgs/desktops/kde-5/frameworks/karchive.nix
diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kauth/cmake-install-paths.patch b/pkgs/desktops/kde-5/frameworks/kauth/cmake-install-paths.patch
similarity index 100%
rename from pkgs/desktops/kde-5/frameworks-5.22/kauth/cmake-install-paths.patch
rename to pkgs/desktops/kde-5/frameworks/kauth/cmake-install-paths.patch
diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kauth/default.nix b/pkgs/desktops/kde-5/frameworks/kauth/default.nix
similarity index 100%
rename from pkgs/desktops/kde-5/frameworks-5.22/kauth/default.nix
rename to pkgs/desktops/kde-5/frameworks/kauth/default.nix
diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kauth/series b/pkgs/desktops/kde-5/frameworks/kauth/series
similarity index 100%
rename from pkgs/desktops/kde-5/frameworks-5.22/kauth/series
rename to pkgs/desktops/kde-5/frameworks/kauth/series
diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kbookmarks.nix b/pkgs/desktops/kde-5/frameworks/kbookmarks.nix
similarity index 100%
rename from pkgs/desktops/kde-5/frameworks-5.22/kbookmarks.nix
rename to pkgs/desktops/kde-5/frameworks/kbookmarks.nix
diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kcmutils/0001-qdiriterator-follow-symlinks.patch b/pkgs/desktops/kde-5/frameworks/kcmutils/0001-qdiriterator-follow-symlinks.patch
similarity index 100%
rename from pkgs/desktops/kde-5/frameworks-5.22/kcmutils/0001-qdiriterator-follow-symlinks.patch
rename to pkgs/desktops/kde-5/frameworks/kcmutils/0001-qdiriterator-follow-symlinks.patch
diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kcmutils/default.nix b/pkgs/desktops/kde-5/frameworks/kcmutils/default.nix
similarity index 100%
rename from pkgs/desktops/kde-5/frameworks-5.22/kcmutils/default.nix
rename to pkgs/desktops/kde-5/frameworks/kcmutils/default.nix
diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kcodecs.nix b/pkgs/desktops/kde-5/frameworks/kcodecs.nix
similarity index 100%
rename from pkgs/desktops/kde-5/frameworks-5.22/kcodecs.nix
rename to pkgs/desktops/kde-5/frameworks/kcodecs.nix
diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kcompletion.nix b/pkgs/desktops/kde-5/frameworks/kcompletion.nix
similarity index 100%
rename from pkgs/desktops/kde-5/frameworks-5.22/kcompletion.nix
rename to pkgs/desktops/kde-5/frameworks/kcompletion.nix
diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kconfig.nix b/pkgs/desktops/kde-5/frameworks/kconfig.nix
similarity index 100%
rename from pkgs/desktops/kde-5/frameworks-5.22/kconfig.nix
rename to pkgs/desktops/kde-5/frameworks/kconfig.nix
diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kconfigwidgets/0001-qdiriterator-follow-symlinks.patch b/pkgs/desktops/kde-5/frameworks/kconfigwidgets/0001-qdiriterator-follow-symlinks.patch
similarity index 100%
rename from pkgs/desktops/kde-5/frameworks-5.22/kconfigwidgets/0001-qdiriterator-follow-symlinks.patch
rename to pkgs/desktops/kde-5/frameworks/kconfigwidgets/0001-qdiriterator-follow-symlinks.patch
diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kconfigwidgets/default.nix b/pkgs/desktops/kde-5/frameworks/kconfigwidgets/default.nix
similarity index 100%
rename from pkgs/desktops/kde-5/frameworks-5.22/kconfigwidgets/default.nix
rename to pkgs/desktops/kde-5/frameworks/kconfigwidgets/default.nix
diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kcoreaddons.nix b/pkgs/desktops/kde-5/frameworks/kcoreaddons.nix
similarity index 100%
rename from pkgs/desktops/kde-5/frameworks-5.22/kcoreaddons.nix
rename to pkgs/desktops/kde-5/frameworks/kcoreaddons.nix
diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kcrash.nix b/pkgs/desktops/kde-5/frameworks/kcrash.nix
similarity index 100%
rename from pkgs/desktops/kde-5/frameworks-5.22/kcrash.nix
rename to pkgs/desktops/kde-5/frameworks/kcrash.nix
diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kdbusaddons.nix b/pkgs/desktops/kde-5/frameworks/kdbusaddons.nix
similarity index 100%
rename from pkgs/desktops/kde-5/frameworks-5.22/kdbusaddons.nix
rename to pkgs/desktops/kde-5/frameworks/kdbusaddons.nix
diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kdeclarative.nix b/pkgs/desktops/kde-5/frameworks/kdeclarative.nix
similarity index 100%
rename from pkgs/desktops/kde-5/frameworks-5.22/kdeclarative.nix
rename to pkgs/desktops/kde-5/frameworks/kdeclarative.nix
diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kded.nix b/pkgs/desktops/kde-5/frameworks/kded.nix
similarity index 100%
rename from pkgs/desktops/kde-5/frameworks-5.22/kded.nix
rename to pkgs/desktops/kde-5/frameworks/kded.nix
diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kdelibs4support/default.nix b/pkgs/desktops/kde-5/frameworks/kdelibs4support/default.nix
similarity index 100%
rename from pkgs/desktops/kde-5/frameworks-5.22/kdelibs4support/default.nix
rename to pkgs/desktops/kde-5/frameworks/kdelibs4support/default.nix
diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kdelibs4support/nix-kde-include-dir.patch b/pkgs/desktops/kde-5/frameworks/kdelibs4support/nix-kde-include-dir.patch
similarity index 100%
rename from pkgs/desktops/kde-5/frameworks-5.22/kdelibs4support/nix-kde-include-dir.patch
rename to pkgs/desktops/kde-5/frameworks/kdelibs4support/nix-kde-include-dir.patch
diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kdelibs4support/series b/pkgs/desktops/kde-5/frameworks/kdelibs4support/series
similarity index 100%
rename from pkgs/desktops/kde-5/frameworks-5.22/kdelibs4support/series
rename to pkgs/desktops/kde-5/frameworks/kdelibs4support/series
diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kdelibs4support/setup-hook.sh b/pkgs/desktops/kde-5/frameworks/kdelibs4support/setup-hook.sh
similarity index 100%
rename from pkgs/desktops/kde-5/frameworks-5.22/kdelibs4support/setup-hook.sh
rename to pkgs/desktops/kde-5/frameworks/kdelibs4support/setup-hook.sh
diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kdesignerplugin.nix b/pkgs/desktops/kde-5/frameworks/kdesignerplugin.nix
similarity index 100%
rename from pkgs/desktops/kde-5/frameworks-5.22/kdesignerplugin.nix
rename to pkgs/desktops/kde-5/frameworks/kdesignerplugin.nix
diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kdesu.nix b/pkgs/desktops/kde-5/frameworks/kdesu.nix
similarity index 100%
rename from pkgs/desktops/kde-5/frameworks-5.22/kdesu.nix
rename to pkgs/desktops/kde-5/frameworks/kdesu.nix
diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kdnssd.nix b/pkgs/desktops/kde-5/frameworks/kdnssd.nix
similarity index 100%
rename from pkgs/desktops/kde-5/frameworks-5.22/kdnssd.nix
rename to pkgs/desktops/kde-5/frameworks/kdnssd.nix
diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kdoctools/default.nix b/pkgs/desktops/kde-5/frameworks/kdoctools/default.nix
similarity index 100%
rename from pkgs/desktops/kde-5/frameworks-5.22/kdoctools/default.nix
rename to pkgs/desktops/kde-5/frameworks/kdoctools/default.nix
diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kdoctools/kdoctools-no-find-docbook-xml.patch b/pkgs/desktops/kde-5/frameworks/kdoctools/kdoctools-no-find-docbook-xml.patch
similarity index 100%
rename from pkgs/desktops/kde-5/frameworks-5.22/kdoctools/kdoctools-no-find-docbook-xml.patch
rename to pkgs/desktops/kde-5/frameworks/kdoctools/kdoctools-no-find-docbook-xml.patch
diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kdoctools/setup-hook.sh b/pkgs/desktops/kde-5/frameworks/kdoctools/setup-hook.sh
similarity index 100%
rename from pkgs/desktops/kde-5/frameworks-5.22/kdoctools/setup-hook.sh
rename to pkgs/desktops/kde-5/frameworks/kdoctools/setup-hook.sh
diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kemoticons.nix b/pkgs/desktops/kde-5/frameworks/kemoticons.nix
similarity index 100%
rename from pkgs/desktops/kde-5/frameworks-5.22/kemoticons.nix
rename to pkgs/desktops/kde-5/frameworks/kemoticons.nix
diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kfilemetadata/cmake-install-paths.patch b/pkgs/desktops/kde-5/frameworks/kfilemetadata/cmake-install-paths.patch
similarity index 100%
rename from pkgs/desktops/kde-5/frameworks-5.22/kfilemetadata/cmake-install-paths.patch
rename to pkgs/desktops/kde-5/frameworks/kfilemetadata/cmake-install-paths.patch
diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kfilemetadata/default.nix b/pkgs/desktops/kde-5/frameworks/kfilemetadata/default.nix
similarity index 100%
rename from pkgs/desktops/kde-5/frameworks-5.22/kfilemetadata/default.nix
rename to pkgs/desktops/kde-5/frameworks/kfilemetadata/default.nix
diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kfilemetadata/series b/pkgs/desktops/kde-5/frameworks/kfilemetadata/series
similarity index 100%
rename from pkgs/desktops/kde-5/frameworks-5.22/kfilemetadata/series
rename to pkgs/desktops/kde-5/frameworks/kfilemetadata/series
diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kglobalaccel.nix b/pkgs/desktops/kde-5/frameworks/kglobalaccel.nix
similarity index 100%
rename from pkgs/desktops/kde-5/frameworks-5.22/kglobalaccel.nix
rename to pkgs/desktops/kde-5/frameworks/kglobalaccel.nix
diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kguiaddons.nix b/pkgs/desktops/kde-5/frameworks/kguiaddons.nix
similarity index 100%
rename from pkgs/desktops/kde-5/frameworks-5.22/kguiaddons.nix
rename to pkgs/desktops/kde-5/frameworks/kguiaddons.nix
diff --git a/pkgs/desktops/kde-5/frameworks-5.22/khtml.nix b/pkgs/desktops/kde-5/frameworks/khtml.nix
similarity index 100%
rename from pkgs/desktops/kde-5/frameworks-5.22/khtml.nix
rename to pkgs/desktops/kde-5/frameworks/khtml.nix
diff --git a/pkgs/desktops/kde-5/frameworks-5.22/ki18n.nix b/pkgs/desktops/kde-5/frameworks/ki18n.nix
similarity index 100%
rename from pkgs/desktops/kde-5/frameworks-5.22/ki18n.nix
rename to pkgs/desktops/kde-5/frameworks/ki18n.nix
diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kiconthemes/default-theme-breeze.patch b/pkgs/desktops/kde-5/frameworks/kiconthemes/default-theme-breeze.patch
similarity index 91%
rename from pkgs/desktops/kde-5/frameworks-5.22/kiconthemes/default-theme-breeze.patch
rename to pkgs/desktops/kde-5/frameworks/kiconthemes/default-theme-breeze.patch
index 5b3b15d5d5b..f7cb0ea3aac 100644
--- a/pkgs/desktops/kde-5/frameworks-5.22/kiconthemes/default-theme-breeze.patch
+++ b/pkgs/desktops/kde-5/frameworks/kiconthemes/default-theme-breeze.patch
@@ -6,7 +6,7 @@ Index: kiconthemes-5.17.0/src/kicontheme.cpp
// static
QString KIconTheme::defaultThemeName()
{
-- return QStringLiteral("oxygen");
+- return QStringLiteral("hicolor");
+ return QStringLiteral("breeze");
}
diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kiconthemes/default.nix b/pkgs/desktops/kde-5/frameworks/kiconthemes/default.nix
similarity index 70%
rename from pkgs/desktops/kde-5/frameworks-5.22/kiconthemes/default.nix
rename to pkgs/desktops/kde-5/frameworks/kiconthemes/default.nix
index 4e868480636..825b15c8177 100644
--- a/pkgs/desktops/kde-5/frameworks-5.22/kiconthemes/default.nix
+++ b/pkgs/desktops/kde-5/frameworks/kiconthemes/default.nix
@@ -1,6 +1,6 @@
{ kdeFramework, lib, copyPathsToStore
, extra-cmake-modules, makeQtWrapper
-, kconfigwidgets, ki18n, breeze-icons, kitemviews, qtsvg
+, karchive, kconfigwidgets, ki18n, breeze-icons, kitemviews, qtsvg
}:
kdeFramework {
@@ -8,7 +8,7 @@ kdeFramework {
meta = { maintainers = [ lib.maintainers.ttuegel ]; };
patches = copyPathsToStore (lib.readPathsFromFile ./. ./series);
nativeBuildInputs = [ extra-cmake-modules makeQtWrapper ];
- propagatedBuildInputs = [ breeze-icons kconfigwidgets ki18n kitemviews qtsvg ];
+ propagatedBuildInputs = [ breeze-icons kconfigwidgets karchive ki18n kitemviews qtsvg ];
postInstall = ''
wrapQtProgram "$out/bin/kiconfinder5"
'';
diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kiconthemes/series b/pkgs/desktops/kde-5/frameworks/kiconthemes/series
similarity index 100%
rename from pkgs/desktops/kde-5/frameworks-5.22/kiconthemes/series
rename to pkgs/desktops/kde-5/frameworks/kiconthemes/series
diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kidletime.nix b/pkgs/desktops/kde-5/frameworks/kidletime.nix
similarity index 100%
rename from pkgs/desktops/kde-5/frameworks-5.22/kidletime.nix
rename to pkgs/desktops/kde-5/frameworks/kidletime.nix
diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kimageformats.nix b/pkgs/desktops/kde-5/frameworks/kimageformats.nix
similarity index 100%
rename from pkgs/desktops/kde-5/frameworks-5.22/kimageformats.nix
rename to pkgs/desktops/kde-5/frameworks/kimageformats.nix
diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kinit/default.nix b/pkgs/desktops/kde-5/frameworks/kinit/default.nix
similarity index 100%
rename from pkgs/desktops/kde-5/frameworks-5.22/kinit/default.nix
rename to pkgs/desktops/kde-5/frameworks/kinit/default.nix
diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kinit/kinit-libpath.patch b/pkgs/desktops/kde-5/frameworks/kinit/kinit-libpath.patch
similarity index 100%
rename from pkgs/desktops/kde-5/frameworks-5.22/kinit/kinit-libpath.patch
rename to pkgs/desktops/kde-5/frameworks/kinit/kinit-libpath.patch
diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kinit/series b/pkgs/desktops/kde-5/frameworks/kinit/series
similarity index 100%
rename from pkgs/desktops/kde-5/frameworks-5.22/kinit/series
rename to pkgs/desktops/kde-5/frameworks/kinit/series
diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kio/default.nix b/pkgs/desktops/kde-5/frameworks/kio/default.nix
similarity index 100%
rename from pkgs/desktops/kde-5/frameworks-5.22/kio/default.nix
rename to pkgs/desktops/kde-5/frameworks/kio/default.nix
diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kio/samba-search-path.patch b/pkgs/desktops/kde-5/frameworks/kio/samba-search-path.patch
similarity index 100%
rename from pkgs/desktops/kde-5/frameworks-5.22/kio/samba-search-path.patch
rename to pkgs/desktops/kde-5/frameworks/kio/samba-search-path.patch
diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kio/series b/pkgs/desktops/kde-5/frameworks/kio/series
similarity index 100%
rename from pkgs/desktops/kde-5/frameworks-5.22/kio/series
rename to pkgs/desktops/kde-5/frameworks/kio/series
diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kitemmodels.nix b/pkgs/desktops/kde-5/frameworks/kitemmodels.nix
similarity index 100%
rename from pkgs/desktops/kde-5/frameworks-5.22/kitemmodels.nix
rename to pkgs/desktops/kde-5/frameworks/kitemmodels.nix
diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kitemviews.nix b/pkgs/desktops/kde-5/frameworks/kitemviews.nix
similarity index 100%
rename from pkgs/desktops/kde-5/frameworks-5.22/kitemviews.nix
rename to pkgs/desktops/kde-5/frameworks/kitemviews.nix
diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kjobwidgets.nix b/pkgs/desktops/kde-5/frameworks/kjobwidgets.nix
similarity index 100%
rename from pkgs/desktops/kde-5/frameworks-5.22/kjobwidgets.nix
rename to pkgs/desktops/kde-5/frameworks/kjobwidgets.nix
diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kjs.nix b/pkgs/desktops/kde-5/frameworks/kjs.nix
similarity index 100%
rename from pkgs/desktops/kde-5/frameworks-5.22/kjs.nix
rename to pkgs/desktops/kde-5/frameworks/kjs.nix
diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kjsembed.nix b/pkgs/desktops/kde-5/frameworks/kjsembed.nix
similarity index 100%
rename from pkgs/desktops/kde-5/frameworks-5.22/kjsembed.nix
rename to pkgs/desktops/kde-5/frameworks/kjsembed.nix
diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kmediaplayer.nix b/pkgs/desktops/kde-5/frameworks/kmediaplayer.nix
similarity index 100%
rename from pkgs/desktops/kde-5/frameworks-5.22/kmediaplayer.nix
rename to pkgs/desktops/kde-5/frameworks/kmediaplayer.nix
diff --git a/pkgs/desktops/kde-5/frameworks-5.22/knewstuff.nix b/pkgs/desktops/kde-5/frameworks/knewstuff.nix
similarity index 100%
rename from pkgs/desktops/kde-5/frameworks-5.22/knewstuff.nix
rename to pkgs/desktops/kde-5/frameworks/knewstuff.nix
diff --git a/pkgs/desktops/kde-5/frameworks-5.22/knotifications.nix b/pkgs/desktops/kde-5/frameworks/knotifications.nix
similarity index 100%
rename from pkgs/desktops/kde-5/frameworks-5.22/knotifications.nix
rename to pkgs/desktops/kde-5/frameworks/knotifications.nix
diff --git a/pkgs/desktops/kde-5/frameworks-5.22/knotifyconfig.nix b/pkgs/desktops/kde-5/frameworks/knotifyconfig.nix
similarity index 100%
rename from pkgs/desktops/kde-5/frameworks-5.22/knotifyconfig.nix
rename to pkgs/desktops/kde-5/frameworks/knotifyconfig.nix
diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kpackage/allow-external-paths.patch b/pkgs/desktops/kde-5/frameworks/kpackage/allow-external-paths.patch
similarity index 100%
rename from pkgs/desktops/kde-5/frameworks-5.22/kpackage/allow-external-paths.patch
rename to pkgs/desktops/kde-5/frameworks/kpackage/allow-external-paths.patch
diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kpackage/default.nix b/pkgs/desktops/kde-5/frameworks/kpackage/default.nix
similarity index 100%
rename from pkgs/desktops/kde-5/frameworks-5.22/kpackage/default.nix
rename to pkgs/desktops/kde-5/frameworks/kpackage/default.nix
diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kpackage/qdiriterator-follow-symlinks.patch b/pkgs/desktops/kde-5/frameworks/kpackage/qdiriterator-follow-symlinks.patch
similarity index 100%
rename from pkgs/desktops/kde-5/frameworks-5.22/kpackage/qdiriterator-follow-symlinks.patch
rename to pkgs/desktops/kde-5/frameworks/kpackage/qdiriterator-follow-symlinks.patch
diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kpackage/series b/pkgs/desktops/kde-5/frameworks/kpackage/series
similarity index 100%
rename from pkgs/desktops/kde-5/frameworks-5.22/kpackage/series
rename to pkgs/desktops/kde-5/frameworks/kpackage/series
diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kparts.nix b/pkgs/desktops/kde-5/frameworks/kparts.nix
similarity index 100%
rename from pkgs/desktops/kde-5/frameworks-5.22/kparts.nix
rename to pkgs/desktops/kde-5/frameworks/kparts.nix
diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kpeople.nix b/pkgs/desktops/kde-5/frameworks/kpeople.nix
similarity index 100%
rename from pkgs/desktops/kde-5/frameworks-5.22/kpeople.nix
rename to pkgs/desktops/kde-5/frameworks/kpeople.nix
diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kplotting.nix b/pkgs/desktops/kde-5/frameworks/kplotting.nix
similarity index 100%
rename from pkgs/desktops/kde-5/frameworks-5.22/kplotting.nix
rename to pkgs/desktops/kde-5/frameworks/kplotting.nix
diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kpty.nix b/pkgs/desktops/kde-5/frameworks/kpty.nix
similarity index 100%
rename from pkgs/desktops/kde-5/frameworks-5.22/kpty.nix
rename to pkgs/desktops/kde-5/frameworks/kpty.nix
diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kross.nix b/pkgs/desktops/kde-5/frameworks/kross.nix
similarity index 100%
rename from pkgs/desktops/kde-5/frameworks-5.22/kross.nix
rename to pkgs/desktops/kde-5/frameworks/kross.nix
diff --git a/pkgs/desktops/kde-5/frameworks-5.22/krunner.nix b/pkgs/desktops/kde-5/frameworks/krunner.nix
similarity index 100%
rename from pkgs/desktops/kde-5/frameworks-5.22/krunner.nix
rename to pkgs/desktops/kde-5/frameworks/krunner.nix
diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kservice/default.nix b/pkgs/desktops/kde-5/frameworks/kservice/default.nix
similarity index 100%
rename from pkgs/desktops/kde-5/frameworks-5.22/kservice/default.nix
rename to pkgs/desktops/kde-5/frameworks/kservice/default.nix
diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kservice/no-canonicalize-path.patch b/pkgs/desktops/kde-5/frameworks/kservice/no-canonicalize-path.patch
similarity index 100%
rename from pkgs/desktops/kde-5/frameworks-5.22/kservice/no-canonicalize-path.patch
rename to pkgs/desktops/kde-5/frameworks/kservice/no-canonicalize-path.patch
diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kservice/qdiriterator-follow-symlinks.patch b/pkgs/desktops/kde-5/frameworks/kservice/qdiriterator-follow-symlinks.patch
similarity index 100%
rename from pkgs/desktops/kde-5/frameworks-5.22/kservice/qdiriterator-follow-symlinks.patch
rename to pkgs/desktops/kde-5/frameworks/kservice/qdiriterator-follow-symlinks.patch
diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kservice/series b/pkgs/desktops/kde-5/frameworks/kservice/series
similarity index 100%
rename from pkgs/desktops/kde-5/frameworks-5.22/kservice/series
rename to pkgs/desktops/kde-5/frameworks/kservice/series
diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kservice/setup-hook.sh b/pkgs/desktops/kde-5/frameworks/kservice/setup-hook.sh
similarity index 100%
rename from pkgs/desktops/kde-5/frameworks-5.22/kservice/setup-hook.sh
rename to pkgs/desktops/kde-5/frameworks/kservice/setup-hook.sh
diff --git a/pkgs/desktops/kde-5/frameworks-5.22/ktexteditor/default.nix b/pkgs/desktops/kde-5/frameworks/ktexteditor/default.nix
similarity index 100%
rename from pkgs/desktops/kde-5/frameworks-5.22/ktexteditor/default.nix
rename to pkgs/desktops/kde-5/frameworks/ktexteditor/default.nix
diff --git a/pkgs/desktops/kde-5/frameworks-5.22/ktexteditor/no-qcoreapplication.patch b/pkgs/desktops/kde-5/frameworks/ktexteditor/no-qcoreapplication.patch
similarity index 100%
rename from pkgs/desktops/kde-5/frameworks-5.22/ktexteditor/no-qcoreapplication.patch
rename to pkgs/desktops/kde-5/frameworks/ktexteditor/no-qcoreapplication.patch
diff --git a/pkgs/desktops/kde-5/frameworks-5.22/ktexteditor/series b/pkgs/desktops/kde-5/frameworks/ktexteditor/series
similarity index 100%
rename from pkgs/desktops/kde-5/frameworks-5.22/ktexteditor/series
rename to pkgs/desktops/kde-5/frameworks/ktexteditor/series
diff --git a/pkgs/desktops/kde-5/frameworks-5.22/ktextwidgets.nix b/pkgs/desktops/kde-5/frameworks/ktextwidgets.nix
similarity index 100%
rename from pkgs/desktops/kde-5/frameworks-5.22/ktextwidgets.nix
rename to pkgs/desktops/kde-5/frameworks/ktextwidgets.nix
diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kunitconversion.nix b/pkgs/desktops/kde-5/frameworks/kunitconversion.nix
similarity index 100%
rename from pkgs/desktops/kde-5/frameworks-5.22/kunitconversion.nix
rename to pkgs/desktops/kde-5/frameworks/kunitconversion.nix
diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kwallet.nix b/pkgs/desktops/kde-5/frameworks/kwallet.nix
similarity index 100%
rename from pkgs/desktops/kde-5/frameworks-5.22/kwallet.nix
rename to pkgs/desktops/kde-5/frameworks/kwallet.nix
diff --git a/pkgs/desktops/kde-5/plasma-5.6/kwayland.nix b/pkgs/desktops/kde-5/frameworks/kwayland.nix
similarity index 83%
rename from pkgs/desktops/kde-5/plasma-5.6/kwayland.nix
rename to pkgs/desktops/kde-5/frameworks/kwayland.nix
index 3c2788237fc..db332841308 100644
--- a/pkgs/desktops/kde-5/plasma-5.6/kwayland.nix
+++ b/pkgs/desktops/kde-5/frameworks/kwayland.nix
@@ -1,9 +1,9 @@
-{ plasmaPackage
+{ kdeFramework
, extra-cmake-modules
, wayland
}:
-plasmaPackage {
+kdeFramework {
name = "kwayland";
nativeBuildInputs = [
extra-cmake-modules
diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kwidgetsaddons.nix b/pkgs/desktops/kde-5/frameworks/kwidgetsaddons.nix
similarity index 100%
rename from pkgs/desktops/kde-5/frameworks-5.22/kwidgetsaddons.nix
rename to pkgs/desktops/kde-5/frameworks/kwidgetsaddons.nix
diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kwindowsystem.nix b/pkgs/desktops/kde-5/frameworks/kwindowsystem.nix
similarity index 100%
rename from pkgs/desktops/kde-5/frameworks-5.22/kwindowsystem.nix
rename to pkgs/desktops/kde-5/frameworks/kwindowsystem.nix
diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kxmlgui.nix b/pkgs/desktops/kde-5/frameworks/kxmlgui.nix
similarity index 100%
rename from pkgs/desktops/kde-5/frameworks-5.22/kxmlgui.nix
rename to pkgs/desktops/kde-5/frameworks/kxmlgui.nix
diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kxmlrpcclient.nix b/pkgs/desktops/kde-5/frameworks/kxmlrpcclient.nix
similarity index 100%
rename from pkgs/desktops/kde-5/frameworks-5.22/kxmlrpcclient.nix
rename to pkgs/desktops/kde-5/frameworks/kxmlrpcclient.nix
diff --git a/pkgs/desktops/kde-5/frameworks-5.22/modemmanager-qt.nix b/pkgs/desktops/kde-5/frameworks/modemmanager-qt.nix
similarity index 100%
rename from pkgs/desktops/kde-5/frameworks-5.22/modemmanager-qt.nix
rename to pkgs/desktops/kde-5/frameworks/modemmanager-qt.nix
diff --git a/pkgs/desktops/kde-5/frameworks-5.22/networkmanager-qt.nix b/pkgs/desktops/kde-5/frameworks/networkmanager-qt.nix
similarity index 100%
rename from pkgs/desktops/kde-5/frameworks-5.22/networkmanager-qt.nix
rename to pkgs/desktops/kde-5/frameworks/networkmanager-qt.nix
diff --git a/pkgs/desktops/kde-5/frameworks-5.22/oxygen-icons5.nix b/pkgs/desktops/kde-5/frameworks/oxygen-icons5.nix
similarity index 100%
rename from pkgs/desktops/kde-5/frameworks-5.22/oxygen-icons5.nix
rename to pkgs/desktops/kde-5/frameworks/oxygen-icons5.nix
diff --git a/pkgs/desktops/kde-5/frameworks-5.22/plasma-framework.nix b/pkgs/desktops/kde-5/frameworks/plasma-framework.nix
similarity index 100%
rename from pkgs/desktops/kde-5/frameworks-5.22/plasma-framework.nix
rename to pkgs/desktops/kde-5/frameworks/plasma-framework.nix
diff --git a/pkgs/desktops/kde-5/frameworks-5.22/solid.nix b/pkgs/desktops/kde-5/frameworks/solid.nix
similarity index 100%
rename from pkgs/desktops/kde-5/frameworks-5.22/solid.nix
rename to pkgs/desktops/kde-5/frameworks/solid.nix
diff --git a/pkgs/desktops/kde-5/frameworks-5.22/sonnet.nix b/pkgs/desktops/kde-5/frameworks/sonnet.nix
similarity index 100%
rename from pkgs/desktops/kde-5/frameworks-5.22/sonnet.nix
rename to pkgs/desktops/kde-5/frameworks/sonnet.nix
diff --git a/pkgs/desktops/kde-5/frameworks/srcs.nix b/pkgs/desktops/kde-5/frameworks/srcs.nix
new file mode 100644
index 00000000000..5c48ece1e99
--- /dev/null
+++ b/pkgs/desktops/kde-5/frameworks/srcs.nix
@@ -0,0 +1,581 @@
+# DO NOT EDIT! This file is generated automatically by fetchsrcs.sh
+{ fetchurl, mirror }:
+
+{
+ attica = {
+ version = "5.24.0";
+ src = fetchurl {
+ url = "${mirror}/stable/frameworks/5.24/attica-5.24.0.tar.xz";
+ sha256 = "0d368gmds7m7k5pnn625wqsij38cvxk1gkm4zv24phnk9f67v7cw";
+ name = "attica-5.24.0.tar.xz";
+ };
+ };
+ baloo = {
+ version = "5.24.0";
+ src = fetchurl {
+ url = "${mirror}/stable/frameworks/5.24/baloo-5.24.0.tar.xz";
+ sha256 = "1ayfdg6j9lvas17ryjdv4a0kaj6vw3bxfy2x9nadl0gkc9pak4nh";
+ name = "baloo-5.24.0.tar.xz";
+ };
+ };
+ bluez-qt = {
+ version = "5.24.0";
+ src = fetchurl {
+ url = "${mirror}/stable/frameworks/5.24/bluez-qt-5.24.0.tar.xz";
+ sha256 = "0gy0m7lcwwklf021l5i3v7j0cl7qz7cgvzrwpj87ix3kyw5xs80z";
+ name = "bluez-qt-5.24.0.tar.xz";
+ };
+ };
+ breeze-icons = {
+ version = "5.24.0";
+ src = fetchurl {
+ url = "${mirror}/stable/frameworks/5.24/breeze-icons-5.24.0.tar.xz";
+ sha256 = "1dh7bijx99sdb3vn6394wmm5cq0fvvmz8h17sx4hakmbga849cx2";
+ name = "breeze-icons-5.24.0.tar.xz";
+ };
+ };
+ extra-cmake-modules = {
+ version = "5.24.0";
+ src = fetchurl {
+ url = "${mirror}/stable/frameworks/5.24/extra-cmake-modules-5.24.0.tar.xz";
+ sha256 = "01m12ml529pwr2sal951r5z6yb1rwbpid1y4k14nlk3xqgmdakwa";
+ name = "extra-cmake-modules-5.24.0.tar.xz";
+ };
+ };
+ frameworkintegration = {
+ version = "5.24.0";
+ src = fetchurl {
+ url = "${mirror}/stable/frameworks/5.24/frameworkintegration-5.24.0.tar.xz";
+ sha256 = "0brqgq05m06d98qqvyh30727f5z7hlzxgqysfhfvqzcf3x7f6yzj";
+ name = "frameworkintegration-5.24.0.tar.xz";
+ };
+ };
+ kactivities = {
+ version = "5.24.0";
+ src = fetchurl {
+ url = "${mirror}/stable/frameworks/5.24/kactivities-5.24.0.tar.xz";
+ sha256 = "0s8g43zk6h35bq1am1nnhj0qvmhd6kz42gs8l7ybga0367jghzhf";
+ name = "kactivities-5.24.0.tar.xz";
+ };
+ };
+ kactivities-stats = {
+ version = "5.24.0";
+ src = fetchurl {
+ url = "${mirror}/stable/frameworks/5.24/kactivities-stats-5.24.0.tar.xz";
+ sha256 = "1z3xvpifxbd05b2xaxxyiypcpid7jgjb1qpwiyjj1gnfp4rjmzpc";
+ name = "kactivities-stats-5.24.0.tar.xz";
+ };
+ };
+ kapidox = {
+ version = "5.24.0";
+ src = fetchurl {
+ url = "${mirror}/stable/frameworks/5.24/kapidox-5.24.0.tar.xz";
+ sha256 = "19a7alvn71nxflsyi7y3hghx1iw04qqc77qy54mcxcpkiyvpsggf";
+ name = "kapidox-5.24.0.tar.xz";
+ };
+ };
+ karchive = {
+ version = "5.24.0";
+ src = fetchurl {
+ url = "${mirror}/stable/frameworks/5.24/karchive-5.24.0.tar.xz";
+ sha256 = "1n5nfhrfvqnrdjgjjy7arqik4fya5bp3dvxa16mlhqr19azkavzq";
+ name = "karchive-5.24.0.tar.xz";
+ };
+ };
+ kauth = {
+ version = "5.24.0";
+ src = fetchurl {
+ url = "${mirror}/stable/frameworks/5.24/kauth-5.24.0.tar.xz";
+ sha256 = "14sjjfgl3arqyqcr77w9qhpnd8mrnh53r5rfss6bvlk26bmihs49";
+ name = "kauth-5.24.0.tar.xz";
+ };
+ };
+ kbookmarks = {
+ version = "5.24.0";
+ src = fetchurl {
+ url = "${mirror}/stable/frameworks/5.24/kbookmarks-5.24.0.tar.xz";
+ sha256 = "10d8dnhvbrwp0dbmz93cqfdff6ir8iy3yiwaf9ihj6ma124qlyjn";
+ name = "kbookmarks-5.24.0.tar.xz";
+ };
+ };
+ kcmutils = {
+ version = "5.24.0";
+ src = fetchurl {
+ url = "${mirror}/stable/frameworks/5.24/kcmutils-5.24.0.tar.xz";
+ sha256 = "0aws1c76s6wbp0xpr6qv6cfwq8dw82v00pkf9gy84sbxknwjnizk";
+ name = "kcmutils-5.24.0.tar.xz";
+ };
+ };
+ kcodecs = {
+ version = "5.24.0";
+ src = fetchurl {
+ url = "${mirror}/stable/frameworks/5.24/kcodecs-5.24.0.tar.xz";
+ sha256 = "1qpzjh3qc2zz80j2bmlinipbispms14k9bmqw8v61zhi6in9z14c";
+ name = "kcodecs-5.24.0.tar.xz";
+ };
+ };
+ kcompletion = {
+ version = "5.24.0";
+ src = fetchurl {
+ url = "${mirror}/stable/frameworks/5.24/kcompletion-5.24.0.tar.xz";
+ sha256 = "1qln0v31gn86kzwhnkijr1ydf129n32jmiybbckrp4w6hyx6xfxv";
+ name = "kcompletion-5.24.0.tar.xz";
+ };
+ };
+ kconfig = {
+ version = "5.24.0";
+ src = fetchurl {
+ url = "${mirror}/stable/frameworks/5.24/kconfig-5.24.0.tar.xz";
+ sha256 = "1dc2i6icyigw1j6qxgdza6j2g8afh390qmxsa2a54mwl84fkfmxv";
+ name = "kconfig-5.24.0.tar.xz";
+ };
+ };
+ kconfigwidgets = {
+ version = "5.24.0";
+ src = fetchurl {
+ url = "${mirror}/stable/frameworks/5.24/kconfigwidgets-5.24.0.tar.xz";
+ sha256 = "0v25r50gh5i984lzlv0rradghglcfqf0gsfmnkn23h87b86fm9l2";
+ name = "kconfigwidgets-5.24.0.tar.xz";
+ };
+ };
+ kcoreaddons = {
+ version = "5.24.0";
+ src = fetchurl {
+ url = "${mirror}/stable/frameworks/5.24/kcoreaddons-5.24.0.tar.xz";
+ sha256 = "06sx7by3nvaridnavj5p0bxv4nh47n708jlacfw8ydaikmd9i03h";
+ name = "kcoreaddons-5.24.0.tar.xz";
+ };
+ };
+ kcrash = {
+ version = "5.24.0";
+ src = fetchurl {
+ url = "${mirror}/stable/frameworks/5.24/kcrash-5.24.0.tar.xz";
+ sha256 = "1lahgfwlp9b5rsl244kzp7rsl4ybv1q4qlvpv0xxz5ygssk48l0w";
+ name = "kcrash-5.24.0.tar.xz";
+ };
+ };
+ kdbusaddons = {
+ version = "5.24.0";
+ src = fetchurl {
+ url = "${mirror}/stable/frameworks/5.24/kdbusaddons-5.24.0.tar.xz";
+ sha256 = "183nxqrhz4qk4qfp1w4an0scp2dvfqcaqbpg4cgbgk0z590q0pkk";
+ name = "kdbusaddons-5.24.0.tar.xz";
+ };
+ };
+ kdeclarative = {
+ version = "5.24.0";
+ src = fetchurl {
+ url = "${mirror}/stable/frameworks/5.24/kdeclarative-5.24.0.tar.xz";
+ sha256 = "00ik9q1r6y6g5rkdq96yczgrxmcg85x00lipyljvc3x6xw6bixbz";
+ name = "kdeclarative-5.24.0.tar.xz";
+ };
+ };
+ kded = {
+ version = "5.24.0";
+ src = fetchurl {
+ url = "${mirror}/stable/frameworks/5.24/kded-5.24.0.tar.xz";
+ sha256 = "0ngpxdxb596myn5r4kjxahx195bwklq33yvgjvcbxi2clg2wccaj";
+ name = "kded-5.24.0.tar.xz";
+ };
+ };
+ kdelibs4support = {
+ version = "5.24.0";
+ src = fetchurl {
+ url = "${mirror}/stable/frameworks/5.24/portingAids/kdelibs4support-5.24.0.tar.xz";
+ sha256 = "12sis63mq6i372bhx64x8y0pw6czrv64hdhjscx27cx65a4ir451";
+ name = "kdelibs4support-5.24.0.tar.xz";
+ };
+ };
+ kdesignerplugin = {
+ version = "5.24.0";
+ src = fetchurl {
+ url = "${mirror}/stable/frameworks/5.24/kdesignerplugin-5.24.0.tar.xz";
+ sha256 = "0i0s8pwwhwh5hyyvkv0cnj0yyv0g5bnm5xw18knv2yagiy4bvb2j";
+ name = "kdesignerplugin-5.24.0.tar.xz";
+ };
+ };
+ kdesu = {
+ version = "5.24.0";
+ src = fetchurl {
+ url = "${mirror}/stable/frameworks/5.24/kdesu-5.24.0.tar.xz";
+ sha256 = "1ivcnhgvq75xvl0w9g7m45qzallz42ijaq0n1ap09lpdfmjbnrxk";
+ name = "kdesu-5.24.0.tar.xz";
+ };
+ };
+ kdewebkit = {
+ version = "5.24.0";
+ src = fetchurl {
+ url = "${mirror}/stable/frameworks/5.24/kdewebkit-5.24.0.tar.xz";
+ sha256 = "1xq36zv7vnllhqbisl6kcna8z6qzlvy29a47g0hbzgl8rc93qskf";
+ name = "kdewebkit-5.24.0.tar.xz";
+ };
+ };
+ kdnssd = {
+ version = "5.24.0";
+ src = fetchurl {
+ url = "${mirror}/stable/frameworks/5.24/kdnssd-5.24.0.tar.xz";
+ sha256 = "01b650g031apxc3vd2m91g2fxqk9l8ap67z6rafniphfwy8i0d5m";
+ name = "kdnssd-5.24.0.tar.xz";
+ };
+ };
+ kdoctools = {
+ version = "5.24.0";
+ src = fetchurl {
+ url = "${mirror}/stable/frameworks/5.24/kdoctools-5.24.0.tar.xz";
+ sha256 = "1r129kpq0d11b9l87cqbal6fm5ycwhsps1g3r1a7jsxz70scz4ri";
+ name = "kdoctools-5.24.0.tar.xz";
+ };
+ };
+ kemoticons = {
+ version = "5.24.0";
+ src = fetchurl {
+ url = "${mirror}/stable/frameworks/5.24/kemoticons-5.24.0.tar.xz";
+ sha256 = "0gmc52k5jb553jvzxwsq79v5y87kgav8i5qqv4bqc9yl7p866zhn";
+ name = "kemoticons-5.24.0.tar.xz";
+ };
+ };
+ kfilemetadata = {
+ version = "5.24.0";
+ src = fetchurl {
+ url = "${mirror}/stable/frameworks/5.24/kfilemetadata-5.24.0.tar.xz";
+ sha256 = "02n9qhpr0jlwdgdbid0k34abhs3bzhlsa56ybl5dq1aib6izk1sy";
+ name = "kfilemetadata-5.24.0.tar.xz";
+ };
+ };
+ kglobalaccel = {
+ version = "5.24.0";
+ src = fetchurl {
+ url = "${mirror}/stable/frameworks/5.24/kglobalaccel-5.24.0.tar.xz";
+ sha256 = "123v0ld1q88hbm3d0mqgq6lcivfkqh7pbz4hb4n76ab5v43qc15c";
+ name = "kglobalaccel-5.24.0.tar.xz";
+ };
+ };
+ kguiaddons = {
+ version = "5.24.0";
+ src = fetchurl {
+ url = "${mirror}/stable/frameworks/5.24/kguiaddons-5.24.0.tar.xz";
+ sha256 = "0ig96ah20ybg5rwpswj9va2klvkh2q4amwxmgy3z4niwfsm2g3ic";
+ name = "kguiaddons-5.24.0.tar.xz";
+ };
+ };
+ khtml = {
+ version = "5.24.0";
+ src = fetchurl {
+ url = "${mirror}/stable/frameworks/5.24/portingAids/khtml-5.24.0.tar.xz";
+ sha256 = "0f19m8ycaa41p61i0j43gafn364abral8dbiqhr0qcj33nsa4134";
+ name = "khtml-5.24.0.tar.xz";
+ };
+ };
+ ki18n = {
+ version = "5.24.0";
+ src = fetchurl {
+ url = "${mirror}/stable/frameworks/5.24/ki18n-5.24.0.tar.xz";
+ sha256 = "0cw24spmwsqa3ppkw03cm6yjd3sfll0dbbk2ya76fd4nw9hb00dv";
+ name = "ki18n-5.24.0.tar.xz";
+ };
+ };
+ kiconthemes = {
+ version = "5.24.0";
+ src = fetchurl {
+ url = "${mirror}/stable/frameworks/5.24/kiconthemes-5.24.0.tar.xz";
+ sha256 = "1k5zig2n6wzfyv6pc8dpas2862mxjyxxza00m31myrfw5i1a1h6m";
+ name = "kiconthemes-5.24.0.tar.xz";
+ };
+ };
+ kidletime = {
+ version = "5.24.0";
+ src = fetchurl {
+ url = "${mirror}/stable/frameworks/5.24/kidletime-5.24.0.tar.xz";
+ sha256 = "09jsj0pj27h93nr8v46savs6b93h8frydinfr7wlijkvpsl02jb4";
+ name = "kidletime-5.24.0.tar.xz";
+ };
+ };
+ kimageformats = {
+ version = "5.24.0";
+ src = fetchurl {
+ url = "${mirror}/stable/frameworks/5.24/kimageformats-5.24.0.tar.xz";
+ sha256 = "12mhgckmhnvcnm8k7mk15mipxrnm7i9ip7ykbjh8nxjiwyk1pmwc";
+ name = "kimageformats-5.24.0.tar.xz";
+ };
+ };
+ kinit = {
+ version = "5.24.0";
+ src = fetchurl {
+ url = "${mirror}/stable/frameworks/5.24/kinit-5.24.0.tar.xz";
+ sha256 = "1i7l6gid5hrrfglw1c461gpjg51dwz7cl4lx7ll8vz2ha8mz4d3n";
+ name = "kinit-5.24.0.tar.xz";
+ };
+ };
+ kio = {
+ version = "5.24.0";
+ src = fetchurl {
+ url = "${mirror}/stable/frameworks/5.24/kio-5.24.0.tar.xz";
+ sha256 = "0zncj9yf8zaylazlwvirylpk9vki3j889b1x2s0aav54vvj7vdi5";
+ name = "kio-5.24.0.tar.xz";
+ };
+ };
+ kitemmodels = {
+ version = "5.24.0";
+ src = fetchurl {
+ url = "${mirror}/stable/frameworks/5.24/kitemmodels-5.24.0.tar.xz";
+ sha256 = "1s1p4nw1pqdzbdwvjnka17p9avf00wadr437p4f96md1lvh3sh69";
+ name = "kitemmodels-5.24.0.tar.xz";
+ };
+ };
+ kitemviews = {
+ version = "5.24.0";
+ src = fetchurl {
+ url = "${mirror}/stable/frameworks/5.24/kitemviews-5.24.0.tar.xz";
+ sha256 = "0y3fx9hk1x27arrmwfzq783a44cs7p8dpmhxrwzh0di4mwa8jafw";
+ name = "kitemviews-5.24.0.tar.xz";
+ };
+ };
+ kjobwidgets = {
+ version = "5.24.0";
+ src = fetchurl {
+ url = "${mirror}/stable/frameworks/5.24/kjobwidgets-5.24.0.tar.xz";
+ sha256 = "1mcvrz66xcqjgbp08zpqsf943cm462wbqm5gh719p9s25hx8hwrc";
+ name = "kjobwidgets-5.24.0.tar.xz";
+ };
+ };
+ kjs = {
+ version = "5.24.0";
+ src = fetchurl {
+ url = "${mirror}/stable/frameworks/5.24/portingAids/kjs-5.24.0.tar.xz";
+ sha256 = "1qd5sdfrdg7id0g5mwf3ijwlfvh3g36kwnckw6kwns1nf4q6gwlz";
+ name = "kjs-5.24.0.tar.xz";
+ };
+ };
+ kjsembed = {
+ version = "5.24.0";
+ src = fetchurl {
+ url = "${mirror}/stable/frameworks/5.24/portingAids/kjsembed-5.24.0.tar.xz";
+ sha256 = "1nx8ch8mzd1jyx8pd46364ij0bsbsclbipbgr6jm9aak3n13b0nw";
+ name = "kjsembed-5.24.0.tar.xz";
+ };
+ };
+ kmediaplayer = {
+ version = "5.24.0";
+ src = fetchurl {
+ url = "${mirror}/stable/frameworks/5.24/portingAids/kmediaplayer-5.24.0.tar.xz";
+ sha256 = "147xrffkvkyv3h8ighc1vlwksysfrqc0g55k8zrd72l6r0kjjh0p";
+ name = "kmediaplayer-5.24.0.tar.xz";
+ };
+ };
+ knewstuff = {
+ version = "5.24.0";
+ src = fetchurl {
+ url = "${mirror}/stable/frameworks/5.24/knewstuff-5.24.0.tar.xz";
+ sha256 = "0xdv3wh3100vzsx8p2zihy1dvh0wzfmrjkjq71v8igwz5d291zsj";
+ name = "knewstuff-5.24.0.tar.xz";
+ };
+ };
+ knotifications = {
+ version = "5.24.0";
+ src = fetchurl {
+ url = "${mirror}/stable/frameworks/5.24/knotifications-5.24.0.tar.xz";
+ sha256 = "0qryp41phnpx4r9wa6rfhmnzy7nxl0ijnyrafadf2n2xb53ipkpa";
+ name = "knotifications-5.24.0.tar.xz";
+ };
+ };
+ knotifyconfig = {
+ version = "5.24.0";
+ src = fetchurl {
+ url = "${mirror}/stable/frameworks/5.24/knotifyconfig-5.24.0.tar.xz";
+ sha256 = "1dij841fnqia4p44x2wnpdvl8cn3nkj833y0fah50fmipjc8r70b";
+ name = "knotifyconfig-5.24.0.tar.xz";
+ };
+ };
+ kpackage = {
+ version = "5.24.0";
+ src = fetchurl {
+ url = "${mirror}/stable/frameworks/5.24/kpackage-5.24.0.tar.xz";
+ sha256 = "03aqzkpqz3c1v4qgwfbs3ncdbapiyg7psrkhxqv3z48rklavk1ri";
+ name = "kpackage-5.24.0.tar.xz";
+ };
+ };
+ kparts = {
+ version = "5.24.0";
+ src = fetchurl {
+ url = "${mirror}/stable/frameworks/5.24/kparts-5.24.0.tar.xz";
+ sha256 = "0z7qr93aq02i7g7cxgypx2rzlnsvbsx9cjblb0ijmad1nb8w3mix";
+ name = "kparts-5.24.0.tar.xz";
+ };
+ };
+ kpeople = {
+ version = "5.24.0";
+ src = fetchurl {
+ url = "${mirror}/stable/frameworks/5.24/kpeople-5.24.0.tar.xz";
+ sha256 = "0iknzkj23y927xh24kw5sjxyirhy6pkmfcmmgwzd78rba8a54qp2";
+ name = "kpeople-5.24.0.tar.xz";
+ };
+ };
+ kplotting = {
+ version = "5.24.0";
+ src = fetchurl {
+ url = "${mirror}/stable/frameworks/5.24/kplotting-5.24.0.tar.xz";
+ sha256 = "0gpypq9kh4b5s6dc7py3m117k3nbxczsfkxgxd9zxvr35kig7ya2";
+ name = "kplotting-5.24.0.tar.xz";
+ };
+ };
+ kpty = {
+ version = "5.24.0";
+ src = fetchurl {
+ url = "${mirror}/stable/frameworks/5.24/kpty-5.24.0.tar.xz";
+ sha256 = "1ybvdzqpa53kkki9p5da0ff9x3c63rmksk7865wqwlgy8apzi2fs";
+ name = "kpty-5.24.0.tar.xz";
+ };
+ };
+ kross = {
+ version = "5.24.0";
+ src = fetchurl {
+ url = "${mirror}/stable/frameworks/5.24/portingAids/kross-5.24.0.tar.xz";
+ sha256 = "0f29dpmfcj173vqnmrbpvdmfmzzbfsds1lbl546qfx9a5acdpf2p";
+ name = "kross-5.24.0.tar.xz";
+ };
+ };
+ krunner = {
+ version = "5.24.0";
+ src = fetchurl {
+ url = "${mirror}/stable/frameworks/5.24/krunner-5.24.0.tar.xz";
+ sha256 = "0ff87ijjd47jxf6zw2ggqgngnbyx1rj59wdfgy5wbi3acws6bafl";
+ name = "krunner-5.24.0.tar.xz";
+ };
+ };
+ kservice = {
+ version = "5.24.0";
+ src = fetchurl {
+ url = "${mirror}/stable/frameworks/5.24/kservice-5.24.0.tar.xz";
+ sha256 = "0w0nsg64d6xhgijr2vh0j5p544qi0q55jpqa9v9mv956zrrdssdk";
+ name = "kservice-5.24.0.tar.xz";
+ };
+ };
+ ktexteditor = {
+ version = "5.24.0";
+ src = fetchurl {
+ url = "${mirror}/stable/frameworks/5.24/ktexteditor-5.24.0.tar.xz";
+ sha256 = "1ykj1kvm7k1vxb1w235d5hp2swwdqjyp2y4c3pxbvkn999h9x5q5";
+ name = "ktexteditor-5.24.0.tar.xz";
+ };
+ };
+ ktextwidgets = {
+ version = "5.24.0";
+ src = fetchurl {
+ url = "${mirror}/stable/frameworks/5.24/ktextwidgets-5.24.0.tar.xz";
+ sha256 = "1q10xav2gkii6s3m31c9xvxf1988l7k2lpib6pyhgsidflmwjm02";
+ name = "ktextwidgets-5.24.0.tar.xz";
+ };
+ };
+ kunitconversion = {
+ version = "5.24.0";
+ src = fetchurl {
+ url = "${mirror}/stable/frameworks/5.24/kunitconversion-5.24.0.tar.xz";
+ sha256 = "03dfjn4lm6sl2zcdrvw0b9irzvkyc2w2j5xixag5j8nw373742h8";
+ name = "kunitconversion-5.24.0.tar.xz";
+ };
+ };
+ kwallet = {
+ version = "5.24.0";
+ src = fetchurl {
+ url = "${mirror}/stable/frameworks/5.24/kwallet-5.24.0.tar.xz";
+ sha256 = "0zad5h4vsvcl2xv3vxsjwh42b71xbp6x6rj8cvmw8szr2rzz9gsx";
+ name = "kwallet-5.24.0.tar.xz";
+ };
+ };
+ kwayland = {
+ version = "5.24.0";
+ src = fetchurl {
+ url = "${mirror}/stable/frameworks/5.24/kwayland-5.24.0.tar.xz";
+ sha256 = "1h5anbqrxcl1s8kx1l53vcsfr8ifamcjqd47dk8a7lwr1ga6myq2";
+ name = "kwayland-5.24.0.tar.xz";
+ };
+ };
+ kwidgetsaddons = {
+ version = "5.24.0";
+ src = fetchurl {
+ url = "${mirror}/stable/frameworks/5.24/kwidgetsaddons-5.24.0.tar.xz";
+ sha256 = "1kppx0ppfhnb6q6sijs2dffyar86wkkx8miqavsjsgw1l2wiymcx";
+ name = "kwidgetsaddons-5.24.0.tar.xz";
+ };
+ };
+ kwindowsystem = {
+ version = "5.24.0";
+ src = fetchurl {
+ url = "${mirror}/stable/frameworks/5.24/kwindowsystem-5.24.0.tar.xz";
+ sha256 = "0w5ym8msl80v3q65253pdpj9f1fmb658rnndlbkrgpmm1rv1n6dz";
+ name = "kwindowsystem-5.24.0.tar.xz";
+ };
+ };
+ kxmlgui = {
+ version = "5.24.0";
+ src = fetchurl {
+ url = "${mirror}/stable/frameworks/5.24/kxmlgui-5.24.0.tar.xz";
+ sha256 = "1qhixldhhcbklmrpjh67440h1rrzqy70h57hw6ialjdsr3pl6ihp";
+ name = "kxmlgui-5.24.0.tar.xz";
+ };
+ };
+ kxmlrpcclient = {
+ version = "5.24.0";
+ src = fetchurl {
+ url = "${mirror}/stable/frameworks/5.24/kxmlrpcclient-5.24.0.tar.xz";
+ sha256 = "06ap6ipzqimz1rfrcr7z8zc7idy7sg4a97dws7h52i34ms7jqnc8";
+ name = "kxmlrpcclient-5.24.0.tar.xz";
+ };
+ };
+ modemmanager-qt = {
+ version = "5.24.0";
+ src = fetchurl {
+ url = "${mirror}/stable/frameworks/5.24/modemmanager-qt-5.24.0.tar.xz";
+ sha256 = "0khz5bf84xxa8aqpzwb6x839xx6dbiadwqhyj7cvgha65fh2xinh";
+ name = "modemmanager-qt-5.24.0.tar.xz";
+ };
+ };
+ networkmanager-qt = {
+ version = "5.24.0";
+ src = fetchurl {
+ url = "${mirror}/stable/frameworks/5.24/networkmanager-qt-5.24.0.tar.xz";
+ sha256 = "11wy0ds0hqbba900ggkcxjfqc9n65xlzc3h1zv9433nn5d75v6fy";
+ name = "networkmanager-qt-5.24.0.tar.xz";
+ };
+ };
+ oxygen-icons5 = {
+ version = "5.24.0";
+ src = fetchurl {
+ url = "${mirror}/stable/frameworks/5.24/oxygen-icons5-5.24.0.tar.xz";
+ sha256 = "1c7spjbzk04725vv0ly7vmyvwa96mfa5ki2pm146ld4888a896wm";
+ name = "oxygen-icons5-5.24.0.tar.xz";
+ };
+ };
+ plasma-framework = {
+ version = "5.24.0";
+ src = fetchurl {
+ url = "${mirror}/stable/frameworks/5.24/plasma-framework-5.24.0.tar.xz";
+ sha256 = "0981vm00541dzihlr1fsax05biwp2ddpwjrmvnfysx5jagdc65cb";
+ name = "plasma-framework-5.24.0.tar.xz";
+ };
+ };
+ solid = {
+ version = "5.24.0";
+ src = fetchurl {
+ url = "${mirror}/stable/frameworks/5.24/solid-5.24.0.tar.xz";
+ sha256 = "00wvsxcnvhdx7ijzpcz5wny2ypkxr1drdpr4yvawgpwa678l1107";
+ name = "solid-5.24.0.tar.xz";
+ };
+ };
+ sonnet = {
+ version = "5.24.0";
+ src = fetchurl {
+ url = "${mirror}/stable/frameworks/5.24/sonnet-5.24.0.tar.xz";
+ sha256 = "152xz7fb1iwhb5w1n4xqvc648iaxi0inrl4kavxcsir61das1xyl";
+ name = "sonnet-5.24.0.tar.xz";
+ };
+ };
+ threadweaver = {
+ version = "5.24.0";
+ src = fetchurl {
+ url = "${mirror}/stable/frameworks/5.24/threadweaver-5.24.0.tar.xz";
+ sha256 = "02g60zr9cc4bg1p90giich4n0qvqaiakz0y94qrnyj9f7fg0yksl";
+ name = "threadweaver-5.24.0.tar.xz";
+ };
+ };
+}
diff --git a/pkgs/desktops/kde-5/frameworks-5.22/threadweaver.nix b/pkgs/desktops/kde-5/frameworks/threadweaver.nix
similarity index 100%
rename from pkgs/desktops/kde-5/frameworks-5.22/threadweaver.nix
rename to pkgs/desktops/kde-5/frameworks/threadweaver.nix
diff --git a/pkgs/desktops/kde-5/plasma-5.6/fetchsrcs.sh b/pkgs/desktops/kde-5/plasma-5.6/fetchsrcs.sh
deleted file mode 100755
index adb61ceeab0..00000000000
--- a/pkgs/desktops/kde-5/plasma-5.6/fetchsrcs.sh
+++ /dev/null
@@ -1,57 +0,0 @@
-#! /usr/bin/env nix-shell
-#! nix-shell -i bash -p coreutils findutils gawk gnused nix wget
-
-set -x
-
-# The trailing slash at the end is necessary!
-RELEASE_URL="http://download.kde.org/stable/plasma/5.6.4/"
-EXTRA_WGET_ARGS='-A *.tar.xz'
-
-mkdir tmp; cd tmp
-
-rm -f ../srcs.csv
-
-wget -nH -r -c --no-parent $RELEASE_URL $EXTRA_WGET_ARGS
-
-find . | while read src; do
- if [[ -f "${src}" ]]; then
- # Sanitize file name
- filename=$(basename "$src" | tr '@' '_')
- nameVersion="${filename%.tar.*}"
- name=$(echo "$nameVersion" | sed -e 's,-[[:digit:]].*,,' | sed -e 's,-opensource-src$,,')
- version=$(echo "$nameVersion" | sed -e 's,^\([[:alpha:]][[:alnum:]]*-\)\+,,')
- echo "$name,$version,$src,$filename" >>../srcs.csv
- fi
-done
-
-cat >../srcs.nix <>../srcs.nix <>../srcs.nix
-
-rm -f ../srcs.csv
-
-cd ..
diff --git a/pkgs/desktops/kde-5/plasma-5.6/khelpcenter.nix b/pkgs/desktops/kde-5/plasma-5.6/khelpcenter.nix
deleted file mode 100644
index 3ded239b09b..00000000000
--- a/pkgs/desktops/kde-5/plasma-5.6/khelpcenter.nix
+++ /dev/null
@@ -1,20 +0,0 @@
-{ plasmaPackage, extra-cmake-modules, kdoctools, kconfig
-, kcoreaddons, kdbusaddons, ki18n, kinit, kcmutils, kdelibs4support
-, khtml, kservice, makeQtWrapper
-}:
-
-plasmaPackage {
- name = "khelpcenter";
- nativeBuildInputs = [
- extra-cmake-modules
- kdoctools
- makeQtWrapper
- ];
- propagatedBuildInputs = [
- kdelibs4support khtml ki18n kconfig kcoreaddons kdbusaddons kinit kcmutils
- kservice
- ];
- postInstall = ''
- wrapQtProgram "$out/bin/khelpcenter"
- '';
-}
diff --git a/pkgs/desktops/kde-5/plasma-5.6/plasma-workspace/startkde.patch b/pkgs/desktops/kde-5/plasma-5.6/plasma-workspace/startkde.patch
deleted file mode 100644
index eea0ae4c199..00000000000
--- a/pkgs/desktops/kde-5/plasma-5.6/plasma-workspace/startkde.patch
+++ /dev/null
@@ -1,372 +0,0 @@
-Index: plasma-workspace-5.5.5/startkde/startkde.cmake
-===================================================================
---- plasma-workspace-5.5.5.orig/startkde/startkde.cmake
-+++ plasma-workspace-5.5.5/startkde/startkde.cmake
-@@ -1,8 +1,36 @@
--#!/bin/sh
-+#!@bash@
- #
- # DEFAULT KDE STARTUP SCRIPT ( @PROJECT_VERSION@ )
- #
-
-+set -x
-+
-+# The KDE icon cache is supposed to update itself
-+# automatically, but it uses the timestamp on the icon
-+# theme directory as a trigger. Since in Nix the
-+# timestamp is always the same, this doesn't work. So as
-+# a workaround, nuke the icon cache on login. This isn't
-+# perfect, since it may require logging out after
-+# installing new applications to update the cache.
-+# See http://lists-archives.org/kde-devel/26175-what-when-will-icon-cache-refresh.html
-+rm -fv $HOME/.cache/icon-cache.kcache
-+
-+# Qt writes a weird ‘libraryPath’ line to
-+# ~/.config/Trolltech.conf that causes the KDE plugin
-+# paths of previous KDE invocations to be searched.
-+# Obviously using mismatching KDE libraries is potentially
-+# disastrous, so here we nuke references to the Nix store
-+# in Trolltech.conf. A better solution would be to stop
-+# Qt from doing this wackiness in the first place.
-+if [ -e $HOME/.config/Trolltech.conf ]; then
-+ @sed@ -e '/nix\\store\|nix\/store/ d' -i $HOME/.config/Trolltech.conf
-+fi
-+
-+# (NixOS) We run kbuildsycoca5 before starting the user session because things
-+# may be missing or moved if they have run nixos-rebuild and it may not be
-+# possible for them to start Konsole to run it manually!
-+@kbuildsycoca5@
-+
- if test "x$1" = x--failsafe; then
- KDE_FAILSAFE=1 # General failsafe flag
- KWIN_COMPOSE=N # Disable KWin's compositing
-@@ -17,29 +45,16 @@ trap 'echo GOT SIGHUP' HUP
- # we have to unset this for Darwin since it will screw up KDE's dynamic-loading
- unset DYLD_FORCE_FLAT_NAMESPACE
-
--# in case we have been started with full pathname spec without being in PATH
--bindir=`echo "$0" | sed -n 's,^\(/.*\)/[^/][^/]*$,\1,p'`
--if [ -n "$bindir" ]; then
-- qbindir=`qtpaths --binaries-dir`
-- qdbus=$qbindir/qdbus
-- case $PATH in
-- $bindir|$bindir:*|*:$bindir|*:$bindir:*) ;;
-- *) PATH=$bindir:$PATH; export PATH;;
-- esac
--else
-- qdbus=qdbus
--fi
--
- # Check if a KDE session already is running and whether it's possible to connect to X
--kcheckrunning
-+@kcheckrunning@
- kcheckrunning_result=$?
- if test $kcheckrunning_result -eq 0 ; then
-- echo "KDE seems to be already running on this display."
-- xmessage -geometry 500x100 "KDE seems to be already running on this display." > /dev/null 2>/dev/null
-+ echo "KDE seems to be already running on this display."
-+ @xmessage@ -geometry 500x100 "KDE seems to be already running on this display."
- exit 1
- elif test $kcheckrunning_result -eq 2 ; then
- echo "\$DISPLAY is not set or cannot connect to the X server."
-- exit 1
-+ exit 1
- fi
-
- # Boot sequence:
-@@ -57,13 +72,8 @@ fi
- # * Then ksmserver is started which takes control of the rest of the startup sequence
-
- # We need to create config folder so we can write startupconfigkeys
--if [ ${XDG_CONFIG_HOME} ]; then
-- configDir=$XDG_CONFIG_HOME;
--else
-- configDir=${HOME}/.config; #this is the default, http://standards.freedesktop.org/basedir-spec/basedir-spec-latest.html
--fi
--
--mkdir -p $configDir
-+configDir=$(@qtpaths@ --writable-path GenericConfigLocation)
-+mkdir -p "$configDir"
-
- #This is basically setting defaults so we can use them with kstartupconfig5
- cat >$configDir/startupconfigkeys </dev/null 2>/dev/null; then
-+ : # ok
-+else
-+ echo 'startkde: Could not start D-Bus. Can you call qdbus?' 1>&2
-+ test -n "$ksplash_pid" && kill "$ksplash_pid" 2>/dev/null
-+ @xmessage@ -geometry 500x100 "Could not start D-Bus. Can you call qdbus?"
-+ exit 1
-+fi
-+
- ksplash_pid=
- if test -z "$dl"; then
- # the splashscreen and progress indicator
- case "$ksplashrc_ksplash_engine" in
- KSplashQML)
-- ksplash_pid=`ksplashqml "${ksplashrc_ksplash_theme}" --pid`
-+ ksplash_pid=`@out@/bin/ksplashqml "${ksplashrc_ksplash_theme}" --pid`
- ;;
- None)
- ;;
-@@ -201,8 +199,7 @@ fi
- # For anything else (that doesn't set env vars, or that needs a window manager),
- # better use the Autostart folder.
-
--# TODO: Use GenericConfigLocation once we depend on Qt 5.4
--scriptpath=`qtpaths --paths ConfigLocation | tr ':' '\n' | sed 's,$,/plasma-workspace,g'`
-+scriptpath=$(@qtpaths@ --paths GenericConfigLocation | tr ':' '\n' | @sed@ 's,$,/plasma-workspace,g')
-
- # Add /env/ to the directory to locate the scripts to be sourced
- for prefix in `echo $scriptpath`; do
-@@ -232,7 +229,7 @@ usr_odir=$HOME/.fonts/kde-override
- usr_fdir=$HOME/.fonts
-
- if test -n "$KDEDIRS"; then
-- kdedirs_first=`echo "$KDEDIRS"|sed -e 's/:.*//'`
-+ kdedirs_first=`echo "$KDEDIRS" | @sed@ -e 's/:.*//'`
- sys_odir=$kdedirs_first/share/fonts/override
- sys_fdir=$kdedirs_first/share/fonts
- else
-@@ -245,23 +242,13 @@ fi
- # add the user's dirs to the font path, as they might simply have been made
- # read-only by the administrator, for whatever reason.
-
--test -d "$sys_odir" && xset +fp "$sys_odir"
--test -d "$usr_odir" && (mkfontdir "$usr_odir" ; xset +fp "$usr_odir")
--test -d "$usr_fdir" && (mkfontdir "$usr_fdir" ; xset fp+ "$usr_fdir")
--test -d "$sys_fdir" && xset fp+ "$sys_fdir"
-+test -d "$sys_odir" && @xset@ +fp "$sys_odir"
-+test -d "$usr_odir" && ( @mkfontdir@ "$usr_odir" ; @xset@ +fp "$usr_odir" )
-+test -d "$usr_fdir" && ( @mkfontdir@ "$usr_fdir" ; @xset@ fp+ "$usr_fdir" )
-+test -d "$sys_fdir" && @xset@ fp+ "$sys_fdir"
-
- # Ask X11 to rebuild its font list.
--xset fp rehash
--
--# Set a left cursor instead of the standard X11 "X" cursor, since I've heard
--# from some users that they're confused and don't know what to do. This is
--# especially necessary on slow machines, where starting KDE takes one or two
--# minutes until anything appears on the screen.
--#
--# If the user has overwritten fonts, the cursor font may be different now
--# so don't move this up.
--#
--xsetroot -cursor_name left_ptr
-+@xset@ fp rehash
-
- # Get Ghostscript to look into user's KDE fonts dir for additional Fontmap
- if test -n "$GS_LIB" ; then
-@@ -274,26 +261,6 @@ fi
-
- echo 'startkde: Starting up...' 1>&2
-
--# Make sure that the KDE prefix is first in XDG_DATA_DIRS and that it's set at all.
--# The spec allows XDG_DATA_DIRS to be not set, but X session startup scripts tend
--# to set it to a list of paths *not* including the KDE prefix if it's not /usr or
--# /usr/local.
--if test -z "$XDG_DATA_DIRS"; then
-- XDG_DATA_DIRS="@CMAKE_INSTALL_PREFIX@/@SHARE_INSTALL_PREFIX@:/usr/share:/usr/local/share"
--fi
--export XDG_DATA_DIRS
--
--# Make sure that D-Bus is running
--if $qdbus >/dev/null 2>/dev/null; then
-- : # ok
--else
-- echo 'startkde: Could not start D-Bus. Can you call qdbus?' 1>&2
-- test -n "$ksplash_pid" && kill "$ksplash_pid" 2>/dev/null
-- xmessage -geometry 500x100 "Could not start D-Bus. Can you call qdbus?"
-- exit 1
--fi
--
--
- # Mark that full KDE session is running (e.g. Konqueror preloading works only
- # with full KDE running). The KDE_FULL_SESSION property can be detected by
- # any X client connected to the same X session, even if not launched
-@@ -318,11 +285,11 @@ fi
- #
- KDE_FULL_SESSION=true
- export KDE_FULL_SESSION
--xprop -root -f KDE_FULL_SESSION 8t -set KDE_FULL_SESSION true
-+@xprop@ -root -f KDE_FULL_SESSION 8t -set KDE_FULL_SESSION true
-
- KDE_SESSION_VERSION=5
- export KDE_SESSION_VERSION
--xprop -root -f KDE_SESSION_VERSION 32c -set KDE_SESSION_VERSION 5
-+@xprop@ -root -f KDE_SESSION_VERSION 32c -set KDE_SESSION_VERSION 5
-
- KDE_SESSION_UID=`id -ru`
- export KDE_SESSION_UID
-@@ -332,11 +299,11 @@ export XDG_CURRENT_DESKTOP
-
- # At this point all the environment is ready, let's send it to kwalletd if running
- if test -n "$PAM_KWALLET_LOGIN" ; then
-- env | socat STDIN UNIX-CONNECT:$PAM_KWALLET_LOGIN
-+ env | @socat@ STDIN UNIX-CONNECT:$PAM_KWALLET_LOGIN
- fi
- # ...and also to kwalletd5
- if test -n "$PAM_KWALLET5_LOGIN" ; then
-- env | socat STDIN UNIX-CONNECT:$PAM_KWALLET5_LOGIN
-+ env | @socat@ STDIN UNIX-CONNECT:$PAM_KWALLET5_LOGIN
- fi
-
- # At this point all environment variables are set, let's send it to the DBus session server to update the activation environment
-@@ -349,18 +316,18 @@ if test $? -ne 0; then
- # Startup error
- echo 'startkde: Could not sync environment to dbus.' 1>&2
- test -n "$ksplash_pid" && kill "$ksplash_pid" 2>/dev/null
-- xmessage -geometry 500x100 "Could not sync environment to dbus."
-+ @xmessage@ -geometry 500x100 "Could not sync environment to dbus."
- exit 1
- fi
-
- # We set LD_BIND_NOW to increase the efficiency of kdeinit.
- # kdeinit unsets this variable before loading applications.
--LD_BIND_NOW=true @CMAKE_INSTALL_FULL_LIBEXECDIR_KF5@/start_kdeinit_wrapper --kded +kcminit_startup
-+LD_BIND_NOW=true @start_kdeinit_wrapper@ --kded +kcminit_startup
- if test $? -ne 0; then
- # Startup error
- echo 'startkde: Could not start kdeinit5. Check your installation.' 1>&2
- test -n "$ksplash_pid" && kill "$ksplash_pid" 2>/dev/null
-- xmessage -geometry 500x100 "Could not start kdeinit5. Check your installation."
-+ @xmessage@ -geometry 500x100 "Could not start kdeinit5. Check your installation."
- exit 1
- fi
-
-@@ -379,27 +346,27 @@ test -n "$KDEWM" && KDEWM="--windowmanag
- # lock now and do the rest of the KDE startup underneath the locker.
- KSMSERVEROPTIONS=""
- test -n "$dl" && KSMSERVEROPTIONS=" --lockscreen"
--kwrapper5 @CMAKE_INSTALL_FULL_BINDIR@/ksmserver $KDEWM $KSMSERVEROPTIONS
-+@kwrapper5@ @CMAKE_INSTALL_FULL_BINDIR@/ksmserver $KDEWM $KSMSERVEROPTIONS
- if test $? -eq 255; then
- # Startup error
- echo 'startkde: Could not start ksmserver. Check your installation.' 1>&2
- test -n "$ksplash_pid" && kill "$ksplash_pid" 2>/dev/null
-- xmessage -geometry 500x100 "Could not start ksmserver. Check your installation."
-+ @xmessage@ -geometry 500x100 "Could not start ksmserver. Check your installation."
- fi
-
--wait_drkonqi=`kreadconfig5 --file startkderc --group WaitForDrKonqi --key Enabled --default true`
-+wait_drkonqi=`@kreadconfig5@ --file startkderc --group WaitForDrKonqi --key Enabled --default true`
-
- if test x"$wait_drkonqi"x = x"true"x ; then
- # wait for remaining drkonqi instances with timeout (in seconds)
-- wait_drkonqi_timeout=`kreadconfig5 --file startkderc --group WaitForDrKonqi --key Timeout --default 900`
-+ wait_drkonqi_timeout=`@kreadconfig5@ --file startkderc --group WaitForDrKonqi --key Timeout --default 900`
- wait_drkonqi_counter=0
-- while $qdbus | grep "^[^w]*org.kde.drkonqi" > /dev/null ; do
-+ while @qdbus@ | @grep@ "^[^w]*org.kde.drkonqi" > /dev/null ; do
- sleep 5
- wait_drkonqi_counter=$((wait_drkonqi_counter+5))
- if test "$wait_drkonqi_counter" -ge "$wait_drkonqi_timeout" ; then
- # ask remaining drkonqis to die in a graceful way
-- $qdbus | grep 'org.kde.drkonqi-' | while read address ; do
-- $qdbus "$address" "/MainApplication" "quit"
-+ @qdbus@ | @grep@ 'org.kde.drkonqi-' | while read address ; do
-+ @qdbus@ "$address" "/MainApplication" "quit"
- done
- break
- fi
-@@ -411,12 +378,12 @@ echo 'startkde: Shutting down...' 1>&2
- test -n "$ksplash_pid" && kill "$ksplash_pid" 2>/dev/null
-
- # Clean up
--kdeinit5_shutdown
-+@kdeinit5_shutdown@
-
- unset KDE_FULL_SESSION
--xprop -root -remove KDE_FULL_SESSION
-+@xprop@ -root -remove KDE_FULL_SESSION
- unset KDE_SESSION_VERSION
--xprop -root -remove KDE_SESSION_VERSION
-+@xprop@ -root -remove KDE_SESSION_VERSION
- unset KDE_SESSION_UID
-
- echo 'startkde: Done.' 1>&2
diff --git a/pkgs/desktops/kde-5/plasma-5.6/powerdevil.nix b/pkgs/desktops/kde-5/plasma-5.6/powerdevil.nix
deleted file mode 100644
index 8f3b354b947..00000000000
--- a/pkgs/desktops/kde-5/plasma-5.6/powerdevil.nix
+++ /dev/null
@@ -1,18 +0,0 @@
-{ plasmaPackage, extra-cmake-modules, kdoctools, kactivities
-, kauth, kconfig, kdbusaddons, kdelibs4support, kglobalaccel, ki18n
-, kidletime, kio, knotifyconfig, kwayland, libkscreen, plasma-workspace
-, qtx11extras, solid, udev
-}:
-
-plasmaPackage {
- name = "powerdevil";
- nativeBuildInputs = [
- extra-cmake-modules
- kdoctools
- ];
- propagatedBuildInputs = [
- kconfig kdbusaddons knotifyconfig solid udev kactivities kauth
- kdelibs4support kglobalaccel ki18n kio kidletime kwayland libkscreen
- plasma-workspace qtx11extras
- ];
-}
diff --git a/pkgs/desktops/kde-5/plasma-5.6/srcs.nix b/pkgs/desktops/kde-5/plasma-5.6/srcs.nix
deleted file mode 100644
index 76b5befacde..00000000000
--- a/pkgs/desktops/kde-5/plasma-5.6/srcs.nix
+++ /dev/null
@@ -1,341 +0,0 @@
-# DO NOT EDIT! This file is generated automatically by fetchsrcs.sh
-{ fetchurl, mirror }:
-
-{
- bluedevil = {
- version = "5.6.4";
- src = fetchurl {
- url = "${mirror}/stable/plasma/5.6.4/bluedevil-5.6.4.tar.xz";
- sha256 = "043damq5pgalrv77rggcwkvhvxkdpmzhq022zga7nvbzv58hygk0";
- name = "bluedevil-5.6.4.tar.xz";
- };
- };
- breeze = {
- version = "5.6.4";
- src = fetchurl {
- url = "${mirror}/stable/plasma/5.6.4/breeze-5.6.4.tar.xz";
- sha256 = "184fkv6wda3g0fcmvnzck1vz7vmiin9zsgi3lycrnhf8bwmdp88x";
- name = "breeze-5.6.4.tar.xz";
- };
- };
- breeze-grub = {
- version = "5.6.4";
- src = fetchurl {
- url = "${mirror}/stable/plasma/5.6.4/breeze-grub-5.6.4.tar.xz";
- sha256 = "0ccc1r7gmfgv5hbd2lvy8qmkmnfsxywax136i0813bjnc3nmvmpy";
- name = "breeze-grub-5.6.4.tar.xz";
- };
- };
- breeze-gtk = {
- version = "5.6.4";
- src = fetchurl {
- url = "${mirror}/stable/plasma/5.6.4/breeze-gtk-5.6.4.tar.xz";
- sha256 = "07y5vpikp2q0knmf86m5hzg8dl7a05zlcmd56mg655b9vijkn7sp";
- name = "breeze-gtk-5.6.4.tar.xz";
- };
- };
- breeze-plymouth = {
- version = "5.6.4";
- src = fetchurl {
- url = "${mirror}/stable/plasma/5.6.4/breeze-plymouth-5.6.4.tar.xz";
- sha256 = "1vdxbl4mkdmac9i1wnnlsfpx35n6qzymjkjm3zmxa5saxdwv6w0f";
- name = "breeze-plymouth-5.6.4.tar.xz";
- };
- };
- discover = {
- version = "5.6.4";
- src = fetchurl {
- url = "${mirror}/stable/plasma/5.6.4/discover-5.6.4.tar.xz";
- sha256 = "0l9rp77hm8gbih7qkr8j1nf37mymysbyjj9nxx3ilgv3dac1x6lb";
- name = "discover-5.6.4.tar.xz";
- };
- };
- kactivitymanagerd = {
- version = "5.6.4";
- src = fetchurl {
- url = "${mirror}/stable/plasma/5.6.4/kactivitymanagerd-5.6.4.tar.xz";
- sha256 = "0xpy392w0xcssabblkw3q7gv9ajn1725i0q5lm3xzrl0x0iq3h2z";
- name = "kactivitymanagerd-5.6.4.tar.xz";
- };
- };
- kde-cli-tools = {
- version = "5.6.4";
- src = fetchurl {
- url = "${mirror}/stable/plasma/5.6.4/kde-cli-tools-5.6.4.tar.xz";
- sha256 = "1kmhi9jx40s8i8zvim0v9dx66gpg6nvjl88ir0w7r903c4c58kpm";
- name = "kde-cli-tools-5.6.4.tar.xz";
- };
- };
- kdecoration = {
- version = "5.6.4";
- src = fetchurl {
- url = "${mirror}/stable/plasma/5.6.4/kdecoration-5.6.4.tar.xz";
- sha256 = "0i84nii940xnd94cch4z7zax3y157mjfngcil34ar0n2lpgya2ap";
- name = "kdecoration-5.6.4.tar.xz";
- };
- };
- kde-gtk-config = {
- version = "5.6.4";
- src = fetchurl {
- url = "${mirror}/stable/plasma/5.6.4/kde-gtk-config-5.6.4.tar.xz";
- sha256 = "11798j2024zjpjmpiwj8a9kp3r9lpkahpvkpyxq2pqsvj4rfi55r";
- name = "kde-gtk-config-5.6.4.tar.xz";
- };
- };
- kdeplasma-addons = {
- version = "5.6.4";
- src = fetchurl {
- url = "${mirror}/stable/plasma/5.6.4/kdeplasma-addons-5.6.4.tar.xz";
- sha256 = "0h20nq5kkd8gn4x2fysfmzwina6cb98d41c8m7c2vxiw6ycsl5id";
- name = "kdeplasma-addons-5.6.4.tar.xz";
- };
- };
- kgamma5 = {
- version = "5.6.4";
- src = fetchurl {
- url = "${mirror}/stable/plasma/5.6.4/kgamma5-5.6.4.tar.xz";
- sha256 = "0zc7rdw52awrasiynd3b6lhizpzh8yj097fplvnni7nq6mxsc3x3";
- name = "kgamma5-5.6.4.tar.xz";
- };
- };
- khelpcenter = {
- version = "5.6.4.1";
- src = fetchurl {
- url = "${mirror}/stable/plasma/5.6.4/khelpcenter-5.6.4.1.tar.xz";
- sha256 = "14mwy1rv04mp92dfci6ak6dvmaqx2vc0yk0zyp1v6s64jiry658g";
- name = "khelpcenter-5.6.4.1.tar.xz";
- };
- };
- khotkeys = {
- version = "5.6.4";
- src = fetchurl {
- url = "${mirror}/stable/plasma/5.6.4/khotkeys-5.6.4.tar.xz";
- sha256 = "1xkxzganifvcrinj2hwp9927yqzsqp0mawnfbxnpyhas2jj813c5";
- name = "khotkeys-5.6.4.tar.xz";
- };
- };
- kinfocenter = {
- version = "5.6.4";
- src = fetchurl {
- url = "${mirror}/stable/plasma/5.6.4/kinfocenter-5.6.4.tar.xz";
- sha256 = "19rkb2rprfyh9i4dn7kz2gf4yxmigq3qdhksffn56g2r77wfp56c";
- name = "kinfocenter-5.6.4.tar.xz";
- };
- };
- kmenuedit = {
- version = "5.6.4";
- src = fetchurl {
- url = "${mirror}/stable/plasma/5.6.4/kmenuedit-5.6.4.tar.xz";
- sha256 = "1si5gxlcvdywbzwgw6xnwkx509gbc9jpbw5n1kgzxrya0s0baf0z";
- name = "kmenuedit-5.6.4.tar.xz";
- };
- };
- kscreen = {
- version = "5.6.4";
- src = fetchurl {
- url = "${mirror}/stable/plasma/5.6.4/kscreen-5.6.4.tar.xz";
- sha256 = "0h722khwnd41537daz5v1303jz7h2b72x9gdfxbihvb7gxaxq9yj";
- name = "kscreen-5.6.4.tar.xz";
- };
- };
- kscreenlocker = {
- version = "5.6.4";
- src = fetchurl {
- url = "${mirror}/stable/plasma/5.6.4/kscreenlocker-5.6.4.tar.xz";
- sha256 = "0anhcpl5r0x17i412imn8q0078dqpxgn1wmjz8xjfn33i2y32k0h";
- name = "kscreenlocker-5.6.4.tar.xz";
- };
- };
- ksshaskpass = {
- version = "5.6.4";
- src = fetchurl {
- url = "${mirror}/stable/plasma/5.6.4/ksshaskpass-5.6.4.tar.xz";
- sha256 = "1qzxj152pq53ach0ddc7adg6dvz250pzd5vaz7w79jbjn9pgkaky";
- name = "ksshaskpass-5.6.4.tar.xz";
- };
- };
- ksysguard = {
- version = "5.6.4";
- src = fetchurl {
- url = "${mirror}/stable/plasma/5.6.4/ksysguard-5.6.4.tar.xz";
- sha256 = "0003w4kad8lvs0hi49qq49sxg8hsqa1b82miw0cmb3r08ivr1pc1";
- name = "ksysguard-5.6.4.tar.xz";
- };
- };
- kwallet-pam = {
- version = "5.6.4";
- src = fetchurl {
- url = "${mirror}/stable/plasma/5.6.4/kwallet-pam-5.6.4.tar.xz";
- sha256 = "1yr5nhxrrkz49qn1nd7ql6k1wvilzy1vg40m3x65wk3gbgajq2xj";
- name = "kwallet-pam-5.6.4.tar.xz";
- };
- };
- kwayland = {
- version = "5.6.4";
- src = fetchurl {
- url = "${mirror}/stable/plasma/5.6.4/kwayland-5.6.4.tar.xz";
- sha256 = "0limprv5sniscnar6l0q2805nvfiv375r4kdwwlq8r0g7cj1bb6q";
- name = "kwayland-5.6.4.tar.xz";
- };
- };
- kwayland-integration = {
- version = "5.6.4";
- src = fetchurl {
- url = "${mirror}/stable/plasma/5.6.4/kwayland-integration-5.6.4.tar.xz";
- sha256 = "1jxl6pmbq33sv09lrs558hpy7n7liz3c0l9mmnsnvam43lmj2mzi";
- name = "kwayland-integration-5.6.4.tar.xz";
- };
- };
- kwin = {
- version = "5.6.4";
- src = fetchurl {
- url = "${mirror}/stable/plasma/5.6.4/kwin-5.6.4.tar.xz";
- sha256 = "09869hnck8fas5hkpnn7przdn2hzj8cljpasnzy30nc3h5823rdc";
- name = "kwin-5.6.4.tar.xz";
- };
- };
- kwrited = {
- version = "5.6.4";
- src = fetchurl {
- url = "${mirror}/stable/plasma/5.6.4/kwrited-5.6.4.tar.xz";
- sha256 = "0cgi9ad0kns5z926hbdpg1hrp3pcpjcfpxna248qq7xf9il8cg2q";
- name = "kwrited-5.6.4.tar.xz";
- };
- };
- libkscreen = {
- version = "5.6.4";
- src = fetchurl {
- url = "${mirror}/stable/plasma/5.6.4/libkscreen-5.6.4.tar.xz";
- sha256 = "1rrargaaz39xxn9rgvlgm15c9y4zyvz35h4dv6fz7vrix2cjpqkx";
- name = "libkscreen-5.6.4.tar.xz";
- };
- };
- libksysguard = {
- version = "5.6.4";
- src = fetchurl {
- url = "${mirror}/stable/plasma/5.6.4/libksysguard-5.6.4.tar.xz";
- sha256 = "0acwb9qnrygggywyf5vj7768mp269hmnxz2q0vgn3pwpc68l4xj6";
- name = "libksysguard-5.6.4.tar.xz";
- };
- };
- milou = {
- version = "5.6.4";
- src = fetchurl {
- url = "${mirror}/stable/plasma/5.6.4/milou-5.6.4.tar.xz";
- sha256 = "1j22i98qwc14xbhc2yy0qq100rnddkmkr6q432pfd2cz31l5pvyk";
- name = "milou-5.6.4.tar.xz";
- };
- };
- oxygen = {
- version = "5.6.4";
- src = fetchurl {
- url = "${mirror}/stable/plasma/5.6.4/oxygen-5.6.4.tar.xz";
- sha256 = "0h8ib1b7l1i92vnwhzdxsw8vspx420dk1pw3dg0p550vw411nfm9";
- name = "oxygen-5.6.4.tar.xz";
- };
- };
- plasma-desktop = {
- version = "5.6.4";
- src = fetchurl {
- url = "${mirror}/stable/plasma/5.6.4/plasma-desktop-5.6.4.tar.xz";
- sha256 = "0xj8y2w8qzxih47qmyg31h588i8g2nlyx7rr3qkj8zvllq1fqspw";
- name = "plasma-desktop-5.6.4.tar.xz";
- };
- };
- plasma-integration = {
- version = "5.6.4";
- src = fetchurl {
- url = "${mirror}/stable/plasma/5.6.4/plasma-integration-5.6.4.tar.xz";
- sha256 = "1aqv3agcba6w789mmg0r56afywqkxwcwnvfznaxzzwi33y039x4m";
- name = "plasma-integration-5.6.4.tar.xz";
- };
- };
- plasma-mediacenter = {
- version = "5.6.4";
- src = fetchurl {
- url = "${mirror}/stable/plasma/5.6.4/plasma-mediacenter-5.6.4.tar.xz";
- sha256 = "0w2s6s4azdh3if2w88p5h2p8kw14l7z6h6pddj3m4hyq2nyk5izc";
- name = "plasma-mediacenter-5.6.4.tar.xz";
- };
- };
- plasma-nm = {
- version = "5.6.4";
- src = fetchurl {
- url = "${mirror}/stable/plasma/5.6.4/plasma-nm-5.6.4.tar.xz";
- sha256 = "1g0flz5f8ydbi1an55anw4zz1h2wmf6xq500qs7ww038gk24113v";
- name = "plasma-nm-5.6.4.tar.xz";
- };
- };
- plasma-pa = {
- version = "5.6.4";
- src = fetchurl {
- url = "${mirror}/stable/plasma/5.6.4/plasma-pa-5.6.4.tar.xz";
- sha256 = "0whlqhlnadk20qjmiyhxxsh0g1djmn6hjiqlpya224gjdpg9205s";
- name = "plasma-pa-5.6.4.tar.xz";
- };
- };
- plasma-sdk = {
- version = "5.6.4";
- src = fetchurl {
- url = "${mirror}/stable/plasma/5.6.4/plasma-sdk-5.6.4.tar.xz";
- sha256 = "1x2g1kf40g249n7hcq15k4nxv269lw2v4y49j448gzp4hglfkq4i";
- name = "plasma-sdk-5.6.4.tar.xz";
- };
- };
- plasma-workspace = {
- version = "5.6.4";
- src = fetchurl {
- url = "${mirror}/stable/plasma/5.6.4/plasma-workspace-5.6.4.tar.xz";
- sha256 = "1rrhw13hr8b3088lxjzaks439yi1kx53qxm8iwspnnkx9b88n18v";
- name = "plasma-workspace-5.6.4.tar.xz";
- };
- };
- plasma-workspace-wallpapers = {
- version = "5.6.4";
- src = fetchurl {
- url = "${mirror}/stable/plasma/5.6.4/plasma-workspace-wallpapers-5.6.4.tar.xz";
- sha256 = "1nzzi19jgfprlhiq7kfarv1z4c4p2vcdds75hk304sb2bj0a1fq3";
- name = "plasma-workspace-wallpapers-5.6.4.tar.xz";
- };
- };
- polkit-kde-agent = {
- version = "1-5.6.4";
- src = fetchurl {
- url = "${mirror}/stable/plasma/5.6.4/polkit-kde-agent-1-5.6.4.tar.xz";
- sha256 = "07lkhsb9yr4223qxlfkzl54jsl3amdlf9f86cqh1mryk9hqx4p6z";
- name = "polkit-kde-agent-1-5.6.4.tar.xz";
- };
- };
- powerdevil = {
- version = "5.6.4";
- src = fetchurl {
- url = "${mirror}/stable/plasma/5.6.4/powerdevil-5.6.4.tar.xz";
- sha256 = "0yv0wcfs678z1h0lglsky439c8qqiz0m6630sv254xydsdwld1m5";
- name = "powerdevil-5.6.4.tar.xz";
- };
- };
- sddm-kcm = {
- version = "5.6.4";
- src = fetchurl {
- url = "${mirror}/stable/plasma/5.6.4/sddm-kcm-5.6.4.tar.xz";
- sha256 = "05f7xx0ayyq5l15j7cq6rpb9l473lkizcf41yrr0aszrzj45i94v";
- name = "sddm-kcm-5.6.4.tar.xz";
- };
- };
- systemsettings = {
- version = "5.6.4";
- src = fetchurl {
- url = "${mirror}/stable/plasma/5.6.4/systemsettings-5.6.4.tar.xz";
- sha256 = "1i4pqz4whikcvnpprkv9hd435h4akrnmqrjcvq55v3nr8fxd0dlv";
- name = "systemsettings-5.6.4.tar.xz";
- };
- };
- user-manager = {
- version = "5.6.4";
- src = fetchurl {
- url = "${mirror}/stable/plasma/5.6.4/user-manager-5.6.4.tar.xz";
- sha256 = "1p1xxs4hjacdn2kr2v2rx1c7kipkgsf8wp3bvpf9vpg4g384p2rm";
- name = "user-manager-5.6.4.tar.xz";
- };
- };
-}
diff --git a/pkgs/desktops/kde-5/plasma-5.6/bluedevil.nix b/pkgs/desktops/kde-5/plasma/bluedevil.nix
similarity index 100%
rename from pkgs/desktops/kde-5/plasma-5.6/bluedevil.nix
rename to pkgs/desktops/kde-5/plasma/bluedevil.nix
diff --git a/pkgs/desktops/kde-5/plasma-5.6/breeze-gtk.nix b/pkgs/desktops/kde-5/plasma/breeze-gtk.nix
similarity index 100%
rename from pkgs/desktops/kde-5/plasma-5.6/breeze-gtk.nix
rename to pkgs/desktops/kde-5/plasma/breeze-gtk.nix
diff --git a/pkgs/desktops/kde-5/plasma-5.6/breeze-qt4.nix b/pkgs/desktops/kde-5/plasma/breeze-qt4.nix
similarity index 100%
rename from pkgs/desktops/kde-5/plasma-5.6/breeze-qt4.nix
rename to pkgs/desktops/kde-5/plasma/breeze-qt4.nix
diff --git a/pkgs/desktops/kde-5/plasma-5.6/breeze-qt5.nix b/pkgs/desktops/kde-5/plasma/breeze-qt5.nix
similarity index 100%
rename from pkgs/desktops/kde-5/plasma-5.6/breeze-qt5.nix
rename to pkgs/desktops/kde-5/plasma/breeze-qt5.nix
diff --git a/pkgs/desktops/kde-5/plasma-5.6/default.nix b/pkgs/desktops/kde-5/plasma/default.nix
similarity index 90%
rename from pkgs/desktops/kde-5/plasma-5.6/default.nix
rename to pkgs/desktops/kde-5/plasma/default.nix
index b0f53eca6f7..f6bbd5c3f51 100644
--- a/pkgs/desktops/kde-5/plasma-5.6/default.nix
+++ b/pkgs/desktops/kde-5/plasma/default.nix
@@ -1,9 +1,13 @@
-# Maintainer's Notes:
-#
-# How To Update
-# 1. Edit the URL in ./manifest.sh
-# 2. Run ./manifest.sh
-# 3. Fix build errors.
+/*
+
+# Updates
+
+1. Update the URL in `maintainers/scripts/generate-kde-plasma.sh` and run
+ that script from the top of the Nixpkgs tree.
+2. Check that the new packages build correctly.
+3. Commit the changes and open a pull request.
+
+*/
{ pkgs, debug ? false }:
@@ -11,10 +15,8 @@ let
inherit (pkgs) lib stdenv symlinkJoin;
- kdeApps = pkgs.kdeApps_15_12;
-
- srcs = import ./srcs.nix { inherit (pkgs) fetchurl; inherit mirror; };
mirror = "mirror://kde";
+ srcs = import ./srcs.nix { inherit (pkgs) fetchurl; inherit mirror; };
packages = self: with self; {
plasmaPackage = args:
@@ -61,7 +63,6 @@ let
kdecoration = callPackage ./kdecoration.nix {};
kdeplasma-addons = callPackage ./kdeplasma-addons.nix {};
kgamma5 = callPackage ./kgamma5.nix {};
- khelpcenter = callPackage ./khelpcenter.nix {};
khotkeys = callPackage ./khotkeys.nix {};
kinfocenter = callPackage ./kinfocenter.nix {};
kmenuedit = callPackage ./kmenuedit.nix {};
@@ -69,7 +70,7 @@ let
kscreenlocker = callPackage ./kscreenlocker.nix {};
ksshaskpass = callPackage ./ksshaskpass.nix {};
ksysguard = callPackage ./ksysguard.nix {};
- kwayland = callPackage ./kwayland.nix {};
+ kwayland-integration = callPackage ./kwayland-integration.nix {};
kwin = callPackage ./kwin {};
kwrited = callPackage ./kwrited.nix {};
libkscreen = callPackage ./libkscreen.nix {};
diff --git a/pkgs/desktops/kde-5/plasma-5.6/kactivitymanagerd.nix b/pkgs/desktops/kde-5/plasma/kactivitymanagerd.nix
similarity index 100%
rename from pkgs/desktops/kde-5/plasma-5.6/kactivitymanagerd.nix
rename to pkgs/desktops/kde-5/plasma/kactivitymanagerd.nix
diff --git a/pkgs/desktops/kde-5/plasma-5.6/kde-cli-tools.nix b/pkgs/desktops/kde-5/plasma/kde-cli-tools.nix
similarity index 100%
rename from pkgs/desktops/kde-5/plasma-5.6/kde-cli-tools.nix
rename to pkgs/desktops/kde-5/plasma/kde-cli-tools.nix
diff --git a/pkgs/desktops/kde-5/plasma-5.6/kde-gtk-config/0001-follow-symlinks.patch b/pkgs/desktops/kde-5/plasma/kde-gtk-config/0001-follow-symlinks.patch
similarity index 100%
rename from pkgs/desktops/kde-5/plasma-5.6/kde-gtk-config/0001-follow-symlinks.patch
rename to pkgs/desktops/kde-5/plasma/kde-gtk-config/0001-follow-symlinks.patch
diff --git a/pkgs/desktops/kde-5/plasma-5.6/kde-gtk-config/default.nix b/pkgs/desktops/kde-5/plasma/kde-gtk-config/default.nix
similarity index 100%
rename from pkgs/desktops/kde-5/plasma-5.6/kde-gtk-config/default.nix
rename to pkgs/desktops/kde-5/plasma/kde-gtk-config/default.nix
diff --git a/pkgs/desktops/kde-5/plasma-5.6/kdecoration.nix b/pkgs/desktops/kde-5/plasma/kdecoration.nix
similarity index 100%
rename from pkgs/desktops/kde-5/plasma-5.6/kdecoration.nix
rename to pkgs/desktops/kde-5/plasma/kdecoration.nix
diff --git a/pkgs/desktops/kde-5/plasma-5.6/kdeplasma-addons.nix b/pkgs/desktops/kde-5/plasma/kdeplasma-addons.nix
similarity index 100%
rename from pkgs/desktops/kde-5/plasma-5.6/kdeplasma-addons.nix
rename to pkgs/desktops/kde-5/plasma/kdeplasma-addons.nix
diff --git a/pkgs/desktops/kde-5/plasma-5.6/kgamma5.nix b/pkgs/desktops/kde-5/plasma/kgamma5.nix
similarity index 100%
rename from pkgs/desktops/kde-5/plasma-5.6/kgamma5.nix
rename to pkgs/desktops/kde-5/plasma/kgamma5.nix
diff --git a/pkgs/desktops/kde-5/plasma-5.6/khotkeys.nix b/pkgs/desktops/kde-5/plasma/khotkeys.nix
similarity index 100%
rename from pkgs/desktops/kde-5/plasma-5.6/khotkeys.nix
rename to pkgs/desktops/kde-5/plasma/khotkeys.nix
diff --git a/pkgs/desktops/kde-5/plasma-5.6/kinfocenter.nix b/pkgs/desktops/kde-5/plasma/kinfocenter.nix
similarity index 100%
rename from pkgs/desktops/kde-5/plasma-5.6/kinfocenter.nix
rename to pkgs/desktops/kde-5/plasma/kinfocenter.nix
diff --git a/pkgs/desktops/kde-5/plasma-5.6/kmenuedit.nix b/pkgs/desktops/kde-5/plasma/kmenuedit.nix
similarity index 100%
rename from pkgs/desktops/kde-5/plasma-5.6/kmenuedit.nix
rename to pkgs/desktops/kde-5/plasma/kmenuedit.nix
diff --git a/pkgs/desktops/kde-5/plasma-5.6/kscreen.nix b/pkgs/desktops/kde-5/plasma/kscreen.nix
similarity index 100%
rename from pkgs/desktops/kde-5/plasma-5.6/kscreen.nix
rename to pkgs/desktops/kde-5/plasma/kscreen.nix
diff --git a/pkgs/desktops/kde-5/plasma-5.6/kscreenlocker.nix b/pkgs/desktops/kde-5/plasma/kscreenlocker.nix
similarity index 100%
rename from pkgs/desktops/kde-5/plasma-5.6/kscreenlocker.nix
rename to pkgs/desktops/kde-5/plasma/kscreenlocker.nix
diff --git a/pkgs/desktops/kde-5/plasma-5.6/ksshaskpass.nix b/pkgs/desktops/kde-5/plasma/ksshaskpass.nix
similarity index 100%
rename from pkgs/desktops/kde-5/plasma-5.6/ksshaskpass.nix
rename to pkgs/desktops/kde-5/plasma/ksshaskpass.nix
diff --git a/pkgs/desktops/kde-5/plasma-5.6/ksysguard.nix b/pkgs/desktops/kde-5/plasma/ksysguard.nix
similarity index 100%
rename from pkgs/desktops/kde-5/plasma-5.6/ksysguard.nix
rename to pkgs/desktops/kde-5/plasma/ksysguard.nix
diff --git a/pkgs/desktops/kde-5/plasma/kwayland-integration.nix b/pkgs/desktops/kde-5/plasma/kwayland-integration.nix
new file mode 100644
index 00000000000..9045227a51a
--- /dev/null
+++ b/pkgs/desktops/kde-5/plasma/kwayland-integration.nix
@@ -0,0 +1,16 @@
+{ plasmaPackage
+, extra-cmake-modules
+, kidletime
+, kwayland
+, kwindowsystem
+}:
+
+plasmaPackage {
+ name = "kwayland-integration";
+ nativeBuildInputs = [
+ extra-cmake-modules
+ ];
+ propagatedBuildInputs = [
+ kidletime kwindowsystem kwayland
+ ];
+}
diff --git a/pkgs/desktops/kde-5/plasma-5.6/kwin/0001-qdiriterator-follow-symlinks.patch b/pkgs/desktops/kde-5/plasma/kwin/0001-qdiriterator-follow-symlinks.patch
similarity index 89%
rename from pkgs/desktops/kde-5/plasma-5.6/kwin/0001-qdiriterator-follow-symlinks.patch
rename to pkgs/desktops/kde-5/plasma/kwin/0001-qdiriterator-follow-symlinks.patch
index 797a32fc5f8..7a70fec0d2d 100644
--- a/pkgs/desktops/kde-5/plasma-5.6/kwin/0001-qdiriterator-follow-symlinks.patch
+++ b/pkgs/desktops/kde-5/plasma/kwin/0001-qdiriterator-follow-symlinks.patch
@@ -9,8 +9,8 @@ Subject: [PATCH] qdiriterator follow symlinks
diff --git a/clients/aurorae/src/aurorae.cpp b/clients/aurorae/src/aurorae.cpp
index 781c960..ad5f420 100644
---- a/clients/aurorae/src/aurorae.cpp
-+++ b/clients/aurorae/src/aurorae.cpp
+--- a/plugins/kdecorations/aurorae/src/aurorae.cpp
++++ b/plugins/kdecorations/aurorae/src/aurorae.cpp
@@ -211,7 +211,7 @@ void Helper::init()
// so let's try to locate our plugin:
QString pluginPath;
diff --git a/pkgs/desktops/kde-5/plasma-5.6/kwin/default.nix b/pkgs/desktops/kde-5/plasma/kwin/default.nix
similarity index 100%
rename from pkgs/desktops/kde-5/plasma-5.6/kwin/default.nix
rename to pkgs/desktops/kde-5/plasma/kwin/default.nix
diff --git a/pkgs/desktops/kde-5/plasma-5.6/kwrited.nix b/pkgs/desktops/kde-5/plasma/kwrited.nix
similarity index 100%
rename from pkgs/desktops/kde-5/plasma-5.6/kwrited.nix
rename to pkgs/desktops/kde-5/plasma/kwrited.nix
diff --git a/pkgs/desktops/kde-5/plasma-5.6/libkscreen.nix b/pkgs/desktops/kde-5/plasma/libkscreen.nix
similarity index 100%
rename from pkgs/desktops/kde-5/plasma-5.6/libkscreen.nix
rename to pkgs/desktops/kde-5/plasma/libkscreen.nix
diff --git a/pkgs/desktops/kde-5/plasma-5.6/libksysguard/0001-qdiriterator-follow-symlinks.patch b/pkgs/desktops/kde-5/plasma/libksysguard/0001-qdiriterator-follow-symlinks.patch
similarity index 100%
rename from pkgs/desktops/kde-5/plasma-5.6/libksysguard/0001-qdiriterator-follow-symlinks.patch
rename to pkgs/desktops/kde-5/plasma/libksysguard/0001-qdiriterator-follow-symlinks.patch
diff --git a/pkgs/desktops/kde-5/plasma-5.6/libksysguard/default.nix b/pkgs/desktops/kde-5/plasma/libksysguard/default.nix
similarity index 100%
rename from pkgs/desktops/kde-5/plasma-5.6/libksysguard/default.nix
rename to pkgs/desktops/kde-5/plasma/libksysguard/default.nix
diff --git a/pkgs/desktops/kde-5/plasma-5.6/milou.nix b/pkgs/desktops/kde-5/plasma/milou.nix
similarity index 100%
rename from pkgs/desktops/kde-5/plasma-5.6/milou.nix
rename to pkgs/desktops/kde-5/plasma/milou.nix
diff --git a/pkgs/desktops/kde-5/plasma-5.6/oxygen.nix b/pkgs/desktops/kde-5/plasma/oxygen.nix
similarity index 100%
rename from pkgs/desktops/kde-5/plasma-5.6/oxygen.nix
rename to pkgs/desktops/kde-5/plasma/oxygen.nix
diff --git a/pkgs/desktops/kde-5/plasma-5.6/plasma-desktop/0001-qt-5.5-QML-import-paths.patch b/pkgs/desktops/kde-5/plasma/plasma-desktop/0001-qt-5.5-QML-import-paths.patch
similarity index 100%
rename from pkgs/desktops/kde-5/plasma-5.6/plasma-desktop/0001-qt-5.5-QML-import-paths.patch
rename to pkgs/desktops/kde-5/plasma/plasma-desktop/0001-qt-5.5-QML-import-paths.patch
diff --git a/pkgs/desktops/kde-5/plasma-5.6/plasma-desktop/0002-hwclock.patch b/pkgs/desktops/kde-5/plasma/plasma-desktop/0002-hwclock.patch
similarity index 100%
rename from pkgs/desktops/kde-5/plasma-5.6/plasma-desktop/0002-hwclock.patch
rename to pkgs/desktops/kde-5/plasma/plasma-desktop/0002-hwclock.patch
diff --git a/pkgs/desktops/kde-5/plasma-5.6/plasma-desktop/0003-tzdir.patch b/pkgs/desktops/kde-5/plasma/plasma-desktop/0003-tzdir.patch
similarity index 100%
rename from pkgs/desktops/kde-5/plasma-5.6/plasma-desktop/0003-tzdir.patch
rename to pkgs/desktops/kde-5/plasma/plasma-desktop/0003-tzdir.patch
diff --git a/pkgs/desktops/kde-5/plasma-5.6/plasma-desktop/default.nix b/pkgs/desktops/kde-5/plasma/plasma-desktop/default.nix
similarity index 80%
rename from pkgs/desktops/kde-5/plasma-5.6/plasma-desktop/default.nix
rename to pkgs/desktops/kde-5/plasma/plasma-desktop/default.nix
index 618e7387e62..3a61651644f 100644
--- a/pkgs/desktops/kde-5/plasma-5.6/plasma-desktop/default.nix
+++ b/pkgs/desktops/kde-5/plasma/plasma-desktop/default.nix
@@ -1,6 +1,6 @@
{ plasmaPackage, substituteAll, extra-cmake-modules, kdoctools
-, attica, baloo, boost, fontconfig, kactivities, kauth, kcmutils
-, kdbusaddons, kdeclarative, kded, kdelibs4support, kemoticons
+, attica, baloo, boost, fontconfig, kactivities, kactivities-stats
+, kauth, kcmutils, kdbusaddons, kdeclarative, kded, kdelibs4support, kemoticons
, kglobalaccel, ki18n, kitemmodels, knewstuff, knotifications
, knotifyconfig, kpeople, krunner, kwallet, kwin, phonon
, plasma-framework, plasma-workspace, qtdeclarative, qtx11extras
@@ -21,9 +21,9 @@ plasmaPackage rec {
attica boost fontconfig kcmutils kdbusaddons kded kitemmodels knewstuff
knotifications knotifyconfig kwallet libcanberra_kde libXcursor
libpulseaudio libXft libxkbfile phonon qtsvg xf86inputevdev
- xf86inputsynaptics xkeyboard_config xinput baloo kactivities kauth
- kdeclarative kdelibs4support kemoticons kglobalaccel ki18n kpeople krunner
- kwin plasma-framework plasma-workspace qtdeclarative
+ xf86inputsynaptics xkeyboard_config xinput baloo kactivities
+ kactivities-stats kauth kdeclarative kdelibs4support kemoticons kglobalaccel
+ ki18n kpeople krunner kwin plasma-framework plasma-workspace qtdeclarative
qtquickcontrols qtx11extras ksysguard
];
patches = [
@@ -34,6 +34,9 @@ plasmaPackage rec {
})
./0003-tzdir.patch
];
+ postPatch = ''
+ sed '1i#include ' -i kcms/touchpad/src/backends/x11/synapticstouchpad.cpp
+ '';
NIX_CFLAGS_COMPILE = [ "-I${xorgserver.dev}/include/xorg" ];
cmakeFlags = [
"-DEvdev_INCLUDE_DIRS=${xf86inputevdev.dev}/include/xorg"
diff --git a/pkgs/desktops/kde-5/plasma-5.6/plasma-integration.nix b/pkgs/desktops/kde-5/plasma/plasma-integration.nix
similarity index 67%
rename from pkgs/desktops/kde-5/plasma-5.6/plasma-integration.nix
rename to pkgs/desktops/kde-5/plasma/plasma-integration.nix
index 7bc41986a4f..97d30dcd773 100644
--- a/pkgs/desktops/kde-5/plasma-5.6/plasma-integration.nix
+++ b/pkgs/desktops/kde-5/plasma/plasma-integration.nix
@@ -1,5 +1,5 @@
{ plasmaPackage, extra-cmake-modules
-, kconfig, kconfigwidgets, kiconthemes, kio, kwayland
+, breeze-qt5, kconfig, kconfigwidgets, kiconthemes, kio, kwayland
, libXcursor
}:
@@ -11,7 +11,7 @@ plasmaPackage {
extra-cmake-modules
];
buildInputs = [
- kconfig kconfigwidgets kiconthemes kio kwayland
+ breeze-qt5 kconfig kconfigwidgets kiconthemes kio kwayland
libXcursor
];
}
diff --git a/pkgs/desktops/kde-5/plasma-5.6/plasma-mediacenter.nix b/pkgs/desktops/kde-5/plasma/plasma-mediacenter.nix
similarity index 100%
rename from pkgs/desktops/kde-5/plasma-5.6/plasma-mediacenter.nix
rename to pkgs/desktops/kde-5/plasma/plasma-mediacenter.nix
diff --git a/pkgs/desktops/kde-5/plasma-5.6/plasma-nm/0001-mobile-broadband-provider-info-path.patch b/pkgs/desktops/kde-5/plasma/plasma-nm/0001-mobile-broadband-provider-info-path.patch
similarity index 100%
rename from pkgs/desktops/kde-5/plasma-5.6/plasma-nm/0001-mobile-broadband-provider-info-path.patch
rename to pkgs/desktops/kde-5/plasma/plasma-nm/0001-mobile-broadband-provider-info-path.patch
diff --git a/pkgs/desktops/kde-5/plasma-5.6/plasma-nm/default.nix b/pkgs/desktops/kde-5/plasma/plasma-nm/default.nix
similarity index 100%
rename from pkgs/desktops/kde-5/plasma-5.6/plasma-nm/default.nix
rename to pkgs/desktops/kde-5/plasma/plasma-nm/default.nix
diff --git a/pkgs/desktops/kde-5/plasma-5.6/plasma-pa.nix b/pkgs/desktops/kde-5/plasma/plasma-pa.nix
similarity index 100%
rename from pkgs/desktops/kde-5/plasma-5.6/plasma-pa.nix
rename to pkgs/desktops/kde-5/plasma/plasma-pa.nix
diff --git a/pkgs/desktops/kde-5/plasma-5.6/plasma-workspace-wallpapers.nix b/pkgs/desktops/kde-5/plasma/plasma-workspace-wallpapers.nix
similarity index 100%
rename from pkgs/desktops/kde-5/plasma-5.6/plasma-workspace-wallpapers.nix
rename to pkgs/desktops/kde-5/plasma/plasma-workspace-wallpapers.nix
diff --git a/pkgs/desktops/kde-5/plasma-5.6/plasma-workspace/default.nix b/pkgs/desktops/kde-5/plasma/plasma-workspace/default.nix
similarity index 100%
rename from pkgs/desktops/kde-5/plasma-5.6/plasma-workspace/default.nix
rename to pkgs/desktops/kde-5/plasma/plasma-workspace/default.nix
diff --git a/pkgs/desktops/kde-5/plasma-5.6/plasma-workspace/qml-import-path.patch b/pkgs/desktops/kde-5/plasma/plasma-workspace/qml-import-path.patch
similarity index 88%
rename from pkgs/desktops/kde-5/plasma-5.6/plasma-workspace/qml-import-path.patch
rename to pkgs/desktops/kde-5/plasma/plasma-workspace/qml-import-path.patch
index 7842109669a..12eb65caa71 100644
--- a/pkgs/desktops/kde-5/plasma-5.6/plasma-workspace/qml-import-path.patch
+++ b/pkgs/desktops/kde-5/plasma/plasma-workspace/qml-import-path.patch
@@ -89,16 +89,3 @@ Index: plasma-workspace-5.6.3/applets/notifications/package/contents/ui/main.qml
MouseEventListener {
id: notificationsApplet
-Index: plasma-workspace-5.6.3/applets/systemtray/package/contents/ui/main.qml
-===================================================================
---- plasma-workspace-5.6.3.orig/applets/systemtray/package/contents/ui/main.qml
-+++ plasma-workspace-5.6.3/applets/systemtray/package/contents/ui/main.qml
-@@ -25,7 +25,7 @@ import org.kde.plasma.core 2.0 as Plasma
- // import org.kde.plasma.extras 2.0 as PlasmaExtras
-
- import org.kde.private.systemtray 2.0 as SystemTray
--import "Layout.js" as LayoutManager
-+import "../code/Layout.js" as LayoutManager
-
- Item {
- id: root
diff --git a/pkgs/desktops/kde-5/plasma-5.6/plasma-workspace/series b/pkgs/desktops/kde-5/plasma/plasma-workspace/series
similarity index 100%
rename from pkgs/desktops/kde-5/plasma-5.6/plasma-workspace/series
rename to pkgs/desktops/kde-5/plasma/plasma-workspace/series
diff --git a/pkgs/desktops/kde-5/plasma-5.6/polkit-kde-agent.nix b/pkgs/desktops/kde-5/plasma/polkit-kde-agent.nix
similarity index 100%
rename from pkgs/desktops/kde-5/plasma-5.6/polkit-kde-agent.nix
rename to pkgs/desktops/kde-5/plasma/polkit-kde-agent.nix
diff --git a/pkgs/desktops/kde-5/plasma/powerdevil.nix b/pkgs/desktops/kde-5/plasma/powerdevil.nix
new file mode 100644
index 00000000000..cbb2b9b019f
--- /dev/null
+++ b/pkgs/desktops/kde-5/plasma/powerdevil.nix
@@ -0,0 +1,18 @@
+{ plasmaPackage, extra-cmake-modules, kdoctools, bluez-qt, kactivities
+, kauth, kconfig, kdbusaddons, kdelibs4support, kglobalaccel, ki18n
+, kidletime, kio, knotifyconfig, kwayland, libkscreen, networkmanager-qt
+, plasma-workspace, qtx11extras, solid, udev
+}:
+
+plasmaPackage {
+ name = "powerdevil";
+ nativeBuildInputs = [
+ extra-cmake-modules
+ kdoctools
+ ];
+ propagatedBuildInputs = [
+ kconfig kdbusaddons knotifyconfig solid udev bluez-qt kactivities kauth
+ kdelibs4support kglobalaccel ki18n kio kidletime kwayland libkscreen
+ networkmanager-qt plasma-workspace qtx11extras
+ ];
+}
diff --git a/pkgs/desktops/kde-5/plasma/srcs.nix b/pkgs/desktops/kde-5/plasma/srcs.nix
new file mode 100644
index 00000000000..2dbfb6dd04a
--- /dev/null
+++ b/pkgs/desktops/kde-5/plasma/srcs.nix
@@ -0,0 +1,325 @@
+# DO NOT EDIT! This file is generated automatically by fetchsrcs.sh
+{ fetchurl, mirror }:
+
+{
+ bluedevil = {
+ version = "5.7.1";
+ src = fetchurl {
+ url = "${mirror}/stable/plasma/5.7.1/bluedevil-5.7.1.tar.xz";
+ sha256 = "1sz84r27bc4qavb22haqswr1qjv9m47b8j3knvlpzdln4wpxnb81";
+ name = "bluedevil-5.7.1.tar.xz";
+ };
+ };
+ breeze = {
+ version = "5.7.1";
+ src = fetchurl {
+ url = "${mirror}/stable/plasma/5.7.1/breeze-5.7.1.tar.xz";
+ sha256 = "1sparlwykzr6mjqzv3ghzl59j0xi3yxf0m93sx7d3js92k77rqpk";
+ name = "breeze-5.7.1.tar.xz";
+ };
+ };
+ breeze-grub = {
+ version = "5.7.1";
+ src = fetchurl {
+ url = "${mirror}/stable/plasma/5.7.1/breeze-grub-5.7.1.tar.xz";
+ sha256 = "0ahpsq429f8cdk2w91h9ji9fiqc7g8m9zlg447pz7r6lxnj9aw3x";
+ name = "breeze-grub-5.7.1.tar.xz";
+ };
+ };
+ breeze-gtk = {
+ version = "5.7.1";
+ src = fetchurl {
+ url = "${mirror}/stable/plasma/5.7.1/breeze-gtk-5.7.1.tar.xz";
+ sha256 = "1xcznd9m6kxrv8c4j66m4qqgq02h32714dkjwr754k9qfiava2qg";
+ name = "breeze-gtk-5.7.1.tar.xz";
+ };
+ };
+ breeze-plymouth = {
+ version = "5.7.1";
+ src = fetchurl {
+ url = "${mirror}/stable/plasma/5.7.1/breeze-plymouth-5.7.1.tar.xz";
+ sha256 = "16wx7k18yxf2jhxl2wwxy1dzdrrlfr9qkxbw72m5c21spx734wwb";
+ name = "breeze-plymouth-5.7.1.tar.xz";
+ };
+ };
+ discover = {
+ version = "5.7.1";
+ src = fetchurl {
+ url = "${mirror}/stable/plasma/5.7.1/discover-5.7.1.tar.xz";
+ sha256 = "1r4g4ajyp6ap1nq2n9ngvsgzifypivrkkzfk14c06mmc4fbqblpd";
+ name = "discover-5.7.1.tar.xz";
+ };
+ };
+ kactivitymanagerd = {
+ version = "5.7.1";
+ src = fetchurl {
+ url = "${mirror}/stable/plasma/5.7.1/kactivitymanagerd-5.7.1.tar.xz";
+ sha256 = "1mc4dxxkvjyrq4khlg1gjhxdhn87xsghwlznp4gnfx4cjgvxi8bq";
+ name = "kactivitymanagerd-5.7.1.tar.xz";
+ };
+ };
+ kde-cli-tools = {
+ version = "5.7.1";
+ src = fetchurl {
+ url = "${mirror}/stable/plasma/5.7.1/kde-cli-tools-5.7.1.tar.xz";
+ sha256 = "0q3j6kd7yfrp10pbld5pdis8w234442va3h460q9j3bp7n7xp8h9";
+ name = "kde-cli-tools-5.7.1.tar.xz";
+ };
+ };
+ kdecoration = {
+ version = "5.7.1";
+ src = fetchurl {
+ url = "${mirror}/stable/plasma/5.7.1/kdecoration-5.7.1.tar.xz";
+ sha256 = "181vay4alcckv93cralbj980c4zxbmca710dh9qrmy4nfk2y0pq7";
+ name = "kdecoration-5.7.1.tar.xz";
+ };
+ };
+ kde-gtk-config = {
+ version = "5.7.1";
+ src = fetchurl {
+ url = "${mirror}/stable/plasma/5.7.1/kde-gtk-config-5.7.1.tar.xz";
+ sha256 = "18xm51j1604gg9sf9cmchqzgfrchwf2may4qhl2glns3c7xnps94";
+ name = "kde-gtk-config-5.7.1.tar.xz";
+ };
+ };
+ kdeplasma-addons = {
+ version = "5.7.1";
+ src = fetchurl {
+ url = "${mirror}/stable/plasma/5.7.1/kdeplasma-addons-5.7.1.tar.xz";
+ sha256 = "13mg01ll9np8av55ilns1dc0k3rv5cix901gp459dl9r05hzhxgp";
+ name = "kdeplasma-addons-5.7.1.tar.xz";
+ };
+ };
+ kgamma5 = {
+ version = "5.7.1";
+ src = fetchurl {
+ url = "${mirror}/stable/plasma/5.7.1/kgamma5-5.7.1.tar.xz";
+ sha256 = "1myxjj99jmp2n58f4jbarphr12jh9rqpjmvk2dpcijb94sxaimsl";
+ name = "kgamma5-5.7.1.tar.xz";
+ };
+ };
+ khotkeys = {
+ version = "5.7.1";
+ src = fetchurl {
+ url = "${mirror}/stable/plasma/5.7.1/khotkeys-5.7.1.tar.xz";
+ sha256 = "0djnfax9ba1zm3lkxm2hfa4ai399g1p1n0zfpchjfif8639pf6fk";
+ name = "khotkeys-5.7.1.tar.xz";
+ };
+ };
+ kinfocenter = {
+ version = "5.7.1";
+ src = fetchurl {
+ url = "${mirror}/stable/plasma/5.7.1/kinfocenter-5.7.1.tar.xz";
+ sha256 = "0ynm1lb5f2ggc470k805acxrgxbjw00b780psg60m64bh12jn5ws";
+ name = "kinfocenter-5.7.1.tar.xz";
+ };
+ };
+ kmenuedit = {
+ version = "5.7.1";
+ src = fetchurl {
+ url = "${mirror}/stable/plasma/5.7.1/kmenuedit-5.7.1.tar.xz";
+ sha256 = "19188hwidv6vak1qas60jzc7bd6fx1slaqkiwljyx8r6w7l1lx4h";
+ name = "kmenuedit-5.7.1.tar.xz";
+ };
+ };
+ kscreen = {
+ version = "5.7.1";
+ src = fetchurl {
+ url = "${mirror}/stable/plasma/5.7.1/kscreen-5.7.1.tar.xz";
+ sha256 = "0f2zniavlh18ipkn3k6kpzd5nqhlj0pg723dqb3p5zdmxfwddqal";
+ name = "kscreen-5.7.1.tar.xz";
+ };
+ };
+ kscreenlocker = {
+ version = "5.7.1";
+ src = fetchurl {
+ url = "${mirror}/stable/plasma/5.7.1/kscreenlocker-5.7.1.tar.xz";
+ sha256 = "0dpx1cwvjzsnf9aryavqajlw10iqfmg3vjry50wkg03nb8z1rd49";
+ name = "kscreenlocker-5.7.1.tar.xz";
+ };
+ };
+ ksshaskpass = {
+ version = "5.7.1";
+ src = fetchurl {
+ url = "${mirror}/stable/plasma/5.7.1/ksshaskpass-5.7.1.tar.xz";
+ sha256 = "0blmwnm512lld8r3gj2fi7z0cj2nhcngn6xw3568p54ijb5da6c2";
+ name = "ksshaskpass-5.7.1.tar.xz";
+ };
+ };
+ ksysguard = {
+ version = "5.7.1";
+ src = fetchurl {
+ url = "${mirror}/stable/plasma/5.7.1/ksysguard-5.7.1.tar.xz";
+ sha256 = "14b9wspfls4q3zl1rxpr6h5kxx9q6dv10x8lbzmxml1fdkid3i5j";
+ name = "ksysguard-5.7.1.tar.xz";
+ };
+ };
+ kwallet-pam = {
+ version = "5.7.1";
+ src = fetchurl {
+ url = "${mirror}/stable/plasma/5.7.1/kwallet-pam-5.7.1.tar.xz";
+ sha256 = "04jxi4a75km9c5gy30aaikqzsd2z2algvh7w6phfqaqq66h5qx8d";
+ name = "kwallet-pam-5.7.1.tar.xz";
+ };
+ };
+ kwayland-integration = {
+ version = "5.7.1";
+ src = fetchurl {
+ url = "${mirror}/stable/plasma/5.7.1/kwayland-integration-5.7.1.tar.xz";
+ sha256 = "0ix30304ggh12xgqnnb9zrniqhklg3a8rkjnp3fad7sr3wa9346s";
+ name = "kwayland-integration-5.7.1.tar.xz";
+ };
+ };
+ kwin = {
+ version = "5.7.1";
+ src = fetchurl {
+ url = "${mirror}/stable/plasma/5.7.1/kwin-5.7.1.tar.xz";
+ sha256 = "0mkvfbsv1ivzs02fphm28km55cn258w6sram9zbqldklk2js7is0";
+ name = "kwin-5.7.1.tar.xz";
+ };
+ };
+ kwrited = {
+ version = "5.7.1";
+ src = fetchurl {
+ url = "${mirror}/stable/plasma/5.7.1/kwrited-5.7.1.tar.xz";
+ sha256 = "0mmb4hmwpcmxc03nzqhybwxk5nlyqamdswmr0vf8jcbvcqdmp473";
+ name = "kwrited-5.7.1.tar.xz";
+ };
+ };
+ libkscreen = {
+ version = "5.7.1";
+ src = fetchurl {
+ url = "${mirror}/stable/plasma/5.7.1/libkscreen-5.7.1.tar.xz";
+ sha256 = "1my8k7r7i2qh59g46l79xdyci1km3ykxms1314vwzqf7fyadwjnp";
+ name = "libkscreen-5.7.1.tar.xz";
+ };
+ };
+ libksysguard = {
+ version = "5.7.1";
+ src = fetchurl {
+ url = "${mirror}/stable/plasma/5.7.1/libksysguard-5.7.1.tar.xz";
+ sha256 = "0249cxgfy6yb9dcc9z2ckxwy7khkbzk0922479v900avaf87l4hj";
+ name = "libksysguard-5.7.1.tar.xz";
+ };
+ };
+ milou = {
+ version = "5.7.1";
+ src = fetchurl {
+ url = "${mirror}/stable/plasma/5.7.1/milou-5.7.1.tar.xz";
+ sha256 = "0fcrf8q0sxsgjbi9j2h9qcl4g40mvia1zkb98crzir5qb1z6ji1f";
+ name = "milou-5.7.1.tar.xz";
+ };
+ };
+ oxygen = {
+ version = "5.7.1";
+ src = fetchurl {
+ url = "${mirror}/stable/plasma/5.7.1/oxygen-5.7.1.tar.xz";
+ sha256 = "1pjygznb3fjyyvm84dxxj6smm6hpi5mr0c5077rc1xm2p20g7xn0";
+ name = "oxygen-5.7.1.tar.xz";
+ };
+ };
+ plasma-desktop = {
+ version = "5.7.1";
+ src = fetchurl {
+ url = "${mirror}/stable/plasma/5.7.1/plasma-desktop-5.7.1.tar.xz";
+ sha256 = "1civd76q2lkas8x5pzm57dfjyplmgb91w34avn75lcdkl2p0zq44";
+ name = "plasma-desktop-5.7.1.tar.xz";
+ };
+ };
+ plasma-integration = {
+ version = "5.7.1";
+ src = fetchurl {
+ url = "${mirror}/stable/plasma/5.7.1/plasma-integration-5.7.1.tar.xz";
+ sha256 = "12cjays5y3zr4za7j49p8yrzk6fxmsgvw4n8i8aida390lbnw5c6";
+ name = "plasma-integration-5.7.1.tar.xz";
+ };
+ };
+ plasma-mediacenter = {
+ version = "5.7.1";
+ src = fetchurl {
+ url = "${mirror}/stable/plasma/5.7.1/plasma-mediacenter-5.7.1.tar.xz";
+ sha256 = "135c7vgps9nsna4x5b28p8p2lir7wx2ad6p5m4sg7irf2wr6mivd";
+ name = "plasma-mediacenter-5.7.1.tar.xz";
+ };
+ };
+ plasma-nm = {
+ version = "5.7.1";
+ src = fetchurl {
+ url = "${mirror}/stable/plasma/5.7.1/plasma-nm-5.7.1.tar.xz";
+ sha256 = "0siq0na8cqqp0lqp963miwimsr7w9papj6cpf9k0frw40arqk26h";
+ name = "plasma-nm-5.7.1.tar.xz";
+ };
+ };
+ plasma-pa = {
+ version = "5.7.1";
+ src = fetchurl {
+ url = "${mirror}/stable/plasma/5.7.1/plasma-pa-5.7.1.tar.xz";
+ sha256 = "0g4rgsf39imknxbccl77d7j7404gfyv0nh6r0dmli19alhhiczay";
+ name = "plasma-pa-5.7.1.tar.xz";
+ };
+ };
+ plasma-sdk = {
+ version = "5.7.1";
+ src = fetchurl {
+ url = "${mirror}/stable/plasma/5.7.1/plasma-sdk-5.7.1.tar.xz";
+ sha256 = "1mn54zwq9bcrazv6zh832xyagrd4k1xjdwhdqxqbvq1d139v8shj";
+ name = "plasma-sdk-5.7.1.tar.xz";
+ };
+ };
+ plasma-workspace = {
+ version = "5.7.1";
+ src = fetchurl {
+ url = "${mirror}/stable/plasma/5.7.1/plasma-workspace-5.7.1.tar.xz";
+ sha256 = "0x4ghm385kkj2ax91vy10p4f481c6ikpk0azmhnk2d685r7x03yn";
+ name = "plasma-workspace-5.7.1.tar.xz";
+ };
+ };
+ plasma-workspace-wallpapers = {
+ version = "5.7.1";
+ src = fetchurl {
+ url = "${mirror}/stable/plasma/5.7.1/plasma-workspace-wallpapers-5.7.1.tar.xz";
+ sha256 = "0nl3bjb57djzgvx81knrjkbdix9y3j5ggxpd1a6lj80nixicg8h7";
+ name = "plasma-workspace-wallpapers-5.7.1.tar.xz";
+ };
+ };
+ polkit-kde-agent = {
+ version = "1-5.7.1";
+ src = fetchurl {
+ url = "${mirror}/stable/plasma/5.7.1/polkit-kde-agent-1-5.7.1.tar.xz";
+ sha256 = "1pcmdplxq0fsa3bdxyl73vpndvhlmsmjbqfc35aa1ds2wkj7ql2q";
+ name = "polkit-kde-agent-1-5.7.1.tar.xz";
+ };
+ };
+ powerdevil = {
+ version = "5.7.1";
+ src = fetchurl {
+ url = "${mirror}/stable/plasma/5.7.1/powerdevil-5.7.1.tar.xz";
+ sha256 = "0vdrpfgdw2c2gp6cwmrwyrwgfgxfslypa5ls79cf9wqgkrlh3phy";
+ name = "powerdevil-5.7.1.tar.xz";
+ };
+ };
+ sddm-kcm = {
+ version = "5.7.1";
+ src = fetchurl {
+ url = "${mirror}/stable/plasma/5.7.1/sddm-kcm-5.7.1.tar.xz";
+ sha256 = "0bnfy0ndg5040za73sj41ajskwx7bvfa4x92wrfzv27gda3c7fdg";
+ name = "sddm-kcm-5.7.1.tar.xz";
+ };
+ };
+ systemsettings = {
+ version = "5.7.1";
+ src = fetchurl {
+ url = "${mirror}/stable/plasma/5.7.1/systemsettings-5.7.1.tar.xz";
+ sha256 = "0arcvhqvcsm59l3fm6brqqcv1084qm8wawj9dj6w5wb194ys41hw";
+ name = "systemsettings-5.7.1.tar.xz";
+ };
+ };
+ user-manager = {
+ version = "5.7.1";
+ src = fetchurl {
+ url = "${mirror}/stable/plasma/5.7.1/user-manager-5.7.1.tar.xz";
+ sha256 = "1jzwwzixwbb6f92zi09i3jfs4dqsg3kcjis60w1bh2pkm96gq35y";
+ name = "user-manager-5.7.1.tar.xz";
+ };
+ };
+}
diff --git a/pkgs/desktops/kde-5/plasma-5.6/startkde/default.nix b/pkgs/desktops/kde-5/plasma/startkde/default.nix
similarity index 100%
rename from pkgs/desktops/kde-5/plasma-5.6/startkde/default.nix
rename to pkgs/desktops/kde-5/plasma/startkde/default.nix
diff --git a/pkgs/desktops/kde-5/plasma-5.6/startkde/startkde.sh b/pkgs/desktops/kde-5/plasma/startkde/startkde.sh
similarity index 100%
rename from pkgs/desktops/kde-5/plasma-5.6/startkde/startkde.sh
rename to pkgs/desktops/kde-5/plasma/startkde/startkde.sh
diff --git a/pkgs/desktops/kde-5/plasma-5.6/systemsettings.nix b/pkgs/desktops/kde-5/plasma/systemsettings.nix
similarity index 100%
rename from pkgs/desktops/kde-5/plasma-5.6/systemsettings.nix
rename to pkgs/desktops/kde-5/plasma/systemsettings.nix
diff --git a/pkgs/desktops/mate/mate-common/default.nix b/pkgs/desktops/mate/mate-common/default.nix
index 2f95043097d..ada4fb7a394 100644
--- a/pkgs/desktops/mate/mate-common/default.nix
+++ b/pkgs/desktops/mate/mate-common/default.nix
@@ -3,12 +3,12 @@
stdenv.mkDerivation rec {
name = "mate-common-${version}";
version = "${major-ver}.${minor-ver}";
- major-ver = "1.14";
+ major-ver = "1.15";
minor-ver = "0";
src = fetchurl {
url = "http://pub.mate-desktop.org/releases/${major-ver}/${name}.tar.xz";
- sha256 = "1xkcwn3w6vrgnkcw7mcvihrsqclpkbqqxs1ivj4cq0dkqrm1kdq4";
+ sha256 = "1r3c0i03ylrlibn4pz4j9qzbnj7b540hyhf98kkzzh680jn59iiy";
};
meta = {
diff --git a/pkgs/desktops/mate/mate-icon-theme-faenza/default.nix b/pkgs/desktops/mate/mate-icon-theme-faenza/default.nix
index 941b730d754..e0f370fed76 100644
--- a/pkgs/desktops/mate/mate-icon-theme-faenza/default.nix
+++ b/pkgs/desktops/mate/mate-icon-theme-faenza/default.nix
@@ -3,17 +3,17 @@
stdenv.mkDerivation rec {
name = "mate-icon-theme-faenza-${version}";
version = "${major-ver}.${minor-ver}";
- major-ver = "1.14";
- minor-ver = "0";
+ major-ver = "1.15";
+ minor-ver = "1";
src = fetchurl {
url = "http://pub.mate-desktop.org/releases/${major-ver}/${name}.tar.xz";
- sha256 = "115rbw4rbk8jqbjpbh5bfqjzsbwj5723r6cw96b1xrq1dv4gy4nr";
+ sha256 = "1x2jn86gcv6spnkvhjg0mzp5qhlb5dw4h8m8qp1hdgzzrzinfr3p";
};
- nativeBuildInputs = [ autoreconfHook mate.mate-common ];
+ nativeBuildInputs = [ autoreconfHook ];
- buildInputs = [ hicolor_icon_theme ];
+ buildInputs = [ mate.mate-icon-theme hicolor_icon_theme ];
meta = {
description = "Faenza icon theme from MATE";
diff --git a/pkgs/desktops/mate/mate-icon-theme/default.nix b/pkgs/desktops/mate/mate-icon-theme/default.nix
index f68c8b403ee..9d4adb331ac 100644
--- a/pkgs/desktops/mate/mate-icon-theme/default.nix
+++ b/pkgs/desktops/mate/mate-icon-theme/default.nix
@@ -3,12 +3,12 @@
stdenv.mkDerivation rec {
name = "mate-icon-theme-${version}";
version = "${major-ver}.${minor-ver}";
- major-ver = "1.14";
+ major-ver = "1.15";
minor-ver = "0";
src = fetchurl {
url = "http://pub.mate-desktop.org/releases/${major-ver}/${name}.tar.xz";
- sha256 = "1d8y4vlna8higz05mc01srrgspxmzw04vh3hyzcd9ms603njpfqm";
+ sha256 = "1jpz3ihmyhyiyqlqz798xgzl3qa31ghymw3yrw6abd7ww0nkwiq9";
};
nativeBuildInputs = [ pkgconfig intltool iconnamingutils ];
diff --git a/pkgs/desktops/mate/mate-themes/default.nix b/pkgs/desktops/mate/mate-themes/default.nix
index bc622ef3729..1984e2dbdf9 100644
--- a/pkgs/desktops/mate/mate-themes/default.nix
+++ b/pkgs/desktops/mate/mate-themes/default.nix
@@ -1,20 +1,27 @@
-{ stdenv, fetchurl, pkgconfig, intltool, gtk2, gtk_engines,
+{ stdenv, fetchurl, pkgconfig, intltool, mate, gnome3, gtk2, gtk_engines,
gtk-engine-murrine, gdk_pixbuf, librsvg }:
stdenv.mkDerivation rec {
name = "mate-themes-${version}";
version = "${major-ver}.${minor-ver}";
- major-ver = "3.18";
- minor-ver = "1";
+ major-ver = gnome3.version;
+ minor-ver = {
+ "3.18" = "2";
+ "3.20" = "8";
+ }."${major-ver}";
src = fetchurl {
url = "http://pub.mate-desktop.org/releases/themes/${major-ver}/${name}.tar.xz";
- sha256 = "0lkp6jqvnxp6jly35iw89paqs279nvhqg01ig92n1xcfp8yrqq9c";
+ sha256 = {
+ "3.18" = "1yy22nk450wsx0mlsvdalkyj41mijlvy8s6kifh98d4dnk8dvgfj";
+ "3.20" = "14jl3mbhzm7k2ilp8nmdwy9wrbmc7mbg2i0arf479xs2h7dz06f6";
+ }."${major-ver}";
};
nativeBuildInputs = [ pkgconfig intltool ];
- buildInputs = [ gtk2 gtk_engines gtk-engine-murrine gdk_pixbuf librsvg ];
+ buildInputs = [ mate.mate-icon-theme gtk2 gtk_engines gtk-engine-murrine
+ gdk_pixbuf librsvg ];
meta = {
description = "A set of themes from MATE";
diff --git a/pkgs/desktops/pantheon/apps/pantheon-terminal/default.nix b/pkgs/desktops/pantheon/apps/pantheon-terminal/default.nix
index 7d5447ae52a..bb04df6134d 100644
--- a/pkgs/desktops/pantheon/apps/pantheon-terminal/default.nix
+++ b/pkgs/desktops/pantheon/apps/pantheon-terminal/default.nix
@@ -25,7 +25,7 @@ stdenv.mkDerivation rec {
vte_290 libgee gsettings_desktop_schemas defaultIconTheme
];
meta = {
- description = "elementary OS's terminal";
+ description = "Elementary OS's terminal";
longDescription = "A super lightweight, beautiful, and simple terminal. It's designed to be setup with sane defaults and little to no configuration. It's just a terminal, nothing more, nothing less. Designed for elementary OS.";
homepage = https://launchpad.net/pantheon-terminal;
license = stdenv.lib.licenses.gpl3;
diff --git a/pkgs/desktops/xfce/core/libxfce4ui.nix b/pkgs/desktops/xfce/core/libxfce4ui.nix
index 6bdeb50f839..09b400cfceb 100644
--- a/pkgs/desktops/xfce/core/libxfce4ui.nix
+++ b/pkgs/desktops/xfce/core/libxfce4ui.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchurl, pkgconfig, intltool, gtk, libxfce4util, xfconf
+{ stdenv, fetchurl, pkgconfig, intltool, xorg, gtk, libxfce4util, xfconf
, libglade, libstartup_notification, hicolor_icon_theme
, withGtk3 ? false, gtk3
}:
@@ -18,11 +18,15 @@ stdenv.mkDerivation rec {
outputs = [ "dev" "out" "docdev" ];
+ nativeBuildInputs = [ pkgconfig intltool ];
+
buildInputs =
- [ pkgconfig intltool gtk libxfce4util xfconf libglade
+ [ gtk libxfce4util xfconf libglade
libstartup_notification hicolor_icon_theme
] ++ optional withGtk3 gtk3;
+ propagatedBuildInputs = [ xorg.libICE xorg.libSM ];
+
#TODO: glade?
configureFlags = optional withGtk3 "--enable-gtk3";
diff --git a/pkgs/desktops/xfce/core/xfce4-power-manager.nix b/pkgs/desktops/xfce/core/xfce4-power-manager.nix
index 7695f906d31..c72061e577e 100644
--- a/pkgs/desktops/xfce/core/xfce4-power-manager.nix
+++ b/pkgs/desktops/xfce/core/xfce4-power-manager.nix
@@ -1,22 +1,38 @@
-{ stdenv, fetchurl, pkgconfig, intltool, gtk, dbus_glib, upower, xfconf
-, libxfce4ui, libxfce4util, libnotify, xfce4panel, hicolor_icon_theme }:
+{ stdenv, lib, fetchurl, pkgconfig, intltool, glib, gtk, dbus_glib, upower, xfconf
+, libxfce4ui, libxfce4util, libnotify, xfce4panel, hicolor_icon_theme
+, withGtk3 ? false, gtk3, libxfce4ui_gtk3, xfce4panel_gtk3 }:
let
p_name = "xfce4-power-manager";
- ver_maj = "1.4";
- ver_min = "4";
+ ver_maj = if withGtk3 then "1.6" else "1.4";
+ ver_min = if withGtk3 then "0" else "4";
in
stdenv.mkDerivation rec {
name = "${p_name}-${ver_maj}.${ver_min}";
src = fetchurl {
url = "mirror://xfce/src/xfce/${p_name}/${ver_maj}/${name}.tar.bz2";
- sha256 = "01rvqy1cif4s8lkidb7hhmsz7d9f2fwcwvc51xycaj3qgsmch3n5";
+ sha256 =
+ if withGtk3
+ then "0avzhllpimcn7a6z9aa4jn0zg5ahxr9ks5ldchizycdb0rz1bqxx"
+ else "01rvqy1cif4s8lkidb7hhmsz7d9f2fwcwvc51xycaj3qgsmch3n5";
};
buildInputs =
- [ pkgconfig intltool gtk dbus_glib upower xfconf libxfce4ui libxfce4util
- libnotify xfce4panel hicolor_icon_theme
- ];
+ [ pkgconfig intltool glib dbus_glib upower xfconf libxfce4util
+ libnotify hicolor_icon_theme
+ ] ++
+ (if withGtk3
+ then [ gtk3 libxfce4ui_gtk3 xfce4panel_gtk3 ]
+ else [ gtk libxfce4ui xfce4panel ]);
+
+ postPatch = lib.optionalString withGtk3 ''
+ substituteInPlace configure --replace gio-2.0 gio-unix-2.0
+ '';
+
+ postConfigure = lib.optionalString withGtk3 ''
+ substituteInPlace src/Makefile --replace "xfce4_power_manager_CFLAGS = " "xfce4_power_manager_CFLAGS = \$(GIO_CFLAGS) "
+ substituteInPlace settings/Makefile --replace "xfce4_power_manager_settings_CFLAGS = " "xfce4_power_manager_settings_CFLAGS = \$(GIO_CFLAGS) "
+ '';
meta = with stdenv.lib; {
homepage = http://goodies.xfce.org/projects/applications/xfce4-power-manager;
diff --git a/pkgs/desktops/xfce/default.nix b/pkgs/desktops/xfce/default.nix
index 0da2756f877..fff958de9a0 100644
--- a/pkgs/desktops/xfce/default.nix
+++ b/pkgs/desktops/xfce/default.nix
@@ -40,6 +40,7 @@ xfce_self = rec { # the lines are very long but it seems better than the even-od
xfce4session = callPackage ./core/xfce4-session.nix { };
xfce4settings = callPackage ./core/xfce4-settings.nix { };
xfce4_power_manager = callPackage ./core/xfce4-power-manager.nix { };
+ xfce4_power_manager_gtk3 = callPackage ./core/xfce4-power-manager.nix { withGtk3 = true; };
xfconf = callPackage ./core/xfconf.nix { };
xfdesktop = callPackage ./core/xfdesktop.nix { };
xfwm4 = callPackage ./core/xfwm4.nix { };
diff --git a/pkgs/development/beam-modules/build-erlang-mk.nix b/pkgs/development/beam-modules/build-erlang-mk.nix
index 8c2b72aa43c..110c06e6f8a 100644
--- a/pkgs/development/beam-modules/build-erlang-mk.nix
+++ b/pkgs/development/beam-modules/build-erlang-mk.nix
@@ -1,4 +1,4 @@
-{ stdenv, writeText, erlang, perl, which, gitMinimal, wget }:
+{ stdenv, writeText, erlang, perl, which, gitMinimal, wget, lib }:
{ name, version
, src
@@ -8,12 +8,17 @@
, postPatch ? ""
, compilePorts ? false
, installPhase ? null
+, buildPhase ? null
+, configurePhase ? null
, meta ? {}
+, enableDebugInfo ? false
, ... }@attrs:
with stdenv.lib;
let
+ debugInfoFlag = lib.optionalString (enableDebugInfo || erlang.debugInfo) "+debug_info";
+
shell = drv: stdenv.mkDerivation {
name = "interactive-shell-${drv.name}";
buildInputs = [ drv ];
@@ -37,7 +42,8 @@ let
buildInputs = [ erlang perl which gitMinimal wget ];
propagatedBuildInputs = beamDeps;
- configurePhase = ''
+ configurePhase = if configurePhase == null
+ then ''
runHook preConfigure
# We shouldnt need to do this, but it seems at times there is a *.app in
@@ -45,17 +51,21 @@ let
make SKIP_DEPS=1 clean
runHook postConfigure
- '';
+ ''
+ else configurePhase;
- buildPhase = ''
+ buildPhase = if buildPhase == null
+ then ''
runHook preBuild
- make SKIP_DEPS=1
+ make SKIP_DEPS=1 ERL_OPTS="$ERL_OPTS ${debugInfoFlag}"
runHook postBuild
- '';
+ ''
+ else buildPhase;
- installPhase = ''
+ installPhase = if installPhase == null
+ then ''
runHook preInstall
mkdir -p $out/lib/erlang/lib/${name}
@@ -75,7 +85,8 @@ let
fi
runHook postInstall
- '';
+ ''
+ else installPhase;
passthru = {
packageName = name;
diff --git a/pkgs/development/beam-modules/build-mix.nix b/pkgs/development/beam-modules/build-mix.nix
index 70c186df8a0..9e160acf2d4 100644
--- a/pkgs/development/beam-modules/build-mix.nix
+++ b/pkgs/development/beam-modules/build-mix.nix
@@ -1,4 +1,4 @@
-{ stdenv, writeText, elixir, erlang, hexRegistrySnapshot, hex }:
+{ stdenv, writeText, elixir, erlang, hexRegistrySnapshot, hex, lib }:
{ name
, version
@@ -8,12 +8,19 @@
, beamDeps ? []
, postPatch ? ""
, compilePorts ? false
+, installPhase ? null
+, buildPhase ? null
+, configurePhase ? null
, meta ? {}
+, enableDebugInfo ? false
, ... }@attrs:
with stdenv.lib;
let
+
+ debugInfoFlag = lib.optionalString (enableDebugInfo || elixir.debugInfo) "--debug-info";
+
shell = drv: stdenv.mkDerivation {
name = "interactive-shell-${drv.name}";
buildInputs = [ drv ];
@@ -38,25 +45,31 @@ let
inherit buildInputs;
propagatedBuildInputs = [ hexRegistrySnapshot hex elixir ] ++ beamDeps;
- configurePhase = ''
+ configurePhase = if configurePhase == null
+ then ''
runHook preConfigure
${erlang}/bin/escript ${bootstrapper}
runHook postConfigure
- '';
+ ''
+ else configurePhase ;
- buildPhase = ''
+
+ buildPhase = if buildPhase == null
+ then ''
runHook preBuild
export HEX_OFFLINE=1
export HEX_HOME=`pwd`
export MIX_ENV=prod
- MIX_ENV=prod mix compile --debug-info --no-deps-check
+ MIX_ENV=prod mix compile ${debugInfoFlag} --no-deps-check
runHook postBuild
- '';
+ ''
+ else buildPhase;
- installPhase = ''
+ installPhase = if installPhase == null
+ then ''
runHook preInstall
MIXENV=prod
@@ -74,7 +87,8 @@ let
done
runHook postInstall
- '';
+ ''
+ else installPhase;
passthru = {
packageName = name;
diff --git a/pkgs/development/beam-modules/build-rebar3.nix b/pkgs/development/beam-modules/build-rebar3.nix
index f13322519fd..ac40b76a78a 100644
--- a/pkgs/development/beam-modules/build-rebar3.nix
+++ b/pkgs/development/beam-modules/build-rebar3.nix
@@ -1,5 +1,5 @@
{ stdenv, writeText, erlang, rebar3, openssl, libyaml,
- pc, buildEnv }:
+ pc, buildEnv, lib }:
{ name, version
, src
@@ -8,12 +8,17 @@
, postPatch ? ""
, compilePorts ? false
, installPhase ? null
+, buildPhase ? null
+, configurePhase ? null
, meta ? {}
+, enableDebugInfo ? false
, ... }@attrs:
with stdenv.lib;
let
+ debugInfoFlag = lib.optionalString (enableDebugInfo || erlang.debugInfo) "debug-info";
+
ownPlugins = buildPlugins ++ (if compilePorts then [pc] else []);
shell = drv: stdenv.mkDerivation {
@@ -46,20 +51,24 @@ let
rm -f rebar rebar3
'';
- configurePhase = ''
+ configurePhase = if configurePhase == null
+ then ''
runHook preConfigure
- ${erlang}/bin/escript ${rebar3.bootstrapper}
+ ${erlang}/bin/escript ${rebar3.bootstrapper} ${debugInfoFlag}
runHook postConfigure
- '';
+ ''
+ else configurePhase;
- buildPhase = ''
+ buildPhase = if buildPhase == null
+ then ''
runHook preBuild
HOME=. rebar3 compile
${if compilePorts then ''
HOME=. rebar3 pc compile
'' else ''''}
runHook postBuild
- '';
+ ''
+ else installPhase;
installPhase = if installPhase == null
then ''
diff --git a/pkgs/development/beam-modules/fetch-hex.nix b/pkgs/development/beam-modules/fetch-hex.nix
index 1b1378c10cb..c55a7a80ff3 100644
--- a/pkgs/development/beam-modules/fetch-hex.nix
+++ b/pkgs/development/beam-modules/fetch-hex.nix
@@ -10,7 +10,7 @@ stdenv.mkDerivation ({
name = "hex-source-${pkg}-${version}";
src = fetchurl {
- url = "https://s3.amazonaws.com/s3.hex.pm/tarballs/${pkg}-${version}.tar";
+ url = "https://repo.hex.pm/tarballs/${pkg}-${version}.tar";
inherit sha256;
};
diff --git a/pkgs/development/beam-modules/hex-packages.nix b/pkgs/development/beam-modules/hex-packages.nix
index 1fcbb6f3e51..b77d5e6c589 100644
--- a/pkgs/development/beam-modules/hex-packages.nix
+++ b/pkgs/development/beam-modules/hex-packages.nix
@@ -2,109 +2,95 @@
/* Unbuildable packages:
+ * absinthe_relay_0_9_3
* active_0_9_0
+ * addict_0_2_5
* address_us_0_1_1
- * aeacus_0_3_0
* airbrake_0_1_0
* airbrake_plug_0_1_1
- * airbrakex_0_0_6
- * airbrakify_0_0_1
- * algolia_0_3_1
- * alice_0_3_3
- * alice_against_humanity_0_1_2
- * alice_google_images_0_1_3
- * alice_karma_0_1_1
- * alice_shizzle_0_1_2
- * alice_xkcd_0_0_3
- * amazon_product_advertising_client_0_1_1
+ * airbrakex_0_0_8
+ * alembic_2_1_0
+ * algolia_0_3_2
+ * alphonse_0_1_0
* amqp_0_1_1
* amqp_0_1_4
* amqp_client_3_5_6
* amrita_0_4_0
- * anilixir_1_0_0
+ * angellist_0_0_0
* anubis_0_1_0
* anubis_0_3_0
* apache_passwd_md5_1_0_0
* apostle_0_0_3
- * arc_0_5_1
- * arc_ecto_0_3_2
+ * arc_0_5_2
+ * arc_ecto_0_4_1
+ * as_nested_set_0_1_0
* asanaficator_0_0_1
- * assembla_api_0_1_0
* atlas_0_2_0
- * aws_0_0_10
+ * authable_0_3_1
* aws_erlang_0_1_1
* aws_http_0_2_4
- * b2_0_0_6
+ * b2_client_0_0_1
* backoff_1_1_3
* balanced_3_1_0
- * bamboo_0_3_2
- * bamboo_0_4_0
* bamboo_sendgrid_0_1_0
* bandwidth_1_2_1
* barrel_jiffy_0_14_4
* barrel_jiffy_0_14_5
- * basehangul_0_2_0
- * basho_stats_1_0_3
+ * basehangul_0_2_1
+ * basho_exometer_core_1_0_0
* basic_auth_1_0_0
- * battlenet_0_0_2
- * bbsmq_0_0_4
+ * bbmustache_1_0_1
+ * bbsmq_0_0_6
* beaker_1_2_0
* benchwarmer_0_0_2
* bencoder_0_0_7
* bertex_1_2_0
* bgg_0_1_0
- * big_query_0_0_2
- * bing_translator_0_2_6
* bitbucket_api_0_0_2
* bitpay_0_2_5
* blackbook_0_3_1
- * blaze_cloud_0_0_1
* block_timer_0_0_1
- * blockchain_info_0_0_1
- * bloodhound_0_1_1
* bno055_0_0_1
* booter_0_1_0
- * botan_0_1_2
* bottler_0_5_0
* bouncer_0_1_5
* brady_0_0_2
- * braintree_0_3_2
+ * brod_2_1_4
* bson_0_4_4
- * bugsnag_1_2_0
- * bugsnag_erl_0_1_3
+ * bugsnag_erl_0_1_4
+ * bugsnex_0_0_1
* bump_0_1_0
- * bureaucrat_0_1_2
- * butler_0_7_0
+ * bureaucrat_0_1_4
+ * butler_0_6_2
* butler_0_7_1
* butler_cage_0_0_2
* butler_cowsay_0_2_1
* butler_new_0_4_3
* butler_tableflip_0_0_3
* cache_tab_1_0_2
- * calecto_0_5_2
+ * calecto_0_6_0
+ * calendar_0_16_0
+ * calendar_0_6_8
+ * calendar_translations_0_0_3
+ * can_0_0_4
* canada_1_0_0
* canary_0_14_1
* carrier_1_0_4
- * cassette_1_0_0
- * cassette_plug_1_0_1
* cassius_0_0_1
* cauldron_0_1_5
- * caylir_0_2_0
* ccc_0_0_2
- * cep_0_0_1
+ * certifi_0_1_1
* cesso_0_1_3
* cet_0_2_3
- * chaos_spawn_0_7_0
+ * channels_0_0_2
* charlotte_0_4_0
* charm_0_0_1
- * chatter_0_0_14
- * chinese_translation_0_1_0
- * cipher_1_0_0
+ * chatter_0_0_15
+ * cipher_1_0_5
* cldr_0_0_1
* cleverbot_0_0_1
- * clicksign_0_0_2
- * cloak_0_2_0
- * cloudex_0_0_2
+ * cloak_0_2_2
+ * cloudi_core_1_4_0_rc_4
* cloudi_core_1_5_1
* cloudi_service_api_requests_1_5_1
* cloudi_service_db_1_5_1
@@ -132,723 +118,859 @@
* cloudi_service_udp_1_5_1
* cloudi_service_validate_1_5_1
* cloudi_service_zeromq_1_5_1
- * cloudinary_0_0_2
- * cloudinaryex_0_0_2
* clox_0_1_3
- * cmark_0_6_8
* coinbase_0_0_1
- * coincap_io_0_0_1
- * comeonin_1_6_0
- * comeonin_2_0_3
- * comeonin_2_1_1
- * comeonin_2_3_0
- * comeonin_ecto_password_0_0_3
+ * comeonin_ecto_password_2_0_0_rc_0
* commerce_billing_0_0_2
- * comredis_1_0_0
+ * concierge_0_0_1
* conferl_0_0_1
- * conform_0_10_5
- * conform_0_11_0
+ * conform_0_16_0
+ * conform_1_0_0_rc8
+ * conform_2_0_0
+ * conform_exrm_1_0_0
* console_0_0_1
* consul_1_0_3
* core_0_14_1
- * core_data_0_1_0
- * couchbeam_1_3_0
* couchdb_client_0_2_5
- * couchdb_connector_0_2_0
+ * couchdb_connector_0_3_0
* countries_1_1_2
+ * countries_erlang_0_2_0
* courier_web_0_0_8
- * coverex_1_4_8
+ * coverex_1_4_9
* cowboy_oauth_0_2_14
+ * cowboy_routes_tree_0_2_0
+ * cpg_1_4_0
* cpg_1_5_1
+ * cqrex_0_0_1
* craterl_0_2_3
- * crc_0_4_0
* crudex_0_0_2
* crypto_ext_0_1_3
* cure_0_4_1
- * current_streak_ex_0_1_1
* currently_0_0_3
* datomex_0_0_5
* datomic_gen_server_2_0_1
+ * dayron_0_1_1
* db_0_9_0
* dbschema_0_2_0
* dbus_0_5_0
* ddb_client_0_1_17
- * dealer_0_8_0
+ * ddb_client_0_1_21
+ * ddb_connection_0_1_3
* decimal_0_2_5
+ * decorators_0_1_0
* denrei_0_2_3
* descriptive_statistics_0_0_1
- * deviant_elixir_0_0_4
* dexts_0_2_1
- * di_0_1_0
* dialyze_0_1_4
* diane_0_0_1
* dicer_0_8_0
* dicks_0_1_0
- * digoc_0_3_3
- * diplomat_0_0_1
+ * difficult_0_0_2
+ * diplomat_0_0_3
* discount_0_7_0
* discovery_0_5_7
- * distance_api_matrix_2_0_0
+ * distance_api_matrix_2_0_1
* dns_0_0_3
- * dnsimple_0_0_1
* docker_0_3_0
* dotenv_0_0_4
* dotenv_elixir_0_0_2
- * dovetail_0_0_3
* dpd_client_0_0_6
* dproto_0_1_12
- * dqe_0_1_33
+ * dproto_0_1_16
+ * dqe_0_2_2
+ * dqe_fun_0_1_1
+ * dqe_idx_ddb_0_1_13
+ * dqe_idx_pg_0_1_29
+ * drawille_0_0_1
* dropbox_0_0_7
- * dublin_bus_api_0_1_6
- * e_quip_0_0_1
+ * earmark_0_1_0
* ecc_0_1_3
- * echonest_ex_0_0_2
+ * ecdo_0_1_4
+ * ecrontab_0_2_0
* ecto_0_2_4
- * ecto_0_2_7
- * ecto_0_5_1
- * ecto_2_0_0_beta_2
- * ecto_enum_0_3_0
+ * ecto_2_0_0_beta_0
+ * ecto_2_0_0_rc_5
+ * ecto_enum_0_3_1
+ * ecto_factory_0_0_1
* ecto_fixtures_0_0_2
+ * ecto_gettext_0_1_6
* ecto_hstore_0_0_1
* ecto_it_0_2_0
* ecto_lazy_float_0_1_2
- * ecto_ldap_0_2_4
+ * ecto_ldap_0_2_8
* ecto_migrate_0_6_3
* ecto_ordered_0_0_2
+ * ecto_state_machine_0_0_4
* ecto_validation_case_0_1_1
+ * ectograph_0_0_8
* ectoo_0_0_4
* ectophile_0_3_0
* eden_0_1_3
* edgarex_0_0_2
- * edown_0_7_0
* efrisby_0_2_0
- * ejabberd_16_2_0
+ * egithub_0_2_6
+ * eini_1_2_1
+ * ejabberd_16_4_1
* ekstat_0_2_2
- * elastex_0_1_2
- * elastix_0_1_0
- * elaxtic_0_0_1
+ * elastix_0_2_0
* eleveldb_2_1_3
* elibphonenumber_0_1_1
* elistrix_0_0_5
* elixilorem_0_0_1
* elixir_ale_0_4_1
+ * elixir_ale_0_5_3
+ * elixir_drawille_0_0_3
* elixir_ipfs_api_0_1_0
* elixir_locker_0_1_4
- * elixir_nsq_1_0_3
- * elixir_talk_1_0_1
- * elixtagram_0_2_5
+ * elixometer_1_2_1
+ * elixtagram_0_2_7
+ * elixush_0_0_4
+ * elli_xpblfe_0_1_1
* elmit_0_0_1
- * email_checker_0_0_3
+ * emodel_1_3_1
* enotify_0_1_0
* ensq_0_1_6
* env_conf_0_3_0
- * epgpool_1_0_0
* eplugin_0_1_4
* epubnub_0_1_0
- * eredis_cluster_0_5_4
+ * eql_0_1_2
+ * eredis_cluster_0_5_7
* erlang_dbus_0_2_0
* erlang_lua_0_1_0
- * erlastic_search_1_1_1
- * erlcloud_0_9_2
+ * erlang_osc_1_0_1
+ * erlang_tls_1_0_3
+ * erlastic_search_1_2_0
+ * erlcloud_0_13_4
* erldn_1_0_5
- * erlexec_1_1_1
+ * erldyn_0_7_2
+ * erlogger_0_1_0
* erltrace_0_1_4
- * erlzk_0_6_1
* erocksdb_0_4_1
* erwatch_0_3_0
* es_0_0_1
* escalus_2_6_4
- * esip_1_0_2
- * espec_0_8_16
- * espec_phoenix_0_2_0
- * esqlite_0_2_2
+ * esip_1_0_4
+ * espec_phoenix_0_2_1
* etcd_0_0_2
- * etherchain_org_0_0_3
+ * etude_request_0_1_0
* euler_0_0_1
* event_source_encoder_0_0_3
- * eventstore_client_0_1_4
* everex_0_1_1
* everyoneapi_0_0_1
+ * everything_location_0_0_1
+ * ex_admin_0_7_6
* ex_aerospike_0_0_1
- * ex_aws_0_4_18
+ * ex_aws_0_4_19
* ex_bitcask_0_1_0
- * ex_chimp_0_0_1
- * ex_closeio_0_0_12
- * ex_cloudinary_0_1_2
+ * ex_chimp_0_0_2
+ * ex_cloudinary_0_2_2
* ex_conf_0_1_2
* ex_conf_0_1_3
- * ex_crypto_0_0_1
+ * ex_doc_0_10_0
+ * ex_doc_0_11_5
+ * ex_doc_0_8_4
+ * ex_doc_dash_0_3_0
+ * ex_doc_epub_0_0_2
* ex_dockerapi_0_0_1
* ex_edn_0_1_2
- * ex_iss_1_0_0
- * ex_omegle_0_1_1
- * ex_orient_1_1_1
+ * ex_hubic_0_1_0
+ * ex_orient_1_3_0
+ * ex_ovh_0_1_2
* ex_parsec_0_2_1
+ * ex_queb_0_1_2
+ * ex_sharp_0_0_6
+ * ex_slp_0_1_0
* ex_unit_emacs_0_1_2
- * exalice_0_0_5_alpha
* exauth_0_0_1
* excheck_0_3_3
* excountries_0_0_3
- * excoveralls_0_5_1
- * exddb_0_1_3
- * exdesk_0_2_0
+ * excoveralls_0_5_4
* exdjango_0_3_1
+ * exdm_0_0_4
* exdn_2_1_2
+ * exdns_0_0_1
* exdweet_0_0_1
* exeque_0_1_0
- * exfavicon_0_3_2
* exfile_0_1_5
- * exfile_0_2_0
- * exfile_b2_0_1_3
- * exfile_imagemagick_0_1_1
+ * exfile_0_3_3
+ * exfile_b2_0_2_2
+ * exfile_encryption_0_0_2
+ * exfile_imagemagick_0_1_2
* exfile_memory_0_1_0
- * exfoaas_0_0_2
- * exgenius_0_0_5
+ * exfile_s3_0_0_1
* exgpg_0_0_3
* exgrid_0_3_0
- * exhal_4_2_1
+ * exhal_4_12_3
* exintercom_0_1_6
* exjira_0_0_1
* exjprop_0_0_5
* exkad_0_0_2
- * exkismet_0_0_2
+ * exmagick_0_0_1
* exometer_core_1_0_0
+ * exometer_core_1_4_0
+ * exometer_datadog_0_4_3
+ * exometer_zabbix_0_0_3
* exos_1_0_0
- * exparticle_0_0_2
* expcap_0_1_0
* exprotobuf_0_10_2
* exprotobuf_0_13_0
* exprotobuf_1_0_0
+ * exquery_0_0_11
* exrabbit_0_0_2
* exrecaptcha_0_0_3
+ * exrm_0_14_10
* exrm_0_14_17
- * exrm_0_14_2
* exrm_0_18_8
- * exrm_rpm_0_3_0
+ * exrm_0_19_9
* exseed_0_0_3
- * exsentry_0_3_0
+ * exsentry_0_5_0
* exsyslog_1_0_1
- * extreme_0_5_0
- * extripe_0_3_2
- * exts_0_2_2
+ * extreme_0_5_1
* exurban_0_0_1
- * exvcr_0_3_9
- * exvcr_0_7_2
- * exyelp_0_0_2
* ezlib_1_0_1
* ezmq_0_2_0
- * facebook_0_4_2
- * fast_tls_1_0_1
+ * facebook_0_10_0
+ * fast_tls_1_0_3
* fast_xml_1_1_11
* fast_yaml_1_0_3
* favicon_0_0_7
* feedistiller_2_0_2
* feedlex_0_0_1
- * feedme_0_0_1
- * fifo_db_0_2_1
+ * fernet_ecto_0_2_0
+ * ffi_0_0_1_alpha
+ * fifo_db_0_2_2
* fifo_dt_0_1_66
- * fifo_dt_0_1_68
+ * fifo_dt_0_1_69
+ * fifo_lager_0_1_4
* fifo_spec_0_1_27
* fifo_utils_0_1_20
* fifo_utils_0_1_22
* figaro_0_1_0
* filepreviews_1_0_1
- * filtrex_0_1_0
+ * filtrex_0_2_0
* finch_0_0_3
+ * fintex_0_3_0
* fireworks_0_5_1
* fitbit_0_0_1
* fitex_0_0_1
+ * flames_0_1_0
* fleet_api_0_0_15
- * floki_0_1_1
- * floki_0_7_2
+ * floorplan_0_1_1
* flower_power_0_3_2
* fluent_client_0_1_0
* folsom_ddb_0_1_22
* font_awesome_phoenix_0_3_2
- * forcex_0_2_0
- * forecast_io_0_2_1
* form_data_0_1_1
- * fox_0_1_12
+ * forms_0_0_1
* fqc_0_1_7
* frank_0_0_3
- * freegeoip_0_0_4
- * fulcrum_0_0_6
+ * fuentes_0_0_3
* funnel_0_4_1
- * gateway_0_0_6
- * gcm_1_2_0
+ * gcloudex_0_4_4
+ * gcm_1_3_1
* gcmex_0_0_1
+ * gen_leader_0_1_0
* gen_rpc_1_0_2
- * geo_1_0_1
- * geocoder_0_4_0
+ * gen_state_machine_0_0_2
+ * geo_1_0_4
+ * geocoder_0_4_2
* gil_0_0_3
* gimei_0_0_2
* gimei_ex_1_0_0
- * github_oauth_0_1_1
- * github_trend_ex_0_1_2
- * gizoogle_0_0_2
- * gmail_0_1_8
- * gold_0_12_0
- * google_sheets_2_0_5
- * goth_0_0_3
* gpb_3_18_10
* gpb_3_18_8
- * gpb_3_20_0
+ * gpb_3_21_2
+ * gpb_3_22_2
* graphql_parser_0_0_3
- * graphql_relay_0_0_16
+ * graphql_relay_0_3_0
* group_manager_0_0_8
* guardian_0_10_1
+ * guardian_0_12_0
* guardian_0_9_1
* guardian_db_0_4_0
- * guri_0_2_1
- * gutenex_0_1_0
+ * guardian_db_0_7_0
* hackney_1_1_0
* hackney_1_3_1
* hackney_1_3_2
* hackney_1_4_10
* hackney_1_4_4
* hackney_1_4_8
- * hackney_1_5_7
- * hackney_1_6_0
* hamcrest_0_1_1
- * harvest_0_0_3
* hash_ring_ex_1_1_2
* hdr_histogram_0_2_0
+ * hedwig_flowdock_0_1_1
* hedwig_hipchat_0_9_4
- * hedwig_irc_0_1_1
+ * hedwig_irc_0_1_3
+ * hedwig_slack_0_1_0
+ * hedwig_sms_0_1_0
* hedwig_xmpp_1_0_0_rc2
- * hello_0_0_0
- * hello_world_0_0_0
* hello_world_header_0_0_1
- * hex_searcher_1_0_0
* hexoku_0_1_0
* hmc5883l_0_5_0
- * honeybadger_0_4_0
- * honeydew_0_0_8
- * hound_0_8_2
+ * honeydew_0_0_9
* hr_0_2_2
* hstore_0_0_2
- * html_sanitize_ex_0_1_2
- * html_sanitize_ex_0_3_1
* htpasswd_1_0_2
* http_0_0_1
- * http_proxy_1_0_1
- * httpehaviour_0_9_0
+ * httpc_aws_0_1_3
* httpoison_0_7_1
* httpoison_0_7_5
* httpoison_0_8_0
- * httpoison_0_8_2
* httprot_0_1_7
- * huex_0_5_0
- * hydra_0_0_1
- * hypermock_0_0_2
* iconv_1_0_0
* ielixir_0_9_5
* ifttt_oauth_0_0_1
- * inaka_aleppo_0_9_9
- * inaka_mixer_0_1_5
- * inch_ex_0_5_1
+ * inch_ex_0_5_3
* inch_test_0_0_1
+ * inflex_0_2_0
* inquisitor_0_1_0
- * insight_0_1_3
- * instream_0_10_0
+ * instream_0_12_0
* intellij_elixir_0_1_2
* iona_0_2_1
- * isbndbex_0_0_1
+ * ipgeobase_0_0_1
* isn_1_0_0
- * ja_serializer_0_8_1
- * janrain_0_0_1
+ * ja_serializer_0_9_0
* japanese_holiday_0_0_2
- * jazz_0_1_2
+ * jazz_0_1_1
* jazz_0_2_1
- * jc_1_0_4
- * jira_0_0_8
- * joken_1_1_0
+ * jiffy_0_14_7
+ * joken_0_13_1
+ * joken_1_2_1
* jsxn_0_2_1
- * kane_0_0_5
- * katipo_0_3_2
+ * kafka_protocol_0_3_2
+ * kalecto_0_3_3
+ * kalends_0_6_5
+ * kane_0_1_1
+ * katipo_0_3_4
* keccakf1600_2_0_0
* keelless_0_1_0
+ * keenex_0_3_0
* kerosene_0_0_1
* kindred_0_0_1
* kovacs_0_9_2
- * kubex_0_1_1
* kvs_2_1_0
* lager_2_1_1
+ * lager_graylog_0_1_1
+ * lager_logstash_backend_0_1_1
* lager_watchdog_0_1_10
* lasp_0_0_5
* lazymaru_0_2_5
* ledx_0_0_1
- * libchunter_0_1_46
+ * letsencrypt_0_5_0
+ * lfe_1_0_2
+ * libchunter_0_1_48
* libdecaf_0_0_2
* libex_config_0_2_0
- * libhowl_0_1_34
+ * libhowl_0_1_36
* libleofs_0_1_2
* libsnarl_0_3_40
- * libsnarl_0_3_44
- * libsniffle_0_3_45
- * libsodium_0_0_4
+ * libsnarl_0_3_46
+ * libsniffle_0_3_47
+ * libsodium_0_0_7
* link_shrinkex_1_0_0
* locker_1_0_8
* logger_json_file_backend_0_1_2
* logger_logentries_backend_0_0_1
- * logger_loggly_backend_0_2_0
+ * logster_0_2_0
* lyn_0_0_16
- * m2x_2_0_0
- * m2x_erlang_1_3_1
* mad_0_9_0
* mailchimp_0_0_5
* mailgun_webhook_auth_1_0_0
* mailibex_0_1_0
- * mandrill_0_4_1
+ * mailman_0_2_2
* mandrillex_0_2_0
- * markit_0_1_2
- * markit_skill_0_0_2
- * maru_0_9_5
- * maru_swagger_0_7_3
+ * maru_0_10_1
+ * maru_swagger_0_8_0
* marvel_1_0_0
* marvin_0_3_0
- * mcrypt_0_1_0
+ * mc_protocol_0_0_2
+ * mcrypt_0_1_1
* mdns_client_0_1_7
* mdns_client_lib_0_1_33
- * mdns_client_lib_0_1_38
- * meck_0_8_4
+ * mdns_client_lib_0_1_39
* medex_0_1_2
* message_pack_0_2_0
- * microformats2_0_0_5
- * mixpanel_api_ex_0_8_3
- * mixpanel_data_client_0_0_2
+ * meta_0_0_1
+ * migratrex_0_0_1
+ * mimerl_1_0_0
* mixstar_0_0_1
* mmath_0_1_15
- * mmath_0_1_16
* mobiledoc_0_0_1
- * mochiweb_2_12_2
- * mock_0_1_3
- * moebius_1_0_8
- * mondo_0_1_0
+ * monetized_0_4_0
+ * money_1_0_0
* mongo_0_5_4
+ * mongodb_ecto_0_1_4
* motor_hat_0_6_1
- * mstore_0_1_9
- * mt940_0_4_0
- * murdoch_0_0_1
+ * mstore_0_1_11
+ * mt940_1_0_0
* mustachex_0_0_1
* mynumber_1_0_0
* nacl_0_3_0
- * nadia_0_4_0
* naughtygram_0_2_0
* neo4j_0_3_0
- * neo4j_sips_0_1_25
+ * neo4j_sips_0_1_26
* neo4j_sips_models_0_1_1
+ * neotoma_1_7_3
* neotomex_0_1_4
- * nerves_io_neopixel_0_2_0
+ * nerves_0_3_2
+ * nerves_interim_wifi_0_0_1
+ * nerves_network_interface_0_3_1
+ * nerves_system_ag150_0_5_1
+ * nerves_system_alix_0_5_1
+ * nerves_system_bbb_0_6_2
+ * nerves_system_ev3_0_5_1
+ * nerves_system_galileo_0_5_1
+ * nerves_system_qemu_arm_0_5_1
+ * nerves_system_rpi_0_5_2
+ * nerves_system_rpi2_0_5_2
+ * nerves_system_rpi3_0_5_2
+ * nerves_toolchain_arm_unknown_linux_gnueabi_0_6_2
+ * nerves_toolchain_arm_unknown_linux_gnueabihf_0_6_1
+ * nerves_toolchain_armv6_rpi_linux_gnueabi_0_6_1
+ * nerves_toolchain_i586_unknown_linux_gnu_0_6_1
+ * nerves_wpa_supplicant_0_2_1
+ * nested_set_0_0_2
+ * new_relixir_0_1_0
+ * newrelic_0_1_0
* nice_nickname_0_0_1
* nifty_0_0_3
- * ninjaproxies_0_2_0
* nio_google_authenticator_1_0_1
* nio_google_geocoder_0_7_0
- * njord_0_1_1
+ * nodefinder_1_4_0
* nodefinder_1_5_1
- * normalixr_0_3_0
- * oauth2_0_3_0
+ * nomad_0_6_0
+ * normalixr_0_4_0
* oauth2_0_6_0
+ * oauth2_server_0_1_1
* oauth2cli_0_0_4
* oauth2ex_0_0_9
* obelisk_0_10_0
- * observer_cli_1_0_3
- * octokit_0_1_0
+ * observer_cli_1_0_5
* okta_0_0_1
- * omise_0_1_4
- * one_signal_0_0_6
- * opbeat_0_3_0
- * open_graphx_0_0_2
- * openmaize_0_17_2
- * openstack_0_0_4
+ * omise_0_2_2
+ * openmaize_0_18_1
* overpass_0_1_1
* oxr_0_3_1
* p1_mysql_1_0_1
+ * p1_oauth2_0_6_1
* p1_pgsql_1_1_0
* p1_stringprep_1_0_1
+ * p1_utils_1_0_0
* p1_utils_1_0_3
+ * p1_utils_1_0_4
* p1_xml_1_1_1
* p1_xmlrpc_1_15_1
- * pagexduty_0_1_0
* params_2_0_0_beta_0
* parse_client_0_2_3
* parse_trans_2_9_0
* parsex_0_0_2
* passport_0_0_4
- * pavlov_0_2_3
* peatio_client_1_5_0
* pet_0_1_1
* pgpool_1_0_0
- * phoenix_0_2_11
+ * phoenix_0_2_6
* phoenix_0_4_1
- * phoenix_1_1_4
+ * phoenix_1_2_0_rc_1
+ * phoenix_active_link_0_0_1
* phoenix_calendar_0_1_2
* phoenix_dtl_0_0_1
- * phoenix_ecto_3_0_0_beta_2
+ * phoenix_ecto_3_0_0_rc_0
* phoenix_ember_0_0_1
+ * phoenix_facebook_messenger_0_3_0
* phoenix_gen_gulp_jspm_1_0_0
- * phoenix_haml_0_2_0
- * phoenix_html_2_0_0_dev
+ * phoenix_haml_0_2_1
+ * phoenix_html_2_4_0_dev
* phoenix_html_2_5_1
- * phoenix_html_sanitizer_0_2_0
- * phoenix_html_simplified_helpers_0_3_2
+ * phoenix_html_sanitizer_1_0_2
+ * phoenix_html_simplified_helpers_0_3_3
* phoenix_linguist_0_0_1
- * phoenix_live_reload_1_0_3
+ * phoenix_live_reload_1_0_5
+ * phoenix_microsoftbot_0_1_0
* phoenix_pubsub_rabbitmq_0_0_1
* phoenix_pubsub_redis_2_0_0
+ * phoenix_ratchet_0_2_0
+ * phoenix_reactor_0_0_3
* phoenix_simple_form_0_0_2
* phoenix_slim_0_4_1
- * phoenix_slime_0_5_1
- * phoenix_swoosh_0_1_0
- * phoenix_timex_0_0_3
+ * phoenix_slime_0_6_0
+ * phoenix_swoosh_0_1_2
+ * phoenix_timex_1_0_1
* phoenix_token_auth_0_4_0
* picosat_0_1_0
- * pigeon_0_4_1
* pin_elixir_0_0_1
- * pinglix_1_1_1
- * pipette_0_0_4
- * pixie_0_3_3
+ * pixie_0_3_5
* placid_0_1_3
- * plasm_0_1_0
- * plug_0_5_1
- * plug_0_5_2
+ * plain_sitemap_0_0_1
+ * plasm_0_3_0
+ * plug_0_4_4
* plug_0_5_3
* plug_0_7_0
* plug_abort_2_1_1
- * plug_accesslog_0_11_0
* plug_auth_0_3_0
* plug_basic_auth_1_1_0
* plug_byte_serve_0_3_2
* plug_cors_0_8_2
* plug_exception_handler_0_0_4
- * plug_graphql_0_2_0
+ * plug_graphql_0_3_1
* plug_json_parser_0_0_6
* plug_jwt_0_7_1
+ * plug_newrelic_0_0_5
* plug_secure_headers_0_0_1
- * plugsnag_1_1_0
- * pocketex_0_1_0
+ * plug_session_memcached_0_3_3
+ * png_0_1_1
* poison_1_0_3
* poison_1_1_1
* poison_1_2_1
- * poloniex_0_0_3
* pool_0_0_2
- * poolboy_1_2_1
* pooler_1_4_0
- * pooler_1_5_0
* portal_0_0_1
* porterstemmer_0_0_1
- * portmidi_3_2_0
+ * portmidi_5_0_0
* postgrex_0_6_0
+ * pqueue_1_4_0
* proper_1_1_1_beta
+ * protego_0_1_0
* protobuffs_0_8_2
- * proxy_0_0_1
- * pubnub_ex_0_0_2
- * pulse_0_1_3
+ * provider_asn1_0_2_1
* pulse_libs_1_0_0
- * pusher_0_1_3
- * pushex_0_0_2
- * qiita_ex_0_0_2
- * qiniu_0_2_2
+ * pushex_0_0_5
+ * pynchon_0_1_1
+ * quick_chex_0_2_1
* quinn_0_0_4
* rackla_1_0_0
* radpath_0_0_5
* random_0_2_2
- * rapidax_0_0_3
+ * ratchet_0_3_1
* raven_0_0_5
- * raygun_0_2_0
+ * raygun_0_3_0
* reactive_0_0_1
- * reagent_0_1_5
+ * readme_md_doc_0_1_2
* reaxt_0_3_2
* rebar3_abnfc_plugin_0_1_0
* rebar3_auto_0_3_0
+ * rebar3_auto_applications_1_0_0
* rebar3_autotest_0_1_1
+ * rebar3_cuttlefish_0_11_0
+ * rebar3_diameter_compiler_0_4_0
+ * rebar3_elixir_0_0_5
+ * rebar3_elixirc_0_1_0
* rebar3_eqc_0_0_10
* rebar3_exunit_0_1_1
- * rebar3_gpb_plugin_1_3_0
+ * rebar3_git_vsn_1_1_0
+ * rebar3_gpb_plugin_1_3_3
+ * rebar3_hex_2_5_1
+ * rebar3_idl_compiler_0_4_0
+ * rebar3_lfe_compile_0_4_1
* rebar3_live_0_1_3
+ * rebar3_neotoma_plugin_0_2_0
* rebar3_proper_0_6_0
* rebar3_proper_plugin_0_1_0
* rebar3_protobuffs_0_2_0
+ * rebar3_raw_deps_2_0_0
* rebar3_run_0_2_0
+ * rebar3_shellrpc_0_1_0
+ * rebar3_tsung_0_1_4
+ * rebar3_vendor_0_3_0
* rebar3_yang_plugin_0_2_1
+ * rebar_alias_0_1_0
+ * rebar_cmd_0_2_3
+ * rebar_erl_vsn_0_1_0
* rebar_protobuffs_0_1_0
+ * rebind_0_1_3
* recaptcha_1_1_1
- * recon_ex_0_9_0
+ * receipt_verifier_0_0_1
+ * recon_2_2_1
+ * recon_2_3_1
+ * recon_ex_0_9_1
* record_translator_0_0_3
+ * red_0_0_5
+ * red_black_tree_1_2_0
* reddhl_0_0_1
+ * redis_pool_0_2_3
+ * redis_poolex_0_0_5
+ * redix_0_3_6
+ * redo_2_0_1
* redtube_1_0_0
+ * ref_inspector_0_9_0
+ * regdom_0_0_1
* relax_0_3_0
+ * relflow_1_0_5
+ * relief_0_0_1
* relisa_0_1_0
+ * relocker_0_0_8
+ * reltool_util_1_4_0
+ * reltool_util_1_5_1
+ * relx_3_1_0
+ * relx_3_19_0
+ * relx_3_5_0
+ * remix_0_0_2
+ * remodel_0_0_1
+ * remote_ip_rewriter_0_0_2
* rendezvous_0_0_1
- * reporter_0_4_1
+ * repg2_0_0_4
+ * repo_0_4_1
+ * repoquery_0_0_2
+ * reporter_0_5_1
+ * reprise_0_5_0
+ * resin_0_4_1
+ * rest_1_5_0
* rest_client_0_0_1
* rethinkdb_0_4_0
* rethinkdb_changefeed_0_0_1
+ * retrieval_0_9_1
+ * retry_0_1_0
+ * reup_0_1_0
* reverse_proxy_0_1_0
+ * revision_plate_ex_0_1_0
+ * rfc3339_0_9_0
* riak_1_0_0
- * riak_core_ng_2_2_3
+ * riak_core_ng_2_2_5
+ * riak_dt_2_1_1
* riak_ensemble_2_1_3
* riak_pb_2_1_0
+ * riak_sysmon_2_1_2
* riakc_2_1_1
* riboflavin_0_0_2
- * riemann_0_0_14
+ * riemann_0_0_15
+ * rlist_0_0_1
* robotex_0_0_1
* rogger_0_1_0
- * rollbax_0_5_4
+ * rollbax_0_6_0
+ * rollex_0_4_0
+ * roman_numerals_1_0_1
+ * romanex_0_1_0
+ * romeo_0_5_0
* roombex_0_0_4
+ * rop_0_5_3
+ * rotor_0_2_2
+ * rquote_0_0_1
+ * rsa_0_0_1
* rss_0_2_1
+ * rstats_1_0_2
+ * rubix_0_0_2
* rulex_0_2_0
+ * russian_0_1_0
+ * rustler_0_0_7
+ * safetybox_0_1_2
+ * sage_0_0_1
+ * salsa20_0_3_0
* saltie_0_3_2
+ * saltpack_1_0_1
+ * sap_0_0_2
+ * sasl_ex_0_1_0
* sass_elixir_0_0_1
* savory_0_0_2
+ * sbroker_0_6_2
+ * sbroker_0_7_0
+ * sbroker_1_0_0_beta_2
+ * scaffold_0_0_5
+ * scarab_0_1_0
+ * schedule_0_1_0
+ * schizo_0_0_1
+ * scientist_0_2_0
+ * scientist_ex_0_1_0
* scrape_1_0_4
- * scrivener_1_1_2
+ * scrivener_1_1_4
+ * scrivener_1_2_1
* scrivener_headers_1_0_1
- * scrivener_html_1_0_9
+ * scrivener_html_1_1_1
+ * seasonal_0_3_0
+ * seat_json_0_0_18
+ * sec_cik_ticker_mapper_0_0_2
* sec_company_filings_rss_feed_parser_0_0_2
- * sec_recent_filings_rss_feed_parser_0_0_3
+ * sec_recent_filings_rss_feed_parser_0_0_6
+ * secure_0_1_0
+ * secure_compare_0_0_1
* secure_headers_0_0_1
- * secure_password_0_4_0
+ * secure_password_0_4_3
+ * secure_random_0_1_1
+ * secure_random_0_3_0
+ * seedex_0_1_2
+ * seg_seg_0_0_1
+ * seg_seg_0_1_0
+ * segment_0_1_0
* select_0_0_1
- * sendgrid_0_0_2
+ * selenium_0_0_2
+ * semver_0_1_2
+ * sendgrid_0_1_0
+ * sentient_0_0_2
* sentinel_0_1_0
* sentry_0_3_2
* sequences_1_1_0
* serial_0_1_2
+ * serve_this_1_0_0
* service_1_5_1
+ * setup_1_7_0
+ * setup_tag_0_1_2
+ * sfmt_0_12_7
+ * sfmt_0_13_0
+ * sfsobject_0_0_3
+ * sh_1_1_2
+ * sha3_1_0_0
+ * shameless_plug_1_0_0
+ * shape_0_0_2
+ * shell_stream_0_0_1
+ * short_maps_0_1_1
+ * shorter_maps_1_0_0
+ * shotgun_0_3_0
+ * shouldi_0_3_0
+ * shove_0_0_1
+ * shrivel_0_0_3
+ * sidejob_2_0_0
+ * sideshow_0_0_2
+ * sidetask_1_1_0
+ * signaturex_1_0_1
+ * simetric_0_1_0
+ * simple_agent_0_0_7
+ * simple_bar_0_0_7
* simple_format_0_1_0
- * simplify_0_2_0
- * siphash_3_0_0
+ * simple_markdown_0_0_1
+ * simple_secrets_1_0_0
+ * simple_statistics_0_0_1
+ * simplex_0_4_0
+ * simplify_0_2_1
+ * simpre_0_1_0
+ * siphash_3_1_0
* sips_downloader_0_2_2
+ * sitemap_0_7_0
+ * skills_0_0_1
* skroutz_0_1_0
* slack_0_3_0
* slack_0_4_2
- * slack_logger_backend_0_1_3
+ * slack_0_5_0
+ * slack_logger_backend_0_1_4
* slack_webhook_0_0_2
* slacker_0_0_2
* slackex_0_0_1
+ * slim_fast_0_10_0
+ * slime_0_13_0
* slp_0_0_2
+ * slugerl_1_0_0
+ * slugger_0_1_0
* smex_0_0_1
+ * sms506_0_2_0
+ * sms_blitz_0_0_1
+ * smurf_0_1_3
* snappy_1_1_1
* snowflake_client_0_1_1
* socket_0_2_8
- * socket_0_3_1
+ * socket_0_3_4
+ * solage_0_0_1
* sonic_0_1_3
+ * sorted_set_1_1_0
+ * soundcloud_ex_0_0_1
+ * spaceapi_0_1_2
* spaced_repetitions_0_0_1
+ * spacesaving_0_0_3
+ * spaghetti_pool_0_1_0
+ * sparkpost_0_1_0
+ * spartan_0_0_1
* spawndir_0_1_1
* spirit_0_0_1
- * spotify_ex_0_0_4
- * spreedly_0_1_1
- * sql_dust_0_3_2
+ * sql_dust_0_3_4
* sqlite3_1_1_5
* sqlite_ecto_0_5_0
+ * sqlite_ecto_1_0_2
* sqlite_ecto_1_1_0
- * sqlitex_0_8_3
- * sqlitex_1_0_0
* ssdb_0_3_0
* ssdb_elixir_0_2_2
* sshex_1_1_0
- * ssl_verify_fun_1_1_0
+ * ssl_verify_hostname_1_0_0
* ssl_verify_hostname_1_0_5
* ssl_verify_hostname_1_0_6
- * statistics_0_4_0
- * steamex_0_0_5
+ * statman_0_5_0
* stmd_0_0_2
- * stockastic_0_0_2
- * stockfighter_0_0_1
* strava_0_0_1
* stringprep_1_0_3
* stripe_0_0_1
- * stripex_0_1_0
+ * stripe_client_0_0_3
+ * stripe_eventex_1_0_0
* stripity_stripe_1_4_0
* structurez_0_0_1
- * stun_1_0_1
- * sugar_0_4_10
+ * stun_1_0_3
+ * sugar_0_4_11
* supermemo_1_0_0
* supervisord_0_1_0
* swaggerdoc_0_0_1
- * swapi_1_0_0
* sweet_xml_0_4_0
- * swoosh_0_1_0
+ * switchboard_0_3_2
+ * swoosh_0_3_0
* syslog_1_0_2
* tagplay_0_1_0
- * tanegashima_0_0_9
- * tanuki_0_2_0
+ * tarantool_0_0_2
+ * tcs34725_0_0_1
* tds_ecto_1_0_2
* telebot_0_1_2
* templates_0_0_5
- * tentabucket_0_0_1
- * tentacat_0_4_0
+ * texas_0_0_2
* theriac_0_0_1
- * thesis_0_0_8
+ * thesis_0_0_14
+ * thing_0_0_1
* timex_0_12_9
* timex_0_13_5
* timex_0_16_2
- * timex_0_19_5
+ * timex_1_0_0_rc4
* timex_ecto_1_0_4
- * tmdb_0_0_6
- * togglex_0_2_0
+ * timex_ecto_1_1_3
+ * timex_interval_0_6_0
+ * tirerl_1_0_1
* tomlex_0_0_4
+ * topo_0_1_1
* tracker_request_0_0_4
* tractor_0_1_0
* traitify_elixir_0_1_1
- * travis_ex_0_0_2
+ * trans_0_1_0
+ * translator_0_0_1
* tributary_0_0_2
- * tubex_0_0_7
* tuco_tuco_0_8_1
* twittertex_0_1_0
* twittex_0_0_4
- * typeformx_0_0_1
- * tzdata_0_5_7
* u2f_0_1_3
+ * u_token_0_0_2
* ucol_2_0_0
* ucol_nif_1_1_5
* ueberauth_facebook_0_3_2
* ueberauth_fitbit_0_2_1
* ueberauth_github_0_2_0
* ueberauth_google_0_2_0
+ * ueberauth_linkedin_0_2_0
+ * ueberauth_paypal_0_1_0
* ueberauth_slack_0_2_0
- * ueberauth_twitter_0_2_2
- * unsplash_0_3_0
- * untappd_0_0_1
+ * ueberauth_spotify_0_0_1
+ * ueberauth_strava_0_1_1
+ * ueberauth_vk_0_1_1
+ * ueberauth_vkontakte_0_1_0
+ * ueberauth_weibo_0_0_3
+ * ui_0_1_1
+ * ulitos_0_3_0
+ * unsplash_0_4_0
* upyun_0_0_1
* uri_template_1_2_0
- * url_unroller_0_0_3
* urna_0_1_4
+ * uuid_erl_1_4_0
* uuid_erl_1_5_1
* valid_field_0_3_0
- * velkoz_0_0_1
- * verk_web_0_9_4
- * viktor_0_0_9
+ * velkoz_1_2_0
+ * verk_0_12_0
+ * verk_web_0_11_0
* vimeo_0_0_2
- * virus_total_0_0_1
- * wallaby_0_1_0
+ * voorhees_0_1_1
* wayback_archiver_0_0_1
* webdriver_0_8_1
* weber_0_1_0
- * webmentions_0_0_5
- * webpay_0_0_4
* weebo_0_1_2
* wifi_0_2_0
+ * win_notify_0_0_4
* wire_0_2_0
- * wizardry_0_0_1
- * wpa_supplicant_0_1_0
- * wykop_api_0_0_4
- * xe_0_0_1
- * xfighter_0_2_1
- * xkcd_0_0_1
- * xoauth2_0_0_3
- * yahoo_fx_0_2_0
+ * xlsx_parser_0_0_7
+ * xref_runner_1_0_0
* yar_0_1_0
- * yggdrasil_1_1_1
- * yocingo_0_0_2
+ * yggdrasil_1_2_3
* yodlee_0_1_4
* yomel_0_5_0
- * ytx_0_0_5
* zanox_0_0_1
* zencoder_1_0_1
- * zipcloudx_0_0_2
+ * zipper_1_0_0
* zuppler_users_client_0_0_5
*/
@@ -895,33 +1017,33 @@ let
meta = {
description = ''GraphQL for Elixir'';
license = stdenv.lib.licenses.bsd3;
- homepage = "https://github.com/CargoSense/absinthe";
+ homepage = "https://github.com/absinthe-graphql/absinthe";
};
} // packageOverrides)
) {};
- absinthe_1_1_2 = callPackage
+ absinthe_1_1_6 = callPackage
(
{ buildMix, packageOverrides ? {}, fetchHex }:
buildMix ({
name = "absinthe";
- version = "1.1.2";
+ version = "1.1.6";
src = fetchHex {
pkg = "absinthe";
- version = "1.1.2";
+ version = "1.1.6";
sha256 =
- "e15a387d865922df70506a4cdb63520de8ae9473358deefaffa3f70195193b07";
+ "3e83ea139967975a025850c0efc5aba7a864aded6b10d6483a60264a3523411f";
};
meta = {
description = ''GraphQL for Elixir'';
license = stdenv.lib.licenses.bsd3;
- homepage = "https://github.com/CargoSense/absinthe";
+ homepage = "https://github.com/absinthe-graphql/absinthe";
};
} // packageOverrides)
) {};
- absinthe = absinthe_1_1_2;
+ absinthe = absinthe_1_1_6;
absinthe_plug_1_0_0 = callPackage
(
@@ -929,7 +1051,7 @@ let
buildMix,
packageOverrides ? {},
fetchHex,
- plug_1_1_3,
+ plug_1_1_5,
absinthe_1_0_0
}:
buildMix ({
@@ -941,7 +1063,7 @@ let
sha256 =
"08459823fe1fd4f0325a8bf0c937a4520583a5a26d73b193040ab30a1dfc0b33";
};
- beamDeps = [ plug_1_1_3 absinthe_1_0_0 ];
+ beamDeps = [ plug_1_1_5 absinthe_1_0_0 ];
meta = {
description = ''A plug for Absinthe, an experimental GraphQL
@@ -952,31 +1074,36 @@ let
} // packageOverrides)
) {};
- absinthe_plug = absinthe_plug_1_0_0;
-
- absinthe_relay_0_8_0 = callPackage
+ absinthe_plug_1_1_3 = callPackage
(
- { buildMix, packageOverrides ? {}, fetchHex, absinthe_1_1_2 }:
+ {
+ buildMix,
+ packageOverrides ? {},
+ fetchHex,
+ plug_1_1_5,
+ absinthe_1_1_6
+ }:
buildMix ({
- name = "absinthe_relay";
- version = "0.8.0";
+ name = "absinthe_plug";
+ version = "1.1.3";
src = fetchHex {
- pkg = "absinthe_relay";
- version = "0.8.0";
+ pkg = "absinthe_plug";
+ version = "1.1.3";
sha256 =
- "a54ba3775d06db5d7cf3eaa7165bfa3eeaf26f7ee1d5021e0b4db3d74a3ecdd9";
+ "9fa66d56b4ddbd42fc11510780ed6c9758d539b9c8e538930ff8b383ae71814e";
};
- beamDeps = [ absinthe_1_1_2 ];
+ beamDeps = [ plug_1_1_5 absinthe_1_1_6 ];
meta = {
- description = ''Relay framework support for Absinthe'';
+ description = ''A plug for Absinthe, an experimental GraphQL
+ toolkit'';
license = stdenv.lib.licenses.bsd3;
- homepage = "https://github.com/absinthe-graphql/absinthe_relay";
+ homepage = "https://github.com/CargoSense/absinthe_plug";
};
} // packageOverrides)
) {};
- absinthe_relay = absinthe_relay_0_8_0;
+ absinthe_plug = absinthe_plug_1_1_3;
access_token_extractor_0_1_1 = callPackage
(
@@ -984,7 +1111,7 @@ let
buildMix,
packageOverrides ? {},
fetchHex,
- plug_1_1_3,
+ plug_1_1_5,
cowboy_1_0_4
}:
buildMix ({
@@ -996,7 +1123,7 @@ let
sha256 =
"40f76799f8fbb5b03230b31d4d55c5a169e7c3ad82d776a9d87fe0c65c85396d";
};
- beamDeps = [ plug_1_1_3 cowboy_1_0_4 ];
+ beamDeps = [ plug_1_1_5 cowboy_1_0_4 ];
meta = {
longDescription = ''Simple Plug to extract access_token from
@@ -1062,6 +1189,55 @@ let
adap = adap_0_0_1;
+ adt_0_0_2 = callPackage
+ (
+ { buildMix, packageOverrides ? {}, fetchHex }:
+ buildMix ({
+ name = "adt";
+ version = "0.0.2";
+ src = fetchHex {
+ pkg = "adt";
+ version = "0.0.2";
+ sha256 =
+ "a5b310b1ed8093b0f786ca4facdd0c9ff073acf3e47db6a9771005b77e0d7259";
+ };
+
+ meta = {
+ description = ''A light ADT module for Elixir.'';
+
+ };
+ } // packageOverrides)
+ ) {};
+
+ adt = adt_0_0_2;
+
+ aeacus_0_3_0 = callPackage
+ (
+ { buildMix, packageOverrides ? {}, fetchHex, comeonin_1_6_0 }:
+ buildMix ({
+ name = "aeacus";
+ version = "0.3.0";
+ src = fetchHex {
+ pkg = "aeacus";
+ version = "0.3.0";
+ sha256 =
+ "3cc138cfc7c508cfd85afddd0881632dde2e663d222c9e3749fae8c80ebb2c0b";
+ };
+ beamDeps = [ comeonin_1_6_0 ];
+
+ meta = {
+ longDescription = ''A simple, secure, and highly configurable
+ Elixir identity [username | email | id |
+ etc.]/password authentication module; Compatible
+ with Ecto.'';
+ license = stdenv.lib.licenses.bsd3;
+ homepage = "https://github.com/zmoshansky/aeacus";
+ };
+ } // packageOverrides)
+ ) {};
+
+ aeacus = aeacus_0_3_0;
+
ahab_0_1_1 = callPackage
(
{ buildMix, packageOverrides ? {}, fetchHex }:
@@ -1086,6 +1262,39 @@ let
ahab = ahab_0_1_1;
+ airbrakify_0_0_1 = callPackage
+ (
+ {
+ buildMix,
+ packageOverrides ? {},
+ fetchHex,
+ poison_2_1_0,
+ plug_1_1_5,
+ httpoison_0_8_3
+ }:
+ buildMix ({
+ name = "airbrakify";
+ version = "0.0.1";
+ src = fetchHex {
+ pkg = "airbrakify";
+ version = "0.0.1";
+ sha256 =
+ "973f895ba83e6dd71cf87182419e144db5c3ac23e43b7a1247e51559bf2737b6";
+ };
+ beamDeps = [ poison_2_1_0 plug_1_1_5 httpoison_0_8_3 ];
+
+ meta = {
+ longDescription = ''A simple Airbrake/Errbit library for
+ Elixir/Phoenix projects. Currently only supports
+ error/exception notifications via a Plug.'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/Diamond/airbrakify";
+ };
+ } // packageOverrides)
+ ) {};
+
+ airbrakify = airbrakify_0_0_1;
+
alambic_0_1_0 = callPackage
(
{ buildMix, packageOverrides ? {}, fetchHex }:
@@ -1112,17 +1321,41 @@ let
alambic = alambic_0_1_0;
- alchemic_pinyin_0_1_0 = callPackage
+ alchemic_avatar_0_1_2 = callPackage
+ (
+ { buildMix, packageOverrides ? {}, fetchHex }:
+ buildMix ({
+ name = "alchemic_avatar";
+ version = "0.1.2";
+ src = fetchHex {
+ pkg = "alchemic_avatar";
+ version = "0.1.2";
+ sha256 =
+ "329ae15eb6a304d6d425f86e6890f1d5c3901475b3fbc9eb07ad03f1394144b4";
+ };
+
+ meta = {
+ description = ''Creating letter avatar from user`s name(or any
+ other strong / character).'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/zhangsoledad/alchemic_avatar";
+ };
+ } // packageOverrides)
+ ) {};
+
+ alchemic_avatar = alchemic_avatar_0_1_2;
+
+ alchemic_pinyin_0_1_2 = callPackage
(
{ buildMix, packageOverrides ? {}, fetchHex }:
buildMix ({
name = "alchemic_pinyin";
- version = "0.1.0";
+ version = "0.1.2";
src = fetchHex {
pkg = "alchemic_pinyin";
- version = "0.1.0";
+ version = "0.1.2";
sha256 =
- "b1488866a9501557d9a5089726675bb34affd513316e167baccc155d7abfefd2";
+ "1fbd8300984699370b4a97ab10b64023494d2f9755eddf0abe1dcd9a5f2498c6";
};
meta = {
@@ -1133,7 +1366,7 @@ let
} // packageOverrides)
) {};
- alchemic_pinyin = alchemic_pinyin_0_1_0;
+ alchemic_pinyin = alchemic_pinyin_0_1_2;
alchemist_0_0_2 = callPackage
(
@@ -1160,7 +1393,7 @@ let
alchemy_0_0_1 = callPackage
(
- { buildMix, packageOverrides ? {}, fetchHex, uuid_1_1_3 }:
+ { buildMix, packageOverrides ? {}, fetchHex, uuid_1_1_4 }:
buildMix ({
name = "alchemy";
version = "0.0.1";
@@ -1170,7 +1403,7 @@ let
sha256 =
"109ce3f83d596a6ab9a947f472516f87da7b0df823fe2d91e27bc6594a305c3d";
};
- beamDeps = [ uuid_1_1_3 ];
+ beamDeps = [ uuid_1_1_4 ];
meta = {
description = ''Perform experiments in production'';
@@ -1205,17 +1438,17 @@ let
aleppo = aleppo_0_9_0;
- alexa_0_1_12 = callPackage
+ alexa_0_1_14 = callPackage
(
{ buildMix, packageOverrides ? {}, fetchHex, poison_2_1_0 }:
buildMix ({
name = "alexa";
- version = "0.1.12";
+ version = "0.1.14";
src = fetchHex {
pkg = "alexa";
- version = "0.1.12";
+ version = "0.1.14";
sha256 =
- "dbc1da3081766570635abc31a799164a1afb34fce437b1d5ef14bfcc5f8ace3d";
+ "a15cc63ef736f45326a3065ff59e1211365929387957f246e7b8cee76a31bbe8";
};
beamDeps = [ poison_2_1_0 ];
@@ -1228,11 +1461,11 @@ let
} // packageOverrides)
) {};
- alexa = alexa_0_1_12;
+ alexa = alexa_0_1_14;
alexa_plug_0_2_0 = callPackage
(
- { buildMix, packageOverrides ? {}, fetchHex, plug_1_1_3 }:
+ { buildMix, packageOverrides ? {}, fetchHex, plug_1_1_5 }:
buildMix ({
name = "alexa_plug";
version = "0.2.0";
@@ -1242,7 +1475,7 @@ let
sha256 =
"a78f6fa5e3ba33ce0943f4cb96d6cfcc9b36637a4575314469c8a0d45fff40d0";
};
- beamDeps = [ plug_1_1_3 ];
+ beamDeps = [ plug_1_1_5 ];
meta = {
longDescription = ''A simple set of plugs and utilities for
@@ -1262,9 +1495,9 @@ let
buildMix,
packageOverrides ? {},
fetchHex,
- plug_1_1_3,
+ plug_1_1_5,
cowboy_1_0_4,
- alexa_0_1_12
+ alexa_0_1_14
}:
buildMix ({
name = "alexa_web";
@@ -1275,7 +1508,7 @@ let
sha256 =
"e60a7fa60eb52bbb91e445cf0ee3781e0e2a148855befa638b274e6720421126";
};
- beamDeps = [ plug_1_1_3 cowboy_1_0_4 alexa_0_1_12 ];
+ beamDeps = [ plug_1_1_5 cowboy_1_0_4 alexa_0_1_14 ];
meta = {
description = ''A web endpoint for deploying one or a collection
@@ -1312,42 +1545,312 @@ let
algae = algae_0_10_0;
- alphonse_0_1_0 = callPackage
+ alice_0_3_6 = callPackage
(
- { buildMix, packageOverrides ? {}, fetchHex, cipher_0_1_0 }:
+ {
+ buildMix,
+ packageOverrides ? {},
+ fetchHex,
+ poison_2_1_0,
+ redix_0_3_6,
+ poolboy_1_5_1,
+ slack_0_4_2
+ }:
buildMix ({
- name = "alphonse";
- version = "0.1.0";
+ name = "alice";
+ version = "0.3.6";
src = fetchHex {
- pkg = "alphonse";
- version = "0.1.0";
+ pkg = "alice";
+ version = "0.3.6";
sha256 =
- "01666afde723be7d84fcd2e55741c90fd8bc78a407001677deb0717f685b8d21";
+ "f5c549f6983a5cc5f13320728315d101c8117f939df29e51c10ed3ff26809d54";
};
- beamDeps = [ cipher_0_1_0 ];
+ beamDeps = [ poison_2_1_0 redix_0_3_6 poolboy_1_5_1 slack_0_4_2
+ ];
meta = {
- description = ''A module wrapper to encrypt and decrypt files
- with aes-128-cbc'';
+ description = ''A Slack bot'';
license = stdenv.lib.licenses.mit;
- homepage = "https://github.com/chrisenytc/alphonse";
+ homepage = "https://github.com/adamzaninovich/alice";
};
} // packageOverrides)
) {};
- alphonse = alphonse_0_1_0;
+ alice = alice_0_3_6;
- amnesia_0_2_1 = callPackage
+ alice_against_humanity_0_1_2 = callPackage
+ (
+ { buildMix, packageOverrides ? {}, fetchHex, alice_0_3_6 }:
+ buildMix ({
+ name = "alice_against_humanity";
+ version = "0.1.2";
+ src = fetchHex {
+ pkg = "alice_against_humanity";
+ version = "0.1.2";
+ sha256 =
+ "aac5f049b59d0eaaea2383e1fc8fec28125b9a29ffda7fbe214d829738ad3935";
+ };
+ beamDeps = [ alice_0_3_6 ];
+
+ meta = {
+ description = ''A handler for the Alice Slack bot. Play Cards
+ Against Humanity with Alice.'';
+ license = stdenv.lib.licenses.mit;
+ homepage =
+ "https://github.com/adamzaninovich/alice_against_humanity";
+ };
+ } // packageOverrides)
+ ) {};
+
+ alice_against_humanity = alice_against_humanity_0_1_2;
+
+ alice_google_images_0_1_3 = callPackage
+ (
+ { buildMix, packageOverrides ? {}, fetchHex, alice_0_3_6 }:
+ buildMix ({
+ name = "alice_google_images";
+ version = "0.1.3";
+ src = fetchHex {
+ pkg = "alice_google_images";
+ version = "0.1.3";
+ sha256 =
+ "04b4e23c44a67c032c1ac8e2da4ca0fca03ec20cf207b4cb40eba0cb17e975e8";
+ };
+ beamDeps = [ alice_0_3_6 ];
+
+ meta = {
+ description = ''A handler for the Alice Slack bot. Get random
+ images from Google'';
+ license = stdenv.lib.licenses.mit;
+ homepage =
+ "https://github.com/adamzaninovich/alice_google_images";
+ };
+ } // packageOverrides)
+ ) {};
+
+ alice_google_images = alice_google_images_0_1_3;
+
+ alice_karma_0_2_0 = callPackage
+ (
+ { buildMix, packageOverrides ? {}, fetchHex, alice_0_3_6 }:
+ buildMix ({
+ name = "alice_karma";
+ version = "0.2.0";
+ src = fetchHex {
+ pkg = "alice_karma";
+ version = "0.2.0";
+ sha256 =
+ "8b1a6da30511fbc9c6df4035994407813af5ff194768ad64ebc1379cd923591d";
+ };
+ beamDeps = [ alice_0_3_6 ];
+
+ meta = {
+ longDescription = ''A handler for the Alice Slack bot. Allows
+ Alice to keep track of karma points for
+ arbitrary terms.'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/adamzaninovich/alice_karma";
+ };
+ } // packageOverrides)
+ ) {};
+
+ alice_karma = alice_karma_0_2_0;
+
+ alice_personable_0_0_2 = callPackage
+ (
+ { buildMix, packageOverrides ? {}, fetchHex, alice_0_3_6 }:
+ buildMix ({
+ name = "alice_personable";
+ version = "0.0.2";
+ src = fetchHex {
+ pkg = "alice_personable";
+ version = "0.0.2";
+ sha256 =
+ "fb80938b27c3ae374b3d0bf284de9902d65e85dd8da2d4c80238a03b819b8aad";
+ };
+ beamDeps = [ alice_0_3_6 ];
+
+ meta = {
+ description = ''A plugin for the Alice chat bot to make her seem
+ a bit more human.'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/mattr-/alice_personable";
+ };
+ } // packageOverrides)
+ ) {};
+
+ alice_personable = alice_personable_0_0_2;
+
+ alice_reddit_0_0_3 = callPackage
+ (
+ {
+ buildMix,
+ packageOverrides ? {},
+ fetchHex,
+ readit_0_0_3,
+ alice_0_3_6
+ }:
+ buildMix ({
+ name = "alice_reddit";
+ version = "0.0.3";
+ src = fetchHex {
+ pkg = "alice_reddit";
+ version = "0.0.3";
+ sha256 =
+ "bd1d16dde4cb066b4ae7486da425148fab23ae5bece0d283e1c27352b7707dbc";
+ };
+ beamDeps = [ readit_0_0_3 alice_0_3_6 ];
+
+ meta = {
+ description = ''Alice does Reddit'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/adamzaninovich/alice_reddit";
+ };
+ } // packageOverrides)
+ ) {};
+
+ alice_reddit = alice_reddit_0_0_3;
+
+ alice_shizzle_0_1_2 = callPackage
+ (
+ {
+ buildMix,
+ packageOverrides ? {},
+ fetchHex,
+ gizoogle_0_0_2,
+ alice_0_3_6
+ }:
+ buildMix ({
+ name = "alice_shizzle";
+ version = "0.1.2";
+ src = fetchHex {
+ pkg = "alice_shizzle";
+ version = "0.1.2";
+ sha256 =
+ "c98481d59c004f905958b9412bff1d288a649cf373afb4fea307222af2597c19";
+ };
+ beamDeps = [ gizoogle_0_0_2 alice_0_3_6 ];
+
+ meta = {
+ longDescription = ''A handlez fo` tha Alice Slack bot fo` realz.
+ Uses Gizoogle ta allow you ta drop a rhyme like
+ a thug n` retrieve links fo` translated sitez'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/notdevinclark/alice_shizzle";
+ };
+ } // packageOverrides)
+ ) {};
+
+ alice_shizzle = alice_shizzle_0_1_2;
+
+ alice_tielurs_heart_rate_0_0_5 = callPackage
+ (
+ {
+ buildMix,
+ packageOverrides ? {},
+ fetchHex,
+ alice_0_3_6,
+ timex_2_1_6,
+ httpoison_0_8_3
+ }:
+ buildMix ({
+ name = "alice_tielurs_heart_rate";
+ version = "0.0.5";
+ src = fetchHex {
+ pkg = "alice_tielurs_heart_rate";
+ version = "0.0.5";
+ sha256 =
+ "691b49b417029034d5b1905e06fa266c114d41fc9066047aa65212224e0bb5cc";
+ };
+ beamDeps = [ alice_0_3_6 timex_2_1_6 httpoison_0_8_3 ];
+
+ meta = {
+ description = ''A handler for the Alice Slack bot. Allows Alice
+ to check Tielur`s heart rate'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/tielur/alice_tielurs_heart_rate";
+ };
+ } // packageOverrides)
+ ) {};
+
+ alice_tielurs_heart_rate = alice_tielurs_heart_rate_0_0_5;
+
+ alice_xkcd_0_0_3 = callPackage
+ (
+ {
+ buildMix,
+ packageOverrides ? {},
+ fetchHex,
+ xkcd_0_0_1,
+ alice_0_3_6
+ }:
+ buildMix ({
+ name = "alice_xkcd";
+ version = "0.0.3";
+ src = fetchHex {
+ pkg = "alice_xkcd";
+ version = "0.0.3";
+ sha256 =
+ "13562b43fd99c7d9cdc568d7511c154842b9a59a19eca9df019069193bd94842";
+ };
+ beamDeps = [ xkcd_0_0_1 alice_0_3_6 ];
+
+ meta = {
+ longDescription = ''A handler for the Alice Slack bot. Retrieves
+ latest, specific and random XKCD comics.'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/notdevinclark/alice_xkcd";
+ };
+ } // packageOverrides)
+ ) {};
+
+ alice_xkcd = alice_xkcd_0_0_3;
+
+ amazon_product_advertising_client_0_1_1 = callPackage
+ (
+ {
+ buildMix,
+ packageOverrides ? {},
+ fetchHex,
+ timex_1_0_2,
+ sweet_xml_0_6_1,
+ httpoison_0_8_3
+ }:
+ buildMix ({
+ name = "amazon_product_advertising_client";
+ version = "0.1.1";
+ src = fetchHex {
+ pkg = "amazon_product_advertising_client";
+ version = "0.1.1";
+ sha256 =
+ "406111cedbd475cab29bdcc69f48ddc3670e57d2e3294e8d948c117ae492951c";
+ };
+ beamDeps = [ timex_1_0_2 sweet_xml_0_6_1 httpoison_0_8_3 ];
+
+ meta = {
+ description = ''An Amazon Product Advertising API client for
+ Elixir'';
+ license = stdenv.lib.licenses.mit;
+ homepage =
+ "https://github.com/zachgarwood/elixir-amazon-product-advertising-client";
+ };
+ } // packageOverrides)
+ ) {};
+
+ amazon_product_advertising_client =
+ amazon_product_advertising_client_0_1_1;
+
+ amnesia_0_2_4 = callPackage
(
{ buildMix, packageOverrides ? {}, fetchHex, exquisite_0_1_6 }:
buildMix ({
name = "amnesia";
- version = "0.2.1";
+ version = "0.2.4";
src = fetchHex {
pkg = "amnesia";
- version = "0.2.1";
+ version = "0.2.4";
sha256 =
- "2d8b0dc6d2da2dcce7339cb2173dc3dad5a2f0865ce770f5f3ded796cd1d6e61";
+ "fba1e39f5c51d860b22618046a25525170530bc595d0f2dbb45f070c3b40da8f";
};
beamDeps = [ exquisite_0_1_6 ];
@@ -1359,7 +1862,32 @@ let
} // packageOverrides)
) {};
- amnesia = amnesia_0_2_1;
+ amnesia = amnesia_0_2_4;
+
+ anagram_1_0_0 = callPackage
+ (
+ { buildMix, packageOverrides ? {}, fetchHex }:
+ buildMix ({
+ name = "anagram";
+ version = "1.0.0";
+ src = fetchHex {
+ pkg = "anagram";
+ version = "1.0.0";
+ sha256 =
+ "8c41013b8b586728adbf821fe809c277e30f99323138b8e8ccff2311317c8fac";
+ };
+
+ meta = {
+ longDescription = ''Find anagrams of words and \"words that can
+ be made with a set of letters\" (sort of a sub
+ anagram)'';
+ license = stdenv.lib.licenses.asl20;
+ homepage = "https://github.com/ewildgoose/elixir-anagram";
+ };
+ } // packageOverrides)
+ ) {};
+
+ anagram = anagram_1_0_0;
anaphora_0_1_2 = callPackage
(
@@ -1384,6 +1912,36 @@ let
anaphora = anaphora_0_1_2;
+ anilixir_1_0_0 = callPackage
+ (
+ {
+ buildMix,
+ packageOverrides ? {},
+ fetchHex,
+ poison_1_5_2,
+ httpoison_0_8_3
+ }:
+ buildMix ({
+ name = "anilixir";
+ version = "1.0.0";
+ src = fetchHex {
+ pkg = "anilixir";
+ version = "1.0.0";
+ sha256 =
+ "ee5c6dfa7e5250d8ec5c9b04910e3202788ceeba231cb3ff8b22e479cc64f1c3";
+ };
+ beamDeps = [ poison_1_5_2 httpoison_0_8_3 ];
+
+ meta = {
+ description = ''Anilist API client for Elixir'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/sotojuan/anilixir";
+ };
+ } // packageOverrides)
+ ) {};
+
+ anilixir = anilixir_1_0_0;
+
apex_0_3_7 = callPackage
(
{ buildMix, packageOverrides ? {}, fetchHex }:
@@ -1405,17 +1963,17 @@ let
} // packageOverrides)
) {};
- apex_0_4_0 = callPackage
+ apex_0_5_0 = callPackage
(
{ buildMix, packageOverrides ? {}, fetchHex }:
buildMix ({
name = "apex";
- version = "0.4.0";
+ version = "0.5.0";
src = fetchHex {
pkg = "apex";
- version = "0.4.0";
+ version = "0.5.0";
sha256 =
- "0a566f042e9be5e220ed7ca2869770c0c2c0ca4560c416dee317df86f238eccf";
+ "dd8863ebef2a42be331eece2d3a2f721c4ec3c8495bc0e198703aea7927f156a";
};
meta = {
@@ -1426,12 +1984,12 @@ let
} // packageOverrides)
) {};
- apex = apex_0_4_0;
+ apex = apex_0_5_0;
apix_0_1_0 = callPackage
(
- { buildRebar3, packageOverrides ? {}, fetchHex }:
- buildRebar3 ({
+ { buildMix, packageOverrides ? {}, fetchHex }:
+ buildMix ({
name = "apix";
version = "0.1.0";
src = fetchHex {
@@ -1453,25 +2011,26 @@ let
apix = apix_0_1_0;
- apns_0_0_12 = callPackage
+ apns_0_9_2 = callPackage
(
{
buildMix,
packageOverrides ? {},
fetchHex,
poolboy_1_5_1,
- poison_1_5_2
+ poison_2_1_0,
+ connection_1_0_2
}:
buildMix ({
name = "apns";
- version = "0.0.12";
+ version = "0.9.2";
src = fetchHex {
pkg = "apns";
- version = "0.0.12";
+ version = "0.9.2";
sha256 =
- "3eb40b6ef9e73a5082593f6ac1e8ba8548bbfd4bff1f3a5c5d5707ac114fc172";
+ "7d63bd108572fadac777006957e45db5da1a8adf2e94e76f83c89942adf54f68";
};
- beamDeps = [ poolboy_1_5_1 poison_1_5_2 ];
+ beamDeps = [ poolboy_1_5_1 poison_2_1_0 connection_1_0_2 ];
meta = {
description = ''APNS (Apple Push Notification Service) library
@@ -1482,7 +2041,7 @@ let
} // packageOverrides)
) {};
- apns = apns_0_0_12;
+ apns = apns_0_9_2;
ar2ecto_0_1_2 = callPackage
(
@@ -1585,7 +2144,7 @@ let
fetchHex,
porcelain_2_0_1,
poolboy_1_5_1,
- plug_1_1_3
+ plug_1_1_5
}:
buildMix ({
name = "artifact";
@@ -1596,7 +2155,7 @@ let
sha256 =
"6c66a3c745418e1f1207940c3815828d1a0f022d8186e5da593599d1f460197f";
};
- beamDeps = [ porcelain_2_0_1 poolboy_1_5_1 plug_1_1_3 ];
+ beamDeps = [ porcelain_2_0_1 poolboy_1_5_1 plug_1_1_5 ];
meta = {
description = ''File upload and on-the-fly processing for
@@ -1664,6 +2223,60 @@ let
ashes = ashes_0_0_3;
+ assembla_api_0_1_0 = callPackage
+ (
+ {
+ buildMix,
+ packageOverrides ? {},
+ fetchHex,
+ poison_1_5_2,
+ httpoison_0_8_3
+ }:
+ buildMix ({
+ name = "assembla_api";
+ version = "0.1.0";
+ src = fetchHex {
+ pkg = "assembla_api";
+ version = "0.1.0";
+ sha256 =
+ "b4a3898de536e4820702c0f119993fd2804e91e2525d1e7eba57d8744983ef24";
+ };
+ beamDeps = [ poison_1_5_2 httpoison_0_8_3 ];
+
+ meta = {
+ description = ''Assembla API client'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/Assembla/ex_assembla_api";
+ };
+ } // packageOverrides)
+ ) {};
+
+ assembla_api = assembla_api_0_1_0;
+
+ assembly_line_1_0_0 = callPackage
+ (
+ { buildMix, packageOverrides ? {}, fetchHex, gproc_0_5_0 }:
+ buildMix ({
+ name = "assembly_line";
+ version = "1.0.0";
+ src = fetchHex {
+ pkg = "assembly_line";
+ version = "1.0.0";
+ sha256 =
+ "3b687890bf750cd893e8a73c261710c1014ba4d5b2247f695f7730b2a84a5473";
+ };
+ beamDeps = [ gproc_0_5_0 ];
+
+ meta = {
+ description = ''A light-weight job queue (think DAG) manager.'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/LeakyBucket/assembly_line";
+ };
+ } // packageOverrides)
+ ) {};
+
+ assembly_line = assembly_line_1_0_0;
+
assert_diff_0_0_5 = callPackage
(
{ buildMix, packageOverrides ? {}, fetchHex }:
@@ -1687,9 +2300,34 @@ let
assert_diff = assert_diff_0_0_5;
+ atomic_map_0_9_0 = callPackage
+ (
+ { buildMix, packageOverrides ? {}, fetchHex }:
+ buildMix ({
+ name = "atomic_map";
+ version = "0.9.0";
+ src = fetchHex {
+ pkg = "atomic_map";
+ version = "0.9.0";
+ sha256 =
+ "f95d5fd4e0f5e4a8ecfead77fa1957cfbcee52307692bcd632159e01326cbf78";
+ };
+
+ meta = {
+ longDescription = ''A small utility to convert deep Elixir maps
+ with mixed string/atom keys to atom-only keyed
+ maps'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/ruby2elixir/atomic_map";
+ };
+ } // packageOverrides)
+ ) {};
+
+ atomic_map = atomic_map_0_9_0;
+
auth_test_support_0_0_6 = callPackage
(
- { buildMix, packageOverrides ? {}, fetchHex, plug_1_1_3 }:
+ { buildMix, packageOverrides ? {}, fetchHex, plug_1_1_5 }:
buildMix ({
name = "auth_test_support";
version = "0.0.6";
@@ -1699,7 +2337,7 @@ let
sha256 =
"930596c61d237fbf74b86d87819f0a7df8da8ef79051294a1982ded403cb2401";
};
- beamDeps = [ plug_1_1_3 ];
+ beamDeps = [ plug_1_1_5 ];
meta = {
description = ''Authentication and authorization test support
@@ -1741,7 +2379,7 @@ let
packageOverrides ? {},
fetchHex,
poison_1_5_2,
- plug_1_1_3
+ plug_1_1_5
}:
buildMix ({
name = "auto_doc";
@@ -1752,7 +2390,7 @@ let
sha256 =
"9c4b30c526e59f63173fe2f0d0c360ac678f1e7a11adcf209dfc843a3e63e6f7";
};
- beamDeps = [ poison_1_5_2 plug_1_1_3 ];
+ beamDeps = [ poison_1_5_2 plug_1_1_5 ];
meta = {
description = ''A package that will create REST API docs based on
@@ -1771,7 +2409,7 @@ let
buildMix,
packageOverrides ? {},
fetchHex,
- plug_1_1_3,
+ plug_1_1_5,
cowboy_1_0_4
}:
buildMix ({
@@ -1783,7 +2421,7 @@ let
sha256 =
"7cfa258ce5eff01018dfd6faf509b430d03770fb733c1b10217b9e52770014b3";
};
- beamDeps = [ plug_1_1_3 cowboy_1_0_4 ];
+ beamDeps = [ plug_1_1_5 cowboy_1_0_4 ];
meta = { };
} // packageOverrides)
@@ -1814,19 +2452,50 @@ let
avex = avex_0_2_0;
- aws_auth_0_2_5 = callPackage
+ aws_0_0_11 = callPackage
(
- { buildMix, packageOverrides ? {}, fetchHex, timex_1_0_2 }:
+ {
+ buildMix,
+ packageOverrides ? {},
+ fetchHex,
+ timex_2_1_6,
+ poison_1_5_2,
+ httpoison_0_8_3
+ }:
+ buildMix ({
+ name = "aws";
+ version = "0.0.11";
+ src = fetchHex {
+ pkg = "aws";
+ version = "0.0.11";
+ sha256 =
+ "f9f3f9b0e02bb6aa29268a746b2110deaebe34f205d689e9d57ccb90f0caf072";
+ };
+ beamDeps = [ timex_2_1_6 poison_1_5_2 httpoison_0_8_3 ];
+
+ meta = {
+ description = ''AWS clients for Elixir'';
+ license = stdenv.lib.licenses.asl20;
+ homepage = "https://github.com/jkakar/aws-elixir";
+ };
+ } // packageOverrides)
+ ) {};
+
+ aws = aws_0_0_11;
+
+ aws_auth_0_4_0 = callPackage
+ (
+ { buildMix, packageOverrides ? {}, fetchHex, timex_2_1_6 }:
buildMix ({
name = "aws_auth";
- version = "0.2.5";
+ version = "0.4.0";
src = fetchHex {
pkg = "aws_auth";
- version = "0.2.5";
+ version = "0.4.0";
sha256 =
- "646f1f42652adfb329b5eedde28ddda516c6d02dce45932108b85e2d8bd91b0a";
+ "67f28f8e4ffdd3f3155e124f20ef325ff32ea3f525cf85e2df96f2f09d245976";
};
- beamDeps = [ timex_1_0_2 ];
+ beamDeps = [ timex_2_1_6 ];
meta = {
description = ''AWS Signature Version 4 Signing Library'';
@@ -1836,7 +2505,7 @@ let
} // packageOverrides)
) {};
- aws_auth = aws_auth_0_2_5;
+ aws_auth = aws_auth_0_4_0;
aws_cli_0_1_0 = callPackage
(
@@ -1863,17 +2532,260 @@ let
aws_cli = aws_cli_0_1_0;
- bankster_0_1_0 = callPackage
+ azure_push_client_0_0_2 = callPackage
+ (
+ {
+ buildMix,
+ packageOverrides ? {},
+ fetchHex,
+ poison_2_1_0,
+ httpoison_0_8_3
+ }:
+ buildMix ({
+ name = "azure_push_client";
+ version = "0.0.2";
+ src = fetchHex {
+ pkg = "azure_push_client";
+ version = "0.0.2";
+ sha256 =
+ "d58bbac5e5260d92ef62916e74dbb8743e413a9f69afa2d8e1940071407a2f06";
+ };
+ beamDeps = [ poison_2_1_0 httpoison_0_8_3 ];
+
+ meta = {
+ description = ''Azure Push Client'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/chaione/azure_push_client";
+ };
+ } // packageOverrides)
+ ) {};
+
+ azure_push_client = azure_push_client_0_0_2;
+
+ b2_0_0_6 = callPackage
+ (
+ {
+ buildMix,
+ packageOverrides ? {},
+ fetchHex,
+ poison_1_5_2,
+ httpoison_0_8_3
+ }:
+ buildMix ({
+ name = "b2";
+ version = "0.0.6";
+ src = fetchHex {
+ pkg = "b2";
+ version = "0.0.6";
+ sha256 =
+ "f8b33d1ec36576dfbca3f2f4c5fad1a9a227207d1ef63b3a388778e8fad3333a";
+ };
+ beamDeps = [ poison_1_5_2 httpoison_0_8_3 ];
+
+ meta = {
+ description = ''Elixir B2 cloud API wrapper'';
+
+ };
+ } // packageOverrides)
+ ) {};
+
+ b2 = b2_0_0_6;
+
+ backy_0_0_5 = callPackage
+ (
+ {
+ buildMix,
+ packageOverrides ? {},
+ fetchHex,
+ poison_2_1_0,
+ postgrex_0_11_1
+ }:
+ buildMix ({
+ name = "backy";
+ version = "0.0.5";
+ src = fetchHex {
+ pkg = "backy";
+ version = "0.0.5";
+ sha256 =
+ "e581cc209ec08e61f0ba2205b39b7154f9fb3d12f6636e76ebd3ddce5e85a0e6";
+ };
+ beamDeps = [ poison_2_1_0 postgrex_0_11_1 ];
+
+ meta = {
+ description = ''A simple background job queue backed by
+ postgresql.'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/kuon/backy";
+ };
+ } // packageOverrides)
+ ) {};
+
+ backy = backy_0_0_5;
+
+ bamboo_0_3_2 = callPackage
+ (
+ {
+ buildMix,
+ packageOverrides ? {},
+ fetchHex,
+ poison_2_1_0,
+ httpoison_0_8_3
+ }:
+ buildMix ({
+ name = "bamboo";
+ version = "0.3.2";
+ src = fetchHex {
+ pkg = "bamboo";
+ version = "0.3.2";
+ sha256 =
+ "1b4bfdddae49f6fc66616c63b4d2d9a0e99d40a08619004f5c4f4e4aebfa20ed";
+ };
+ beamDeps = [ poison_2_1_0 httpoison_0_8_3 ];
+
+ meta = {
+ longDescription = ''Straightforward, powerful, and adapter based
+ Elixir email library. Works with Mandrill,
+ Mailgun, SendGrid, SparkPost, in-memory, and
+ test.'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/paulcsmith/bamboo";
+ };
+ } // packageOverrides)
+ ) {};
+
+ bamboo_0_5_0 = callPackage
+ (
+ {
+ buildMix,
+ packageOverrides ? {},
+ fetchHex,
+ poison_2_1_0,
+ plug_1_1_5,
+ httpoison_0_8_3
+ }:
+ buildMix ({
+ name = "bamboo";
+ version = "0.5.0";
+ src = fetchHex {
+ pkg = "bamboo";
+ version = "0.5.0";
+ sha256 =
+ "29e46e8c9e861e93103cde6fab9712bb077317e517af75a05e118763f7c5fc35";
+ };
+ beamDeps = [ poison_2_1_0 plug_1_1_5 httpoison_0_8_3 ];
+
+ meta = {
+ longDescription = ''Straightforward, powerful, and adapter based
+ Elixir email library. Works with Mandrill,
+ Mailgun, SendGrid, SparkPost, in-memory, and
+ test.'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/paulcsmith/bamboo";
+ };
+ } // packageOverrides)
+ ) {};
+
+ bamboo_0_6_0 = callPackage
+ (
+ {
+ buildMix,
+ packageOverrides ? {},
+ fetchHex,
+ poison_2_1_0,
+ plug_1_1_5,
+ httpoison_0_8_3
+ }:
+ buildMix ({
+ name = "bamboo";
+ version = "0.6.0";
+ src = fetchHex {
+ pkg = "bamboo";
+ version = "0.6.0";
+ sha256 =
+ "81a48add86d8b08da8a4ca8249caa0d42cb51d0cb654bf8ed921f3055995441d";
+ };
+ beamDeps = [ poison_2_1_0 plug_1_1_5 httpoison_0_8_3 ];
+
+ meta = {
+ longDescription = ''Straightforward, powerful, and adapter based
+ Elixir email library. Works with Mandrill,
+ Mailgun, SendGrid, SparkPost, in-memory, and
+ test.'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/paulcsmith/bamboo";
+ };
+ } // packageOverrides)
+ ) {};
+
+ bamboo = bamboo_0_6_0;
+
+ bamboo_smtp_0_0_2 = callPackage
+ (
+ {
+ buildMix,
+ packageOverrides ? {},
+ fetchHex,
+ gen_smtp_0_10_0,
+ bamboo_0_5_0
+ }:
+ buildMix ({
+ name = "bamboo_smtp";
+ version = "0.0.2";
+ src = fetchHex {
+ pkg = "bamboo_smtp";
+ version = "0.0.2";
+ sha256 =
+ "34c621806c8f9a2e316d5bc5f63bf85f5387418ff60222a383189611a367de4d";
+ };
+ beamDeps = [ gen_smtp_0_10_0 bamboo_0_5_0 ];
+
+ meta = {
+ description = ''A Bamboo adapter for SMTP'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/fewlinesco/bamboo_smtp";
+ };
+ } // packageOverrides)
+ ) {};
+
+ bamboo_smtp = bamboo_smtp_0_0_2;
+
+ bamboo_sparkpost_0_5_1 = callPackage
+ (
+ { buildMix, packageOverrides ? {}, fetchHex, bamboo_0_6_0 }:
+ buildMix ({
+ name = "bamboo_sparkpost";
+ version = "0.5.1";
+ src = fetchHex {
+ pkg = "bamboo_sparkpost";
+ version = "0.5.1";
+ sha256 =
+ "dc4165282d13fe431b78dbf04db5e280bc4fef9f87d3b0e20e78e008c8c6b3de";
+ };
+ beamDeps = [ bamboo_0_6_0 ];
+
+ meta = {
+ description = ''A Bamboo adapter for the SparkPost email
+ service'';
+ license = stdenv.lib.licenses.mit;
+ homepage =
+ "https://github.com/andrewtimberlake/bamboo_sparkpost";
+ };
+ } // packageOverrides)
+ ) {};
+
+ bamboo_sparkpost = bamboo_sparkpost_0_5_1;
+
+ bankster_0_2_2 = callPackage
(
{ buildMix, packageOverrides ? {}, fetchHex }:
buildMix ({
name = "bankster";
- version = "0.1.0";
+ version = "0.2.2";
src = fetchHex {
pkg = "bankster";
- version = "0.1.0";
+ version = "0.2.2";
sha256 =
- "c56909377e5246b37043b4b19a940a4eac8ef57d8e8006d10e201928fd2bbcb7";
+ "000df06a7701e11f1b9cba4595873f8c7d8e55afde22153fd3d6d19e55bc29f7";
};
meta = {
@@ -1885,7 +2797,7 @@ let
} // packageOverrides)
) {};
- bankster = bankster_0_1_0;
+ bankster = bankster_0_2_2;
banner_0_1_0 = callPackage
(
@@ -1980,6 +2892,32 @@ let
base16 = base16_1_0_0;
+ base36_1_0_0 = callPackage
+ (
+ {
+ buildMix, packageOverrides ? {}, fetchHex, custom_base_0_2_0
+ }:
+ buildMix ({
+ name = "base36";
+ version = "1.0.0";
+ src = fetchHex {
+ pkg = "base36";
+ version = "1.0.0";
+ sha256 =
+ "6022d73272ebd0a6f600248da05b47576b94f064c6444dd0401df67e717c189e";
+ };
+ beamDeps = [ custom_base_0_2_0 ];
+
+ meta = {
+ description = ''Base36 encoder/decoder.'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/nscyclone/base36";
+ };
+ } // packageOverrides)
+ ) {};
+
+ base36 = base36_1_0_0;
+
base58_0_1_0 = callPackage
(
{ buildMix, packageOverrides ? {}, fetchHex }:
@@ -2076,6 +3014,29 @@ let
base64url = base64url_0_0_1;
+ basex_0_2_1 = callPackage
+ (
+ { buildMix, packageOverrides ? {}, fetchHex }:
+ buildMix ({
+ name = "basex";
+ version = "0.2.1";
+ src = fetchHex {
+ pkg = "basex";
+ version = "0.2.1";
+ sha256 =
+ "190fcbb9d03fe325aee3bc1eea67e663ace1209d4515518c25098e307070f551";
+ };
+
+ meta = {
+ description = ''BaseX - arbitrary alphabet encoding'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/mwmiller/basex_ex";
+ };
+ } // packageOverrides)
+ ) {};
+
+ basex = basex_0_2_1;
+
basho_poolboy_0_8_1_p3 = callPackage
(
{ buildRebar3, packageOverrides ? {}, fetchHex }:
@@ -2099,6 +3060,29 @@ let
basho_poolboy = basho_poolboy_0_8_1_p3;
+ basho_stats_1_0_3 = callPackage
+ (
+ { buildRebar3, packageOverrides ? {}, fetchHex }:
+ buildRebar3 ({
+ name = "basho_stats";
+ version = "1.0.3";
+ src = fetchHex {
+ pkg = "basho_stats";
+ version = "1.0.3";
+ sha256 =
+ "d739e733b1c8afcaa467289fca50221753fc8cde6e7b53a79b67f98a2a261f5a";
+ };
+
+ meta = {
+ description = ''Basic Erlang statistics library'';
+ license = stdenv.lib.licenses.free;
+ homepage = "https://github.com/basho/basho_stats";
+ };
+ } // packageOverrides)
+ ) {};
+
+ basho_stats = basho_stats_1_0_3;
+
batcher_0_0_1 = callPackage
(
{ buildMix, packageOverrides ? {}, fetchHex }:
@@ -2124,6 +3108,36 @@ let
batcher = batcher_0_0_1;
+ battlenet_0_0_2 = callPackage
+ (
+ {
+ buildMix,
+ packageOverrides ? {},
+ fetchHex,
+ poison_1_5_2,
+ httpoison_0_8_3
+ }:
+ buildMix ({
+ name = "battlenet";
+ version = "0.0.2";
+ src = fetchHex {
+ pkg = "battlenet";
+ version = "0.0.2";
+ sha256 =
+ "cdd4e182da5a2db478e0da9ac1a467fc8f2b8ec638e3e38dd7962ff3fe8c9342";
+ };
+ beamDeps = [ poison_1_5_2 httpoison_0_8_3 ];
+
+ meta = {
+ description = ''Elixir library for the Battle.net API.'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/cazrin/battlenet";
+ };
+ } // packageOverrides)
+ ) {};
+
+ battlenet = battlenet_0_0_2;
+
bbmustache_1_0_3 = callPackage
(
{ buildRebar3, packageOverrides ? {}, fetchHex }:
@@ -2266,6 +3280,70 @@ let
bear = bear_0_8_3;
+ beersearch_0_0_6 = callPackage
+ (
+ {
+ buildMix,
+ packageOverrides ? {},
+ fetchHex,
+ httpotion_2_2_2,
+ floki_0_8_1
+ }:
+ buildMix ({
+ name = "beersearch";
+ version = "0.0.6";
+ src = fetchHex {
+ pkg = "beersearch";
+ version = "0.0.6";
+ sha256 =
+ "d830a7e1a6384d62b1dca430b6ab7dd99467f4ca1555a2ce7fed9422c3c86c6a";
+ };
+ beamDeps = [ httpotion_2_2_2 floki_0_8_1 ];
+
+ meta = {
+ description = ''A simple Elixir module that searches for beers on
+ Untappd.'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/nicksergeant/elixir-beersearch";
+ };
+ } // packageOverrides)
+ ) {};
+
+ beersearch = beersearch_0_0_6;
+
+ bees_0_0_2 = callPackage
+ (
+ {
+ buildMix,
+ packageOverrides ? {},
+ fetchHex,
+ poison_2_1_0,
+ plug_1_1_5,
+ jsx_2_8_0,
+ httpoison_0_8_3
+ }:
+ buildMix ({
+ name = "bees";
+ version = "0.0.2";
+ src = fetchHex {
+ pkg = "bees";
+ version = "0.0.2";
+ sha256 =
+ "3b6c0eee9359a87aff7b7e625a571a646d1932f8b4835fc18cc14f07cf0810fc";
+ };
+ beamDeps = [ poison_2_1_0 plug_1_1_5 jsx_2_8_0 httpoison_0_8_3
+ ];
+
+ meta = {
+ description = ''Foursquare API client for Elixir'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/danieltomlinson/bees";
+ };
+ } // packageOverrides)
+ ) {};
+
+ bees = bees_0_0_2;
+
belixir_0_2_0 = callPackage
(
{ buildMix, packageOverrides ? {}, fetchHex }:
@@ -2315,6 +3393,63 @@ let
belvedere = belvedere_0_0_1;
+ benchee_0_2_0 = callPackage
+ (
+ { buildMix, packageOverrides ? {}, fetchHex }:
+ buildMix ({
+ name = "benchee";
+ version = "0.2.0";
+ src = fetchHex {
+ pkg = "benchee";
+ version = "0.2.0";
+ sha256 =
+ "892b4463b3add8cb0a1c68fc45e03c6297895979bd0c77283460bad90d029dc3";
+ };
+
+ meta = {
+ longDescription = ''Versatile (micro) benchmarking that is
+ extensible. Get statistics such as: average,
+ iterations per second, standard deviation and
+ the median.'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/PragTob/benchee";
+ };
+ } // packageOverrides)
+ ) {};
+
+ benchee = benchee_0_2_0;
+
+ benchee_csv_0_2_0 = callPackage
+ (
+ {
+ buildMix,
+ packageOverrides ? {},
+ fetchHex,
+ csv_1_4_1,
+ benchee_0_2_0
+ }:
+ buildMix ({
+ name = "benchee_csv";
+ version = "0.2.0";
+ src = fetchHex {
+ pkg = "benchee_csv";
+ version = "0.2.0";
+ sha256 =
+ "43a864f1be2e9755a7cfed9e7a26aec466887773a76d1a9ef04f8737fe5b3968";
+ };
+ beamDeps = [ csv_1_4_1 benchee_0_2_0 ];
+
+ meta = {
+ description = ''Get CSV from your benchee benchmarks to them into
+ graphs or whatever!'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/PragTob/benchee_csv";
+ };
+ } // packageOverrides)
+ ) {};
+
+ benchee_csv = benchee_csv_0_2_0;
+
benchfella_0_3_2 = callPackage
(
{ buildMix, packageOverrides ? {}, fetchHex }:
@@ -2389,7 +3524,34 @@ let
} // packageOverrides)
) {};
- bencode = bencode_0_3_0;
+ bencode_0_3_1 = callPackage
+ (
+ { buildMix, packageOverrides ? {}, fetchHex, eqc_ex_1_2_4 }:
+ buildMix ({
+ name = "bencode";
+ version = "0.3.1";
+ src = fetchHex {
+ pkg = "bencode";
+ version = "0.3.1";
+ sha256 =
+ "a66ba85941c0115fae4f96309d6a1eeeee12571aef72a53bf2c990f236b895be";
+ };
+ beamDeps = [ eqc_ex_1_2_4 ];
+
+ meta = {
+ longDescription = ''A complete and correct Bencode encoder and
+ decoder written in pure Elixir. The decoder will
+ return the info hash with along with the decoded
+ data, and the encoder is implemented as a
+ protocol, allowing any data structure to be
+ bcode encoded.'';
+ license = stdenv.lib.licenses.asl20;
+ homepage = "https://github.com/gausby/bencode";
+ };
+ } // packageOverrides)
+ ) {};
+
+ bencode = bencode_0_3_1;
bencodex_1_0_0 = callPackage
(
@@ -2414,17 +3576,17 @@ let
bencodex = bencodex_1_0_0;
- bento_0_9_0 = callPackage
+ bento_0_9_2 = callPackage
(
{ buildMix, packageOverrides ? {}, fetchHex, poison_2_1_0 }:
buildMix ({
name = "bento";
- version = "0.9.0";
+ version = "0.9.2";
src = fetchHex {
pkg = "bento";
- version = "0.9.0";
+ version = "0.9.2";
sha256 =
- "3bc189cab5909af848cda351cc2bf3ff8998f41b6c21524204217674cbcff8c4";
+ "8be4312c4eacf57ef0c319f5ddd0b31872b510dc8ca02c64206ee648ec0f91d1";
};
beamDeps = [ poison_2_1_0 ];
@@ -2437,7 +3599,7 @@ let
} // packageOverrides)
) {};
- bento = bento_0_9_0;
+ bento = bento_0_9_2;
bert_0_1_0 = callPackage
(
@@ -2462,6 +3624,37 @@ let
bert = bert_0_1_0;
+ big_query_0_0_5 = callPackage
+ (
+ {
+ buildMix,
+ packageOverrides ? {},
+ fetchHex,
+ poison_2_1_0,
+ jose_1_4_2,
+ httpoison_0_8_2
+ }:
+ buildMix ({
+ name = "big_query";
+ version = "0.0.5";
+ src = fetchHex {
+ pkg = "big_query";
+ version = "0.0.5";
+ sha256 =
+ "f15795ee81245699d2d7a5cbf667637cbfc56a6b52143cacdfa145c0c4c11fbf";
+ };
+ beamDeps = [ poison_2_1_0 jose_1_4_2 httpoison_0_8_2 ];
+
+ meta = {
+ description = ''A Google BigQuery API client.'';
+ license = stdenv.lib.licenses.asl20;
+ homepage = "https://github.com/companykitchen/big_query";
+ };
+ } // packageOverrides)
+ ) {};
+
+ big_query = big_query_0_0_5;
+
bigflake_0_3_0 = callPackage
(
{ buildMix, packageOverrides ? {}, fetchHex, base62_1_2_0 }:
@@ -2528,6 +3721,42 @@ let
bin_format = bin_format_0_0_1;
+ bing_translator_0_2_7 = callPackage
+ (
+ {
+ buildMix,
+ packageOverrides ? {},
+ fetchHex,
+ timex_2_1_6,
+ poison_1_5_2,
+ httpoison_0_8_3,
+ floki_0_8_1
+ }:
+ buildMix ({
+ name = "bing_translator";
+ version = "0.2.7";
+ src = fetchHex {
+ pkg = "bing_translator";
+ version = "0.2.7";
+ sha256 =
+ "6dc4e9680f93ebc3f63bce85cbadf592145e635279dc23da87b2cb83d93b08ff";
+ };
+ beamDeps = [
+ timex_2_1_6 poison_1_5_2 httpoison_0_8_3 floki_0_8_1
+ ];
+
+ meta = {
+ longDescription = ''Translate strings using the Bing HTTP API.
+ Requires that you have a Client ID and Secret.
+ See README.md for information.'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/ikeikeikeike/bing_translator";
+ };
+ } // packageOverrides)
+ ) {};
+
+ bing_translator = bing_translator_0_2_7;
+
binstructor_0_0_1 = callPackage
(
{ buildMix, packageOverrides ? {}, fetchHex }:
@@ -2552,6 +3781,36 @@ let
binstructor = binstructor_0_0_1;
+ biometrics_facade_1_2_0 = callPackage
+ (
+ {
+ buildMix,
+ packageOverrides ? {},
+ fetchHex,
+ poison_1_5_2,
+ httpotion_2_2_2
+ }:
+ buildMix ({
+ name = "biometrics_facade";
+ version = "1.2.0";
+ src = fetchHex {
+ pkg = "biometrics_facade";
+ version = "1.2.0";
+ sha256 =
+ "b0b40c11fc884229936e6547a31c44eae3fedea0bd47355e33153c8b8c7dd81b";
+ };
+ beamDeps = [ poison_1_5_2 httpotion_2_2_2 ];
+
+ meta = {
+ description = ''An API facade for a private biometrics
+ service.'';
+ license = stdenv.lib.licenses.mit;
+ };
+ } // packageOverrides)
+ ) {};
+
+ biometrics_facade = biometrics_facade_1_2_0;
+
bit_field_set_0_1_0 = callPackage
(
{ buildMix, packageOverrides ? {}, fetchHex, eqc_ex_1_2_4 }:
@@ -2684,7 +3943,7 @@ let
buildMix,
packageOverrides ? {},
fetchHex,
- plug_1_1_3,
+ plug_1_1_5,
cowboy_1_0_4
}:
buildMix ({
@@ -2696,7 +3955,7 @@ let
sha256 =
"2900dc5b7c6f7810bdf5e0ede8749632997811ae5b72ada34f59699b4310a65a";
};
- beamDeps = [ plug_1_1_3 cowboy_1_0_4 ];
+ beamDeps = [ plug_1_1_5 cowboy_1_0_4 ];
meta = {
description = ''Basic Access Authentication in Plug
@@ -2709,28 +3968,28 @@ let
blaguth = blaguth_1_2_1;
- blake2_0_0_1 = callPackage
+ blake2_0_1_0 = callPackage
(
{ buildMix, packageOverrides ? {}, fetchHex }:
buildMix ({
name = "blake2";
- version = "0.0.1";
+ version = "0.1.0";
src = fetchHex {
pkg = "blake2";
- version = "0.0.1";
+ version = "0.1.0";
sha256 =
- "3f4d66c465d424076f3673065bdd3f3cdcda2cdc59bbdfc7216fa405fa563264";
+ "5d1ac81724568d173ef9fa198b37abe39eb54ecd1f4871d8c62aabaf5d1ace25";
};
meta = {
- description = ''BLAKE2 hash function'';
+ description = ''BLAKE2 hash functions'';
license = stdenv.lib.licenses.mit;
homepage = "https://github.com/mwmiller/blake2_ex";
};
} // packageOverrides)
) {};
- blake2 = blake2_0_0_1;
+ blake2 = blake2_0_1_0;
blanket_0_3_1 = callPackage
(
@@ -2756,6 +4015,115 @@ let
blanket = blanket_0_3_1;
+ blast_furnace_0_0_1 = callPackage
+ (
+ { buildMix, packageOverrides ? {}, fetchHex }:
+ buildMix ({
+ name = "blast_furnace";
+ version = "0.0.1";
+ src = fetchHex {
+ pkg = "blast_furnace";
+ version = "0.0.1";
+ sha256 =
+ "361bff3352803779f481ce56662228825c74ef45d34d05c79df5f56a37a2adb2";
+ };
+
+ meta = {
+ description = ''Elixir port of invaluable blast furnace
+ functionality'';
+ license = stdenv.lib.licenses.asl20;
+ homepage = "https://github.com/markryall/blast_furnace_exs";
+ };
+ } // packageOverrides)
+ ) {};
+
+ blast_furnace = blast_furnace_0_0_1;
+
+ blaze_cloud_0_0_1 = callPackage
+ (
+ {
+ buildMix,
+ packageOverrides ? {},
+ fetchHex,
+ poison_2_0_1,
+ httpoison_0_8_3
+ }:
+ buildMix ({
+ name = "blaze_cloud";
+ version = "0.0.1";
+ src = fetchHex {
+ pkg = "blaze_cloud";
+ version = "0.0.1";
+ sha256 =
+ "c5a26f194691d7c40a008c5aded034ca0a43d4fa6a9173952333479cf2661b2b";
+ };
+ beamDeps = [ poison_2_0_1 httpoison_0_8_3 ];
+
+ meta = {
+ description = ''Elixir Library for Backblaze B2 Cloud Storage.'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/PerishableDave/blaze_cloud";
+ };
+ } // packageOverrides)
+ ) {};
+
+ blaze_cloud = blaze_cloud_0_0_1;
+
+ blazon_0_2_0 = callPackage
+ (
+ { buildMix, packageOverrides ? {}, fetchHex }:
+ buildMix ({
+ name = "blazon";
+ version = "0.2.0";
+ src = fetchHex {
+ pkg = "blazon";
+ version = "0.2.0";
+ sha256 =
+ "ef63180cafb9241602feb79155919e18eebd8da62e79544e4dae4273522f58c7";
+ };
+
+ meta = {
+ description = ''Declarative abstract serializers.'';
+ license = stdenv.lib.licenses.publicDomain;
+ homepage = "https://github.com/mtwilliams/blazon";
+ };
+ } // packageOverrides)
+ ) {};
+
+ blazon = blazon_0_2_0;
+
+ blockchain_info_0_0_2 = callPackage
+ (
+ {
+ buildMix,
+ packageOverrides ? {},
+ fetchHex,
+ poison_2_1_0,
+ httpoison_0_8_3
+ }:
+ buildMix ({
+ name = "blockchain_info";
+ version = "0.0.2";
+ src = fetchHex {
+ pkg = "blockchain_info";
+ version = "0.0.2";
+ sha256 =
+ "81593db73e409e008a785798ee7e5482d4274fd5e748e8d74f458c1e187e822b";
+ };
+ beamDeps = [ poison_2_1_0 httpoison_0_8_3 ];
+
+ meta = {
+ longDescription = ''WIP BlockchainInfo API wrapper for Elixir.
+ Provides access to bitcoin blockchain data.'';
+ license = stdenv.lib.licenses.mit;
+ homepage =
+ "https://github.com/cyberpunk-ventures/blockchain_info_ex";
+ };
+ } // packageOverrides)
+ ) {};
+
+ blockchain_info = blockchain_info_0_0_2;
+
blocking_queue_1_3_0 = callPackage
(
{ buildMix, packageOverrides ? {}, fetchHex }:
@@ -2781,17 +4149,77 @@ let
blocking_queue = blocking_queue_1_3_0;
- bloomex_1_0_0 = callPackage
+ bloodhound_0_1_1 = callPackage
+ (
+ {
+ buildMix,
+ packageOverrides ? {},
+ fetchHex,
+ poison_1_5_2,
+ httpoison_0_8_3
+ }:
+ buildMix ({
+ name = "bloodhound";
+ version = "0.1.1";
+ src = fetchHex {
+ pkg = "bloodhound";
+ version = "0.1.1";
+ sha256 =
+ "6aaab638fe90fc3714b650b659df774c7cdb12d098fee3910952e0a0f8fcd6ec";
+ };
+ beamDeps = [ poison_1_5_2 httpoison_0_8_3 ];
+
+ meta = {
+ description = ''An ElasticSearch library for Elixir that can be
+ easily integrated with Ecto'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/ianwalter/bloodhound";
+ };
+ } // packageOverrides)
+ ) {};
+
+ bloodhound = bloodhound_0_1_1;
+
+ bloom_filter_1_0_1 = callPackage
+ (
+ {
+ buildMix, packageOverrides ? {}, fetchHex, math_0_2_0, fnv_0_3_2
+ }:
+ buildMix ({
+ name = "bloom_filter";
+ version = "1.0.1";
+ src = fetchHex {
+ pkg = "bloom_filter";
+ version = "1.0.1";
+ sha256 =
+ "324d819a3901c0318e9cea51cc4a5555cc15ad6243c7150676e6e1b76d7aa081";
+ };
+ beamDeps = [ math_0_2_0 fnv_0_3_2 ];
+
+ meta = {
+ longDescription = ''Bloom Filter implementation in Elixir. Bloom
+ filters are probabilistic data structures
+ designed to efficiently tell you whether an
+ element is present in a set.'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/Leventhan/bloom_filter";
+ };
+ } // packageOverrides)
+ ) {};
+
+ bloom_filter = bloom_filter_1_0_1;
+
+ bloomex_1_0_1 = callPackage
(
{ buildMix, packageOverrides ? {}, fetchHex }:
buildMix ({
name = "bloomex";
- version = "1.0.0";
+ version = "1.0.1";
src = fetchHex {
pkg = "bloomex";
- version = "1.0.0";
+ version = "1.0.1";
sha256 =
- "598f414e8bb23054843430fff449861ce7d8f6a81a220cbfed8cf42dcd1dd299";
+ "2d8424142550f226043e4e6fc05c10552022dfb8f5fe3e5f131252c8da45f6e9";
};
meta = {
@@ -2803,7 +4231,29 @@ let
} // packageOverrides)
) {};
- bloomex = bloomex_1_0_0;
+ bloomex = bloomex_1_0_1;
+
+ blume_0_1_0 = callPackage
+ (
+ { buildRebar3, packageOverrides ? {}, fetchHex }:
+ buildRebar3 ({
+ name = "blume";
+ version = "0.1.0";
+ src = fetchHex {
+ pkg = "blume";
+ version = "0.1.0";
+ sha256 =
+ "8a87a43607d9dab1e3138052c18355bc1fc2a98bbcc4cb1657494c395aca0fd6";
+ };
+
+ meta = {
+ description = ''Pure erlang bloom Filters'';
+ license = stdenv.lib.licenses.free;
+ };
+ } // packageOverrides)
+ ) {};
+
+ blume = blume_0_1_0;
bmark_1_0_3 = callPackage
(
@@ -2829,17 +4279,41 @@ let
bmark = bmark_1_0_3;
- boltun_0_0_4 = callPackage
+ bmfont_0_0_1 = callPackage
+ (
+ { buildMix, packageOverrides ? {}, fetchHex, tonic_0_0_1 }:
+ buildMix ({
+ name = "bmfont";
+ version = "0.0.1";
+ src = fetchHex {
+ pkg = "bmfont";
+ version = "0.0.1";
+ sha256 =
+ "5b52d65c0345e64b2a72c54641593de19dcd33b0e8af6c80ebc29485a98bd279";
+ };
+ beamDeps = [ tonic_0_0_1 ];
+
+ meta = {
+ description = ''A BMFont file format parser'';
+ license = stdenv.lib.licenses.bsd2;
+ homepage = "https://github.com/ScrimpyCat/BMFontEx";
+ };
+ } // packageOverrides)
+ ) {};
+
+ bmfont = bmfont_0_0_1;
+
+ boltun_1_0_1 = callPackage
(
{ buildMix, packageOverrides ? {}, fetchHex, postgrex_0_11_1 }:
buildMix ({
name = "boltun";
- version = "0.0.4";
+ version = "1.0.1";
src = fetchHex {
pkg = "boltun";
- version = "0.0.4";
+ version = "1.0.1";
sha256 =
- "fcf18b4bfab0afcd1c31133c9c5232776ededd1fb3caa1536ded8265002ab867";
+ "4b787aa6cafedca1a3a35b40ca8fee944641b1577b18c4e9e8c234ffd728e8d9";
};
beamDeps = [ postgrex_0_11_1 ];
@@ -2848,24 +4322,137 @@ let
LISTEN/NOTIFY mechanism into callback
execution'';
license = stdenv.lib.licenses.isc;
- homepage = "https://github.com/briksoftware/boltun";
+ homepage = "https://github.com/bitgamma/boltun";
};
} // packageOverrides)
) {};
- boltun = boltun_0_0_4;
+ boltun = boltun_1_0_1;
- braise_0_3_2 = callPackage
+ bookingsync_api_client_v3_0_0_1 = callPackage
+ (
+ {
+ buildMix,
+ packageOverrides ? {},
+ fetchHex,
+ json_0_3_3,
+ httpotion_2_2_2
+ }:
+ buildMix ({
+ name = "bookingsync_api_client_v3";
+ version = "0.0.1";
+ src = fetchHex {
+ pkg = "bookingsync_api_client_v3";
+ version = "0.0.1";
+ sha256 =
+ "7f0625828f7c38dd37f5ea0f2054b5b902851dbc9679bd354bb928a1f66c5db0";
+ };
+ beamDeps = [ json_0_3_3 httpotion_2_2_2 ];
+
+ meta = {
+ longDescription = ''Elixir BookingSync
+ (https://www.bookingsync.com) API v3 client.
+ Find more at:
+ http://developers.bookingsync.com'';
+ license = stdenv.lib.licenses.mit;
+ homepage =
+ "https://github.com/Azdaroth/ex_bookingsync_api_client_v3";
+ };
+ } // packageOverrides)
+ ) {};
+
+ bookingsync_api_client_v3 = bookingsync_api_client_v3_0_0_1;
+
+ botan_0_1_2 = callPackage
+ (
+ {
+ buildMix,
+ packageOverrides ? {},
+ fetchHex,
+ poison_1_5_2,
+ httpoison_0_8_3
+ }:
+ buildMix ({
+ name = "botan";
+ version = "0.1.2";
+ src = fetchHex {
+ pkg = "botan";
+ version = "0.1.2";
+ sha256 =
+ "43541b5c52c91e46295a015f58857c347c85a7753d7c3cd3a1f835b25fdedaa9";
+ };
+ beamDeps = [ poison_1_5_2 httpoison_0_8_3 ];
+
+ meta = {
+ description = ''Elixir wrapper for Botan.io'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/mendab1e/exBotan";
+ };
+ } // packageOverrides)
+ ) {};
+
+ botan = botan_0_1_2;
+
+ bowfish_0_1_0 = callPackage
+ (
+ { buildMix, packageOverrides ? {}, fetchHex }:
+ buildMix ({
+ name = "bowfish";
+ version = "0.1.0";
+ src = fetchHex {
+ pkg = "bowfish";
+ version = "0.1.0";
+ sha256 =
+ "fcf3cccddd5d39adf5c5aceae924854d500f99bb45af97e118695db1cb633f67";
+ };
+
+ meta = {
+ longDescription = ''A fun, positional pipe operator macro >>> for
+ when piping to the first arg just won`t cut
+ it.'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/coconaut/bowfish";
+ };
+ } // packageOverrides)
+ ) {};
+
+ bowfish = bowfish_0_1_0;
+
+ braintree_0_5_0 = callPackage
+ (
+ { buildMix, packageOverrides ? {}, fetchHex, httpoison_0_8_3 }:
+ buildMix ({
+ name = "braintree";
+ version = "0.5.0";
+ src = fetchHex {
+ pkg = "braintree";
+ version = "0.5.0";
+ sha256 =
+ "9610f2c63e76732e733ee7a97d6971fb0698ae7425cb9b3faba83acfa8734fac";
+ };
+ beamDeps = [ httpoison_0_8_3 ];
+
+ meta = {
+ description = ''Native Braintree client library for Elixir'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/sorentwo/braintree-elixir";
+ };
+ } // packageOverrides)
+ ) {};
+
+ braintree = braintree_0_5_0;
+
+ braise_0_3_4 = callPackage
(
{ buildMix, packageOverrides ? {}, fetchHex, poison_1_3_1 }:
buildMix ({
name = "braise";
- version = "0.3.2";
+ version = "0.3.4";
src = fetchHex {
pkg = "braise";
- version = "0.3.2";
+ version = "0.3.4";
sha256 =
- "5efb63b074308be51d25b1f324799b8b715b5b025bfdbdd9a39972b36a7b957c";
+ "10325449af9365e886b2731a7709efded8e3443253c10c9af7a50fcfe5597707";
};
beamDeps = [ poison_1_3_1 ];
@@ -2878,7 +4465,7 @@ let
} // packageOverrides)
) {};
- braise = braise_0_3_2;
+ braise = braise_0_3_4;
brcpfcnpj_0_1_0 = callPackage
(
@@ -2907,7 +4494,7 @@ let
breadcrumble_1_0_3 = callPackage
(
- { buildMix, packageOverrides ? {}, fetchHex, plug_1_1_3 }:
+ { buildMix, packageOverrides ? {}, fetchHex, plug_1_1_5 }:
buildMix ({
name = "breadcrumble";
version = "1.0.3";
@@ -2917,7 +4504,7 @@ let
sha256 =
"f1d3ec0d3bf74670c58d4ff6c1d10cad0757c003b56ba9f77e3d76a05ac68be3";
};
- beamDeps = [ plug_1_1_3 ];
+ beamDeps = [ plug_1_1_5 ];
meta = {
description = ''Elixir port of Breadcrumble library'';
@@ -2952,17 +4539,47 @@ let
briefly = briefly_0_3_0;
- browser_0_1_2 = callPackage
+ brighterx_0_0_2 = callPackage
+ (
+ {
+ buildMix,
+ packageOverrides ? {},
+ fetchHex,
+ poison_1_5_2,
+ httpoison_0_8_3
+ }:
+ buildMix ({
+ name = "brighterx";
+ version = "0.0.2";
+ src = fetchHex {
+ pkg = "brighterx";
+ version = "0.0.2";
+ sha256 =
+ "f05d90a6e01e6244aa0adfc68e9a5c92bf2a3d740f3093929557c043fc6b87b8";
+ };
+ beamDeps = [ poison_1_5_2 httpoison_0_8_3 ];
+
+ meta = {
+ description = ''A simple brighterlink api implementation'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/Brightergy/brighterx";
+ };
+ } // packageOverrides)
+ ) {};
+
+ brighterx = brighterx_0_0_2;
+
+ browser_0_1_3 = callPackage
(
{ buildMix, packageOverrides ? {}, fetchHex }:
buildMix ({
name = "browser";
- version = "0.1.2";
+ version = "0.1.3";
src = fetchHex {
pkg = "browser";
- version = "0.1.2";
+ version = "0.1.3";
sha256 =
- "37919c96372654f687ee9d6645c50b8f6182baad589978326a00f671133446e7";
+ "e009b1af32a665393eb3e81b812e87f29f9e606426e30ae73507bf5c4c592af1";
};
meta = {
@@ -2973,7 +4590,7 @@ let
} // packageOverrides)
) {};
- browser = browser_0_1_2;
+ browser = browser_0_1_3;
bstr_0_3_0 = callPackage
(
@@ -3021,6 +4638,36 @@ let
buffer = buffer_0_3_6;
+ bugsnag_1_2_0 = callPackage
+ (
+ {
+ buildMix,
+ packageOverrides ? {},
+ fetchHex,
+ poison_1_5_2,
+ httpoison_0_8_3
+ }:
+ buildMix ({
+ name = "bugsnag";
+ version = "1.2.0";
+ src = fetchHex {
+ pkg = "bugsnag";
+ version = "1.2.0";
+ sha256 =
+ "23c6e8eb827ec1294684b5fe788d4d1cd670804ddfb74bb2bd427aed44a68f05";
+ };
+ beamDeps = [ poison_1_5_2 httpoison_0_8_3 ];
+
+ meta = {
+ description = ''An Elixir interface to the Bugsnag API'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/jarednorman/bugsnag-elixir";
+ };
+ } // packageOverrides)
+ ) {};
+
+ bugsnag = bugsnag_1_2_0;
+
build_client_0_0_1 = callPackage
(
{ buildMix, packageOverrides ? {}, fetchHex }:
@@ -3044,17 +4691,17 @@ let
build_client = build_client_0_0_1;
- bunt_0_1_5 = callPackage
+ bunt_0_1_6 = callPackage
(
{ buildMix, packageOverrides ? {}, fetchHex }:
buildMix ({
name = "bunt";
- version = "0.1.5";
+ version = "0.1.6";
src = fetchHex {
pkg = "bunt";
- version = "0.1.5";
+ version = "0.1.6";
sha256 =
- "5a365df70e90a021617d1bcf6dedada848176728c84a33b463e59fb0c9b8cc65";
+ "4fb7b2f7b04af13cf210b132f8d10db52d4a57d36cb974e8025d7fdb12ca97fc";
};
meta = {
@@ -3065,7 +4712,30 @@ let
} // packageOverrides)
) {};
- bunt = bunt_0_1_5;
+ bunt = bunt_0_1_6;
+
+ bus_bar_0_0_1 = callPackage
+ (
+ { buildMix, packageOverrides ? {}, fetchHex }:
+ buildMix ({
+ name = "bus_bar";
+ version = "0.0.1";
+ src = fetchHex {
+ pkg = "bus_bar";
+ version = "0.0.1";
+ sha256 =
+ "1781eebe238d7106cecaf947062684a0658033898282a4a0ab15f037a92ab985";
+ };
+
+ meta = {
+ description = ''A simple event bus.'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/JonRowe/busbar";
+ };
+ } // packageOverrides)
+ ) {};
+
+ bus_bar = bus_bar_0_0_1;
bypass_0_5_1 = callPackage
(
@@ -3073,7 +4743,7 @@ let
buildMix,
packageOverrides ? {},
fetchHex,
- plug_1_1_3,
+ plug_1_1_5,
cowboy_1_0_4
}:
buildMix ({
@@ -3085,7 +4755,7 @@ let
sha256 =
"bbff87f453cd98a81c9caeb305e5bcee25fe4fe31089cb19127a36dd224c2454";
};
- beamDeps = [ plug_1_1_3 cowboy_1_0_4 ];
+ beamDeps = [ plug_1_1_5 cowboy_1_0_4 ];
meta = {
longDescription = ''Bypass provides a quick way to create a
@@ -3104,18 +4774,21 @@ let
bypass = bypass_0_5_1;
- cachex_0_8_0 = callPackage
+ cachex_1_1_1 = callPackage
(
- { buildMix, packageOverrides ? {}, fetchHex }:
+ {
+ buildMix, packageOverrides ? {}, fetchHex, gen_delegate_1_0_0
+ }:
buildMix ({
name = "cachex";
- version = "0.8.0";
+ version = "1.1.1";
src = fetchHex {
pkg = "cachex";
- version = "0.8.0";
+ version = "1.1.1";
sha256 =
- "b6fa0414bc725a557fc73deed144b318831f2f4ed5f67e525da8972eb789059d";
+ "b9f179ee6f61cbaec9d4be604b0001ff035158923aa4d53b56de495ebf025683";
};
+ beamDeps = [ gen_delegate_1_0_0 ];
meta = {
description = ''Powerful in-memory key/value storage for
@@ -3126,13 +4799,11 @@ let
} // packageOverrides)
) {};
- cachex = cachex_0_8_0;
+ cachex = cachex_1_1_1;
calendar_0_12_4 = callPackage
(
- {
- buildMix, packageOverrides ? {}, fetchHex, tzdata_0_1_201603
- }:
+ { buildMix, packageOverrides ? {}, fetchHex, tzdata_0_0_1 }:
buildMix ({
name = "calendar";
version = "0.12.4";
@@ -3142,7 +4813,7 @@ let
sha256 =
"1df7cc23b7dfa3228498fff3bd298495d8431433be94db62a60e93ffa455a060";
};
- beamDeps = [ tzdata_0_1_201603 ];
+ beamDeps = [ tzdata_0_0_1 ];
meta = {
longDescription = ''Calendar is a datetime library for Elixir.
@@ -3163,9 +4834,7 @@ let
calendar_0_13_2 = callPackage
(
- {
- buildMix, packageOverrides ? {}, fetchHex, tzdata_0_1_201603
- }:
+ { buildMix, packageOverrides ? {}, fetchHex, tzdata_0_0_1 }:
buildMix ({
name = "calendar";
version = "0.13.2";
@@ -3175,7 +4844,7 @@ let
sha256 =
"5be3a69db1a177ed39d24d582ac7be3dab59ee8aeae41ee17c36a263a9818460";
};
- beamDeps = [ tzdata_0_1_201603 ];
+ beamDeps = [ tzdata_0_0_1 ];
meta = {
longDescription = ''Calendar is a datetime library for Elixir.
@@ -3194,32 +4863,37 @@ let
} // packageOverrides)
) {};
- calendar = calendar_0_13_2;
-
- calendar_translations_0_0_3 = callPackage
+ calendar_0_14_2 = callPackage
(
- { buildMix, packageOverrides ? {}, fetchHex, calendar_0_13_2 }:
+ { buildMix, packageOverrides ? {}, fetchHex, tzdata_0_0_1 }:
buildMix ({
- name = "calendar_translations";
- version = "0.0.3";
+ name = "calendar";
+ version = "0.14.2";
src = fetchHex {
- pkg = "calendar_translations";
- version = "0.0.3";
+ pkg = "calendar";
+ version = "0.14.2";
sha256 =
- "b232912959f7f645a34e1a6ceca4657156e64bb5db3573fbc61c603c648dcb09";
+ "8b76c5bcfbe77b454c4e38696ea0fb77d52fc212e377a4299884073012960f27";
};
- beamDeps = [ calendar_0_13_2 ];
+ beamDeps = [ tzdata_0_0_1 ];
meta = {
- description = ''Translations for the Calendar library.'';
+ longDescription = ''Calendar is a datetime library for Elixir.
+ Providing explicit types for datetimes, dates
+ and times. Full timezone support via its sister
+ package `tzdata`. Safe parsing and formatting of
+ standard formats (ISO, RFC, Unix, JS etc.) plus
+ strftime formatting. Easy and safe
+ interoperability with erlang style datetime
+ tuples. Extendable through protocols. Related
+ packages are available for i18n, Ecto and
+ Phoenix interoperability.'';
license = stdenv.lib.licenses.mit;
- homepage = "https://github.com/padde/calendar_translations";
+ homepage = "https://github.com/lau/calendar";
};
} // packageOverrides)
) {};
- calendar_translations = calendar_translations_0_0_3;
-
calliope_0_3_0 = callPackage
(
{ buildMix, packageOverrides ? {}, fetchHex }:
@@ -3241,7 +4915,93 @@ let
} // packageOverrides)
) {};
- calliope = calliope_0_3_0;
+ calliope_0_4_0 = callPackage
+ (
+ { buildMix, packageOverrides ? {}, fetchHex }:
+ buildMix ({
+ name = "calliope";
+ version = "0.4.0";
+ src = fetchHex {
+ pkg = "calliope";
+ version = "0.4.0";
+ sha256 =
+ "4b5d6c87da9f635e8596f9ebb63f51aa10c6884a1898b308219281c8a897ff3a";
+ };
+
+ meta = {
+ description = ''An Elixir library for parsing haml templates.'';
+ license = stdenv.lib.licenses.asl20;
+ homepage = "https://github.com/nurugger07/calliope";
+ };
+ } // packageOverrides)
+ ) {};
+
+ calliope = calliope_0_4_0;
+
+ campminder_0_1_0 = callPackage
+ (
+ {
+ buildMix,
+ packageOverrides ? {},
+ fetchHex,
+ timex_2_1_6,
+ poison_2_1_0,
+ httpoison_0_8_3,
+ hackney_1_6_0
+ }:
+ buildMix ({
+ name = "campminder";
+ version = "0.1.0";
+ src = fetchHex {
+ pkg = "campminder";
+ version = "0.1.0";
+ sha256 =
+ "bd54e1c20b5cf566f28a827bcc0e32adb4aaf86206f4d9f90415adee2e9e5189";
+ };
+ beamDeps = [
+ timex_2_1_6 poison_2_1_0 httpoison_0_8_3 hackney_1_6_0
+ ];
+
+ meta = {
+ description = ''A CampMinder API library for Elixir.'';
+ license = stdenv.lib.licenses.free;
+ homepage = "https://github.com/GimliLongBow/campminder-elixir";
+ };
+ } // packageOverrides)
+ ) {};
+
+ campminder = campminder_0_1_0;
+
+ cartel_0_6_0 = callPackage
+ (
+ {
+ buildMix,
+ packageOverrides ? {},
+ fetchHex,
+ poolboy_1_5_1,
+ httpotion_2_2_2,
+ poison_2_1_0
+ }:
+ buildMix ({
+ name = "cartel";
+ version = "0.6.0";
+ src = fetchHex {
+ pkg = "cartel";
+ version = "0.6.0";
+ sha256 =
+ "04615b867d257b6cb9a32da568666f9e490b80f020a069be38fe261a60734fb8";
+ };
+ beamDeps = [ poolboy_1_5_1 httpotion_2_2_2 poison_2_1_0 ];
+
+ meta = {
+ description = ''Multi platform, multi app push notifications'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/lucacorti/cartel";
+ };
+ } // packageOverrides)
+ ) {};
+
+ cartel = cartel_0_6_0;
cartographer_0_0_1 = callPackage
(
@@ -3266,30 +5026,140 @@ let
cartographer = cartographer_0_0_1;
- certifi_0_1_1 = callPackage
+ cassette_1_2_4 = callPackage
(
- { buildRebar3, packageOverrides ? {}, fetchHex }:
- buildRebar3 ({
- name = "certifi";
- version = "0.1.1";
+ {
+ buildMix,
+ packageOverrides ? {},
+ fetchHex,
+ exml_0_1_0,
+ httpoison_0_8_3
+ }:
+ buildMix ({
+ name = "cassette";
+ version = "1.2.4";
src = fetchHex {
- pkg = "certifi";
- version = "0.1.1";
+ pkg = "cassette";
+ version = "1.2.4";
sha256 =
- "e6d1dda48fad1b1c5b454c8402e2ac375ae12bf85a9910decaf791f330a7de29";
+ "945a595edbaeaab781910bba0defedda2c6fc40fc5b35fdd7214dfae8c375137";
};
-
- buildPlugins = [ rebar3_hex ];
-
+ beamDeps = [ exml_0_1_0 httpoison_0_8_3 ];
meta = {
- description = ''An OTP library'';
- license = stdenv.lib.licenses.bsd3;
- homepage = "https://github.com/certifi/erlang-certifi";
+ description = ''A CAS client and validation library'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/locaweb/elixir-cassette";
};
} // packageOverrides)
) {};
+ cassette = cassette_1_2_4;
+
+ cassette_plug_1_0_1 = callPackage
+ (
+ {
+ buildMix,
+ packageOverrides ? {},
+ fetchHex,
+ plug_1_1_5,
+ cassette_1_2_4
+ }:
+ buildMix ({
+ name = "cassette_plug";
+ version = "1.0.1";
+ src = fetchHex {
+ pkg = "cassette_plug";
+ version = "1.0.1";
+ sha256 =
+ "7c6ca0bacb3660efd1367b95c8a2d70e485e2842b9bfc87bdeb85c33882dc164";
+ };
+ beamDeps = [ plug_1_1_5 cassette_1_2_4 ];
+
+ meta = {
+ description = ''An auth Plug using Cassette'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/locaweb/cassette-plug";
+ };
+ } // packageOverrides)
+ ) {};
+
+ cassette_plug = cassette_plug_1_0_1;
+
+ caylir_0_2_0 = callPackage
+ (
+ {
+ buildMix,
+ packageOverrides ? {},
+ fetchHex,
+ poolboy_1_5_1,
+ poison_1_5_2,
+ hackney_1_6_0
+ }:
+ buildMix ({
+ name = "caylir";
+ version = "0.2.0";
+ src = fetchHex {
+ pkg = "caylir";
+ version = "0.2.0";
+ sha256 =
+ "b3699171f2bef699ce1968394cb2aee3b5ec7db529a395d8bf7d85163067f888";
+ };
+ beamDeps = [ poolboy_1_5_1 poison_1_5_2 hackney_1_6_0 ];
+
+ meta = {
+ description = ''Cayley driver for Elixir'';
+ license = stdenv.lib.licenses.asl20;
+ homepage = "https://github.com/mneudert/caylir";
+ };
+ } // packageOverrides)
+ ) {};
+
+ caylir = caylir_0_2_0;
+
+ cep_0_0_1 = callPackage
+ (
+ {
+ buildMix,
+ packageOverrides ? {},
+ fetchHex,
+ sweet_xml_0_6_1,
+ poolboy_1_5_1,
+ poison_2_1_0,
+ httpoison_0_8_3,
+ codepagex_0_1_2
+ }:
+ buildMix ({
+ name = "cep";
+ version = "0.0.1";
+ src = fetchHex {
+ pkg = "cep";
+ version = "0.0.1";
+ sha256 =
+ "f76e67e1d989fc2edbfbd265f79e4a33a0aa7f9ff06934a1f2d49903df72b79f";
+ };
+ beamDeps = [
+ sweet_xml_0_6_1
+ poolboy_1_5_1
+ poison_2_1_0
+ httpoison_0_8_3
+ codepagex_0_1_2
+ ];
+
+ meta = {
+ longDescription = ''A package to query Brazilian CEP codes. Has
+ support for multiple source APIs (Correios,
+ ViaCep, Postmon, etc). It can query one specific
+ source or query until one source returns a valid
+ result.'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/douglascamata/cep";
+ };
+ } // packageOverrides)
+ ) {};
+
+ cep = cep_0_0_1;
+
certifi_0_3_0 = callPackage
(
{ buildRebar3, packageOverrides ? {}, fetchHex }:
@@ -3399,17 +5269,17 @@ let
chacha20 = chacha20_0_3_2;
- changeset_0_2_1 = callPackage
+ changeset_0_2_2 = callPackage
(
{ buildMix, packageOverrides ? {}, fetchHex, defmemo_0_1_1 }:
buildMix ({
name = "changeset";
- version = "0.2.1";
+ version = "0.2.2";
src = fetchHex {
pkg = "changeset";
- version = "0.2.1";
+ version = "0.2.2";
sha256 =
- "b2ae6487630bcd2931f54331852f4d834dc1ae47687abc95fbc9194c15c55a5f";
+ "81aebf1c232620193fb4eab90962e4a69bbb84709fa4296bdc5593578d7d2758";
};
beamDeps = [ defmemo_0_1_1 ];
@@ -3422,7 +5292,7 @@ let
} // packageOverrides)
) {};
- changeset = changeset_0_2_1;
+ changeset = changeset_0_2_2;
changex_0_1_1 = callPackage
(
@@ -3440,7 +5310,7 @@ let
meta = {
description = ''Automatically generate a CHANGELOG.md file based
on git commit history. '';
- license = stdenv.lib.licenses.free;
+ license = stdenv.lib.licenses.mit;
homepage = "https://github.com/Gazler/changex";
};
} // packageOverrides)
@@ -3448,13 +5318,45 @@ let
changex = changex_0_1_1;
+ chaos_spawn_0_7_0 = callPackage
+ (
+ {
+ buildMix,
+ packageOverrides ? {},
+ fetchHex,
+ timex_0_19_5,
+ exactor_2_2_0
+ }:
+ buildMix ({
+ name = "chaos_spawn";
+ version = "0.7.0";
+ src = fetchHex {
+ pkg = "chaos_spawn";
+ version = "0.7.0";
+ sha256 =
+ "c4c8e985e750706fb4351d6eb036b513a4b7ea3e689a9aecd424251991f21eaa";
+ };
+ beamDeps = [ timex_0_19_5 exactor_2_2_0 ];
+
+ meta = {
+ longDescription = ''Providing tools to randomly kill proceses.
+ With the goal of creating robust supevision
+ trees.'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/meadsteve/chaos-spawn";
+ };
+ } // packageOverrides)
+ ) {};
+
+ chaos_spawn = chaos_spawn_0_7_0;
+
chartkick_0_0_2 = callPackage
(
{
buildMix,
packageOverrides ? {},
fetchHex,
- uuid_1_1_3,
+ uuid_1_1_4,
poison_1_5_2
}:
buildMix ({
@@ -3466,7 +5368,7 @@ let
sha256 =
"6a4f4170b162117f3be9d0a9d98b63b58da8ec2cea4e29155d14441a0b12ac6c";
};
- beamDeps = [ uuid_1_1_3 poison_1_5_2 ];
+ beamDeps = [ uuid_1_1_4 poison_1_5_2 ];
meta = { };
} // packageOverrides)
@@ -3497,6 +5399,33 @@ let
chash = chash_0_1_1;
+ chinese_translation_0_1_0 = callPackage
+ (
+ { buildMix, packageOverrides ? {}, fetchHex, httpoison_0_8_3 }:
+ buildMix ({
+ name = "chinese_translation";
+ version = "0.1.0";
+ src = fetchHex {
+ pkg = "chinese_translation";
+ version = "0.1.0";
+ sha256 =
+ "d5e4f59421bad59e465322ce7a8f366179e5f6a732d7e06435e8a7c01f42e7ab";
+ };
+ beamDeps = [ httpoison_0_8_3 ];
+
+ meta = {
+ longDescription = ''ChineseTranslation provides traditional
+ chinese <-> simplified chinese translation, as
+ well as pinyin translation and slugify for
+ chinese phrases/characters. '';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/tyrchen/chinese_translation";
+ };
+ } // packageOverrides)
+ ) {};
+
+ chinese_translation = chinese_translation_0_1_0;
+
chronos_0_3_9 = callPackage
(
{ buildMix, packageOverrides ? {}, fetchHex }:
@@ -3595,34 +5524,6 @@ let
cidr = cidr_1_0_0;
- cipher_0_1_0 = callPackage
- (
- { buildMix, packageOverrides ? {}, fetchHex }:
- buildMix ({
- name = "cipher";
- version = "0.1.0";
- src = fetchHex {
- pkg = "cipher";
- version = "0.1.0";
- sha256 =
- "f70300294a15cc9db597f2c5f2251e87572cf701a6fe4e2981420fc902e640e5";
- };
-
- meta = {
- longDescription = ''Elixir crypto library to encrypt/decrypt
- arbitrary binaries. It uses Erlang Crypto, so
- it`s not big deal. Mostly a collection of
- helpers wrapping it. It allows to use a crypted
- key to validate signed requests. The exact same
- cipher is implemented for Python, Ruby and
- Elixir, so it can be used to integrate apps from
- different languages.'';
- license = stdenv.lib.licenses.mit;
- homepage = "https://github.com/rubencaro/cipher";
- };
- } // packageOverrides)
- ) {};
-
cirru_parser_0_0_1 = callPackage
(
{ buildMix, packageOverrides ? {}, fetchHex }:
@@ -3677,6 +5578,44 @@ let
ckan = ckan_0_0_2;
+ clicksign_0_0_2 = callPackage
+ (
+ {
+ buildMix,
+ packageOverrides ? {},
+ fetchHex,
+ plug_1_1_5,
+ httpoison_0_8_3,
+ exjsx_3_2_0,
+ cowboy_1_0_4,
+ bypass_0_5_1
+ }:
+ buildMix ({
+ name = "clicksign";
+ version = "0.0.2";
+ src = fetchHex {
+ pkg = "clicksign";
+ version = "0.0.2";
+ sha256 =
+ "e6e9335c86298d5d5af6c18b85f3533554eca74d6129e1aea7dae17849b48ed2";
+ };
+ beamDeps = [
+ plug_1_1_5
+ httpoison_0_8_3
+ exjsx_3_2_0
+ cowboy_1_0_4
+ bypass_0_5_1
+ ];
+
+ meta = {
+ description = ''Clicksign client'';
+
+ };
+ } // packageOverrides)
+ ) {};
+
+ clicksign = clicksign_0_0_2;
+
clint_0_0_1 = callPackage
(
{
@@ -3759,6 +5698,129 @@ let
close_enough = close_enough_0_0_1;
+ cloudex_0_0_2 = callPackage
+ (
+ {
+ buildMix,
+ packageOverrides ? {},
+ fetchHex,
+ tzdata_0_5_8,
+ timex_0_19_5,
+ poison_1_5_2,
+ httpoison_0_8_3
+ }:
+ buildMix ({
+ name = "cloudex";
+ version = "0.0.2";
+ src = fetchHex {
+ pkg = "cloudex";
+ version = "0.0.2";
+ sha256 =
+ "eb424a8e6610de6f7a2f2be074937c571a86d11e4b942d2ea39900855a66b306";
+ };
+ beamDeps = [
+ tzdata_0_5_8 timex_0_19_5 poison_1_5_2 httpoison_0_8_3
+ ];
+
+ meta = {
+ longDescription = ''A library that helps with uploading image
+ files and urls to cloudinary. Also provides an
+ helper to generate transformations and
+ cloudinary urls pointing to your images'';
+ license = stdenv.lib.licenses.wtfpl;
+ homepage = "https://github.com/smeevil/cloudex";
+ };
+ } // packageOverrides)
+ ) {};
+
+ cloudex = cloudex_0_0_2;
+
+ cloudinary_0_0_2 = callPackage
+ (
+ {
+ buildMix,
+ packageOverrides ? {},
+ fetchHex,
+ poison_1_4_0,
+ httpoison_0_8_3
+ }:
+ buildMix ({
+ name = "cloudinary";
+ version = "0.0.2";
+ src = fetchHex {
+ pkg = "cloudinary";
+ version = "0.0.2";
+ sha256 =
+ "9e32b21717b193f90a526203725811b96294d7c88391e5ad4a57bf178678cc4c";
+ };
+ beamDeps = [ poison_1_4_0 httpoison_0_8_3 ];
+
+ meta = {
+ description = ''Library to upload to Cloudinary'';
+ license = stdenv.lib.licenses.mit;
+ };
+ } // packageOverrides)
+ ) {};
+
+ cloudinary = cloudinary_0_0_2;
+
+ cloudinaryex_0_0_2 = callPackage
+ (
+ {
+ buildMix,
+ packageOverrides ? {},
+ fetchHex,
+ timex_1_0_2,
+ poison_1_5_2,
+ httpoison_0_8_3
+ }:
+ buildMix ({
+ name = "cloudinaryex";
+ version = "0.0.2";
+ src = fetchHex {
+ pkg = "cloudinaryex";
+ version = "0.0.2";
+ sha256 =
+ "31518baacfcca428e30ee8f1c411d76568344e7032ed93cf34535e279c8472fc";
+ };
+ beamDeps = [ timex_1_0_2 poison_1_5_2 httpoison_0_8_3 ];
+
+ meta = {
+ description = ''A library for connecting with Cloudinary in
+ Elixir'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/micahwedemeyer/cloudinaryex";
+ };
+ } // packageOverrides)
+ ) {};
+
+ cloudinaryex = cloudinaryex_0_0_2;
+
+ cmark_0_6_10 = callPackage
+ (
+ { buildMix, packageOverrides ? {}, fetchHex }:
+ buildMix ({
+ name = "cmark";
+ version = "0.6.10";
+ src = fetchHex {
+ pkg = "cmark";
+ version = "0.6.10";
+ sha256 =
+ "df6dd77f8fe0774b6e4cdedcadef56c1c7cb478c6aaed7445535ec87dba3a608";
+ };
+
+ meta = {
+ longDescription = ''Elixir NIF for cmark (C), a parser library
+ following the CommonMark spec, a compatible
+ implementation of Markdown.'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/asaaki/cmark.ex";
+ };
+ } // packageOverrides)
+ ) {};
+
+ cmark = cmark_0_6_10;
+
cobertura_cover_0_9_0 = callPackage
(
{ buildMix, packageOverrides ? {}, fetchHex }:
@@ -3834,6 +5896,40 @@ let
coffee_rotor = coffee_rotor_0_2_1;
+ coincap_io_0_0_2 = callPackage
+ (
+ {
+ buildMix,
+ packageOverrides ? {},
+ fetchHex,
+ poison_2_1_0,
+ httpoison_0_8_3,
+ exconstructor_1_0_2
+ }:
+ buildMix ({
+ name = "coincap_io";
+ version = "0.0.2";
+ src = fetchHex {
+ pkg = "coincap_io";
+ version = "0.0.2";
+ sha256 =
+ "23492902655cfff97d9988278dc1478562e236be631608a50d4d47106f132664";
+ };
+ beamDeps = [ poison_2_1_0 httpoison_0_8_3 exconstructor_1_0_2 ];
+
+ meta = {
+ longDescription = ''WIP, unstable Elixir API wrapper for
+ coincap.io. Provides access to market
+ capitalization data of bitcoin, altcoins and
+ cryptotokens.'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/cyberpunk-ventures/coincap_io_ex";
+ };
+ } // packageOverrides)
+ ) {};
+
+ coincap_io = coincap_io_0_0_2;
+
colixir_0_0_1 = callPackage
(
{ buildMix, packageOverrides ? {}, fetchHex }:
@@ -4019,11 +6115,125 @@ let
} // packageOverrides)
) {};
- combine = combine_0_7_0;
+ combine_0_8_0 = callPackage
+ (
+ { buildMix, packageOverrides ? {}, fetchHex }:
+ buildMix ({
+ name = "combine";
+ version = "0.8.0";
+ src = fetchHex {
+ pkg = "combine";
+ version = "0.8.0";
+ sha256 =
+ "3adc5354d03ef96bc494850e5014e11150ddf16b3feee9ff3292a0da55f64301";
+ };
+
+ meta = {
+ description = ''A parser combinator library for Elixir
+ projects.'';
+ license = stdenv.lib.licenses.mit;
+ };
+ } // packageOverrides)
+ ) {};
+
+ combine = combine_0_8_0;
+
+ comeonin_1_6_0 = callPackage
+ (
+ {
+ buildMix, packageOverrides ? {}, fetchHex, comeonin_i18n_0_1_3
+ }:
+ buildMix ({
+ name = "comeonin";
+ version = "1.6.0";
+ src = fetchHex {
+ pkg = "comeonin";
+ version = "1.6.0";
+ sha256 =
+ "40dd0da2c33696d19515888fd86b9ffdcad92d49e9a6b3b13df98e824897a1b1";
+ };
+ beamDeps = [ comeonin_i18n_0_1_3 ];
+
+ meta = {
+ description = ''Password hashing (bcrypt, pbkdf2_sha512) library
+ for Elixir.'';
+ license = stdenv.lib.licenses.bsd3;
+ homepage = "https://github.com/elixircnx/comeonin";
+ };
+ } // packageOverrides)
+ ) {};
+
+ comeonin_2_0_3 = callPackage
+ (
+ { buildMix, packageOverrides ? {}, fetchHex }:
+ buildMix ({
+ name = "comeonin";
+ version = "2.0.3";
+ src = fetchHex {
+ pkg = "comeonin";
+ version = "2.0.3";
+ sha256 =
+ "a9a6f87107ebf6898adeca7130adb1b9e421c1be7e8b30b13ac1e0354ea15198";
+ };
+
+ meta = {
+ description = ''Password hashing (bcrypt, pbkdf2_sha512) library
+ for Elixir.'';
+ license = stdenv.lib.licenses.bsd3;
+ homepage = "https://github.com/elixircnx/comeonin";
+ };
+ } // packageOverrides)
+ ) {};
+
+ comeonin_2_1_1 = callPackage
+ (
+ { buildMix, packageOverrides ? {}, fetchHex }:
+ buildMix ({
+ name = "comeonin";
+ version = "2.1.1";
+ src = fetchHex {
+ pkg = "comeonin";
+ version = "2.1.1";
+ sha256 =
+ "7f85774ae5d453f664d0e7809cc1ab32ff22855d16ff6a2edd68c6d36cb1a1aa";
+ };
+
+ meta = {
+ description = ''Password hashing (bcrypt, pbkdf2_sha512) library
+ for Elixir.'';
+ license = stdenv.lib.licenses.bsd3;
+ homepage = "https://github.com/elixircnx/comeonin";
+ };
+ } // packageOverrides)
+ ) {};
+
+ comeonin_2_4_0 = callPackage
+ (
+ { buildMix, packageOverrides ? {}, fetchHex }:
+ buildMix ({
+ name = "comeonin";
+ version = "2.4.0";
+ src = fetchHex {
+ pkg = "comeonin";
+ version = "2.4.0";
+ sha256 =
+ "b326290a3143fdf4847a735f272ebd16d15216e97e968266a7b24125af4620be";
+ };
+
+ meta = {
+ description = ''Password hashing (bcrypt, pbkdf2_sha512) library
+ for Elixir.'';
+ license = stdenv.lib.licenses.bsd3;
+ homepage = "https://github.com/elixircnx/comeonin";
+ };
+ } // packageOverrides)
+ ) {};
+
+ comeonin = comeonin_2_4_0;
comeonin_i18n_0_1_3 = callPackage
(
- { buildMix, packageOverrides ? {}, fetchHex, gettext_0_10_0 }:
+ { buildMix, packageOverrides ? {}, fetchHex, gettext_0_11_0 }:
buildMix ({
name = "comeonin_i18n";
version = "0.1.3";
@@ -4033,7 +6243,7 @@ let
sha256 =
"4b45ca5af3cbf20bf7d3f7e874629041a2a921ad5a62ca9b94546a1e559023a6";
};
- beamDeps = [ gettext_0_10_0 ];
+ beamDeps = [ gettext_0_11_0 ];
meta = {
description = ''Internationalization support for the Comeonin
@@ -4046,6 +6256,29 @@ let
comeonin_i18n = comeonin_i18n_0_1_3;
+ commander_0_1_4 = callPackage
+ (
+ { buildMix, packageOverrides ? {}, fetchHex }:
+ buildMix ({
+ name = "commander";
+ version = "0.1.4";
+ src = fetchHex {
+ pkg = "commander";
+ version = "0.1.4";
+ sha256 =
+ "091cd4de551771fed7eb258dbf1918875822896d44a730414fc6ac268e9ad3e4";
+ };
+
+ meta = {
+ description = ''A macro library to help create telegram bot'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/carlo-colombo/commander";
+ };
+ } // packageOverrides)
+ ) {};
+
+ commander = commander_0_1_4;
+
complex_0_2_0 = callPackage
(
{
@@ -4077,6 +6310,31 @@ let
complex = complex_0_2_0;
+ comredis_1_0_1 = callPackage
+ (
+ { buildMix, packageOverrides ? {}, fetchHex, poison_2_1_0 }:
+ buildMix ({
+ name = "comredis";
+ version = "1.0.1";
+ src = fetchHex {
+ pkg = "comredis";
+ version = "1.0.1";
+ sha256 =
+ "03aa3a9235f39c666854027b88915b9f256c357ce6e0a493da54d6dec7b3a207";
+ };
+ beamDeps = [ poison_2_1_0 ];
+
+ meta = {
+ description = ''Comredis is your comrade for Redis command
+ generation in Elixir.'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/iurifq/comredis";
+ };
+ } // packageOverrides)
+ ) {};
+
+ comredis = comredis_1_0_1;
+
con_cache_0_11_0 = callPackage
(
{ buildMix, packageOverrides ? {}, fetchHex, exactor_2_2_0 }:
@@ -4127,6 +6385,29 @@ let
} // packageOverrides)
) {};
+ concerto_0_1_4 = callPackage
+ (
+ { buildMix, packageOverrides ? {}, fetchHex }:
+ buildMix ({
+ name = "concerto";
+ version = "0.1.4";
+ src = fetchHex {
+ pkg = "concerto";
+ version = "0.1.4";
+ sha256 =
+ "3c8337ecc810f8812ab9dec8a63b4aa8feaed6142b24acbb89ad7938481ae912";
+ };
+
+ meta = {
+ description = ''file-based routing library for elixir'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/exstruct/concerto";
+ };
+ } // packageOverrides)
+ ) {};
+
+ concerto = concerto_0_1_4;
+
config_values_1_0_0 = callPackage
(
{ buildMix, packageOverrides ? {}, fetchHex }:
@@ -4174,125 +6455,6 @@ let
configparser_ex = configparser_ex_0_2_1;
- conform_0_16_0 = callPackage
- (
- { buildMix, packageOverrides ? {}, fetchHex, neotoma_1_7_3 }:
- buildMix ({
- name = "conform";
- version = "0.16.0";
- src = fetchHex {
- pkg = "conform";
- version = "0.16.0";
- sha256 =
- "4d510e428fe05d7b505cefca66359bb4700aa7b68189624f5ba4cd1c22b5bf1a";
- };
- beamDeps = [ neotoma_1_7_3 ];
-
- meta = {
- description = ''Easy release configuration for Elixir apps.'';
- license = stdenv.lib.licenses.mit;
- homepage = "https://github.com/bitwalker/conform";
- };
- } // packageOverrides)
- ) {};
-
- conform_1_0_0_rc8 = callPackage
- (
- { buildMix, packageOverrides ? {}, fetchHex, neotoma_1_7_3 }:
- buildMix ({
- name = "conform";
- version = "1.0.0-rc8";
- src = fetchHex {
- pkg = "conform";
- version = "1.0.0-rc8";
- sha256 =
- "0177ab7eaf0f66372df9aadd1d4e198e205b76f561be0e26f6a52ca6adcadf80";
- };
- beamDeps = [ neotoma_1_7_3 ];
-
- meta = {
- description = ''Easy release configuration for Elixir apps.'';
- license = stdenv.lib.licenses.mit;
- homepage = "https://github.com/bitwalker/conform";
- };
- } // packageOverrides)
- ) {};
-
- conform_2_0_0 = callPackage
- (
- { buildMix, packageOverrides ? {}, fetchHex, neotoma_1_7_3 }:
- buildMix ({
- name = "conform";
- version = "2.0.0";
- src = fetchHex {
- pkg = "conform";
- version = "2.0.0";
- sha256 =
- "2a3bc36dd50363778c0cb2f13026d65b5e4c919abf91be21c1a51c480c723403";
- };
- beamDeps = [ neotoma_1_7_3 ];
-
- meta = {
- description = ''Easy release configuration for Elixir apps.'';
- license = stdenv.lib.licenses.mit;
- homepage = "https://github.com/bitwalker/conform";
- };
- } // packageOverrides)
- ) {};
-
- conform = conform_2_0_0;
-
- conform_exrm_1_0_0 = callPackage
- (
- {
- buildMix,
- packageOverrides ? {},
- fetchHex,
- exrm_1_0_3,
- conform_2_0_0
- }:
- buildMix ({
- name = "conform_exrm";
- version = "1.0.0";
- src = fetchHex {
- pkg = "conform_exrm";
- version = "1.0.0";
- sha256 =
- "acf8eb831b0f8573a92694da4d3b513f551b8d854a8c4670c560379ae5c0f2fd";
- };
- beamDeps = [ exrm_1_0_3 conform_2_0_0 ];
-
- meta = {
- description = ''Conform plugin for ExRM'';
- license = stdenv.lib.licenses.mit;
- homepage = "https://github.com/bitwalker/conform_exrm";
- };
- } // packageOverrides)
- ) {};
-
- conform_exrm = conform_exrm_1_0_0;
-
- connection_1_0_0_rc_1 = callPackage
- (
- { buildMix, packageOverrides ? {}, fetchHex }:
- buildMix ({
- name = "connection";
- version = "1.0.0-rc.1";
- src = fetchHex {
- pkg = "connection";
- version = "1.0.0-rc.1";
- sha256 =
- "915a998f7bf30013611bf3cfc778b0d8ff163a968bd7604e7021aca272136a48";
- };
-
- meta = {
- description = ''Connection behaviour for connection processes'';
- license = stdenv.lib.licenses.asl20;
- homepage = "https://github.com/fishcakez/connection";
- };
- } // packageOverrides)
- ) {};
-
connection_1_0_2 = callPackage
(
{ buildMix, packageOverrides ? {}, fetchHex }:
@@ -4371,6 +6533,36 @@ let
console_tree = console_tree_0_0_1;
+ consolex_0_1_0 = callPackage
+ (
+ {
+ buildMix,
+ packageOverrides ? {},
+ fetchHex,
+ exjsx_3_2_0,
+ cowboy_1_0_4
+ }:
+ buildMix ({
+ name = "consolex";
+ version = "0.1.0";
+ src = fetchHex {
+ pkg = "consolex";
+ version = "0.1.0";
+ sha256 =
+ "d258becb7d14295e4df337ca1f5466de55c54d0be2761b9a93003814427c0ec1";
+ };
+ beamDeps = [ exjsx_3_2_0 cowboy_1_0_4 ];
+
+ meta = {
+ description = ''An IEx web console'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/sivsushruth/consolex";
+ };
+ } // packageOverrides)
+ ) {};
+
+ consolex = consolex_0_1_0;
+
control_0_0_4 = callPackage
(
{ buildMix, packageOverrides ? {}, fetchHex }:
@@ -4419,25 +6611,49 @@ let
convertat = convertat_1_1_0;
- cors_plug_1_1_1 = callPackage
+ core_data_0_1_0 = callPackage
+ (
+ { buildMix, packageOverrides ? {}, fetchHex, floki_0_1_1 }:
+ buildMix ({
+ name = "core_data";
+ version = "0.1.0";
+ src = fetchHex {
+ pkg = "core_data";
+ version = "0.1.0";
+ sha256 =
+ "09b308a42f0697053c68f253e7f687c0f6b5f96bb1b114a7b1852c5b6804122e";
+ };
+ beamDeps = [ floki_0_1_1 ];
+
+ meta = {
+ description = ''iOS Core Data parser'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/evolet-project/core_data";
+ };
+ } // packageOverrides)
+ ) {};
+
+ core_data = core_data_0_1_0;
+
+ cors_plug_1_1_2 = callPackage
(
{
buildMix,
packageOverrides ? {},
fetchHex,
- plug_1_1_3,
+ plug_1_1_5,
cowboy_1_0_4
}:
buildMix ({
name = "cors_plug";
- version = "1.1.1";
+ version = "1.1.2";
src = fetchHex {
pkg = "cors_plug";
- version = "1.1.1";
+ version = "1.1.2";
sha256 =
- "12300007530a014c32f6dfe71a1775d1b39dd43fd7b35697574ab7d78c5e629c";
+ "2604f8352d3c072a8fd94dd1b6ed076b74f0952710c4a58269ffea56bfb6b2a7";
};
- beamDeps = [ plug_1_1_3 cowboy_1_0_4 ];
+ beamDeps = [ plug_1_1_5 cowboy_1_0_4 ];
meta = {
longDescription = ''An elixir plug that adds CORS headers to
@@ -4449,27 +6665,27 @@ let
} // packageOverrides)
) {};
- cors_plug = cors_plug_1_1_1;
+ cors_plug = cors_plug_1_1_2;
- corsica_0_4_1 = callPackage
+ corsica_0_4_2 = callPackage
(
{
buildMix,
packageOverrides ? {},
fetchHex,
- plug_1_1_3,
+ plug_1_1_5,
cowboy_1_0_4
}:
buildMix ({
name = "corsica";
- version = "0.4.1";
+ version = "0.4.2";
src = fetchHex {
pkg = "corsica";
- version = "0.4.1";
+ version = "0.4.2";
sha256 =
- "718b95d067cba24563b6fcc5ac64ced304c71323df3c0abe58351054125f964d";
+ "6a06d3ffb4395cec11f253618d6411db4b14edb6e76e700abc757722deaf0f8d";
};
- beamDeps = [ plug_1_1_3 cowboy_1_0_4 ];
+ beamDeps = [ plug_1_1_5 cowboy_1_0_4 ];
meta = {
description = ''Plug-based swiss-army knife for CORS requests.'';
@@ -4479,7 +6695,7 @@ let
} // packageOverrides)
) {};
- corsica = corsica_0_4_1;
+ corsica = corsica_0_4_2;
couch_factory_0_1_1 = callPackage
(
@@ -4505,6 +6721,36 @@ let
couch_factory = couch_factory_0_1_1;
+ couchbeam_1_3_0 = callPackage
+ (
+ {
+ buildMix,
+ packageOverrides ? {},
+ fetchHex,
+ jsx_2_8_0,
+ hackney_1_5_7
+ }:
+ buildMix ({
+ name = "couchbeam";
+ version = "1.3.0";
+ src = fetchHex {
+ pkg = "couchbeam";
+ version = "1.3.0";
+ sha256 =
+ "5d94bfc80532999e4f8e7f5da3abff74fbf3b59d5e02e0a99eb0dc3697c97a50";
+ };
+ beamDeps = [ jsx_2_8_0 hackney_1_5_7 ];
+
+ meta = {
+ description = ''Erlang CouchDB client'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/benoitc/couchbeam";
+ };
+ } // packageOverrides)
+ ) {};
+
+ couchbeam = couchbeam_1_3_0;
+
couchex_0_6_0 = callPackage
(
{ buildMix, packageOverrides ? {}, fetchHex }:
@@ -4584,6 +6830,29 @@ let
courier = courier_0_0_3;
+ cowbell_0_1_0 = callPackage
+ (
+ { buildRebar3, packageOverrides ? {}, fetchHex }:
+ buildRebar3 ({
+ name = "cowbell";
+ version = "0.1.0";
+ src = fetchHex {
+ pkg = "cowbell";
+ version = "0.1.0";
+ sha256 =
+ "8a75f73afd29421150cc4dbe2993b5a2a7e3fe5fa5628a06ddb22adc2c36c998";
+ };
+
+ meta = {
+ description = ''A node connection manager.'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/ostinelli/cowbell";
+ };
+ } // packageOverrides)
+ ) {};
+
+ cowbell = cowbell_0_1_0;
+
cowboy_1_0_4 = callPackage
(
{
@@ -4730,17 +6999,17 @@ let
cowsay = cowsay_0_0_1;
- cqex_0_1_4 = callPackage
+ cqex_0_2_0 = callPackage
(
{ buildMix, packageOverrides ? {}, fetchHex }:
buildMix ({
name = "cqex";
- version = "0.1.4";
+ version = "0.2.0";
src = fetchHex {
pkg = "cqex";
- version = "0.1.4";
+ version = "0.2.0";
sha256 =
- "3c6a461605cc7e664178e6343cb585aa8c453831bb4447519007fcfe39697328";
+ "2180cb8083d38765bd3912f128b603826686300aef6f61adf9dc89fde3bb5429";
};
meta = {
@@ -4751,7 +7020,157 @@ let
} // packageOverrides)
) {};
- cqex = cqex_0_1_4;
+ cqex = cqex_0_2_0;
+
+ cqrs_0_0_7 = callPackage
+ (
+ {
+ buildMix,
+ packageOverrides ? {},
+ fetchHex,
+ cqrs_events_0_0_4,
+ cqrs_commands_0_0_6
+ }:
+ buildMix ({
+ name = "cqrs";
+ version = "0.0.7";
+ src = fetchHex {
+ pkg = "cqrs";
+ version = "0.0.7";
+ sha256 =
+ "feb8f5b6e8bb0a7bbc622ad6b0b518e218d3adfad6ef55b16d531c992240c41f";
+ };
+ beamDeps = [ cqrs_events_0_0_4 cqrs_commands_0_0_6 ];
+
+ meta = {
+ description = ''This is not production ready yet but I want your
+ feedback.'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/amberbit/cqrs_commands";
+ };
+ } // packageOverrides)
+ ) {};
+
+ cqrs = cqrs_0_0_7;
+
+ cqrs_commands_0_0_6 = callPackage
+ (
+ {
+ buildMix,
+ packageOverrides ? {},
+ fetchHex,
+ vex_0_5_5,
+ uuid_1_1_4,
+ poison_2_0_1,
+ plug_1_1_5,
+ exconstructor_1_0_2
+ }:
+ buildMix ({
+ name = "cqrs_commands";
+ version = "0.0.6";
+ src = fetchHex {
+ pkg = "cqrs_commands";
+ version = "0.0.6";
+ sha256 =
+ "3bc8419a057daf10db5a0a8895d7b917948e6e901f3e8286163f829b2f5652f3";
+ };
+ beamDeps = [
+ vex_0_5_5
+ uuid_1_1_4
+ poison_2_0_1
+ plug_1_1_5
+ exconstructor_1_0_2
+ ];
+
+ meta = {
+ description = ''This is not production ready yet but I want your
+ feedback.'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/amberbit/cqrs_commands";
+ };
+ } // packageOverrides)
+ ) {};
+
+ cqrs_commands = cqrs_commands_0_0_6;
+
+ cqrs_events_0_0_4 = callPackage
+ (
+ {
+ buildMix,
+ packageOverrides ? {},
+ fetchHex,
+ syn_1_4_0,
+ poison_2_0_1,
+ moebius_2_0_1
+ }:
+ buildMix ({
+ name = "cqrs_events";
+ version = "0.0.4";
+ src = fetchHex {
+ pkg = "cqrs_events";
+ version = "0.0.4";
+ sha256 =
+ "21c5ee4b8b814abf7ced3c88069511dd1a9a5c1c16a17c175228bfe5a9e4b7f8";
+ };
+ beamDeps = [ syn_1_4_0 poison_2_0_1 moebius_2_0_1 ];
+
+ meta = {
+ description = ''This is not production ready yet but I want your
+ feedback.'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/amberbit/cqrs_commands";
+ };
+ } // packageOverrides)
+ ) {};
+
+ cqrs_events = cqrs_events_0_0_4;
+
+ crazy_pants_0_0_1 = callPackage
+ (
+ { buildMix, packageOverrides ? {}, fetchHex }:
+ buildMix ({
+ name = "crazy_pants";
+ version = "0.0.1";
+ src = fetchHex {
+ pkg = "crazy_pants";
+ version = "0.0.1";
+ sha256 =
+ "46e50adccb0d858e5a540c834d4e358ffa43ed9cdcac20ae36569fc7eaffa532";
+ };
+
+ meta = {
+ description = ''These pretzels are making me thirsty'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/whodat/crazy_pants";
+ };
+ } // packageOverrides)
+ ) {};
+
+ crazy_pants = crazy_pants_0_0_1;
+
+ crc_0_4_0 = callPackage
+ (
+ { buildMix, packageOverrides ? {}, fetchHex }:
+ buildMix ({
+ name = "crc";
+ version = "0.4.0";
+ src = fetchHex {
+ pkg = "crc";
+ version = "0.4.0";
+ sha256 =
+ "4f0d872d46faea966aeb687158b7e02bfc61c49c4f2fb33f5e52e3d167f4faeb";
+ };
+
+ meta = {
+ description = ''A library used to calculate CRC checksums for
+ binary data'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/TattdCodeMonkey/crc";
+ };
+ } // packageOverrides)
+ ) {};
+
+ crc = crc_0_4_0;
credit_card_1_0_0 = callPackage
(
@@ -4776,19 +7195,19 @@ let
credit_card = credit_card_1_0_0;
- credo_0_3_10 = callPackage
+ credo_0_4_3 = callPackage
(
- { buildMix, packageOverrides ? {}, fetchHex, bunt_0_1_5 }:
+ { buildMix, packageOverrides ? {}, fetchHex, bunt_0_1_6 }:
buildMix ({
name = "credo";
- version = "0.3.10";
+ version = "0.4.3";
src = fetchHex {
pkg = "credo";
- version = "0.3.10";
+ version = "0.4.3";
sha256 =
- "dbc6e8ed6cd3567576bb6c4cc0dbea6fb3f7ef88a530aa2d17d13a1106cff156";
+ "2ab51e2446ebad5abc327fb18a4410f41bbab311cd760379e75d696dea8ed6ee";
};
- beamDeps = [ bunt_0_1_5 ];
+ beamDeps = [ bunt_0_1_6 ];
meta = {
longDescription = ''A static code analysis tool for the Elixir
@@ -4800,43 +7219,19 @@ let
} // packageOverrides)
) {};
- credo = credo_0_3_10;
+ credo = credo_0_4_3;
- credo_0_3_2 = callPackage
- (
- { buildMix, packageOverrides ? {}, fetchHex, bunt_0_1_5 }:
- buildMix ({
- name = "credo";
- version = "0.3.2";
- src = fetchHex {
- pkg = "credo";
- version = "0.3.2";
- sha256 =
- "0040bfc7a76f3c345647dc32743f4c1ca2911cc1fc53bc2dc3f9fd98704da805";
- };
- beamDeps = [ bunt_0_1_5 ];
-
- meta = {
- longDescription = ''A static code analysis tool for the Elixir
- language with a focus on code consistency and
- teaching.'';
- license = stdenv.lib.licenses.mit;
- homepage = "https://github.com/rrrene/credo";
- };
- } // packageOverrides)
- ) {};
-
- croma_0_4_0 = callPackage
+ croma_0_4_4 = callPackage
(
{ buildMix, packageOverrides ? {}, fetchHex }:
buildMix ({
name = "croma";
- version = "0.4.0";
+ version = "0.4.4";
src = fetchHex {
pkg = "croma";
- version = "0.4.0";
+ version = "0.4.4";
sha256 =
- "6bcf8a0aad588fc57b4a4dedacf54ec4461e6906da5273c4bd8e121d179e3413";
+ "8dbcf50e925aa765f521d948250cafd5409fd4dbd5f23b2db6d6032e9397e312";
};
meta = {
@@ -4846,7 +7241,31 @@ let
} // packageOverrides)
) {};
- croma = croma_0_4_0;
+ croma = croma_0_4_4;
+
+ cronitor_1_0_0 = callPackage
+ (
+ { buildMix, packageOverrides ? {}, fetchHex }:
+ buildMix ({
+ name = "cronitor";
+ version = "1.0.0";
+ src = fetchHex {
+ pkg = "cronitor";
+ version = "1.0.0";
+ sha256 =
+ "d1353c83d1949b60e824ed934be02e7a4cc536fb5b7c912618b0052e0e01d490";
+ };
+
+ meta = {
+ description = ''An extremely simple wrapper for the cronitor.io
+ ping endpoints.'';
+ license = stdenv.lib.licenses.asl20;
+ homepage = "https://github.com/jordan0day/cronitor";
+ };
+ } // packageOverrides)
+ ) {};
+
+ cronitor = cronitor_1_0_0;
crutches_1_0_0 = callPackage
(
@@ -4921,19 +7340,18 @@ let
crypto_rsassa_pss = crypto_rsassa_pss_1_0_0;
- cspex_1_0_0 = callPackage
+ cspex_1_1_0 = callPackage
(
- { buildMix, packageOverrides ? {}, fetchHex, exactor_2_2_0 }:
+ { buildMix, packageOverrides ? {}, fetchHex }:
buildMix ({
name = "cspex";
- version = "1.0.0";
+ version = "1.1.0";
src = fetchHex {
pkg = "cspex";
- version = "1.0.0";
+ version = "1.1.0";
sha256 =
- "f5df9923dd4250444a3e9f5f49fa76398c0b1415d468047b9a83ef5480348646";
+ "1eb6d83e0f4c43c68fe14ede5bb711654a6a653e94aa39d75ad67cf53ba79df1";
};
- beamDeps = [ exactor_2_2_0 ];
meta = {
description = ''A library that brings all the CSP joy to the
@@ -4944,21 +7362,21 @@ let
} // packageOverrides)
) {};
- cspex = cspex_1_0_0;
+ cspex = cspex_1_1_0;
- csv_1_3_3 = callPackage
+ csv_1_4_1 = callPackage
(
{
buildMix, packageOverrides ? {}, fetchHex, parallel_stream_1_0_3
}:
buildMix ({
name = "csv";
- version = "1.3.3";
+ version = "1.4.1";
src = fetchHex {
pkg = "csv";
- version = "1.3.3";
+ version = "1.4.1";
sha256 =
- "f3ef7b1ae28a55e53b8cb5c11d0e0b64e76e38d5f3e830bf2e3bf2cc0a89d848";
+ "167e5d3dd2e7716e5865f5a8d064d7a9f7004516c796684083f1cd180c2d4296";
};
beamDeps = [ parallel_stream_1_0_3 ];
@@ -4970,19 +7388,19 @@ let
} // packageOverrides)
) {};
- csv = csv_1_3_3;
+ csv = csv_1_4_1;
- csvlixir_2_0_2 = callPackage
+ csvlixir_2_0_3 = callPackage
(
{ buildMix, packageOverrides ? {}, fetchHex }:
buildMix ({
name = "csvlixir";
- version = "2.0.2";
+ version = "2.0.3";
src = fetchHex {
pkg = "csvlixir";
- version = "2.0.2";
+ version = "2.0.3";
sha256 =
- "f1e4ca61af3004a66efbe5d02486519a5d6c3610b9d5404352dbf6cd8ec593ec";
+ "8539326c9a484f94f9443878f5df21b3ed12d5a00be069b8b8346dff8cf35436";
};
meta = {
@@ -5000,7 +7418,7 @@ let
} // packageOverrides)
) {};
- csvlixir = csvlixir_2_0_2;
+ csvlixir = csvlixir_2_0_3;
cth_readable_1_2_2 = callPackage
(
@@ -5052,31 +7470,31 @@ let
cuckoo = cuckoo_1_0_0;
- cucumberl_0_0_6 = callPackage
+ cucumberl_0_0_10 = callPackage
(
- { buildRebar3, packageOverrides ? {}, fetchHex }:
- buildRebar3 ({
+ { buildMix, packageOverrides ? {}, fetchHex }:
+ buildMix ({
name = "cucumberl";
- version = "0.0.6";
+ version = "0.0.10";
src = fetchHex {
pkg = "cucumberl";
- version = "0.0.6";
+ version = "0.0.10";
sha256 =
- "3b9ea813997fd8c1e3d2b004e89288496dc21d2e5027f432e5900569d2c61cf3";
+ "53bd73d016602c8c46883dbcc5a57ee814fe4708b14e4406d566b5ca9d119110";
};
- buildPlugins = [ rebar3_hex ];
-
-
meta = {
- description = ''A pure-erlang implementation of Cucumber.'';
+ longDescription = ''A pure-erlang, open-source, implementation of
+ Cucumber (http://cukes.info). This provides a
+ subset of the Cucumber feature definition
+ language.'';
license = stdenv.lib.licenses.mit;
homepage = "https://github.com/ericbmerritt/cucumberl";
};
} // packageOverrides)
) {};
- cucumberl = cucumberl_0_0_6;
+ cucumberl = cucumberl_0_0_10;
cuid_0_1_0 = callPackage
(
@@ -5101,6 +7519,30 @@ let
cuid = cuid_0_1_0;
+ curl2httpoison_0_2_6 = callPackage
+ (
+ { buildMix, packageOverrides ? {}, fetchHex }:
+ buildMix ({
+ name = "curl2httpoison";
+ version = "0.2.6";
+ src = fetchHex {
+ pkg = "curl2httpoison";
+ version = "0.2.6";
+ sha256 =
+ "d22fda1a85db812e9f6e0c8770f004cb7942f463bc59b07ad272c01330a7bfca";
+ };
+
+ meta = {
+ description = ''Curl2HTTPoison transform your curl request to
+ HTTPPoison request code'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/edgurgel/httpoison";
+ };
+ } // packageOverrides)
+ ) {};
+
+ curl2httpoison = curl2httpoison_0_2_6;
+
currency_formatter_0_0_1 = callPackage
(
{ buildMix, packageOverrides ? {}, fetchHex, poison_2_1_0 }:
@@ -5126,6 +7568,37 @@ let
currency_formatter = currency_formatter_0_0_1;
+ current_streak_ex_0_1_1 = callPackage
+ (
+ {
+ buildMix,
+ packageOverrides ? {},
+ fetchHex,
+ httpoison_0_8_3,
+ floki_0_8_1
+ }:
+ buildMix ({
+ name = "current_streak_ex";
+ version = "0.1.1";
+ src = fetchHex {
+ pkg = "current_streak_ex";
+ version = "0.1.1";
+ sha256 =
+ "1c62bcd7bdd69818dc05f0602e03a5aca6b21554206cb6634bedb807ee27d5a7";
+ };
+ beamDeps = [ httpoison_0_8_3 floki_0_8_1 ];
+
+ meta = {
+ description = ''Get github current streak which support only
+ public repositories.'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/KazuCocoa/current_streak_ex";
+ };
+ } // packageOverrides)
+ ) {};
+
+ current_streak_ex = current_streak_ex_0_1_1;
+
current_user_0_0_1 = callPackage
(
{ buildMix, packageOverrides ? {}, fetchHex }:
@@ -5332,8 +7805,8 @@ let
cypher_query_0_0_1 = callPackage
(
- { buildRebar3, packageOverrides ? {}, fetchHex }:
- buildRebar3 ({
+ { buildMix, packageOverrides ? {}, fetchHex }:
+ buildMix ({
name = "cypher_query";
version = "0.0.1";
src = fetchHex {
@@ -5354,6 +7827,29 @@ let
cypher_query = cypher_query_0_0_1;
+ damm_0_1_0 = callPackage
+ (
+ { buildRebar3, packageOverrides ? {}, fetchHex }:
+ buildRebar3 ({
+ name = "damm";
+ version = "0.1.0";
+ src = fetchHex {
+ pkg = "damm";
+ version = "0.1.0";
+ sha256 =
+ "2d2d0adbf0ffe5888d0aaee784a25b3bb9b99acf33b6de350aee9f58c588cbd5";
+ };
+
+ meta = {
+ description = ''Damm algorithm implementation'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/mururu/damm";
+ };
+ } // packageOverrides)
+ ) {};
+
+ damm = damm_0_1_0;
+
data_leaf_walker_0_1_0 = callPackage
(
{ buildMix, packageOverrides ? {}, fetchHex }:
@@ -5379,6 +7875,33 @@ let
data_leaf_walker = data_leaf_walker_0_1_0;
+ data_pool_1_0_1 = callPackage
+ (
+ { buildMix, packageOverrides ? {}, fetchHex, e_queue_1_0_1 }:
+ buildMix ({
+ name = "data_pool";
+ version = "1.0.1";
+ src = fetchHex {
+ pkg = "data_pool";
+ version = "1.0.1";
+ sha256 =
+ "ad5a2bdf81215d71e47f87624142f58d32a808ea98f4837fc1d28dc971124613";
+ };
+ beamDeps = [ e_queue_1_0_1 ];
+
+ meta = {
+ longDescription = ''Utility to buffer items into a queue that
+ follow a simple block pattern on calls to push
+ and pop when the queue at a max size or
+ empty.'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/benfalk/data_pool";
+ };
+ } // packageOverrides)
+ ) {};
+
+ data_pool = data_pool_1_0_1;
+
database_url_0_1_0 = callPackage
(
{ buildMix, packageOverrides ? {}, fetchHex }:
@@ -5403,26 +7926,50 @@ let
database_url = database_url_0_1_0;
- db_connection_0_2_4 = callPackage
+ datastructures_0_2_5 = callPackage
+ (
+ { buildMix, packageOverrides ? {}, fetchHex }:
+ buildMix ({
+ name = "datastructures";
+ version = "0.2.5";
+ src = fetchHex {
+ pkg = "datastructures";
+ version = "0.2.5";
+ sha256 =
+ "ef4387043ecaa635995832f32473e8b6708044a6bc73983168eee4ab71b01f92";
+ };
+
+ meta = {
+ description = ''Elixir protocols and implementations for various
+ data structures.'';
+ license = stdenv.lib.licenses.wtfpl;
+ homepage = "https://github.com/meh/elixir-datastructures";
+ };
+ } // packageOverrides)
+ ) {};
+
+ datastructures = datastructures_0_2_5;
+
+ db_connection_1_0_0_rc_0 = callPackage
(
{
buildMix,
packageOverrides ? {},
fetchHex,
- sbroker_0_7_0,
+ sbroker_0_6_2,
poolboy_1_5_1,
connection_1_0_2
}:
buildMix ({
name = "db_connection";
- version = "0.2.4";
+ version = "1.0.0-rc.0";
src = fetchHex {
pkg = "db_connection";
- version = "0.2.4";
+ version = "1.0.0-rc.0";
sha256 =
- "fbb5074affe8d57d0f677cf3692371a1fa3f90673c81e61214b0388995b4d4a7";
+ "ff4e4805da74db0fe9dbe751ce39e1549c7bf80593dd1cd53b31458df801026d";
};
- beamDeps = [ sbroker_0_7_0 poolboy_1_5_1 connection_1_0_2 ];
+ beamDeps = [ sbroker_0_6_2 poolboy_1_5_1 connection_1_0_2 ];
meta = {
description = ''Database connection behaviour for database
@@ -5433,7 +7980,7 @@ let
} // packageOverrides)
) {};
- db_connection = db_connection_0_2_4;
+ db_connection = db_connection_1_0_0_rc_0;
dbg_1_0_1 = callPackage
(
@@ -5458,17 +8005,71 @@ let
dbg = dbg_1_0_1;
- decimal_1_1_1 = callPackage
+ dbux_1_0_3 = callPackage
+ (
+ { buildMix, packageOverrides ? {}, fetchHex, connection_1_0_2 }:
+ buildMix ({
+ name = "dbux";
+ version = "1.0.3";
+ src = fetchHex {
+ pkg = "dbux";
+ version = "1.0.3";
+ sha256 =
+ "79d01f620dd32ec4ed11423e0724bf7d8a46353e56f8d28cbdbf499a352caa1e";
+ };
+ beamDeps = [ connection_1_0_2 ];
+
+ meta = {
+ description = ''Bindings for the D-Bus IPC protocol.'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/mspanc/dbux";
+ };
+ } // packageOverrides)
+ ) {};
+
+ dbux = dbux_1_0_3;
+
+ dealer_0_8_0 = callPackage
+ (
+ {
+ buildMix,
+ packageOverrides ? {},
+ fetchHex,
+ poison_1_5_2,
+ httpoison_0_8_3
+ }:
+ buildMix ({
+ name = "dealer";
+ version = "0.8.0";
+ src = fetchHex {
+ pkg = "dealer";
+ version = "0.8.0";
+ sha256 =
+ "c8c72d38e1cff6a181a6b6f627fb6fd5998279827519e598eb28bcef2be721ee";
+ };
+ beamDeps = [ poison_1_5_2 httpoison_0_8_3 ];
+
+ meta = {
+ description = ''An API Client for Stockfighter.'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/larrylv/dealer";
+ };
+ } // packageOverrides)
+ ) {};
+
+ dealer = dealer_0_8_0;
+
+ decimal_1_1_2 = callPackage
(
{ buildMix, packageOverrides ? {}, fetchHex }:
buildMix ({
name = "decimal";
- version = "1.1.1";
+ version = "1.1.2";
src = fetchHex {
pkg = "decimal";
- version = "1.1.1";
+ version = "1.1.2";
sha256 =
- "c73f361389c2221e2fda0e2ba63c6de88d1545b00ddc0b4d5885202ccc34c568";
+ "7a6dfa1f4d389497acd7b807bf38c55022487c68b73d339d5114e3a691e006c5";
};
meta = {
@@ -5480,7 +8081,31 @@ let
} // packageOverrides)
) {};
- decimal = decimal_1_1_1;
+ decimal = decimal_1_1_2;
+
+ decimal_arithmetic_0_1_1 = callPackage
+ (
+ { buildMix, packageOverrides ? {}, fetchHex, decimal_1_1_2 }:
+ buildMix ({
+ name = "decimal_arithmetic";
+ version = "0.1.1";
+ src = fetchHex {
+ pkg = "decimal_arithmetic";
+ version = "0.1.1";
+ sha256 =
+ "b9c5dc722cc770aa5b905418d56e23eaa16e64659da0ccb552341a75068e0cfe";
+ };
+ beamDeps = [ decimal_1_1_2 ];
+
+ meta = {
+ description = ''Extended arithmetic for Decimal library.'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/jacek-adamek/decimal_arithmetic";
+ };
+ } // packageOverrides)
+ ) {};
+
+ decimal_arithmetic = decimal_arithmetic_0_1_1;
decks_0_0_1 = callPackage
(
@@ -5578,17 +8203,17 @@ let
delayed_otp = delayed_otp_0_0_2;
- delegate_behaviour_0_1_3 = callPackage
+ delegate_behaviour_0_1_5 = callPackage
(
{ buildMix, packageOverrides ? {}, fetchHex }:
buildMix ({
name = "delegate_behaviour";
- version = "0.1.3";
+ version = "0.1.5";
src = fetchHex {
pkg = "delegate_behaviour";
- version = "0.1.3";
+ version = "0.1.5";
sha256 =
- "15b335b5c30072ce8e0845eeb8116397ef357efbfbc64b59b6c113b96520e9c5";
+ "d46e9c39d5be4e6b1ee62a9419d1a44d138aca5af0161f42f78b4eb24659ca58";
};
meta = {
@@ -5599,7 +8224,37 @@ let
} // packageOverrides)
) {};
- delegate_behaviour = delegate_behaviour_0_1_3;
+ delegate_behaviour = delegate_behaviour_0_1_5;
+
+ deltek_0_0_4 = callPackage
+ (
+ {
+ buildMix,
+ packageOverrides ? {},
+ fetchHex,
+ sweet_xml_0_6_1,
+ html_entities_0_3_0
+ }:
+ buildMix ({
+ name = "deltek";
+ version = "0.0.4";
+ src = fetchHex {
+ pkg = "deltek";
+ version = "0.0.4";
+ sha256 =
+ "274eecc6aba76e19e30e5850746ee81241ac8cc334d9729588b2ba770ac53988";
+ };
+ beamDeps = [ sweet_xml_0_6_1 html_entities_0_3_0 ];
+
+ meta = {
+ description = ''An Elixir wrapper for the SOAP Deltek API'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/lucidstack/elixir-deltek";
+ };
+ } // packageOverrides)
+ ) {};
+
+ deltek = deltek_0_0_4;
demacro_0_0_1 = callPackage
(
@@ -5619,6 +8274,52 @@ let
demacro = demacro_0_0_1;
+ depcache_1_2_2 = callPackage
+ (
+ { buildRebar3, packageOverrides ? {}, fetchHex }:
+ buildRebar3 ({
+ name = "depcache";
+ version = "1.2.2";
+ src = fetchHex {
+ pkg = "depcache";
+ version = "1.2.2";
+ sha256 =
+ "0e70807140d485f1bf5ac50cd9a87b71ba5c5496a8ad02029847e569af80ed91";
+ };
+
+ meta = {
+ description = ''In-memory cache with cache key dependencies'';
+ license = stdenv.lib.licenses.apsl20;
+ homepage = "https://github.com/zotonic/depcache";
+ };
+ } // packageOverrides)
+ ) {};
+
+ depcache = depcache_1_2_2;
+
+ deppie_1_0_0 = callPackage
+ (
+ { buildMix, packageOverrides ? {}, fetchHex }:
+ buildMix ({
+ name = "deppie";
+ version = "1.0.0";
+ src = fetchHex {
+ pkg = "deppie";
+ version = "1.0.0";
+ sha256 =
+ "6712dbae54f274d7f4f92979d82cec2d4636a0598e2474e47b190fc3c0ed378a";
+ };
+
+ meta = {
+ description = ''Elixir`s coolest deprecation logger'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/zackehh/deppie";
+ };
+ } // packageOverrides)
+ ) {};
+
+ deppie = deppie_1_0_0;
+
detergent_0_3_0 = callPackage
(
{ buildRebar3, packageOverrides ? {}, fetchHex }:
@@ -5667,6 +8368,38 @@ let
detergentex = detergentex_0_0_7;
+ deviant_elixir_0_0_4 = callPackage
+ (
+ {
+ buildMix,
+ packageOverrides ? {},
+ fetchHex,
+ httpoison_0_8_3,
+ feeder_ex_0_0_2
+ }:
+ buildMix ({
+ name = "deviant_elixir";
+ version = "0.0.4";
+ src = fetchHex {
+ pkg = "deviant_elixir";
+ version = "0.0.4";
+ sha256 =
+ "42473969889a47edab66384988e70ab6b4da158043e9231deab822743e3d9943";
+ };
+ beamDeps = [ httpoison_0_8_3 feeder_ex_0_0_2 ];
+
+ meta = {
+ longDescription = ''WIP. Unstable alpha. Elixir API wrapper for
+ Deviant Art. At this moment provides only RSS
+ feeds intergac.'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/vdaniuk/deviant-elixir";
+ };
+ } // packageOverrides)
+ ) {};
+
+ deviant_elixir = deviant_elixir_0_0_4;
+
dflow_0_1_5 = callPackage
(
{ buildRebar3, packageOverrides ? {}, fetchHex }:
@@ -5690,6 +8423,36 @@ let
dflow = dflow_0_1_5;
+ di_0_1_0 = callPackage
+ (
+ {
+ buildMix,
+ packageOverrides ? {},
+ fetchHex,
+ poison_2_1_0,
+ httpoison_0_8_3
+ }:
+ buildMix ({
+ name = "di";
+ version = "0.1.0";
+ src = fetchHex {
+ pkg = "di";
+ version = "0.1.0";
+ sha256 =
+ "d7a89568c986c98399667faeb618d5cc42a89965717e758323aa5370d1547260";
+ };
+ beamDeps = [ poison_2_1_0 httpoison_0_8_3 ];
+
+ meta = {
+ description = ''Elixir wrapper for DI.FM'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/JoshuaThompson/di";
+ };
+ } // packageOverrides)
+ ) {};
+
+ di = di_0_1_0;
+
dialyxir_0_3_3 = callPackage
(
{ buildMix, packageOverrides ? {}, fetchHex }:
@@ -5760,39 +8523,40 @@ let
dice = dice_0_0_1;
- dice_roller_1_0_1 = callPackage
+ dice_roller_1_1_0 = callPackage
(
{ buildMix, packageOverrides ? {}, fetchHex }:
buildMix ({
name = "dice_roller";
- version = "1.0.1";
+ version = "1.1.0";
src = fetchHex {
pkg = "dice_roller";
- version = "1.0.1";
+ version = "1.1.0";
sha256 =
- "a9c4b9a85dc7d26a78ff1dcc58aee9e6bcc9df473531b032d95e6cd6e2402679";
+ "90e3485951605338f23686dcc001599354cb6eff7df851b1a1f6514b1c7fbd5c";
};
meta = {
- license = stdenv.lib.licenses.mit;
+ description = ''An Elixir library for simulating dice rolls'';
+ license = stdenv.lib.licenses.mit;
homepage = "https://github.com/KevinGreene/DiceRoller";
};
} // packageOverrides)
) {};
- dice_roller = dice_roller_1_0_1;
+ dice_roller = dice_roller_1_1_0;
- dicon_0_3_0 = callPackage
+ dicon_0_4_0 = callPackage
(
{ buildMix, packageOverrides ? {}, fetchHex }:
buildMix ({
name = "dicon";
- version = "0.3.0";
+ version = "0.4.0";
src = fetchHex {
pkg = "dicon";
- version = "0.3.0";
+ version = "0.4.0";
sha256 =
- "52c5839feb9e0fa4247a564b79ac6717d8adc0e65a34739caaf26982fa213a12";
+ "d6a5c56e376b13dcfd721bc2571fbabcb41409ac5f2b8fa243a0f14393e6b145";
};
meta = {
@@ -5803,37 +8567,60 @@ let
} // packageOverrides)
) {};
- dicon = dicon_0_3_0;
+ dicon = dicon_0_4_0;
- difficult_0_0_2 = callPackage
+ diff_1_0_0 = callPackage
+ (
+ { buildMix, packageOverrides ? {}, fetchHex }:
+ buildMix ({
+ name = "diff";
+ version = "1.0.0";
+ src = fetchHex {
+ pkg = "diff";
+ version = "1.0.0";
+ sha256 =
+ "0dbd7abbf558031ccb8d703c751a20349326191026b07b53f4a3c603817728fb";
+ };
+
+ meta = {
+ description = ''A simple diff library'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/bryanjos/diff";
+ };
+ } // packageOverrides)
+ ) {};
+
+ diff = diff_1_0_0;
+
+ digoc_0_3_3 = callPackage
(
{
buildMix,
packageOverrides ? {},
fetchHex,
- ex_doc_0_11_4,
- earmark_0_2_1
+ poison_1_3_1,
+ httpoison_0_8_3
}:
buildMix ({
- name = "difficult";
- version = "0.0.2";
+ name = "digoc";
+ version = "0.3.3";
src = fetchHex {
- pkg = "difficult";
- version = "0.0.2";
+ pkg = "digoc";
+ version = "0.3.3";
sha256 =
- "5e47c31935cd81082942ac4515c24cad2630ef024e27c5e9cde96f60a93cc39b";
+ "23d5c2f1b977b1f3e12567879a20bc211898efdfcac9a0b6802324bc42ea0605";
};
- beamDeps = [ ex_doc_0_11_4 earmark_0_2_1 ];
+ beamDeps = [ poison_1_3_1 httpoison_0_8_3 ];
meta = {
- description = ''Difficult, but computable functions'';
+ description = ''An Elixir client for the Digital Ocean API v2.'';
license = stdenv.lib.licenses.mit;
- homepage = "https://github.com/massn/Difficult";
+ homepage = "https://github.com/kevinmontuori/digoc";
};
} // packageOverrides)
) {};
- difficult = difficult_0_0_2;
+ digoc = digoc_0_3_3;
dir_walker_0_0_6 = callPackage
(
@@ -5868,6 +8655,57 @@ let
dir_walker = dir_walker_0_0_6;
+ disc_union_0_1_0 = callPackage
+ (
+ { buildMix, packageOverrides ? {}, fetchHex }:
+ buildMix ({
+ name = "disc_union";
+ version = "0.1.0";
+ src = fetchHex {
+ pkg = "disc_union";
+ version = "0.1.0";
+ sha256 =
+ "017f5532d1b444f3e0950771a80ed34b82aa405ca650174529706b8587ea23da";
+ };
+
+ meta = {
+ description = ''Discriminated unions for Elixir'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/X4lldux/disc_union";
+ };
+ } // packageOverrides)
+ ) {};
+
+ disc_union = disc_union_0_1_0;
+
+ discourse_as_sso_erlang_0_7_0 = callPackage
+ (
+ { buildRebar3, packageOverrides ? {}, fetchHex, cowlib_1_3_0 }:
+ buildRebar3 ({
+ name = "discourse_as_sso_erlang";
+ version = "0.7.0";
+ src = fetchHex {
+ pkg = "discourse_as_sso_erlang";
+ version = "0.7.0";
+ sha256 =
+ "be569178e6b0cb49d3fc48457b5233f9e82dc447bd452e5708a071412c24bc2d";
+ };
+
+ beamDeps = [ cowlib_1_3_0 ];
+
+ meta = {
+ longDescription = ''Low-level erlang library to encode/decode
+ payloads for using the forum software Discourse
+ as an SSO endpoint.'';
+ license = stdenv.lib.licenses.apsl20;
+ homepage =
+ "https://github.com/reverendpaco/discourse-as-sso-erlang";
+ };
+ } // packageOverrides)
+ ) {};
+
+ discourse_as_sso_erlang = discourse_as_sso_erlang_0_7_0;
+
dismake_1_0_0 = callPackage
(
{ buildMix, packageOverrides ? {}, fetchHex }:
@@ -5892,17 +8730,17 @@ let
dismake = dismake_1_0_0;
- distance_0_1_2 = callPackage
+ distance_0_2_1 = callPackage
(
{ buildMix, packageOverrides ? {}, fetchHex }:
buildMix ({
name = "distance";
- version = "0.1.2";
+ version = "0.2.1";
src = fetchHex {
pkg = "distance";
- version = "0.1.2";
+ version = "0.2.1";
sha256 =
- "8eca7e3d5cf36bc52814a858b07380f13d236ba5d7b70c4d4b1c6a455294aaf3";
+ "847cf16e80c6905adc7f359b845358bbfbeb3383459f2bc1e9b310cfa1e917ec";
};
meta = {
@@ -5914,29 +8752,7 @@ let
} // packageOverrides)
) {};
- distance_0_2_0 = callPackage
- (
- { buildMix, packageOverrides ? {}, fetchHex }:
- buildMix ({
- name = "distance";
- version = "0.2.0";
- src = fetchHex {
- pkg = "distance";
- version = "0.2.0";
- sha256 =
- "5ee0a5d05468c50c74d6ae4bcb13c5cd8e31f9ea45fce12290f2ad093df04944";
- };
-
- meta = {
- description = ''Various distance functions for geometric or
- geographic calculations'';
- license = stdenv.lib.licenses.mit;
- homepage = "https://github.com/pkinney/distance";
- };
- } // packageOverrides)
- ) {};
-
- distance = distance_0_2_0;
+ distance = distance_0_2_1;
distancex_0_1_0 = callPackage
(
@@ -6012,17 +8828,48 @@ let
dlist = dlist_0_0_1;
- doc_first_formatter_0_0_1 = callPackage
+ dnsimple_0_1_0 = callPackage
+ (
+ {
+ buildMix,
+ packageOverrides ? {},
+ fetchHex,
+ poison_2_1_0,
+ httpoison_0_8_3
+ }:
+ buildMix ({
+ name = "dnsimple";
+ version = "0.1.0";
+ src = fetchHex {
+ pkg = "dnsimple";
+ version = "0.1.0";
+ sha256 =
+ "f10326124aeabcfdcb388100d480413314609cbabfa5de31d0c486150ab28ebc";
+ };
+ beamDeps = [ poison_2_1_0 httpoison_0_8_3 ];
+
+ meta = {
+ description = ''An (experimental) Elixir client for the DNSimple
+ API v2.'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/aetrion/dnsimple-elixir";
+ };
+ } // packageOverrides)
+ ) {};
+
+ dnsimple = dnsimple_0_1_0;
+
+ doc_first_formatter_0_0_2 = callPackage
(
{ buildMix, packageOverrides ? {}, fetchHex }:
buildMix ({
name = "doc_first_formatter";
- version = "0.0.1";
+ version = "0.0.2";
src = fetchHex {
pkg = "doc_first_formatter";
- version = "0.0.1";
+ version = "0.0.2";
sha256 =
- "d1bd7a64e8a742847f910557b66d302b65a10b8180e4e660edfc22987cda3262";
+ "88500d55349571173f88d0f691e1ac7908b9663bfc06f9f0862e60ea8378313c";
};
meta = {
@@ -6036,11 +8883,11 @@ let
} // packageOverrides)
) {};
- doc_first_formatter = doc_first_formatter_0_0_1;
+ doc_first_formatter = doc_first_formatter_0_0_2;
doc_plug_1_0_2 = callPackage
(
- { buildMix, packageOverrides ? {}, fetchHex, plug_1_1_3 }:
+ { buildMix, packageOverrides ? {}, fetchHex, plug_1_1_5 }:
buildMix ({
name = "doc_plug";
version = "1.0.2";
@@ -6050,7 +8897,7 @@ let
sha256 =
"2813f85dcd4f7228d54c277898d3d7483d03ef27ed4f9abc9eae6f57b00e79b8";
};
- beamDeps = [ plug_1_1_3 ];
+ beamDeps = [ plug_1_1_5 ];
meta = {
description = ''Plug to automatically generate and serve project
@@ -6063,17 +8910,17 @@ let
doc_plug = doc_plug_1_0_2;
- dogma_0_1_4 = callPackage
+ dogma_0_1_6 = callPackage
(
{ buildMix, packageOverrides ? {}, fetchHex, poison_2_1_0 }:
buildMix ({
name = "dogma";
- version = "0.1.4";
+ version = "0.1.6";
src = fetchHex {
pkg = "dogma";
- version = "0.1.4";
+ version = "0.1.6";
sha256 =
- "ebf6f6bf8291e4a73b2886fc35e05224f0068237594f0e0609d1834863172245";
+ "cd50b91d8b9ef53ee688d1e437bf4b186ec6bc6e922de7dbf7a7df7aea6dde45";
};
beamDeps = [ poison_2_1_0 ];
@@ -6086,7 +8933,7 @@ let
} // packageOverrides)
) {};
- dogma = dogma_0_1_4;
+ dogma = dogma_0_1_6;
dogstatsd_0_0_3 = callPackage
(
@@ -6112,6 +8959,101 @@ let
dogstatsd = dogstatsd_0_0_3;
+ dogstatsde_0_6_0 = callPackage
+ (
+ {
+ buildRebar3,
+ packageOverrides ? {},
+ fetchHex,
+ worker_pool_1_0_4,
+ stillir_1_0_0
+ }:
+ buildRebar3 ({
+ name = "dogstatsde";
+ version = "0.6.0";
+ src = fetchHex {
+ pkg = "dogstatsde";
+ version = "0.6.0";
+ sha256 =
+ "7d24f8a5573fcbdc3f072ff93685e5277900236df4a7d49d73d8579cf566eb45";
+ };
+
+ beamDeps = [ worker_pool_1_0_4 stillir_1_0_0 ];
+
+ meta = {
+ description = ''Send StatsD metrics to Datadog'';
+ license = stdenv.lib.licenses.free;
+ homepage = "https://github.com/WhoopInc/dogstatsde";
+ };
+ } // packageOverrides)
+ ) {};
+
+ dogstatsde = dogstatsde_0_6_0;
+
+ domainr_0_0_1 = callPackage
+ (
+ {
+ buildMix,
+ packageOverrides ? {},
+ fetchHex,
+ poison_2_1_0,
+ httpoison_0_8_3
+ }:
+ buildMix ({
+ name = "domainr";
+ version = "0.0.1";
+ src = fetchHex {
+ pkg = "domainr";
+ version = "0.0.1";
+ sha256 =
+ "f66ccfe9fdc6b388ce7633974313826f9acffe96b4b369bb904d519e4aa26039";
+ };
+ beamDeps = [ poison_2_1_0 httpoison_0_8_3 ];
+
+ meta = {
+ longDescription = ''Domainr is an [Domainr wrapper
+ for](https://domainr.build) in Elixir that makes
+ it easy to search and find available domains and
+ TLDs.'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/e-fu/domainr";
+ };
+ } // packageOverrides)
+ ) {};
+
+ domainr = domainr_0_0_1;
+
+ doorman_0_0_3 = callPackage
+ (
+ {
+ buildMix,
+ packageOverrides ? {},
+ fetchHex,
+ plug_1_1_5,
+ comeonin_2_4_0
+ }:
+ buildMix ({
+ name = "doorman";
+ version = "0.0.3";
+ src = fetchHex {
+ pkg = "doorman";
+ version = "0.0.3";
+ sha256 =
+ "07c9e7569ec6a8bf26702b6d6a201840b4e11213c5dc42aaecd23d2e169b8c85";
+ };
+ beamDeps = [ plug_1_1_5 comeonin_2_4_0 ];
+
+ meta = {
+ description = ''Tools to make Elixir authentication simple and
+ flexible'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/BlakeWilliams/doorman";
+ };
+ } // packageOverrides)
+ ) {};
+
+ doorman = doorman_0_0_3;
+
dot_0_0_3 = callPackage
(
{ buildMix, packageOverrides ? {}, fetchHex }:
@@ -6130,17 +9072,41 @@ let
dot = dot_0_0_3;
- dotenv_2_0_0 = callPackage
+ dot_notes_1_0_0 = callPackage
+ (
+ { buildMix, packageOverrides ? {}, fetchHex }:
+ buildMix ({
+ name = "dot_notes";
+ version = "1.0.0";
+ src = fetchHex {
+ pkg = "dot_notes";
+ version = "1.0.0";
+ sha256 =
+ "0689a006ca36716eadac9f8f83699aff6d56520a15403610d08e2f397fd60996";
+ };
+
+ meta = {
+ description = ''Simple dot/bracket notation parsing/conversion
+ for Maps/Lists'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/zackehh/dot-notes-elixir";
+ };
+ } // packageOverrides)
+ ) {};
+
+ dot_notes = dot_notes_1_0_0;
+
+ dotenv_2_1_0 = callPackage
(
{ buildMix, packageOverrides ? {}, fetchHex }:
buildMix ({
name = "dotenv";
- version = "2.0.0";
+ version = "2.1.0";
src = fetchHex {
pkg = "dotenv";
- version = "2.0.0";
+ version = "2.1.0";
sha256 =
- "bff466b9c1976a17ec1536e095b192e77ec2e2554fd229f23bbb7b598838d95f";
+ "caddac72cac4955ae346306b210608dd6cf380a439b4e18bcdc3d6021f3e4d6b";
};
meta = {
@@ -6151,37 +9117,164 @@ let
} // packageOverrides)
) {};
- dotenv = dotenv_2_0_0;
+ dotenv = dotenv_2_1_0;
- drawille_0_0_1 = callPackage
+ dovetail_0_0_3 = callPackage
+ (
+ { buildMix, packageOverrides ? {}, fetchHex }:
+ buildMix ({
+ name = "dovetail";
+ version = "0.0.3";
+ src = fetchHex {
+ pkg = "dovetail";
+ version = "0.0.3";
+ sha256 =
+ "01b6c3085ebb9cb7d43115c7a2d9780a840017e521daeb7d0a2233f61f8b0306";
+ };
+
+ meta = {
+ description = ''Dovetail provides a harness for running test
+ dovecot servers.'';
+ license = stdenv.lib.licenses.bsd3;
+ homepage = "https://github.com/thusfresh/dovetail";
+ };
+ } // packageOverrides)
+ ) {};
+
+ dovetail = dovetail_0_0_3;
+
+ dp_decoder_0_2_1 = callPackage
+ (
+ { buildRebar3, packageOverrides ? {}, fetchHex }:
+ buildRebar3 ({
+ name = "dp_decoder";
+ version = "0.2.1";
+ src = fetchHex {
+ pkg = "dp_decoder";
+ version = "0.2.1";
+ sha256 =
+ "66449f7691e4f4c8041d82d910c2c86b8ec1bdc6dd2b008d9b9169fda86b22e0";
+ };
+
+ meta = {
+ description = ''Collection of decoders for different metric
+ protocols'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/dalmatinerdb/dp_decoder";
+ };
+ } // packageOverrides)
+ ) {};
+
+ dp_decoder = dp_decoder_0_2_1;
+
+ dqe_idx_0_1_18 = callPackage
+ (
+ { buildRebar3, packageOverrides ? {}, fetchHex }:
+ buildRebar3 ({
+ name = "dqe_idx";
+ version = "0.1.18";
+ src = fetchHex {
+ pkg = "dqe_idx";
+ version = "0.1.18";
+ sha256 =
+ "6af4897e3e5fdff5055179dd765778450cdf8a43c61b5e2a2aeec483c4309c6c";
+ };
+
+ meta = {
+ description = ''Dalmatiner QE indexing'';
+ license = stdenv.lib.licenses.mit;
+ };
+ } // packageOverrides)
+ ) {};
+
+ dqe_idx = dqe_idx_0_1_18;
+
+ druuid_0_3_0 = callPackage
+ (
+ { buildMix, packageOverrides ? {}, fetchHex }:
+ buildMix ({
+ name = "druuid";
+ version = "0.3.0";
+ src = fetchHex {
+ pkg = "druuid";
+ version = "0.3.0";
+ sha256 =
+ "238dfa36cbb4f1277e44cd9ed5900ff3045c4c19724412bb94173ed2659d0ec8";
+ };
+
+ meta = {
+ longDescription = ''Date-relative (and relatively universally
+ unique) UUID generation. Based on
+ https://github.com/recurly/druuid'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/bhelx/druuid";
+ };
+ } // packageOverrides)
+ ) {};
+
+ druuid = druuid_0_3_0;
+
+ dublin_bus_api_0_1_8 = callPackage
(
{
buildMix,
packageOverrides ? {},
fetchHex,
- ex_doc_0_10_0,
- earmark_0_1_19
+ httpoison_0_8_3,
+ floki_0_8_1
}:
buildMix ({
- name = "drawille";
- version = "0.0.1";
+ name = "dublin_bus_api";
+ version = "0.1.8";
src = fetchHex {
- pkg = "drawille";
- version = "0.0.1";
+ pkg = "dublin_bus_api";
+ version = "0.1.8";
sha256 =
- "58d631fee40578dc077603c8cb969e3efa32c098c9d6295648432b07728d8ae3";
+ "b373da947594dfc4b3a2ef11e77f7e3a1ce7875d6aab90fc39a4f285b1e77e63";
};
- beamDeps = [ ex_doc_0_10_0 earmark_0_1_19 ];
+ beamDeps = [ httpoison_0_8_3 floki_0_8_1 ];
meta = {
- description = ''Drawings using terminal braille characters.'';
+ description = ''Access to the Real Time Passenger Information
+ (RTPI) for Dublin Bus services.'';
license = stdenv.lib.licenses.mit;
- homepage = "https://github.com/massn/elixir-drawille";
+ homepage = "https://github.com/carlo-colombo/dublin-bus-api";
};
} // packageOverrides)
) {};
- drawille = drawille_0_0_1;
+ dublin_bus_api = dublin_bus_api_0_1_8;
+
+ duckduckgo_0_1_0 = callPackage
+ (
+ {
+ buildMix,
+ packageOverrides ? {},
+ fetchHex,
+ poison_2_1_0,
+ httpoison_0_8_3
+ }:
+ buildMix ({
+ name = "duckduckgo";
+ version = "0.1.0";
+ src = fetchHex {
+ pkg = "duckduckgo";
+ version = "0.1.0";
+ sha256 =
+ "349fd4b837634507a8e11280c244b064d1eb4e0d3333994f79e5341eec522c2f";
+ };
+ beamDeps = [ poison_2_1_0 httpoison_0_8_3 ];
+
+ meta = {
+ description = ''An Elixir client for the DuckDuckGo Instant
+ Answer API.'';
+ license = stdenv.lib.licenses.isc;
+ homepage = "https://github.com/pjhampton/DuckDuckElixir";
+ };
+ } // packageOverrides)
+ ) {};
+
+ duckduckgo = duckduckgo_0_1_0;
durga_transport_1_0_1 = callPackage
(
@@ -6303,31 +9396,36 @@ let
e_queue = e_queue_1_0_1;
- earmark_0_1_15 = callPackage
+ e_quip_0_0_1 = callPackage
(
- { buildMix, packageOverrides ? {}, fetchHex }:
+ {
+ buildMix,
+ packageOverrides ? {},
+ fetchHex,
+ poison_2_1_0,
+ httpoison_0_8_3
+ }:
buildMix ({
- name = "earmark";
- version = "0.1.15";
+ name = "e_quip";
+ version = "0.0.1";
src = fetchHex {
- pkg = "earmark";
- version = "0.1.15";
+ pkg = "e_quip";
+ version = "0.0.1";
sha256 =
- "cffc809198d000cc9b81cce80ebc673da8647291451015da42fc523f9dd781d7";
+ "e6fe9eeb96dbc863b527a792e730ea41aea43caef2a5db68ea2c4c9fc21f552a";
};
+ beamDeps = [ poison_2_1_0 httpoison_0_8_3 ];
meta = {
- longDescription = ''Earmark is a pure-Elixir Markdown converter.
- It is intended to be used as a library (just
- call Earmark.to_html), but can also be used as a
- command-line tool (just run mix escript.build
- first). Output generation is pluggable.'';
+ description = ''Simple Quip API Client'';
license = stdenv.lib.licenses.asl20;
- homepage = "https://github.com/pragdave/earmark";
+ homepage = "https://github.com/mmartinson/e_quip";
};
} // packageOverrides)
) {};
+ e_quip = e_quip_0_0_1;
+
earmark_0_1_19 = callPackage
(
{ buildMix, packageOverrides ? {}, fetchHex }:
@@ -6380,17 +9478,17 @@ let
earmark = earmark_0_2_1;
- eastar_0_3_8 = callPackage
+ eastar_0_4_0 = callPackage
(
{ buildMix, packageOverrides ? {}, fetchHex }:
buildMix ({
name = "eastar";
- version = "0.3.8";
+ version = "0.4.0";
src = fetchHex {
pkg = "eastar";
- version = "0.3.8";
+ version = "0.4.0";
sha256 =
- "c36e6ba809fb6e228902349e6f794d0362edb4bfd4f6e814107ed9bbc8c8dd17";
+ "21a74b1ac6da2a24eb5e6e14e5537389dd671fa2fc94a4594e0e7ddcf4b4c87a";
};
meta = {
@@ -6405,7 +9503,7 @@ let
} // packageOverrides)
) {};
- eastar = eastar_0_3_8;
+ eastar = eastar_0_4_0;
easy_server_0_0_1 = callPackage
(
@@ -6479,39 +9577,6 @@ let
ec2 = ec2_0_9_1;
- ecdo_0_1_4 = callPackage
- (
- {
- buildMix,
- packageOverrides ? {},
- fetchHex,
- postgrex_0_11_1,
- mariaex_0_7_0,
- ecto_1_0_7
- }:
- buildMix ({
- name = "ecdo";
- version = "0.1.4";
- src = fetchHex {
- pkg = "ecdo";
- version = "0.1.4";
- sha256 =
- "362c75113bca6c8379ac2b1654ae78ed099ab0faee4a1fbacb7b4b9b137b9f1d";
- };
- beamDeps = [ postgrex_0_11_1 mariaex_0_7_0 ecto_1_0_7 ];
-
- meta = {
- longDescription = ''Ecdo is a dynamic interface for ecto aims to
- simplify building dynamic query API based on
- ecto models.'';
-
- homepage = "https://github.com/xerions/ecdo";
- };
- } // packageOverrides)
- ) {};
-
- ecdo = ecdo_0_1_4;
-
echo_0_2_0 = callPackage
(
{ buildMix, packageOverrides ? {}, fetchHex }:
@@ -6539,192 +9604,113 @@ let
echo = echo_0_2_0;
- econfig_0_7_1 = callPackage
+ echo_bot_0_0_2 = callPackage
+ (
+ {
+ buildMix,
+ packageOverrides ? {},
+ fetchHex,
+ telegram_0_0_3,
+ poison_2_1_0,
+ gproc_0_5_0
+ }:
+ buildMix ({
+ name = "echo_bot";
+ version = "0.0.2";
+ src = fetchHex {
+ pkg = "echo_bot";
+ version = "0.0.2";
+ sha256 =
+ "f353984ab5ea36b423b2a18d788d5eeeb6ae45aca254129b99c5bbab9865b38c";
+ };
+ beamDeps = [ telegram_0_0_3 poison_2_1_0 gproc_0_5_0 ];
+
+ meta = {
+ description = ''A demo telegram bot'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/col/echo_bot";
+ };
+ } // packageOverrides)
+ ) {};
+
+ echo_bot = echo_bot_0_0_2;
+
+ echonest_ex_0_0_2 = callPackage
+ (
+ {
+ buildMix,
+ packageOverrides ? {},
+ fetchHex,
+ poison_1_5_2,
+ httpoison_0_8_3
+ }:
+ buildMix ({
+ name = "echonest_ex";
+ version = "0.0.2";
+ src = fetchHex {
+ pkg = "echonest_ex";
+ version = "0.0.2";
+ sha256 =
+ "d8b3d7f2b04eb48b689877aaf9db30f33acea3ea02daca5aad8d105ac785bd98";
+ };
+ beamDeps = [ poison_1_5_2 httpoison_0_8_3 ];
+
+ meta = {
+ description = ''Echonest api wrapper for Elixir'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/desmondhume/echonest_ex";
+ };
+ } // packageOverrides)
+ ) {};
+
+ echonest_ex = echonest_ex_0_0_2;
+
+ econfig_0_7_3 = callPackage
(
{ buildRebar3, packageOverrides ? {}, fetchHex }:
buildRebar3 ({
name = "econfig";
- version = "0.7.1";
+ version = "0.7.3";
src = fetchHex {
pkg = "econfig";
- version = "0.7.1";
+ version = "0.7.3";
sha256 =
- "b11d68e3d288b5cb4bd34e668e03176c4ea42790c09f1f449cdbd46a649ea7f3";
+ "bddff19a757209d3e98b6952897fbf8790f6cf33d9e5caf2501263ea4ad46e3c";
};
meta = {
description = ''simple Erlang config handler using INI files'';
-
+ license = stdenv.lib.licenses.free;
homepage = "https://github.com/benoitc/econfig";
};
} // packageOverrides)
) {};
- econfig = econfig_0_7_1;
+ econfig = econfig_0_7_3;
- ecto_0_15_0 = callPackage
+ ecs_0_3_0 = callPackage
(
- {
- buildMix,
- packageOverrides ? {},
- fetchHex,
- sbroker_0_7_0,
- postgrex_0_9_1,
- poolboy_1_5_1,
- poison_1_5_2,
- mariaex_0_4_3,
- decimal_1_1_1
- }:
+ { buildMix, packageOverrides ? {}, fetchHex }:
buildMix ({
- name = "ecto";
- version = "0.15.0";
+ name = "ecs";
+ version = "0.3.0";
src = fetchHex {
- pkg = "ecto";
- version = "0.15.0";
+ pkg = "ecs";
+ version = "0.3.0";
sha256 =
- "44bbe98d66c20aa70dcac2cb41f6ae058aa50c3029089e2158d043113110164b";
+ "266fe69adcb3772352bc47b1312e00e8ec0a15a03c412be1b63b147a916f6156";
};
- beamDeps = [
- sbroker_0_7_0
- postgrex_0_9_1
- poolboy_1_5_1
- poison_1_5_2
- mariaex_0_4_3
- decimal_1_1_1
- ];
meta = {
- longDescription = ''Ecto is a domain specific language for
- writing queries and interacting with databases
- in Elixir.'';
- license = stdenv.lib.licenses.asl20;
- homepage = "https://github.com/elixir-lang/ecto";
+ description = ''An experimental Entity-Component System (ECS)
+ game engine.'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/joshforisha/ecs";
};
} // packageOverrides)
) {};
- ecto_0_16_0 = callPackage
- (
- {
- buildMix,
- packageOverrides ? {},
- fetchHex,
- sbroker_0_7_0,
- postgrex_0_9_1,
- poolboy_1_5_1,
- poison_1_5_2,
- mariaex_0_4_3,
- decimal_1_1_1
- }:
- buildMix ({
- name = "ecto";
- version = "0.16.0";
- src = fetchHex {
- pkg = "ecto";
- version = "0.16.0";
- sha256 =
- "45643e7a09fdd0a32cf440c5b2e71c5120f24310280da50f51713399d9bb49d6";
- };
- beamDeps = [
- sbroker_0_7_0
- postgrex_0_9_1
- poolboy_1_5_1
- poison_1_5_2
- mariaex_0_4_3
- decimal_1_1_1
- ];
-
- meta = {
- longDescription = ''Ecto is a domain specific language for
- writing queries and interacting with databases
- in Elixir.'';
- license = stdenv.lib.licenses.asl20;
- homepage = "https://github.com/elixir-lang/ecto";
- };
- } // packageOverrides)
- ) {};
-
- ecto_1_0_7 = callPackage
- (
- {
- buildMix,
- packageOverrides ? {},
- fetchHex,
- sbroker_0_7_0,
- postgrex_0_9_1,
- poolboy_1_5_1,
- poison_1_5_2,
- mariaex_0_4_3,
- decimal_1_1_1
- }:
- buildMix ({
- name = "ecto";
- version = "1.0.7";
- src = fetchHex {
- pkg = "ecto";
- version = "1.0.7";
- sha256 =
- "d56766fb8e93dcec7e6dd9ef8bfe624b9b6d1f3a433fac4f0e7532681f501086";
- };
- beamDeps = [
- sbroker_0_7_0
- postgrex_0_9_1
- poolboy_1_5_1
- poison_1_5_2
- mariaex_0_4_3
- decimal_1_1_1
- ];
-
- meta = {
- longDescription = ''Ecto is a domain specific language for
- writing queries and interacting with databases
- in Elixir.'';
- license = stdenv.lib.licenses.asl20;
- homepage = "https://github.com/elixir-lang/ecto";
- };
- } // packageOverrides)
- ) {};
-
- ecto_1_1_5 = callPackage
- (
- {
- buildMix,
- packageOverrides ? {},
- fetchHex,
- sbroker_0_7_0,
- postgrex_0_11_1,
- poolboy_1_5_1,
- poison_1_5_2,
- mariaex_0_1_7,
- decimal_1_1_1
- }:
- buildMix ({
- name = "ecto";
- version = "1.1.5";
- src = fetchHex {
- pkg = "ecto";
- version = "1.1.5";
- sha256 =
- "6283cae93763257ac7a319e28ab2308efcd3a4c1571e65ef55721067a01caf69";
- };
- beamDeps = [
- sbroker_0_7_0
- postgrex_0_11_1
- poolboy_1_5_1
- poison_1_5_2
- mariaex_0_1_7
- decimal_1_1_1
- ];
-
- meta = {
- longDescription = ''Ecto is a domain specific language for
- writing queries and interacting with databases
- in Elixir.'';
- license = stdenv.lib.licenses.asl20;
- homepage = "https://github.com/elixir-lang/ecto";
- };
- } // packageOverrides)
- ) {};
+ ecs = ecs_0_3_0;
ecto_audit_0_0_1 = callPackage
(
@@ -6750,76 +9736,42 @@ let
ecto_audit = ecto_audit_0_0_1;
- ecto_gettext_0_1_4 = callPackage
+ ed25519_0_2_0 = callPackage
(
- { buildMix, packageOverrides ? {}, fetchHex, gettext_0_10_0 }:
+ { buildMix, packageOverrides ? {}, fetchHex }:
buildMix ({
- name = "ecto_gettext";
- version = "0.1.4";
+ name = "ed25519";
+ version = "0.2.0";
src = fetchHex {
- pkg = "ecto_gettext";
- version = "0.1.4";
+ pkg = "ed25519";
+ version = "0.2.0";
sha256 =
- "fdd333fd0655a86f985bed4558132b6b382cdafbce23e21cab4a9afc08b47f82";
+ "ddd159c41eea85a2fc198a0a8ed06d69ef42b4657f7122610d5e0a5653d2ef03";
};
- beamDeps = [ gettext_0_10_0 ];
meta = {
- description = ''EctoGettext - library for localization Ecto
- validation errors with using Gettext'';
+ description = ''Ed25519 signature functions'';
license = stdenv.lib.licenses.mit;
- homepage = "https://github.com/exbugs-elixir/ecto_gettext";
+ homepage = "https://github.com/mwmiller/ed25519_ex";
};
} // packageOverrides)
) {};
- ecto_gettext = ecto_gettext_0_1_4;
+ ed25519 = ed25519_0_2_0;
- ectograph_0_0_2 = callPackage
+ edeliver_1_2_9 = callPackage
(
- {
- buildMix,
- packageOverrides ? {},
- fetchHex,
- graphql_0_2_0,
- ecto_1_1_5
- }:
- buildMix ({
- name = "ectograph";
- version = "0.0.2";
- src = fetchHex {
- pkg = "ectograph";
- version = "0.0.2";
- sha256 =
- "44eff08624c5f93af30878f4e1e47d69354078ff9081bf2b0203513bb6e0ead9";
- };
- beamDeps = [ graphql_0_2_0 ecto_1_1_5 ];
-
- meta = {
- longDescription = ''Ectograph is a set of utility functions for
- using Ecto in combination with GraphQL
- (joshprice/graphql-elixir)'';
- license = stdenv.lib.licenses.mit;
- homepage = "https://github.com/icidasset/ectograph";
- };
- } // packageOverrides)
- ) {};
-
- ectograph = ectograph_0_0_2;
-
- edeliver_1_1_4 = callPackage
- (
- { buildMix, packageOverrides ? {}, fetchHex, exrm_1_0_3 }:
+ { buildMix, packageOverrides ? {}, fetchHex, exrm_1_0_5 }:
buildMix ({
name = "edeliver";
- version = "1.1.4";
+ version = "1.2.9";
src = fetchHex {
pkg = "edeliver";
- version = "1.1.4";
+ version = "1.2.9";
sha256 =
- "b7c95a499efb0fc9baf681dfaba3c09c64d9cde5c4cf4faafd44d6de9cba8928";
+ "0673ffc1f6eb6f2c29097afa81baa7f9be18cf54bd796724b16656297aff85df";
};
- beamDeps = [ exrm_1_0_3 ];
+ beamDeps = [ exrm_1_0_5 ];
meta = {
longDescription = ''Build and Deploy Elixir Applications and
@@ -6831,19 +9783,19 @@ let
} // packageOverrides)
) {};
- edeliver = edeliver_1_1_4;
+ edeliver = edeliver_1_2_9;
- edib_0_5_1 = callPackage
+ edib_0_7_0 = callPackage
(
{ buildMix, packageOverrides ? {}, fetchHex }:
buildMix ({
name = "edib";
- version = "0.5.1";
+ version = "0.7.0";
src = fetchHex {
pkg = "edib";
- version = "0.5.1";
+ version = "0.7.0";
sha256 =
- "25218e2eca8c5b51b0344c04d635551689b4791760104227963173299b7d60e0";
+ "4ff16e9397a14d13a0a4bcef30634393999c24ed17e6f90817f5f115e09db5a2";
};
meta = {
@@ -6857,7 +9809,7 @@ let
} // packageOverrides)
) {};
- edib = edib_0_5_1;
+ edib = edib_0_7_0;
edip_0_4_3 = callPackage
(
@@ -6885,7 +9837,30 @@ let
edip = edip_0_4_3;
- eeb_0_1_3 = callPackage
+ edown_0_7_0 = callPackage
+ (
+ { buildRebar3, packageOverrides ? {}, fetchHex }:
+ buildRebar3 ({
+ name = "edown";
+ version = "0.7.0";
+ src = fetchHex {
+ pkg = "edown";
+ version = "0.7.0";
+ sha256 =
+ "6d7365a7854cd724e8d1fd005f5faa4444eae6a87eb6df9b789b6e7f6f09110a";
+ };
+
+ meta = {
+ description = ''Markdown generated from Edoc.'';
+ license = stdenv.lib.licenses.free;
+ homepage = "https://github.com/uwiger/edown";
+ };
+ } // packageOverrides)
+ ) {};
+
+ edown = edown_0_7_0;
+
+ eeb_0_2_0 = callPackage
(
{
buildMix,
@@ -6899,12 +9874,12 @@ let
}:
buildMix ({
name = "eeb";
- version = "0.1.3";
+ version = "0.2.0";
src = fetchHex {
pkg = "eeb";
- version = "0.1.3";
+ version = "0.2.0";
sha256 =
- "c2f4bc1e6dbada6b7086e92db14a401ac1440d25d5c5ac078fc55e6545c73f4e";
+ "0615ccea012507ae35f6f1f4f8a46eac6d9eceba0cdface2df5c0d70b7caddbc";
};
beamDeps = [
tzdata_0_1_201603
@@ -6922,7 +9897,7 @@ let
} // packageOverrides)
) {};
- eeb = eeb_0_1_3;
+ eeb = eeb_0_2_0;
efirebirdsql_0_1_1 = callPackage
(
@@ -6947,39 +9922,36 @@ let
efirebirdsql = efirebirdsql_0_1_1;
- egithub_0_2_2 = callPackage
+ egaugex_0_0_2 = callPackage
(
{
- buildErlangMk,
+ buildMix,
packageOverrides ? {},
fetchHex,
- shotgun_0_2_2,
- jiffy_0_14_7,
- lager_3_0_2,
- goldrush_0_1_7
+ httpoison_0_8_3,
+ floki_0_8_1
}:
- buildErlangMk ({
- name = "egithub";
- version = "0.2.2";
+ buildMix ({
+ name = "egaugex";
+ version = "0.0.2";
src = fetchHex {
- pkg = "egithub";
- version = "0.2.2";
+ pkg = "egaugex";
+ version = "0.0.2";
sha256 =
- "ff8e279d3868576cc2a05336c7ca4bed3972f7a01676be859b7e1750da4570f8";
+ "307c0a21c196db45431e5472ad090548f956ccb0e02f97491fba07a2a52d0c51";
};
- beamDeps = [
- shotgun_0_2_2 jiffy_0_14_7 lager_3_0_2 goldrush_0_1_7
- ];
+ beamDeps = [ httpoison_0_8_3 floki_0_8_1 ];
meta = {
- description = ''GitHub API client'';
- license = stdenv.lib.licenses.asl20;
- homepage = "https://github.com/inaka/erlang-github";
+ description = ''A simple egauge parser to retrieve and parse data
+ from egauge devices'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/Brightergy/egaugex";
};
} // packageOverrides)
) {};
- egithub = egithub_0_2_2;
+ egaugex = egaugex_0_0_2;
eh_0_2_0 = callPackage
(
@@ -7052,6 +10024,30 @@ let
eight_ball_dj = eight_ball_dj_0_0_2;
+ eikon_0_0_2 = callPackage
+ (
+ { buildMix, packageOverrides ? {}, fetchHex }:
+ buildMix ({
+ name = "eikon";
+ version = "0.0.2";
+ src = fetchHex {
+ pkg = "eikon";
+ version = "0.0.2";
+ sha256 =
+ "fc624850b69504dd3f05e65ce40b4480aef70b605045f3d79d218c39c443a205";
+ };
+
+ meta = {
+ description = ''Eikōn is an Elixir library providing a read-only
+ interface for image files.'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/tchoutri/eikon";
+ };
+ } // packageOverrides)
+ ) {};
+
+ eikon = eikon_0_0_2;
+
eio_0_1_0 = callPackage
(
{
@@ -7059,7 +10055,7 @@ let
packageOverrides ? {},
fetchHex,
poison_1_5_2,
- plug_1_1_3,
+ plug_1_1_5,
cowboy_1_0_4
}:
buildMix ({
@@ -7071,7 +10067,7 @@ let
sha256 =
"f39f017c73713b36ee27d8a0635634ac2e96b4d540f28db9dd358d8744dccd88";
};
- beamDeps = [ poison_1_5_2 plug_1_1_3 cowboy_1_0_4 ];
+ beamDeps = [ poison_1_5_2 plug_1_1_5 cowboy_1_0_4 ];
meta = {
description = ''Engine.io server for Elixir.'';
@@ -7109,6 +10105,86 @@ let
ejabberd_dev = ejabberd_dev_15_9_0;
+ ejwt_0_1_0 = callPackage
+ (
+ { buildRebar3, packageOverrides ? {}, fetchHex, jsx_2_8_0 }:
+ buildRebar3 ({
+ name = "ejwt";
+ version = "0.1.0";
+ src = fetchHex {
+ pkg = "ejwt";
+ version = "0.1.0";
+ sha256 =
+ "c316a4b7fd21b07b401a3a01db9039b7006f5a1c7e96a981b6cbcb36da1a4a84";
+ };
+
+ beamDeps = [ jsx_2_8_0 ];
+
+ meta = {
+ description = ''Encode/decode JSON Web Token'';
+ license = stdenv.lib.licenses.apsl20;
+ homepage = "https://github.com/artefactop/ejwt";
+ };
+ } // packageOverrides)
+ ) {};
+
+ ejwt = ejwt_0_1_0;
+
+ elastex_0_1_2 = callPackage
+ (
+ {
+ buildMix,
+ packageOverrides ? {},
+ fetchHex,
+ poison_2_1_0,
+ httpoison_0_8_3
+ }:
+ buildMix ({
+ name = "elastex";
+ version = "0.1.2";
+ src = fetchHex {
+ pkg = "elastex";
+ version = "0.1.2";
+ sha256 =
+ "eaab5305db3d5d326e471dc1799606b7055971dfb7d9a27571850d2ce7e97f9b";
+ };
+ beamDeps = [ poison_2_1_0 httpoison_0_8_3 ];
+
+ meta = {
+ description = ''Data driven elixir client for Elasticsearch.'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/michaeldoaty/elastex";
+ };
+ } // packageOverrides)
+ ) {};
+
+ elastex = elastex_0_1_2;
+
+ elaxtic_0_0_1 = callPackage
+ (
+ { buildMix, packageOverrides ? {}, fetchHex, httpoison_0_8_3 }:
+ buildMix ({
+ name = "elaxtic";
+ version = "0.0.1";
+ src = fetchHex {
+ pkg = "elaxtic";
+ version = "0.0.1";
+ sha256 =
+ "a912a0327bfe1c6443cec47a03d11450fed2e649bfdcd4e77bdb9176baa8cd45";
+ };
+ beamDeps = [ httpoison_0_8_3 ];
+
+ meta = {
+ description = ''ElasticSearch client for Elixir and Ecto
+ driver.'';
+ license = stdenv.lib.licenses.asl20;
+ homepage = "https://github.com/vic/elaxtic";
+ };
+ } // packageOverrides)
+ ) {};
+
+ elaxtic = elaxtic_0_0_1;
+
elixir_ami_0_0_3 = callPackage
(
{ buildMix, packageOverrides ? {}, fetchHex }:
@@ -7197,36 +10273,6 @@ let
elixir_bencode = elixir_bencode_1_0_0;
- elixir_drawille_0_0_3 = callPackage
- (
- {
- buildMix,
- packageOverrides ? {},
- fetchHex,
- ex_doc_0_10_0,
- earmark_0_1_19
- }:
- buildMix ({
- name = "elixir_drawille";
- version = "0.0.3";
- src = fetchHex {
- pkg = "elixir_drawille";
- version = "0.0.3";
- sha256 =
- "5fab2af19c8f8c68e62aa4f0a3c17d23a9519e998617470df3ae3cb59516c52c";
- };
- beamDeps = [ ex_doc_0_10_0 earmark_0_1_19 ];
-
- meta = {
- description = ''Drawings using terminal braille characters.'';
- license = stdenv.lib.licenses.mit;
- homepage = "https://github.com/massn/elixir-drawille";
- };
- } // packageOverrides)
- ) {};
-
- elixir_drawille = elixir_drawille_0_0_3;
-
elixir_exif_0_1_1 = callPackage
(
{ buildMix, packageOverrides ? {}, fetchHex }:
@@ -7251,18 +10297,19 @@ let
elixir_exif = elixir_exif_0_1_1;
- elixir_feed_parser_0_9_0 = callPackage
+ elixir_feed_parser_1_1_0 = callPackage
(
- { buildMix, packageOverrides ? {}, fetchHex }:
+ { buildMix, packageOverrides ? {}, fetchHex, timex_2_1_6 }:
buildMix ({
name = "elixir_feed_parser";
- version = "0.9.0";
+ version = "1.1.0";
src = fetchHex {
pkg = "elixir_feed_parser";
- version = "0.9.0";
+ version = "1.1.0";
sha256 =
- "35e0164c63e513d100008a9ada090ba6f1efe89cafc7995f321c0168e39cce5c";
+ "d623eaf020971979601ff135b56776d1b4a73da7eb75d7ae757a8ea18fd41ca0";
};
+ beamDeps = [ timex_2_1_6 ];
meta = {
description = ''An Elixir Atom/RSS2 feed parser.'';
@@ -7272,7 +10319,7 @@ let
} // packageOverrides)
) {};
- elixir_feed_parser = elixir_feed_parser_0_9_0;
+ elixir_feed_parser = elixir_feed_parser_1_1_0;
elixir_freshbooks_0_0_4 = callPackage
(
@@ -7304,6 +10351,51 @@ let
elixir_freshbooks = elixir_freshbooks_0_0_4;
+ elixir_gravatar_url_1_0_0 = callPackage
+ (
+ { buildMix, packageOverrides ? {}, fetchHex }:
+ buildMix ({
+ name = "elixir_gravatar_url";
+ version = "1.0.0";
+ src = fetchHex {
+ pkg = "elixir_gravatar_url";
+ version = "1.0.0";
+ sha256 =
+ "e298fbfc6c4ebf401cf4e62739d79696eff3ce454f037055523c08f2cf815db1";
+ };
+
+ meta = {
+ description = ''An Elixir module for generating Gravatar urls'';
+
+ };
+ } // packageOverrides)
+ ) {};
+
+ elixir_gravatar_url = elixir_gravatar_url_1_0_0;
+
+ elixir_make_0_1_0 = callPackage
+ (
+ { buildMix, packageOverrides ? {}, fetchHex }:
+ buildMix ({
+ name = "elixir_make";
+ version = "0.1.0";
+ src = fetchHex {
+ pkg = "elixir_make";
+ version = "0.1.0";
+ sha256 =
+ "940d1a8e6f6ed8f8bc5c349371b200416bcb657e3a7d0fc64e7292263bf02de6";
+ };
+
+ meta = {
+ description = ''A Make compiler for Mix'';
+ license = stdenv.lib.licenses.apsl20;
+ homepage = "https://github.com/elixir-lang/elixir_make";
+ };
+ } // packageOverrides)
+ ) {};
+
+ elixir_make = elixir_make_0_1_0;
+
elixir_mbcs_0_1_2 = callPackage
(
{ buildMix, packageOverrides ? {}, fetchHex }:
@@ -7329,7 +10421,7 @@ let
elixir_mod_event_0_0_5 = callPackage
(
- { buildMix, packageOverrides ? {}, fetchHex, uuid_1_1_3 }:
+ { buildMix, packageOverrides ? {}, fetchHex, uuid_1_1_4 }:
buildMix ({
name = "elixir_mod_event";
version = "0.0.5";
@@ -7339,7 +10431,7 @@ let
sha256 =
"d38fe29a32107e889c52f849ceec6267709591b7db98db14bd3890683ca78b0f";
};
- beamDeps = [ uuid_1_1_3 ];
+ beamDeps = [ uuid_1_1_4 ];
meta = {
longDescription = ''Elixir client for FreeSWITCH
@@ -7354,6 +10446,42 @@ let
elixir_mod_event = elixir_mod_event_0_0_5;
+ elixir_nsq_1_0_3 = callPackage
+ (
+ {
+ buildMix,
+ packageOverrides ? {},
+ fetchHex,
+ uuid_1_1_4,
+ socket_0_3_4,
+ poison_1_5_2,
+ httpotion_2_2_2
+ }:
+ buildMix ({
+ name = "elixir_nsq";
+ version = "1.0.3";
+ src = fetchHex {
+ pkg = "elixir_nsq";
+ version = "1.0.3";
+ sha256 =
+ "6d30c3754dfdd988f927b9c6ae51d3e0ec4b0d2477b99047baf7a52c96bf9494";
+ };
+ beamDeps = [
+ uuid_1_1_4 socket_0_3_4 poison_1_5_2 httpotion_2_2_2
+ ];
+
+ meta = {
+ longDescription = ''A client library for NSQ, `elixir_nsq` aims
+ to be complete, easy to use, and well tested.
+ Developed at Wistia (http://wistia.com).'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/wistia/elixir_nsq";
+ };
+ } // packageOverrides)
+ ) {};
+
+ elixir_nsq = elixir_nsq_1_0_3;
+
elixir_prelude_0_2_1 = callPackage
(
{ buildMix, packageOverrides ? {}, fetchHex }:
@@ -7400,19 +10528,21 @@ let
elixir_radius = elixir_radius_0_1_0;
- elixir_script_0_16_0 = callPackage
+ elixir_script_0_20_0 = callPackage
(
- { buildMix, packageOverrides ? {}, fetchHex, estree_2_3_0 }:
+ {
+ buildMix, packageOverrides ? {}, fetchHex, fs_0_9_2, estree_2_3_0
+ }:
buildMix ({
name = "elixir_script";
- version = "0.16.0";
+ version = "0.20.0";
src = fetchHex {
pkg = "elixir_script";
- version = "0.16.0";
+ version = "0.20.0";
sha256 =
- "a2ff037d9c3562198fb3e35ff112cb35827078b1a905368be5ff351c582966a9";
+ "259c8ff57f171eda4a9ac15fe6307063b76630168fd582f27e3dfb1c621e0533";
};
- beamDeps = [ estree_2_3_0 ];
+ beamDeps = [ fs_0_9_2 estree_2_3_0 ];
meta = {
description = ''ElixirScript: compiles Elixir code to
@@ -7423,7 +10553,33 @@ let
} // packageOverrides)
) {};
- elixir_script = elixir_script_0_16_0;
+ elixir_script = elixir_script_0_20_0;
+
+ elixir_talk_1_1_1 = callPackage
+ (
+ {
+ buildMix, packageOverrides ? {}, fetchHex, yaml_elixir_1_0_0
+ }:
+ buildMix ({
+ name = "elixir_talk";
+ version = "1.1.1";
+ src = fetchHex {
+ pkg = "elixir_talk";
+ version = "1.1.1";
+ sha256 =
+ "29735f954662da43179de5af018e22b54eb44b5680dd526a5a158b3201324b47";
+ };
+ beamDeps = [ yaml_elixir_1_0_0 ];
+
+ meta = {
+ description = ''ElixirTalk is an Elixir client for beanstalkd.'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/jsvisa/elixir_talk";
+ };
+ } // packageOverrides)
+ ) {};
+
+ elixir_talk = elixir_talk_1_1_1;
elixir_tea_1_0_0 = callPackage
(
@@ -7479,17 +10635,49 @@ let
elixir_v8 = elixir_v8_0_2_2;
- elixlsx_0_0_2 = callPackage
+ elixir_wit_0_1_0 = callPackage
+ (
+ {
+ buildMix,
+ packageOverrides ? {},
+ fetchHex,
+ uuid_1_1_4,
+ poison_2_1_0,
+ httpotion_2_2_2
+ }:
+ buildMix ({
+ name = "elixir_wit";
+ version = "0.1.0";
+ src = fetchHex {
+ pkg = "elixir_wit";
+ version = "0.1.0";
+ sha256 =
+ "75b9046cd41146c4e3b486541cf37a5e27eea42d179af7fda127bdb391855224";
+ };
+ beamDeps = [ uuid_1_1_4 poison_2_1_0 httpotion_2_2_2 ];
+
+ meta = {
+ longDescription = ''Elixir client for the Wit API. Wit is the
+ natural language engine for creating Bots.'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/zabirauf/elixir_wit";
+ };
+ } // packageOverrides)
+ ) {};
+
+ elixir_wit = elixir_wit_0_1_0;
+
+ elixlsx_0_0_3 = callPackage
(
{ buildMix, packageOverrides ? {}, fetchHex }:
buildMix ({
name = "elixlsx";
- version = "0.0.2";
+ version = "0.0.3";
src = fetchHex {
pkg = "elixlsx";
- version = "0.0.2";
+ version = "0.0.3";
sha256 =
- "59778841cecdaec28cf6b008add62a7653a4bd5eb9031e6fb0a076cc9e69fb3d";
+ "baa903f52efd18705bc4f11f25674249e38ba22d111f49321b8f750c063fb932";
};
meta = {
@@ -7500,7 +10688,7 @@ let
} // packageOverrides)
) {};
- elixlsx = elixlsx_0_0_2;
+ elixlsx = elixlsx_0_0_3;
elli_1_0_5 = callPackage
(
@@ -7526,10 +10714,87 @@ let
elli = elli_1_0_5;
+ elmer_0_0_11 = callPackage
+ (
+ { buildMix, packageOverrides ? {}, fetchHex }:
+ buildMix ({
+ name = "elmer";
+ version = "0.0.11";
+ src = fetchHex {
+ pkg = "elmer";
+ version = "0.0.11";
+ sha256 =
+ "cefb6a31a8e4ab5de698cd24f9a02c1fef690f0111f49ffa3e3d57c027c5160c";
+ };
+
+ meta = {
+ description = ''Helper mix tasks for generating elm files like
+ Main, Ports, Models, Msgs, etc.'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/nathanjohnson320/elmer";
+ };
+ } // packageOverrides)
+ ) {};
+
+ elmer = elmer_0_0_11;
+
+ elmxir_0_0_1 = callPackage
+ (
+ { buildMix, packageOverrides ? {}, fetchHex }:
+ buildMix ({
+ name = "elmxir";
+ version = "0.0.1";
+ src = fetchHex {
+ pkg = "elmxir";
+ version = "0.0.1";
+ sha256 =
+ "65ad59b4922b75fb7b6c888f3e5c7dea1d01a4a085a376261bcaa3cfd6ce0845";
+ };
+
+ meta = {
+ description = ''Helper functions for working with Elm + Elixir'';
+ license = stdenv.lib.licenses.free;
+ homepage = "https://github.com/NoRedInk/elmxir";
+ };
+ } // packageOverrides)
+ ) {};
+
+ elmxir = elmxir_0_0_1;
+
+ email_checker_0_0_3 = callPackage
+ (
+ { buildMix, packageOverrides ? {}, fetchHex, socket_0_3_4 }:
+ buildMix ({
+ name = "email_checker";
+ version = "0.0.3";
+ src = fetchHex {
+ pkg = "email_checker";
+ version = "0.0.3";
+ sha256 =
+ "feac6fa5cc1343b437221ace18fa8fa7251dfa777e986063e13f435d6aff990c";
+ };
+ beamDeps = [ socket_0_3_4 ];
+
+ meta = {
+ longDescription = ''Simple library checking the validity of an
+ email. Checks are performed in the following
+ order: - REGEX: validate the emails has a good
+ looking format - MX: validate the domain sever
+ contains MX records - SMTP: validate the SMTP
+ behind the MX records knows this email address
+ (no email sent)'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/kdisneur/email_checker";
+ };
+ } // packageOverrides)
+ ) {};
+
+ email_checker = email_checker_0_0_3;
+
eministat_0_10_1 = callPackage
(
- { buildRebar3, packageOverrides ? {}, fetchHex }:
- buildRebar3 ({
+ { buildErlangMk, packageOverrides ? {}, fetchHex }:
+ buildErlangMk ({
name = "eministat";
version = "0.10.1";
src = fetchHex {
@@ -7577,28 +10842,84 @@ let
eml = eml_0_7_1;
- emodel_1_3_1 = callPackage
+ eno_0_0_1 = callPackage
(
- { buildRebar3, packageOverrides ? {}, fetchHex }:
- buildRebar3 ({
- name = "emodel";
- version = "1.3.1";
+ {
+ buildMix,
+ packageOverrides ? {},
+ fetchHex,
+ postgrex_0_11_1,
+ mariaex_0_7_5,
+ combine_0_7_0
+ }:
+ buildMix ({
+ name = "eno";
+ version = "0.0.1";
src = fetchHex {
- pkg = "emodel";
- version = "1.3.1";
+ pkg = "eno";
+ version = "0.0.1";
sha256 =
- "6271ac4fb20c81b60ce568345ddec8abaea59a6b1eb63aa35ada25a009464ce2";
+ "217cabaf3d3a4f5e46d9b48a88a2cafded20a04a2f477f6bec37b3a82b40424a";
};
+ beamDeps = [ postgrex_0_11_1 mariaex_0_7_5 combine_0_7_0 ];
meta = {
- description = ''Erlang data transformation/validation library'';
+ description = ''lightweight SQL toolkit'';
license = stdenv.lib.licenses.mit;
- homepage = "https://github.com/egobrain/emodel";
+ homepage = "https://github.com/zweifisch/eno";
};
} // packageOverrides)
) {};
- emodel = emodel_1_3_1;
+ eno = eno_0_0_1;
+
+ env_0_1_0 = callPackage
+ (
+ { buildMix, packageOverrides ? {}, fetchHex }:
+ buildMix ({
+ name = "env";
+ version = "0.1.0";
+ src = fetchHex {
+ pkg = "env";
+ version = "0.1.0";
+ sha256 =
+ "befbc0d4a4fc368c05a693a5d29860932c812f8dff2cd14dd62a590ba49b8875";
+ };
+
+ meta = {
+ description = ''Env is an improved application configuration
+ reader for Elixir.'';
+ license = stdenv.lib.licenses.asl20;
+ homepage = "https://github.com/michalmuskala/env";
+ };
+ } // packageOverrides)
+ ) {};
+
+ env = env_0_1_0;
+
+ env_helper_0_0_2 = callPackage
+ (
+ { buildMix, packageOverrides ? {}, fetchHex }:
+ buildMix ({
+ name = "env_helper";
+ version = "0.0.2";
+ src = fetchHex {
+ pkg = "env_helper";
+ version = "0.0.2";
+ sha256 =
+ "36bb88f51ea9a967a9c86d0c9de790f1d88f8b25863c03e4a733d75b9bfb9f54";
+ };
+
+ meta = {
+ description = ''A simple add on to make working with environment
+ variables slightly easier.'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/manheim/env_helper";
+ };
+ } // packageOverrides)
+ ) {};
+
+ env_helper = env_helper_0_0_2;
envy_0_0_2 = callPackage
(
@@ -7623,6 +10944,29 @@ let
envy = envy_0_0_2;
+ eon_3_0_0 = callPackage
+ (
+ { buildMix, packageOverrides ? {}, fetchHex }:
+ buildMix ({
+ name = "eon";
+ version = "3.0.0";
+ src = fetchHex {
+ pkg = "eon";
+ version = "3.0.0";
+ sha256 =
+ "a19006b99ffbe846fe064adfb128cbb6b49c85d08becb60d1e204e1d1f0db94e";
+ };
+
+ meta = {
+ description = ''Use Elixir maps as a document storage format.'';
+ license = stdenv.lib.licenses.asl20;
+ homepage = "https://github.com/supernintendo/eon";
+ };
+ } // packageOverrides)
+ ) {};
+
+ eon = eon_3_0_0;
+
eper_0_94_0 = callPackage
(
{ buildRebar3, packageOverrides ? {}, fetchHex }:
@@ -7651,6 +10995,38 @@ let
eper = eper_0_94_0;
+ epgpool_1_0_1 = callPackage
+ (
+ {
+ buildRebar3,
+ packageOverrides ? {},
+ fetchHex,
+ poolboy_1_4_2,
+ lager_3_0_2,
+ epgsql_3_2_0
+ }:
+ buildRebar3 ({
+ name = "epgpool";
+ version = "1.0.1";
+ src = fetchHex {
+ pkg = "epgpool";
+ version = "1.0.1";
+ sha256 =
+ "23435ebb6b6c8615b1e6ccd6277eb1e6b69b57d0a2079b536b0aaa60ddb094bd";
+ };
+
+ beamDeps = [ poolboy_1_4_2 lager_3_0_2 epgsql_3_2_0 ];
+
+ meta = {
+ description = ''Erlang postgresql pool application'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/egobrain/epgpool";
+ };
+ } // packageOverrides)
+ ) {};
+
+ epgpool = epgpool_1_0_1;
+
epgsql_3_1_1 = callPackage
(
{ buildRebar3, packageOverrides ? {}, fetchHex }:
@@ -7672,7 +11048,28 @@ let
} // packageOverrides)
) {};
- epgsql = epgsql_3_1_1;
+ epgsql_3_2_0 = callPackage
+ (
+ { buildRebar3, packageOverrides ? {}, fetchHex }:
+ buildRebar3 ({
+ name = "epgsql";
+ version = "3.2.0";
+ src = fetchHex {
+ pkg = "epgsql";
+ version = "3.2.0";
+ sha256 =
+ "ff88a419df7b3084e8358538ade8b1844f5d6d18e9fa8c2124acea889720665a";
+ };
+
+ meta = {
+ description = ''PostgreSQL Client'';
+ license = stdenv.lib.licenses.bsd3;
+ homepage = "https://github.com/epgsql/epgsql";
+ };
+ } // packageOverrides)
+ ) {};
+
+ epgsql = epgsql_3_2_0;
epiphany_0_1_0_dev = callPackage
(
@@ -7724,8 +11121,8 @@ let
eqc_ex_1_2_4 = callPackage
(
- { buildRebar3, packageOverrides ? {}, fetchHex }:
- buildRebar3 ({
+ { buildMix, packageOverrides ? {}, fetchHex }:
+ buildMix ({
name = "eqc_ex";
version = "1.2.4";
src = fetchHex {
@@ -7745,40 +11142,17 @@ let
eqc_ex = eqc_ex_1_2_4;
- eql_0_1_2 = callPackage
- (
- { buildRebar3, packageOverrides ? {}, fetchHex }:
- buildRebar3 ({
- name = "eql";
- version = "0.1.2";
- src = fetchHex {
- pkg = "eql";
- version = "0.1.2";
- sha256 =
- "3b1a85c491d44262802058c0de97a2c90678d5d45851b88a076b1a45a8d6d4b3";
- };
-
- meta = {
- description = ''Erlang with SQL'';
- license = stdenv.lib.licenses.mit;
- homepage = "https://github.com/artemeff/eql";
- };
- } // packageOverrides)
- ) {};
-
- eql = eql_0_1_2;
-
- equery_0_2_0 = callPackage
+ equery_0_6_1 = callPackage
(
{ buildRebar3, packageOverrides ? {}, fetchHex }:
buildRebar3 ({
name = "equery";
- version = "0.2.0";
+ version = "0.6.1";
src = fetchHex {
pkg = "equery";
- version = "0.2.0";
+ version = "0.6.1";
sha256 =
- "4e1f91ecdcaf61db99be759ebe133d351aec760ff8e7ea1c33e6f0626cf6068b";
+ "4a492b7cb64c0014c6be8fc763df665ec129bd56c7350e00cbd3d6fd556a8c60";
};
meta = {
@@ -7789,7 +11163,30 @@ let
} // packageOverrides)
) {};
- equery = equery_0_2_0;
+ equery = equery_0_6_1;
+
+ equivalex_0_1_0 = callPackage
+ (
+ { buildMix, packageOverrides ? {}, fetchHex }:
+ buildMix ({
+ name = "equivalex";
+ version = "0.1.0";
+ src = fetchHex {
+ pkg = "equivalex";
+ version = "0.1.0";
+ sha256 =
+ "8c5cd7fb186085ce088839098a98366f798674a4018cb328978a5e0b2f55ad7d";
+ };
+
+ meta = {
+ description = ''constant time polymorphic comparisons'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/mwmiller/equivalex";
+ };
+ } // packageOverrides)
+ ) {};
+
+ equivalex = equivalex_0_1_0;
eredis_1_0_8 = callPackage
(
@@ -7814,17 +11211,17 @@ let
eredis = eredis_1_0_8;
- erl2ex_0_0_8 = callPackage
+ erl2ex_0_0_9 = callPackage
(
{ buildMix, packageOverrides ? {}, fetchHex }:
buildMix ({
name = "erl2ex";
- version = "0.0.8";
+ version = "0.0.9";
src = fetchHex {
pkg = "erl2ex";
- version = "0.0.8";
+ version = "0.0.9";
sha256 =
- "bbe0b1a43e1621158d7985e77d7d1f00db0410d5987b429c30c8d0cc582e0f6f";
+ "4e49c461ecffc33986bb72a43ae87211fb33fed39077fb522c381b884d189514";
};
meta = {
@@ -7837,7 +11234,7 @@ let
} // packageOverrides)
) {};
- erl2ex = erl2ex_0_0_8;
+ erl2ex = erl2ex_0_0_9;
erlang_localtime_1_0_0 = callPackage
(
@@ -7863,6 +11260,27 @@ let
erlang_localtime = erlang_localtime_1_0_0;
+ erlang_term_1_4_0 = callPackage
+ (
+ { buildRebar3, packageOverrides ? {}, fetchHex }:
+ buildRebar3 ({
+ name = "erlang_term";
+ version = "1.4.0";
+ src = fetchHex {
+ pkg = "erlang_term";
+ version = "1.4.0";
+ sha256 =
+ "1a4d491dbd13b7a714815af10fc658948a5a440de23755a32b741ca07d8ba592";
+ };
+
+ meta = {
+ description = ''Provide the in-memory size of Erlang terms'';
+ license = stdenv.lib.licenses.bsd3;
+ homepage = "https://github.com/okeuday/erlang_term";
+ };
+ } // packageOverrides)
+ ) {};
+
erlang_term_1_5_1 = callPackage
(
{ buildRebar3, packageOverrides ? {}, fetchHex }:
@@ -7932,26 +11350,27 @@ let
erlaudio = erlaudio_0_2_3;
- erlcloud_0_13_0 = callPackage
+ erlcloud_0_11_0 = callPackage
(
{
buildRebar3,
packageOverrides ? {},
fetchHex,
+ meck_0_8_3,
lhttpc_1_3_0,
- jsx_2_8_0
+ jsx_2_6_2
}:
buildRebar3 ({
name = "erlcloud";
- version = "0.13.0";
+ version = "0.11.0";
src = fetchHex {
pkg = "erlcloud";
- version = "0.13.0";
+ version = "0.11.0";
sha256 =
- "70e1f5aa86b5f7a62d1141a7507a9e334f833793e3b909fe9c1cfc9916e516a0";
+ "ca9876dab57ed8fb5fb75ab6ce11e59a346387d357d7a038a2e18d1d31a30716";
};
- beamDeps = [ lhttpc_1_3_0 jsx_2_8_0 ];
+ beamDeps = [ meck_0_8_3 lhttpc_1_3_0 jsx_2_6_2 ];
meta = {
description = ''Erlang cloud computing library'';
@@ -7990,8 +11409,6 @@ let
} // packageOverrides)
) {};
- erlcloud = erlcloud_0_13_2;
-
erlexec_1_1_0 = callPackage
(
{ buildRebar3, packageOverrides ? {}, fetchHex }:
@@ -8016,31 +11433,55 @@ let
} // packageOverrides)
) {};
- erlogger_0_1_0 = callPackage
+ erlexec_1_1_3 = callPackage
(
{ buildRebar3, packageOverrides ? {}, fetchHex }:
buildRebar3 ({
- name = "erlogger";
- version = "0.1.0";
+ name = "erlexec";
+ version = "1.1.3";
src = fetchHex {
- pkg = "erlogger";
- version = "0.1.0";
+ pkg = "erlexec";
+ version = "1.1.3";
sha256 =
- "de2d64f0932e8af46264d92a224ed46e41f2b698b1bbd245ae19321715322146";
+ "a4e62b46796a1b1b5e77798346e553e1460b4f97670c868f29d1e2853c02ae33";
};
-
- buildPlugins = [ rebar3_hex ];
+ compilePorts = true;
+ buildPlugins = [ pc ];
meta = {
- description = ''Logging service for Erlang Applications.'';
- license = stdenv.lib.licenses.free;
- homepage = "https://github.com/knusbaum/erlogger";
+ description = ''OS Process Manager'';
+ license = stdenv.lib.licenses.bsd3;
+ homepage = "https://github.com/saleyn/erlexec";
};
} // packageOverrides)
) {};
- erlogger = erlogger_0_1_0;
+ erlexec_1_2_1 = callPackage
+ (
+ { buildRebar3, packageOverrides ? {}, fetchHex }:
+ buildRebar3 ({
+ name = "erlexec";
+ version = "1.2.1";
+ src = fetchHex {
+ pkg = "erlexec";
+ version = "1.2.1";
+ sha256 =
+ "47846ec5bcff158468bcbe4a0608c9c89e3822d1ba10ea4d2f04b0395dc03880";
+ };
+ compilePorts = true;
+ buildPlugins = [ pc ];
+
+
+ meta = {
+ description = ''OS Process Manager'';
+ license = stdenv.lib.licenses.bsd3;
+ homepage = "https://github.com/saleyn/erlexec";
+ };
+ } // packageOverrides)
+ ) {};
+
+ erlexec = erlexec_1_2_1;
erlsh_0_1_0 = callPackage
(
@@ -8067,27 +11508,51 @@ let
erlsh = erlsh_0_1_0;
- erlsom_1_2_1 = callPackage
+ erlsom_1_4_1 = callPackage
(
{ buildRebar3, packageOverrides ? {}, fetchHex }:
buildRebar3 ({
name = "erlsom";
- version = "1.2.1";
+ version = "1.4.1";
src = fetchHex {
pkg = "erlsom";
- version = "1.2.1";
+ version = "1.4.1";
sha256 =
- "e8f4d1d83583df7d1db8346aa30b82a6599b93fcc4b2d9165007e02ed40e7cae";
+ "57b777fe2522e342badfa35873b2266c6961e3a9f4d2ac195d761985c40c3247";
};
meta = {
- description = ''erlsom XSD parser'';
-
+ longDescription = ''XML parser. Supports SAX style parsing as
+ well as XML Schema based data mapping: create
+ records from XML (and vice versa)'';
+ license = stdenv.lib.licenses.free;
+ homepage = "https://github.com/willemdj/erlsom";
};
} // packageOverrides)
) {};
- erlsom = erlsom_1_2_1;
+ erlsom = erlsom_1_4_1;
+
+ erlware_commons_0_13_0 = callPackage
+ (
+ { buildRebar3, packageOverrides ? {}, fetchHex }:
+ buildRebar3 ({
+ name = "erlware_commons";
+ version = "0.13.0";
+ src = fetchHex {
+ pkg = "erlware_commons";
+ version = "0.13.0";
+ sha256 =
+ "d083bbb622a5df09857464f45e1b20a34c66c1376870ece6f9b093a236bbea27";
+ };
+
+ meta = {
+ description = ''Additional standard library for Erlang'';
+ license = stdenv.lib.licenses.apsl20;
+ homepage = "https://github.com/erlware/erlware_commons";
+ };
+ } // packageOverrides)
+ ) {};
erlware_commons_0_15_0 = callPackage
(
@@ -8179,7 +11644,30 @@ let
} // packageOverrides)
) {};
- erlware_commons = erlware_commons_0_20_0;
+ erlware_commons_0_21_0 = callPackage
+ (
+ { buildRebar3, packageOverrides ? {}, fetchHex, cf_0_2_1 }:
+ buildRebar3 ({
+ name = "erlware_commons";
+ version = "0.21.0";
+ src = fetchHex {
+ pkg = "erlware_commons";
+ version = "0.21.0";
+ sha256 =
+ "e70a95762458a489dc37fe869f41517bd43c130e156ef08462f90c534300ab3f";
+ };
+
+ beamDeps = [ cf_0_2_1 ];
+
+ meta = {
+ description = ''Additional standard library for Erlang'';
+ license = stdenv.lib.licenses.apsl20;
+ homepage = "https://github.com/erlware/erlware_commons";
+ };
+ } // packageOverrides)
+ ) {};
+
+ erlware_commons = erlware_commons_0_21_0;
erlydtl_0_11_1 = callPackage
(
@@ -8227,6 +11715,30 @@ let
erlydtl2 = erlydtl2_0_11_1;
+ erlzk_0_6_2 = callPackage
+ (
+ { buildRebar3, packageOverrides ? {}, fetchHex }:
+ buildRebar3 ({
+ name = "erlzk";
+ version = "0.6.2";
+ src = fetchHex {
+ pkg = "erlzk";
+ version = "0.6.2";
+ sha256 =
+ "b9b8e85e34f33550078e58e13fcb29c6bfe75e0585ee94f809d434fce546c246";
+ };
+
+ meta = {
+ description = ''A Pure Erlang ZooKeeper Client (no C
+ dependency)'';
+ license = stdenv.lib.licenses.asl20;
+ homepage = "https://github.com/huaban/erlzk";
+ };
+ } // packageOverrides)
+ ) {};
+
+ erlzk = erlzk_0_6_2;
+
esel_0_1_2 = callPackage
(
{ buildRebar3, packageOverrides ? {}, fetchHex }:
@@ -8249,6 +11761,82 @@ let
esel = esel_0_1_2;
+ espec_0_8_21 = callPackage
+ (
+ { buildMix, packageOverrides ? {}, fetchHex, meck_0_8_4 }:
+ buildMix ({
+ name = "espec";
+ version = "0.8.21";
+ src = fetchHex {
+ pkg = "espec";
+ version = "0.8.21";
+ sha256 =
+ "147d91a367d6bca9772b064195fd64f373a03e2d0bf57be5664ae780fd3508f5";
+ };
+ beamDeps = [ meck_0_8_4 ];
+
+ meta = {
+ description = ''BDD testing framework for Elixir inspired by
+ RSpec.'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/antonmi/espec";
+ };
+ } // packageOverrides)
+ ) {};
+
+ espec = espec_0_8_21;
+
+ esqlcipher_1_0_0 = callPackage
+ (
+ { buildRebar3, packageOverrides ? {}, fetchHex }:
+ buildRebar3 ({
+ name = "esqlcipher";
+ version = "1.0.0";
+ src = fetchHex {
+ pkg = "esqlcipher";
+ version = "1.0.0";
+ sha256 =
+ "f3a47df8cf7277b9352054e96a9745c77aa475a51ea36a18692a437b2af79b0b";
+ };
+ compilePorts = true;
+ buildPlugins = [ pc ];
+
+
+ meta = {
+ description = ''sqlcipher nif interface'';
+
+ };
+ } // packageOverrides)
+ ) {};
+
+ esqlcipher = esqlcipher_1_0_0;
+
+ esqlite_0_2_2 = callPackage
+ (
+ { buildRebar3, packageOverrides ? {}, fetchHex }:
+ buildRebar3 ({
+ name = "esqlite";
+ version = "0.2.2";
+ src = fetchHex {
+ pkg = "esqlite";
+ version = "0.2.2";
+ sha256 =
+ "5f15f8014baa9d31ee83817afe9164b3ecd76f77b2de7515f2cca2ca75b642e0";
+ };
+ compilePorts = true;
+ buildPlugins = [ pc ];
+
+
+ meta = {
+ description = ''A Sqlite3 NIF'';
+ license = stdenv.lib.licenses.asl20;
+ homepage = "https://github.com/mmzeeman/esqlite";
+ };
+ } // packageOverrides)
+ ) {};
+
+ esqlite = esqlite_0_2_2;
+
estree_2_3_0 = callPackage
(
{ buildMix, packageOverrides ? {}, fetchHex }:
@@ -8300,8 +11888,8 @@ let
ether_0_0_1 = callPackage
(
- { buildRebar3, packageOverrides ? {}, fetchHex }:
- buildRebar3 ({
+ { buildMix, packageOverrides ? {}, fetchHex }:
+ buildMix ({
name = "ether";
version = "0.0.1";
src = fetchHex {
@@ -8321,6 +11909,39 @@ let
ether = ether_0_0_1;
+ etherchain_org_0_0_5 = callPackage
+ (
+ {
+ buildMix,
+ packageOverrides ? {},
+ fetchHex,
+ vex_0_5_5,
+ poison_2_1_0,
+ httpoison_0_8_3
+ }:
+ buildMix ({
+ name = "etherchain_org";
+ version = "0.0.5";
+ src = fetchHex {
+ pkg = "etherchain_org";
+ version = "0.0.5";
+ sha256 =
+ "2ff545b4d78b507a664a5c246bb351be110cc647d960e39e65f2d9ce08669752";
+ };
+ beamDeps = [ vex_0_5_5 poison_2_1_0 httpoison_0_8_3 ];
+
+ meta = {
+ longDescription = ''WIP Elixir API wrapper for etherchain.org.
+ Provides access to ethereum blockchain data.'';
+ license = stdenv.lib.licenses.mit;
+ homepage =
+ "https://github.com/cyberpunk-ventures/etherchain_org_ex";
+ };
+ } // packageOverrides)
+ ) {};
+
+ etherchain_org = etherchain_org_0_0_5;
+
ets_map_0_0_1 = callPackage
(
{ buildMix, packageOverrides ? {}, fetchHex }:
@@ -8345,25 +11966,49 @@ let
ets_map = ets_map_0_0_1;
- etude_0_3_7 = callPackage
+ ets_owner_1_0_0 = callPackage
+ (
+ { buildMix, packageOverrides ? {}, fetchHex }:
+ buildMix ({
+ name = "ets_owner";
+ version = "1.0.0";
+ src = fetchHex {
+ pkg = "ets_owner";
+ version = "1.0.0";
+ sha256 =
+ "54c0228a9134f4afe5c2a5418712a8b010bbc3f3e4864f3c854110f6cb65bca9";
+ };
+
+ meta = {
+ description = ''A simple GenServer that owns your ETS tables and
+ won`t die, even if you do.'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/meyercm/ets_owner";
+ };
+ } // packageOverrides)
+ ) {};
+
+ ets_owner = ets_owner_1_0_0;
+
+ etude_0_1_5 = callPackage
(
{
buildMix,
packageOverrides ? {},
fetchHex,
rebind_0_1_3,
- lineo_0_1_0
+ lineo_0_0_1
}:
buildMix ({
name = "etude";
- version = "0.3.7";
+ version = "0.1.5";
src = fetchHex {
pkg = "etude";
- version = "0.3.7";
+ version = "0.1.5";
sha256 =
- "ee18b03eec697eccfd7027c4aaaa944e0d3335ece6c150504248763d94bbc338";
+ "4600f34a15fe85e74e181e4af9e4504ba1fedf42fcad77fd9d571b7443038355";
};
- beamDeps = [ rebind_0_1_3 lineo_0_1_0 ];
+ beamDeps = [ rebind_0_1_3 lineo_0_0_1 ];
meta = {
description = ''parallel computation coordination utilities for
@@ -8403,7 +12048,36 @@ let
} // packageOverrides)
) {};
- etude = etude_1_0_0_beta_0;
+ etude_1_0_0_beta_2 = callPackage
+ (
+ {
+ buildMix,
+ packageOverrides ? {},
+ fetchHex,
+ poison_2_1_0,
+ nile_0_1_3
+ }:
+ buildMix ({
+ name = "etude";
+ version = "1.0.0-beta.2";
+ src = fetchHex {
+ pkg = "etude";
+ version = "1.0.0-beta.2";
+ sha256 =
+ "f05d1c5b191a19a3828a89be221b4a8f7bf9fb2227ebc05b7116dc1965872cef";
+ };
+ beamDeps = [ poison_2_1_0 nile_0_1_3 ];
+
+ meta = {
+ description = ''parallel computation coordination utilities for
+ erlang/elixir'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/camshaft/etude";
+ };
+ } // packageOverrides)
+ ) {};
+
+ etude = etude_1_0_0_beta_2;
eunit_formatters_0_3_1 = callPackage
(
@@ -8428,19 +12102,42 @@ let
eunit_formatters = eunit_formatters_0_3_1;
- evel_0_1_0 = callPackage
+ eunit_sugar_0_1_0 = callPackage
+ (
+ { buildRebar3, packageOverrides ? {}, fetchHex }:
+ buildRebar3 ({
+ name = "eunit_sugar";
+ version = "0.1.0";
+ src = fetchHex {
+ pkg = "eunit_sugar";
+ version = "0.1.0";
+ sha256 =
+ "f30c41d711650270d8654f9067a3b5d16d73242e0eed19082b70676e9f05bb6e";
+ };
+
+ meta = {
+ description = ''Helpers and sugars for eunit tests'';
+ license = stdenv.lib.licenses.apsl20;
+ homepage = "https://github.com/xenolinguist/eunit_sugar";
+ };
+ } // packageOverrides)
+ ) {};
+
+ eunit_sugar = eunit_sugar_0_1_0;
+
+ evel_0_1_1 = callPackage
(
{
buildRebar3, packageOverrides ? {}, fetchHex, hash_ring_0_4_0
}:
buildRebar3 ({
name = "evel";
- version = "0.1.0";
+ version = "0.1.1";
src = fetchHex {
pkg = "evel";
- version = "0.1.0";
+ version = "0.1.1";
sha256 =
- "5f381ab07b2f914b437808da2ef01fb2905349d17d467f5b5008bfdb5a2418dd";
+ "b849699912f797e2b0082b43d0f58b18de838379b499c47dc24194d9fec03e6e";
};
beamDeps = [ hash_ring_0_4_0 ];
@@ -8453,7 +12150,31 @@ let
} // packageOverrides)
) {};
- evel = evel_0_1_0;
+ evel = evel_0_1_1;
+
+ event_nanny_0_1_1 = callPackage
+ (
+ { buildMix, packageOverrides ? {}, fetchHex }:
+ buildMix ({
+ name = "event_nanny";
+ version = "0.1.1";
+ src = fetchHex {
+ pkg = "event_nanny";
+ version = "0.1.1";
+ sha256 =
+ "4d46b285e5187fc8e63f7911087dcff54fb46ca347b457013e9bd9901f9cc9d1";
+ };
+
+ meta = {
+ description = ''Nanny for GenEvent restart handler when it exit
+ abnormally'';
+ license = stdenv.lib.licenses.asl20;
+ homepage = "https://github.com/ammbot/event-nanny.git";
+ };
+ } // packageOverrides)
+ ) {};
+
+ event_nanny = event_nanny_0_1_1;
eventstore_0_2_1 = callPackage
(
@@ -8486,13 +12207,45 @@ let
eventstore = eventstore_0_2_1;
+ eventstore_client_0_1_4 = callPackage
+ (
+ {
+ buildMix,
+ packageOverrides ? {},
+ fetchHex,
+ uuid_1_1_4,
+ poison_2_1_0,
+ httpoison_0_8_3
+ }:
+ buildMix ({
+ name = "eventstore_client";
+ version = "0.1.4";
+ src = fetchHex {
+ pkg = "eventstore_client";
+ version = "0.1.4";
+ sha256 =
+ "fa77e1a7906b3ed27c0dfa0bd41f27b3129285857948aa23a3f888b0dd531109";
+ };
+ beamDeps = [ uuid_1_1_4 poison_2_1_0 httpoison_0_8_3 ];
+
+ meta = {
+ description = ''HTTP Client for EventStore (geteventstore.com)'';
+
+ homepage =
+ "https://github.com/tbug/elixir-eventstore-http-client";
+ };
+ } // packageOverrides)
+ ) {};
+
+ eventstore_client = eventstore_client_0_1_4;
+
ewebmachine_2_0_12 = callPackage
(
{
buildMix,
packageOverrides ? {},
fetchHex,
- plug_1_1_3,
+ plug_1_1_5,
cowboy_1_0_4
}:
buildMix ({
@@ -8504,7 +12257,7 @@ let
sha256 =
"66a4ca701594da9396d6bab03f074f1ab56080a62e6545e6e455a24296c96a1a";
};
- beamDeps = [ plug_1_1_3 cowboy_1_0_4 ];
+ beamDeps = [ plug_1_1_5 cowboy_1_0_4 ];
meta = {
longDescription = ''Ewebmachine contains macros and plugs to
@@ -8572,6 +12325,70 @@ let
ex_abnf = ex_abnf_0_2_7;
+ ex_bcrypt_0_0_1 = callPackage
+ (
+ { buildMix, packageOverrides ? {}, fetchHex, bcrypt_0_5_0_p3a }:
+ buildMix ({
+ name = "ex_bcrypt";
+ version = "0.0.1";
+ src = fetchHex {
+ pkg = "ex_bcrypt";
+ version = "0.0.1";
+ sha256 =
+ "c6c91e333f3e84733bb8fca08af9fda01b20f3b2a8801e456b31103118418e81";
+ };
+ beamDeps = [ bcrypt_0_5_0_p3a ];
+
+ meta = {
+ description = ''Elixir wrapper for the OpenBSD bcrypt password
+ hashing algorithm'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/manelli/ex_bcrypt";
+ };
+ } // packageOverrides)
+ ) {};
+
+ ex_bcrypt = ex_bcrypt_0_0_1;
+
+ ex_blocktrail_0_2_1 = callPackage
+ (
+ {
+ buildMix,
+ packageOverrides ? {},
+ fetchHex,
+ yuri_1_0_0,
+ vex_0_5_5,
+ exconstructor_1_0_2,
+ poison_2_1_0,
+ httpoison_0_8_3
+ }:
+ buildMix ({
+ name = "ex_blocktrail";
+ version = "0.2.1";
+ src = fetchHex {
+ pkg = "ex_blocktrail";
+ version = "0.2.1";
+ sha256 =
+ "96a4090676a01f6644b95e8f65b1bd19f4142435d2f1b3cb2dbd79d883579f42";
+ };
+ beamDeps = [
+ yuri_1_0_0
+ vex_0_5_5
+ exconstructor_1_0_2
+ poison_2_1_0
+ httpoison_0_8_3
+ ];
+
+ meta = {
+ longDescription = ''WIP. Alpha. Elixir wrapper for blocktrail.com
+ Bitcoin api and some utility functions.'';
+ license = stdenv.lib.licenses.mit;
+ };
+ } // packageOverrides)
+ ) {};
+
+ ex_blocktrail = ex_blocktrail_0_2_1;
+
ex_brace_expansion_0_0_2 = callPackage
(
{ buildMix, packageOverrides ? {}, fetchHex }:
@@ -8599,19 +12416,19 @@ let
ex_brace_expansion = ex_brace_expansion_0_0_2;
- ex_clacks_0_1_1 = callPackage
+ ex_clacks_0_1_2 = callPackage
(
- { buildMix, packageOverrides ? {}, fetchHex, plug_1_1_3 }:
+ { buildMix, packageOverrides ? {}, fetchHex, plug_1_1_5 }:
buildMix ({
name = "ex_clacks";
- version = "0.1.1";
+ version = "0.1.2";
src = fetchHex {
pkg = "ex_clacks";
- version = "0.1.1";
+ version = "0.1.2";
sha256 =
- "524f966b03b1a1ac4ab3f6beeef6ce5030cf3b16927c466d42a8b08c5355b231";
+ "8299396f26982bbaed7f12988277174d3d3e92e0a5efe685c8d0133e08e013cc";
};
- beamDeps = [ plug_1_1_3 ];
+ beamDeps = [ plug_1_1_5 ];
meta = {
description = ''A Plug that pays homage to Terry Pratchett'';
@@ -8621,7 +12438,114 @@ let
} // packageOverrides)
) {};
- ex_clacks = ex_clacks_0_1_1;
+ ex_clacks = ex_clacks_0_1_2;
+
+ ex_cli_0_1_0 = callPackage
+ (
+ { buildMix, packageOverrides ? {}, fetchHex }:
+ buildMix ({
+ name = "ex_cli";
+ version = "0.1.0";
+ src = fetchHex {
+ pkg = "ex_cli";
+ version = "0.1.0";
+ sha256 =
+ "81e42a05730752f891b8fc1cbced2e5733d48df144ab91aeb41a8093cb42264e";
+ };
+
+ meta = {
+ description = ''Library to build CLI applications'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/tuvistavie/ex_cli";
+ };
+ } // packageOverrides)
+ ) {};
+
+ ex_cli = ex_cli_0_1_0;
+
+ ex_closeio_0_1_1 = callPackage
+ (
+ {
+ buildMix,
+ packageOverrides ? {},
+ fetchHex,
+ poison_2_1_0,
+ httpoison_0_8_3
+ }:
+ buildMix ({
+ name = "ex_closeio";
+ version = "0.1.1";
+ src = fetchHex {
+ pkg = "ex_closeio";
+ version = "0.1.1";
+ sha256 =
+ "0bf03085e9ac1d548a73f5e8fa91d78c201c8fa46b3e65b89aca82f887af9cce";
+ };
+ beamDeps = [ poison_2_1_0 httpoison_0_8_3 ];
+
+ meta = {
+ description = ''Close.io client library for Elixir.'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/taylorbrooks/ex_closeio";
+ };
+ } // packageOverrides)
+ ) {};
+
+ ex_closeio = ex_closeio_0_1_1;
+
+ ex_cron_0_0_2 = callPackage
+ (
+ { buildMix, packageOverrides ? {}, fetchHex }:
+ buildMix ({
+ name = "ex_cron";
+ version = "0.0.2";
+ src = fetchHex {
+ pkg = "ex_cron";
+ version = "0.0.2";
+ sha256 =
+ "2d0be58e834bdadd69336f0dd9d61d5e678d99b4de9a766ed45ea85fc87a97cb";
+ };
+
+ meta = {
+ description = ''Cron schedule generator for Elixir.'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/codestuffers/ex-cron";
+ };
+ } // packageOverrides)
+ ) {};
+
+ ex_cron = ex_cron_0_0_2;
+
+ ex_crypto_0_1_1 = callPackage
+ (
+ {
+ buildMix,
+ packageOverrides ? {},
+ fetchHex,
+ poison_2_1_0,
+ pipe_0_0_2
+ }:
+ buildMix ({
+ name = "ex_crypto";
+ version = "0.1.1";
+ src = fetchHex {
+ pkg = "ex_crypto";
+ version = "0.1.1";
+ sha256 =
+ "6686151799d3fb5be28e43a05ef3689e1d1144a0d97e4ff3b41fb039265146cb";
+ };
+ beamDeps = [ poison_2_1_0 pipe_0_0_2 ];
+
+ meta = {
+ longDescription = ''A wrapper around the Erlang Crypto module
+ with sensible defaults for common tasks.'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/ntrepid8/ex_crypto";
+ };
+ } // packageOverrides)
+ ) {};
+
+ ex_crypto = ex_crypto_0_1_1;
ex_csv_0_1_4 = callPackage
(
@@ -8646,142 +12570,9 @@ let
ex_csv = ex_csv_0_1_4;
- ex_doc_0_10_0 = callPackage
- (
- { buildMix, packageOverrides ? {}, fetchHex, earmark_0_1_15 }:
- buildMix ({
- name = "ex_doc";
- version = "0.10.0";
- src = fetchHex {
- pkg = "ex_doc";
- version = "0.10.0";
- sha256 =
- "3d9f15777aa3fb62700d5984eb09ceeb6c1574d61be0f70801e3390e36942b35";
- };
- beamDeps = [ earmark_0_1_15 ];
-
- meta = {
- description = ''ExDoc is a documentation generation tool for
- Elixir'';
- license = stdenv.lib.licenses.asl20;
- homepage = "https://github.com/elixir-lang/ex_doc";
- };
- } // packageOverrides)
- ) {};
-
- ex_doc_0_11_4 = callPackage
- (
- { buildMix, packageOverrides ? {}, fetchHex, earmark_0_1_15 }:
- buildMix ({
- name = "ex_doc";
- version = "0.11.4";
- src = fetchHex {
- pkg = "ex_doc";
- version = "0.11.4";
- sha256 =
- "639e97b24c1c6c172f557163b830673646983417de9ac0da2c25c7063deed293";
- };
- beamDeps = [ earmark_0_1_15 ];
-
- meta = {
- description = ''ExDoc is a documentation generation tool for
- Elixir'';
- license = stdenv.lib.licenses.asl20;
- homepage = "https://github.com/elixir-lang/ex_doc";
- };
- } // packageOverrides)
- ) {};
-
- ex_doc = ex_doc_0_11_4;
-
- ex_doc_0_7_3 = callPackage
- (
- { buildMix, packageOverrides ? {}, fetchHex, earmark_0_1_15 }:
- buildMix ({
- name = "ex_doc";
- version = "0.7.3";
- src = fetchHex {
- pkg = "ex_doc";
- version = "0.7.3";
- sha256 =
- "45efbc6d2dc58d864e41be8a4321a5ecf643a061ec71487453447b29539f81ff";
- };
- beamDeps = [ earmark_0_1_15 ];
-
- meta = {
- description = ''ExDoc is a documentation generation tool for
- Elixir'';
- license = stdenv.lib.licenses.asl20;
- homepage = "https://github.com/elixir-lang/ex_doc";
- };
- } // packageOverrides)
- ) {};
-
- ex_doc_dash_0_3_0 = callPackage
- (
- {
- buildMix,
- packageOverrides ? {},
- fetchHex,
- ex_doc_0_11_4,
- earmark_0_1_15
- }:
- buildMix ({
- name = "ex_doc_dash";
- version = "0.3.0";
- src = fetchHex {
- pkg = "ex_doc_dash";
- version = "0.3.0";
- sha256 =
- "0b511eecda1dd2c51fab8b1e071e3d6292f6a136232425d3f20baa9ca0fbeb43";
- };
- beamDeps = [ ex_doc_0_11_4 earmark_0_1_15 ];
-
- meta = {
- description = ''Formatter for ExDoc to generate docset
- documentation for use in Dash.app.'';
- license = stdenv.lib.licenses.mit;
- homepage = "https://github.com/JonGretar/ExDocDash";
- };
- } // packageOverrides)
- ) {};
-
- ex_doc_dash = ex_doc_dash_0_3_0;
-
- ex_doc_epub_0_0_2 = callPackage
- (
- {
- buildMix,
- packageOverrides ? {},
- fetchHex,
- ex_doc_0_11_4,
- earmark_0_1_19
- }:
- buildMix ({
- name = "ex_doc_epub";
- version = "0.0.2";
- src = fetchHex {
- pkg = "ex_doc_epub";
- version = "0.0.2";
- sha256 =
- "dbb606e86c70cff37fb2e228f9b5971ee3afb08a10c247d5734b114c5d5fdb15";
- };
- beamDeps = [ ex_doc_0_11_4 earmark_0_1_19 ];
-
- meta = {
- description = ''Create documentation for Elixir projects in EPUB
- format'';
- license = stdenv.lib.licenses.mit;
- homepage = "https://github.com/milmazz/ex_doc_epub";
- };
- } // packageOverrides)
- ) {};
-
- ex_doc_epub = ex_doc_epub_0_0_2;
-
ex_enum_0_1_0 = callPackage
(
- { buildMix, packageOverrides ? {}, fetchHex, gettext_0_10_0 }:
+ { buildMix, packageOverrides ? {}, fetchHex, gettext_0_11_0 }:
buildMix ({
name = "ex_enum";
version = "0.1.0";
@@ -8791,7 +12582,7 @@ let
sha256 =
"f6685959ef337018e42c4baccdce98cc9618974759d1fdb969fcf9a266e590ea";
};
- beamDeps = [ gettext_0_10_0 ];
+ beamDeps = [ gettext_0_11_0 ];
meta = {
description = ''Enum library for Elixir inspired by
@@ -8827,17 +12618,17 @@ let
ex_fabricators = ex_fabricators_0_1_0;
- ex_guard_0_10_0 = callPackage
+ ex_guard_1_1_0 = callPackage
(
{ buildMix, packageOverrides ? {}, fetchHex, fs_0_9_2 }:
buildMix ({
name = "ex_guard";
- version = "0.10.0";
+ version = "1.1.0";
src = fetchHex {
pkg = "ex_guard";
- version = "0.10.0";
+ version = "1.1.0";
sha256 =
- "5e099659bf2e197e8d7acfbad597b48c59961c1f61f8ec45d4e22a5d6f6e6fb5";
+ "5f990eb24b673c782b4e742351bab14ce466146f3ea1e5324b6b7c34122bd4f9";
};
beamDeps = [ fs_0_9_2 ];
@@ -8851,19 +12642,19 @@ let
} // packageOverrides)
) {};
- ex_guard = ex_guard_0_10_0;
+ ex_guard = ex_guard_1_1_0;
- ex_hl7_0_1_3 = callPackage
+ ex_hl7_0_2_2 = callPackage
(
{ buildMix, packageOverrides ? {}, fetchHex }:
buildMix ({
name = "ex_hl7";
- version = "0.1.3";
+ version = "0.2.2";
src = fetchHex {
pkg = "ex_hl7";
- version = "0.1.3";
+ version = "0.2.2";
sha256 =
- "57ea6567e6da3cb14098bddb95a843dbfb04981578ad5a0f3c437bce8ac9cd29";
+ "b6653fd28949f5dc37f18af4320f13dcdea796553e0c429a8260d5c4bf481b0f";
};
meta = {
@@ -8874,19 +12665,19 @@ let
} // packageOverrides)
) {};
- ex_hl7 = ex_hl7_0_1_3;
+ ex_hl7 = ex_hl7_0_2_2;
- ex_ical_0_0_1 = callPackage
+ ex_ical_0_0_3 = callPackage
(
{ buildMix, packageOverrides ? {}, fetchHex, timex_1_0_2 }:
buildMix ({
name = "ex_ical";
- version = "0.0.1";
+ version = "0.0.3";
src = fetchHex {
pkg = "ex_ical";
- version = "0.0.1";
+ version = "0.0.3";
sha256 =
- "b8b41eb4626fc41e36f054de8983d944d100f103979bd82d069b3a982bb51959";
+ "435bade398c8b72e2515f91eef89f6309951800e8bd30a0a616c1039502c8c95";
};
beamDeps = [ timex_1_0_2 ];
@@ -8898,19 +12689,52 @@ let
} // packageOverrides)
) {};
- ex_ical = ex_ical_0_0_1;
+ ex_ical = ex_ical_0_0_3;
- ex_json_schema_0_3_1 = callPackage
+ ex_iss_1_0_0 = callPackage
+ (
+ {
+ buildMix,
+ packageOverrides ? {},
+ fetchHex,
+ poison_1_5_2,
+ httpoison_0_8_3
+ }:
+ buildMix ({
+ name = "ex_iss";
+ version = "1.0.0";
+ src = fetchHex {
+ pkg = "ex_iss";
+ version = "1.0.0";
+ sha256 =
+ "8b2b2eebbd75593e814e712555c7f69138864317cf2f0093a82ca305138baa83";
+ };
+ beamDeps = [ poison_1_5_2 httpoison_0_8_3 ];
+
+ meta = {
+ longDescription = ''This package is for interfacing with the Open
+ Notify API to information such as the ISS`s
+ current location, crew, and when it will pass
+ over a location.'';
+ license = stdenv.lib.licenses.free;
+ homepage = "https://github.com/cryptobird/ex_iss";
+ };
+ } // packageOverrides)
+ ) {};
+
+ ex_iss = ex_iss_1_0_0;
+
+ ex_json_schema_0_4_1 = callPackage
(
{ buildMix, packageOverrides ? {}, fetchHex }:
buildMix ({
name = "ex_json_schema";
- version = "0.3.1";
+ version = "0.4.1";
src = fetchHex {
pkg = "ex_json_schema";
- version = "0.3.1";
+ version = "0.4.1";
sha256 =
- "928faaafb82e08f0458257b4eea9e7fb7cc0bd2551103d0ae4fcb1840d343cc4";
+ "4acefaa5da4de55d984d1e86be40f6af2173e744cc4f77e70a701a0ea1604328";
};
meta = {
@@ -8923,19 +12747,19 @@ let
} // packageOverrides)
) {};
- ex_json_schema = ex_json_schema_0_3_1;
+ ex_json_schema = ex_json_schema_0_4_1;
- ex_link_header_0_0_3 = callPackage
+ ex_link_header_0_0_4 = callPackage
(
{ buildMix, packageOverrides ? {}, fetchHex }:
buildMix ({
name = "ex_link_header";
- version = "0.0.3";
+ version = "0.0.4";
src = fetchHex {
pkg = "ex_link_header";
- version = "0.0.3";
+ version = "0.0.4";
sha256 =
- "f4edcb2194c7480f2b03f00da68d25de03c38d217497639ebdbca6325890e153";
+ "4ced0014c98703184c1afaf390298593a88503f7fc26b138b20c0a53cc614558";
};
meta = {
@@ -8946,7 +12770,7 @@ let
} // packageOverrides)
) {};
- ex_link_header = ex_link_header_0_0_3;
+ ex_link_header = ex_link_header_0_0_4;
ex_machina_0_6_1 = callPackage
(
@@ -8998,7 +12822,7 @@ let
ex_marshal_0_0_3 = callPackage
(
- { buildMix, packageOverrides ? {}, fetchHex, decimal_1_1_1 }:
+ { buildMix, packageOverrides ? {}, fetchHex, decimal_1_1_2 }:
buildMix ({
name = "ex_marshal";
version = "0.0.3";
@@ -9008,7 +12832,7 @@ let
sha256 =
"28eaf18799bca83519d0ac517a4fd0a9a2211bea7f96c74b27952a20be2938a8";
};
- beamDeps = [ decimal_1_1_1 ];
+ beamDeps = [ decimal_1_1_2 ];
meta = {
description = ''Ruby Marshal format implemented in Elixir.'';
@@ -9020,6 +12844,37 @@ let
ex_marshal = ex_marshal_0_0_3;
+ ex_microsoftbot_0_1_0 = callPackage
+ (
+ {
+ buildMix,
+ packageOverrides ? {},
+ fetchHex,
+ poison_2_1_0,
+ httpotion_2_2_2
+ }:
+ buildMix ({
+ name = "ex_microsoftbot";
+ version = "0.1.0";
+ src = fetchHex {
+ pkg = "ex_microsoftbot";
+ version = "0.1.0";
+ sha256 =
+ "638a30cab3f9bc85b76beb0dacd3e5d71724ad10de73170f00df12a29eed8d0a";
+ };
+ beamDeps = [ poison_2_1_0 httpotion_2_2_2 ];
+
+ meta = {
+ description = ''This library provides Elixir API wrapper for the
+ Microsoft Bot Framework.'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/zabirauf/ex_microsoftbot";
+ };
+ } // packageOverrides)
+ ) {};
+
+ ex_microsoftbot = ex_microsoftbot_0_1_0;
+
ex_minimatch_0_0_1 = callPackage
(
{
@@ -9145,6 +13000,30 @@ let
ex_pool = ex_pool_0_1_1;
+ ex_prima_toolbox_0_0_2 = callPackage
+ (
+ { buildMix, packageOverrides ? {}, fetchHex, ex_cli_0_1_0 }:
+ buildMix ({
+ name = "ex_prima_toolbox";
+ version = "0.0.2";
+ src = fetchHex {
+ pkg = "ex_prima_toolbox";
+ version = "0.0.2";
+ sha256 =
+ "7fc93cf69afba247bbd97118fc56b6d3d79dc6767126581a262b97bff2ffd045";
+ };
+ beamDeps = [ ex_cli_0_1_0 ];
+
+ meta = {
+ description = ''elixir toolbox for prima.it'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/primait/ex_toolbox";
+ };
+ } // packageOverrides)
+ ) {};
+
+ ex_prima_toolbox = ex_prima_toolbox_0_0_2;
+
ex_prometheus_io_0_0_3 = callPackage
(
{ buildMix, packageOverrides ? {}, fetchHex, poison_1_5_2 }:
@@ -9252,38 +13131,60 @@ let
ex_rfc3986 = ex_rfc3986_0_2_6;
- ex_slp_0_1_0 = callPackage
+ ex_sider_0_1_0 = callPackage
+ (
+ { buildMix, packageOverrides ? {}, fetchHex }:
+ buildMix ({
+ name = "ex_sider";
+ version = "0.1.0";
+ src = fetchHex {
+ pkg = "ex_sider";
+ version = "0.1.0";
+ sha256 =
+ "00e1fba7bf19e4e072a98941c7ef11cc171e3ed44fdfd0c9bd0c110babf80e34";
+ };
+
+ meta = {
+ description = ''Elixir Map/List/Set interfaces for Redis
+ datastructures.'';
+ license = stdenv.lib.licenses.wtfpl;
+ homepage = "https://github.com/ephe-meral/ex_sider";
+ };
+ } // packageOverrides)
+ ) {};
+
+ ex_sider = ex_sider_0_1_0;
+
+ ex_sonar_0_0_4 = callPackage
(
{
buildMix,
packageOverrides ? {},
fetchHex,
- ex_doc_0_11_4,
- earmark_0_2_1
+ floki_0_8_1,
+ poison_2_1_0,
+ httpoison_0_8_3
}:
buildMix ({
- name = "ex_slp";
- version = "0.1.0";
+ name = "ex_sonar";
+ version = "0.0.4";
src = fetchHex {
- pkg = "ex_slp";
- version = "0.1.0";
+ pkg = "ex_sonar";
+ version = "0.0.4";
sha256 =
- "9356a927d0809af648320b56d40929edb7c5807955b7460f362f674f1326e4c2";
+ "a0e83e87ae58522ed6f37bb8742a0873be0870e6a60673efa615551b68d5bd4b";
};
- beamDeps = [ ex_doc_0_11_4 earmark_0_2_1 ];
+ beamDeps = [ floki_0_8_1 poison_2_1_0 httpoison_0_8_3 ];
meta = {
- longDescription = ''Zero-config local network Elixir/Erlang node
- discovery lib. Allows an Elixir node to register
- itself as a local netowrk service and discover
- the orher registered services.'';
+ description = ''A Send Sonar API interface for Elixir'';
license = stdenv.lib.licenses.mit;
- homepage = "https://github.com/4pcbr/ex_slp_tk";
+ homepage = "https://github.com/enilsen16/ex_sonar";
};
} // packageOverrides)
) {};
- ex_slp = ex_slp_0_1_0;
+ ex_sonar = ex_sonar_0_0_4;
ex_spec_1_0_0 = callPackage
(
@@ -9308,17 +13209,17 @@ let
ex_spec = ex_spec_1_0_0;
- ex_sshd_0_0_1 = callPackage
+ ex_sshd_0_0_2 = callPackage
(
{ buildMix, packageOverrides ? {}, fetchHex }:
buildMix ({
name = "ex_sshd";
- version = "0.0.1";
+ version = "0.0.2";
src = fetchHex {
pkg = "ex_sshd";
- version = "0.0.1";
+ version = "0.0.2";
sha256 =
- "5227d6e0bc1c2227f60529679bc60494f6599f1ebe786389e0d15a7a2d92d83e";
+ "9c7f73aab2d7697ef81eea582dfbde8033e8266dd6de2d34c36bd7e4905b7de4";
};
meta = {
@@ -9330,7 +13231,7 @@ let
} // packageOverrides)
) {};
- ex_sshd = ex_sshd_0_0_1;
+ ex_sshd = ex_sshd_0_0_2;
ex_statsd_0_5_3 = callPackage
(
@@ -9355,19 +13256,25 @@ let
ex_statsd = ex_statsd_0_5_3;
- ex_sync_0_0_2 = callPackage
+ ex_sync_0_0_3 = callPackage
(
- { buildMix, packageOverrides ? {}, fetchHex, connection_1_0_2 }:
+ {
+ buildMix,
+ packageOverrides ? {},
+ fetchHex,
+ poolboy_1_5_1,
+ connection_1_0_2
+ }:
buildMix ({
name = "ex_sync";
- version = "0.0.2";
+ version = "0.0.3";
src = fetchHex {
pkg = "ex_sync";
- version = "0.0.2";
+ version = "0.0.3";
sha256 =
- "2e6eb61310c708f59d10a5c53549230091a4e75c98352dcf04f34fabf3f81c35";
+ "bccd72623f75430ca10d5660c7316a6439921161beb7aa65b686713503ea147a";
};
- beamDeps = [ connection_1_0_2 ];
+ beamDeps = [ poolboy_1_5_1 connection_1_0_2 ];
meta = {
longDescription = ''A library to handle [Differential
@@ -9379,7 +13286,7 @@ let
} // packageOverrides)
) {};
- ex_sync = ex_sync_0_0_2;
+ ex_sync = ex_sync_0_0_3;
ex_test_0_0_2 = callPackage
(
@@ -9405,26 +13312,56 @@ let
ex_test = ex_test_0_0_2;
- ex_twilio_0_1_4 = callPackage
+ ex_tumblr_0_0_1 = callPackage
+ (
+ {
+ buildMix,
+ packageOverrides ? {},
+ fetchHex,
+ poison_2_1_0,
+ oauther_1_0_2,
+ httpoison_0_8_3
+ }:
+ buildMix ({
+ name = "ex_tumblr";
+ version = "0.0.1";
+ src = fetchHex {
+ pkg = "ex_tumblr";
+ version = "0.0.1";
+ sha256 =
+ "9517b1ca411c91ad7e9776f7e2783908b400fee1779e497fdb1b3c515f61a253";
+ };
+ beamDeps = [ poison_2_1_0 oauther_1_0_2 httpoison_0_8_3 ];
+
+ meta = {
+ description = ''A client for the Tumblr API v2.'';
+ license = stdenv.lib.licenses.mit;
+ };
+ } // packageOverrides)
+ ) {};
+
+ ex_tumblr = ex_tumblr_0_0_1;
+
+ ex_twilio_0_1_8 = callPackage
(
{
buildMix,
packageOverrides ? {},
fetchHex,
- poison_1_5_2,
inflex_1_5_0,
+ poison_2_1_0,
httpotion_2_2_2
}:
buildMix ({
name = "ex_twilio";
- version = "0.1.4";
+ version = "0.1.8";
src = fetchHex {
pkg = "ex_twilio";
- version = "0.1.4";
+ version = "0.1.8";
sha256 =
- "97caa270770cd0d9f17de05ad8498fab48eb8c6ac28e66cf6a64aa0ebf26b60d";
+ "0c7aed748ff4bfb9d8e1f43422d36d41433caa6cf19dc2fa208031d9f8240077";
};
- beamDeps = [ poison_1_5_2 inflex_1_5_0 httpotion_2_2_2 ];
+ beamDeps = [ inflex_1_5_0 poison_2_1_0 httpotion_2_2_2 ];
meta = {
description = ''Twilio API library for Elixir'';
@@ -9434,7 +13371,7 @@ let
} // packageOverrides)
) {};
- ex_twilio = ex_twilio_0_1_4;
+ ex_twilio = ex_twilio_0_1_8;
ex_twiml_2_1_0 = callPackage
(
@@ -9483,17 +13420,17 @@ let
ex_unit_fixtures = ex_unit_fixtures_0_3_1;
- ex_unit_notifier_0_1_0 = callPackage
+ ex_unit_notifier_0_1_1 = callPackage
(
{ buildMix, packageOverrides ? {}, fetchHex }:
buildMix ({
name = "ex_unit_notifier";
- version = "0.1.0";
+ version = "0.1.1";
src = fetchHex {
pkg = "ex_unit_notifier";
- version = "0.1.0";
+ version = "0.1.1";
sha256 =
- "e7566bd9ec23dc6862ea660667f1e9525af26609cef5ed03694b4e33049c5325";
+ "78afb11d6a470b379de113bde1ff9e0537f5243bc957614961d8e8dadc062268";
};
meta = {
@@ -9504,9 +13441,9 @@ let
} // packageOverrides)
) {};
- ex_unit_notifier = ex_unit_notifier_0_1_0;
+ ex_unit_notifier = ex_unit_notifier_0_1_1;
- ex_victor_ops_0_2_1 = callPackage
+ ex_victor_ops_0_3_1 = callPackage
(
{
buildMix,
@@ -9517,12 +13454,12 @@ let
}:
buildMix ({
name = "ex_victor_ops";
- version = "0.2.1";
+ version = "0.3.1";
src = fetchHex {
pkg = "ex_victor_ops";
- version = "0.2.1";
+ version = "0.3.1";
sha256 =
- "86941d8955783640b7991c0f049ba428a3595d55aa85dcd1cb3e4edaaee62125";
+ "7a8065e44c105952a843f532ab6b1cb59209e886f0770e20bf917fb742f0b9af";
};
beamDeps = [ poison_2_1_0 httpotion_2_2_2 ];
@@ -9534,7 +13471,7 @@ let
} // packageOverrides)
) {};
- ex_victor_ops = ex_victor_ops_0_2_1;
+ ex_victor_ops = ex_victor_ops_0_3_1;
ex_vmstats_0_0_1 = callPackage
(
@@ -9584,19 +13521,18 @@ let
exactor = exactor_2_2_0;
- exalgebra_0_0_4 = callPackage
+ exalgebra_0_0_5 = callPackage
(
- { buildMix, packageOverrides ? {}, fetchHex, eye_drops_1_0_1 }:
+ { buildMix, packageOverrides ? {}, fetchHex }:
buildMix ({
name = "exalgebra";
- version = "0.0.4";
+ version = "0.0.5";
src = fetchHex {
pkg = "exalgebra";
- version = "0.0.4";
+ version = "0.0.5";
sha256 =
- "8994432fa46db0aa36fa1637a1a856c8ade4472435335220db4f9f56e2c23c4d";
+ "b84a96ffb7a2dd0c497f176c2e9d0ef07c719f09702d71fb8a801a3f2db1ab50";
};
- beamDeps = [ eye_drops_1_0_1 ];
meta = {
longDescription = ''The ExAlgebra library is a collection of
@@ -9608,7 +13544,38 @@ let
} // packageOverrides)
) {};
- exalgebra = exalgebra_0_0_4;
+ exalgebra = exalgebra_0_0_5;
+
+ exalice_0_0_6_alpha = callPackage
+ (
+ {
+ buildMix,
+ packageOverrides ? {},
+ fetchHex,
+ tirexs_0_8_0_beta6,
+ poison_2_1_0,
+ httpoison_0_8_3
+ }:
+ buildMix ({
+ name = "exalice";
+ version = "0.0.6-alpha";
+ src = fetchHex {
+ pkg = "exalice";
+ version = "0.0.6-alpha";
+ sha256 =
+ "b5f95ddebb9def3efb926fc7e4c639bbad008e5e19073b56e13d684417520922";
+ };
+ beamDeps = [ tirexs_0_8_0_beta6 poison_2_1_0 httpoison_0_8_3 ];
+
+ meta = {
+ description = ''ExAlice, a geocoder with swappable storage'';
+ license = stdenv.lib.licenses.asl20;
+ homepage = "https://github.com/kpanic/exalice";
+ };
+ } // packageOverrides)
+ ) {};
+
+ exalice = exalice_0_0_6_alpha;
example_files_0_2_0 = callPackage
(
@@ -9737,6 +13704,36 @@ let
excellent = excellent_0_0_1;
+ excetera_0_0_3 = callPackage
+ (
+ {
+ buildMix,
+ packageOverrides ? {},
+ fetchHex,
+ poison_2_1_0,
+ httpoison_0_8_3
+ }:
+ buildMix ({
+ name = "excetera";
+ version = "0.0.3";
+ src = fetchHex {
+ pkg = "excetera";
+ version = "0.0.3";
+ sha256 =
+ "e127e4f553c3925ce301b782cd8e8f123c72cf2463f7f032042f59892e5f37c3";
+ };
+ beamDeps = [ poison_2_1_0 httpoison_0_8_3 ];
+
+ meta = {
+ description = ''Elixir bindings for etcd`s HTTP API.'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/mingchuno/excetera";
+ };
+ } // packageOverrides)
+ ) {};
+
+ excetera = excetera_0_0_3;
+
excoap_0_0_1 = callPackage
(
{ buildMix, packageOverrides ? {}, fetchHex }:
@@ -9760,6 +13757,31 @@ let
excoap = excoap_0_0_1;
+ excollections_0_0_2 = callPackage
+ (
+ { buildMix, packageOverrides ? {}, fetchHex }:
+ buildMix ({
+ name = "excollections";
+ version = "0.0.2";
+ src = fetchHex {
+ pkg = "excollections";
+ version = "0.0.2";
+ sha256 =
+ "1924fd5bd3c1c7418a9150ca8fcb2d2700a82671f3a76972edc9bc51d32a2093";
+ };
+
+ meta = {
+ longDescription = ''A collection of data-structures and related
+ algorithms for Elixir, implemented in Elixir.'';
+ license = stdenv.lib.licenses.mit;
+ homepage =
+ "https://github.com/metabrain/elixir-playground/tree/master/excollections";
+ };
+ } // packageOverrides)
+ ) {};
+
+ excollections = excollections_0_0_2;
+
exconstructor_1_0_2 = callPackage
(
{ buildMix, packageOverrides ? {}, fetchHex }:
@@ -9787,6 +13809,29 @@ let
exconstructor = exconstructor_1_0_2;
+ exdash_0_3_1 = callPackage
+ (
+ { buildMix, packageOverrides ? {}, fetchHex }:
+ buildMix ({
+ name = "exdash";
+ version = "0.3.1";
+ src = fetchHex {
+ pkg = "exdash";
+ version = "0.3.1";
+ sha256 =
+ "6a2a3e3c8ea80e5a9e6641db4a109a0a1e0a09c6b7bf190a8b98fa9a650325c5";
+ };
+
+ meta = {
+ description = ''Lodash implementation for Elixir'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/TFarla/exdash";
+ };
+ } // packageOverrides)
+ ) {};
+
+ exdash = exdash_0_3_1;
+
exdatauri_0_1_0 = callPackage
(
{ buildMix, packageOverrides ? {}, fetchHex }:
@@ -9810,10 +13855,65 @@ let
exdatauri = exdatauri_0_1_0;
+ exddb_0_1_3 = callPackage
+ (
+ { buildMix, packageOverrides ? {}, fetchHex, erlcloud_0_11_0 }:
+ buildMix ({
+ name = "exddb";
+ version = "0.1.3";
+ src = fetchHex {
+ pkg = "exddb";
+ version = "0.1.3";
+ sha256 =
+ "e57bd285110585476a457a843fdcff3cce6923c9472b6bec95ac9bf986dd27e4";
+ };
+ beamDeps = [ erlcloud_0_11_0 ];
+
+ meta = {
+ description = ''Simple library for working with data in
+ DynamoDB.'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/muhmi/exddb";
+ };
+ } // packageOverrides)
+ ) {};
+
+ exddb = exddb_0_1_3;
+
+ exdesk_0_2_0 = callPackage
+ (
+ {
+ buildMix,
+ packageOverrides ? {},
+ fetchHex,
+ poison_1_5_2,
+ httpoison_0_8_3
+ }:
+ buildMix ({
+ name = "exdesk";
+ version = "0.2.0";
+ src = fetchHex {
+ pkg = "exdesk";
+ version = "0.2.0";
+ sha256 =
+ "0c1e02bb4aef9075ff4affb3354c0e318dc3be1817faae8b450ef590c7d67688";
+ };
+ beamDeps = [ poison_1_5_2 httpoison_0_8_3 ];
+
+ meta = {
+ description = ''Desk.com client library for elixir.'';
+
+ homepage = "https://github.com/deadkarma/exdesk";
+ };
+ } // packageOverrides)
+ ) {};
+
+ exdesk = exdesk_0_2_0;
+
exdisque_0_0_1 = callPackage
(
- { buildRebar3, packageOverrides ? {}, fetchHex, eredis_1_0_8 }:
- buildRebar3 ({
+ { buildMix, packageOverrides ? {}, fetchHex, eredis_1_0_8 }:
+ buildMix ({
name = "exdisque";
version = "0.0.1";
src = fetchHex {
@@ -9822,7 +13922,6 @@ let
sha256 =
"c3b7ec89217df46ae6cf1adadb81118877c66272266f0ee5e2c7ff45d048fb31";
};
-
beamDeps = [ eredis_1_0_8 ];
meta = {
@@ -9836,30 +13935,6 @@ let
exdisque = exdisque_0_0_1;
- exdm_0_0_4 = callPackage
- (
- { buildMix, packageOverrides ? {}, fetchHex, exrm_0_19_9 }:
- buildMix ({
- name = "exdm";
- version = "0.0.4";
- src = fetchHex {
- pkg = "exdm";
- version = "0.0.4";
- sha256 =
- "85e8fa483a760c46e19f0e8e0f53eb35ed74cc17f23c72d3002e47a847011e39";
- };
- beamDeps = [ exrm_0_19_9 ];
-
- meta = {
- description = ''Deploy Elixir applications via mix tasks'';
- license = stdenv.lib.licenses.mit;
- homepage = "https://github.com/joeyates/exdm";
- };
- } // packageOverrides)
- ) {};
-
- exdm = exdm_0_0_4;
-
exec_1_0_1 = callPackage
(
{ buildRebar3, packageOverrides ? {}, fetchHex }:
@@ -9935,6 +14010,30 @@ let
exelli = exelli_0_1_0;
+ exexec_0_0_1 = callPackage
+ (
+ { buildMix, packageOverrides ? {}, fetchHex, erlexec_1_1_3 }:
+ buildMix ({
+ name = "exexec";
+ version = "0.0.1";
+ src = fetchHex {
+ pkg = "exexec";
+ version = "0.0.1";
+ sha256 =
+ "890122cae91cc739f84dad66b7358c9e7961dadbebeb650e71ccdeab8963ff91";
+ };
+ beamDeps = [ erlexec_1_1_3 ];
+
+ meta = {
+ description = ''An idiomatic Elixir wrapper for erlexec.'';
+ license = stdenv.lib.licenses.asl20;
+ homepage = "https://github.com/antipax/exexec";
+ };
+ } // packageOverrides)
+ ) {};
+
+ exexec = exexec_0_0_1;
+
exexif_0_0_1 = callPackage
(
{ buildMix, packageOverrides ? {}, fetchHex }:
@@ -9986,6 +14085,36 @@ let
exexif = exexif_0_0_1;
+ exfavicon_0_3_3 = callPackage
+ (
+ {
+ buildMix,
+ packageOverrides ? {},
+ fetchHex,
+ httpoison_0_8_3,
+ floki_0_8_1
+ }:
+ buildMix ({
+ name = "exfavicon";
+ version = "0.3.3";
+ src = fetchHex {
+ pkg = "exfavicon";
+ version = "0.3.3";
+ sha256 =
+ "f1c5aa3506c90ba28e6f3ddcf3e9feda8518af1b4b12a6d2f518f86a10d1719b";
+ };
+ beamDeps = [ httpoison_0_8_3 floki_0_8_1 ];
+
+ meta = {
+ description = ''A exfavicon to detect a site`s favicon.'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/ikeikeikeike/exfavicon";
+ };
+ } // packageOverrides)
+ ) {};
+
+ exfavicon = exfavicon_0_3_3;
+
exfirebase_0_4_0 = callPackage
(
{
@@ -10017,6 +14146,36 @@ let
exfirebase = exfirebase_0_4_0;
+ exfoaas_0_0_2 = callPackage
+ (
+ {
+ buildMix,
+ packageOverrides ? {},
+ fetchHex,
+ poison_2_1_0,
+ httpoison_0_8_3
+ }:
+ buildMix ({
+ name = "exfoaas";
+ version = "0.0.2";
+ src = fetchHex {
+ pkg = "exfoaas";
+ version = "0.0.2";
+ sha256 =
+ "521f355f8c38c056f66cd8ac236f561c2a3502e451c07a88761e05c22c8848aa";
+ };
+ beamDeps = [ poison_2_1_0 httpoison_0_8_3 ];
+
+ meta = {
+ description = ''brings the utility of FOAAS to elixir.'';
+ license = stdenv.lib.licenses.wtfpl;
+ homepage = "https://github.com/cryptobird/ExFOAAS.git";
+ };
+ } // packageOverrides)
+ ) {};
+
+ exfoaas = exfoaas_0_0_2;
+
exfsm_0_1_3 = callPackage
(
{ buildMix, packageOverrides ? {}, fetchHex }:
@@ -10090,6 +14249,69 @@ let
exfuck = exfuck_0_1_0;
+ exgenius_0_0_5 = callPackage
+ (
+ {
+ buildMix,
+ packageOverrides ? {},
+ fetchHex,
+ httpoison_0_8_3,
+ exjsx_3_2_0
+ }:
+ buildMix ({
+ name = "exgenius";
+ version = "0.0.5";
+ src = fetchHex {
+ pkg = "exgenius";
+ version = "0.0.5";
+ sha256 =
+ "f0f4463ac9ad79a102a1bf0ded91d77ed87ce262da6045990be51450ef240fd5";
+ };
+ beamDeps = [ httpoison_0_8_3 exjsx_3_2_0 ];
+
+ meta = {
+ longDescription = '' Elixir library for the (undocumented) Rap
+ Genius (and also Rock, Tech, Pop, Country, etc)
+ API '';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/jeffweiss/exgenius";
+ };
+ } // packageOverrides)
+ ) {};
+
+ exgenius = exgenius_0_0_5;
+
+ exgingerapi_0_0_3 = callPackage
+ (
+ {
+ buildMix,
+ packageOverrides ? {},
+ fetchHex,
+ poison_2_0_1,
+ httpoison_0_8_3
+ }:
+ buildMix ({
+ name = "exgingerapi";
+ version = "0.0.3";
+ src = fetchHex {
+ pkg = "exgingerapi";
+ version = "0.0.3";
+ sha256 =
+ "7375b282a1b290e851bbbb7de499c099ff0310443e8a51d8741554b92d4a08f1";
+ };
+ beamDeps = [ poison_2_0_1 httpoison_0_8_3 ];
+
+ meta = {
+ description = ''Elixir wrapper for ginger proofreading API
+ (english)'';
+ license = stdenv.lib.licenses.bsd3;
+ homepage = "https://github.com/nathanjohnson320/exgingerapi";
+ };
+ } // packageOverrides)
+ ) {};
+
+ exgingerapi = exgingerapi_0_0_3;
+
exgravatar_2_0_0 = callPackage
(
{ buildMix, packageOverrides ? {}, fetchHex }:
@@ -10181,7 +14403,28 @@ let
} // packageOverrides)
) {};
- exirc = exirc_0_10_0;
+ exirc_0_11_0 = callPackage
+ (
+ { buildMix, packageOverrides ? {}, fetchHex }:
+ buildMix ({
+ name = "exirc";
+ version = "0.11.0";
+ src = fetchHex {
+ pkg = "exirc";
+ version = "0.11.0";
+ sha256 =
+ "797a91fd92ca93d639bf323ea4b31a42ed4ac2d67d3096100df7b1b615a88ace";
+ };
+
+ meta = {
+ description = ''An IRC client library for Elixir.'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/bitwalker/exirc";
+ };
+ } // packageOverrides)
+ ) {};
+
+ exirc = exirc_0_11_0;
exjson_0_5_0 = callPackage
(
@@ -10209,7 +14452,7 @@ let
exjsx_3_0_2 = callPackage
(
- { buildMix, packageOverrides ? {}, fetchHex, jsx_2_3_1 }:
+ { buildMix, packageOverrides ? {}, fetchHex, jsx_2_5_3 }:
buildMix ({
name = "exjsx";
version = "3.0.2";
@@ -10219,7 +14462,7 @@ let
sha256 =
"2cd67240a54e9cd2616bc83c0c352d47f87bccd2ec599eceedc00bcbe9063f07";
};
- beamDeps = [ jsx_2_3_1 ];
+ beamDeps = [ jsx_2_5_3 ];
meta = {
description = ''json for elixir'';
@@ -10231,7 +14474,7 @@ let
exjsx_3_1_0 = callPackage
(
- { buildMix, packageOverrides ? {}, fetchHex, jsx_2_4_0 }:
+ { buildMix, packageOverrides ? {}, fetchHex, jsx_2_5_3 }:
buildMix ({
name = "exjsx";
version = "3.1.0";
@@ -10241,7 +14484,7 @@ let
sha256 =
"588a0b67ed0c45b21f018515fc478efac83c088661bd588831e41c9073a818fb";
};
- beamDeps = [ jsx_2_4_0 ];
+ beamDeps = [ jsx_2_5_3 ];
meta = {
description = ''json for elixir'';
@@ -10301,17 +14544,48 @@ let
exkanji = exkanji_0_2_6;
- exldap_0_1_1 = callPackage
+ exkismet_0_0_2 = callPackage
+ (
+ {
+ buildMix,
+ packageOverrides ? {},
+ fetchHex,
+ poison_1_5_2,
+ httpoison_0_8_3
+ }:
+ buildMix ({
+ name = "exkismet";
+ version = "0.0.2";
+ src = fetchHex {
+ pkg = "exkismet";
+ version = "0.0.2";
+ sha256 =
+ "3648f010eb80891b0195f9ced0e02a5a08860a9d96e8f7bbe328c68f27b85b64";
+ };
+ beamDeps = [ poison_1_5_2 httpoison_0_8_3 ];
+
+ meta = {
+ description = ''A client (completely unofficial) for the
+ Akismet.com comment-spam detection API.'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/cameronp/exkismet";
+ };
+ } // packageOverrides)
+ ) {};
+
+ exkismet = exkismet_0_0_2;
+
+ exldap_0_2_0 = callPackage
(
{ buildMix, packageOverrides ? {}, fetchHex }:
buildMix ({
name = "exldap";
- version = "0.1.1";
+ version = "0.2.0";
src = fetchHex {
pkg = "exldap";
- version = "0.1.1";
+ version = "0.2.0";
sha256 =
- "5cade5ad64caaeb0e0d70fcd9567aa827e6f50cb375599e2887319c40807cc92";
+ "7e2d1e96dacaddd6b515cc2033b5c9e21d23d1897e3a9f8ca2b6f31d091d72a6";
};
meta = {
@@ -10322,7 +14596,7 @@ let
} // packageOverrides)
) {};
- exldap = exldap_0_1_1;
+ exldap = exldap_0_2_0;
exleveldb_0_7_0 = callPackage
(
@@ -10537,27 +14811,27 @@ let
exmoji = exmoji_0_2_2;
- exns_0_3_2_beta = callPackage
+ exns_0_3_5_beta = callPackage
(
{
buildMix,
packageOverrides ? {},
fetchHex,
- uuid_1_1_3,
+ uuid_1_1_4,
poolboy_1_5_1,
poison_1_5_2,
msgpax_0_8_2
}:
buildMix ({
name = "exns";
- version = "0.3.2-beta";
+ version = "0.3.5-beta";
src = fetchHex {
pkg = "exns";
- version = "0.3.2-beta";
+ version = "0.3.5-beta";
sha256 =
- "cc29b065ea9c346a14052e6ebe738fe93714ed936ef23d57b08786f968c4dc48";
+ "2c5b1f263ebfe9636802cca5559e74009ae4384418e44820f0ff05130dbcb593";
};
- beamDeps = [ uuid_1_1_3 poolboy_1_5_1 poison_1_5_2 msgpax_0_8_2
+ beamDeps = [ uuid_1_1_4 poolboy_1_5_1 poison_1_5_2 msgpax_0_8_2
];
meta = {
@@ -10569,7 +14843,7 @@ let
} // packageOverrides)
) {};
- exns = exns_0_3_2_beta;
+ exns = exns_0_3_5_beta;
exnumerable_0_0_1 = callPackage
(
@@ -10595,17 +14869,17 @@ let
exnumerable = exnumerable_0_0_1;
- exnumerator_1_0_0 = callPackage
+ exnumerator_1_1_0 = callPackage
(
{ buildMix, packageOverrides ? {}, fetchHex }:
buildMix ({
name = "exnumerator";
- version = "1.0.0";
+ version = "1.1.0";
src = fetchHex {
pkg = "exnumerator";
- version = "1.0.0";
+ version = "1.1.0";
sha256 =
- "7511385b408e6aa2f494444dac4fd8734b91456734adbc46f17c7185a504514a";
+ "1c52033471dfae7b32c897cb0034eb1d3602bcb14342ca08090c42b02001b2fd";
};
meta = {
@@ -10617,7 +14891,7 @@ let
} // packageOverrides)
) {};
- exnumerator = exnumerator_1_0_0;
+ exnumerator = exnumerator_1_1_0;
exnumterator_1_0_0 = callPackage
(
@@ -10689,6 +14963,37 @@ let
expand = expand_0_0_3;
+ exparticle_0_0_2 = callPackage
+ (
+ {
+ buildMix,
+ packageOverrides ? {},
+ fetchHex,
+ poison_1_5_2,
+ httpoison_0_8_3
+ }:
+ buildMix ({
+ name = "exparticle";
+ version = "0.0.2";
+ src = fetchHex {
+ pkg = "exparticle";
+ version = "0.0.2";
+ sha256 =
+ "ce70b77da48e84307791af00143ad4b9677d39765459865976d459d3b1bdcaf2";
+ };
+ beamDeps = [ poison_1_5_2 httpoison_0_8_3 ];
+
+ meta = {
+ description = ''ExParticle is an elixir client to communicate
+ with Particle Cloud API'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/mtanzi/exparticle";
+ };
+ } // packageOverrides)
+ ) {};
+
+ exparticle = exparticle_0_0_2;
+
experiment_0_0_3 = callPackage
(
{ buildMix, packageOverrides ? {}, fetchHex }:
@@ -10790,17 +15095,17 @@ let
expool = expool_0_2_0;
- export_0_0_2 = callPackage
+ export_0_0_7 = callPackage
(
{ buildMix, packageOverrides ? {}, fetchHex }:
buildMix ({
name = "export";
- version = "0.0.2";
+ version = "0.0.7";
src = fetchHex {
pkg = "export";
- version = "0.0.2";
+ version = "0.0.7";
sha256 =
- "f956aa84d18d089b9a8250d53ac6c8ecff3ea29313e661cbb19ed329762f2acb";
+ "76c2a174b01f0fac1c3bc5083a7982fb8d41778518e279a526b40e4ced05d1d0";
};
meta = {
@@ -10811,7 +15116,7 @@ let
} // packageOverrides)
) {};
- export = export_0_0_2;
+ export = export_0_0_7;
expr_0_1_0 = callPackage
(
@@ -10886,27 +15191,27 @@ let
exprof = exprof_0_2_0;
- exq_0_6_5 = callPackage
+ exq_0_7_1 = callPackage
(
{
buildMix,
packageOverrides ? {},
fetchHex,
- uuid_1_1_3,
- timex_2_1_3,
+ uuid_1_1_4,
+ timex_2_1_6,
redix_0_3_6,
poison_2_1_0
}:
buildMix ({
name = "exq";
- version = "0.6.5";
+ version = "0.7.1";
src = fetchHex {
pkg = "exq";
- version = "0.6.5";
+ version = "0.7.1";
sha256 =
- "bacb92950e9c01532c9467dc7b4f7d930d8a70ef8d7b9797237aac6f0b608ba2";
+ "d6694cddf4a6808c7bb9d8bcc9b917fe1a3720a22a917767a4f0ddcaa5b6d148";
};
- beamDeps = [ uuid_1_1_3 timex_2_1_3 redix_0_3_6 poison_2_1_0 ];
+ beamDeps = [ uuid_1_1_4 timex_2_1_6 redix_0_3_6 poison_2_1_0 ];
meta = {
longDescription = ''Exq is a job processing library compatible
@@ -10918,28 +15223,28 @@ let
} // packageOverrides)
) {};
- exq = exq_0_6_5;
+ exq = exq_0_7_1;
- exq_ui_0_6_5 = callPackage
+ exq_ui_0_7_1 = callPackage
(
{
buildMix,
packageOverrides ? {},
fetchHex,
- plug_1_1_3,
- exq_0_6_5,
+ plug_1_1_5,
+ exq_0_7_1,
cowboy_1_0_4
}:
buildMix ({
name = "exq_ui";
- version = "0.6.5";
+ version = "0.7.1";
src = fetchHex {
pkg = "exq_ui";
- version = "0.6.5";
+ version = "0.7.1";
sha256 =
- "88763e802738438d54e3b33966e2544832ed2d8215497c9c63b08d8c7199b7f3";
+ "5ff47501d6280afd4a07b74190f96e94345653db617d24e3ffc1c5cbb2f1de72";
};
- beamDeps = [ plug_1_1_3 exq_0_6_5 cowboy_1_0_4 ];
+ beamDeps = [ plug_1_1_5 exq_0_7_1 cowboy_1_0_4 ];
meta = {
longDescription = ''Exq UI is the UI component for Exq, a job
@@ -10951,7 +15256,7 @@ let
} // packageOverrides)
) {};
- exq_ui = exq_ui_0_6_5;
+ exq_ui = exq_ui_0_7_1;
exql_0_0_3 = callPackage
(
@@ -10977,39 +15282,6 @@ let
exql = exql_0_0_3;
- exquery_0_0_11 = callPackage
- (
- {
- buildRebar3,
- packageOverrides ? {},
- fetchHex,
- ex_doc_0_11_4,
- earmark_0_1_19
- }:
- buildRebar3 ({
- name = "exquery";
- version = "0.0.11";
- src = fetchHex {
- pkg = "exquery";
- version = "0.0.11";
- sha256 =
- "61b520599fa33dc8c97be32f41c8fe4a6eb9d8b98b72a72cb88185868692a0c1";
- };
-
- beamDeps = [ ex_doc_0_11_4 earmark_0_1_19 ];
-
- meta = {
- longDescription = '' A library for parsing HTML and querying
- elements within. Handy for web scraping or
- autmated testing. '';
- license = stdenv.lib.licenses.mit;
- homepage = "https://github.com/rozap/exquery";
- };
- } // packageOverrides)
- ) {};
-
- exquery = exquery_0_0_11;
-
exquisite_0_1_6 = callPackage
(
{ buildMix, packageOverrides ? {}, fetchHex }:
@@ -11033,17 +15305,17 @@ let
exquisite = exquisite_0_1_6;
- exredis_0_2_3 = callPackage
+ exredis_0_2_4 = callPackage
(
{ buildMix, packageOverrides ? {}, fetchHex, eredis_1_0_8 }:
buildMix ({
name = "exredis";
- version = "0.2.3";
+ version = "0.2.4";
src = fetchHex {
pkg = "exredis";
- version = "0.2.3";
+ version = "0.2.4";
sha256 =
- "0d5a48cd27ec6200c3ffa5442d7dc615d7dbfe94a500d1240b9c0c9205ec4e56";
+ "fe43dc6e39220af9c06d575b86c24513dcb1c3ba48f31881a3708cdafe7d3188";
};
beamDeps = [ eredis_1_0_8 ];
@@ -11055,19 +15327,19 @@ let
} // packageOverrides)
) {};
- exredis = exredis_0_2_3;
+ exredis = exredis_0_2_4;
- exref_0_1_0 = callPackage
+ exref_0_1_1 = callPackage
(
{ buildMix, packageOverrides ? {}, fetchHex }:
buildMix ({
name = "exref";
- version = "0.1.0";
+ version = "0.1.1";
src = fetchHex {
pkg = "exref";
- version = "0.1.0";
+ version = "0.1.1";
sha256 =
- "19597fbdd563e447608d5f3a43171c29cde4e0462f5163314cc1db74ccef2f65";
+ "92d73f1eff56f2d0493a2dbf5e932b48b99a2cdd2e3cc3fc0ffeb9c1ae5ed86c";
};
meta = {
@@ -11077,7 +15349,7 @@ let
} // packageOverrides)
) {};
- exref = exref_0_1_0;
+ exref = exref_0_1_1;
exrequester_0_5_2 = callPackage
(
@@ -11112,8 +15384,8 @@ let
exrethinkdb_0_0_3 = callPackage
(
- { buildRebar3, packageOverrides ? {}, fetchHex, poison_1_4_0 }:
- buildRebar3 ({
+ { buildMix, packageOverrides ? {}, fetchHex, poison_1_4_0 }:
+ buildMix ({
name = "exrethinkdb";
version = "0.0.3";
src = fetchHex {
@@ -11122,7 +15394,6 @@ let
sha256 =
"c48a25a613de9f4c8ffe490044e448f01d816e0f6806af018494c3a19890ed1a";
};
-
beamDeps = [ poison_1_4_0 ];
meta = {
@@ -11135,25 +15406,19 @@ let
exrethinkdb = exrethinkdb_0_0_3;
- exrm_0_19_9 = callPackage
+ exrm_1_0_5 = callPackage
(
- {
- buildMix,
- packageOverrides ? {},
- fetchHex,
- relx_3_5_0,
- conform_1_0_0_rc8
- }:
+ { buildMix, packageOverrides ? {}, fetchHex, relx_3_19_0 }:
buildMix ({
name = "exrm";
- version = "0.19.9";
+ version = "1.0.5";
src = fetchHex {
pkg = "exrm";
- version = "0.19.9";
+ version = "1.0.5";
sha256 =
- "3107dcac0727f7e986ef36604e13943759a52188fbee630d72b1b3adb4594941";
+ "fef4ec90a6cafcff138cf51a5acc882392b7b34bd13372373ad8abc09ea0ef47";
};
- beamDeps = [ relx_3_5_0 conform_1_0_0_rc8 ];
+ beamDeps = [ relx_3_19_0 ];
meta = {
longDescription = ''Exrm, or Elixir Release Manager, provides mix
@@ -11165,60 +15430,28 @@ let
} // packageOverrides)
) {};
- exrm_1_0_3 = callPackage
- (
- { buildMix, packageOverrides ? {}, fetchHex, relx_3_18_0 }:
- buildMix ({
- name = "exrm";
- version = "1.0.3";
- src = fetchHex {
- pkg = "exrm";
- version = "1.0.3";
- sha256 =
- "22ce83a1ffab133ebc94cef871d830971ca0b2f9df3ba44caa8f7eadb13bbe3b";
- };
- beamDeps = [ relx_3_18_0 ];
+ exrm = exrm_1_0_5;
- meta = {
- longDescription = ''Exrm, or Elixir Release Manager, provides mix
- tasks for building, upgrading, and controlling
- release packages for your application.'';
- license = stdenv.lib.licenses.mit;
- homepage = "https://github.com/bitwalker/exrm";
- };
- } // packageOverrides)
- ) {};
-
- exrm = exrm_1_0_3;
-
- exrm_deb_0_0_5 = callPackage
+ exrm_deb_0_0_6 = callPackage
(
{
buildMix,
packageOverrides ? {},
fetchHex,
vex_0_5_5,
- timex_1_0_2,
- exrm_1_0_3,
- ex_doc_0_11_4,
- earmark_0_2_1
+ timex_2_1_6,
+ exrm_1_0_5
}:
buildMix ({
name = "exrm_deb";
- version = "0.0.5";
+ version = "0.0.6";
src = fetchHex {
pkg = "exrm_deb";
- version = "0.0.5";
+ version = "0.0.6";
sha256 =
- "b74c80e7c25750f78c4fefc75e8df66356d235d2c038751037ae60dad0ac7fc3";
+ "f78edff8a5b6ef41a007869fc23614ebf577f679849fb5b3a6ce4013cd861d2c";
};
- beamDeps = [
- vex_0_5_5
- timex_1_0_2
- exrm_1_0_3
- ex_doc_0_11_4
- earmark_0_2_1
- ];
+ beamDeps = [ vex_0_5_5 timex_2_1_6 exrm_1_0_5 ];
meta = {
description = ''Create a deb for your elixir release with ease'';
@@ -11228,11 +15461,36 @@ let
} // packageOverrides)
) {};
- exrm_deb = exrm_deb_0_0_5;
+ exrm_deb = exrm_deb_0_0_6;
+
+ exrm_docker_0_1_0 = callPackage
+ (
+ { buildMix, packageOverrides ? {}, fetchHex, exrm_1_0_5 }:
+ buildMix ({
+ name = "exrm_docker";
+ version = "0.1.0";
+ src = fetchHex {
+ pkg = "exrm_docker";
+ version = "0.1.0";
+ sha256 =
+ "a10f0334d9d93f8e97bde71c2638e725f1e36790a817b40ca26da0771366a3a3";
+ };
+ beamDeps = [ exrm_1_0_5 ];
+
+ meta = {
+ description = ''Exrm plugin to push your release into a Docker
+ image.'';
+ license = stdenv.lib.licenses.free;
+ homepage = "https://github.com/kwrooijen/exrm_docker";
+ };
+ } // packageOverrides)
+ ) {};
+
+ exrm_docker = exrm_docker_0_1_0;
exrm_heroku_0_1_1 = callPackage
(
- { buildMix, packageOverrides ? {}, fetchHex, exrm_1_0_3 }:
+ { buildMix, packageOverrides ? {}, fetchHex, exrm_1_0_5 }:
buildMix ({
name = "exrm_heroku";
version = "0.1.1";
@@ -11242,7 +15500,7 @@ let
sha256 =
"19fc16f1cfcc1c86bc64796a287028b8a8d951f7737024893c1772ba658da76d";
};
- beamDeps = [ exrm_1_0_3 ];
+ beamDeps = [ exrm_1_0_5 ];
meta = {
description = ''Publish Elixir releases created with exrm release
@@ -11255,6 +15513,60 @@ let
exrm_heroku = exrm_heroku_0_1_1;
+ exrm_rpm_0_3_3 = callPackage
+ (
+ { buildMix, packageOverrides ? {}, fetchHex, exrm_1_0_5 }:
+ buildMix ({
+ name = "exrm_rpm";
+ version = "0.3.3";
+ src = fetchHex {
+ pkg = "exrm_rpm";
+ version = "0.3.3";
+ sha256 =
+ "11de82ed0ba9e265577f255cdad0693bf191b30d56dbd85977201882e3652e53";
+ };
+ beamDeps = [ exrm_1_0_5 ];
+
+ meta = {
+ longDescription = ''Adds simple Red Hat Package Manager (RPM)
+ generation to the exrm package manager. The
+ generated RPM file includes the Elixir release
+ and an init.d script to manage the project`s
+ service.'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/smpallen99/exrm-rpm";
+ };
+ } // packageOverrides)
+ ) {};
+
+ exrm_rpm = exrm_rpm_0_3_3;
+
+ exrm_smartos_gz_1_0_0 = callPackage
+ (
+ { buildMix, packageOverrides ? {}, fetchHex, exrm_1_0_5 }:
+ buildMix ({
+ name = "exrm_smartos_gz";
+ version = "1.0.0";
+ src = fetchHex {
+ pkg = "exrm_smartos_gz";
+ version = "1.0.0";
+ sha256 =
+ "700c3c9e80d24d1e0404c54391e582d786dbb3f8da9a3bf5d2b7f082841ba5af";
+ };
+ beamDeps = [ exrm_1_0_5 ];
+
+ meta = {
+ longDescription = ''Trying to package an Elixir application for a
+ SmartOS GZ but getting errors about ncurses?
+ This will cure what ails you.'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/adam12/exrm_smartos_gz";
+ };
+ } // packageOverrides)
+ ) {};
+
+ exrm_smartos_gz = exrm_smartos_gz_1_0_0;
+
exromaji_0_3_0 = callPackage
(
{ buildMix, packageOverrides ? {}, fetchHex }:
@@ -11279,29 +15591,30 @@ let
exromaji = exromaji_0_3_0;
- exrun_0_1_1 = callPackage
+ exrun_0_1_2 = callPackage
(
{ buildMix, packageOverrides ? {}, fetchHex }:
buildMix ({
name = "exrun";
- version = "0.1.1";
+ version = "0.1.2";
src = fetchHex {
pkg = "exrun";
- version = "0.1.1";
+ version = "0.1.2";
sha256 =
- "d61b90c23ba37c9b44b379d6094ef8411522d17d94d33b786e1dc5bfac09bfc0";
+ "db9ea4befa015d7abe88ca610501187f12956d6fe6e527f02f8e4d9e630decf5";
};
meta = {
- longDescription = ''Elixir - save and easy to use, tracing tools
- for running elixir and erlang applications'';
-
+ longDescription = ''Elixir - save and easy to use standalone,
+ tracing tools for running elixir and erlang
+ applications'';
+ license = stdenv.lib.licenses.asl20;
homepage = "https://github.com/liveforeverx/exrun";
};
} // packageOverrides)
) {};
- exrun = exrun_0_1_1;
+ exrun = exrun_0_1_2;
exsamples_0_1_0 = callPackage
(
@@ -11350,9 +15663,39 @@ let
exscript = exscript_0_0_1;
+ exsolr_0_0_1 = callPackage
+ (
+ {
+ buildMix,
+ packageOverrides ? {},
+ fetchHex,
+ poison_2_1_0,
+ httpoison_0_8_3
+ }:
+ buildMix ({
+ name = "exsolr";
+ version = "0.0.1";
+ src = fetchHex {
+ pkg = "exsolr";
+ version = "0.0.1";
+ sha256 =
+ "dcd26d0301730cb1746702bfacf31de10be5d1b15475a1a7ec4da8c7c49e55d1";
+ };
+ beamDeps = [ poison_2_1_0 httpoison_0_8_3 ];
+
+ meta = {
+ description = ''Thin Wrapper around Solr api.'';
+ license = stdenv.lib.licenses.free;
+ homepage = "https://github.com/dcarneiro/exsolr";
+ };
+ } // packageOverrides)
+ ) {};
+
+ exsolr = exsolr_0_0_1;
+
exstatic_0_1_0 = callPackage
(
- { buildMix, packageOverrides ? {}, fetchHex, plug_1_1_3 }:
+ { buildMix, packageOverrides ? {}, fetchHex, plug_1_1_5 }:
buildMix ({
name = "exstatic";
version = "0.1.0";
@@ -11362,7 +15705,7 @@ let
sha256 =
"e063b91c0b2995e4a1a2c1aa56cdd578374320a8755844cc6471b58fa3874d0d";
};
- beamDeps = [ plug_1_1_3 ];
+ beamDeps = [ plug_1_1_5 ];
meta = {
longDescription = ''Serve static files from memory in the Phoenix
@@ -11428,17 +15771,73 @@ let
exsync = exsync_0_1_2;
- extwitter_0_7_0 = callPackage
+ extripe_0_3_2 = callPackage
+ (
+ {
+ buildMix,
+ packageOverrides ? {},
+ fetchHex,
+ poison_2_1_0,
+ httpoison_0_8_3
+ }:
+ buildMix ({
+ name = "extripe";
+ version = "0.3.2";
+ src = fetchHex {
+ pkg = "extripe";
+ version = "0.3.2";
+ sha256 =
+ "4df5dd859ad780bdb4dc0d1c823a8df82cf7421037f1ed40adf20b426d6729a1";
+ };
+ beamDeps = [ poison_2_1_0 httpoison_0_8_3 ];
+
+ meta = {
+ description = ''Stripe API wrapper'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/princemaple/extripe";
+ };
+ } // packageOverrides)
+ ) {};
+
+ extripe = extripe_0_3_2;
+
+ exts_0_3_1 = callPackage
+ (
+ {
+ buildMix, packageOverrides ? {}, fetchHex, datastructures_0_2_5
+ }:
+ buildMix ({
+ name = "exts";
+ version = "0.3.1";
+ src = fetchHex {
+ pkg = "exts";
+ version = "0.3.1";
+ sha256 =
+ "428226945831d77083cab2a7f9a1f818e6554d789ed7183c215390d7f43cfa40";
+ };
+ beamDeps = [ datastructures_0_2_5 ];
+
+ meta = {
+ description = ''ets wrapper'';
+ license = stdenv.lib.licenses.wtfpl;
+ homepage = "https://github.com/meh/exts";
+ };
+ } // packageOverrides)
+ ) {};
+
+ exts = exts_0_3_1;
+
+ extwitter_0_7_1 = callPackage
(
{ buildMix, packageOverrides ? {}, fetchHex, poison_1_5_2 }:
buildMix ({
name = "extwitter";
- version = "0.7.0";
+ version = "0.7.1";
src = fetchHex {
pkg = "extwitter";
- version = "0.7.0";
+ version = "0.7.1";
sha256 =
- "15fca145977192f315382d51258324ffd1862161deb586c67aaf0a205ca3cc73";
+ "9cc83932fbe77d47f0fafc2000574805aa42341eed07a8867b1c27df27c3554a";
};
beamDeps = [ poison_1_5_2 ];
@@ -11450,7 +15849,116 @@ let
} // packageOverrides)
) {};
- extwitter = extwitter_0_7_0;
+ extwitter = extwitter_0_7_1;
+
+ exvcr_0_3_9 = callPackage
+ (
+ {
+ buildMix,
+ packageOverrides ? {},
+ fetchHex,
+ meck_0_8_4,
+ httpotion_2_2_2,
+ httpoison_0_8_3,
+ exjsx_3_2_0,
+ exactor_2_2_0
+ }:
+ buildMix ({
+ name = "exvcr";
+ version = "0.3.9";
+ src = fetchHex {
+ pkg = "exvcr";
+ version = "0.3.9";
+ sha256 =
+ "25645f6598111ba76ed30b4a2079169ae1aed0795ef87bf74d70a3a7ca8f2112";
+ };
+ beamDeps = [
+ meck_0_8_4
+ httpotion_2_2_2
+ httpoison_0_8_3
+ exjsx_3_2_0
+ exactor_2_2_0
+ ];
+
+ meta = {
+ description = ''HTTP request/response recording library for
+ elixir, inspired by VCR.'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/parroty/exvcr";
+ };
+ } // packageOverrides)
+ ) {};
+
+ exvcr_0_7_4 = callPackage
+ (
+ {
+ buildMix,
+ packageOverrides ? {},
+ fetchHex,
+ meck_0_8_4,
+ httpotion_2_2_2,
+ httpoison_0_8_3,
+ exjsx_3_2_0,
+ exactor_2_2_0
+ }:
+ buildMix ({
+ name = "exvcr";
+ version = "0.7.4";
+ src = fetchHex {
+ pkg = "exvcr";
+ version = "0.7.4";
+ sha256 =
+ "620eac79a63426340d31dcc44b66a0d8be89ce4c2dc59b09986e83114bd4c525";
+ };
+ beamDeps = [
+ meck_0_8_4
+ httpotion_2_2_2
+ httpoison_0_8_3
+ exjsx_3_2_0
+ exactor_2_2_0
+ ];
+
+ meta = {
+ description = ''HTTP request/response recording library for
+ elixir, inspired by VCR.'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/parroty/exvcr";
+ };
+ } // packageOverrides)
+ ) {};
+
+ exvcr = exvcr_0_7_4;
+
+ exyelp_0_0_2 = callPackage
+ (
+ {
+ buildMix,
+ packageOverrides ? {},
+ fetchHex,
+ poison_2_1_0,
+ oauther_1_0_2,
+ httpoison_0_8_3
+ }:
+ buildMix ({
+ name = "exyelp";
+ version = "0.0.2";
+ src = fetchHex {
+ pkg = "exyelp";
+ version = "0.0.2";
+ sha256 =
+ "1be8553ea0369a092eac1b6a0b47652b7c0570911483aa3ca454bef05ddd4d5d";
+ };
+ beamDeps = [ poison_2_1_0 oauther_1_0_2 httpoison_0_8_3 ];
+
+ meta = {
+ description = ''An Elixir Yelp API client'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/gaslight/exyelp";
+ };
+ } // packageOverrides)
+ ) {};
+
+ exyelp = exyelp_0_0_2;
exyz_1_0_0 = callPackage
(
@@ -11476,30 +15984,6 @@ let
exyz = exyz_1_0_0;
- eye_drops_1_0_1 = callPackage
- (
- { buildMix, packageOverrides ? {}, fetchHex, fs_0_9_2 }:
- buildMix ({
- name = "eye_drops";
- version = "1.0.1";
- src = fetchHex {
- pkg = "eye_drops";
- version = "1.0.1";
- sha256 =
- "4b57c4e6ec58e8e278c5dd2849ad248ccbf1cb9c340476cfebb7ac31e1bbe85d";
- };
- beamDeps = [ fs_0_9_2 ];
-
- meta = {
- longDescription = ''A configurable mix task to watch file changes
- Watch file changes in a project and run the
- corresponding command when a change happens.'';
- license = stdenv.lib.licenses.mit;
- homepage = "https://github.com/rkotze/eye_drops";
- };
- } // packageOverrides)
- ) {};
-
eye_drops_1_2_0 = callPackage
(
{ buildMix, packageOverrides ? {}, fetchHex, fs_0_9_2 }:
@@ -11552,6 +16036,38 @@ let
ezcryptex = ezcryptex_0_0_1;
+ facebook_messenger_0_3_0 = callPackage
+ (
+ {
+ buildMix,
+ packageOverrides ? {},
+ fetchHex,
+ poison_2_1_0,
+ plug_1_1_5,
+ httpotion_2_2_2
+ }:
+ buildMix ({
+ name = "facebook_messenger";
+ version = "0.3.0";
+ src = fetchHex {
+ pkg = "facebook_messenger";
+ version = "0.3.0";
+ sha256 =
+ "30b1f7334649b671a4844dfcf7af1df00ad3082e8d42399466003636d95902ab";
+ };
+ beamDeps = [ poison_2_1_0 plug_1_1_5 httpotion_2_2_2 ];
+
+ meta = {
+ longDescription = ''ExFacebookMessenger is a library that easy
+ the creation of facebook messenger bots.'';
+
+ homepage = "https://github.com/oarrabi/facebook_messenger";
+ };
+ } // packageOverrides)
+ ) {};
+
+ facebook_messenger = facebook_messenger_0_3_0;
+
factory_girl_elixir_0_1_1 = callPackage
(
{ buildMix, packageOverrides ? {}, fetchHex }:
@@ -11576,26 +16092,26 @@ let
factory_girl_elixir = factory_girl_elixir_0_1_1;
- fake_cas_1_0_1 = callPackage
+ fake_cas_1_1_0 = callPackage
(
{
buildMix,
packageOverrides ? {},
fetchHex,
- plug_1_1_3,
+ plug_1_1_5,
cowboy_1_0_4,
bypass_0_5_1
}:
buildMix ({
name = "fake_cas";
- version = "1.0.1";
+ version = "1.1.0";
src = fetchHex {
pkg = "fake_cas";
- version = "1.0.1";
+ version = "1.1.0";
sha256 =
- "bb3522de447f7a3d84ced7b55e83b9ce72ce7c509581ed87ab26264fb39aafe5";
+ "2e3ce97b181f9de122fd7dc07bffdbe2a6f6439524407b976c9d1b70332206ae";
};
- beamDeps = [ plug_1_1_3 cowboy_1_0_4 bypass_0_5_1 ];
+ beamDeps = [ plug_1_1_5 cowboy_1_0_4 bypass_0_5_1 ];
meta = {
description = ''A Cas server stub'';
@@ -11605,7 +16121,7 @@ let
} // packageOverrides)
) {};
- fake_cas = fake_cas_1_0_1;
+ fake_cas = fake_cas_1_1_0;
faker_0_6_0 = callPackage
(
@@ -11631,6 +16147,31 @@ let
faker = faker_0_6_0;
+ fasta_0_1_0 = callPackage
+ (
+ { buildMix, packageOverrides ? {}, fetchHex, parallel_0_0_3 }:
+ buildMix ({
+ name = "fasta";
+ version = "0.1.0";
+ src = fetchHex {
+ pkg = "fasta";
+ version = "0.1.0";
+ sha256 =
+ "ebacba161985bf3d1bc5cf35e6ab0c01ce7f1f0fcc52151a35605eb9a6fac44b";
+ };
+ beamDeps = [ parallel_0_0_3 ];
+
+ meta = {
+ description = ''FASTA is a tool for parsing FASTA-formatted
+ strings in Elixir.'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/annejohnson/FASTA";
+ };
+ } // packageOverrides)
+ ) {};
+
+ fasta = fasta_0_1_0;
+
faust_0_1_0 = callPackage
(
{ buildMix, packageOverrides ? {}, fetchHex }:
@@ -11682,7 +16223,7 @@ let
feature_toggler_0_0_1 = callPackage
(
- { buildMix, packageOverrides ? {}, fetchHex, exredis_0_2_3 }:
+ { buildMix, packageOverrides ? {}, fetchHex, exredis_0_2_4 }:
buildMix ({
name = "feature_toggler";
version = "0.0.1";
@@ -11692,7 +16233,7 @@ let
sha256 =
"dac607aa67971e87b9d8fb8eb3057246d4480c99e11951faa1ed9f204b7f48ae";
};
- beamDeps = [ exredis_0_2_3 ];
+ beamDeps = [ exredis_0_2_4 ];
meta = {
description = ''This is a simple feature toggler/switch with
@@ -11707,8 +16248,8 @@ let
feeder_1_4_7 = callPackage
(
- { buildRebar3, packageOverrides ? {}, fetchHex }:
- buildRebar3 ({
+ { buildErlangMk, packageOverrides ? {}, fetchHex }:
+ buildErlangMk ({
name = "feeder";
version = "1.4.7";
src = fetchHex {
@@ -11729,8 +16270,8 @@ let
feeder_2_0_0 = callPackage
(
- { buildRebar3, packageOverrides ? {}, fetchHex }:
- buildRebar3 ({
+ { buildErlangMk, packageOverrides ? {}, fetchHex }:
+ buildErlangMk ({
name = "feeder";
version = "2.0.0";
src = fetchHex {
@@ -11775,17 +16316,17 @@ let
feeder_ex = feeder_ex_0_0_2;
- feederer_0_5_6 = callPackage
+ feederer_0_6_0 = callPackage
(
{ buildMix, packageOverrides ? {}, fetchHex, poolboy_1_5_1 }:
buildMix ({
name = "feederer";
- version = "0.5.6";
+ version = "0.6.0";
src = fetchHex {
pkg = "feederer";
- version = "0.5.6";
+ version = "0.6.0";
sha256 =
- "07e25464b14b9263b343602b649bb9680764481b1dfe64270dcef5c83321522c";
+ "c5041617fc7e71db9a0763f36fbda3fa41598203ab8b47972e3e9dae81039861";
};
beamDeps = [ poolboy_1_5_1 ];
@@ -11799,7 +16340,32 @@ let
} // packageOverrides)
) {};
- feederer = feederer_0_5_6;
+ feederer = feederer_0_6_0;
+
+ feedme_0_0_1 = callPackage
+ (
+ { buildMix, packageOverrides ? {}, fetchHex, timex_0_19_5 }:
+ buildMix ({
+ name = "feedme";
+ version = "0.0.1";
+ src = fetchHex {
+ pkg = "feedme";
+ version = "0.0.1";
+ sha256 =
+ "021621981bbb03b317e4a948a39d269ab1a2dc6d9ec6ee1c744e565000da680d";
+ };
+ beamDeps = [ timex_0_19_5 ];
+
+ meta = {
+ description = ''Elixir RSS/Atom parser built on erlang`s xmerl
+ xml parser'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/umurgdk/elixir-feedme";
+ };
+ } // packageOverrides)
+ ) {};
+
+ feedme = feedme_0_0_1;
feedparser_0_0_3 = callPackage
(
@@ -11824,47 +16390,17 @@ let
feedparser = feedparser_0_0_3;
- fernet_ecto_0_0_5 = callPackage
- (
- {
- buildMix,
- packageOverrides ? {},
- fetchHex,
- fernetex_0_0_2,
- ecto_1_1_5
- }:
- buildMix ({
- name = "fernet_ecto";
- version = "0.0.5";
- src = fetchHex {
- pkg = "fernet_ecto";
- version = "0.0.5";
- sha256 =
- "d4f9d0c6ffda955b9a1870bfc525def01fb65fef0bb3c4ed739ce5bbfbb98cda";
- };
- beamDeps = [ fernetex_0_0_2 ecto_1_1_5 ];
-
- meta = {
- description = ''Fernet-encrypted fields for Ecto'';
- license = stdenv.lib.licenses.asl20;
- homepage = "https://github.com/jkakar/fernet-ecto";
- };
- } // packageOverrides)
- ) {};
-
- fernet_ecto = fernet_ecto_0_0_5;
-
- fernetex_0_0_2 = callPackage
+ fernetex_0_2_3 = callPackage
(
{ buildMix, packageOverrides ? {}, fetchHex, timex_1_0_2 }:
buildMix ({
name = "fernetex";
- version = "0.0.2";
+ version = "0.2.3";
src = fetchHex {
pkg = "fernetex";
- version = "0.0.2";
+ version = "0.2.3";
sha256 =
- "a6d052384397defe780d3551a16b8b639dba6f89aeea7a6984ecadf44501cfc9";
+ "cf8ac1334cd1937e448bb0c873c1df94dc8bb38cb2320966ba69d9ff8f755805";
};
beamDeps = [ timex_1_0_2 ];
@@ -11877,44 +16413,9 @@ let
} // packageOverrides)
) {};
- fernetex = fernetex_0_0_2;
+ fernetex = fernetex_0_2_3;
- fifo_lager_0_1_3 = callPackage
- (
- {
- buildRebar3,
- packageOverrides ? {},
- fetchHex,
- lager_logstash_backend_0_1_0,
- lager_graylog_0_1_0,
- lager_3_0_2
- }:
- buildRebar3 ({
- name = "fifo_lager";
- version = "0.1.3";
- src = fetchHex {
- pkg = "fifo_lager";
- version = "0.1.3";
- sha256 =
- "89904ffcaaec1e92329d01d18805b26a71683b2ea646bbe8ed4f73de92ce267e";
- };
-
- beamDeps = [
- lager_logstash_backend_0_1_0
- lager_graylog_0_1_0
- lager_3_0_2
- ];
-
- meta = {
- description = ''Lager config and dependencies'';
-
- };
- } // packageOverrides)
- ) {};
-
- fifo_lager = fifo_lager_0_1_3;
-
- fifo_s3_0_1_16 = callPackage
+ fifo_s3_0_2_2 = callPackage
(
{
buildRebar3,
@@ -11922,21 +16423,26 @@ let
fetchHex,
poolboy_1_5_1,
lager_3_0_2,
- erlcloud_0_13_0,
+ hackney_1_6_0,
+ erlcloud_0_13_2,
base16_1_0_0
}:
buildRebar3 ({
name = "fifo_s3";
- version = "0.1.16";
+ version = "0.2.2";
src = fetchHex {
pkg = "fifo_s3";
- version = "0.1.16";
+ version = "0.2.2";
sha256 =
- "14a3601a7586d37ae5fd8996db45d0f7a7ef82c0bc1adaefa36cd881997ed32f";
+ "871809a49fdb22ad7e9ee04fa7a53368e216072cf473046d8f74ee956e735b19";
};
beamDeps = [
- poolboy_1_5_1 lager_3_0_2 erlcloud_0_13_0 base16_1_0_0
+ poolboy_1_5_1
+ lager_3_0_2
+ hackney_1_6_0
+ erlcloud_0_13_2
+ base16_1_0_0
];
meta = {
@@ -11946,7 +16452,7 @@ let
} // packageOverrides)
) {};
- fifo_s3 = fifo_s3_0_1_16;
+ fifo_s3 = fifo_s3_0_2_2;
fifocache_1_0_1 = callPackage
(
@@ -12054,7 +16560,7 @@ let
fetchHex,
xml_builder_0_0_8,
httpotion_2_2_2,
- floki_0_8_0
+ floki_0_8_1
}:
buildMix ({
name = "finicity";
@@ -12065,7 +16571,7 @@ let
sha256 =
"b58ef39987976cf50851311a95b40504ba763c0d82256b012f5b1246bd92d9b4";
};
- beamDeps = [ xml_builder_0_0_8 httpotion_2_2_2 floki_0_8_0 ];
+ beamDeps = [ xml_builder_0_0_8 httpotion_2_2_2 floki_0_8_1 ];
meta = {
description = ''Client library for Finicity.'';
@@ -12149,17 +16655,17 @@ let
fixme = fixme_0_0_4;
- flasked_0_3_0 = callPackage
+ flasked_0_4_0 = callPackage
(
{ buildMix, packageOverrides ? {}, fetchHex }:
buildMix ({
name = "flasked";
- version = "0.3.0";
+ version = "0.4.0";
src = fetchHex {
pkg = "flasked";
- version = "0.3.0";
+ version = "0.4.0";
sha256 =
- "371368ec9586939343fad0196f6dc3492bb4e56309490271d29bf46beede9210";
+ "8499535ce20f8e9d2e38ce7e9ecac1a9fc5f402f3f0ab58661c1ed8795f3178c";
};
meta = {
@@ -12175,7 +16681,7 @@ let
} // packageOverrides)
) {};
- flasked = flasked_0_3_0;
+ flasked = flasked_0_4_0;
flock_0_0_1 = callPackage
(
@@ -12222,21 +16728,19 @@ let
} // packageOverrides)
) {};
- floki_0_8_0 = callPackage
+ floki_0_1_1 = callPackage
(
- {
- buildMix, packageOverrides ? {}, fetchHex, mochiweb_html_2_13_0
- }:
+ { buildMix, packageOverrides ? {}, fetchHex, mochiweb_2_12_2 }:
buildMix ({
name = "floki";
- version = "0.8.0";
+ version = "0.1.1";
src = fetchHex {
pkg = "floki";
- version = "0.8.0";
+ version = "0.1.1";
sha256 =
- "9cc084ca7adf275f639bb7a292838d7dc86d8917314c22f8aa2d8f6ba8b8d18d";
+ "b608415520f6701acdbbffed86b62291b00ce695f7f3b067919594534c9858a9";
};
- beamDeps = [ mochiweb_html_2_13_0 ];
+ beamDeps = [ mochiweb_2_12_2 ];
meta = {
description = ''Floki is a simple HTML parser that enables search
@@ -12247,61 +16751,99 @@ let
} // packageOverrides)
) {};
- floki = floki_0_8_0;
+ floki_0_7_2 = callPackage
+ (
+ { buildMix, packageOverrides ? {}, fetchHex, mochiweb_2_12_2 }:
+ buildMix ({
+ name = "floki";
+ version = "0.7.2";
+ src = fetchHex {
+ pkg = "floki";
+ version = "0.7.2";
+ sha256 =
+ "c7078ac2a54501a16ff469c78292bac5013e457ffa8801b74bc293616aa5b0d0";
+ };
+ beamDeps = [ mochiweb_2_12_2 ];
- floorplan_0_1_1 = callPackage
+ meta = {
+ description = ''Floki is a simple HTML parser that enables search
+ for nodes using CSS selectors.'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/philss/floki";
+ };
+ } // packageOverrides)
+ ) {};
+
+ floki_0_8_1 = callPackage
+ (
+ {
+ buildMix, packageOverrides ? {}, fetchHex, mochiweb_html_2_15_0
+ }:
+ buildMix ({
+ name = "floki";
+ version = "0.8.1";
+ src = fetchHex {
+ pkg = "floki";
+ version = "0.8.1";
+ sha256 =
+ "40da7fa2ae84a7e662d169ff375f745ae3d50200bba7262567d75e97a8b44485";
+ };
+ beamDeps = [ mochiweb_html_2_15_0 ];
+
+ meta = {
+ description = ''Floki is a simple HTML parser that enables search
+ for nodes using CSS selectors.'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/philss/floki";
+ };
+ } // packageOverrides)
+ ) {};
+
+ floki = floki_0_8_1;
+
+ flub_0_9_0 = callPackage
(
{
buildMix,
packageOverrides ? {},
fetchHex,
- xml_builder_0_0_8,
- tzdata_0_1_201603,
- timex_1_0_2,
- postgrex_0_11_1,
- poison_1_5_2,
- httpotion_2_2_2
+ shorter_maps_1_0_0,
+ ex2ms_1_4_0,
+ ets_owner_1_0_0
}:
buildMix ({
- name = "floorplan";
- version = "0.1.1";
+ name = "flub";
+ version = "0.9.0";
src = fetchHex {
- pkg = "floorplan";
- version = "0.1.1";
+ pkg = "flub";
+ version = "0.9.0";
sha256 =
- "56679e586efa7ae179a940920ef2b4d56e40b9b1d01cb4ce8528ef6870a77b00";
+ "8bb3936f7acbf813eee74b628fbe33e8d114c5a40c7b96540e53db4a66b3fa61";
};
- beamDeps = [
- xml_builder_0_0_8
- tzdata_0_1_201603
- timex_1_0_2
- postgrex_0_11_1
- poison_1_5_2
- httpotion_2_2_2
- ];
+ beamDeps = [ shorter_maps_1_0_0 ex2ms_1_4_0 ets_owner_1_0_0 ];
meta = {
- description = ''A module for generating sitemaps from a variety
- of data sources'';
- license = stdenv.lib.licenses.free;
- homepage = "https://github.com/househappy/floorplan";
+ description = ''Flub does Pub. Flub does Sub. Flub does PubSub,
+ bub.'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/meyercm/shorter_maps";
};
} // packageOverrides)
) {};
- floorplan = floorplan_0_1_1;
+ flub = flub_0_9_0;
- fluxter_0_2_0 = callPackage
+ fluxter_0_3_1 = callPackage
(
{ buildMix, packageOverrides ? {}, fetchHex }:
buildMix ({
name = "fluxter";
- version = "0.2.0";
+ version = "0.3.1";
src = fetchHex {
pkg = "fluxter";
- version = "0.2.0";
+ version = "0.3.1";
sha256 =
- "7834e830d156bf9ee819e69929a42f9ce8373a4d50c3e002ad9949cfeb42391d";
+ "0d0fd8497bd83e6c5552c7eff30a87be75da835f55874c3b2c8a36f5cc784337";
};
meta = {
@@ -12312,7 +16854,7 @@ let
} // packageOverrides)
) {};
- fluxter = fluxter_0_2_0;
+ fluxter = fluxter_0_3_1;
fn_1_0_0 = callPackage
(
@@ -12337,30 +16879,31 @@ let
fn = fn_1_0_0;
- fnv_0_2_1 = callPackage
+ fnv_0_3_2 = callPackage
(
{ buildMix, packageOverrides ? {}, fetchHex, hexate_0_5_1 }:
buildMix ({
name = "fnv";
- version = "0.2.1";
+ version = "0.3.2";
src = fetchHex {
pkg = "fnv";
- version = "0.2.1";
+ version = "0.3.2";
sha256 =
- "4f64367d63f0f40fd6bd1618164df41173c76517b10ce96d8358ccc01e1cb2a4";
+ "1993ca598fe7ca402f89ed1836c4a5de320330177104ca7eaac230312e069fe5";
};
beamDeps = [ hexate_0_5_1 ];
meta = {
- description = ''Pure Elixir implementation of Fowler–Noll–Vo
- hash functions (FNV-1/FNV-1a)'';
+ longDescription = ''Some string transformation functions for
+ Elixir. Heavily inspired by ActiveSupport`s
+ String extensions (Ruby).'';
license = stdenv.lib.licenses.mit;
- homepage = "https://github.com/asaaki/fnv.ex";
+ homepage = "https://github.com/asaaki/strinx.ex";
};
} // packageOverrides)
) {};
- fnv = fnv_0_2_1;
+ fnv = fnv_0_3_2;
folsom_0_8_3 = callPackage
(
@@ -12411,36 +16954,129 @@ let
folsomite = folsomite_1_2_8;
- forms_0_0_1 = callPackage
+ forcex_0_4_1 = callPackage
(
- { buildRebar3, packageOverrides ? {}, fetchHex }:
- buildRebar3 ({
- name = "forms";
- version = "0.0.1";
+ {
+ buildMix,
+ packageOverrides ? {},
+ fetchHex,
+ timex_2_1_6,
+ httpoison_0_8_3,
+ exjsx_3_2_0
+ }:
+ buildMix ({
+ name = "forcex";
+ version = "0.4.1";
src = fetchHex {
- pkg = "forms";
- version = "0.0.1";
+ pkg = "forcex";
+ version = "0.4.1";
sha256 =
- "530f63ed8ed5a171f744fc75bd69cb2e36496899d19dbef48101b4636b795868";
+ "82d1c772a369dfb8c705beaf1dae55853402cab06c2dfac1b3e056dbc4cb2c21";
};
-
- buildPlugins = [ rebar3_hex ];
-
+ beamDeps = [ timex_2_1_6 httpoison_0_8_3 exjsx_3_2_0 ];
meta = {
- description = ''Toolbox that simplifies working with Erlang`s
- abstract format'';
+ description = ''Elixir library for the Force.com / SalesForce /
+ SFDC REST API'';
license = stdenv.lib.licenses.mit;
- homepage = "https://github.com/efcasado/forms";
+ homepage = "https://github.com/jeffweiss/forcex";
};
} // packageOverrides)
) {};
- forms = forms_0_0_1;
+ forcex = forcex_0_4_1;
+
+ forecast_io_0_2_2 = callPackage
+ (
+ {
+ buildMix,
+ packageOverrides ? {},
+ fetchHex,
+ json_0_3_3,
+ httpotion_2_2_2
+ }:
+ buildMix ({
+ name = "forecast_io";
+ version = "0.2.2";
+ src = fetchHex {
+ pkg = "forecast_io";
+ version = "0.2.2";
+ sha256 =
+ "d76c4f1839cb77038404c3d291e2449495e81469ddf05bef0dc01ed8544917ca";
+ };
+ beamDeps = [ json_0_3_3 httpotion_2_2_2 ];
+
+ meta = {
+ description = ''Simple wrapper for Forecast.IO API'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/r-icarus/forecast_io";
+ };
+ } // packageOverrides)
+ ) {};
+
+ forecast_io = forecast_io_0_2_2;
+
+ fox_1_0_1 = callPackage
+ (
+ { buildMix, packageOverrides ? {}, fetchHex }:
+ buildMix ({
+ name = "fox";
+ version = "1.0.1";
+ src = fetchHex {
+ pkg = "fox";
+ version = "1.0.1";
+ sha256 =
+ "e790c4dec0f840283c3e93825db259075ee45953ff1c29758a2aec22164c6865";
+ };
+
+ meta = {
+ longDescription = ''Collection of support utility functions and
+ extensions for day-to-day web development with
+ Elixir. Includes utility extension to strings,
+ uri, dicts, integers, functions, parallel,
+ records, random, and time'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/foxnewsnetwork/fox";
+ };
+ } // packageOverrides)
+ ) {};
+
+ fox = fox_1_0_1;
+
+ freegeoip_0_0_4 = callPackage
+ (
+ {
+ buildMix,
+ packageOverrides ? {},
+ fetchHex,
+ poison_1_5_2,
+ httpoison_0_8_3
+ }:
+ buildMix ({
+ name = "freegeoip";
+ version = "0.0.4";
+ src = fetchHex {
+ pkg = "freegeoip";
+ version = "0.0.4";
+ sha256 =
+ "6776938ddc1318ee8a34ef6e3a5dcb85013bbb27feeae3c7d65487ff17e2b558";
+ };
+ beamDeps = [ poison_1_5_2 httpoison_0_8_3 ];
+
+ meta = {
+ description = ''Simple Elixir wrapper for freegeoip.net HTTP
+ API.'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/juljimm/freegeoip-elixir";
+ };
+ } // packageOverrides)
+ ) {};
+
+ freegeoip = freegeoip_0_0_4;
friendly_1_0_1 = callPackage
(
- { buildMix, packageOverrides ? {}, fetchHex, floki_0_8_0 }:
+ { buildMix, packageOverrides ? {}, fetchHex, floki_0_8_1 }:
buildMix ({
name = "friendly";
version = "1.0.1";
@@ -12450,7 +17086,7 @@ let
sha256 =
"5bacdeba9a6752613c037f7ffacd4f7185cf9b348b3b41c73497e539bbb17602";
};
- beamDeps = [ floki_0_8_0 ];
+ beamDeps = [ floki_0_8_1 ];
meta = {
longDescription = ''HTML and XML parser with the most friendly
@@ -12511,6 +17147,65 @@ let
fsm = fsm_0_2_0;
+ fugue_0_1_3 = callPackage
+ (
+ { buildMix, packageOverrides ? {}, fetchHex, plug_1_1_5 }:
+ buildMix ({
+ name = "fugue";
+ version = "0.1.3";
+ src = fetchHex {
+ pkg = "fugue";
+ version = "0.1.3";
+ sha256 =
+ "de7fcfbbe261e189de894773c9332591a7ab42311972d8685bdb0524057c72f1";
+ };
+ beamDeps = [ plug_1_1_5 ];
+
+ meta = {
+ description = ''Extendable testing utilities for Plug'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/camshaft/fugue";
+ };
+ } // packageOverrides)
+ ) {};
+
+ fugue = fugue_0_1_3;
+
+ fulcrum_0_0_6 = callPackage
+ (
+ {
+ buildMix,
+ packageOverrides ? {},
+ fetchHex,
+ poison_1_5_2,
+ httpoison_0_8_3
+ }:
+ buildMix ({
+ name = "fulcrum";
+ version = "0.0.6";
+ src = fetchHex {
+ pkg = "fulcrum";
+ version = "0.0.6";
+ sha256 =
+ "9cddd3906bad693cad791841d19b2be089e064a5f2dd35d340f46e6cd15d7930";
+ };
+ beamDeps = [ poison_1_5_2 httpoison_0_8_3 ];
+
+ meta = {
+ longDescription = ''Fulcrum library for Elixir. The aim is to
+ present the Fulcrum API as a replacement for an
+ Ecto Repo. So, instead of Repo.all(Form), you
+ can write Fulcrum.all(Form). In this way, you
+ only have to make minor changes to your
+ controllers, to work with Fulcrum.'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/pinx/fulcrum";
+ };
+ } // packageOverrides)
+ ) {};
+
+ fulcrum = fulcrum_0_0_6;
+
fumanchu_0_0_1 = callPackage
(
{ buildMix, packageOverrides ? {}, fetchHex }:
@@ -12534,17 +17229,47 @@ let
fumanchu = fumanchu_0_0_1;
- function_decorating_0_0_1 = callPackage
+ funchaku_0_1_0 = callPackage
+ (
+ {
+ buildMix,
+ packageOverrides ? {},
+ fetchHex,
+ poison_1_5_2,
+ httpoison_0_8_3
+ }:
+ buildMix ({
+ name = "funchaku";
+ version = "0.1.0";
+ src = fetchHex {
+ pkg = "funchaku";
+ version = "0.1.0";
+ sha256 =
+ "621ed289eadcc5333d11b698c2d7c459143ff11036f3eedc0d79d3df76a5fd43";
+ };
+ beamDeps = [ poison_1_5_2 httpoison_0_8_3 ];
+
+ meta = {
+ description = ''Elixir client for the Nu HTML Checker'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/sitevalidator/funchaku";
+ };
+ } // packageOverrides)
+ ) {};
+
+ funchaku = funchaku_0_1_0;
+
+ function_decorating_0_0_6 = callPackage
(
{ buildMix, packageOverrides ? {}, fetchHex }:
buildMix ({
name = "function_decorating";
- version = "0.0.1";
+ version = "0.0.6";
src = fetchHex {
pkg = "function_decorating";
- version = "0.0.1";
+ version = "0.0.6";
sha256 =
- "06016a2765de8ea0243b7993226177c96d0f6d51a2db2f84ee9d224a355c3b92";
+ "8faf5588f98c833a25c9463df27e709cc5c645083a592b1a5add25fbb9e68d9a";
};
meta = {
@@ -12558,19 +17283,49 @@ let
} // packageOverrides)
) {};
- function_decorating = function_decorating_0_0_1;
+ function_decorating = function_decorating_0_0_6;
- fuse_2_2_0 = callPackage
+ funkspector_0_0_1 = callPackage
(
- { buildRebar3, packageOverrides ? {}, fetchHex }:
- buildRebar3 ({
+ {
+ buildMix,
+ packageOverrides ? {},
+ fetchHex,
+ floki_0_8_1,
+ httpoison_0_8_3
+ }:
+ buildMix ({
+ name = "funkspector";
+ version = "0.0.1";
+ src = fetchHex {
+ pkg = "funkspector";
+ version = "0.0.1";
+ sha256 =
+ "709574d5b5612c6188764b72b36c4eb2b85f3e27d859d1fe5631f31d17e79695";
+ };
+ beamDeps = [ floki_0_8_1 httpoison_0_8_3 ];
+
+ meta = {
+ description = ''Web page inspector for Elixir'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/sitevalidator/funkspector";
+ };
+ } // packageOverrides)
+ ) {};
+
+ funkspector = funkspector_0_0_1;
+
+ fuse_2_3_1 = callPackage
+ (
+ { buildErlangMk, packageOverrides ? {}, fetchHex }:
+ buildErlangMk ({
name = "fuse";
- version = "2.2.0";
+ version = "2.3.1";
src = fetchHex {
pkg = "fuse";
- version = "2.2.0";
+ version = "2.3.1";
sha256 =
- "c397f336455ab6596842d2199f018af69855f17df1635e212d3871a135ad46fa";
+ "580b6279115b74058982d58a898ac9e2e8fdb1884287d565f1ad987cacf1f8e7";
};
meta = {
@@ -12581,7 +17336,7 @@ let
} // packageOverrides)
) {};
- fuse = fuse_2_2_0;
+ fuse = fuse_2_3_1;
fuzzyurl_0_8_1 = callPackage
(
@@ -12637,17 +17392,147 @@ let
fwatch = fwatch_0_5_0;
- gb2260_0_4_0 = callPackage
+ game_of_life_1_0_0 = callPackage
+ (
+ { buildMix, packageOverrides ? {}, fetchHex }:
+ buildMix ({
+ name = "game_of_life";
+ version = "1.0.0";
+ src = fetchHex {
+ pkg = "game_of_life";
+ version = "1.0.0";
+ sha256 =
+ "4a7e64722d5841d91152352a19db51476fa3e950d7316aba089870248019958b";
+ };
+
+ meta = {
+ description = ''Distributed Game of Life with Board Server API.
+ Run it on multiple nodes.'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/BeyondScheme/elixir-game_of_life";
+ };
+ } // packageOverrides)
+ ) {};
+
+ game_of_life = game_of_life_1_0_0;
+
+ gardien_0_0_3 = callPackage
+ (
+ { buildMix, packageOverrides ? {}, fetchHex }:
+ buildMix ({
+ name = "gardien";
+ version = "0.0.3";
+ src = fetchHex {
+ pkg = "gardien";
+ version = "0.0.3";
+ sha256 =
+ "3b4f69bee6359789e57e6c7efb01358fa94ae52d48b9fced8ee22c8cc99740df";
+ };
+
+ meta = {
+ description = ''Authorization for Phoenix projects'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/rpelyush/gardien";
+ };
+ } // packageOverrides)
+ ) {};
+
+ gardien = gardien_0_0_3;
+
+ garph_0_0_1 = callPackage
+ (
+ { buildMix, packageOverrides ? {}, fetchHex }:
+ buildMix ({
+ name = "garph";
+ version = "0.0.1";
+ src = fetchHex {
+ pkg = "garph";
+ version = "0.0.1";
+ sha256 =
+ "32829d25bdc8cf78256c8fdf1e7294707f94b683ec6ce6d1da0a6a8cd4d77c9e";
+ };
+
+ meta = {
+ longDescription = ''Garph is a simple way to implement complex
+ decision trees by using graphs. It can be used
+ with plain elixir or beneath a phoenix
+ project.'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/faber-lotto/garph";
+ };
+ } // packageOverrides)
+ ) {};
+
+ garph = garph_0_0_1;
+
+ gatekeeper_0_0_1 = callPackage
+ (
+ { buildMix, packageOverrides ? {}, fetchHex }:
+ buildMix ({
+ name = "gatekeeper";
+ version = "0.0.1";
+ src = fetchHex {
+ pkg = "gatekeeper";
+ version = "0.0.1";
+ sha256 =
+ "d1ad9549998054c6ca4d4c7954687937e46b97f2ca4176c7e1d5bfdaf683ac2c";
+ };
+
+ meta = {
+ description = ''An opinionated authorization framework for Elixir
+ projects.'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/austinsmorris/gatekeeper";
+ };
+ } // packageOverrides)
+ ) {};
+
+ gatekeeper = gatekeeper_0_0_1;
+
+ gateway_0_0_6 = callPackage
+ (
+ {
+ buildMix,
+ packageOverrides ? {},
+ fetchHex,
+ poison_2_1_0,
+ httpoison_0_8_3,
+ fox_1_0_1
+ }:
+ buildMix ({
+ name = "gateway";
+ version = "0.0.6";
+ src = fetchHex {
+ pkg = "gateway";
+ version = "0.0.6";
+ sha256 =
+ "4d0de05b0168ee0cc41c9c38491a4b4641d446f38170ca170d0d7440b0c8f619";
+ };
+ beamDeps = [ poison_2_1_0 httpoison_0_8_3 fox_1_0_1 ];
+
+ meta = {
+ longDescription = ''A generic set of macros and conventions to
+ build clients to communicate with JSON REST
+ APIs'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/foxnewsnetwork/gateway";
+ };
+ } // packageOverrides)
+ ) {};
+
+ gateway = gateway_0_0_6;
+
+ gb2260_0_5_0 = callPackage
(
{ buildMix, packageOverrides ? {}, fetchHex, poison_2_1_0 }:
buildMix ({
name = "gb2260";
- version = "0.4.0";
+ version = "0.5.0";
src = fetchHex {
pkg = "gb2260";
- version = "0.4.0";
+ version = "0.5.0";
sha256 =
- "62e89f7f4fcee973e8092e41676a903831f0cf88e31d6bedcf88382dfe40f333";
+ "a3e4fc9435802613f2abc506c480321ac6eafa2eed72b52d85d2c19f8b84ffe7";
};
beamDeps = [ poison_2_1_0 ];
@@ -12660,7 +17545,7 @@ let
} // packageOverrides)
) {};
- gb2260 = gb2260_0_4_0;
+ gb2260 = gb2260_0_5_0;
gealts_0_0_1 = callPackage
(
@@ -12742,31 +17627,73 @@ let
gelfex = gelfex_0_0_1;
- gen_leader_0_1_0 = callPackage
+ gen_delegate_1_0_0 = callPackage
(
- { buildRebar3, packageOverrides ? {}, fetchHex }:
- buildRebar3 ({
- name = "gen_leader";
- version = "0.1.0";
+ { buildMix, packageOverrides ? {}, fetchHex }:
+ buildMix ({
+ name = "gen_delegate";
+ version = "1.0.0";
src = fetchHex {
- pkg = "gen_leader";
- version = "0.1.0";
+ pkg = "gen_delegate";
+ version = "1.0.0";
sha256 =
- "31340f49935767f12b639b69cdc585f26ebcc1802ba46b33555b229da2366207";
+ "9790952ba41538e835613f064774189bd819c79fde8fa09c2ab2bc5143b9efbf";
};
- buildPlugins = [ rebar3_hex ];
-
-
meta = {
- description = ''The gen_leader behaviour'';
- license = stdenv.lib.licenses.free;
- homepage = "https://github.com/knusbaum/gen_leader_revival";
+ description = ''Easy delegation of internal function to a
+ GenServer interface'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/zackehh/gen_delegate";
};
} // packageOverrides)
) {};
- gen_leader = gen_leader_0_1_0;
+ gen_delegate = gen_delegate_1_0_0;
+
+ gen_fsm_0_0_4 = callPackage
+ (
+ { buildMix, packageOverrides ? {}, fetchHex }:
+ buildMix ({
+ name = "gen_fsm";
+ version = "0.0.4";
+ src = fetchHex {
+ pkg = "gen_fsm";
+ version = "0.0.4";
+ sha256 =
+ "c92bf89ea8dee0f924362b12b61d3cd02306e77a0e8174354044238329b6506a";
+ };
+
+ meta = {
+ description = ''Elixir wrapper around Erlang`s OTP gen_fsm.'';
+ license = stdenv.lib.licenses.asl20;
+ homepage = "https://github.com/pavlos/gen_fsm";
+ };
+ } // packageOverrides)
+ ) {};
+
+ gen_fsm_0_1_0 = callPackage
+ (
+ { buildMix, packageOverrides ? {}, fetchHex }:
+ buildMix ({
+ name = "gen_fsm";
+ version = "0.1.0";
+ src = fetchHex {
+ pkg = "gen_fsm";
+ version = "0.1.0";
+ sha256 =
+ "273281dbb6cf6171a6fb963538fde67146a11f6025a80113eae4b29822083a62";
+ };
+
+ meta = {
+ description = ''Elixir wrapper around Erlang`s OTP gen_fsm.'';
+ license = stdenv.lib.licenses.asl20;
+ homepage = "https://github.com/pavlos/gen_fsm";
+ };
+ } // packageOverrides)
+ ) {};
+
+ gen_fsm = gen_fsm_0_1_0;
gen_listener_tcp_0_3_2 = callPackage
(
@@ -12791,6 +17718,81 @@ let
gen_listener_tcp = gen_listener_tcp_0_3_2;
+ gen_mqtt_0_2_1 = callPackage
+ (
+ { buildMix, packageOverrides ? {}, fetchHex }:
+ buildMix ({
+ name = "gen_mqtt";
+ version = "0.2.1";
+ src = fetchHex {
+ pkg = "gen_mqtt";
+ version = "0.2.1";
+ sha256 =
+ "3cb7f6099eca4fb46befdc0bee41d21756f50cc263a7234286c8fb9800db197a";
+ };
+
+ meta = {
+ description = ''An Elixir behaviour that makes it possible to
+ communicate with a MQTT server'';
+ license = stdenv.lib.licenses.asl20;
+ homepage = "https://github.com/gausby/gen_mqtt";
+ };
+ } // packageOverrides)
+ ) {};
+
+ gen_mqtt = gen_mqtt_0_2_1;
+
+ gen_retry_0_3_0 = callPackage
+ (
+ {
+ buildMix, packageOverrides ? {}, fetchHex, exconstructor_1_0_2
+ }:
+ buildMix ({
+ name = "gen_retry";
+ version = "0.3.0";
+ src = fetchHex {
+ pkg = "gen_retry";
+ version = "0.3.0";
+ sha256 =
+ "dca3dd6948ed3683bb1414f7b8131a12dfdc38677fb3730f522c85c6640d73b7";
+ };
+ beamDeps = [ exconstructor_1_0_2 ];
+
+ meta = {
+ longDescription = ''GenRetry provides utilities for retrying
+ Elixir functions, with configurable delay and
+ backoff characteristics.'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/appcues/gen_retry";
+ };
+ } // packageOverrides)
+ ) {};
+
+ gen_retry = gen_retry_0_3_0;
+
+ gen_smtp_0_10_0 = callPackage
+ (
+ { buildRebar3, packageOverrides ? {}, fetchHex }:
+ buildRebar3 ({
+ name = "gen_smtp";
+ version = "0.10.0";
+ src = fetchHex {
+ pkg = "gen_smtp";
+ version = "0.10.0";
+ sha256 =
+ "87baa484762849cdb9f9082fd12449eb02cca059ac6a225f24f436fdf6f683ae";
+ };
+
+ meta = {
+ description = ''A generic Erlang SMTP server/client framework'';
+ license = stdenv.lib.licenses.bsd2;
+ homepage = "https://github.com/Vagabond/gen_smtp";
+ };
+ } // packageOverrides)
+ ) {};
+
+ gen_smtp = gen_smtp_0_10_0;
+
gen_smtp_0_9_0 = callPackage
(
{ buildRebar3, packageOverrides ? {}, fetchHex }:
@@ -12805,17 +17807,13 @@ let
};
meta = {
- longDescription = ''A generic Erlang SMTP server framework that
- can be extended via callback modules in the OTP
- style. '';
-
+ description = ''A generic Erlang SMTP server/client framework'';
+ license = stdenv.lib.licenses.bsd2;
homepage = "https://github.com/Vagabond/gen_smtp";
};
} // packageOverrides)
) {};
- gen_smtp = gen_smtp_0_9_0;
-
gendex_0_5_1 = callPackage
(
{ buildMix, packageOverrides ? {}, fetchHex }:
@@ -12888,17 +17886,41 @@ let
geohash = geohash_0_1_1;
- geolix_0_9_0 = callPackage
+ geolite2data_0_0_1 = callPackage
+ (
+ { buildRebar3, packageOverrides ? {}, fetchHex }:
+ buildRebar3 ({
+ name = "geolite2data";
+ version = "0.0.1";
+ src = fetchHex {
+ pkg = "geolite2data";
+ version = "0.0.1";
+ sha256 =
+ "ba3f48f86302c8f6214afb7822923fcd6b07470ce83cefa1db474e97eb57df97";
+ };
+
+ meta = {
+ description = ''Periodically fetches the free MaxMind GeoLite2
+ databases'';
+ license = stdenv.lib.licenses.mpl20;
+ homepage = "https://github.com/potatosalad/erlang-geolite2data";
+ };
+ } // packageOverrides)
+ ) {};
+
+ geolite2data = geolite2data_0_0_1;
+
+ geolix_0_10_1 = callPackage
(
{ buildMix, packageOverrides ? {}, fetchHex, poolboy_1_5_1 }:
buildMix ({
name = "geolix";
- version = "0.9.0";
+ version = "0.10.1";
src = fetchHex {
pkg = "geolix";
- version = "0.9.0";
+ version = "0.10.1";
sha256 =
- "05bf3057a8997aaf70abc2e8f3ef04679c12b061829af263b3bfb44ad3e8e6a0";
+ "4f269b8b22f01b78b5e0929a3432679f692ae1ac9b31a0f23ca989efd13f9ae0";
};
beamDeps = [ poolboy_1_5_1 ];
@@ -12910,7 +17932,7 @@ let
} // packageOverrides)
) {};
- geolix = geolix_0_9_0;
+ geolix = geolix_0_10_1;
getopt_0_8_2 = callPackage
(
@@ -12957,21 +17979,43 @@ let
} // packageOverrides)
) {};
- gettext = gettext_0_10_0;
-
- gh_webhook_plug_0_0_2 = callPackage
+ gettext_0_11_0 = callPackage
(
- { buildMix, packageOverrides ? {}, fetchHex, plug_1_1_3 }:
+ { buildMix, packageOverrides ? {}, fetchHex }:
+ buildMix ({
+ name = "gettext";
+ version = "0.11.0";
+ src = fetchHex {
+ pkg = "gettext";
+ version = "0.11.0";
+ sha256 =
+ "9688cb656d6bc13d174051256784066dde15c4ddae1f0335590a62952780b58b";
+ };
+
+ meta = {
+ description = ''Internationalization and localization through
+ gettext'';
+ license = stdenv.lib.licenses.asl20;
+ homepage = "https://github.com/elixir-lang/gettext";
+ };
+ } // packageOverrides)
+ ) {};
+
+ gettext = gettext_0_11_0;
+
+ gh_webhook_plug_0_0_3 = callPackage
+ (
+ { buildMix, packageOverrides ? {}, fetchHex, plug_1_1_5 }:
buildMix ({
name = "gh_webhook_plug";
- version = "0.0.2";
+ version = "0.0.3";
src = fetchHex {
pkg = "gh_webhook_plug";
- version = "0.0.2";
+ version = "0.0.3";
sha256 =
- "f89c7b883923aea3a3c488e3344390e0771735df72dad7fec270ce49aba88854";
+ "9509e2a82e8b48e7eb3c90cb79602c5fbb12196d36d5e5f8bcd1ce1ac1b442a9";
};
- beamDeps = [ plug_1_1_3 ];
+ beamDeps = [ plug_1_1_5 ];
meta = {
longDescription = ''This Plug makes it easy to listen and respond
@@ -12983,7 +18027,7 @@ let
} // packageOverrides)
) {};
- gh_webhook_plug = gh_webhook_plug_0_0_2;
+ gh_webhook_plug = gh_webhook_plug_0_0_3;
gibran_0_0_2 = callPackage
(
@@ -13079,6 +18123,116 @@ let
gitex = gitex_0_2_0;
+ github_oauth_0_1_1 = callPackage
+ (
+ {
+ buildMix,
+ packageOverrides ? {},
+ fetchHex,
+ poison_1_5_2,
+ httpoison_0_8_3
+ }:
+ buildMix ({
+ name = "github_oauth";
+ version = "0.1.1";
+ src = fetchHex {
+ pkg = "github_oauth";
+ version = "0.1.1";
+ sha256 =
+ "4e68983af9ed8146a2505ad759cb151c3202471285f07df6132a4acd47aa91f2";
+ };
+ beamDeps = [ poison_1_5_2 httpoison_0_8_3 ];
+
+ meta = {
+ description = ''simple github oauth library'';
+ license = stdenv.lib.licenses.asl20;
+ homepage = "https://github.com/lidashuang/github_oauth";
+ };
+ } // packageOverrides)
+ ) {};
+
+ github_oauth = github_oauth_0_1_1;
+
+ github_trend_ex_0_1_2 = callPackage
+ (
+ {
+ buildMix,
+ packageOverrides ? {},
+ fetchHex,
+ httpoison_0_8_3,
+ floki_0_8_1
+ }:
+ buildMix ({
+ name = "github_trend_ex";
+ version = "0.1.2";
+ src = fetchHex {
+ pkg = "github_trend_ex";
+ version = "0.1.2";
+ sha256 =
+ "019565ad8efe6c25414dcddc6a7fc99e34f0ff457989ec7b5ad03b79b0c8ca8b";
+ };
+ beamDeps = [ httpoison_0_8_3 floki_0_8_1 ];
+
+ meta = {
+ description = ''Get trend repositories from Github.'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/KazuCocoa/github_trend_ex";
+ };
+ } // packageOverrides)
+ ) {};
+
+ github_trend_ex = github_trend_ex_0_1_2;
+
+ gizoogle_0_0_2 = callPackage
+ (
+ { buildMix, packageOverrides ? {}, fetchHex, httpoison_0_8_3 }:
+ buildMix ({
+ name = "gizoogle";
+ version = "0.0.2";
+ src = fetchHex {
+ pkg = "gizoogle";
+ version = "0.0.2";
+ sha256 =
+ "c22d720fc60df8670a194c6ed1fb17fe272a7560b478037aef4a1437331f60e3";
+ };
+ beamDeps = [ httpoison_0_8_3 ];
+
+ meta = {
+ longDescription = ''Uses Gizoogle ta allow you ta drop a rhyme
+ like a thug n` retrieve links fo` translated
+ sitez'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/notdevinclark/gizoogle";
+ };
+ } // packageOverrides)
+ ) {};
+
+ gizoogle = gizoogle_0_0_2;
+
+ gl_utils_0_0_1 = callPackage
+ (
+ { buildMix, packageOverrides ? {}, fetchHex }:
+ buildMix ({
+ name = "gl_utils";
+ version = "0.0.1";
+ src = fetchHex {
+ pkg = "gl_utils";
+ version = "0.0.1";
+ sha256 =
+ "ae529fef193423baa50c673b3f852e0c3ca7b08a85817be7113615dbdacb53f3";
+ };
+
+ meta = {
+ description = ''All of the Erlang gl macros exposed as normal
+ functions'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/requnix/gl_utils";
+ };
+ } // packageOverrides)
+ ) {};
+
+ gl_utils = gl_utils_0_0_1;
+
glitchylicious_0_0_1 = callPackage
(
{ buildMix, packageOverrides ? {}, fetchHex }:
@@ -13149,6 +18303,69 @@ let
gm = gm_0_0_2;
+ gmail_0_1_11 = callPackage
+ (
+ {
+ buildMix,
+ packageOverrides ? {},
+ fetchHex,
+ timex_2_1_6,
+ poison_2_1_0,
+ httpoison_0_8_3
+ }:
+ buildMix ({
+ name = "gmail";
+ version = "0.1.11";
+ src = fetchHex {
+ pkg = "gmail";
+ version = "0.1.11";
+ sha256 =
+ "14ff16f5eb2e705762dc383e59a22905f1f53d3f3e9e17615159bac3add91f7a";
+ };
+ beamDeps = [ timex_2_1_6 poison_2_1_0 httpoison_0_8_3 ];
+
+ meta = {
+ description = ''A simple Gmail REST API client for Elixir'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/craigp/elixir-gmail";
+ };
+ } // packageOverrides)
+ ) {};
+
+ gmail = gmail_0_1_11;
+
+ gold_0_12_0 = callPackage
+ (
+ {
+ buildMix,
+ packageOverrides ? {},
+ fetchHex,
+ poison_1_5_2,
+ httpoison_0_8_3,
+ decimal_1_1_2
+ }:
+ buildMix ({
+ name = "gold";
+ version = "0.12.0";
+ src = fetchHex {
+ pkg = "gold";
+ version = "0.12.0";
+ sha256 =
+ "fba43501f6c25116c29358c4b5494de5e078cc516572045ac73a7944b918105b";
+ };
+ beamDeps = [ poison_1_5_2 httpoison_0_8_3 decimal_1_1_2 ];
+
+ meta = {
+ description = ''An Elixir library to interface with the Bitcoin
+ core JSON-RPC API.'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/solatis/gold";
+ };
+ } // packageOverrides)
+ ) {};
+
+ gold = gold_0_12_0;
+
goldrush_0_1_7 = callPackage
(
{ buildRebar3, packageOverrides ? {}, fetchHex }:
@@ -13163,19 +18380,39 @@ let
};
meta = {
- description = ''Small, Fast event processing and monitoring for
- Erlang/OTP applications. '';
+ description = ''Erlang event stream processor'';
license = stdenv.lib.licenses.isc;
homepage = "https://github.com/DeadZen/goldrush";
};
} // packageOverrides)
) {};
- goldrush = goldrush_0_1_7;
+ goldrush_0_1_8 = callPackage
+ (
+ { buildRebar3, packageOverrides ? {}, fetchHex }:
+ buildRebar3 ({
+ name = "goldrush";
+ version = "0.1.8";
+ src = fetchHex {
+ pkg = "goldrush";
+ version = "0.1.8";
+ sha256 =
+ "ba71e005bbb6ebbc3c510a58b2bd6d3b25a8d091a8e87ac3d33ef10522cdcd51";
+ };
+
+ meta = {
+ description = ''Erlang event stream processor'';
+ license = stdenv.lib.licenses.isc;
+ homepage = "https://github.com/DeadZen/goldrush";
+ };
+ } // packageOverrides)
+ ) {};
+
+ goldrush = goldrush_0_1_8;
good_enough_geoid_0_0_2 = callPackage
(
- { buildMix, packageOverrides ? {}, fetchHex, csv_1_3_3 }:
+ { buildMix, packageOverrides ? {}, fetchHex, csv_1_4_1 }:
buildMix ({
name = "good_enough_geoid";
version = "0.0.2";
@@ -13185,7 +18422,7 @@ let
sha256 =
"7b2a556206f71e743d77c26a55b60b3282bd799b8254510f62afe2a4ec330746";
};
- beamDeps = [ csv_1_3_3 ];
+ beamDeps = [ csv_1_4_1 ];
meta = {
description = ''Get EGM Geoid heights that are good enough for
@@ -13228,7 +18465,7 @@ let
buildMix,
packageOverrides ? {},
fetchHex,
- plug_1_1_3,
+ plug_1_1_5,
module_mocker_0_2_0,
cowboy_1_0_4,
access_token_extractor_0_1_1
@@ -13243,7 +18480,7 @@ let
"029f2399456a7b7474635cab36544d35e200ddd7a470a905191de0fc3612adb5";
};
beamDeps = [
- plug_1_1_3
+ plug_1_1_5
module_mocker_0_2_0
cowboy_1_0_4
access_token_extractor_0_1_1
@@ -13263,6 +18500,159 @@ let
google_auth = google_auth_0_0_2;
+ google_books_0_0_2 = callPackage
+ (
+ {
+ buildMix,
+ packageOverrides ? {},
+ fetchHex,
+ poison_2_1_0,
+ httpoison_0_8_3
+ }:
+ buildMix ({
+ name = "google_books";
+ version = "0.0.2";
+ src = fetchHex {
+ pkg = "google_books";
+ version = "0.0.2";
+ sha256 =
+ "d20b5ca090df63cf4ed32d7257dcdad780bd89ca93bd644721c9d4d696e5734d";
+ };
+ beamDeps = [ poison_2_1_0 httpoison_0_8_3 ];
+
+ meta = {
+ description = ''A simple wrapper for Google Books API'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/nithinbekal/google_books.ex";
+ };
+ } // packageOverrides)
+ ) {};
+
+ google_books = google_books_0_0_2;
+
+ google_sheets_2_0_5 = callPackage
+ (
+ {
+ buildMix,
+ packageOverrides ? {},
+ fetchHex,
+ sweet_xml_0_6_1,
+ httpoison_0_8_3,
+ hackney_1_6_0
+ }:
+ buildMix ({
+ name = "google_sheets";
+ version = "2.0.5";
+ src = fetchHex {
+ pkg = "google_sheets";
+ version = "2.0.5";
+ sha256 =
+ "aeaaab3e2df75289cf14740a76b014652fb77a5ef95be3921fc36f4165812682";
+ };
+ beamDeps = [ sweet_xml_0_6_1 httpoison_0_8_3 hackney_1_6_0 ];
+
+ meta = {
+ description = ''OTP application for fetching and polling Google
+ spreadsheet data in CSV format.'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/GrandCru/GoogleSheets";
+ };
+ } // packageOverrides)
+ ) {};
+
+ google_sheets = google_sheets_2_0_5;
+
+ goomoji_translator_0_0_2 = callPackage
+ (
+ { buildMix, packageOverrides ? {}, fetchHex }:
+ buildMix ({
+ name = "goomoji_translator";
+ version = "0.0.2";
+ src = fetchHex {
+ pkg = "goomoji_translator";
+ version = "0.0.2";
+ sha256 =
+ "b794dcccc306c4c5712895456c28012e1b9f8e8496392bafcfa9c1fc2c251f82";
+ };
+
+ meta = {
+ description = ''Used to change goomoji codes into normal emoji
+ codes'';
+ license = stdenv.lib.licenses.asl20;
+ homepage =
+ "https://github.com/azranel/goomoji-translator_elixir";
+ };
+ } // packageOverrides)
+ ) {};
+
+ goomoji_translator = goomoji_translator_0_0_2;
+
+ goth_0_0_3 = callPackage
+ (
+ {
+ buildMix,
+ packageOverrides ? {},
+ fetchHex,
+ poison_1_5_2,
+ json_web_token_0_2_5,
+ httpoison_0_8_3
+ }:
+ buildMix ({
+ name = "goth";
+ version = "0.0.3";
+ src = fetchHex {
+ pkg = "goth";
+ version = "0.0.3";
+ sha256 =
+ "0bbf59ae842dc4518cf42123b0fb0d0255bcb72ea37c8ec13bab2efe2339ccc3";
+ };
+ beamDeps = [ poison_1_5_2 json_web_token_0_2_5 httpoison_0_8_3
+ ];
+
+ meta = {
+ longDescription = ''A simple library to generate and retrieve
+ Oauth2 tokens for use with Google Cloud Service
+ accounts.'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/peburrows/goth";
+ };
+ } // packageOverrides)
+ ) {};
+
+ goth_0_1_3 = callPackage
+ (
+ {
+ buildMix,
+ packageOverrides ? {},
+ fetchHex,
+ poison_2_1_0,
+ json_web_token_0_2_5,
+ httpoison_0_8_3
+ }:
+ buildMix ({
+ name = "goth";
+ version = "0.1.3";
+ src = fetchHex {
+ pkg = "goth";
+ version = "0.1.3";
+ sha256 =
+ "64a26a9b0682757acd59838eaa08f76b394c7fa086b5106c7b3f8682a8416d05";
+ };
+ beamDeps = [ poison_2_1_0 json_web_token_0_2_5 httpoison_0_8_3
+ ];
+
+ meta = {
+ longDescription = ''A simple library to generate and retrieve
+ Oauth2 tokens for use with Google Cloud Service
+ accounts.'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/peburrows/goth";
+ };
+ } // packageOverrides)
+ ) {};
+
+ goth = goth_0_1_3;
+
gproc_0_3_1 = callPackage
(
{ buildRebar3, packageOverrides ? {}, fetchHex }:
@@ -13360,6 +18750,28 @@ let
graphex = graphex_0_2_1;
+ graphixir_0_0_1 = callPackage
+ (
+ { buildMix, packageOverrides ? {}, fetchHex }:
+ buildMix ({
+ name = "graphixir";
+ version = "0.0.1";
+ src = fetchHex {
+ pkg = "graphixir";
+ version = "0.0.1";
+ sha256 =
+ "8d355dc2ac225c2d74f15707908103ca051c74ef1668abf5240f6d3582750518";
+ };
+
+ meta = {
+ description = ''Graphite framework for elixir'';
+
+ };
+ } // packageOverrides)
+ ) {};
+
+ graphixir = graphixir_0_0_1;
+
graphmath_1_0_2 = callPackage
(
{ buildMix, packageOverrides ? {}, fetchHex }:
@@ -13405,7 +18817,28 @@ let
} // packageOverrides)
) {};
- graphql = graphql_0_2_0;
+ graphql_0_3_1 = callPackage
+ (
+ { buildMix, packageOverrides ? {}, fetchHex }:
+ buildMix ({
+ name = "graphql";
+ version = "0.3.1";
+ src = fetchHex {
+ pkg = "graphql";
+ version = "0.3.1";
+ sha256 =
+ "ed756b2ee62d3e33c6eef6ffc4bf1a7184c1b5cd022a4550b085768eefa8f4a2";
+ };
+
+ meta = {
+ description = ''GraphQL Elixir implementation'';
+ license = stdenv.lib.licenses.bsd3;
+ homepage = "https://github.com/graphql-elixir/graphql";
+ };
+ } // packageOverrides)
+ ) {};
+
+ graphql = graphql_0_3_1;
graphql_ex_0_0_1 = callPackage
(
@@ -13425,6 +18858,29 @@ let
graphql_ex = graphql_ex_0_0_1;
+ gravatar_0_1_0 = callPackage
+ (
+ { buildMix, packageOverrides ? {}, fetchHex }:
+ buildMix ({
+ name = "gravatar";
+ version = "0.1.0";
+ src = fetchHex {
+ pkg = "gravatar";
+ version = "0.1.0";
+ sha256 =
+ "4fab4a0313312d4319496662b55f25d3aabaa740ef3d084456425db8c9bdb4fd";
+ };
+
+ meta = {
+ description = ''Gravatar URLs generator'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/pilu/gravatar";
+ };
+ } // packageOverrides)
+ ) {};
+
+ gravatar = gravatar_0_1_0;
+
gravatarify_0_1_0 = callPackage
(
{ buildMix, packageOverrides ? {}, fetchHex }:
@@ -13472,6 +18928,38 @@ let
gray = gray_0_0_2;
+ greenhouse_0_0_1 = callPackage
+ (
+ {
+ buildMix,
+ packageOverrides ? {},
+ fetchHex,
+ timex_2_1_6,
+ httpoison_0_8_3,
+ exjsx_3_2_0
+ }:
+ buildMix ({
+ name = "greenhouse";
+ version = "0.0.1";
+ src = fetchHex {
+ pkg = "greenhouse";
+ version = "0.0.1";
+ sha256 =
+ "7b32075492339d6ef03572891287689d48d938f36e19601433f47b4ad2f75b5d";
+ };
+ beamDeps = [ timex_2_1_6 httpoison_0_8_3 exjsx_3_2_0 ];
+
+ meta = {
+ description = ''Elixir library for access the Greenhouse Harvest
+ API'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/jeffweiss/greenhouse";
+ };
+ } // packageOverrides)
+ ) {};
+
+ greenhouse = greenhouse_0_0_1;
+
growl_0_0_2 = callPackage
(
{ buildMix, packageOverrides ? {}, fetchHex }:
@@ -13518,6 +19006,31 @@ let
growl = growl_0_0_2;
+ gtfs_0_3_0 = callPackage
+ (
+ { buildMix, packageOverrides ? {}, fetchHex, csv_1_4_1 }:
+ buildMix ({
+ name = "gtfs";
+ version = "0.3.0";
+ src = fetchHex {
+ pkg = "gtfs";
+ version = "0.3.0";
+ sha256 =
+ "a77116b8886f3fa56fb1c9e722b7d62939ff85a38fa99a24daef5a26a0c939a5";
+ };
+ beamDeps = [ csv_1_4_1 ];
+
+ meta = {
+ description = ''A library for parsing a GTFS folder into a
+ hierarchy of structured data'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/bhelx/gtfs";
+ };
+ } // packageOverrides)
+ ) {};
+
+ gtfs = gtfs_0_3_0;
+
guardsafe_0_5_0 = callPackage
(
{ buildMix, packageOverrides ? {}, fetchHex }:
@@ -13545,13 +19058,13 @@ let
gun_1_0_0_pre_1 = callPackage
(
{
- buildRebar3,
+ buildErlangMk,
packageOverrides ? {},
fetchHex,
ranch_1_1_0,
cowlib_1_3_0
}:
- buildRebar3 ({
+ buildErlangMk ({
name = "gun";
version = "1.0.0-pre.1";
src = fetchHex {
@@ -13560,7 +19073,6 @@ let
sha256 =
"53aca19e83b15127aa4e299435823b367d5ba6797852984af6c2b9b493be9d56";
};
-
beamDeps = [ ranch_1_1_0 cowlib_1_3_0 ];
meta = {
@@ -13572,6 +19084,39 @@ let
gun = gun_1_0_0_pre_1;
+ guri_0_2_1 = callPackage
+ (
+ {
+ buildMix,
+ packageOverrides ? {},
+ fetchHex,
+ websocket_client_1_1_0,
+ poison_1_5_2,
+ httpoison_0_8_3
+ }:
+ buildMix ({
+ name = "guri";
+ version = "0.2.1";
+ src = fetchHex {
+ pkg = "guri";
+ version = "0.2.1";
+ sha256 =
+ "7fa0f2ebff111c368895798041d982f00eec34589d93f10bb323bb5a09e1f888";
+ };
+ beamDeps = [ websocket_client_1_1_0 poison_1_5_2 httpoison_0_8_3
+ ];
+
+ meta = {
+ description = ''Automate tasks and keep everyone in the loop with
+ Guri'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/elvio/guri";
+ };
+ } // packageOverrides)
+ ) {};
+
+ guri = guri_0_2_1;
+
gurka_0_1_7 = callPackage
(
{ buildRebar3, packageOverrides ? {}, fetchHex }:
@@ -13594,6 +19139,106 @@ let
gurka = gurka_0_1_7;
+ gutenex_0_2_0 = callPackage
+ (
+ { buildMix, packageOverrides ? {}, fetchHex, imagineer_0_2_1 }:
+ buildMix ({
+ name = "gutenex";
+ version = "0.2.0";
+ src = fetchHex {
+ pkg = "gutenex";
+ version = "0.2.0";
+ sha256 =
+ "5c8ab30570d7ddcd6cdb2eeaf1d3eba4db83f6ef955f4030f05cf476cbce79fa";
+ };
+ beamDeps = [ imagineer_0_2_1 ];
+
+ meta = {
+ description = ''PDF Generation in Elixir'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/SenecaSystems/gutenex";
+ };
+ } // packageOverrides)
+ ) {};
+
+ gutenex = gutenex_0_2_0;
+
+ hackney_1_5_7 = callPackage
+ (
+ {
+ buildMix,
+ packageOverrides ? {},
+ fetchHex,
+ ssl_verify_fun_1_1_0,
+ mimerl_1_0_2,
+ metrics_1_0_1,
+ idna_1_2_0,
+ certifi_0_4_0
+ }:
+ buildMix ({
+ name = "hackney";
+ version = "1.5.7";
+ src = fetchHex {
+ pkg = "hackney";
+ version = "1.5.7";
+ sha256 =
+ "627ed3f048b950d2dbbec918519f89f498a2136d74ca8180c15fad412b9bc869";
+ };
+ beamDeps = [
+ ssl_verify_fun_1_1_0
+ mimerl_1_0_2
+ metrics_1_0_1
+ idna_1_2_0
+ certifi_0_4_0
+ ];
+
+ meta = {
+ description = ''simple HTTP client'';
+ license = stdenv.lib.licenses.asl20;
+ homepage = "https://github.com/benoitc/hackney";
+ };
+ } // packageOverrides)
+ ) {};
+
+ hackney_1_6_0 = callPackage
+ (
+ {
+ buildMix,
+ packageOverrides ? {},
+ fetchHex,
+ ssl_verify_fun_1_1_0,
+ mimerl_1_0_2,
+ metrics_1_0_1,
+ idna_1_2_0,
+ certifi_0_4_0
+ }:
+ buildMix ({
+ name = "hackney";
+ version = "1.6.0";
+ src = fetchHex {
+ pkg = "hackney";
+ version = "1.6.0";
+ sha256 =
+ "8b517f17c794ab611815042d24e149daafbd898d63aac8baf6750b890261c716";
+ };
+ beamDeps = [
+ ssl_verify_fun_1_1_0
+ mimerl_1_0_2
+ metrics_1_0_1
+ idna_1_2_0
+ certifi_0_4_0
+ ];
+
+ meta = {
+ description = ''simple HTTP client'';
+ license = stdenv.lib.licenses.asl20;
+ homepage = "https://github.com/benoitc/hackney";
+ };
+ } // packageOverrides)
+ ) {};
+
+ hackney = hackney_1_6_0;
+
haikunator_1_0_1 = callPackage
(
{ buildMix, packageOverrides ? {}, fetchHex }:
@@ -13618,6 +19263,34 @@ let
haikunator = haikunator_1_0_1;
+ hairnet_1_0_0 = callPackage
+ (
+ {
+ buildRebar3, packageOverrides ? {}, fetchHex, base64url_0_0_1
+ }:
+ buildRebar3 ({
+ name = "hairnet";
+ version = "1.0.0";
+ src = fetchHex {
+ pkg = "hairnet";
+ version = "1.0.0";
+ sha256 =
+ "b3f15cdb7d9e6183a5cde401ded684c88cc2ea09dca75facf82b5281f4596606";
+ };
+
+ beamDeps = [ base64url_0_0_1 ];
+
+ meta = {
+ description = ''An Erlang library wrapping AES-GCM (AEAD) crypto
+ in a Fernet-like interface'';
+ license = stdenv.lib.licenses.bsd3;
+ homepage = "https://github.com/ferd/hairnet/";
+ };
+ } // packageOverrides)
+ ) {};
+
+ hairnet = hairnet_1_0_0;
+
happy_1_1_1 = callPackage
(
{ buildMix, packageOverrides ? {}, fetchHex }:
@@ -13643,17 +19316,17 @@ let
happy = happy_1_1_1;
- harakiri_0_6_0 = callPackage
+ harakiri_1_0_1 = callPackage
(
{ buildMix, packageOverrides ? {}, fetchHex }:
buildMix ({
name = "harakiri";
- version = "0.6.0";
+ version = "1.0.1";
src = fetchHex {
pkg = "harakiri";
- version = "0.6.0";
+ version = "1.0.1";
sha256 =
- "0cd6f40db8d2e475ea4b9ae4c872656171bced2571e8f86caf49ac7680656b94";
+ "2c3bc7300cbded03bb1b01ebe67e74507a5350c79fe08276a2a17359a6c28d79";
};
meta = {
@@ -13664,7 +19337,63 @@ let
} // packageOverrides)
) {};
- harakiri = harakiri_0_6_0;
+ harakiri = harakiri_1_0_1;
+
+ harvest_0_0_3 = callPackage
+ (
+ {
+ buildMix,
+ packageOverrides ? {},
+ fetchHex,
+ poison_2_1_0,
+ httpoison_0_8_3
+ }:
+ buildMix ({
+ name = "harvest";
+ version = "0.0.3";
+ src = fetchHex {
+ pkg = "harvest";
+ version = "0.0.3";
+ sha256 =
+ "a9b52f37959a97e876603da5a34a0683e9e4a8e534fb7c672175602768fc812a";
+ };
+ beamDeps = [ poison_2_1_0 httpoison_0_8_3 ];
+
+ meta = {
+ description = ''Harvest Time Tracking API wrapper written in
+ Elixir'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/luishurtado/harvest";
+ };
+ } // packageOverrides)
+ ) {};
+
+ harvest = harvest_0_0_3;
+
+ hash_n_cache_0_0_2 = callPackage
+ (
+ { buildMix, packageOverrides ? {}, fetchHex }:
+ buildMix ({
+ name = "hash_n_cache";
+ version = "0.0.2";
+ src = fetchHex {
+ pkg = "hash_n_cache";
+ version = "0.0.2";
+ sha256 =
+ "3cd95f04cd6017894b1829307e568a72a3d42c6b70379c37b86c80ab0a6f68ec";
+ };
+
+ meta = {
+ longDescription = ''A simple utility to hash an erlang term, and
+ cache the term in ETS with the hash as the key
+ and the term as the value.'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/elbow-jason/hash_n_cache";
+ };
+ } // packageOverrides)
+ ) {};
+
+ hash_n_cache = hash_n_cache_0_0_2;
hash_ring_0_4_0 = callPackage
(
@@ -13759,19 +19488,18 @@ let
heapq = heapq_0_0_1;
- hedwig_0_3_0 = callPackage
+ hedwig_0_1_0 = callPackage
(
- { buildMix, packageOverrides ? {}, fetchHex, gproc_0_5_0 }:
+ { buildMix, packageOverrides ? {}, fetchHex }:
buildMix ({
name = "hedwig";
- version = "0.3.0";
+ version = "0.1.0";
src = fetchHex {
pkg = "hedwig";
- version = "0.3.0";
+ version = "0.1.0";
sha256 =
- "2a1dfd91c56c43e804fbfb7a24fcaee67f17add19615e66321205ad486231e53";
+ "75139dc3ce629dcb703a17d053acf84da0787ab398e20566e10152cdf1ccad9c";
};
- beamDeps = [ gproc_0_5_0 ];
meta = {
description = ''An adapter-based chat bot framework'';
@@ -13831,6 +19559,29 @@ let
hermes = hermes_0_1_0;
+ hex2bin_1_0_0 = callPackage
+ (
+ { buildRebar3, packageOverrides ? {}, fetchHex }:
+ buildRebar3 ({
+ name = "hex2bin";
+ version = "1.0.0";
+ src = fetchHex {
+ pkg = "hex2bin";
+ version = "1.0.0";
+ sha256 =
+ "e7012d1d9aadd26e680f0983d26fb8923707f05fac9688f19f530fa3795e716f";
+ };
+
+ meta = {
+ description = ''Hex string/binary conversion utilities'';
+ license = stdenv.lib.licenses.apsl20;
+ homepage = "https://github.com/aesedepece/hex2bin";
+ };
+ } // packageOverrides)
+ ) {};
+
+ hex2bin = hex2bin_1_0_0;
+
hex_math_0_0_2 = callPackage
(
{ buildMix, packageOverrides ? {}, fetchHex }:
@@ -13854,6 +19605,43 @@ let
hex_math = hex_math_0_0_2;
+ hex_searcher_1_0_0 = callPackage
+ (
+ {
+ buildMix,
+ packageOverrides ? {},
+ fetchHex,
+ table_rex_0_4_0,
+ ibrowse_4_2_2,
+ httpotion_2_2_2,
+ floki_0_7_2
+ }:
+ buildMix ({
+ name = "hex_searcher";
+ version = "1.0.0";
+ src = fetchHex {
+ pkg = "hex_searcher";
+ version = "1.0.0";
+ sha256 =
+ "26d2097aa0f950c67ea55822e15cfec26976f76a60ec51d758af9d60126b3538";
+ };
+ beamDeps = [
+ table_rex_0_4_0
+ ibrowse_4_2_2
+ httpotion_2_2_2
+ floki_0_7_2
+ ];
+
+ meta = {
+ description = ''Search hex packages from terminal'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/nguyenvinhlinh/HexSearcher";
+ };
+ } // packageOverrides)
+ ) {};
+
+ hex_searcher = hex_searcher_1_0_0;
+
hexate_0_5_1 = callPackage
(
{ buildMix, packageOverrides ? {}, fetchHex }:
@@ -13925,6 +19713,37 @@ let
hexdocset = hexdocset_1_0_0;
+ hipchat_logger_backend_0_1_2 = callPackage
+ (
+ {
+ buildMix,
+ packageOverrides ? {},
+ fetchHex,
+ poison_1_5_2,
+ httpoison_0_8_3
+ }:
+ buildMix ({
+ name = "hipchat_logger_backend";
+ version = "0.1.2";
+ src = fetchHex {
+ pkg = "hipchat_logger_backend";
+ version = "0.1.2";
+ sha256 =
+ "211bb8e174858c7858c76f992fa7b19d9373a29d7f501b774517534af17bf590";
+ };
+ beamDeps = [ poison_1_5_2 httpoison_0_8_3 ];
+
+ meta = {
+ description = ''A logger backend for posting errors to
+ HipChat.'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/fbcouch/hipchat_logger_backend";
+ };
+ } // packageOverrides)
+ ) {};
+
+ hipchat_logger_backend = hipchat_logger_backend_0_1_2;
+
hlc_2_0_0 = callPackage
(
{ buildRebar3, packageOverrides ? {}, fetchHex }:
@@ -13948,17 +19767,17 @@ let
hlc = hlc_2_0_0;
- hoax_0_11_1 = callPackage
+ hoax_0_11_2 = callPackage
(
{ buildRebar3, packageOverrides ? {}, fetchHex }:
buildRebar3 ({
name = "hoax";
- version = "0.11.1";
+ version = "0.11.2";
src = fetchHex {
pkg = "hoax";
- version = "0.11.1";
+ version = "0.11.2";
sha256 =
- "49476b151d5aac771fca9fc079c745339203d5a7313b357e90942b5d929d0110";
+ "fca0d9056201e671719736b4f86fe2b8da6f8b42d88b28b1bcb2b307586928a8";
};
meta = {
@@ -13969,7 +19788,7 @@ let
} // packageOverrides)
) {};
- hoax = hoax_0_11_1;
+ hoax = hoax_0_11_2;
holidays_0_1_1 = callPackage
(
@@ -13995,6 +19814,40 @@ let
holidays = holidays_0_1_1;
+ honeybadger_0_5_0 = callPackage
+ (
+ {
+ buildMix,
+ packageOverrides ? {},
+ fetchHex,
+ poison_2_1_0,
+ plug_1_1_5,
+ httpoison_0_8_3
+ }:
+ buildMix ({
+ name = "honeybadger";
+ version = "0.5.0";
+ src = fetchHex {
+ pkg = "honeybadger";
+ version = "0.5.0";
+ sha256 =
+ "a19b507955a229276af2af14b4a324d4b352d17b468e9c29215e1637bd493c42";
+ };
+ beamDeps = [ poison_2_1_0 plug_1_1_5 httpoison_0_8_3 ];
+
+ meta = {
+ longDescription = ''Elixir client, Plug and error_logger for
+ integrating with the Honeybadger.io exception
+ tracker'';
+ license = stdenv.lib.licenses.mit;
+ homepage =
+ "https://github.com/honeybadger-io/honeybadger-elixir";
+ };
+ } // packageOverrides)
+ ) {};
+
+ honeybadger = honeybadger_0_5_0;
+
hooks_1_1_1 = callPackage
(
{ buildRebar3, packageOverrides ? {}, fetchHex }:
@@ -14018,6 +19871,37 @@ let
hooks = hooks_1_1_1;
+ hound_1_0_0 = callPackage
+ (
+ {
+ buildMix,
+ packageOverrides ? {},
+ fetchHex,
+ poison_2_1_0,
+ httpoison_0_8_3
+ }:
+ buildMix ({
+ name = "hound";
+ version = "1.0.0";
+ src = fetchHex {
+ pkg = "hound";
+ version = "1.0.0";
+ sha256 =
+ "433c541048096b864f4a346231967d63f4acfcc32fd280f80505b95a2f9738a4";
+ };
+ beamDeps = [ poison_2_1_0 httpoison_0_8_3 ];
+
+ meta = {
+ description = ''Webdriver library for integration testing and
+ browser automation'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/HashNuke/hound";
+ };
+ } // packageOverrides)
+ ) {};
+
+ hound = hound_1_0_0;
+
hpack_1_0_0 = callPackage
(
{ buildMix, packageOverrides ? {}, fetchHex }:
@@ -14091,6 +19975,52 @@ let
html_entities = html_entities_0_3_0;
+ html_sanitize_ex_0_1_2 = callPackage
+ (
+ { buildMix, packageOverrides ? {}, fetchHex, mochiweb_2_12_2 }:
+ buildMix ({
+ name = "html_sanitize_ex";
+ version = "0.1.2";
+ src = fetchHex {
+ pkg = "html_sanitize_ex";
+ version = "0.1.2";
+ sha256 =
+ "e6937b25832bcdccb8b547632428de7fe034199c871f037311d4340c345348a7";
+ };
+ beamDeps = [ mochiweb_2_12_2 ];
+
+ meta = {
+ description = ''HTML sanitizer for Elixir'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/rrrene/html_sanitize_ex";
+ };
+ } // packageOverrides)
+ ) {};
+
+ html_sanitize_ex_1_0_0 = callPackage
+ (
+ { buildMix, packageOverrides ? {}, fetchHex, mochiweb_2_12_2 }:
+ buildMix ({
+ name = "html_sanitize_ex";
+ version = "1.0.0";
+ src = fetchHex {
+ pkg = "html_sanitize_ex";
+ version = "1.0.0";
+ sha256 =
+ "5bf36372dafe900da8d9613502ce4efad3d885af5beb0d298386da0b6a1dbbc6";
+ };
+ beamDeps = [ mochiweb_2_12_2 ];
+
+ meta = {
+ description = ''HTML sanitizer for Elixir'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/rrrene/html_sanitize_ex";
+ };
+ } // packageOverrides)
+ ) {};
+
+ html_sanitize_ex = html_sanitize_ex_1_0_0;
+
html_to_pdf_0_5_2 = callPackage
(
{ buildMix, packageOverrides ? {}, fetchHex }:
@@ -14138,6 +20068,30 @@ let
http2 = http2_0_0_2;
+ http_digex_0_0_1 = callPackage
+ (
+ { buildMix, packageOverrides ? {}, fetchHex }:
+ buildMix ({
+ name = "http_digex";
+ version = "0.0.1";
+ src = fetchHex {
+ pkg = "http_digex";
+ version = "0.0.1";
+ sha256 =
+ "43bca23be7809bd4e2a5efa23d294117457192c98bd1cdf6b90b61285bc4109a";
+ };
+
+ meta = {
+ description = ''A module to create basic digest http auth
+ header'';
+ license = stdenv.lib.licenses.asl20;
+ homepage = "https://github.com/techgaun/http_digex";
+ };
+ } // packageOverrides)
+ ) {};
+
+ http_digex = http_digex_0_0_1;
+
http_params_serializer_0_1_1 = callPackage
(
{ buildMix, packageOverrides ? {}, fetchHex }:
@@ -14164,6 +20118,40 @@ let
http_params_serializer = http_params_serializer_0_1_1;
+ http_proxy_1_0_2 = callPackage
+ (
+ {
+ buildMix,
+ packageOverrides ? {},
+ fetchHex,
+ plug_1_1_5,
+ hackney_1_6_0,
+ exjsx_3_2_0,
+ cowboy_1_0_4
+ }:
+ buildMix ({
+ name = "http_proxy";
+ version = "1.0.2";
+ src = fetchHex {
+ pkg = "http_proxy";
+ version = "1.0.2";
+ sha256 =
+ "157f7a75f41f9f1532244c0eb1587fa638518c2e9b0f95aaaf3f6d1489ec94e3";
+ };
+ beamDeps = [ plug_1_1_5 hackney_1_6_0 exjsx_3_2_0 cowboy_1_0_4
+ ];
+
+ meta = {
+ description = ''Multi port HTTP Proxy and support record/play
+ request.'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/KazuCocoa/http_proxy";
+ };
+ } // packageOverrides)
+ ) {};
+
+ http_proxy = http_proxy_1_0_2;
+
http_router_0_0_8 = callPackage
(
{
@@ -14172,7 +20160,7 @@ let
fetchHex,
xml_builder_0_0_8,
poison_1_5_2,
- plug_1_1_3,
+ plug_1_1_5,
cowboy_1_0_4
}:
buildMix ({
@@ -14185,7 +20173,7 @@ let
"9a2844cc8c880621ca2689e0056f50e2c19e3b0e87a8e2524489459b377a8dc3";
};
beamDeps = [
- xml_builder_0_0_8 poison_1_5_2 plug_1_1_3 cowboy_1_0_4
+ xml_builder_0_0_8 poison_1_5_2 plug_1_1_5 cowboy_1_0_4
];
meta = {
@@ -14203,8 +20191,8 @@ let
http_signature_1_1_0 = callPackage
(
- { buildErlangMk, packageOverrides ? {}, fetchHex }:
- buildErlangMk ({
+ { buildMix, packageOverrides ? {}, fetchHex }:
+ buildMix ({
name = "http_signature";
version = "1.1.0";
src = fetchHex {
@@ -14257,6 +20245,102 @@ let
httparrot = httparrot_0_3_4;
+ httpehaviour_0_9_0 = callPackage
+ (
+ { buildMix, packageOverrides ? {}, fetchHex, hackney_1_6_0 }:
+ buildMix ({
+ name = "httpehaviour";
+ version = "0.9.0";
+ src = fetchHex {
+ pkg = "httpehaviour";
+ version = "0.9.0";
+ sha256 =
+ "54e93dcf0e62d392781078cf029478194797fe67c98dffe99a91b5d5ec33e4e5";
+ };
+ beamDeps = [ hackney_1_6_0 ];
+
+ meta = {
+ description = ''Yet Yet Another HTTP client for Elixir powered by
+ hackney'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/edgurgel/httpehaviour";
+ };
+ } // packageOverrides)
+ ) {};
+
+ httpehaviour = httpehaviour_0_9_0;
+
+ httplacebo_0_1_0 = callPackage
+ (
+ { buildMix, packageOverrides ? {}, fetchHex }:
+ buildMix ({
+ name = "httplacebo";
+ version = "0.1.0";
+ src = fetchHex {
+ pkg = "httplacebo";
+ version = "0.1.0";
+ sha256 =
+ "0f1873e65bb97227d43b5c6fc2138f33ef83f90cd068d9a9aee06ed8ef44a7ec";
+ };
+
+ meta = {
+ description = ''The `do nothing` HTTP client for Elixir.'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/guilleiguaran/httplacebo";
+ };
+ } // packageOverrides)
+ ) {};
+
+ httplacebo = httplacebo_0_1_0;
+
+ httpoison_0_8_2 = callPackage
+ (
+ { buildMix, packageOverrides ? {}, fetchHex, hackney_1_5_7 }:
+ buildMix ({
+ name = "httpoison";
+ version = "0.8.2";
+ src = fetchHex {
+ pkg = "httpoison";
+ version = "0.8.2";
+ sha256 =
+ "00738e34fe2e254199c0324ef60b8150a7b2ced66c2296c4df8425c8e9b8d5c0";
+ };
+ beamDeps = [ hackney_1_5_7 ];
+
+ meta = {
+ description = ''Yet Another HTTP client for Elixir powered by
+ hackney'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/edgurgel/httpoison";
+ };
+ } // packageOverrides)
+ ) {};
+
+ httpoison_0_8_3 = callPackage
+ (
+ { buildMix, packageOverrides ? {}, fetchHex, hackney_1_6_0 }:
+ buildMix ({
+ name = "httpoison";
+ version = "0.8.3";
+ src = fetchHex {
+ pkg = "httpoison";
+ version = "0.8.3";
+ sha256 =
+ "74f2103e6eff47dcc2b288e37f42629874df3e4a4dce5fbc9dea508de4785e06";
+ };
+ beamDeps = [ hackney_1_6_0 ];
+
+ meta = {
+ description = ''Yet Another HTTP client for Elixir powered by
+ hackney'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/edgurgel/httpoison";
+ };
+ } // packageOverrides)
+ ) {};
+
+ httpoison = httpoison_0_8_3;
+
httpotion_2_2_2 = callPackage
(
{ buildMix, packageOverrides ? {}, fetchHex, ibrowse_4_2_2 }:
@@ -14280,7 +20364,30 @@ let
} // packageOverrides)
) {};
- httpotion = httpotion_2_2_2;
+ httpotion_3_0_0 = callPackage
+ (
+ { buildMix, packageOverrides ? {}, fetchHex, ibrowse_4_2_2 }:
+ buildMix ({
+ name = "httpotion";
+ version = "3.0.0";
+ src = fetchHex {
+ pkg = "httpotion";
+ version = "3.0.0";
+ sha256 =
+ "ca6364eaa9737ba305307e17d0277c80e57003fc0934b99f6a5048d7a4f932b8";
+ };
+ beamDeps = [ ibrowse_4_2_2 ];
+
+ meta = {
+ description = ''Fancy HTTP client for Elixir, based on
+ ibrowse.'';
+ license = stdenv.lib.licenses.unlicense;
+ homepage = "https://github.com/myfreeweb/httpotion";
+ };
+ } // packageOverrides)
+ ) {};
+
+ httpotion = httpotion_3_0_0;
huami_0_0_1 = callPackage
(
@@ -14306,6 +20413,37 @@ let
huami = huami_0_0_1;
+ huex_0_5_0 = callPackage
+ (
+ {
+ buildMix,
+ packageOverrides ? {},
+ fetchHex,
+ json_0_3_3,
+ httpoison_0_8_3
+ }:
+ buildMix ({
+ name = "huex";
+ version = "0.5.0";
+ src = fetchHex {
+ pkg = "huex";
+ version = "0.5.0";
+ sha256 =
+ "e5fe37fdc4299567922697516df8ade2f64d2c1573dc9a253e5037f66576858f";
+ };
+ beamDeps = [ json_0_3_3 httpoison_0_8_3 ];
+
+ meta = {
+ description = ''Elixir client for Philips Hue connected light
+ bulbs'';
+ license = stdenv.lib.licenses.asl20;
+ homepage = "https://github.com/xavier/huex";
+ };
+ } // packageOverrides)
+ ) {};
+
+ huex = huex_0_5_0;
+
hufflehoff_0_0_1 = callPackage
(
{ buildMix, packageOverrides ? {}, fetchHex }:
@@ -14376,6 +20514,72 @@ let
hulaaki = hulaaki_0_0_2;
+ hyde_0_0_1 = callPackage
+ (
+ { buildMix, packageOverrides ? {}, fetchHex, exredis_0_2_4 }:
+ buildMix ({
+ name = "hyde";
+ version = "0.0.1";
+ src = fetchHex {
+ pkg = "hyde";
+ version = "0.0.1";
+ sha256 =
+ "d4424adbf13e2aecafa38f73318885f56bd70eb8e5fede22858af8cf76e2475e";
+ };
+ beamDeps = [ exredis_0_2_4 ];
+
+ meta = {
+ longDescription = ''Feature Toggles for Elixir - Basic Redis
+ backed feature toggles for individual users or
+ named groups'';
+
+ homepage = "https://github.com/beautifulcode/hyde";
+ };
+ } // packageOverrides)
+ ) {};
+
+ hyde = hyde_0_0_1;
+
+ hydra_0_0_1 = callPackage
+ (
+ {
+ buildMix,
+ packageOverrides ? {},
+ fetchHex,
+ porcelain_2_0_1,
+ poison_1_5_2,
+ plug_1_1_5,
+ httpoison_0_8_3,
+ cowboy_1_0_4
+ }:
+ buildMix ({
+ name = "hydra";
+ version = "0.0.1";
+ src = fetchHex {
+ pkg = "hydra";
+ version = "0.0.1";
+ sha256 =
+ "ea35ec756dfaa0390ba53a0313bb50b924517f746922a98e3489bddf8e066b7d";
+ };
+ beamDeps = [
+ porcelain_2_0_1
+ poison_1_5_2
+ plug_1_1_5
+ httpoison_0_8_3
+ cowboy_1_0_4
+ ];
+
+ meta = {
+ description = ''A multi-headed beast: API gateway, request cache,
+ and data transformations'';
+ license = stdenv.lib.licenses.asl20;
+ homepage = "https://github.com/doomspork/hydra";
+ };
+ } // packageOverrides)
+ ) {};
+
+ hydra = hydra_0_0_1;
+
hypermedia_0_0_1 = callPackage
(
{ buildMix, packageOverrides ? {}, fetchHex }:
@@ -14400,9 +20604,83 @@ let
hypermedia = hypermedia_0_0_1;
+ hypermock_0_0_2 = callPackage
+ (
+ { buildMix, packageOverrides ? {}, fetchHex, meck_0_8_4 }:
+ buildMix ({
+ name = "hypermock";
+ version = "0.0.2";
+ src = fetchHex {
+ pkg = "hypermock";
+ version = "0.0.2";
+ sha256 =
+ "dbb7ad24f651a3bb99475f39f9b0d6b7e9b3f959d8a80577ea6c803a5b548516";
+ };
+ beamDeps = [ meck_0_8_4 ];
+
+ meta = { };
+ } // packageOverrides)
+ ) {};
+
+ hypermock = hypermock_0_0_2;
+
+ hypex_1_1_0 = callPackage
+ (
+ { buildMix, packageOverrides ? {}, fetchHex }:
+ buildMix ({
+ name = "hypex";
+ version = "1.1.0";
+ src = fetchHex {
+ pkg = "hypex";
+ version = "1.1.0";
+ sha256 =
+ "32e153bee0dabea8941940711c9ed9a7e15c50fc3d474c5b75b14359fb408363";
+ };
+
+ meta = {
+ description = ''Fast HyperLogLog implementation for
+ Elixir/Erlang'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/zackehh/hypex";
+ };
+ } // packageOverrides)
+ ) {};
+
+ hypex = hypex_1_1_0;
+
+ i18n_0_0_2 = callPackage
+ (
+ {
+ buildMix,
+ packageOverrides ? {},
+ fetchHex,
+ tipo_0_0_3,
+ exprintf_0_1_6
+ }:
+ buildMix ({
+ name = "i18n";
+ version = "0.0.2";
+ src = fetchHex {
+ pkg = "i18n";
+ version = "0.0.2";
+ sha256 =
+ "d3fbaccb502540565a9659fd21cff930b12ee698bfdac6d3df6487e2c101891f";
+ };
+ beamDeps = [ tipo_0_0_3 exprintf_0_1_6 ];
+
+ meta = {
+ description = ''i18n locale translations helpers'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/nathanfaucett/ex-i18n";
+ };
+ } // packageOverrides)
+ ) {};
+
+ i18n = i18n_0_0_2;
+
iam_role_1_0_0 = callPackage
(
- { buildMix, packageOverrides ? {}, fetchHex, jsone_1_2_1 }:
+ { buildMix, packageOverrides ? {}, fetchHex, jsone_1_2_3 }:
buildMix ({
name = "iam_role";
version = "1.0.0";
@@ -14412,7 +20690,7 @@ let
sha256 =
"acfc5d5c5130a36dfb2b460f790bd9e32bf39274f17333bd65c28d216983761d";
};
- beamDeps = [ jsone_1_2_1 ];
+ beamDeps = [ jsone_1_2_3 ];
meta = {
description = ''Application for automatically fetching AWS IAM
@@ -14472,6 +20750,31 @@ let
identicon = identicon_0_2_0;
+ idfk_0_1_0 = callPackage
+ (
+ { buildMix, packageOverrides ? {}, fetchHex, timex_2_1_6 }:
+ buildMix ({
+ name = "idfk";
+ version = "0.1.0";
+ src = fetchHex {
+ pkg = "idfk";
+ version = "0.1.0";
+ sha256 =
+ "dab162904f49c852db763719364d5b3e6d75bfc319fe3d8f5179c6bb656acf6d";
+ };
+ beamDeps = [ timex_2_1_6 ];
+
+ meta = {
+ description = ''The library of Elixir chunks of code that didn`t
+ clearly belong anywhere else.'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/amorphid/idfk";
+ };
+ } // packageOverrides)
+ ) {};
+
+ idfk = idfk_0_1_0;
+
idna_1_0_2 = callPackage
(
{ buildErlangMk, packageOverrides ? {}, fetchHex }:
@@ -14674,6 +20977,52 @@ let
immortal = immortal_0_2_0;
+ inaka_aleppo_1_0_0 = callPackage
+ (
+ { buildRebar3, packageOverrides ? {}, fetchHex }:
+ buildRebar3 ({
+ name = "inaka_aleppo";
+ version = "1.0.0";
+ src = fetchHex {
+ pkg = "inaka_aleppo";
+ version = "1.0.0";
+ sha256 =
+ "06754b98702607ec742d8315b2e79188b38fbb60e3f1a1582de5673e230f74d4";
+ };
+
+ meta = {
+ description = ''Aleppo: ALternative Erlang Pre-ProcessOr'';
+ license = stdenv.lib.licenses.asl20;
+ homepage = "https://github.com/inaka/aleppo";
+ };
+ } // packageOverrides)
+ ) {};
+
+ inaka_aleppo = inaka_aleppo_1_0_0;
+
+ inaka_mixer_0_1_5 = callPackage
+ (
+ { buildRebar3, packageOverrides ? {}, fetchHex }:
+ buildRebar3 ({
+ name = "inaka_mixer";
+ version = "0.1.5";
+ src = fetchHex {
+ pkg = "inaka_mixer";
+ version = "0.1.5";
+ sha256 =
+ "37af35b1c17a94a0cb643cba23cba2ca68d6fe51c3ad8337629d4c3c017cc912";
+ };
+
+ meta = {
+ description = ''Mix in public functions from external modules'';
+ license = stdenv.lib.licenses.asl20;
+ homepage = "https://github.com/inaka/mixer";
+ };
+ } // packageOverrides)
+ ) {};
+
+ inaka_mixer = inaka_mixer_0_1_5;
+
indefinite_article_0_0_1 = callPackage
(
{ buildMix, packageOverrides ? {}, fetchHex }:
@@ -14723,28 +21072,138 @@ let
inet_cidr = inet_cidr_1_0_1;
- inflex_0_2_4 = callPackage
+ inflect_0_0_11 = callPackage
(
{ buildMix, packageOverrides ? {}, fetchHex }:
buildMix ({
- name = "inflex";
- version = "0.2.4";
+ name = "inflect";
+ version = "0.0.11";
src = fetchHex {
- pkg = "inflex";
- version = "0.2.4";
+ pkg = "inflect";
+ version = "0.0.11";
sha256 =
- "f4bf8389a59b04f2b92be024d6234fc3583863f06d23db70324f9cb6b5eba8bf";
+ "36636ccb31b1ca9f34d95af8fff97aa68d34d925c5128dc8f04fc77764fa208a";
};
meta = {
- description = ''An Elixir library for handling word
- inflections.'';
- license = stdenv.lib.licenses.asl20;
- homepage = "https://github.com/nurugger07/inflex";
+ description = ''case sensitive regular expression for splitting
+ strings'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/nathanfaucett/ex-inflect";
};
} // packageOverrides)
) {};
+ inflect = inflect_0_0_11;
+
+ inflections_0_0_1 = callPackage
+ (
+ { buildMix, packageOverrides ? {}, fetchHex, inflector_0_0_11 }:
+ buildMix ({
+ name = "inflections";
+ version = "0.0.1";
+ src = fetchHex {
+ pkg = "inflections";
+ version = "0.0.1";
+ sha256 =
+ "f1fe5f35313eb1bd6bfc3a0d5e3bd169a31bfbf09021b9928ecfff3052731efc";
+ };
+ beamDeps = [ inflector_0_0_11 ];
+
+ meta = {
+ description = ''inflector helpers for managing different
+ locales'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/nathanfaucett/ex-inflections";
+ };
+ } // packageOverrides)
+ ) {};
+
+ inflections = inflections_0_0_1;
+
+ inflections_en_0_0_1 = callPackage
+ (
+ {
+ buildMix,
+ packageOverrides ? {},
+ fetchHex,
+ inflector_0_0_11,
+ inflections_0_0_1
+ }:
+ buildMix ({
+ name = "inflections_en";
+ version = "0.0.1";
+ src = fetchHex {
+ pkg = "inflections_en";
+ version = "0.0.1";
+ sha256 =
+ "28c8e2f52974879499ea039bc8bf369b75e978f4ee60de8641e7efdef575bd77";
+ };
+ beamDeps = [ inflector_0_0_11 inflections_0_0_1 ];
+
+ meta = {
+ description = ''inflector english rules'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/nathanfaucett/ex-inflections_en";
+ };
+ } // packageOverrides)
+ ) {};
+
+ inflections_en = inflections_en_0_0_1;
+
+ inflections_es_0_0_1 = callPackage
+ (
+ {
+ buildMix,
+ packageOverrides ? {},
+ fetchHex,
+ inflector_0_0_11,
+ inflections_0_0_1
+ }:
+ buildMix ({
+ name = "inflections_es";
+ version = "0.0.1";
+ src = fetchHex {
+ pkg = "inflections_es";
+ version = "0.0.1";
+ sha256 =
+ "28c6323f851d2287f77d7dd0b888e9888f5f785ff105a356078aff4a46544495";
+ };
+ beamDeps = [ inflector_0_0_11 inflections_0_0_1 ];
+
+ meta = {
+ description = ''inflector spanish rules'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/nathanfaucett/ex-inflections_es";
+ };
+ } // packageOverrides)
+ ) {};
+
+ inflections_es = inflections_es_0_0_1;
+
+ inflector_0_0_11 = callPackage
+ (
+ { buildMix, packageOverrides ? {}, fetchHex }:
+ buildMix ({
+ name = "inflector";
+ version = "0.0.11";
+ src = fetchHex {
+ pkg = "inflector";
+ version = "0.0.11";
+ sha256 =
+ "4abd1e267d0df9536d3f54c579d74a0951fbbc6100e4b034a0905d99296a9e08";
+ };
+
+ meta = {
+ description = ''simple rule based inflector'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/nathanfaucett/ex-inflector";
+ };
+ } // packageOverrides)
+ ) {};
+
+ inflector = inflector_0_0_11;
+
inflex_0_3_0 = callPackage
(
{ buildMix, packageOverrides ? {}, fetchHex }:
@@ -14886,6 +21345,37 @@ let
insert_ordered_set = insert_ordered_set_0_0_1;
+ insight_0_1_4 = callPackage
+ (
+ {
+ buildMix,
+ packageOverrides ? {},
+ fetchHex,
+ poison_1_5_2,
+ httpoison_0_8_3
+ }:
+ buildMix ({
+ name = "insight";
+ version = "0.1.4";
+ src = fetchHex {
+ pkg = "insight";
+ version = "0.1.4";
+ sha256 =
+ "97b4bfd6f0b595b3febca7ea2f0bdf5cb429c18309f7acc8a2a308847aaded07";
+ };
+ beamDeps = [ poison_1_5_2 httpoison_0_8_3 ];
+
+ meta = {
+ description = ''Elixir package for consuming any Insight-powered
+ Bitcoin explorer.'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/stampery/elixir-insight";
+ };
+ } // packageOverrides)
+ ) {};
+
+ insight = insight_0_1_4;
+
insights_0_0_2 = callPackage
(
{ buildMix, packageOverrides ? {}, fetchHex }:
@@ -14934,6 +21424,56 @@ let
instrumental = instrumental_0_1_3;
+ ip2location_0_1_0 = callPackage
+ (
+ { buildMix, packageOverrides ? {}, fetchHex, poolboy_1_5_1 }:
+ buildMix ({
+ name = "ip2location";
+ version = "0.1.0";
+ src = fetchHex {
+ pkg = "ip2location";
+ version = "0.1.0";
+ sha256 =
+ "77e059326d6c3f1348c53b3486dfa59d2b0ad90c999f51da86cabbb2d0099685";
+ };
+ beamDeps = [ poolboy_1_5_1 ];
+
+ meta = {
+ description = ''An Elixir library for the IP2Location
+ database.'';
+ license = stdenv.lib.licenses.free;
+ homepage = "https://github.com/nazipov/ip2location-elixir";
+ };
+ } // packageOverrides)
+ ) {};
+
+ ip2location = ip2location_0_1_0;
+
+ ipa_0_0_3 = callPackage
+ (
+ { buildMix, packageOverrides ? {}, fetchHex }:
+ buildMix ({
+ name = "ipa";
+ version = "0.0.3";
+ src = fetchHex {
+ pkg = "ipa";
+ version = "0.0.3";
+ sha256 =
+ "ff365e6ec32ae9159877fb464c6754387fe97168e15a0ce7de346106ec6d75a6";
+ };
+
+ meta = {
+ longDescription = ''A pale, hoppy library for working with IP
+ Addresses. Validate and transform IPv4 addresses
+ and subnet masks.'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/bordeltabernacle/IPA";
+ };
+ } // packageOverrides)
+ ) {};
+
+ ipa = ipa_0_0_3;
+
iplist_1_0_2 = callPackage
(
{
@@ -14965,17 +21505,17 @@ let
iplist = iplist_1_0_2;
- iptools_0_0_1 = callPackage
+ iptools_0_0_2 = callPackage
(
{ buildMix, packageOverrides ? {}, fetchHex }:
buildMix ({
name = "iptools";
- version = "0.0.1";
+ version = "0.0.2";
src = fetchHex {
pkg = "iptools";
- version = "0.0.1";
+ version = "0.0.2";
sha256 =
- "c8733e46e083c7497f3293e6e366e6fe384abb67557a72c3e362434e4eb0665d";
+ "33bf27bc72094bbc4e67c664c979e5cebfe17c5369c91fc2e2610cc726b252db";
};
meta = {
@@ -14987,7 +21527,7 @@ let
} // packageOverrides)
) {};
- iptools = iptools_0_0_1;
+ iptools = iptools_0_0_2;
is_chinese_1_0_0 = callPackage
(
@@ -15036,17 +21576,17 @@ let
is_email = is_email_0_0_2;
- is_up_1_0_0 = callPackage
+ is_up_1_0_2 = callPackage
(
{ buildMix, packageOverrides ? {}, fetchHex, httpotion_2_2_2 }:
buildMix ({
name = "is_up";
- version = "1.0.0";
+ version = "1.0.2";
src = fetchHex {
pkg = "is_up";
- version = "1.0.0";
+ version = "1.0.2";
sha256 =
- "8811dde26c0142174987941b6395e1934e54c3a88db1d5b19e38b6f794e93c87";
+ "e73713422ef99f9788d130eec1fd880ea15cc5e023137658263fe94bd12a56e1";
};
beamDeps = [ httpotion_2_2_2 ];
@@ -15058,7 +21598,7 @@ let
} // packageOverrides)
) {};
- is_up = is_up_1_0_0;
+ is_up = is_up_1_0_2;
is_url_0_0_1 = callPackage
(
@@ -15112,25 +21652,55 @@ let
isaac = isaac_0_0_1;
- iso3166_0_0_3 = callPackage
+ isbndbex_0_1_0 = callPackage
(
{
buildMix,
packageOverrides ? {},
fetchHex,
poison_2_1_0,
- floki_0_8_0
+ httpoison_0_8_3
+ }:
+ buildMix ({
+ name = "isbndbex";
+ version = "0.1.0";
+ src = fetchHex {
+ pkg = "isbndbex";
+ version = "0.1.0";
+ sha256 =
+ "5c9fe6840a3beadb78a3b5f8d243475258d9d117ef0976cceb0d4c464a4cf4f4";
+ };
+ beamDeps = [ poison_2_1_0 httpoison_0_8_3 ];
+
+ meta = {
+ description = ''Elixir wrapper for isbndb rest api.'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/rcoedo/isbndbex";
+ };
+ } // packageOverrides)
+ ) {};
+
+ isbndbex = isbndbex_0_1_0;
+
+ iso3166_0_0_4 = callPackage
+ (
+ {
+ buildMix,
+ packageOverrides ? {},
+ fetchHex,
+ poison_2_1_0,
+ floki_0_8_1
}:
buildMix ({
name = "iso3166";
- version = "0.0.3";
+ version = "0.0.4";
src = fetchHex {
pkg = "iso3166";
- version = "0.0.3";
+ version = "0.0.4";
sha256 =
- "9d531b578e4535fd7b85d8f50da3374d057ae7b7c7ecc522710eb7f638660b79";
+ "fde520eac52e491e0492a42a8f5f00b03435733e81f35e58685998e9142c4215";
};
- beamDeps = [ poison_2_1_0 floki_0_8_0 ];
+ beamDeps = [ poison_2_1_0 floki_0_8_1 ];
meta = {
longDescription = ''A library that provides a list of ISO3166
@@ -15143,7 +21713,91 @@ let
} // packageOverrides)
) {};
- iso3166 = iso3166_0_0_3;
+ iso3166 = iso3166_0_0_4;
+
+ janrain_0_0_1 = callPackage
+ (
+ { buildMix, packageOverrides ? {}, fetchHex, httpoison_0_8_3 }:
+ buildMix ({
+ name = "janrain";
+ version = "0.0.1";
+ src = fetchHex {
+ pkg = "janrain";
+ version = "0.0.1";
+ sha256 =
+ "35299ee088dfd5647e7a5cd129d5011f2d6319fe53045b2a8ce3ddf70792cc78";
+ };
+ beamDeps = [ httpoison_0_8_3 ];
+
+ meta = {
+ longDescription = ''A small library to help with Janrain logins.
+ Probably most useful when used in conjuction
+ with Phoenix and Guardian.'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/rickr/janrain";
+ };
+ } // packageOverrides)
+ ) {};
+
+ janrain = janrain_0_0_1;
+
+ japan_municipality_code_1_0_1 = callPackage
+ (
+ { buildMix, packageOverrides ? {}, fetchHex }:
+ buildMix ({
+ name = "japan_municipality_code";
+ version = "1.0.1";
+ src = fetchHex {
+ pkg = "japan_municipality_code";
+ version = "1.0.1";
+ sha256 =
+ "b03879f6a716f04579d19c9be818b0e3780b61ab2e79057ed3a7f64e576b5378";
+ };
+
+ meta = {
+ description = ''Elixir Library for Japan municipality key
+ converting'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/hykw/japan_municipality_key";
+ };
+ } // packageOverrides)
+ ) {};
+
+ japan_municipality_code = japan_municipality_code_1_0_1;
+
+ jc_1_2_0 = callPackage
+ (
+ {
+ buildRebar3,
+ packageOverrides ? {},
+ fetchHex,
+ ranch_1_1_0,
+ lager_3_0_1,
+ jwalk_1_1_0,
+ jsone_1_2_0
+ }:
+ buildRebar3 ({
+ name = "jc";
+ version = "1.2.0";
+ src = fetchHex {
+ pkg = "jc";
+ version = "1.2.0";
+ sha256 =
+ "cbc043e4d0e6b1ccd6279426babcfd73ac186f9ddf780c0bff24f7e586aa3a6c";
+ };
+
+ beamDeps = [ ranch_1_1_0 lager_3_0_1 jwalk_1_1_0 jsone_1_2_0 ];
+
+ meta = {
+ description = ''A simple, distributed, in-memory caching
+ system'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/jr0senblum/jc";
+ };
+ } // packageOverrides)
+ ) {};
+
+ jc = jc_1_2_0;
jequalson_0_1_1 = callPackage
(
@@ -15193,33 +21847,40 @@ let
jesse = jesse_0_1_3;
- jiffy_0_14_7 = callPackage
+ jira_0_0_8 = callPackage
(
- { buildRebar3, packageOverrides ? {}, fetchHex }:
- buildRebar3 ({
- name = "jiffy";
- version = "0.14.7";
+ {
+ buildMix,
+ packageOverrides ? {},
+ fetchHex,
+ poison_2_1_0,
+ httpoison_0_8_3
+ }:
+ buildMix ({
+ name = "jira";
+ version = "0.0.8";
src = fetchHex {
- pkg = "jiffy";
- version = "0.14.7";
+ pkg = "jira";
+ version = "0.0.8";
sha256 =
- "2b3b0f7976dae9c8266036e0d7e0398b64ac5207e3beee4c57896e44b2c17e97";
+ "71c19ef23ea7351a2dc7b8f14d0c5794ff00382fa43a88a2235ec9c1741a73cb";
};
- compilePorts = true;
+ beamDeps = [ poison_2_1_0 httpoison_0_8_3 ];
meta = {
- description = ''JSON Decoder/Encoder.'';
- license = with stdenv.lib.licenses; [ mit bsd3 ];
- homepage = "https://github.com/davisp/jiffy";
+ description = ''An Elixir client library for JIRA + JIRA Agile /
+ Greenhopper'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/jeffweiss/jira";
};
} // packageOverrides)
) {};
- jiffy = jiffy_0_14_7;
+ jira = jira_0_0_8;
jobspool_0_1_0 = callPackage
(
- { buildMix, packageOverrides ? {}, fetchHex, uuid_1_1_3 }:
+ { buildMix, packageOverrides ? {}, fetchHex, uuid_1_1_4 }:
buildMix ({
name = "jobspool";
version = "0.1.0";
@@ -15229,7 +21890,7 @@ let
sha256 =
"f4ba59374f844fe8ac018606748b120b7860c0f568364514d1dc87eb42829aad";
};
- beamDeps = [ uuid_1_1_3 ];
+ beamDeps = [ uuid_1_1_4 ];
meta = {
description = ''Simple Elixir jobs pool'';
@@ -15241,27 +21902,6 @@ let
jobspool = jobspool_0_1_0;
- joken_0_13_1 = callPackage
- (
- { buildRebar3, packageOverrides ? {}, fetchHex }:
- buildRebar3 ({
- name = "joken";
- version = "0.13.1";
- src = fetchHex {
- pkg = "joken";
- version = "0.13.1";
- sha256 =
- "f9fd7803403651c891332aabc1f97ca87ad8f01be1262d5a9a51da7987e08163";
- };
-
- meta = {
- description = ''JWT Library for Elixir'';
- license = stdenv.lib.licenses.asl20;
- homepage = "https://github.com/bryanjos/joken";
- };
- } // packageOverrides)
- ) {};
-
joken_0_16_1 = callPackage
(
{
@@ -15269,8 +21909,8 @@ let
packageOverrides ? {},
fetchHex,
poison_1_5_2,
- plug_1_1_3,
- jose_1_7_3
+ plug_1_1_5,
+ jose_1_7_5
}:
buildMix ({
name = "joken";
@@ -15281,7 +21921,7 @@ let
sha256 =
"a804bfd350f61688f6ce8d9898bc17fd4b59990c054debeea44234d53048d93d";
};
- beamDeps = [ poison_1_5_2 plug_1_1_3 jose_1_7_3 ];
+ beamDeps = [ poison_1_5_2 plug_1_1_5 jose_1_7_5 ];
meta = {
description = ''JWT Library for Elixir'';
@@ -15298,7 +21938,7 @@ let
packageOverrides ? {},
fetchHex,
poison_1_5_2,
- plug_1_1_3,
+ plug_1_1_5,
cowboy_1_0_4
}:
buildMix ({
@@ -15310,7 +21950,7 @@ let
sha256 =
"922498b234a1b0a813255d3abf5caa64a9afdc41eb4d8d71f87d71c41fe792e8";
};
- beamDeps = [ poison_1_5_2 plug_1_1_3 cowboy_1_0_4 ];
+ beamDeps = [ poison_1_5_2 plug_1_1_5 cowboy_1_0_4 ];
meta = {
longDescription = ''A full REST JSON API with zero coding,
@@ -15371,17 +22011,17 @@ let
} // packageOverrides)
) {};
- jose_1_7_3 = callPackage
+ jose_1_7_5 = callPackage
(
{ buildMix, packageOverrides ? {}, fetchHex, base64url_0_0_1 }:
buildMix ({
name = "jose";
- version = "1.7.3";
+ version = "1.7.5";
src = fetchHex {
pkg = "jose";
- version = "1.7.3";
+ version = "1.7.5";
sha256 =
- "d77d20c25873a138da8a64eb867c4115ba9cf44b74c00be2bc255e363da727c8";
+ "c473f64b03fb4541b8b3f56982e563d1090a1168d0dc154e6275135515c4b65d";
};
beamDeps = [ base64url_0_0_1 ];
@@ -15394,7 +22034,7 @@ let
} // packageOverrides)
) {};
- jose = jose_1_7_3;
+ jose = jose_1_7_5;
jsex_2_0_0 = callPackage
(
@@ -15444,6 +22084,29 @@ let
json = json_0_3_3;
+ json_api_assert_0_0_1 = callPackage
+ (
+ { buildMix, packageOverrides ? {}, fetchHex }:
+ buildMix ({
+ name = "json_api_assert";
+ version = "0.0.1";
+ src = fetchHex {
+ pkg = "json_api_assert";
+ version = "0.0.1";
+ sha256 =
+ "b85f48d26e62977b77ed0a8a62b2079ae9e1ddd6dfba988a13b3366cb6dfd51e";
+ };
+
+ meta = {
+ description = ''assertions for JSON API payload'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/DockYard/json_api_assert";
+ };
+ } // packageOverrides)
+ ) {};
+
+ json_api_assert = json_api_assert_0_0_1;
+
json_diff_ex_0_5_0 = callPackage
(
{ buildMix, packageOverrides ? {}, fetchHex }:
@@ -15467,17 +22130,17 @@ let
json_diff_ex = json_diff_ex_0_5_0;
- json_logger_0_5_1 = callPackage
+ json_logger_0_6_0 = callPackage
(
{ buildMix, packageOverrides ? {}, fetchHex, json_0_3_3 }:
buildMix ({
name = "json_logger";
- version = "0.5.1";
+ version = "0.6.0";
src = fetchHex {
pkg = "json_logger";
- version = "0.5.1";
+ version = "0.6.0";
sha256 =
- "08b4868fe8396fc27fc2d248a8aedac72f8ca82a671a163cc575bfa3e8a2be93";
+ "4b3aaa23c2d0fec4fe4ba7c001ec6a72b1ae36f0268ede87557c59663843a0c3";
};
beamDeps = [ json_0_3_3 ];
@@ -15490,7 +22153,7 @@ let
} // packageOverrides)
) {};
- json_logger = json_logger_0_5_1;
+ json_logger = json_logger_0_6_0;
json_pointer_0_0_2 = callPackage
(
@@ -15517,19 +22180,45 @@ let
json_pointer = json_pointer_0_0_2;
- json_web_token_0_2_4 = callPackage
+ json_stream_0_0_1 = callPackage
(
- { buildMix, packageOverrides ? {}, fetchHex, poison_1_5_2 }:
+ { buildMix, packageOverrides ? {}, fetchHex, jsx_2_8_0 }:
+ buildMix ({
+ name = "json_stream";
+ version = "0.0.1";
+ src = fetchHex {
+ pkg = "json_stream";
+ version = "0.0.1";
+ sha256 =
+ "07e2283f7f211f50d4fa686f1814f7a8b9637cfe3f358f6f15332489b2b7f2ab";
+ };
+ beamDeps = [ jsx_2_8_0 ];
+
+ meta = {
+ longDescription = ''Small but useful wrapper above erlang `jsx`
+ to stream json elements from an Elixir binary
+ stream.'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/awetzel/json_stream";
+ };
+ } // packageOverrides)
+ ) {};
+
+ json_stream = json_stream_0_0_1;
+
+ json_web_token_0_2_5 = callPackage
+ (
+ { buildMix, packageOverrides ? {}, fetchHex, poison_2_1_0 }:
buildMix ({
name = "json_web_token";
- version = "0.2.4";
+ version = "0.2.5";
src = fetchHex {
pkg = "json_web_token";
- version = "0.2.4";
+ version = "0.2.5";
sha256 =
- "49d11e61cf31e212ccd80bcffe1b9c911144c2399ec062a514394376d037fa8a";
+ "2e90fca59a7f9a4862ff8688622da5f12e880134b11ac1eb0eb0b19143d7a309";
};
- beamDeps = [ poison_1_5_2 ];
+ beamDeps = [ poison_2_1_0 ];
meta = {
description = ''Elixir implementation of the JSON Web Token
@@ -15540,21 +22229,21 @@ let
} // packageOverrides)
) {};
- json_web_token = json_web_token_0_2_4;
+ json_web_token = json_web_token_0_2_5;
- jsonapi_0_1_0 = callPackage
+ jsonapi_0_3_0 = callPackage
(
- { buildMix, packageOverrides ? {}, fetchHex, plug_1_1_3 }:
+ { buildMix, packageOverrides ? {}, fetchHex, plug_1_1_5 }:
buildMix ({
name = "jsonapi";
- version = "0.1.0";
+ version = "0.3.0";
src = fetchHex {
pkg = "jsonapi";
- version = "0.1.0";
+ version = "0.3.0";
sha256 =
- "b4c7d4797a680f23ae8dae666b4e71573f0bb3330223ebb53985e754ade265c8";
+ "f0e3c00a2af7394621695ded4e31cdf369436916ffc47347835f06616d594b33";
};
- beamDeps = [ plug_1_1_3 ];
+ beamDeps = [ plug_1_1_5 ];
meta = {
longDescription = ''Fully functional JSONAPI V1 Serializer as
@@ -15566,19 +22255,19 @@ let
} // packageOverrides)
) {};
- jsonapi = jsonapi_0_1_0;
+ jsonapi = jsonapi_0_3_0;
- jsone_1_2_1 = callPackage
+ jsone_1_2_0 = callPackage
(
{ buildRebar3, packageOverrides ? {}, fetchHex }:
buildRebar3 ({
name = "jsone";
- version = "1.2.1";
+ version = "1.2.0";
src = fetchHex {
pkg = "jsone";
- version = "1.2.1";
+ version = "1.2.0";
sha256 =
- "d7e772c545a8df144790c3891d09e3be9f917965ebc0bed301f8fd8d3b319059";
+ "a60e74284d3a923cde65c00a39dd4542fd7da7c22e8385c0378ad419c54b2e08";
};
meta = {
@@ -15589,7 +22278,49 @@ let
} // packageOverrides)
) {};
- jsone = jsone_1_2_1;
+ jsone_1_2_2 = callPackage
+ (
+ { buildRebar3, packageOverrides ? {}, fetchHex }:
+ buildRebar3 ({
+ name = "jsone";
+ version = "1.2.2";
+ src = fetchHex {
+ pkg = "jsone";
+ version = "1.2.2";
+ sha256 =
+ "253c18c7dc6fc27290b1f507f3adc6863f4396b099d0eb396e3c0e58dcfe0ee4";
+ };
+
+ meta = {
+ description = ''Erlang JSON Library'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/sile/jsone";
+ };
+ } // packageOverrides)
+ ) {};
+
+ jsone_1_2_3 = callPackage
+ (
+ { buildRebar3, packageOverrides ? {}, fetchHex }:
+ buildRebar3 ({
+ name = "jsone";
+ version = "1.2.3";
+ src = fetchHex {
+ pkg = "jsone";
+ version = "1.2.3";
+ sha256 =
+ "629369e718a50a2fcb23c210b6f2eb2fd08b0a6a2c5edade4fca24cda368ac13";
+ };
+
+ meta = {
+ description = ''Erlang JSON Library'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/sile/jsone";
+ };
+ } // packageOverrides)
+ ) {};
+
+ jsone = jsone_1_2_3;
jsx_1_4_5 = callPackage
(
@@ -15614,64 +22345,19 @@ let
} // packageOverrides)
) {};
- jsx_2_3_1 = callPackage
+ jsx_2_5_3 = callPackage
(
- { buildMix, packageOverrides ? {}, fetchHex }:
+ { buildMix, packageOverrides ? {}, fetchHex, mixunit_0_9_2 }:
buildMix ({
name = "jsx";
- version = "2.3.1";
+ version = "2.5.3";
src = fetchHex {
pkg = "jsx";
- version = "2.3.1";
+ version = "2.5.3";
sha256 =
- "b57bc292e08c0f4a796c2d2fbb541265ff92474de294131b62468dc5ae808495";
- };
-
- meta = {
- longDescription = ''an erlang application for consuming,
- producing and manipulating json. inspired by
- yajl'';
- license = stdenv.lib.licenses.mit;
- homepage = "https://github.com/talentdeficit/jsx";
- };
- } // packageOverrides)
- ) {};
-
- jsx_2_4_0 = callPackage
- (
- { buildMix, packageOverrides ? {}, fetchHex }:
- buildMix ({
- name = "jsx";
- version = "2.4.0";
- src = fetchHex {
- pkg = "jsx";
- version = "2.4.0";
- sha256 =
- "f9044993bfc94371a7757656ab4b9ba2daaad3ddc97df37c2368875eea049b19";
- };
-
- meta = {
- longDescription = ''an erlang application for consuming,
- producing and manipulating json. inspired by
- yajl'';
- license = stdenv.lib.licenses.mit;
- homepage = "https://github.com/talentdeficit/jsx";
- };
- } // packageOverrides)
- ) {};
-
- jsx_2_6_1 = callPackage
- (
- { buildRebar3, packageOverrides ? {}, fetchHex }:
- buildRebar3 ({
- name = "jsx";
- version = "2.6.1";
- src = fetchHex {
- pkg = "jsx";
- version = "2.6.1";
- sha256 =
- "5d0700bce9b5ef7c4bd5dd1004c9cc80d20a60f1bd02f8792fc3b3b2da90db59";
+ "528ab2fdadbcfe95a44ddb831724ee28d48bd3dbd11f2e8109874c855c43dd12";
};
+ beamDeps = [ mixunit_0_9_2 ];
meta = {
longDescription = ''an erlang application for consuming,
@@ -15685,8 +22371,8 @@ let
jsx_2_6_2 = callPackage
(
- { buildRebar3, packageOverrides ? {}, fetchHex }:
- buildRebar3 ({
+ { buildMix, packageOverrides ? {}, fetchHex }:
+ buildMix ({
name = "jsx";
version = "2.6.2";
src = fetchHex {
@@ -15778,17 +22464,17 @@ let
jsxd = jsxd_0_1_10;
- junit_formatter_1_0_0 = callPackage
+ junit_formatter_1_1_0 = callPackage
(
{ buildMix, packageOverrides ? {}, fetchHex }:
buildMix ({
name = "junit_formatter";
- version = "1.0.0";
+ version = "1.1.0";
src = fetchHex {
pkg = "junit_formatter";
- version = "1.0.0";
+ version = "1.1.0";
sha256 =
- "f01064940927874ef2c3d275182822951167c7bd685f5d2b0dfcc84928fa0dcb";
+ "d173ee429c98c9829eb9b24a8615ac584b49c58c29cefc9532eff5e19404ea8b";
};
meta = {
@@ -15802,7 +22488,30 @@ let
} // packageOverrides)
) {};
- junit_formatter = junit_formatter_1_0_0;
+ junit_formatter = junit_formatter_1_1_0;
+
+ jwalk_1_1_0 = callPackage
+ (
+ { buildRebar3, packageOverrides ? {}, fetchHex }:
+ buildRebar3 ({
+ name = "jwalk";
+ version = "1.1.0";
+ src = fetchHex {
+ pkg = "jwalk";
+ version = "1.1.0";
+ sha256 =
+ "10c150910ba3539583887cb2b5c3f70d602138471e6f6b5c22498aa18ed654e1";
+ };
+
+ meta = {
+ longDescription = ''Helper module for working with Erlang
+ representations of JSON, handling eep-18, map,
+ mochijson-style and proplists representations'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/jr0senblum/jwalk";
+ };
+ } // packageOverrides)
+ ) {};
jwalk_1_1_2 = callPackage
(
@@ -15863,7 +22572,7 @@ let
jwt_claims_0_0_3 = callPackage
(
{
- buildMix, packageOverrides ? {}, fetchHex, json_web_token_0_2_4
+ buildMix, packageOverrides ? {}, fetchHex, json_web_token_0_2_5
}:
buildMix ({
name = "jwt_claims";
@@ -15874,7 +22583,7 @@ let
sha256 =
"baf94583907a4d774079a8a98c13c0cf5d306ee6211e805f156523a20658e230";
};
- beamDeps = [ json_web_token_0_2_4 ];
+ beamDeps = [ json_web_token_0_2_5 ];
meta = {
description = ''Elixir implementation of JWT registered claims,
@@ -15959,17 +22668,17 @@ let
kafka_ex = kafka_ex_0_5_0;
- kaguya_0_4_1 = callPackage
+ kaguya_0_4_7 = callPackage
(
{ buildMix, packageOverrides ? {}, fetchHex }:
buildMix ({
name = "kaguya";
- version = "0.4.1";
+ version = "0.4.7";
src = fetchHex {
pkg = "kaguya";
- version = "0.4.1";
+ version = "0.4.7";
sha256 =
- "071fbb9b096d2c4e987a820ea1a9d749d3da378c306053f3c44f5c9a9c748fa1";
+ "d687b8832c42e4d3d03e09e68b9df3a9bb4b208d287d8c2835170c343e2e4554";
};
meta = {
@@ -15983,130 +22692,90 @@ let
} // packageOverrides)
) {};
- kaguya = kaguya_0_4_1;
+ kaguya = kaguya_0_4_7;
- kalecto_0_3_3 = callPackage
- (
- {
- buildRebar3,
- packageOverrides ? {},
- fetchHex,
- kalends_0_6_5,
- ecto_0_16_0
- }:
- buildRebar3 ({
- name = "kalecto";
- version = "0.3.3";
- src = fetchHex {
- pkg = "kalecto";
- version = "0.3.3";
- sha256 =
- "c83d417718f626eb43ffa5527ea25fa5348f6f24f7930d27db7556759094eb1b";
- };
-
- beamDeps = [ kalends_0_6_5 ecto_0_16_0 ];
-
- meta = {
- longDescription = ''Library for using Kalends with Ecto. This
- lets you save Kalends types in Ecto and work
- with date-times in multiple timezones. '';
-
- homepage = "https://github.com/lau/kalecto";
- };
- } // packageOverrides)
- ) {};
-
- kalecto = kalecto_0_3_3;
-
- kalends_0_6_5 = callPackage
- (
- {
- buildRebar3, packageOverrides ? {}, fetchHex, tzdata_0_1_201603
- }:
- buildRebar3 ({
- name = "kalends";
- version = "0.6.5";
- src = fetchHex {
- pkg = "kalends";
- version = "0.6.5";
- sha256 =
- "b16621edbccdbe5d3f76efe03dab59292f3782d0d7e29bbe2de9943e49968fe2";
- };
-
- beamDeps = [ tzdata_0_1_201603 ];
-
- meta = {
- longDescription = ''Kalends is a datetime library in pure Elixir
- with up-to-date timezone support using the Olson
- database. '';
- license = stdenv.lib.licenses.mit;
- homepage = "https://github.com/lau/kalends";
- };
- } // packageOverrides)
- ) {};
-
- kalends = kalends_0_6_5;
-
- kcl_0_4_1 = callPackage
+ kcl_0_6_2 = callPackage
(
{
buildMix,
packageOverrides ? {},
fetchHex,
salsa20_0_3_0,
- poly1305_0_4_0,
+ poly1305_0_4_1,
+ ed25519_0_2_0,
curve25519_0_1_0
}:
buildMix ({
name = "kcl";
- version = "0.4.1";
+ version = "0.6.2";
src = fetchHex {
pkg = "kcl";
- version = "0.4.1";
+ version = "0.6.2";
sha256 =
- "90c2492dc4333ae444d2ec4facee567c73f061e3c10878fcd02b426e347495bc";
+ "20dfbd4fb5fd71d612d9c4989adbb35a8d1ffabc70bc0729f2648c9489344e9f";
};
- beamDeps = [ salsa20_0_3_0 poly1305_0_4_0 curve25519_0_1_0 ];
+ beamDeps = [
+ salsa20_0_3_0
+ poly1305_0_4_1
+ ed25519_0_2_0
+ curve25519_0_1_0
+ ];
meta = {
- description = ''KCl - a poor NaCL crypto suite substitute'';
+ description = ''KCl - a less savory pure Elixir NaCl crypto suite
+ substitute'';
license = stdenv.lib.licenses.mit;
homepage = "https://github.com/mwmiller/kcl";
};
} // packageOverrides)
) {};
- kcl = kcl_0_4_1;
+ kcl = kcl_0_6_2;
- keenex_0_2_0 = callPackage
+ kennitala_1_0_0 = callPackage
(
- {
- buildMix,
- packageOverrides ? {},
- fetchHex,
- poison_1_3_1,
- httpotion_2_2_2
- }:
+ { buildMix, packageOverrides ? {}, fetchHex }:
buildMix ({
- name = "keenex";
- version = "0.2.0";
+ name = "kennitala";
+ version = "1.0.0";
src = fetchHex {
- pkg = "keenex";
- version = "0.2.0";
+ pkg = "kennitala";
+ version = "1.0.0";
sha256 =
- "5f66d942fe7066bec625985779d7e69647462e586a704e449cc7229ea752ccb9";
+ "8f22c152fb5de86455d4570ec23f96b3ee110c8f7243e9fd7ffd85fbccf63838";
};
- beamDeps = [ poison_1_3_1 httpotion_2_2_2 ];
meta = {
- description = ''Keen.io API Client'';
+ longDescription = ''Elixir library for validating and handling
+ the Icelandic Kennitala identity number.'';
license = stdenv.lib.licenses.mit;
- homepage = "https://github.com/bryanjos/keenex";
+ homepage = "https://github.com/JonGretar/Kennitala.ex";
};
} // packageOverrides)
) {};
- keenex = keenex_0_2_0;
+ kennitala = kennitala_1_0_0;
+
+ key2value_1_4_0 = callPackage
+ (
+ { buildRebar3, packageOverrides ? {}, fetchHex }:
+ buildRebar3 ({
+ name = "key2value";
+ version = "1.4.0";
+ src = fetchHex {
+ pkg = "key2value";
+ version = "1.4.0";
+ sha256 =
+ "ad63453fcf54ab853581b78c6d2df56be41ea691ba4bc05920264c19f35a0ded";
+ };
+
+ meta = {
+ description = ''Erlang 2-way Map'';
+ license = stdenv.lib.licenses.bsd3;
+ homepage = "https://github.com/okeuday/key2value";
+ };
+ } // packageOverrides)
+ ) {};
key2value_1_5_1 = callPackage
(
@@ -16131,6 +22800,37 @@ let
key2value = key2value_1_5_1;
+ keymaster_0_0_3 = callPackage
+ (
+ {
+ buildMix,
+ packageOverrides ? {},
+ fetchHex,
+ poison_2_1_0,
+ plug_1_1_5
+ }:
+ buildMix ({
+ name = "keymaster";
+ version = "0.0.3";
+ src = fetchHex {
+ pkg = "keymaster";
+ version = "0.0.3";
+ sha256 =
+ "93ba90778f0dbe162fde8584c1510a61fcbf0f08d20ed24ea8548a3f84790fa8";
+ };
+ beamDeps = [ poison_2_1_0 plug_1_1_5 ];
+
+ meta = {
+ description = ''An opinionated OAuth 2.0 server for Elixir
+ projects.'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/austinsmorris/keymaster";
+ };
+ } // packageOverrides)
+ ) {};
+
+ keymaster = keymaster_0_0_3;
+
keys1value_1_5_1 = callPackage
(
{ buildRebar3, packageOverrides ? {}, fetchHex }:
@@ -16154,6 +22854,36 @@ let
keys1value = keys1value_1_5_1;
+ kinja_0_0_1 = callPackage
+ (
+ {
+ buildMix,
+ packageOverrides ? {},
+ fetchHex,
+ poison_2_1_0,
+ httpoison_0_8_3
+ }:
+ buildMix ({
+ name = "kinja";
+ version = "0.0.1";
+ src = fetchHex {
+ pkg = "kinja";
+ version = "0.0.1";
+ sha256 =
+ "97b68a603fb5e665f07aac0396ee53d28690bdc42845c38b23741675c053b761";
+ };
+ beamDeps = [ poison_2_1_0 httpoison_0_8_3 ];
+
+ meta = {
+ description = ''A wrapper for the Kinja API.'';
+ license = stdenv.lib.licenses.asl20;
+ homepage = "https://github.com/adampash/kinjaex";
+ };
+ } // packageOverrides)
+ ) {};
+
+ kinja = kinja_0_0_1;
+
kitsune_0_5_2 = callPackage
(
{ buildMix, packageOverrides ? {}, fetchHex, poison_1_5_2 }:
@@ -16180,6 +22910,67 @@ let
kitsune = kitsune_0_5_2;
+ kitto_0_0_1 = callPackage
+ (
+ {
+ buildMix,
+ packageOverrides ? {},
+ fetchHex,
+ poison_2_1_0,
+ plug_1_1_5,
+ cowboy_1_0_4
+ }:
+ buildMix ({
+ name = "kitto";
+ version = "0.0.1";
+ src = fetchHex {
+ pkg = "kitto";
+ version = "0.0.1";
+ sha256 =
+ "36a2c19a364fd9998ee3d0635fb6386104733d9887143f2ade8fe39f7096e635";
+ };
+ beamDeps = [ poison_2_1_0 plug_1_1_5 cowboy_1_0_4 ];
+
+ meta = {
+ description = ''Framework for creating interactive dashboards'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/kittoframework/kitto";
+ };
+ } // packageOverrides)
+ ) {};
+
+ kitto = kitto_0_0_1;
+
+ kubex_0_1_1 = callPackage
+ (
+ {
+ buildMix,
+ packageOverrides ? {},
+ fetchHex,
+ poison_1_5_2,
+ httpoison_0_8_3
+ }:
+ buildMix ({
+ name = "kubex";
+ version = "0.1.1";
+ src = fetchHex {
+ pkg = "kubex";
+ version = "0.1.1";
+ sha256 =
+ "b0bd22246731b1c4d4d7f832cd0015fd6586022c779fb6672f45a648da7dcf79";
+ };
+ beamDeps = [ poison_1_5_2 httpoison_0_8_3 ];
+
+ meta = {
+ description = ''Kubernetes integration for and in pure Elixir.'';
+ license = stdenv.lib.licenses.free;
+ homepage = "https://github.com/ingerslevio/kubex";
+ };
+ } // packageOverrides)
+ ) {};
+
+ kubex = kubex_0_1_1;
+
kwfuns_0_0_4 = callPackage
(
{ buildMix, packageOverrides ? {}, fetchHex }:
@@ -16258,32 +23049,32 @@ let
} // packageOverrides)
) {};
- lager = lager_3_0_2;
-
- lager_graylog_0_1_0 = callPackage
+ lager_3_2_1 = callPackage
(
- { buildRebar3, packageOverrides ? {}, fetchHex, lager_3_0_2 }:
+ {
+ buildRebar3, packageOverrides ? {}, fetchHex, goldrush_0_1_8
+ }:
buildRebar3 ({
- name = "lager_graylog";
- version = "0.1.0";
+ name = "lager";
+ version = "3.2.1";
src = fetchHex {
- pkg = "lager_graylog";
- version = "0.1.0";
+ pkg = "lager";
+ version = "3.2.1";
sha256 =
- "539ddc1b5a4280bf5ef8c377cfa037830a2fbe989fd378af10f5355c502fc8d9";
+ "09a751789852094bf1ffad239a602bc47829da13ca5937b9d12df27470692095";
};
- beamDeps = [ lager_3_0_2 ];
+ beamDeps = [ goldrush_0_1_8 ];
meta = {
- description = ''An Erlang lager_graylog library'';
- license = stdenv.lib.licenses.free;
- homepage = "https://github.com/esl/lager_graylog";
+ description = ''Erlang logging framework'';
+ license = stdenv.lib.licenses.asl20;
+ homepage = "https://github.com/basho/lager";
};
} // packageOverrides)
) {};
- lager_graylog = lager_graylog_0_1_0;
+ lager = lager_3_2_1;
lager_hipchat_0_2_0 = callPackage
(
@@ -16312,7 +23103,7 @@ let
lager_logger_1_0_2 = callPackage
(
- { buildMix, packageOverrides ? {}, fetchHex, lager_3_0_2 }:
+ { buildMix, packageOverrides ? {}, fetchHex, lager_3_2_1 }:
buildMix ({
name = "lager_logger";
version = "1.0.2";
@@ -16322,7 +23113,7 @@ let
sha256 =
"28e13b1a5d43acefdf7f49d219ecb268dd934da448d2e1d4c3f74378fdea9e89";
};
- beamDeps = [ lager_3_0_2 ];
+ beamDeps = [ lager_3_2_1 ];
meta = {
longDescription = ''LagerLogger is a lager backend that forwards
@@ -16335,37 +23126,6 @@ let
lager_logger = lager_logger_1_0_2;
- lager_logstash_backend_0_1_0 = callPackage
- (
- {
- buildRebar3,
- packageOverrides ? {},
- fetchHex,
- lager_3_0_2,
- jsx_2_6_1
- }:
- buildRebar3 ({
- name = "lager_logstash_backend";
- version = "0.1.0";
- src = fetchHex {
- pkg = "lager_logstash_backend";
- version = "0.1.0";
- sha256 =
- "9d729050a9cae2bb965d6211d428a79838e48f8acac394f24c48e3d47e6758c9";
- };
-
- beamDeps = [ lager_3_0_2 jsx_2_6_1 ];
-
- meta = {
- description = ''Lager Logstash Logging Backend'';
- license = stdenv.lib.licenses.apsl20;
- homepage = "https://github.com/inaka/lager_logstash_backend.git";
- };
- } // packageOverrides)
- ) {};
-
- lager_logstash_backend = lager_logstash_backend_0_1_0;
-
lasse_1_1_0 = callPackage
(
{ buildErlangMk, packageOverrides ? {}, fetchHex }:
@@ -16389,6 +23149,30 @@ let
lasse = lasse_1_1_0;
+ ldap_ex_0_2_4 = callPackage
+ (
+ { buildMix, packageOverrides ? {}, fetchHex }:
+ buildMix ({
+ name = "ldap_ex";
+ version = "0.2.4";
+ src = fetchHex {
+ pkg = "ldap_ex";
+ version = "0.2.4";
+ sha256 =
+ "5ecdbce6e0243f92ce012b4fdf7daff4bbf6e748d37e028a4674e1ec87d81dbe";
+ };
+
+ meta = {
+ longDescription = ''This is a binary instead of char_list version
+ of the stock Erlang :eldap library.'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/OvermindDL1/ldap_ex";
+ };
+ } // packageOverrides)
+ ) {};
+
+ ldap_ex = ldap_ex_0_2_4;
+
left_pad_0_0_3 = callPackage
(
{ buildMix, packageOverrides ? {}, fetchHex }:
@@ -16437,10 +23221,40 @@ let
leftpad = leftpad_1_0_1;
+ lessonly_0_0_1 = callPackage
+ (
+ {
+ buildMix,
+ packageOverrides ? {},
+ fetchHex,
+ poison_2_1_0,
+ httpoison_0_8_3
+ }:
+ buildMix ({
+ name = "lessonly";
+ version = "0.0.1";
+ src = fetchHex {
+ pkg = "lessonly";
+ version = "0.0.1";
+ sha256 =
+ "a7c53da4a3153043a36636e9c9b188e7bad54caac4c994705afe4d47fd2ef111";
+ };
+ beamDeps = [ poison_2_1_0 httpoison_0_8_3 ];
+
+ meta = {
+ description = ''An Elixir wrapper for the Lesson.ly API.'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/stevegrossi/lessonly-elixir";
+ };
+ } // packageOverrides)
+ ) {};
+
+ lessonly = lessonly_0_0_1;
+
level_1_0_0 = callPackage
(
- { buildRebar3, packageOverrides ? {}, fetchHex }:
- buildRebar3 ({
+ { buildMix, packageOverrides ? {}, fetchHex }:
+ buildMix ({
name = "level";
version = "1.0.0";
src = fetchHex {
@@ -16555,21 +23369,21 @@ let
lhttpc = lhttpc_1_4_0;
- librex_1_0_0 = callPackage
+ librex_1_0_1 = callPackage
(
{
- buildMix, packageOverrides ? {}, fetchHex, secure_random_0_2_0
+ buildMix, packageOverrides ? {}, fetchHex, secure_random_0_3_0
}:
buildMix ({
name = "librex";
- version = "1.0.0";
+ version = "1.0.1";
src = fetchHex {
pkg = "librex";
- version = "1.0.0";
+ version = "1.0.1";
sha256 =
- "c047e48eca2414394ecf5291e626fa813c8baaa9d35ab917dc6937f99461948c";
+ "70a33754fed13f653cc26f91bac47bef90e793f1283d0cef946d14fe17f2ff70";
};
- beamDeps = [ secure_random_0_2_0 ];
+ beamDeps = [ secure_random_0_3_0 ];
meta = {
description = ''Convert office documents to other formats using
@@ -16580,7 +23394,7 @@ let
} // packageOverrides)
) {};
- librex = librex_1_0_0;
+ librex = librex_1_0_1;
libsnarlmatch_0_1_7 = callPackage
(
@@ -16605,10 +23419,30 @@ let
libsnarlmatch = libsnarlmatch_0_1_7;
+ lineo_0_0_1 = callPackage
+ (
+ { buildMix, packageOverrides ? {}, fetchHex }:
+ buildMix ({
+ name = "lineo";
+ version = "0.0.1";
+ src = fetchHex {
+ pkg = "lineo";
+ version = "0.0.1";
+ sha256 =
+ "cbf80d2a2315803949dc186decce770c6850fb45fb919982ed24da758893093a";
+ };
+
+ meta = {
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/camshaft/lineo";
+ };
+ } // packageOverrides)
+ ) {};
+
lineo_0_1_0 = callPackage
(
- { buildRebar3, packageOverrides ? {}, fetchHex }:
- buildRebar3 ({
+ { buildMix, packageOverrides ? {}, fetchHex }:
+ buildMix ({
name = "lineo";
version = "0.1.0";
src = fetchHex {
@@ -16650,17 +23484,17 @@ let
linguist = linguist_0_1_5;
- liquid_0_1_0 = callPackage
+ liquid_0_2_2 = callPackage
(
{ buildMix, packageOverrides ? {}, fetchHex }:
buildMix ({
name = "liquid";
- version = "0.1.0";
+ version = "0.2.2";
src = fetchHex {
pkg = "liquid";
- version = "0.1.0";
+ version = "0.2.2";
sha256 =
- "f2f4e2499419de30a984b706e2119007cc9f46e79a22a865715ed040a6a1f4db";
+ "b68ae1dbc002e05028f7a74bb717d9a7863397eddde802d6ed5d96394120d1b1";
};
meta = {
@@ -16671,7 +23505,7 @@ let
} // packageOverrides)
) {};
- liquid = liquid_0_1_0;
+ liquid = liquid_0_2_2;
lob_0_1_0 = callPackage
(
@@ -16727,17 +23561,17 @@ let
logfmt = logfmt_3_0_2;
- logger_file_backend_0_0_7 = callPackage
+ logger_file_backend_0_0_8 = callPackage
(
{ buildMix, packageOverrides ? {}, fetchHex }:
buildMix ({
name = "logger_file_backend";
- version = "0.0.7";
+ version = "0.0.8";
src = fetchHex {
pkg = "logger_file_backend";
- version = "0.0.7";
+ version = "0.0.8";
sha256 =
- "135823f39e810f1826cbd6fa5e1207c6d60a6de09b563c9a204f5b55587cf5a4";
+ "1d89664561365545517114eeba9f96b193fd1f52c90b5f055b79f1e40547ffea";
};
meta = {
@@ -16748,7 +23582,56 @@ let
} // packageOverrides)
) {};
- logger_file_backend = logger_file_backend_0_0_7;
+ logger_file_backend = logger_file_backend_0_0_8;
+
+ logger_lager_backend_0_0_2 = callPackage
+ (
+ { buildMix, packageOverrides ? {}, fetchHex }:
+ buildMix ({
+ name = "logger_lager_backend";
+ version = "0.0.2";
+ src = fetchHex {
+ pkg = "logger_lager_backend";
+ version = "0.0.2";
+ sha256 =
+ "cd9f4c0df86d9209d905b451f4177aa0cbe341488ae36969c49af772830432a0";
+ };
+
+ meta = {
+ description = ''A Logger backend that forwards messages to
+ lager'';
+ license = stdenv.lib.licenses.mit;
+ homepage =
+ "https://github.com/jonathanperret/logger_lager_backend";
+ };
+ } // packageOverrides)
+ ) {};
+
+ logger_lager_backend = logger_lager_backend_0_0_2;
+
+ logger_loggly_backend_0_2_0 = callPackage
+ (
+ { buildMix, packageOverrides ? {}, fetchHex, httpoison_0_8_3 }:
+ buildMix ({
+ name = "logger_loggly_backend";
+ version = "0.2.0";
+ src = fetchHex {
+ pkg = "logger_loggly_backend";
+ version = "0.2.0";
+ sha256 =
+ "111d0e256ace86e2af366b1afc7152b4aadd3cd6c093d5d2b119c08a84395fd6";
+ };
+ beamDeps = [ httpoison_0_8_3 ];
+
+ meta = {
+ description = ''Loggly logger backend'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/joeyfeldberg/loggly_backend";
+ };
+ } // packageOverrides)
+ ) {};
+
+ logger_loggly_backend = logger_loggly_backend_0_2_0;
logger_logstash_backend_2_0_0 = callPackage
(
@@ -16756,7 +23639,7 @@ let
buildMix,
packageOverrides ? {},
fetchHex,
- timex_2_1_3,
+ timex_2_1_6,
exjsx_3_1_0
}:
buildMix ({
@@ -16768,7 +23651,7 @@ let
sha256 =
"e0c709aa8fbddd825ef5cc5287e0d04f4470498173555e07156675aeba2b2b7a";
};
- beamDeps = [ timex_2_1_3 exjsx_3_1_0 ];
+ beamDeps = [ timex_2_1_6 exjsx_3_1_0 ];
meta = {
description = ''Logstash UDP producer backend for Logger.'';
@@ -16780,17 +23663,17 @@ let
logger_logstash_backend = logger_logstash_backend_2_0_0;
- logger_papertrail_backend_0_0_2 = callPackage
+ logger_papertrail_backend_0_1_0 = callPackage
(
{ buildMix, packageOverrides ? {}, fetchHex }:
buildMix ({
name = "logger_papertrail_backend";
- version = "0.0.2";
+ version = "0.1.0";
src = fetchHex {
pkg = "logger_papertrail_backend";
- version = "0.0.2";
+ version = "0.1.0";
sha256 =
- "afc8bce277dc827172d33b20024970811950a139552ed1d0e1ea75e2860a055e";
+ "ae2bff0588a702cb3bd87080c5f4558d34efd0fbf19f976397fe9b0538b1c20b";
};
meta = {
@@ -16802,18 +23685,90 @@ let
} // packageOverrides)
) {};
- logger_papertrail_backend = logger_papertrail_backend_0_0_2;
+ logger_papertrail_backend = logger_papertrail_backend_0_1_0;
+
+ logglix_0_0_1 = callPackage
+ (
+ { buildMix, packageOverrides ? {}, fetchHex, httpoison_0_8_3 }:
+ buildMix ({
+ name = "logglix";
+ version = "0.0.1";
+ src = fetchHex {
+ pkg = "logglix";
+ version = "0.0.1";
+ sha256 =
+ "c193945b52e7fe3f6973e7defec46683b794baacd784eaa0c1f7c65978fea654";
+ };
+ beamDeps = [ httpoison_0_8_3 ];
+
+ meta = {
+ description = ''Elixir loggly application event subscriber'';
+ license = stdenv.lib.licenses.isc;
+ homepage = "https://github.com/pragmaticivan/logglix";
+ };
+ } // packageOverrides)
+ ) {};
+
+ logglix = logglix_0_0_1;
+
+ logi_0_5_0 = callPackage
+ (
+ { buildRebar3, packageOverrides ? {}, fetchHex }:
+ buildRebar3 ({
+ name = "logi";
+ version = "0.5.0";
+ src = fetchHex {
+ pkg = "logi";
+ version = "0.5.0";
+ sha256 =
+ "45619004d3735f27e6f397ba0696c5fc6ea1ee89e037fd50847d975e0330de8f";
+ };
+
+ meta = {
+ description = ''A Logger Interface Library'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/sile/logi";
+ };
+ } // packageOverrides)
+ ) {};
+
+ logi = logi_0_5_0;
+
+ logi_stdlib_0_1_0 = callPackage
+ (
+ { buildRebar3, packageOverrides ? {}, fetchHex, logi_0_5_0 }:
+ buildRebar3 ({
+ name = "logi_stdlib";
+ version = "0.1.0";
+ src = fetchHex {
+ pkg = "logi_stdlib";
+ version = "0.1.0";
+ sha256 =
+ "a2e12cf14fe6660e81b6351f51711c4891147eb4140d1b2b8c23007bb750312b";
+ };
+
+ beamDeps = [ logi_0_5_0 ];
+
+ meta = {
+ description = ''Standard Library for logi'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/sile/logi_stdlib";
+ };
+ } // packageOverrides)
+ ) {};
+
+ logi_stdlib = logi_stdlib_0_1_0;
lolcat_0_0_1 = callPackage
(
{
- buildRebar3,
+ buildMix,
packageOverrides ? {},
fetchHex,
quickrand_1_5_1,
colorful_0_6_0
}:
- buildRebar3 ({
+ buildMix ({
name = "lolcat";
version = "0.0.1";
src = fetchHex {
@@ -16822,7 +23777,6 @@ let
sha256 =
"884799d2e7f294a6a5455e19c9816592d7b1314cefaba18952876fef0c4a10af";
};
-
beamDeps = [ quickrand_1_5_1 colorful_0_6_0 ];
meta = {
@@ -16951,17 +23905,17 @@ let
luhn = luhn_0_3_1;
- luhnatex_0_5_0 = callPackage
+ luhnatex_0_5_1 = callPackage
(
{ buildMix, packageOverrides ? {}, fetchHex }:
buildMix ({
name = "luhnatex";
- version = "0.5.0";
+ version = "0.5.1";
src = fetchHex {
pkg = "luhnatex";
- version = "0.5.0";
+ version = "0.5.1";
sha256 =
- "d2edc93e2058f1608217eb90402cc776b40f389f445e6c2a82792a0993f4b6de";
+ "f08bb73777cd8a12780ea12697064c942a08184074512d4e593443da74526eed";
};
meta = {
@@ -16972,7 +23926,7 @@ let
} // packageOverrides)
) {};
- luhnatex = luhnatex_0_5_0;
+ luhnatex = luhnatex_0_5_1;
lz4_0_2_2 = callPackage
(
@@ -16998,17 +23952,17 @@ let
lz4 = lz4_0_2_2;
- lz_string_0_0_3 = callPackage
+ lz_string_0_0_5 = callPackage
(
{ buildMix, packageOverrides ? {}, fetchHex }:
buildMix ({
name = "lz_string";
- version = "0.0.3";
+ version = "0.0.5";
src = fetchHex {
pkg = "lz_string";
- version = "0.0.3";
+ version = "0.0.5";
sha256 =
- "747ddaee6f146d6133c16c53f18ca9dc429d5c1e0ca11d8eeb322630448ec08b";
+ "318ce091382febc3ca63e0ff9bff6bda78a797dd90f2a2f95fec6d0e2757d6fa";
};
meta = {
@@ -17020,19 +23974,150 @@ let
} // packageOverrides)
) {};
- lz_string = lz_string_0_0_3;
+ lz_string = lz_string_0_0_5;
- magic_number_0_0_1 = callPackage
+ m2x_2_0_0 = callPackage
+ (
+ {
+ buildMix,
+ packageOverrides ? {},
+ fetchHex,
+ json_0_3_3,
+ hackney_1_6_0
+ }:
+ buildMix ({
+ name = "m2x";
+ version = "2.0.0";
+ src = fetchHex {
+ pkg = "m2x";
+ version = "2.0.0";
+ sha256 =
+ "e125cf588d48d9b04fb4a003bb62ab1a8e8df359866dba0cde6444e9fd7ce939";
+ };
+ beamDeps = [ json_0_3_3 hackney_1_6_0 ];
+
+ meta = {
+ longDescription = ''Elixir client library for the AT&T M2X
+ (http://m2x.att.com) API. AT&T M2X is a
+ cloud-based fully managed time-series data
+ storage service for network connected
+ machine-to-machine (M2M) devices and the
+ Internet of Things (IoT).'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/attm2x/m2x-elixir";
+ };
+ } // packageOverrides)
+ ) {};
+
+ m2x = m2x_2_0_0;
+
+ m2x_erlang_1_3_1 = callPackage
+ (
+ {
+ buildMix,
+ packageOverrides ? {},
+ fetchHex,
+ jsx_2_8_0,
+ hackney_1_6_0
+ }:
+ buildMix ({
+ name = "m2x_erlang";
+ version = "1.3.1";
+ src = fetchHex {
+ pkg = "m2x_erlang";
+ version = "1.3.1";
+ sha256 =
+ "873db746f4428490670b54aabcc93fda8d94c3c4e25c94a9aef7275858a8b809";
+ };
+ beamDeps = [ jsx_2_8_0 hackney_1_6_0 ];
+
+ meta = {
+ longDescription = ''Erlang client library for the AT&T M2X
+ (http://m2x.att.com) API. AT&T M2X is a
+ cloud-based fully managed time-series data
+ storage service for network connected
+ machine-to-machine (M2M) devices and the
+ Internet of Things (IoT).'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/attm2x/m2x-erlang";
+ };
+ } // packageOverrides)
+ ) {};
+
+ m2x_erlang = m2x_erlang_1_3_1;
+
+ maas_1_0_0 = callPackage
+ (
+ {
+ buildMix,
+ packageOverrides ? {},
+ fetchHex,
+ httpoison_0_8_3,
+ poison_2_1_0
+ }:
+ buildMix ({
+ name = "maas";
+ version = "1.0.0";
+ src = fetchHex {
+ pkg = "maas";
+ version = "1.0.0";
+ sha256 =
+ "f6c2a3dd4e291b7000d45938abd975a21e055ef2eba57701ed7e0399e7a64617";
+ };
+ beamDeps = [ httpoison_0_8_3 poison_2_1_0 ];
+
+ meta = {
+ description = ''A wrapper for the Mars Atmospheric Weather System
+ API'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/lucidstack/ex-maas";
+ };
+ } // packageOverrides)
+ ) {};
+
+ maas = maas_1_0_0;
+
+ maester_1_0_0 = callPackage
+ (
+ {
+ buildMix,
+ packageOverrides ? {},
+ fetchHex,
+ poison_2_1_0,
+ httpoison_0_8_3
+ }:
+ buildMix ({
+ name = "maester";
+ version = "1.0.0";
+ src = fetchHex {
+ pkg = "maester";
+ version = "1.0.0";
+ sha256 =
+ "4fa324e1545ba5805d2eef2341c9554b52a51dfd79146dc13ec4b589e55efddd";
+ };
+ beamDeps = [ poison_2_1_0 httpoison_0_8_3 ];
+
+ meta = {
+ description = ''An API of Ice and Fire client for Elixir'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/sotojuan/maester";
+ };
+ } // packageOverrides)
+ ) {};
+
+ maester = maester_1_0_0;
+
+ magic_number_0_0_4 = callPackage
(
{ buildMix, packageOverrides ? {}, fetchHex }:
buildMix ({
name = "magic_number";
- version = "0.0.1";
+ version = "0.0.4";
src = fetchHex {
pkg = "magic_number";
- version = "0.0.1";
+ version = "0.0.4";
sha256 =
- "aef41d128da2cc8f5a4302a15048edd5ff58fcff68e847b6a6ebb000d8d44cc1";
+ "5b6fa41f5d24c3fd2f3cf9a96fefcf762c98bdd301158a95ab5355fe4f9eb61a";
};
meta = {
@@ -17044,7 +24129,30 @@ let
} // packageOverrides)
) {};
- magic_number = magic_number_0_0_1;
+ magic_number = magic_number_0_0_4;
+
+ magnet_0_0_1 = callPackage
+ (
+ { buildMix, packageOverrides ? {}, fetchHex }:
+ buildMix ({
+ name = "magnet";
+ version = "0.0.1";
+ src = fetchHex {
+ pkg = "magnet";
+ version = "0.0.1";
+ sha256 =
+ "064af72e9422262813977752e2f7439501894bce48e5679576ceb93f6b649581";
+ };
+
+ meta = {
+ description = ''A magnet-uri encoder and decoder'';
+ license = stdenv.lib.licenses.asl20;
+ homepage = "https://github.com/gausby/magnet";
+ };
+ } // packageOverrides)
+ ) {};
+
+ magnet = magnet_0_0_1;
mail_0_0_4 = callPackage
(
@@ -17075,8 +24183,8 @@ let
buildMix,
packageOverrides ? {},
fetchHex,
- timex_2_1_3,
- gen_smtp_0_9_0
+ timex_2_1_6,
+ gen_smtp_0_10_0
}:
buildMix ({
name = "mailer";
@@ -17087,7 +24195,7 @@ let
sha256 =
"08b834102ad6eb2f2a363b70939935d3d23d1e3a68d96a2a7f8730fb7834c63d";
};
- beamDeps = [ timex_2_1_3 gen_smtp_0_9_0 ];
+ beamDeps = [ timex_2_1_6 gen_smtp_0_10_0 ];
meta = {
description = ''Mailer - A simple email client'';
@@ -17099,27 +24207,6 @@ let
mailer = mailer_1_0_1;
- mailgun_0_0_2 = callPackage
- (
- { buildMix, packageOverrides ? {}, fetchHex }:
- buildMix ({
- name = "mailgun";
- version = "0.0.2";
- src = fetchHex {
- pkg = "mailgun";
- version = "0.0.2";
- sha256 =
- "9e00f4411d5838556d326b02038f6fa3f173a67af28148329014f9889cd4a5c4";
- };
-
- meta = {
- description = ''Elixir Mailgun Client'';
- license = stdenv.lib.licenses.mit;
- homepage = "https://github.com/chrismccord/mailgun";
- };
- } // packageOverrides)
- ) {};
-
mailgun_0_1_2 = callPackage
(
{ buildMix, packageOverrides ? {}, fetchHex, poison_1_5_2 }:
@@ -17144,38 +24231,6 @@ let
mailgun = mailgun_0_1_2;
- mailman_0_2_2 = callPackage
- (
- {
- buildMix,
- packageOverrides ? {},
- fetchHex,
- gen_smtp_0_9_0,
- ex_doc_0_11_4,
- earmark_0_2_1
- }:
- buildMix ({
- name = "mailman";
- version = "0.2.2";
- src = fetchHex {
- pkg = "mailman";
- version = "0.2.2";
- sha256 =
- "3a7aaf863017c0b9d924e31ccb34649ba31bcbbd8eac4837bbe3a040c37f94ab";
- };
- beamDeps = [ gen_smtp_0_9_0 ex_doc_0_11_4 earmark_0_2_1 ];
-
- meta = {
- description = ''Library providing a clean way of defining mailers
- in Elixir apps'';
- license = stdenv.lib.licenses.mit;
- homepage = "https://github.com/kamilc/mailman";
- };
- } // packageOverrides)
- ) {};
-
- mailman = mailman_0_2_2;
-
majremind_0_0_1 = callPackage
(
{ buildMix, packageOverrides ? {}, fetchHex }:
@@ -17204,7 +24259,7 @@ let
mandrag_0_1_1 = callPackage
(
- { buildMix, packageOverrides ? {}, fetchHex, exrm_1_0_3 }:
+ { buildMix, packageOverrides ? {}, fetchHex, exrm_1_0_5 }:
buildMix ({
name = "mandrag";
version = "0.1.1";
@@ -17214,7 +24269,7 @@ let
sha256 =
"e9e9fcbb844a2a86ecd95f5f8fa7db9f6ff88f3e2a6dca2bd996f4f71bbf125d";
};
- beamDeps = [ exrm_1_0_3 ];
+ beamDeps = [ exrm_1_0_5 ];
meta = {
description = ''A simple, extremely assumptive deploy script for
@@ -17251,6 +24306,38 @@ let
mandrake = mandrake_0_0_4;
+ mandrill_0_5_0 = callPackage
+ (
+ {
+ buildMix,
+ packageOverrides ? {},
+ fetchHex,
+ httpoison_0_8_3,
+ exjsx_3_2_0
+ }:
+ buildMix ({
+ name = "mandrill";
+ version = "0.5.0";
+ src = fetchHex {
+ pkg = "mandrill";
+ version = "0.5.0";
+ sha256 =
+ "9fb3a65d01de47cfc979a492079960506f21f8975e37e994478a70ee04c8d9a6";
+ };
+ beamDeps = [ httpoison_0_8_3 exjsx_3_2_0 ];
+
+ meta = {
+ longDescription = ''A Mandrill wrapper for Elixir Requires an
+ active account with Mandrill
+ (http://mandrill.com).'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/slogsdon/mandrill-elixir";
+ };
+ } // packageOverrides)
+ ) {};
+
+ mandrill = mandrill_0_5_0;
+
maptu_0_1_0 = callPackage
(
{ buildMix, packageOverrides ? {}, fetchHex }:
@@ -17275,25 +24362,25 @@ let
maptu = maptu_0_1_0;
- marco_polo_0_2_1 = callPackage
+ marco_polo_0_2_2 = callPackage
(
{
buildMix,
packageOverrides ? {},
fetchHex,
- decimal_1_1_1,
- connection_1_0_0_rc_1
+ decimal_1_1_2,
+ connection_1_0_2
}:
buildMix ({
name = "marco_polo";
- version = "0.2.1";
+ version = "0.2.2";
src = fetchHex {
pkg = "marco_polo";
- version = "0.2.1";
+ version = "0.2.2";
sha256 =
- "60730b3b488e11c91b57f0d3490baf86fd2972cd51a481480a5aec1e2aacf5fd";
+ "a3107bb545590f4533dee040432659566b9c5ddbbbdbf7d1ee92381f450c0956";
};
- beamDeps = [ decimal_1_1_1 connection_1_0_0_rc_1 ];
+ beamDeps = [ decimal_1_1_2 connection_1_0_2 ];
meta = {
description = ''Binary driver for the OrientDB database.'';
@@ -17303,21 +24390,21 @@ let
} // packageOverrides)
) {};
- marco_polo = marco_polo_0_2_1;
+ marco_polo = marco_polo_0_2_2;
- mariaex_0_1_7 = callPackage
+ mariaex_0_4_4 = callPackage
(
- { buildMix, packageOverrides ? {}, fetchHex, decimal_1_1_1 }:
+ { buildMix, packageOverrides ? {}, fetchHex, decimal_1_1_2 }:
buildMix ({
name = "mariaex";
- version = "0.1.7";
+ version = "0.4.4";
src = fetchHex {
pkg = "mariaex";
- version = "0.1.7";
+ version = "0.4.4";
sha256 =
- "58daf08d513327b422a68de199202e6a2c1785472e2fa8d8ffe212e6ee51b1fb";
+ "fadba91ff3719ac0fae7d454abfd812819630ea9f9aec768c5321331baa38b79";
};
- beamDeps = [ decimal_1_1_1 ];
+ beamDeps = [ decimal_1_1_2 ];
meta = {
description = ''Pure elixir database driver for MariaDB /
@@ -17328,48 +24415,25 @@ let
} // packageOverrides)
) {};
- mariaex_0_4_3 = callPackage
- (
- { buildMix, packageOverrides ? {}, fetchHex, decimal_1_1_1 }:
- buildMix ({
- name = "mariaex";
- version = "0.4.3";
- src = fetchHex {
- pkg = "mariaex";
- version = "0.4.3";
- sha256 =
- "5403290df22598e0152c7f1edd64f6372238055d5e72cc830780d019f4d22d57";
- };
- beamDeps = [ decimal_1_1_1 ];
-
- meta = {
- description = ''Pure elixir database driver for MariaDB /
- MySQL.'';
- license = stdenv.lib.licenses.asl20;
- homepage = "https://github.com/xerions/mariaex";
- };
- } // packageOverrides)
- ) {};
-
- mariaex_0_7_0 = callPackage
+ mariaex_0_7_5 = callPackage
(
{
buildMix,
packageOverrides ? {},
fetchHex,
- decimal_1_1_1,
- db_connection_0_2_4
+ decimal_1_1_2,
+ db_connection_1_0_0_rc_0
}:
buildMix ({
name = "mariaex";
- version = "0.7.0";
+ version = "0.7.5";
src = fetchHex {
pkg = "mariaex";
- version = "0.7.0";
+ version = "0.7.5";
sha256 =
- "758c1d8a75a9ce71f047e8d54b0fa1cde518252b25aecb9b8c42f918340bdfb6";
+ "36a09e08ff2583d4cb2f9fbeec720730a04c202bb486726276368a2be1e4cb95";
};
- beamDeps = [ decimal_1_1_1 db_connection_0_2_4 ];
+ beamDeps = [ decimal_1_1_2 db_connection_1_0_0_rc_0 ];
meta = {
description = ''Pure elixir database driver for MariaDB /
@@ -17380,7 +24444,7 @@ let
} // packageOverrides)
) {};
- mariaex = mariaex_0_7_0;
+ mariaex = mariaex_0_7_5;
marked_0_0_1 = callPackage
(
@@ -17404,6 +24468,68 @@ let
marked = marked_0_0_1;
+ markit_0_1_2 = callPackage
+ (
+ {
+ buildMix,
+ packageOverrides ? {},
+ fetchHex,
+ poison_2_1_0,
+ httpoison_0_8_3
+ }:
+ buildMix ({
+ name = "markit";
+ version = "0.1.2";
+ src = fetchHex {
+ pkg = "markit";
+ version = "0.1.2";
+ sha256 =
+ "6304ceb1e7a5787555bc7d048bf3c9c0b432fe5378c6d630fb02d0bb871e57b5";
+ };
+ beamDeps = [ poison_2_1_0 httpoison_0_8_3 ];
+
+ meta = {
+ description = ''Access stock market data from markit.com'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/col/markit";
+ };
+ } // packageOverrides)
+ ) {};
+
+ markit = markit_0_1_2;
+
+ markit_skill_0_0_2 = callPackage
+ (
+ {
+ buildMix,
+ packageOverrides ? {},
+ fetchHex,
+ markit_0_1_2,
+ inflex_1_5_0,
+ alexa_0_1_14
+ }:
+ buildMix ({
+ name = "markit_skill";
+ version = "0.0.2";
+ src = fetchHex {
+ pkg = "markit_skill";
+ version = "0.0.2";
+ sha256 =
+ "166d8ef88c08c21821dda379a053af761db4de5dff50226bfcb0e3a18fc855db";
+ };
+ beamDeps = [ markit_0_1_2 inflex_1_5_0 alexa_0_1_14 ];
+
+ meta = {
+ description = ''Amazon Alexa skill that uses data from
+ Markit.com'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/col/markit_skill";
+ };
+ } // packageOverrides)
+ ) {};
+
+ markit_skill = markit_skill_0_0_2;
+
maru_entity_0_1_2 = callPackage
(
{ buildMix, packageOverrides ? {}, fetchHex }:
@@ -17426,17 +24552,17 @@ let
maru_entity = maru_entity_0_1_2;
- math_0_0_1 = callPackage
+ math_0_2_0 = callPackage
(
{ buildMix, packageOverrides ? {}, fetchHex }:
buildMix ({
name = "math";
- version = "0.0.1";
+ version = "0.2.0";
src = fetchHex {
pkg = "math";
- version = "0.0.1";
+ version = "0.2.0";
sha256 =
- "ca9c87163b052d2c849a7b4ef3d8664f9400024f26c6add1ce200aa72604a90d";
+ "75557fb9743e866f743d894102da851531ffc69b4c0f8fdd12cd749acb1a6215";
};
meta = {
@@ -17499,7 +24625,7 @@ let
} // packageOverrides)
) {};
- math = math_0_0_1;
+ math = math_0_2_0;
matrix_0_3_1 = callPackage
(
@@ -17533,6 +24659,34 @@ let
matrix = matrix_0_3_1;
+ maxwell_1_0_0 = callPackage
+ (
+ { buildMix, packageOverrides ? {}, fetchHex, mimerl_1_0_2 }:
+ buildMix ({
+ name = "maxwell";
+ version = "1.0.0";
+ src = fetchHex {
+ pkg = "maxwell";
+ version = "1.0.0";
+ sha256 =
+ "4a71f54a7645210f5274c00171a217a03a04635620d5eef52d0463a88f64d106";
+ };
+ beamDeps = [ mimerl_1_0_2 ];
+
+ meta = {
+ longDescription = ''Maxwell is an HTTP client that provides a
+ common interface over many adapters (such as
+ hackney, ibrowse) and embraces the concept of
+ Rack middleware when processing the
+ request/response cycle.'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/zhongwencool/maxwell";
+ };
+ } // packageOverrides)
+ ) {};
+
+ maxwell = maxwell_1_0_0;
+
maybe_0_0_1 = callPackage
(
{ buildMix, packageOverrides ? {}, fetchHex }:
@@ -17556,40 +24710,21 @@ let
maybe = maybe_0_0_1;
- mazurka_0_3_34 = callPackage
+ mazurka_1_0_0 = callPackage
(
{
- buildMix,
- packageOverrides ? {},
- fetchHex,
- xml_builder_0_0_8,
- poison_2_1_0,
- plug_1_1_3,
- mimetype_parser_0_1_2,
- mazurka_dsl_0_1_1,
- html_builder_0_1_1,
- etude_0_3_7,
- ecto_1_0_7
+ buildMix, packageOverrides ? {}, fetchHex, mimetype_parser_0_1_2
}:
buildMix ({
name = "mazurka";
- version = "0.3.34";
+ version = "1.0.0";
src = fetchHex {
pkg = "mazurka";
- version = "0.3.34";
+ version = "1.0.0";
sha256 =
- "4efd11082e2c6af965bc2f5e282601858f5e8d78f9ace30ba7baa27b03333023";
+ "7f035374ceb139b7531ca24bd111ee25cbf3be11b45af1bbf663ed3b832e7b13";
};
- beamDeps = [
- xml_builder_0_0_8
- poison_2_1_0
- plug_1_1_3
- mimetype_parser_0_1_2
- mazurka_dsl_0_1_1
- html_builder_0_1_1
- etude_0_3_7
- ecto_1_0_7
- ];
+ beamDeps = [ mimetype_parser_0_1_2 ];
meta = {
description = ''hypermedia api toolkit'';
@@ -17599,7 +24734,7 @@ let
} // packageOverrides)
) {};
- mazurka = mazurka_0_3_34;
+ mazurka = mazurka_1_0_0;
mazurka_dsl_0_1_1 = callPackage
(
@@ -17627,7 +24762,7 @@ let
mazurka_mediatype_0_2_0 = callPackage
(
{
- buildMix, packageOverrides ? {}, fetchHex, etude_1_0_0_beta_0
+ buildMix, packageOverrides ? {}, fetchHex, etude_1_0_0_beta_2
}:
buildMix ({
name = "mazurka_mediatype";
@@ -17638,7 +24773,7 @@ let
sha256 =
"4ccd8b27d6405e93cb34861f211d69b79ab46c2dbc5c7874d4ee3c580a5754bb";
};
- beamDeps = [ etude_1_0_0_beta_0 ];
+ beamDeps = [ etude_1_0_0_beta_2 ];
meta = {
description = ''mazurka mediatype interface'';
@@ -17658,7 +24793,7 @@ let
fetchHex,
poison_1_3_1,
mazurka_mediatype_0_2_0,
- etude_1_0_0_beta_0
+ etude_1_0_0_beta_2
}:
buildMix ({
name = "mazurka_mediatype_hyperjson";
@@ -17672,7 +24807,7 @@ let
beamDeps = [
poison_1_3_1
mazurka_mediatype_0_2_0
- etude_1_0_0_beta_0
+ etude_1_0_0_beta_2
];
meta = {
@@ -17686,17 +24821,17 @@ let
mazurka_mediatype_hyperjson = mazurka_mediatype_hyperjson_0_2_3;
- mc_data_0_0_2 = callPackage
+ mc_data_0_0_5 = callPackage
(
{ buildMix, packageOverrides ? {}, fetchHex, poison_2_1_0 }:
buildMix ({
name = "mc_data";
- version = "0.0.2";
+ version = "0.0.5";
src = fetchHex {
pkg = "mc_data";
- version = "0.0.2";
+ version = "0.0.5";
sha256 =
- "8faba98530129d3a79d7a3062db1f4fa358363be1575fb28acb6e74abb031e86";
+ "0ad4b4489554951f93fc9da39b8f14e5b87dada3005d6d012528cbc387d0aa27";
};
beamDeps = [ poison_2_1_0 ];
@@ -17709,36 +24844,7 @@ let
} // packageOverrides)
) {};
- mc_data = mc_data_0_0_2;
-
- mc_protocol_0_0_1 = callPackage
- (
- { buildMix, packageOverrides ? {}, fetchHex, uuid_1_1_3 }:
- buildMix ({
- name = "mc_protocol";
- version = "0.0.1";
- src = fetchHex {
- pkg = "mc_protocol";
- version = "0.0.1";
- sha256 =
- "683d92c0c6efd034f56a664bcb4f21f17050a89577f4aa0200343673fd357865";
- };
- beamDeps = [ uuid_1_1_3 ];
-
- meta = {
- longDescription = ''Implementation of the Minecraft protocol in
- Elixir. Aims to provide functional ways to
- interact with the minecraft protocol on all
- levels, including packet reading and writing,
- encryption, compression, authentication and
- more.'';
- license = stdenv.lib.licenses.mit;
- homepage = "https://github.com/hansihe/elixir_mc_protocol";
- };
- } // packageOverrides)
- ) {};
-
- mc_protocol = mc_protocol_0_0_1;
+ mc_data = mc_data_0_0_5;
mcup_0_0_2 = callPackage
(
@@ -17819,6 +24925,50 @@ let
mdns_server_lib = mdns_server_lib_0_2_3;
+ meck_0_8_3 = callPackage
+ (
+ { buildRebar3, packageOverrides ? {}, fetchHex }:
+ buildRebar3 ({
+ name = "meck";
+ version = "0.8.3";
+ src = fetchHex {
+ pkg = "meck";
+ version = "0.8.3";
+ sha256 =
+ "53bd3873d0193d6b2b4a165cfc4b9ffc3934355c3ba19e88239ef6a027cc02b6";
+ };
+
+ meta = {
+ description = ''A mocking framework for Erlang'';
+ license = stdenv.lib.licenses.asl20;
+ homepage = "https://github.com/eproxus/meck";
+ };
+ } // packageOverrides)
+ ) {};
+
+ meck_0_8_4 = callPackage
+ (
+ { buildRebar3, packageOverrides ? {}, fetchHex }:
+ buildRebar3 ({
+ name = "meck";
+ version = "0.8.4";
+ src = fetchHex {
+ pkg = "meck";
+ version = "0.8.4";
+ sha256 =
+ "2cdfbd0edd8f62b3d2061efc03c0e490282dd2ea6de44e15d2006e83f4f8eead";
+ };
+
+ meta = {
+ description = ''A mocking framework for Erlang'';
+ license = stdenv.lib.licenses.asl20;
+ homepage = "https://github.com/eproxus/meck";
+ };
+ } // packageOverrides)
+ ) {};
+
+ meck = meck_0_8_4;
+
meld_0_1_2 = callPackage
(
{ buildMix, packageOverrides ? {}, fetchHex }:
@@ -17849,7 +24999,7 @@ let
packageOverrides ? {},
fetchHex,
poison_2_1_0,
- plug_1_1_3
+ plug_1_1_5
}:
buildMix ({
name = "mellon";
@@ -17860,7 +25010,7 @@ let
sha256 =
"2b05fca901c0b9609cdd65cfb015a7646a9ec239cf1694ee8f1384a53a5ac0b4";
};
- beamDeps = [ poison_2_1_0 plug_1_1_3 ];
+ beamDeps = [ poison_2_1_0 plug_1_1_5 ];
meta = {
longDescription = ''Mellon is a Plug used in authentication of
@@ -17874,17 +25024,17 @@ let
mellon = mellon_0_1_1;
- mem_0_1_2 = callPackage
+ mem_0_2_0 = callPackage
(
{ buildMix, packageOverrides ? {}, fetchHex }:
buildMix ({
name = "mem";
- version = "0.1.2";
+ version = "0.2.0";
src = fetchHex {
pkg = "mem";
- version = "0.1.2";
+ version = "0.2.0";
sha256 =
- "492f8bc52ca5d7ccdfdfac19d8a6f145eb9d268b712b02c207544022dfe2d42b";
+ "6a97047af66ab2c4283460ae43611c9a843abb95584dca4e648ed320c7fdfa34";
};
meta = {
@@ -17895,7 +25045,7 @@ let
} // packageOverrides)
) {};
- mem = mem_0_1_2;
+ mem = mem_0_2_0;
memcache_client_1_1_0 = callPackage
(
@@ -17929,36 +25079,149 @@ let
memcache_client = memcache_client_1_1_0;
- meta_0_0_1 = callPackage
+ merkle_0_0_4 = callPackage
(
- { buildRebar3, packageOverrides ? {}, fetchHex, forms_0_0_1 }:
- buildRebar3 ({
- name = "meta";
- version = "0.0.1";
+ {
+ buildMix,
+ packageOverrides ? {},
+ fetchHex,
+ sha3_1_0_0,
+ rlist_0_0_1
+ }:
+ buildMix ({
+ name = "merkle";
+ version = "0.0.4";
src = fetchHex {
- pkg = "meta";
- version = "0.0.1";
+ pkg = "merkle";
+ version = "0.0.4";
sha256 =
- "9aa1be58e265a16eafb9092d9675427672721ca9d3c924664e561b0857c6dcb8";
+ "76e33e4736f670ac380a0e46914143ae83429f6fc2355d05dfbdf4cd8bbc29d1";
};
-
- buildPlugins = [ rebar3_hex ];
-
- beamDeps = [ forms_0_0_1 ];
+ beamDeps = [ sha3_1_0_0 rlist_0_0_1 ];
meta = {
- description = ''A metaprogramming library for Erlang'';
+ description = ''Implementation of binary Merkle Tree in
+ Elixir.'';
license = stdenv.lib.licenses.mit;
- homepage = "https://github.com/efcasado/forms";
+ homepage = "https://github.com/stampery/elixir-merkle";
};
} // packageOverrides)
) {};
- meta = meta_0_0_1;
+ merkle = merkle_0_0_4;
+
+ merkle_tree_1_1_1 = callPackage
+ (
+ { buildMix, packageOverrides ? {}, fetchHex }:
+ buildMix ({
+ name = "merkle_tree";
+ version = "1.1.1";
+ src = fetchHex {
+ pkg = "merkle_tree";
+ version = "1.1.1";
+ sha256 =
+ "6020578ceee91ae26c63aab9bf8112fbb83cc029d25e6ad4f35b2ed4bfdcaf7a";
+ };
+
+ meta = {
+ longDescription = ''A hash tree or Merkle tree is a tree in which
+ every non-leaf node is labelled with the hash of
+ the labels or values (in case of leaves) of its
+ child nodes. Hash trees are useful because they
+ allow efficient and secure verification of the
+ contents of large data structures.'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/yosriady/merkle_tree";
+ };
+ } // packageOverrides)
+ ) {};
+
+ merkle_tree = merkle_tree_1_1_1;
+
+ messagepack_0_4_1 = callPackage
+ (
+ { buildMix, packageOverrides ? {}, fetchHex }:
+ buildMix ({
+ name = "messagepack";
+ version = "0.4.1";
+ src = fetchHex {
+ pkg = "messagepack";
+ version = "0.4.1";
+ sha256 =
+ "cdf2d4a2af846a8c3cd43a9f80082883ff7c2c5e221ec078375102db0fb5ca2f";
+ };
+
+ meta = {
+ description = ''MessagePack for Erlang / Elixir'';
+ license = stdenv.lib.licenses.asl20;
+ homepage = "https://github.com/tomaon/messagepack";
+ };
+ } // packageOverrides)
+ ) {};
+
+ messagepack = messagepack_0_4_1;
+
+ messenger_0_0_2 = callPackage
+ (
+ {
+ buildMix,
+ packageOverrides ? {},
+ fetchHex,
+ poison_1_5_2,
+ httpoison_0_8_3
+ }:
+ buildMix ({
+ name = "messenger";
+ version = "0.0.2";
+ src = fetchHex {
+ pkg = "messenger";
+ version = "0.0.2";
+ sha256 =
+ "dda5b1bde69852ac8f2ae7f2d10d55209fd7b6babfc4e664779e3204a9e258b8";
+ };
+ beamDeps = [ poison_1_5_2 httpoison_0_8_3 ];
+
+ meta = {
+ description = ''Facebook messenger API client for Elixir'';
+
+ };
+ } // packageOverrides)
+ ) {};
+
+ messenger = messenger_0_0_2;
+
+ meta_inspector_0_0_2 = callPackage
+ (
+ {
+ buildMix,
+ packageOverrides ? {},
+ fetchHex,
+ poison_2_1_0,
+ httpoison_0_8_3
+ }:
+ buildMix ({
+ name = "meta_inspector";
+ version = "0.0.2";
+ src = fetchHex {
+ pkg = "meta_inspector";
+ version = "0.0.2";
+ sha256 =
+ "60edc00c2af5ab30e2abebe5f40614421fde2861e147147b33ae54bf4beb180a";
+ };
+ beamDeps = [ poison_2_1_0 httpoison_0_8_3 ];
+
+ meta = {
+ description = ''HTTP Metadata inspector'';
+ license = stdenv.lib.licenses.mit;
+ };
+ } // packageOverrides)
+ ) {};
+
+ meta_inspector = meta_inspector_0_0_2;
metainvestigator_0_0_3 = callPackage
(
- { buildMix, packageOverrides ? {}, fetchHex, floki_0_8_0 }:
+ { buildMix, packageOverrides ? {}, fetchHex, floki_0_8_1 }:
buildMix ({
name = "metainvestigator";
version = "0.0.3";
@@ -17968,7 +25231,7 @@ let
sha256 =
"774b3973090491a9a342a68c5cf099c98581ae0f1b1d313a08a7d2030d541781";
};
- beamDeps = [ floki_0_8_0 ];
+ beamDeps = [ floki_0_8_1 ];
meta = {
description = ''A library for web scraping, inspired by
@@ -17981,6 +25244,31 @@ let
metainvestigator = metainvestigator_0_0_3;
+ meter_0_1_0 = callPackage
+ (
+ { buildMix, packageOverrides ? {}, fetchHex, httpoison_0_8_3 }:
+ buildMix ({
+ name = "meter";
+ version = "0.1.0";
+ src = fetchHex {
+ pkg = "meter";
+ version = "0.1.0";
+ sha256 =
+ "029f4f4a05b10c05b45c70671a353d780964759c3f4b90cf1531c02ef5466724";
+ };
+ beamDeps = [ httpoison_0_8_3 ];
+
+ meta = {
+ description = ''Track your elixir application on google
+ analytycs'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/carlo-colombo/meter";
+ };
+ } // packageOverrides)
+ ) {};
+
+ meter = meter_0_1_0;
+
metrics_1_0_1 = callPackage
(
{ buildRebar3, packageOverrides ? {}, fetchHex }:
@@ -18025,7 +25313,29 @@ let
} // packageOverrides)
) {};
- metrics = metrics_1_1_0;
+ metrics_1_2_0 = callPackage
+ (
+ { buildRebar3, packageOverrides ? {}, fetchHex }:
+ buildRebar3 ({
+ name = "metrics";
+ version = "1.2.0";
+ src = fetchHex {
+ pkg = "metrics";
+ version = "1.2.0";
+ sha256 =
+ "c27c7786b8ad0c5f941956fc413f7f31a2e26ba72ebf2fb1396cf363b0b9e70b";
+ };
+
+ meta = {
+ description = ''A generic interface to different metrics systems
+ in Erlang.'';
+ license = stdenv.lib.licenses.bsd3;
+ homepage = "https://github.com/benoitc/erlang-metrics";
+ };
+ } // packageOverrides)
+ ) {};
+
+ metrics = metrics_1_2_0;
metrix_0_2_0 = callPackage
(
@@ -18078,6 +25388,69 @@ let
mex = mex_0_0_5;
+ microformats2_0_0_5 = callPackage
+ (
+ {
+ buildMix,
+ packageOverrides ? {},
+ fetchHex,
+ httpotion_2_2_2,
+ floki_0_7_2
+ }:
+ buildMix ({
+ name = "microformats2";
+ version = "0.0.5";
+ src = fetchHex {
+ pkg = "microformats2";
+ version = "0.0.5";
+ sha256 =
+ "890ca1812738869aa65865339a730c5542949cac4b017b25fc276e81b37157b2";
+ };
+ beamDeps = [ httpotion_2_2_2 floki_0_7_2 ];
+
+ meta = {
+ description = ''A microformats2 parser
+ (http://microformats.org/wiki/microformats-2) for
+ Elixir'';
+ license = stdenv.lib.licenses.agpl3;
+ homepage = "https://github.com/ckruse/microformats2-elixir";
+ };
+ } // packageOverrides)
+ ) {};
+
+ microformats2 = microformats2_0_0_5;
+
+ milkpotion_0_0_2 = callPackage
+ (
+ {
+ buildMix,
+ packageOverrides ? {},
+ fetchHex,
+ httpoison_0_8_3,
+ poison_2_1_0
+ }:
+ buildMix ({
+ name = "milkpotion";
+ version = "0.0.2";
+ src = fetchHex {
+ pkg = "milkpotion";
+ version = "0.0.2";
+ sha256 =
+ "1106589d5bdb3d65fd18ff997760b8c3ad9bca7744ae1a0b48b2995227f0c0fd";
+ };
+ beamDeps = [ httpoison_0_8_3 poison_2_1_0 ];
+
+ meta = {
+ description = ''milkpotion is an api wrapper for Remember the
+ Milk'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/croesnick/milkpotion.git";
+ };
+ } // packageOverrides)
+ ) {};
+
+ milkpotion = milkpotion_0_0_2;
+
milliseconds_0_0_1 = callPackage
(
{ buildMix, packageOverrides ? {}, fetchHex }:
@@ -18104,53 +25477,53 @@ let
milliseconds = milliseconds_0_0_1;
- mime_0_0_1 = callPackage
+ mime_1_0_0 = callPackage
(
{ buildMix, packageOverrides ? {}, fetchHex }:
buildMix ({
name = "mime";
- version = "0.0.1";
- src = fetchHex {
- pkg = "mime";
- version = "0.0.1";
- sha256 =
- "24098ddfbd23433846d064a337531dcd3b1c3abdad4c359bf4f1a89243270a00";
- };
-
- meta = {
- description = ''A mime type module for elixir.'';
- license = stdenv.lib.licenses.mit;
- homepage = "https://github.com/elixirdrops/mime";
- };
- } // packageOverrides)
- ) {};
-
- mime = mime_0_0_1;
-
- mimerl_1_0_0 = callPackage
- (
- { buildRebar3, packageOverrides ? {}, fetchHex }:
- buildRebar3 ({
- name = "mimerl";
version = "1.0.0";
src = fetchHex {
- pkg = "mimerl";
+ pkg = "mime";
version = "1.0.0";
sha256 =
- "a30b01104a29bd3a363db8646e4ce0f7980f9ecd23a98707c46c3ced918c41b4";
+ "069f07e17e67069195b747ed8b935c547a79adf32c4f8b4cae6dec7d3f1c805c";
};
- buildPlugins = [ rebar3_hex ];
-
-
meta = {
- description = ''Library to handle mimetypes'';
- license = stdenv.lib.licenses.mit;
- homepage = "https://github.com/benoitc/mimerl";
+ description = ''A MIME type module for Elixir'';
+ license = stdenv.lib.licenses.apsl20;
+ homepage = "https://github.com/elixir-lang/mime";
};
} // packageOverrides)
) {};
+ mime = mime_1_0_0;
+
+ mime_types_0_1_1 = callPackage
+ (
+ { buildMix, packageOverrides ? {}, fetchHex }:
+ buildMix ({
+ name = "mime_types";
+ version = "0.1.1";
+ src = fetchHex {
+ pkg = "mime_types";
+ version = "0.1.1";
+ sha256 =
+ "46b4f4a52deda3ac9fa48ae6e3582efb851d6c72de4a11e4dfcc7e386dab710b";
+ };
+
+ meta = {
+ description = ''A toolbelt for working with MIME types in
+ Elixir.'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/christhekeele/mime_types";
+ };
+ } // packageOverrides)
+ ) {};
+
+ mime_types = mime_types_0_1_1;
+
mimerl_1_0_2 = callPackage
(
{ buildRebar3, packageOverrides ? {}, fetchHex }:
@@ -18291,17 +25664,17 @@ let
misc_random = misc_random_0_2_6;
- mix_apidoc_0_1_0 = callPackage
+ mix_apidoc_0_2_0 = callPackage
(
{ buildMix, packageOverrides ? {}, fetchHex, poison_1_5_2 }:
buildMix ({
name = "mix_apidoc";
- version = "0.1.0";
+ version = "0.2.0";
src = fetchHex {
pkg = "mix_apidoc";
- version = "0.1.0";
+ version = "0.2.0";
sha256 =
- "e22e8a2ebf33efb6feb9a7ee6ee69a2df73496c8c6793a57cd426e9e9b1ba82e";
+ "0f6119dc530050b8344e62e82b450dcd8cdad9a370d39af17420d8e7299eb059";
};
beamDeps = [ poison_1_5_2 ];
@@ -18315,7 +25688,7 @@ let
} // packageOverrides)
) {};
- mix_apidoc = mix_apidoc_0_1_0;
+ mix_apidoc = mix_apidoc_0_2_0;
mix_deps_tree_0_1_0 = callPackage
(
@@ -18440,6 +25813,37 @@ let
mix_test_watch = mix_test_watch_0_2_6;
+ mixgraph_0_0_1 = callPackage
+ (
+ {
+ buildMix,
+ packageOverrides ? {},
+ fetchHex,
+ json_0_3_3,
+ httpotion_2_2_2
+ }:
+ buildMix ({
+ name = "mixgraph";
+ version = "0.0.1";
+ src = fetchHex {
+ pkg = "mixgraph";
+ version = "0.0.1";
+ sha256 =
+ "0c911c4e300d7e5196ff9d427b9d66d935d540309cb8a54a397641f7059f1700";
+ };
+ beamDeps = [ json_0_3_3 httpotion_2_2_2 ];
+
+ meta = {
+ description = ''Create an interactive dependency graph for any
+ hex package published in hex.pm'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/sivsushruth/mixgraph";
+ };
+ } // packageOverrides)
+ ) {};
+
+ mixgraph = mixgraph_0_0_1;
+
mixpanel_0_0_3 = callPackage
(
{ buildMix, packageOverrides ? {}, fetchHex, exjsx_3_1_0 }:
@@ -18465,10 +25869,71 @@ let
mixpanel = mixpanel_0_0_3;
+ mixpanel_api_ex_0_8_3 = callPackage
+ (
+ {
+ buildMix,
+ packageOverrides ? {},
+ fetchHex,
+ poison_1_5_2,
+ httpoison_0_8_3
+ }:
+ buildMix ({
+ name = "mixpanel_api_ex";
+ version = "0.8.3";
+ src = fetchHex {
+ pkg = "mixpanel_api_ex";
+ version = "0.8.3";
+ sha256 =
+ "1ff5eb4aa333495a86868873deb8fcd04c5f2e6f2560d77ac6ccbe07e2e3d7b4";
+ };
+ beamDeps = [ poison_1_5_2 httpoison_0_8_3 ];
+
+ meta = {
+ description = ''Elixir client for the Mixpanel API.'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/agevio/mixpanel_api_ex";
+ };
+ } // packageOverrides)
+ ) {};
+
+ mixpanel_api_ex = mixpanel_api_ex_0_8_3;
+
+ mixpanel_data_client_0_0_2 = callPackage
+ (
+ {
+ buildMix,
+ packageOverrides ? {},
+ fetchHex,
+ poison_1_3_1,
+ httpoison_0_8_3
+ }:
+ buildMix ({
+ name = "mixpanel_data_client";
+ version = "0.0.2";
+ src = fetchHex {
+ pkg = "mixpanel_data_client";
+ version = "0.0.2";
+ sha256 =
+ "7f3bbd608ae18153655f27bd50ea01ad85630d6c1cc6ab9ed336e95419f06c86";
+ };
+ beamDeps = [ poison_1_3_1 httpoison_0_8_3 ];
+
+ meta = {
+ description = ''Client library for interacting with the Mixpanel
+ Data API.'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/jeregrine/mixpanel_data_client";
+ };
+ } // packageOverrides)
+ ) {};
+
+ mixpanel_data_client = mixpanel_data_client_0_0_2;
+
mixunit_0_9_2 = callPackage
(
- { buildRebar3, packageOverrides ? {}, fetchHex }:
- buildRebar3 ({
+ { buildMix, packageOverrides ? {}, fetchHex }:
+ buildMix ({
name = "mixunit";
version = "0.9.2";
src = fetchHex {
@@ -18519,6 +25984,82 @@ let
mmExchangeRate = mmExchangeRate_0_0_1;
+ mmath_0_2_0_alpha4 = callPackage
+ (
+ { buildRebar3, packageOverrides ? {}, fetchHex }:
+ buildRebar3 ({
+ name = "mmath";
+ version = "0.2.0-alpha4";
+ src = fetchHex {
+ pkg = "mmath";
+ version = "0.2.0-alpha4";
+ sha256 =
+ "a855fe72b1939659a2856b32c74e148ed6c1d58cfb6eea5a24787995d66c05d7";
+ };
+ compilePorts = true;
+ buildPlugins = [ pc ];
+
+
+ meta = {
+ description = ''math library for metric sequences and binary
+ arrays.'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/dalmatinerdb/mmath";
+ };
+ } // packageOverrides)
+ ) {};
+
+ mmath_0_2_0_alpha7 = callPackage
+ (
+ { buildRebar3, packageOverrides ? {}, fetchHex }:
+ buildRebar3 ({
+ name = "mmath";
+ version = "0.2.0-alpha7";
+ src = fetchHex {
+ pkg = "mmath";
+ version = "0.2.0-alpha7";
+ sha256 =
+ "b4d68cce7e243b4e16f7a93cbdb16605f00c469cd9ebf7aa58c8b3214f8f8868";
+ };
+ compilePorts = true;
+ buildPlugins = [ pc ];
+
+
+ meta = {
+ description = ''math library for metric sequences and binary
+ arrays.'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/dalmatinerdb/mmath";
+ };
+ } // packageOverrides)
+ ) {};
+
+ mmath = mmath_0_2_0_alpha7;
+
+ mnemonex_1_1_0 = callPackage
+ (
+ { buildMix, packageOverrides ? {}, fetchHex, the_fuzz_0_3_0 }:
+ buildMix ({
+ name = "mnemonex";
+ version = "1.1.0";
+ src = fetchHex {
+ pkg = "mnemonex";
+ version = "1.1.0";
+ sha256 =
+ "e3b0bf58cdee4d18cdc324d3bb6f6241724e6d38b4fcb24fc04e2dae243339b9";
+ };
+ beamDeps = [ the_fuzz_0_3_0 ];
+
+ meta = {
+ description = ''mnemonicode encoder/decoder'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/mwmiller/mnemonex";
+ };
+ } // packageOverrides)
+ ) {};
+
+ mnemonex = mnemonex_1_1_0;
+
mnemonic_slugs_0_0_1 = callPackage
(
{ buildMix, packageOverrides ? {}, fetchHex }:
@@ -18543,28 +26084,81 @@ let
mnemonic_slugs = mnemonic_slugs_0_0_1;
- mochiweb_html_2_13_0 = callPackage
+ mochiweb_2_12_2 = callPackage
(
{ buildRebar3, packageOverrides ? {}, fetchHex }:
buildRebar3 ({
- name = "mochiweb_html";
- version = "2.13.0";
+ name = "mochiweb";
+ version = "2.12.2";
src = fetchHex {
- pkg = "mochiweb_html";
- version = "2.13.0";
+ pkg = "mochiweb";
+ version = "2.12.2";
sha256 =
- "c05f969fd011b357ea2f577c2b996776241d179ba2eb1bcba274cc23fdcf5439";
+ "d3e681d4054b74a96cf2efcd09e94157ab83a5f55ddc4ce69f90b8144673bd7a";
};
meta = {
- description = ''Mochiweb HTML parser'';
+ description = ''MochiWeb is an Erlang library for building
+ lightweight HTTP servers. '';
license = stdenv.lib.licenses.mit;
homepage = "https://github.com/mochi/mochiweb";
};
} // packageOverrides)
) {};
- mochiweb_html = mochiweb_html_2_13_0;
+ mochiweb = mochiweb_2_12_2;
+
+ mochiweb_html_2_15_0 = callPackage
+ (
+ { buildRebar3, packageOverrides ? {}, fetchHex }:
+ buildRebar3 ({
+ name = "mochiweb_html";
+ version = "2.15.0";
+ src = fetchHex {
+ pkg = "mochiweb_html";
+ version = "2.15.0";
+ sha256 =
+ "7651a4ef29bd6d69819b37b6aa12c7616c5cf75e67ccd849cfb499e2bbbf0ce6";
+ };
+
+ meta = {
+ description = ''Mochiweb HTML parser'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/philss/mochiweb_html";
+ };
+ } // packageOverrides)
+ ) {};
+
+ mochiweb_html = mochiweb_html_2_15_0;
+
+ mock_0_1_3 = callPackage
+ (
+ { buildMix, packageOverrides ? {}, fetchHex, meck_0_8_4 }:
+ buildMix ({
+ name = "mock";
+ version = "0.1.3";
+ src = fetchHex {
+ pkg = "mock";
+ version = "0.1.3";
+ sha256 =
+ "bf7cf50d528394d870cdecac4920ab719cec0af98eff95759b57cab0e5ee143e";
+ };
+ beamDeps = [ meck_0_8_4 ];
+
+ meta = {
+ longDescription = ''A mocking libary for the Elixir language. We
+ use the Erlang meck library to provide module
+ mocking functionality for Elixir. It uses macros
+ in Elixir to expose the functionality in a
+ convenient manner for integrating in Elixir
+ tests.'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/jjh42/mock";
+ };
+ } // packageOverrides)
+ ) {};
+
+ mock = mock_0_1_3;
module_mocker_0_2_0 = callPackage
(
@@ -18591,28 +26185,68 @@ let
module_mocker = module_mocker_0_2_0;
- mogrify_0_2_0 = callPackage
+ moebius_2_0_1 = callPackage
+ (
+ {
+ buildMix,
+ packageOverrides ? {},
+ fetchHex,
+ timex_2_1_6,
+ postgrex_0_11_1,
+ poolboy_1_5_1,
+ poison_2_0_1,
+ inflex_1_5_0
+ }:
+ buildMix ({
+ name = "moebius";
+ version = "2.0.1";
+ src = fetchHex {
+ pkg = "moebius";
+ version = "2.0.1";
+ sha256 =
+ "00e6dbde61bae910463d5a0a7334776946b14c4de390b6f7d839fe6e31089add";
+ };
+ beamDeps = [
+ timex_2_1_6
+ postgrex_0_11_1
+ poolboy_1_5_1
+ poison_2_0_1
+ inflex_1_5_0
+ ];
+
+ meta = {
+ description = ''A functional approach to data access with
+ Elixir'';
+ license = stdenv.lib.licenses.free;
+ homepage = "https://github.com/robconery/moebius";
+ };
+ } // packageOverrides)
+ ) {};
+
+ moebius = moebius_2_0_1;
+
+ mogrify_0_3_0 = callPackage
(
{ buildMix, packageOverrides ? {}, fetchHex }:
buildMix ({
name = "mogrify";
- version = "0.2.0";
+ version = "0.3.0";
src = fetchHex {
pkg = "mogrify";
- version = "0.2.0";
+ version = "0.3.0";
sha256 =
- "47e9c3c9eba9772f0d5da28e430efef4e9317a7f805357de06a18945ebbf9a5e";
+ "490631d662a0303d468b48868929df99cc62081b5711c3a6b3eb7b0b2dac21e5";
};
meta = {
description = ''ImageMagick command line wrapper.'';
- license = stdenv.lib.licenses.asl20;
+ license = stdenv.lib.licenses.mit;
homepage = "https://github.com/route/mogrify";
};
} // packageOverrides)
) {};
- mogrify = mogrify_0_2_0;
+ mogrify = mogrify_0_3_0;
mojoauth_1_0_2 = callPackage
(
@@ -18738,62 +26372,36 @@ let
monadex = monadex_1_0_2;
- monetized_0_3_2 = callPackage
+ mondo_0_1_0 = callPackage
(
{
buildMix,
packageOverrides ? {},
fetchHex,
- poison_1_5_2,
- ecto_1_1_5,
- decimal_1_1_1
+ poison_2_1_0,
+ plug_1_1_5,
+ httpoison_0_8_3
}:
buildMix ({
- name = "monetized";
- version = "0.3.2";
+ name = "mondo";
+ version = "0.1.0";
src = fetchHex {
- pkg = "monetized";
- version = "0.3.2";
+ pkg = "mondo";
+ version = "0.1.0";
sha256 =
- "1978e46c6dd352fea0e9ce208835886ea4fd07dfc1555ee2f9adce98a9e82ce6";
+ "f557216314e098137f5140f1194e2eba7a2a030d78affc23ea5943f586ab1095";
};
- beamDeps = [ poison_1_5_2 ecto_1_1_5 decimal_1_1_1 ];
+ beamDeps = [ poison_2_1_0 plug_1_1_5 httpoison_0_8_3 ];
meta = {
- description = ''A lightweight solution for handling and storing
- money.'';
+ description = ''An Elixir client for the Mondo API.'';
license = stdenv.lib.licenses.mit;
- homepage = "https://github.com/theocodes/monetized";
+ homepage = "https://github.com/stevedomin/mondo_elixir";
};
} // packageOverrides)
) {};
- monetized = monetized_0_3_2;
-
- money_0_0_1_dev = callPackage
- (
- { buildMix, packageOverrides ? {}, fetchHex }:
- buildMix ({
- name = "money";
- version = "0.0.1-dev";
- src = fetchHex {
- pkg = "money";
- version = "0.0.1-dev";
- sha256 =
- "ea032fa5bbed9b9e8a91192601d612b805b1855e0ed6cdb99e3277b0a2735aeb";
- };
-
- meta = {
- longDescription = ''Elixir library for working with Money safer,
- easier, and fun, is an interpretation of the
- Fowler`s Money pattern in fun.prog.'';
- license = stdenv.lib.licenses.mit;
- homepage = "https://github.com/liuggio/money";
- };
- } // packageOverrides)
- ) {};
-
- money = money_0_0_1_dev;
+ mondo = mondo_0_1_0;
mongodb_0_1_1 = callPackage
(
@@ -18825,36 +26433,6 @@ let
mongodb = mongodb_0_1_1;
- mongodb_ecto_0_1_4 = callPackage
- (
- {
- buildMix,
- packageOverrides ? {},
- fetchHex,
- mongodb_0_1_1,
- ecto_1_0_7
- }:
- buildMix ({
- name = "mongodb_ecto";
- version = "0.1.4";
- src = fetchHex {
- pkg = "mongodb_ecto";
- version = "0.1.4";
- sha256 =
- "2f9cc8c8cd316e187f4b8b94d0a88618ce4a6cb1b6cfa7856573f3376fb443bf";
- };
- beamDeps = [ mongodb_0_1_1 ecto_1_0_7 ];
-
- meta = {
- description = ''MongoDB adapter for Ecto'';
- license = stdenv.lib.licenses.asl20;
- homepage = "https://github.com/michalmuskala/mongodb_ecto";
- };
- } // packageOverrides)
- ) {};
-
- mongodb_ecto = mongodb_ecto_0_1_4;
-
monk_0_1_3 = callPackage
(
{ buildMix, packageOverrides ? {}, fetchHex }:
@@ -18902,6 +26480,30 @@ let
morph = morph_0_1_0;
+ mortgage_0_0_2 = callPackage
+ (
+ { buildMix, packageOverrides ? {}, fetchHex }:
+ buildMix ({
+ name = "mortgage";
+ version = "0.0.2";
+ src = fetchHex {
+ pkg = "mortgage";
+ version = "0.0.2";
+ sha256 =
+ "fbd6e7dcf2d8213b4b1ab3b00904482a6aadf32625245bdc02eb76b7cd265173";
+ };
+
+ meta = {
+ description = ''A set of functions for working with mortgages and
+ mortgage notes.'';
+ license = stdenv.lib.licenses.asl20;
+ homepage = "https://github.com/geolessel/mortgage";
+ };
+ } // packageOverrides)
+ ) {};
+
+ mortgage = mortgage_0_0_2;
+
moxie_0_0_1 = callPackage
(
{ buildMix, packageOverrides ? {}, fetchHex }:
@@ -18947,6 +26549,59 @@ let
mpinyin = mpinyin_0_0_2;
+ mpower_1_0_1 = callPackage
+ (
+ {
+ buildMix,
+ packageOverrides ? {},
+ fetchHex,
+ poison_2_1_0,
+ httpoison_0_8_3
+ }:
+ buildMix ({
+ name = "mpower";
+ version = "1.0.1";
+ src = fetchHex {
+ pkg = "mpower";
+ version = "1.0.1";
+ sha256 =
+ "d08a6ec51f1da683507ed08d0787a726eb3e56dd16084fffc279a5391fa02014";
+ };
+ beamDeps = [ poison_2_1_0 httpoison_0_8_3 ];
+
+ meta = {
+ description = ''Elixir wrapper for MPowerPayments API'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/abakhi/mpower";
+ };
+ } // packageOverrides)
+ ) {};
+
+ mpower = mpower_1_0_1;
+
+ mr_roboto_1_0_0 = callPackage
+ (
+ { buildMix, packageOverrides ? {}, fetchHex, httpoison_0_8_3 }:
+ buildMix ({
+ name = "mr_roboto";
+ version = "1.0.0";
+ src = fetchHex {
+ pkg = "mr_roboto";
+ version = "1.0.0";
+ sha256 =
+ "80c5af8f07bd85f28b60e350a5cfc92d1a5c2bcde9a0c3d93fcaa378a033a371";
+ };
+ beamDeps = [ httpoison_0_8_3 ];
+
+ meta = {
+ description = ''A simple robots.txt service'';
+
+ };
+ } // packageOverrides)
+ ) {};
+
+ mr_roboto = mr_roboto_1_0_0;
+
msgpack_0_5_0 = callPackage
(
{ buildRebar3, packageOverrides ? {}, fetchHex }:
@@ -18970,29 +26625,6 @@ let
msgpack = msgpack_0_5_0;
- msgpax_0_7_1 = callPackage
- (
- { buildMix, packageOverrides ? {}, fetchHex }:
- buildMix ({
- name = "msgpax";
- version = "0.7.1";
- src = fetchHex {
- pkg = "msgpax";
- version = "0.7.1";
- sha256 =
- "3d2bb32de9552482f35b86cbdc547ee94b67615bfcc831222cde869afa202f2c";
- };
-
- meta = {
- longDescription = ''This library provides an API for serializing
- and de-serializing Elixir terms using the
- MessagePack format'';
- license = stdenv.lib.licenses.isc;
- homepage = "https://github.com/lexmag/msgpax";
- };
- } // packageOverrides)
- ) {};
-
msgpax_0_8_2 = callPackage
(
{ buildMix, packageOverrides ? {}, fetchHex }:
@@ -19092,6 +26724,39 @@ let
multiset = multiset_0_0_4;
+ murdoch_0_0_1 = callPackage
+ (
+ {
+ buildMix,
+ packageOverrides ? {},
+ fetchHex,
+ poison_1_5_2,
+ httpoison_0_8_3,
+ goth_0_0_3
+ }:
+ buildMix ({
+ name = "murdoch";
+ version = "0.0.1";
+ src = fetchHex {
+ pkg = "murdoch";
+ version = "0.0.1";
+ sha256 =
+ "77ec44ca76d6b4a14df7222104a36cb29ed25f7d52fb3ffe30807ddc82a2d9ad";
+ };
+ beamDeps = [ poison_1_5_2 httpoison_0_8_3 goth_0_0_3 ];
+
+ meta = {
+ longDescription = ''A library for interacting with Google Cloud
+ Pub/Sub (PubSub). Supports both publication and
+ pull subscription'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/peburrows/murdoch";
+ };
+ } // packageOverrides)
+ ) {};
+
+ murdoch = murdoch_0_0_1;
+
murmur_0_2_1 = callPackage
(
{ buildMix, packageOverrides ? {}, fetchHex }:
@@ -19261,6 +26926,107 @@ let
n2o = n2o_2_3_0;
+ nadia_0_4_0 = callPackage
+ (
+ {
+ buildMix,
+ packageOverrides ? {},
+ fetchHex,
+ poison_1_5_2,
+ httpoison_0_8_3
+ }:
+ buildMix ({
+ name = "nadia";
+ version = "0.4.0";
+ src = fetchHex {
+ pkg = "nadia";
+ version = "0.4.0";
+ sha256 =
+ "e76217333ad6d02ec971bfa781e70268285fc417aebb486318e0584affccb08d";
+ };
+ beamDeps = [ poison_1_5_2 httpoison_0_8_3 ];
+
+ meta = {
+ description = ''Telegram Bot API Wrapper written in Elixir'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/zhyu/nadia";
+ };
+ } // packageOverrides)
+ ) {};
+
+ nadia = nadia_0_4_0;
+
+ naive_bayes_0_1_3 = callPackage
+ (
+ { buildMix, packageOverrides ? {}, fetchHex }:
+ buildMix ({
+ name = "naive_bayes";
+ version = "0.1.3";
+ src = fetchHex {
+ pkg = "naive_bayes";
+ version = "0.1.3";
+ sha256 =
+ "4b65f199852dcb95ba483b7eeae0afed36931418854aadf6b8235197a985d29e";
+ };
+
+ meta = {
+ description = ''An Elixir implementation of Naive Bayes'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/ashleyw/naive_bayes";
+ };
+ } // packageOverrides)
+ ) {};
+
+ naive_bayes = naive_bayes_0_1_3;
+
+ named_args_0_1_0 = callPackage
+ (
+ { buildMix, packageOverrides ? {}, fetchHex }:
+ buildMix ({
+ name = "named_args";
+ version = "0.1.0";
+ src = fetchHex {
+ pkg = "named_args";
+ version = "0.1.0";
+ sha256 =
+ "d90285d6fab53c66762e6b3cec655d79df24251e8ed277faa4b308d6f2789c1e";
+ };
+
+ meta = {
+ description = ''Ensures default maps and keyword lists have the
+ defaults specified.'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/mgwidmann/named_args";
+ };
+ } // packageOverrides)
+ ) {};
+
+ named_args = named_args_0_1_0;
+
+ narp_0_0_1 = callPackage
+ (
+ { buildMix, packageOverrides ? {}, fetchHex }:
+ buildMix ({
+ name = "narp";
+ version = "0.0.1";
+ src = fetchHex {
+ pkg = "narp";
+ version = "0.0.1";
+ sha256 =
+ "90800be330ed49563b24d891a578678865ce108cd77fa2427e09dbb6b1bac737";
+ };
+
+ meta = {
+ description = ''Narp is an easy and flexible way to authorize
+ function calls in elixir.'';
+ license = stdenv.lib.licenses.asl20;
+ homepage = "https://github.com/faber-lotto/narp";
+ };
+ } // packageOverrides)
+ ) {};
+
+ narp = narp_0_0_1;
+
nat_set_0_0_1 = callPackage
(
{ buildMix, packageOverrides ? {}, fetchHex }:
@@ -19389,8 +27155,8 @@ let
natural_sort_0_3_0 = callPackage
(
- { buildRebar3, packageOverrides ? {}, fetchHex }:
- buildRebar3 ({
+ { buildMix, packageOverrides ? {}, fetchHex }:
+ buildMix ({
name = "natural_sort";
version = "0.3.0";
src = fetchHex {
@@ -19413,7 +27179,7 @@ let
navigation_history_0_2_0 = callPackage
(
- { buildMix, packageOverrides ? {}, fetchHex, plug_1_1_3 }:
+ { buildMix, packageOverrides ? {}, fetchHex, plug_1_1_5 }:
buildMix ({
name = "navigation_history";
version = "0.2.0";
@@ -19423,7 +27189,7 @@ let
sha256 =
"9fbddedd831930c3f2e784c53442558d90d68040f9921dfa9441da63d6b8dacc";
};
- beamDeps = [ plug_1_1_3 ];
+ beamDeps = [ plug_1_1_5 ];
meta = {
description = ''Navigation history tracking plug'';
@@ -19464,31 +27230,33 @@ let
navigation_tree = navigation_tree_0_4_4;
- ndc_ex_sdk_0_0_7 = callPackage
+ ndc_ex_sdk_0_2_1 = callPackage
(
{
buildMix,
packageOverrides ? {},
fetchHex,
- xml_builder_0_0_8,
- pipe_0_0_2,
+ timex_2_1_6,
+ httpotion_2_2_2,
ibrowse_4_2_2,
- httpotion_2_2_2
+ pipe_0_0_2,
+ xml_builder_0_0_8
}:
buildMix ({
name = "ndc_ex_sdk";
- version = "0.0.7";
+ version = "0.2.1";
src = fetchHex {
pkg = "ndc_ex_sdk";
- version = "0.0.7";
+ version = "0.2.1";
sha256 =
- "73402d51ce6da305409d48e1638e864a336038a03205e66c75c090115c8fe8b8";
+ "2d17a23afbbe4f348abb6c1e9fb787ff609ba678828f2cd41dedb6a79b9c8232";
};
beamDeps = [
- xml_builder_0_0_8
- pipe_0_0_2
- ibrowse_4_2_2
+ timex_2_1_6
httpotion_2_2_2
+ ibrowse_4_2_2
+ pipe_0_0_2
+ xml_builder_0_0_8
];
meta = {
@@ -19496,13 +27264,12 @@ let
NDC-compliant API. It`s host-agnostic and quite
flexible-through-configuration so that it can
reach NDC hosts with a certain flexibility'';
-
- homepage = "https://github.com/open-ndc/ndc-ex-sdk";
+ license = stdenv.lib.licenses.free;
};
} // packageOverrides)
) {};
- ndc_ex_sdk = ndc_ex_sdk_0_0_7;
+ ndc_ex_sdk = ndc_ex_sdk_0_2_1;
neat_ex_1_1_0 = callPackage
(
@@ -19561,56 +27328,138 @@ let
nectar = nectar_0_0_1;
- neotoma_1_7_3 = callPackage
+ nerves_io_neopixel_0_2_0 = callPackage
(
- { buildRebar3, packageOverrides ? {}, fetchHex }:
- buildRebar3 ({
- name = "neotoma";
- version = "1.7.3";
- src = fetchHex {
- pkg = "neotoma";
- version = "1.7.3";
- sha256 =
- "2da322b9b1567ffa0706a7f30f6bbbde70835ae44a1050615f4b4a3d436e0f28";
- };
-
- buildPlugins = [ rebar3_hex ];
-
-
- meta = {
- description = ''PEG/Packrat toolkit and parser-generator.'';
- license = stdenv.lib.licenses.mit;
- homepage = "https://github.com/seancribbs/neotoma";
- };
- } // packageOverrides)
- ) {};
-
- neotoma = neotoma_1_7_3;
-
- nerves_0_2_0 = callPackage
- (
- { buildMix, packageOverrides ? {}, fetchHex, exrm_1_0_3 }:
+ { buildMix, packageOverrides ? {}, fetchHex }:
buildMix ({
- name = "nerves";
+ name = "nerves_io_neopixel";
version = "0.2.0";
src = fetchHex {
- pkg = "nerves";
+ pkg = "nerves_io_neopixel";
version = "0.2.0";
sha256 =
- "b53cd891c3d719597ccb084bdcfc6eb714f820d9c53c44f1bab4d530c9b0734f";
+ "662ca0af01330399eba9aff9806c086027ec5b3a2e235af4cd909282a6d09afa";
};
- beamDeps = [ exrm_1_0_3 ];
meta = {
- longDescription = ''Nerves - Create firmware for embedded devices
- like Raspberry Pi, BeagleBone Black, and more'';
- license = stdenv.lib.licenses.asl20;
- homepage = "https://github.com/nerves-project/nerves";
+ description = ''Drive WS2812B \"NeoPixel\" RGB LED strips from a
+ Raspberry Pi using Elixir.'';
+ license = with stdenv.lib.licenses; [ mit bsd2 ];
+ homepage = "https://github.com/GregMefford/nerves_io_neopixel";
};
} // packageOverrides)
) {};
- nerves = nerves_0_2_0;
+ nerves_io_neopixel = nerves_io_neopixel_0_2_0;
+
+ nerves_system_0_1_4 = callPackage
+ (
+ {
+ buildMix,
+ packageOverrides ? {},
+ fetchHex,
+ porcelain_2_0_1,
+ httpoison_0_8_3
+ }:
+ buildMix ({
+ name = "nerves_system";
+ version = "0.1.4";
+ src = fetchHex {
+ pkg = "nerves_system";
+ version = "0.1.4";
+ sha256 =
+ "2ad32ff5a6d9a827fb89f93a9c0626add1c72ffaf9068f3cea94fa5fd0eff591";
+ };
+ beamDeps = [ porcelain_2_0_1 httpoison_0_8_3 ];
+
+ meta = {
+ longDescription = ''Elixir compilers and scripts for building
+ Nerves Systems. For useable system
+ configurations see nerves_system_*'';
+ license = stdenv.lib.licenses.asl20;
+ homepage = "https://github.com/nerves-project/nerves_system";
+ };
+ } // packageOverrides)
+ ) {};
+
+ nerves_system = nerves_system_0_1_4;
+
+ nerves_system_br_0_5_2 = callPackage
+ (
+ { buildMix, packageOverrides ? {}, fetchHex }:
+ buildMix ({
+ name = "nerves_system_br";
+ version = "0.5.2";
+ src = fetchHex {
+ pkg = "nerves_system_br";
+ version = "0.5.2";
+ sha256 =
+ "43747294af52161eb7d58269a18d1927d7fe66185047fbfae204938d9ebe56c3";
+ };
+
+ meta = {
+ description = ''Nerves System BR - Buildroot based build platform
+ for Nerves Systems'';
+ license = with stdenv.lib.licenses; [ asl20 free ];
+ homepage = "https://github.com/nerves-project/nerves_system_br";
+ };
+ } // packageOverrides)
+ ) {};
+
+ nerves_system_br = nerves_system_br_0_5_2;
+
+ nerves_toolchain_0_6_2 = callPackage
+ (
+ { buildMix, packageOverrides ? {}, fetchHex, httpoison_0_8_3 }:
+ buildMix ({
+ name = "nerves_toolchain";
+ version = "0.6.2";
+ src = fetchHex {
+ pkg = "nerves_toolchain";
+ version = "0.6.2";
+ sha256 =
+ "0e2c841389de2b3a9d527dee288e5a8d01883cea424edf951e70e7d9855f45f1";
+ };
+ beamDeps = [ httpoison_0_8_3 ];
+
+ meta = {
+ longDescription = ''Elixir compilers and scripts for building
+ Nerves Toolchains. For useable toolchain
+ configurations see nerves_toolchain_*'';
+ license = stdenv.lib.licenses.asl20;
+ homepage = "https://github.com/nerves-project/nerves_toolchain";
+ };
+ } // packageOverrides)
+ ) {};
+
+ nerves_toolchain = nerves_toolchain_0_6_2;
+
+ nerves_uart_0_0_6 = callPackage
+ (
+ {
+ buildMix, packageOverrides ? {}, fetchHex, elixir_make_0_1_0
+ }:
+ buildMix ({
+ name = "nerves_uart";
+ version = "0.0.6";
+ src = fetchHex {
+ pkg = "nerves_uart";
+ version = "0.0.6";
+ sha256 =
+ "1de94781598204b33f21ac27346390421f377c18b9503c86de60265b37573768";
+ };
+ beamDeps = [ elixir_make_0_1_0 ];
+
+ meta = {
+ description = ''Discover and use UARTs and serial ports in
+ Elixir.'';
+ license = stdenv.lib.licenses.asl20;
+ homepage = "https://github.com/nerves-project/nerves_uart";
+ };
+ } // packageOverrides)
+ ) {};
+
+ nerves_uart = nerves_uart_0_0_6;
nest_0_0_1 = callPackage
(
@@ -19637,33 +27486,6 @@ let
nest = nest_0_0_1;
- nested_set_0_0_2 = callPackage
- (
- { buildMix, packageOverrides ? {}, fetchHex, ecto_1_1_5 }:
- buildMix ({
- name = "nested_set";
- version = "0.0.2";
- src = fetchHex {
- pkg = "nested_set";
- version = "0.0.2";
- sha256 =
- "283fac1cbaf129d29a7ea6b6c050248bdc63631421d395f0b909510c3f7d2e83";
- };
- beamDeps = [ ecto_1_1_5 ];
-
- meta = {
- longDescription = ''Nested Set implementation for Ecto/Phoenix.
- It is our first attempt to make something like
- acts_as_nested_set in rails. Still in WIP, be
- cautious if planing to use.'';
- license = stdenv.lib.licenses.free;
- homepage = "https://github.com/bansalakhil/elixir_nested_set";
- };
- } // packageOverrides)
- ) {};
-
- nested_set = nested_set_0_0_2;
-
netrc_0_0_2 = callPackage
(
{ buildMix, packageOverrides ? {}, fetchHex }:
@@ -19710,6 +27532,35 @@ let
netstrings = netstrings_2_0_1;
+ neural_net_1_0_0 = callPackage
+ (
+ { buildMix, packageOverrides ? {}, fetchHex }:
+ buildMix ({
+ name = "neural_net";
+ version = "1.0.0";
+ src = fetchHex {
+ pkg = "neural_net";
+ version = "1.0.0";
+ sha256 =
+ "164cead198d6f8e2ba396346c4c4f8ec8c5b6e6ae00d6915eec902c436779239";
+ };
+
+ meta = {
+ longDescription = ''NeuralNet is an A.I. library that allows for
+ the construction and training of complex
+ recurrent neural networks. Architectures such as
+ LSTM or GRU can be specified in under 20 lines
+ of code. Any neural network that can be built
+ with the NeuralNet DSL can be trainined with
+ automatically implemented BPTT (back-propagation
+ through time).'';
+ license = stdenv.lib.licenses.asl20;
+ };
+ } // packageOverrides)
+ ) {};
+
+ neural_net = neural_net_1_0_0;
+
neural_network_0_1_0 = callPackage
(
{ buildMix, packageOverrides ? {}, fetchHex }:
@@ -19804,6 +27655,89 @@ let
nile = nile_0_1_3;
+ ninjaproxies_0_2_0 = callPackage
+ (
+ {
+ buildMix,
+ packageOverrides ? {},
+ fetchHex,
+ poison_1_5_2,
+ httpoison_0_8_3
+ }:
+ buildMix ({
+ name = "ninjaproxies";
+ version = "0.2.0";
+ src = fetchHex {
+ pkg = "ninjaproxies";
+ version = "0.2.0";
+ sha256 =
+ "5524329d00944690b362d30fef9c4032c03c401cc44d0ad9e98e147f5792fade";
+ };
+ beamDeps = [ poison_1_5_2 httpoison_0_8_3 ];
+
+ meta = {
+ description = ''Ninjaproxies client library for Elixir.'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/zensavona/ninjaproxies";
+ };
+ } // packageOverrides)
+ ) {};
+
+ ninjaproxies = ninjaproxies_0_2_0;
+
+ njord_0_1_1 = callPackage
+ (
+ {
+ buildMix,
+ packageOverrides ? {},
+ fetchHex,
+ poison_2_1_0,
+ httpoison_0_8_3
+ }:
+ buildMix ({
+ name = "njord";
+ version = "0.1.1";
+ src = fetchHex {
+ pkg = "njord";
+ version = "0.1.1";
+ sha256 =
+ "b438430dbf6ceaf2bede01a285c5032be3041cbedd7c1552653d75179fab4dfb";
+ };
+ beamDeps = [ poison_2_1_0 httpoison_0_8_3 ];
+
+ meta = {
+ description = ''A wrapper over HTTPoison to build client APIs.'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/gmtprime/njord";
+ };
+ } // packageOverrides)
+ ) {};
+
+ njord = njord_0_1_1;
+
+ noise_0_0_4 = callPackage
+ (
+ { buildRebar3, packageOverrides ? {}, fetchHex }:
+ buildRebar3 ({
+ name = "noise";
+ version = "0.0.4";
+ src = fetchHex {
+ pkg = "noise";
+ version = "0.0.4";
+ sha256 =
+ "2a448e5aff72edd08a587de16c9887ca80ffcde00004eaa2f94dae56536958be";
+ };
+
+ meta = {
+ description = ''A pseudo-random noise generation library'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/joshforisha/noise";
+ };
+ } // packageOverrides)
+ ) {};
+
+ noise = noise_0_0_4;
+
normalize_email_0_0_1 = callPackage
(
{ buildMix, packageOverrides ? {}, fetchHex, is_email_0_0_2 }:
@@ -19828,17 +27762,17 @@ let
normalize_email = normalize_email_0_0_1;
- normalize_url_0_0_2 = callPackage
+ normalize_url_0_1_1 = callPackage
(
{ buildMix, packageOverrides ? {}, fetchHex }:
buildMix ({
name = "normalize_url";
- version = "0.0.2";
+ version = "0.1.1";
src = fetchHex {
pkg = "normalize_url";
- version = "0.0.2";
+ version = "0.1.1";
sha256 =
- "491ea6aa41e044dd85248407e5ebc94a608f89b30292e7ee72d52c3659421016";
+ "7d1c75f4bf5156636e8d0b5c6addb0cae802b970f8412f4b0429b3547220d88e";
};
meta = {
@@ -19849,11 +27783,11 @@ let
} // packageOverrides)
) {};
- normalize_url = normalize_url_0_0_2;
+ normalize_url = normalize_url_0_1_1;
not_qwerty123_1_1_0 = callPackage
(
- { buildMix, packageOverrides ? {}, fetchHex, gettext_0_10_0 }:
+ { buildMix, packageOverrides ? {}, fetchHex, gettext_0_11_0 }:
buildMix ({
name = "not_qwerty123";
version = "1.1.0";
@@ -19863,7 +27797,7 @@ let
sha256 =
"4997296d742f72fe95f8933cba92ab6cee3147888dc9bbd7b703c7f970e8ab58";
};
- beamDeps = [ gettext_0_10_0 ];
+ beamDeps = [ gettext_0_11_0 ];
meta = {
description = ''Library to check password strength and generate
@@ -19900,6 +27834,62 @@ let
number = number_0_4_1;
+ numerix_0_0_4 = callPackage
+ (
+ { buildMix, packageOverrides ? {}, fetchHex }:
+ buildMix ({
+ name = "numerix";
+ version = "0.0.4";
+ src = fetchHex {
+ pkg = "numerix";
+ version = "0.0.4";
+ sha256 =
+ "b837acc1c095fe580cc69314b72c9171a0d7d6f8734f81ee2ec1f917614c997f";
+ };
+
+ meta = {
+ description = ''A collection of (potentially) useful mathematical
+ functions'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/safwank/Numerix";
+ };
+ } // packageOverrides)
+ ) {};
+
+ numerix = numerix_0_0_4;
+
+ oauth2_0_3_0 = callPackage
+ (
+ {
+ buildMix,
+ packageOverrides ? {},
+ fetchHex,
+ poison_1_5_2,
+ plug_1_1_5,
+ httpoison_0_8_3,
+ hackney_1_6_0
+ }:
+ buildMix ({
+ name = "oauth2";
+ version = "0.3.0";
+ src = fetchHex {
+ pkg = "oauth2";
+ version = "0.3.0";
+ sha256 =
+ "ee23e6fb6ac84abce23713ba93f1df2fd368c9ad7b9288f0ef6fcec0e0249043";
+ };
+ beamDeps = [
+ poison_1_5_2 plug_1_1_5 httpoison_0_8_3 hackney_1_6_0
+ ];
+
+ meta = {
+ description = ''An Elixir OAuth 2.0 Client Library'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/scrogson/oauth2";
+ };
+ } // packageOverrides)
+ ) {};
+
oauth2_erlang_0_6_1 = callPackage
(
{ buildRebar3, packageOverrides ? {}, fetchHex }:
@@ -19970,17 +27960,49 @@ let
octet = octet_0_0_2;
- odgn_json_pointer_1_1_0 = callPackage
+ octokit_0_1_0 = callPackage
+ (
+ {
+ buildMix,
+ packageOverrides ? {},
+ fetchHex,
+ timex_1_0_2,
+ poison_2_1_0,
+ httpoison_0_8_3
+ }:
+ buildMix ({
+ name = "octokit";
+ version = "0.1.0";
+ src = fetchHex {
+ pkg = "octokit";
+ version = "0.1.0";
+ sha256 =
+ "1c761130e94dbbe16a7751ee1289e1334c9208222da03a8ae9fd77c50f5e969b";
+ };
+ beamDeps = [ timex_1_0_2 poison_2_1_0 httpoison_0_8_3 ];
+
+ meta = {
+ description = ''An Elixir library for accessing the GitHub
+ API.'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/lee-dohm/octokit.ex";
+ };
+ } // packageOverrides)
+ ) {};
+
+ octokit = octokit_0_1_0;
+
+ odgn_json_pointer_1_2_0 = callPackage
(
{ buildMix, packageOverrides ? {}, fetchHex }:
buildMix ({
name = "odgn_json_pointer";
- version = "1.1.0";
+ version = "1.2.0";
src = fetchHex {
pkg = "odgn_json_pointer";
- version = "1.1.0";
+ version = "1.2.0";
sha256 =
- "04330904e76a596342a5a9ac09c5d10250a237fc39c59d5576c8ac3b15842f3d";
+ "fd99e3d11e4d2a52fd3b4ee5d3d1fb1f1d316ebaf1b7e699e563c813cc7f8e77";
};
meta = {
@@ -19992,7 +28014,31 @@ let
} // packageOverrides)
) {};
- odgn_json_pointer = odgn_json_pointer_1_1_0;
+ odgn_json_pointer = odgn_json_pointer_1_2_0;
+
+ odin_0_0_1 = callPackage
+ (
+ { buildMix, packageOverrides ? {}, fetchHex }:
+ buildMix ({
+ name = "odin";
+ version = "0.0.1";
+ src = fetchHex {
+ pkg = "odin";
+ version = "0.0.1";
+ sha256 =
+ "17951e0c8c73f10b38e4110e6ecefe507b4ea6203bcea7d55e34320be60b5a4a";
+ };
+
+ meta = {
+ description = ''elixir toolkit for building command-line
+ interfaces.'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/plus-eg/odin";
+ };
+ } // packageOverrides)
+ ) {};
+
+ odin = odin_0_0_1;
odt_potion_0_0_1 = callPackage
(
@@ -20018,17 +28064,17 @@ let
odt_potion = odt_potion_0_0_1;
- og_0_0_6 = callPackage
+ og_0_1_0 = callPackage
(
{ buildMix, packageOverrides ? {}, fetchHex }:
buildMix ({
name = "og";
- version = "0.0.6";
+ version = "0.1.0";
src = fetchHex {
pkg = "og";
- version = "0.0.6";
+ version = "0.1.0";
sha256 =
- "8934f5e495dc8fcc8ed56f37f0067e0a360c9588c04c6b800d91eb593b9067d3";
+ "0b858c07cb6d6d40eca28e3462c03213aeb1f3f1a22bd98e53c2bda445ee98b7";
};
meta = {
@@ -20040,7 +28086,7 @@ let
} // packageOverrides)
) {};
- og = og_0_0_6;
+ og = og_0_1_0;
ok_0_1_3 = callPackage
(
@@ -20088,6 +28134,36 @@ let
ok_jose = ok_jose_2_0_0;
+ one_signal_0_0_6 = callPackage
+ (
+ {
+ buildMix,
+ packageOverrides ? {},
+ fetchHex,
+ poison_1_5_2,
+ httpoison_0_8_3
+ }:
+ buildMix ({
+ name = "one_signal";
+ version = "0.0.6";
+ src = fetchHex {
+ pkg = "one_signal";
+ version = "0.0.6";
+ sha256 =
+ "d90ec5f9e43d164e2942422d3c1e9a6b26a956ea135eb1a316380e12ef6b27d1";
+ };
+ beamDeps = [ poison_1_5_2 httpoison_0_8_3 ];
+
+ meta = {
+ description = ''Elixir wrapper of OneSignal'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/yoavlt/one_signal";
+ };
+ } // packageOverrides)
+ ) {};
+
+ one_signal = one_signal_0_0_6;
+
onetime_1_0_0 = callPackage
(
{ buildMix, packageOverrides ? {}, fetchHex, timex_1_0_2 }:
@@ -20112,17 +28188,17 @@ let
onetime = onetime_1_0_0;
- oop_0_0_4 = callPackage
+ oop_0_1_0 = callPackage
(
{ buildMix, packageOverrides ? {}, fetchHex }:
buildMix ({
name = "oop";
- version = "0.0.4";
+ version = "0.1.0";
src = fetchHex {
pkg = "oop";
- version = "0.0.4";
+ version = "0.1.0";
sha256 =
- "ab09b287b80ce860f34bf07652c23a9a21c4064aca730a25becfe30c6b46b81b";
+ "eee8595a9f8bee5967850b143070d1a6c9b819c69ea19c82ae7c353e5991785e";
};
meta = {
@@ -20133,7 +28209,197 @@ let
} // packageOverrides)
) {};
- oop = oop_0_0_4;
+ oop = oop_0_1_0;
+
+ opbeat_0_3_0 = callPackage
+ (
+ {
+ buildMix,
+ packageOverrides ? {},
+ fetchHex,
+ poison_1_5_2,
+ httpoison_0_8_3
+ }:
+ buildMix ({
+ name = "opbeat";
+ version = "0.3.0";
+ src = fetchHex {
+ pkg = "opbeat";
+ version = "0.3.0";
+ sha256 =
+ "20977e8ae08a1789326a3e5c0c8fa3265dd0e6ddc1fb6abe25c3a33d3fc9e692";
+ };
+ beamDeps = [ poison_1_5_2 httpoison_0_8_3 ];
+
+ meta = {
+ description = ''Elixir client for opbeat'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/teodor-pripoae/opbeat";
+ };
+ } // packageOverrides)
+ ) {};
+
+ opbeat = opbeat_0_3_0;
+
+ open_graphx_0_0_2 = callPackage
+ (
+ {
+ buildMix,
+ packageOverrides ? {},
+ fetchHex,
+ httpoison_0_8_3,
+ floki_0_8_1
+ }:
+ buildMix ({
+ name = "open_graphx";
+ version = "0.0.2";
+ src = fetchHex {
+ pkg = "open_graphx";
+ version = "0.0.2";
+ sha256 =
+ "2eef951c4fbb8a01f11ed3ab6ca62dc695a84baf9ae0fbe7698058eac8020b70";
+ };
+ beamDeps = [ httpoison_0_8_3 floki_0_8_1 ];
+
+ meta = {
+ description = ''Load Open Graph Protocol'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/yoavlt/open_graphx";
+ };
+ } // packageOverrides)
+ ) {};
+
+ open_graphx = open_graphx_0_0_2;
+
+ openmaize_jwt_0_9_0 = callPackage
+ (
+ {
+ buildMix,
+ packageOverrides ? {},
+ fetchHex,
+ poison_2_1_0,
+ plug_1_1_5,
+ cowboy_1_0_4
+ }:
+ buildMix ({
+ name = "openmaize_jwt";
+ version = "0.9.0";
+ src = fetchHex {
+ pkg = "openmaize_jwt";
+ version = "0.9.0";
+ sha256 =
+ "1c07dc9646a6270d9a21669ca27b55453e3af568724715a26feef395d5b105ab";
+ };
+ beamDeps = [ poison_2_1_0 plug_1_1_5 cowboy_1_0_4 ];
+
+ meta = {
+ description = ''JSON Web Token library for use with the Openmaize
+ authentication library.'';
+ license = stdenv.lib.licenses.bsd3;
+ homepage = "https://github.com/riverrun/openmaizejwt";
+ };
+ } // packageOverrides)
+ ) {};
+
+ openmaize_jwt = openmaize_jwt_0_9_0;
+
+ openstack_0_0_5 = callPackage
+ (
+ {
+ buildMix,
+ packageOverrides ? {},
+ fetchHex,
+ poison_1_5_2,
+ maybe_0_0_1,
+ httpoison_0_8_3
+ }:
+ buildMix ({
+ name = "openstack";
+ version = "0.0.5";
+ src = fetchHex {
+ pkg = "openstack";
+ version = "0.0.5";
+ sha256 =
+ "f3387f15fea0ae51eacc7c7b3667ac5cc611c479ae48a7ce8ea61d5ae1c6ba57";
+ };
+ beamDeps = [ poison_1_5_2 maybe_0_0_1 httpoison_0_8_3 ];
+
+ meta = {
+ description = ''Openstack Client'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/zweifisch/openstack.ex";
+ };
+ } // packageOverrides)
+ ) {};
+
+ openstack = openstack_0_0_5;
+
+ openstax_keystone_0_1_1 = callPackage
+ (
+ {
+ buildMix,
+ packageOverrides ? {},
+ fetchHex,
+ timex_2_1_6,
+ poison_1_5_2,
+ httpoison_0_8_3,
+ connection_1_0_2
+ }:
+ buildMix ({
+ name = "openstax_keystone";
+ version = "0.1.1";
+ src = fetchHex {
+ pkg = "openstax_keystone";
+ version = "0.1.1";
+ sha256 =
+ "0ca484da2caef05a6aa4ce71c009f249142cc83f504160c179e783e9639c7de9";
+ };
+ beamDeps = [
+ timex_2_1_6
+ poison_1_5_2
+ httpoison_0_8_3
+ connection_1_0_2
+ ];
+
+ meta = {
+ description = ''OpenStack Keystone client'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/mspanc/openstax_keystone";
+ };
+ } // packageOverrides)
+ ) {};
+
+ openstax_keystone = openstax_keystone_0_1_1;
+
+ openstax_swift_0_1_4 = callPackage
+ (
+ {
+ buildMix,
+ packageOverrides ? {},
+ fetchHex,
+ poison_1_5_2,
+ httpoison_0_8_3
+ }:
+ buildMix ({
+ name = "openstax_swift";
+ version = "0.1.4";
+ src = fetchHex {
+ pkg = "openstax_swift";
+ version = "0.1.4";
+ sha256 =
+ "244bf77997b366950ec9852b2a65ab58bb1370e86028ae5efe8f84668384e903";
+ };
+ beamDeps = [ poison_1_5_2 httpoison_0_8_3 ];
+
+ meta = {
+ description = ''OpenStack Swift client'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/mspanc/openstax_swift";
+ };
+ } // packageOverrides)
+ ) {};
+
+ openstax_swift = openstax_swift_0_1_4;
ordered_list_0_1_0 = callPackage
(
@@ -20204,56 +28470,6 @@ let
osc = osc_0_1_1;
- p1_oauth2_0_6_1 = callPackage
- (
- { buildRebar3, packageOverrides ? {}, fetchHex }:
- buildRebar3 ({
- name = "p1_oauth2";
- version = "0.6.1";
- src = fetchHex {
- pkg = "p1_oauth2";
- version = "0.6.1";
- sha256 =
- "304923dcaf1edcc84b7f3f6fab1d5235777604ec3334453cf50de1060300e002";
- };
-
- buildPlugins = [ rebar3_hex ];
-
-
- meta = {
- description = ''Erlang OAuth 2.0 implementation'';
- license = with stdenv.lib.licenses; [ mit asl20 ];
- homepage = "https://github.com/processone/p1_oauth2";
- };
- } // packageOverrides)
- ) {};
-
- p1_oauth2 = p1_oauth2_0_6_1;
-
- p1_utils_1_0_0 = callPackage
- (
- { buildRebar3, packageOverrides ? {}, fetchHex }:
- buildRebar3 ({
- name = "p1_utils";
- version = "1.0.0";
- src = fetchHex {
- pkg = "p1_utils";
- version = "1.0.0";
- sha256 =
- "b2c6316286b071f2f667fb1c59b44fe0c996917515fa93374a4a3264affc5105";
- };
-
- buildPlugins = [ rebar3_hex ];
-
-
- meta = {
- description = ''Erlang utility modules from ProcessOne'';
- license = stdenv.lib.licenses.asl20;
- homepage = "https://github.com/processone/p1_utils";
- };
- } // packageOverrides)
- ) {};
-
pact_0_2_0 = callPackage
(
{ buildMix, packageOverrides ? {}, fetchHex }:
@@ -20278,6 +28494,66 @@ let
pact = pact_0_2_0;
+ pagarmex_0_1_0 = callPackage
+ (
+ {
+ buildMix,
+ packageOverrides ? {},
+ fetchHex,
+ poison_2_1_0,
+ httpoison_0_8_3
+ }:
+ buildMix ({
+ name = "pagarmex";
+ version = "0.1.0";
+ src = fetchHex {
+ pkg = "pagarmex";
+ version = "0.1.0";
+ sha256 =
+ "9678030fc6b9ffe0d312967f85a3dacd4ef70e4b14f6eea7d8c6c3fc3796816e";
+ };
+ beamDeps = [ poison_2_1_0 httpoison_0_8_3 ];
+
+ meta = {
+ description = ''A PagarMe Library for Elixir.'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/gullitmiranda/pagarmex";
+ };
+ } // packageOverrides)
+ ) {};
+
+ pagarmex = pagarmex_0_1_0;
+
+ pagexduty_0_1_0 = callPackage
+ (
+ {
+ buildMix,
+ packageOverrides ? {},
+ fetchHex,
+ httpoison_0_8_3,
+ exjsx_3_1_0
+ }:
+ buildMix ({
+ name = "pagexduty";
+ version = "0.1.0";
+ src = fetchHex {
+ pkg = "pagexduty";
+ version = "0.1.0";
+ sha256 =
+ "7292a63eeb27637ff19f91f50910d2bbbc860e1eb0413aa5a5035ef32b41b232";
+ };
+ beamDeps = [ httpoison_0_8_3 exjsx_3_1_0 ];
+
+ meta = {
+ description = ''A Pagerduty client for Elixir.'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/ride/pagexduty";
+ };
+ } // packageOverrides)
+ ) {};
+
+ pagexduty = pagexduty_0_1_0;
+
paginex_0_0_1 = callPackage
(
{ buildMix, packageOverrides ? {}, fetchHex }:
@@ -20551,6 +28827,61 @@ let
parselix = parselix_0_1_0;
+ parsey_0_0_1 = callPackage
+ (
+ { buildMix, packageOverrides ? {}, fetchHex }:
+ buildMix ({
+ name = "parsey";
+ version = "0.0.1";
+ src = fetchHex {
+ pkg = "parsey";
+ version = "0.0.1";
+ sha256 =
+ "5d2db82a9f9109e3ae95058d7405ff379c88635ef2393dda27d76b13cd28d155";
+ };
+
+ meta = {
+ description = ''A library to parse non-complex nested inputs with
+ a given ruleset.'';
+ license = stdenv.lib.licenses.bsd2;
+ homepage = "https://github.com/ScrimpyCat/Parsey";
+ };
+ } // packageOverrides)
+ ) {};
+
+ parsey = parsey_0_0_1;
+
+ pass_0_3_0 = callPackage
+ (
+ {
+ buildMix,
+ packageOverrides ? {},
+ fetchHex,
+ plug_1_1_5,
+ json_web_token_0_2_5
+ }:
+ buildMix ({
+ name = "pass";
+ version = "0.3.0";
+ src = fetchHex {
+ pkg = "pass";
+ version = "0.3.0";
+ sha256 =
+ "e2d44e9a94ce802b0723cd6e8c149c85c696e8ff3bf939f4c81ebd08938d0496";
+ };
+ beamDeps = [ plug_1_1_5 json_web_token_0_2_5 ];
+
+ meta = {
+ description = ''A simple authentication manager for Plug
+ applications.'';
+ license = stdenv.lib.licenses.asl20;
+ homepage = "https://github.com/elixir-extracts/pass";
+ };
+ } // packageOverrides)
+ ) {};
+
+ pass = pass_0_3_0;
+
pathway_0_1_0 = callPackage
(
{ buildMix, packageOverrides ? {}, fetchHex, poison_1_5_2 }:
@@ -20600,6 +28931,34 @@ let
pattern_tap = pattern_tap_0_2_2;
+ pavlov_0_2_3 = callPackage
+ (
+ { buildMix, packageOverrides ? {}, fetchHex, meck_0_8_4 }:
+ buildMix ({
+ name = "pavlov";
+ version = "0.2.3";
+ src = fetchHex {
+ pkg = "pavlov";
+ version = "0.2.3";
+ sha256 =
+ "4d38e96b7581261a49f00d2046603ad3c9af6d52abd26d16bbf6a0a5a82c9643";
+ };
+ beamDeps = [ meck_0_8_4 ];
+
+ meta = {
+ longDescription = ''Pavlov is a BDD library for your Elixir
+ projects, allowing you to write expressive unit
+ tests that tell the story of how your
+ application behaves. The syntax tries to follow
+ RSpec`s wherever possible.'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/sproutapp/pavlov";
+ };
+ } // packageOverrides)
+ ) {};
+
+ pavlov = pavlov_0_2_3;
+
pbkdf2_2_0_0 = callPackage
(
{ buildRebar3, packageOverrides ? {}, fetchHex }:
@@ -20696,7 +29055,7 @@ let
pdf2htmlex = pdf2htmlex_0_2_0;
- pdf_generator_0_3_1 = callPackage
+ pdf_generator_0_3_3 = callPackage
(
{
buildMix,
@@ -20707,26 +29066,26 @@ let
}:
buildMix ({
name = "pdf_generator";
- version = "0.3.1";
+ version = "0.3.3";
src = fetchHex {
pkg = "pdf_generator";
- version = "0.3.1";
+ version = "0.3.3";
sha256 =
- "d81181dd60db4bfbf121161208c69d2aeabce74e24125a009761e1bf4cab11a7";
+ "1aeb29a3b4821de0f86985e65661c7dedae28d2c924ef42677e1f02093607856";
};
beamDeps = [ porcelain_2_0_1 misc_random_0_2_6 ];
meta = {
- longDescription = ''A simple wrapper for wkhtmltopdf (HTML to
- PDF) and PDFTK (adds in encryption) for use in
- Elixir projects.'';
+ longDescription = ''A wrapper for wkhtmltopdf (HTML to PDF) and
+ PDFTK (adds in encryption) for use in Elixir
+ projects.'';
license = stdenv.lib.licenses.mit;
homepage = "https://github.com/gutschilla/elixir-pdf-generator";
};
} // packageOverrides)
) {};
- pdf_generator = pdf_generator_0_3_1;
+ pdf_generator = pdf_generator_0_3_3;
peon_2_0_0 = callPackage
(
@@ -20751,6 +29110,30 @@ let
peon = peon_2_0_0;
+ permission_ex_0_2_0 = callPackage
+ (
+ { buildMix, packageOverrides ? {}, fetchHex }:
+ buildMix ({
+ name = "permission_ex";
+ version = "0.2.0";
+ src = fetchHex {
+ pkg = "permission_ex";
+ version = "0.2.0";
+ sha256 =
+ "efaf05029f498689b93e254f120bb01dd7bafd205a23e4246b70e97565af097e";
+ };
+
+ meta = {
+ description = ''Permission management and checking library for
+ Elixir.'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/OvermindDL1/permission_ex";
+ };
+ } // packageOverrides)
+ ) {};
+
+ permission_ex = permission_ex_0_2_0;
+
petick_0_0_1 = callPackage
(
{ buildMix, packageOverrides ? {}, fetchHex }:
@@ -20774,17 +29157,17 @@ let
petick = petick_0_0_1;
- pg2pubsub_0_1_12 = callPackage
+ pg2pubsub_0_2_13 = callPackage
(
{ buildMix, packageOverrides ? {}, fetchHex }:
buildMix ({
name = "pg2pubsub";
- version = "0.1.12";
+ version = "0.2.13";
src = fetchHex {
pkg = "pg2pubsub";
- version = "0.1.12";
+ version = "0.2.13";
sha256 =
- "13d653d3f35108b3d83430794127d3df3294f205790ab27ac58e353614487af2";
+ "a2c3ef4dcf031c71c75781ec49236220f405e836f4ee384bdcfbbf8abd6fc4db";
};
meta = {
@@ -20796,28 +29179,61 @@ let
} // packageOverrides)
) {};
- pg2pubsub = pg2pubsub_0_1_12;
+ pg2pubsub = pg2pubsub_0_2_13;
- phasedb_0_0_1 = callPackage
+ pgapp_0_0_1 = callPackage
+ (
+ {
+ buildRebar3,
+ packageOverrides ? {},
+ fetchHex,
+ poolboy_1_5_1,
+ epgsql_3_1_1
+ }:
+ buildRebar3 ({
+ name = "pgapp";
+ version = "0.0.1";
+ src = fetchHex {
+ pkg = "pgapp";
+ version = "0.0.1";
+ sha256 =
+ "5155404f5caa82d6b4f052703cdadddfbc2089e9512bfeef72092933ec1e521d";
+ };
+
+ beamDeps = [ poolboy_1_5_1 epgsql_3_1_1 ];
+
+ meta = {
+ description = ''epgsql application'';
+ license = stdenv.lib.licenses.mit;
+ };
+ } // packageOverrides)
+ ) {};
+
+ pgapp = pgapp_0_0_1;
+
+ phasedb_0_0_2 = callPackage
(
{
buildMix,
packageOverrides ? {},
fetchHex,
+ poison_2_1_0,
inflex_1_5_0,
heap_1_0_0,
calendar_0_12_4
}:
buildMix ({
name = "phasedb";
- version = "0.0.1";
+ version = "0.0.2";
src = fetchHex {
pkg = "phasedb";
- version = "0.0.1";
+ version = "0.0.2";
sha256 =
- "42927c48bc8ab9645ec799b5cb7f1379692bb7ba14eff8a6895dacd98217e22d";
+ "d9d7d5f7317ad0ce20da3b95e26b286d45d91a61a63a684fba42681a5ced68ee";
};
- beamDeps = [ inflex_1_5_0 heap_1_0_0 calendar_0_12_4 ];
+ beamDeps = [
+ poison_2_1_0 inflex_1_5_0 heap_1_0_0 calendar_0_12_4
+ ];
meta = {
description = ''A real-time time series database.'';
@@ -20826,7 +29242,76 @@ let
} // packageOverrides)
) {};
- phasedb = phasedb_0_0_1;
+ phasedb = phasedb_0_0_2;
+
+ phasedb_client_0_0_1 = callPackage
+ (
+ {
+ buildMix,
+ packageOverrides ? {},
+ fetchHex,
+ websocket_client_1_1_0,
+ table_rex_0_8_0,
+ poison_2_1_0,
+ phasedb_0_0_2,
+ calendar_0_12_4
+ }:
+ buildMix ({
+ name = "phasedb_client";
+ version = "0.0.1";
+ src = fetchHex {
+ pkg = "phasedb_client";
+ version = "0.0.1";
+ sha256 =
+ "11019f0c5c2ecbfe578150434f064c84a54752093d004a9cc15296fa054b94fa";
+ };
+ beamDeps = [
+ websocket_client_1_1_0
+ table_rex_0_8_0
+ poison_2_1_0
+ phasedb_0_0_2
+ calendar_0_12_4
+ ];
+
+ meta = {
+ description = ''A real-time time series database - command line
+ client.'';
+
+ };
+ } // packageOverrides)
+ ) {};
+
+ phasedb_client = phasedb_client_0_0_1;
+
+ phasedb_server_0_0_1 = callPackage
+ (
+ {
+ buildMix,
+ packageOverrides ? {},
+ fetchHex,
+ phasedb_0_0_2,
+ cowboy_1_0_4,
+ calendar_0_12_4
+ }:
+ buildMix ({
+ name = "phasedb_server";
+ version = "0.0.1";
+ src = fetchHex {
+ pkg = "phasedb_server";
+ version = "0.0.1";
+ sha256 =
+ "dfde579bb29ed0d805276effb4f7a27d6a302a9615881051fb25eba8cf16da05";
+ };
+ beamDeps = [ phasedb_0_0_2 cowboy_1_0_4 calendar_0_12_4 ];
+
+ meta = {
+ description = ''A real-time time series database.'';
+
+ };
+ } // packageOverrides)
+ ) {};
+
+ phasedb_server = phasedb_server_0_0_1;
phoenix_1_0_4 = callPackage
(
@@ -20835,7 +29320,7 @@ let
packageOverrides ? {},
fetchHex,
poison_1_5_2,
- plug_1_1_3,
+ plug_1_1_5,
cowboy_1_0_4
}:
buildMix ({
@@ -20847,7 +29332,7 @@ let
sha256 =
"591d5f7f3a6f5407e8491a92dc6a2d0b7b94ef4f3526ad8ef4eb82660e6f69f6";
};
- beamDeps = [ poison_1_5_2 plug_1_1_3 cowboy_1_0_4 ];
+ beamDeps = [ poison_1_5_2 plug_1_1_5 cowboy_1_0_4 ];
meta = {
longDescription = ''Productive. Reliable. Fast. A productive web
@@ -20884,6 +29369,30 @@ let
phoenix_generator = phoenix_generator_0_2_1;
+ phoenix_jsroutes_0_0_1 = callPackage
+ (
+ { buildMix, packageOverrides ? {}, fetchHex }:
+ buildMix ({
+ name = "phoenix_jsroutes";
+ version = "0.0.1";
+ src = fetchHex {
+ pkg = "phoenix_jsroutes";
+ version = "0.0.1";
+ sha256 =
+ "f1f94ced7edb338d802290265e25784e32ad9e5f51eea65286f22663d831e44e";
+ };
+
+ meta = {
+ description = ''Brings phoenix router helpers to your javascript
+ code.'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/tiagoengel/phoenix-jsroutes";
+ };
+ } // packageOverrides)
+ ) {};
+
+ phoenix_jsroutes = phoenix_jsroutes_0_0_1;
+
phoenix_pubsub_0_0_1 = callPackage
(
{ buildMix, packageOverrides ? {}, fetchHex }:
@@ -20905,7 +29414,28 @@ let
} // packageOverrides)
) {};
- phoenix_pubsub = phoenix_pubsub_0_0_1;
+ phoenix_pubsub_1_0_0_rc_0 = callPackage
+ (
+ { buildMix, packageOverrides ? {}, fetchHex }:
+ buildMix ({
+ name = "phoenix_pubsub";
+ version = "1.0.0-rc.0";
+ src = fetchHex {
+ pkg = "phoenix_pubsub";
+ version = "1.0.0-rc.0";
+ sha256 =
+ "94765c0866ffe55f76894daa5e5adcc30822d3710718b0c03980db8f093b575f";
+ };
+
+ meta = {
+ description = ''Distributed PubSub and Presence platform'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/phoenixframework/phoenix_pubsub";
+ };
+ } // packageOverrides)
+ ) {};
+
+ phoenix_pubsub = phoenix_pubsub_1_0_0_rc_0;
phoenix_pubsub_postgres_0_0_2 = callPackage
(
@@ -20985,41 +29515,40 @@ let
phoenix_webpack = phoenix_webpack_0_1_0;
- phone_0_0_1 = callPackage
+ phone_0_2_0 = callPackage
(
{ buildMix, packageOverrides ? {}, fetchHex }:
buildMix ({
name = "phone";
- version = "0.0.1";
+ version = "0.2.0";
src = fetchHex {
pkg = "phone";
- version = "0.0.1";
+ version = "0.2.0";
sha256 =
- "9f56ea4a2a3790b779d9bedbe04f63bae4e68c7a57c6331258917edc78f0f8bd";
+ "af836882ba2e1b8feec420d181a15ac3c9a9230f9f7a87753e33e2da8a591d22";
};
meta = {
- description = ''Parser for phone numbers in international
- standard. NOT READY FOR USE.'';
+ description = ''Get useful info from telephone numbers.'';
license = stdenv.lib.licenses.asl20;
homepage = "https://github.com/fcevado/phone";
};
} // packageOverrides)
) {};
- phone = phone_0_0_1;
+ phone = phone_0_2_0;
- phst_transform_0_9_0 = callPackage
+ phst_transform_1_0_0 = callPackage
(
{ buildMix, packageOverrides ? {}, fetchHex }:
buildMix ({
name = "phst_transform";
- version = "0.9.0";
+ version = "1.0.0";
src = fetchHex {
pkg = "phst_transform";
- version = "0.9.0";
+ version = "1.0.0";
sha256 =
- "a5e76cd5b0549a36ec6268644a04366a7672bf449ecb5065dba441faf0c29dc1";
+ "f18683a70d858a9d9459881458f985d13233a3c04e6b0005458a51e560fdfd84";
};
meta = {
@@ -21031,7 +29560,125 @@ let
} // packageOverrides)
) {};
- phst_transform = phst_transform_0_9_0;
+ phst_transform = phst_transform_1_0_0;
+
+ pigeon_0_7_0 = callPackage
+ (
+ {
+ buildMix,
+ packageOverrides ? {},
+ fetchHex,
+ poison_1_5_2,
+ httpoison_0_8_3
+ }:
+ buildMix ({
+ name = "pigeon";
+ version = "0.7.0";
+ src = fetchHex {
+ pkg = "pigeon";
+ version = "0.7.0";
+ sha256 =
+ "16d2745d952553088248185d5371b42a17c9885293f54e7c7871d8a256e182be";
+ };
+ beamDeps = [ poison_1_5_2 httpoison_0_8_3 ];
+
+ meta = {
+ longDescription = ''HTTP2-compliant wrapper for sending iOS
+ (APNS) and Android (GCM) push notifications.'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/codedge-llc/pigeon";
+ };
+ } // packageOverrides)
+ ) {};
+
+ pigeon = pigeon_0_7_0;
+
+ piliponi_0_0_1 = callPackage
+ (
+ { buildMix, packageOverrides ? {}, fetchHex }:
+ buildMix ({
+ name = "piliponi";
+ version = "0.0.1";
+ src = fetchHex {
+ pkg = "piliponi";
+ version = "0.0.1";
+ sha256 =
+ "1729646601f1f12aff154e0401063298ec54bfd745f9137a64f63384f106a645";
+ };
+
+ meta = {
+ description = ''Simple mobile phone formatter for the
+ Philippines'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/wetoolaguer/piliponi";
+ };
+ } // packageOverrides)
+ ) {};
+
+ piliponi = piliponi_0_0_1;
+
+ pinboardixir_0_2_0 = callPackage
+ (
+ {
+ buildMix,
+ packageOverrides ? {},
+ fetchHex,
+ poison_2_1_0,
+ httpoison_0_8_3
+ }:
+ buildMix ({
+ name = "pinboardixir";
+ version = "0.2.0";
+ src = fetchHex {
+ pkg = "pinboardixir";
+ version = "0.2.0";
+ sha256 =
+ "360050f089cd50515bf51a5634420beab54bb7ec3b2063d49d91179182e423d7";
+ };
+ beamDeps = [ poison_2_1_0 httpoison_0_8_3 ];
+
+ meta = {
+ description = ''A Pinboard client in Elixir.'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/ElaWorkshop/pinboardixir";
+ };
+ } // packageOverrides)
+ ) {};
+
+ pinboardixir = pinboardixir_0_2_0;
+
+ pinglix_1_1_1 = callPackage
+ (
+ {
+ buildMix,
+ packageOverrides ? {},
+ fetchHex,
+ timex_0_19_5,
+ poison_1_4_0,
+ plug_1_1_5
+ }:
+ buildMix ({
+ name = "pinglix";
+ version = "1.1.1";
+ src = fetchHex {
+ pkg = "pinglix";
+ version = "1.1.1";
+ sha256 =
+ "bff8166655cc143518c0089aca104755ab188816707fb73a5739dd094f45e895";
+ };
+ beamDeps = [ timex_0_19_5 poison_1_4_0 plug_1_1_5 ];
+
+ meta = {
+ longDescription = ''Plug compatible health check system in Elixir
+ based on
+ https://github.com/jbarnette/pinglish.'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/pvdvreede/pinglix";
+ };
+ } // packageOverrides)
+ ) {};
+
+ pinglix = pinglix_1_1_1;
pinyin_0_1_4 = callPackage
(
@@ -21058,8 +29705,8 @@ let
pipe_0_0_2 = callPackage
(
- { buildRebar3, packageOverrides ? {}, fetchHex }:
- buildRebar3 ({
+ { buildMix, packageOverrides ? {}, fetchHex }:
+ buildMix ({
name = "pipe";
version = "0.0.2";
src = fetchHex {
@@ -21128,6 +29775,53 @@ let
pipe_while_ok = pipe_while_ok_0_0_2;
+ pipette_0_0_4 = callPackage
+ (
+ { buildMix, packageOverrides ? {}, fetchHex, mock_0_1_3 }:
+ buildMix ({
+ name = "pipette";
+ version = "0.0.4";
+ src = fetchHex {
+ pkg = "pipette";
+ version = "0.0.4";
+ sha256 =
+ "8742ea9b115071c3aa7cec4ddacfa161ff63fd647e0491ac442cb118d7198e26";
+ };
+ beamDeps = [ mock_0_1_3 ];
+
+ meta = {
+ description = ''new_data = pipette(data, template)'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/liquidz/pipette";
+ };
+ } // packageOverrides)
+ ) {};
+
+ pipette = pipette_0_0_4;
+
+ pipper_1_0_0 = callPackage
+ (
+ { buildMix, packageOverrides ? {}, fetchHex }:
+ buildMix ({
+ name = "pipper";
+ version = "1.0.0";
+ src = fetchHex {
+ pkg = "pipper";
+ version = "1.0.0";
+ sha256 =
+ "a6b5100f6bab060674e5a828dcfb1b7c12e65739186e54809a23320a5550e149";
+ };
+
+ meta = {
+ description = ''Provides a \"pipe-equals\" operator'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/drewblas/pipper";
+ };
+ } // packageOverrides)
+ ) {};
+
+ pipper = pipper_1_0_0;
+
pkcs7_1_0_2 = callPackage
(
{ buildMix, packageOverrides ? {}, fetchHex }:
@@ -21151,6 +29845,63 @@ let
pkcs7 = pkcs7_1_0_2;
+ plaid_0_0_1 = callPackage
+ (
+ {
+ buildMix,
+ packageOverrides ? {},
+ fetchHex,
+ poison_2_1_0,
+ httpoison_0_8_3
+ }:
+ buildMix ({
+ name = "plaid";
+ version = "0.0.1";
+ src = fetchHex {
+ pkg = "plaid";
+ version = "0.0.1";
+ sha256 =
+ "1168a916f1a2fa5528b7891fe32784a1c415dbd5fc8b05bb9a7571f887f3ee9e";
+ };
+ beamDeps = [ poison_2_1_0 httpoison_0_8_3 ];
+
+ meta = {
+ description = ''Client for Plaid, the finance API.'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/travisjeffery/plaid";
+ };
+ } // packageOverrides)
+ ) {};
+
+ plaid = plaid_0_0_1;
+
+ plantuml_mix_0_0_1 = callPackage
+ (
+ { buildMix, packageOverrides ? {}, fetchHex }:
+ buildMix ({
+ name = "plantuml_mix";
+ version = "0.0.1";
+ src = fetchHex {
+ pkg = "plantuml_mix";
+ version = "0.0.1";
+ sha256 =
+ "6d064ebc3be722642875ea5e2ce63a5678b95d96353c3605f6e83684651947f0";
+ };
+
+ meta = {
+ longDescription = ''Add plantuml task to mix. Execute mix
+ plantuml --help for options. Requires that the
+ env var PLANTUML_JAR points to a valid PlantUML
+ jar file. Requires Java > 1.6 installed on the
+ system.'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/binarytemple/plantuml_mix";
+ };
+ } // packageOverrides)
+ ) {};
+
+ plantuml_mix = plantuml_mix_0_0_1;
+
plist_0_0_4 = callPackage
(
{ buildMix, packageOverrides ? {}, fetchHex }:
@@ -21175,6 +29926,36 @@ let
plist = plist_0_0_4;
+ plivo_0_0_1 = callPackage
+ (
+ {
+ buildMix,
+ packageOverrides ? {},
+ fetchHex,
+ poison_2_1_0,
+ httpoison_0_8_3
+ }:
+ buildMix ({
+ name = "plivo";
+ version = "0.0.1";
+ src = fetchHex {
+ pkg = "plivo";
+ version = "0.0.1";
+ sha256 =
+ "e710b4132ece4f648b772dc540dd1ba7d0fb241fe2f271639cf0764bdb024848";
+ };
+ beamDeps = [ poison_2_1_0 httpoison_0_8_3 ];
+
+ meta = {
+ description = ''An elixir client for Plivo API'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/aarvay/plivo-elixir";
+ };
+ } // packageOverrides)
+ ) {};
+
+ plivo = plivo_0_0_1;
+
plug_0_11_3 = callPackage
(
{ buildMix, packageOverrides ? {}, fetchHex, cowboy_1_0_4 }:
@@ -21336,17 +30117,17 @@ let
} // packageOverrides)
) {};
- plug_1_1_3 = callPackage
+ plug_1_1_5 = callPackage
(
{ buildMix, packageOverrides ? {}, fetchHex, cowboy_1_0_4 }:
buildMix ({
name = "plug";
- version = "1.1.3";
+ version = "1.1.5";
src = fetchHex {
pkg = "plug";
- version = "1.1.3";
+ version = "1.1.5";
sha256 =
- "3063801910afe580891477f7e03c5c7a51592fa790a04f12815a127e4e0e336f";
+ "706871cb3d66c8c44cad4bceaa1f500eba34d5400450b9d63163d9dd4de88d3d";
};
beamDeps = [ cowboy_1_0_4 ];
@@ -21359,7 +30140,7 @@ let
} // packageOverrides)
) {};
- plug = plug_1_1_3;
+ plug = plug_1_1_5;
plug_accept_language_0_1_0 = callPackage
(
@@ -21384,6 +30165,38 @@ let
plug_accept_language = plug_accept_language_0_1_0;
+ plug_accesslog_0_11_0 = callPackage
+ (
+ {
+ buildMix,
+ packageOverrides ? {},
+ fetchHex,
+ tzdata_0_5_8,
+ timex_2_1_6,
+ plug_1_1_5,
+ cowboy_1_0_4
+ }:
+ buildMix ({
+ name = "plug_accesslog";
+ version = "0.11.0";
+ src = fetchHex {
+ pkg = "plug_accesslog";
+ version = "0.11.0";
+ sha256 =
+ "86ee180fd234a3c6d413153764f2a9e2d57171d3e89df2643a276b8760bcc867";
+ };
+ beamDeps = [ tzdata_0_5_8 timex_2_1_6 plug_1_1_5 cowboy_1_0_4 ];
+
+ meta = {
+ description = ''Plug for writing access logs'';
+ license = stdenv.lib.licenses.asl20;
+ homepage = "https://github.com/mneudert/plug_accesslog";
+ };
+ } // packageOverrides)
+ ) {};
+
+ plug_accesslog = plug_accesslog_0_11_0;
+
plug_assign_1_0_0 = callPackage
(
{ buildMix, packageOverrides ? {}, fetchHex, plug_1_0_3 }:
@@ -21412,7 +30225,7 @@ let
plug_cloudflare_1_3_0 = callPackage
(
{
- buildMix, packageOverrides ? {}, fetchHex, plug_1_1_3, cidr_1_0_0
+ buildMix, packageOverrides ? {}, fetchHex, plug_1_1_5, cidr_1_0_0
}:
buildMix ({
name = "plug_cloudflare";
@@ -21423,7 +30236,7 @@ let
sha256 =
"641df2e40267446172c43b2f52dd9a1cbcd1f24dccd101bda29732a13335ab21";
};
- beamDeps = [ plug_1_1_3 cidr_1_0_0 ];
+ beamDeps = [ plug_1_1_5 cidr_1_0_0 ];
meta = {
description = ''Convert CloudFlare`s CF-Connecting-IP header to
@@ -21438,7 +30251,7 @@ let
plug_forwarded_peer_0_0_2 = callPackage
(
- { buildMix, packageOverrides ? {}, fetchHex, plug_1_1_3 }:
+ { buildMix, packageOverrides ? {}, fetchHex, plug_1_1_5 }:
buildMix ({
name = "plug_forwarded_peer";
version = "0.0.2";
@@ -21448,7 +30261,7 @@ let
sha256 =
"c2466e0f0ef75a0d925a957fa50dfcded2c4788fe67857a675411e7184ae5ec3";
};
- beamDeps = [ plug_1_1_3 ];
+ beamDeps = [ plug_1_1_5 ];
meta = {
longDescription = ''Very simple plug which reads
@@ -21493,8 +30306,8 @@ let
buildMix,
packageOverrides ? {},
fetchHex,
- plug_1_1_3,
- geolix_0_9_0
+ plug_1_1_5,
+ geolix_0_10_1
}:
buildMix ({
name = "plug_geoip2";
@@ -21505,7 +30318,7 @@ let
sha256 =
"2a6443040e07e677b0ff7749d2cdf7797a97254466f6740aee11544a18f4993a";
};
- beamDeps = [ plug_1_1_3 geolix_0_9_0 ];
+ beamDeps = [ plug_1_1_5 geolix_0_10_1 ];
meta = {
longDescription = ''Adds geo location to a Plug connection based
@@ -21524,7 +30337,7 @@ let
buildMix,
packageOverrides ? {},
fetchHex,
- plug_1_1_3,
+ plug_1_1_5,
cowboy_1_0_4
}:
buildMix ({
@@ -21536,7 +30349,7 @@ let
sha256 =
"23cb357dad510695b6bb339fdbf5d3fc8581546124f7389d63c9cf723e4ad40f";
};
- beamDeps = [ plug_1_1_3 cowboy_1_0_4 ];
+ beamDeps = [ plug_1_1_5 cowboy_1_0_4 ];
meta = {
description = ''A tiny plug for responding to heartbeat requests
@@ -21551,7 +30364,7 @@ let
plug_media_type_router_0_0_2 = callPackage
(
- { buildMix, packageOverrides ? {}, fetchHex, plug_1_1_3 }:
+ { buildMix, packageOverrides ? {}, fetchHex, plug_1_1_5 }:
buildMix ({
name = "plug_media_type_router";
version = "0.0.2";
@@ -21561,7 +30374,7 @@ let
sha256 =
"e5f72ee4fd1a43321532e3165b3609a1184ba2d576279a1a63e17afba084f12b";
};
- beamDeps = [ plug_1_1_3 ];
+ beamDeps = [ plug_1_1_5 ];
meta = {
longDescription = ''An Elixir Plug for routing requests to other
@@ -21580,7 +30393,7 @@ let
buildMix,
packageOverrides ? {},
fetchHex,
- plug_1_1_3,
+ plug_1_1_5,
cowboy_1_0_4
}:
buildMix ({
@@ -21592,7 +30405,7 @@ let
sha256 =
"8f33202de45d772dd1f416a10d43f8e2daabf937d459e010fa9c850834e1877f";
};
- beamDeps = [ plug_1_1_3 cowboy_1_0_4 ];
+ beamDeps = [ plug_1_1_5 cowboy_1_0_4 ];
meta = {
description = ''Plug for full page response caching'';
@@ -21610,7 +30423,7 @@ let
buildMix,
packageOverrides ? {},
fetchHex,
- plug_1_1_3,
+ plug_1_1_5,
cowboy_1_0_4
}:
buildMix ({
@@ -21622,7 +30435,7 @@ let
sha256 =
"e08041d2ad4884826d8296a5560609df04a936ceca492d094f06458699ac69da";
};
- beamDeps = [ plug_1_1_3 cowboy_1_0_4 ];
+ beamDeps = [ plug_1_1_5 cowboy_1_0_4 ];
meta = {
description = ''Rails compatible Plug session store'';
@@ -21636,9 +30449,39 @@ let
plug_rails_cookie_session_store =
plug_rails_cookie_session_store_0_1_0;
+ plug_range_0_0_2 = callPackage
+ (
+ {
+ buildMix,
+ packageOverrides ? {},
+ fetchHex,
+ plug_1_1_5,
+ cowboy_1_0_4
+ }:
+ buildMix ({
+ name = "plug_range";
+ version = "0.0.2";
+ src = fetchHex {
+ pkg = "plug_range";
+ version = "0.0.2";
+ sha256 =
+ "0dbe3c166e01180913f07a5e4c46cd9427f3e797dd7be515871631b0ed60b9eb";
+ };
+ beamDeps = [ plug_1_1_5 cowboy_1_0_4 ];
+
+ meta = {
+ description = ''An elixir plug that serves HTTP range requests'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "http://github.com/TheSquad/plug_range";
+ };
+ } // packageOverrides)
+ ) {};
+
+ plug_range = plug_range_0_0_2;
+
plug_redirect_0_1_2 = callPackage
(
- { buildMix, packageOverrides ? {}, fetchHex, plug_1_1_3 }:
+ { buildMix, packageOverrides ? {}, fetchHex, plug_1_1_5 }:
buildMix ({
name = "plug_redirect";
version = "0.1.2";
@@ -21648,7 +30491,7 @@ let
sha256 =
"f5fb2653ed39cf843bcc3cb13ba2bf547b1f66ef7c24f963551acd0b8e1c4705";
};
- beamDeps = [ plug_1_1_3 ];
+ beamDeps = [ plug_1_1_5 ];
meta = {
description = ''A plug builder for redirecting requests.'';
@@ -21662,7 +30505,7 @@ let
plug_redirect_https_0_0_6 = callPackage
(
- { buildMix, packageOverrides ? {}, fetchHex, plug_1_1_3 }:
+ { buildMix, packageOverrides ? {}, fetchHex, plug_1_1_5 }:
buildMix ({
name = "plug_redirect_https";
version = "0.0.6";
@@ -21672,7 +30515,7 @@ let
sha256 =
"73f1b3172183005f0fb59a43c50a94a708c06ffcc35a7387967d87e001369068";
};
- beamDeps = [ plug_1_1_3 ];
+ beamDeps = [ plug_1_1_5 ];
meta = {
description = ''Plug to redirect http requests to https requests
@@ -21692,7 +30535,7 @@ let
packageOverrides ? {},
fetchHex,
poison_1_5_2,
- plug_1_1_3
+ plug_1_1_5
}:
buildMix ({
name = "plug_require_header";
@@ -21703,7 +30546,7 @@ let
sha256 =
"b721158316f6d2efd4b24bd05a8a1c06caa699ee25249185c8c4f03f9204b283";
};
- beamDeps = [ poison_1_5_2 plug_1_1_3 ];
+ beamDeps = [ poison_1_5_2 plug_1_1_5 ];
meta = {
description = ''An Elixir Plug for requiring and extracting a
@@ -21718,7 +30561,7 @@ let
plug_response_header_0_2_1 = callPackage
(
- { buildMix, packageOverrides ? {}, fetchHex, plug_1_1_3 }:
+ { buildMix, packageOverrides ? {}, fetchHex, plug_1_1_5 }:
buildMix ({
name = "plug_response_header";
version = "0.2.1";
@@ -21728,7 +30571,7 @@ let
sha256 =
"82fd11fc70d925ed5a608ac13a9f604a80e24827f6603999d6a0f3f123862048";
};
- beamDeps = [ plug_1_1_3 ];
+ beamDeps = [ plug_1_1_5 ];
meta = {
description = ''This plug allows manipulation of HTTP response
@@ -21743,7 +30586,7 @@ let
plug_ribbon_0_2_1 = callPackage
(
- { buildMix, packageOverrides ? {}, fetchHex, plug_1_1_3 }:
+ { buildMix, packageOverrides ? {}, fetchHex, plug_1_1_5 }:
buildMix ({
name = "plug_ribbon";
version = "0.2.1";
@@ -21753,7 +30596,7 @@ let
sha256 =
"34fcbffb6fc3adde6bb167506934ab19787d2fff82b6bf93918e0000159bfe9d";
};
- beamDeps = [ plug_1_1_3 ];
+ beamDeps = [ plug_1_1_5 ];
meta = {
description = ''Injects a ribbon to your web application
@@ -21768,7 +30611,7 @@ let
plug_runtime_1_0_0 = callPackage
(
- { buildMix, packageOverrides ? {}, fetchHex, plug_1_1_3 }:
+ { buildMix, packageOverrides ? {}, fetchHex, plug_1_1_5 }:
buildMix ({
name = "plug_runtime";
version = "1.0.0";
@@ -21778,7 +30621,7 @@ let
sha256 =
"58e213a40fe339771ab93520da56c2108488cfd9e99c7e92def367567ce225a7";
};
- beamDeps = [ plug_1_1_3 ];
+ beamDeps = [ plug_1_1_5 ];
meta = {
longDescription = ''A simple Plug to measure the runtime of a
@@ -21792,41 +30635,6 @@ let
plug_runtime = plug_runtime_1_0_0;
- plug_session_memcached_0_3_3 = callPackage
- (
- {
- buildMix,
- packageOverrides ? {},
- fetchHex,
- plug_1_1_3,
- ex_doc_0_11_4,
- earmark_0_2_1,
- cowboy_1_0_4
- }:
- buildMix ({
- name = "plug_session_memcached";
- version = "0.3.3";
- src = fetchHex {
- pkg = "plug_session_memcached";
- version = "0.3.3";
- sha256 =
- "f9cd5de250dbab0180166c873a50d297036d72f7cbac1a076972444c41f0b4c3";
- };
- beamDeps = [ plug_1_1_3 ex_doc_0_11_4 earmark_0_2_1 cowboy_1_0_4
- ];
-
- meta = {
- description = ''A memcached session store for use with
- Plug.Session'';
- license = stdenv.lib.licenses.mit;
- homepage =
- "https://github.com/gutschilla/plug-session-memcached";
- };
- } // packageOverrides)
- ) {};
-
- plug_session_memcached = plug_session_memcached_0_3_3;
-
plug_session_redis_0_1_0 = callPackage
(
{
@@ -21858,25 +30666,25 @@ let
plug_session_redis = plug_session_redis_0_1_0;
- plug_statsd_0_4_0 = callPackage
+ plug_statsd_0_4_1 = callPackage
(
{
buildMix,
packageOverrides ? {},
fetchHex,
- plug_1_1_3,
+ plug_1_1_5,
ex_statsd_0_5_3
}:
buildMix ({
name = "plug_statsd";
- version = "0.4.0";
+ version = "0.4.1";
src = fetchHex {
pkg = "plug_statsd";
- version = "0.4.0";
+ version = "0.4.1";
sha256 =
- "c618161e5ad93c727be6ce776e7f53542950d97a602691aee2acef2d57dbdea9";
+ "af3158b9d43101e39e22472fcea98180911298c92a735d5ff14dce309e5e30f2";
};
- beamDeps = [ plug_1_1_3 ex_statsd_0_5_3 ];
+ beamDeps = [ plug_1_1_5 ex_statsd_0_5_3 ];
meta = {
description = ''A (Phoenix) plug for sending request counts and
@@ -21887,7 +30695,7 @@ let
} // packageOverrides)
) {};
- plug_statsd = plug_statsd_0_4_0;
+ plug_statsd = plug_statsd_0_4_1;
plug_test_helpers_0_1_0 = callPackage
(
@@ -21925,7 +30733,7 @@ let
buildMix,
packageOverrides ? {},
fetchHex,
- plug_1_1_3,
+ plug_1_1_5,
cowboy_1_0_4
}:
buildMix ({
@@ -21937,7 +30745,7 @@ let
sha256 =
"d473d6b360f5a9189cee2a0f95c06ffb1cb9495a9bb8c729a631c2fa33ed5fc9";
};
- beamDeps = [ plug_1_1_3 cowboy_1_0_4 ];
+ beamDeps = [ plug_1_1_5 cowboy_1_0_4 ];
meta = {
description = ''UTM tracking parameters to cookies'';
@@ -21949,7 +30757,7 @@ let
plug_utm = plug_utm_0_0_2;
- plug_wait1_0_1_4 = callPackage
+ plug_wait1_0_1_5 = callPackage
(
{
buildMix,
@@ -21961,12 +30769,12 @@ let
}:
buildMix ({
name = "plug_wait1";
- version = "0.1.4";
+ version = "0.1.5";
src = fetchHex {
pkg = "plug_wait1";
- version = "0.1.4";
+ version = "0.1.5";
sha256 =
- "4ef36a750c07484e6c6513421e56ad42fa023cb424cbb4cf11a2e686a4fa4be7";
+ "33d45e8c5dba4b9639c115b079581954877184c2c7ab394b80514cfd4199bb15";
};
beamDeps = [ poison_1_3_1 plug_0_13_1 cowboy_1_0_4 ];
@@ -21978,7 +30786,7 @@ let
} // packageOverrides)
) {};
- plug_wait1 = plug_wait1_0_1_4;
+ plug_wait1 = plug_wait1_0_1_5;
plug_x_forwarded_for_0_1_0 = callPackage
(
@@ -22027,25 +30835,25 @@ let
plugin = plugin_0_1_0;
- plugs_0_1_0 = callPackage
+ plugs_0_1_1 = callPackage
(
{
buildMix,
packageOverrides ? {},
fetchHex,
- plug_1_1_3,
+ plug_1_1_5,
cowboy_1_0_4
}:
buildMix ({
name = "plugs";
- version = "0.1.0";
+ version = "0.1.1";
src = fetchHex {
pkg = "plugs";
- version = "0.1.0";
+ version = "0.1.1";
sha256 =
- "8d6cafd3ea0d373795774c9de2a0503433d65d9c2c0d58bd23ba0d9ba3547297";
+ "d11f4122bcd3fd83ac1b442ebf908ebb1f1ad535fa305446c90cf2ce51222c07";
};
- beamDeps = [ plug_1_1_3 cowboy_1_0_4 ];
+ beamDeps = [ plug_1_1_5 cowboy_1_0_4 ];
meta = {
description = ''A collection of Plug middleware for web
@@ -22056,7 +30864,31 @@ let
} // packageOverrides)
) {};
- plugs = plugs_0_1_0;
+ plugs = plugs_0_1_1;
+
+ plugsnag_1_1_0 = callPackage
+ (
+ { buildMix, packageOverrides ? {}, fetchHex, bugsnag_1_2_0 }:
+ buildMix ({
+ name = "plugsnag";
+ version = "1.1.0";
+ src = fetchHex {
+ pkg = "plugsnag";
+ version = "1.1.0";
+ sha256 =
+ "aa3a9e587042f5519d8309fc4cf764a0262eda0da752ddf87c5fcfea176208ad";
+ };
+ beamDeps = [ bugsnag_1_2_0 ];
+
+ meta = {
+ description = ''Bugsnag reporter for Elixir`s Plug'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/jarednorman/plugsnag";
+ };
+ } // packageOverrides)
+ ) {};
+
+ plugsnag = plugsnag_1_1_0;
plumber_girl_0_9_6 = callPackage
(
@@ -22082,34 +30914,113 @@ let
plumber_girl = plumber_girl_0_9_6;
- png_0_1_1 = callPackage
+ pmbag_1_0_0 = callPackage
(
{ buildRebar3, packageOverrides ? {}, fetchHex }:
buildRebar3 ({
- name = "png";
- version = "0.1.1";
+ name = "pmbag";
+ version = "1.0.0";
src = fetchHex {
- pkg = "png";
- version = "0.1.1";
+ pkg = "pmbag";
+ version = "1.0.0";
sha256 =
- "f8d4a17c118dcc16bb18d0fda6e26947001f9312bc6c061d2236b424fc3dd9ea";
+ "9f12262ac93faf29c00e3da5f5836086542fbcfa0539bf733ab3e5cca0d34872";
};
- buildPlugins = [ rebar3_hex ];
-
-
meta = {
- longDescription = ''A pure Erlang library for creating PNG
- images. It can currently create 8 and 16 bit
- RGB, RGB with alpha, indexed, grayscale and
- grayscale with alpha images.'';
- license = stdenv.lib.licenses.mit;
- homepage = "https://github.com/yuce/png";
+ description = ''Erlang Private Mail Bag.'';
+ license = stdenv.lib.licenses.mpl20;
+ homepage = "https://github.com/potatosalad/pmbag";
};
} // packageOverrides)
) {};
- png = png_0_1_1;
+ pmbag = pmbag_1_0_0;
+
+ pobox_1_0_2 = callPackage
+ (
+ { buildRebar3, packageOverrides ? {}, fetchHex }:
+ buildRebar3 ({
+ name = "pobox";
+ version = "1.0.2";
+ src = fetchHex {
+ pkg = "pobox";
+ version = "1.0.2";
+ sha256 =
+ "372090633c2565cd645acf2d1e2354c0791d5a5dc2f74885795b8807d402fe88";
+ };
+
+ meta = {
+ description = ''External buffer processes to protect against
+ mailbox overflow'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/ferd/pobox/";
+ };
+ } // packageOverrides)
+ ) {};
+
+ pobox = pobox_1_0_2;
+
+ pocketeer_0_1_1 = callPackage
+ (
+ {
+ buildMix,
+ packageOverrides ? {},
+ fetchHex,
+ poison_2_1_0,
+ httpotion_2_2_2
+ }:
+ buildMix ({
+ name = "pocketeer";
+ version = "0.1.1";
+ src = fetchHex {
+ pkg = "pocketeer";
+ version = "0.1.1";
+ sha256 =
+ "886367d81a41a7668805e06877aedfa1b9b4f1506ef1b42e95a4b3bf722d8e76";
+ };
+ beamDeps = [ poison_2_1_0 httpotion_2_2_2 ];
+
+ meta = {
+ description = ''An Elixir client for the Pocket API'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://www.github.com/justahero/pocketeer";
+ };
+ } // packageOverrides)
+ ) {};
+
+ pocketeer = pocketeer_0_1_1;
+
+ pocketex_0_1_0 = callPackage
+ (
+ {
+ buildMix,
+ packageOverrides ? {},
+ fetchHex,
+ poison_1_3_1,
+ httpoison_0_8_3
+ }:
+ buildMix ({
+ name = "pocketex";
+ version = "0.1.0";
+ src = fetchHex {
+ pkg = "pocketex";
+ version = "0.1.0";
+ sha256 =
+ "b832df8e3f3102b69892cc5cfab4418de876a6ecc5780805458b9946aa407cbf";
+ };
+ beamDeps = [ poison_1_3_1 httpoison_0_8_3 ];
+
+ meta = {
+ description = ''Pocketex is an Elixir client for the Pocket read
+ later service (getpocket.com) '';
+ license = stdenv.lib.licenses.free;
+ homepage = "https://github.com/essenciary/pocketex";
+ };
+ } // packageOverrides)
+ ) {};
+
+ pocketex = pocketex_0_1_0;
poison_1_3_1 = callPackage
(
@@ -22262,19 +31173,64 @@ let
poker = poker_0_0_2;
- poly1305_0_4_0 = callPackage
+ poloniex_0_0_8 = callPackage
(
- { buildMix, packageOverrides ? {}, fetchHex, chacha20_0_3_2 }:
+ {
+ buildMix,
+ packageOverrides ? {},
+ fetchHex,
+ vex_0_5_5,
+ poison_2_1_0,
+ httpoison_0_8_3,
+ exconstructor_1_0_2
+ }:
+ buildMix ({
+ name = "poloniex";
+ version = "0.0.8";
+ src = fetchHex {
+ pkg = "poloniex";
+ version = "0.0.8";
+ sha256 =
+ "7890a5f26178ec224379fa4160092d55f9098131eaab8711a75ef1fe6808cc83";
+ };
+ beamDeps = [
+ vex_0_5_5
+ poison_2_1_0
+ httpoison_0_8_3
+ exconstructor_1_0_2
+ ];
+
+ meta = {
+ longDescription = ''WIP Poloniex API wrapper for Elixir. Provides
+ access to market data including trading pairs
+ between ETH, BTC, DOGE, LTC and others.'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/cyberpunk-ventures/poloniex_ex";
+ };
+ } // packageOverrides)
+ ) {};
+
+ poloniex = poloniex_0_0_8;
+
+ poly1305_0_4_1 = callPackage
+ (
+ {
+ buildMix,
+ packageOverrides ? {},
+ fetchHex,
+ equivalex_0_1_0,
+ chacha20_0_3_2
+ }:
buildMix ({
name = "poly1305";
- version = "0.4.0";
+ version = "0.4.1";
src = fetchHex {
pkg = "poly1305";
- version = "0.4.0";
+ version = "0.4.1";
sha256 =
- "a31cd3dcc1244033b0981adfe9b2d0766115152ea42ba1c62a8dc93c87f094b7";
+ "b0f804a21e3c1f57cd37b6e439107a1eaf8d7a2404717fb95d21eb3f134973bb";
};
- beamDeps = [ chacha20_0_3_2 ];
+ beamDeps = [ equivalex_0_1_0 chacha20_0_3_2 ];
meta = {
description = ''Poly1305 message authentication'';
@@ -22284,7 +31240,7 @@ let
} // packageOverrides)
) {};
- poly1305 = poly1305_0_4_0;
+ poly1305 = poly1305_0_4_1;
polyglot_0_0_1 = callPackage
(
@@ -22313,7 +31269,7 @@ let
polyline_0_1_0 = callPackage
(
- { buildMix, packageOverrides ? {}, fetchHex, vector_0_1_0 }:
+ { buildMix, packageOverrides ? {}, fetchHex, vector_0_3_0 }:
buildMix ({
name = "polyline";
version = "0.1.0";
@@ -22323,7 +31279,7 @@ let
sha256 =
"6df2ebd1a5f55d6f680924200175bc5473beadd013acec72d201fcec18d31afd";
};
- beamDeps = [ vector_0_1_0 ];
+ beamDeps = [ vector_0_3_0 ];
meta = {
description = ''Encoding and decoding of Polylines'';
@@ -22382,6 +31338,51 @@ let
pool_ring = pool_ring_0_1_5;
+ pool_sup_0_2_2 = callPackage
+ (
+ { buildMix, packageOverrides ? {}, fetchHex, croma_0_4_4 }:
+ buildMix ({
+ name = "pool_sup";
+ version = "0.2.2";
+ src = fetchHex {
+ pkg = "pool_sup";
+ version = "0.2.2";
+ sha256 =
+ "73cebc2ad393a7ef92c6787b8b581051ddc299372d25bc1175d94dee0ec28e90";
+ };
+ beamDeps = [ croma_0_4_4 ];
+
+ meta = {
+ description = ''A supervisor specialized to manage pool of
+ workers'';
+ license = stdenv.lib.licenses.mit;
+ };
+ } // packageOverrides)
+ ) {};
+
+ pool_sup = pool_sup_0_2_2;
+
+ poolboy_1_4_1 = callPackage
+ (
+ { buildRebar3, packageOverrides ? {}, fetchHex }:
+ buildRebar3 ({
+ name = "poolboy";
+ version = "1.4.1";
+ src = fetchHex {
+ pkg = "poolboy";
+ version = "1.4.1";
+ sha256 =
+ "b112f2bfa13010f751ecc013f74af0601eb41315bb0ccfa5eed641d73fbbe899";
+ };
+
+ meta = {
+ description = ''A hunky Erlang worker pool factory'';
+ license = with stdenv.lib.licenses; [ unlicense asl20 ];
+ homepage = "https://github.com/devinus/poolboy";
+ };
+ } // packageOverrides)
+ ) {};
+
poolboy_1_4_2 = callPackage
(
{ buildRebar3, packageOverrides ? {}, fetchHex }:
@@ -22426,6 +31427,58 @@ let
poolboy = poolboy_1_5_1;
+ pooler_1_5_0 = callPackage
+ (
+ { buildRebar3, packageOverrides ? {}, fetchHex }:
+ buildRebar3 ({
+ name = "pooler";
+ version = "1.5.0";
+ src = fetchHex {
+ pkg = "pooler";
+ version = "1.5.0";
+ sha256 =
+ "f493b4b947967fa4250dd1f96e86a5440ecab51da114d2c256cced58ad991908";
+ };
+
+ meta = {
+ description = ''An OTP Process Pool Application'';
+ license = stdenv.lib.licenses.asl20;
+ homepage = "https://github.com/seth/pooler";
+ };
+ } // packageOverrides)
+ ) {};
+
+ pooler = pooler_1_5_0;
+
+ pop3mail_0_1_6 = callPackage
+ (
+ { buildMix, packageOverrides ? {}, fetchHex }:
+ buildMix ({
+ name = "pop3mail";
+ version = "0.1.6";
+ src = fetchHex {
+ pkg = "pop3mail";
+ version = "0.1.6";
+ sha256 =
+ "ca8496c92a3c0caa479836f254980c2af69a66a29e08cea45a164874801c54da";
+ };
+
+ meta = {
+ longDescription = ''Pop3 client to download email (including
+ attachments) from the inbox. Decodes multipart
+ content, quoted-printables, base64 and
+ encoded-words. Uses an Erlang pop3 client with
+ SSL support derived from the epop package. Add
+ this dependency in mix.exs: {:erlpop, github:
+ \"trifork/erlpop\"}'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/nico-amsterdam/pop3mail";
+ };
+ } // packageOverrides)
+ ) {};
+
+ pop3mail = pop3mail_0_1_6;
+
populator_0_4_0 = callPackage
(
{ buildMix, packageOverrides ? {}, fetchHex }:
@@ -22501,10 +31554,33 @@ let
porter = porter_0_0_1;
+ posexional_0_2_1 = callPackage
+ (
+ { buildMix, packageOverrides ? {}, fetchHex }:
+ buildMix ({
+ name = "posexional";
+ version = "0.2.1";
+ src = fetchHex {
+ pkg = "posexional";
+ version = "0.2.1";
+ sha256 =
+ "c3cedc2c99ed10c400be538e558fcb09cdb675d972d3f5deb33d4029b916da82";
+ };
+
+ meta = {
+ description = ''A library to manage positional files'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/primait/posexional";
+ };
+ } // packageOverrides)
+ ) {};
+
+ posexional = posexional_0_2_1;
+
positive_13_3_7 = callPackage
(
- { buildRebar3, packageOverrides ? {}, fetchHex }:
- buildRebar3 ({
+ { buildErlangMk, packageOverrides ? {}, fetchHex }:
+ buildErlangMk ({
name = "positive";
version = "13.3.7";
src = fetchHex {
@@ -22524,35 +31600,36 @@ let
positive = positive_13_3_7;
- posterize_0_10_0 = callPackage
+ posterize_0_11_0 = callPackage
(
{
buildMix,
packageOverrides ? {},
fetchHex,
- postgrex_0_11_1,
- jsx_2_8_0
+ sbroker_0_7_0,
+ postgrex_0_11_1
}:
buildMix ({
name = "posterize";
- version = "0.10.0";
+ version = "0.11.0";
src = fetchHex {
pkg = "posterize";
- version = "0.10.0";
+ version = "0.11.0";
sha256 =
- "3569fd8f8097acb2a49fb23c446d3a8ff57879779866d71929eb356d076e7eb9";
+ "9c6b189d0924788edb42f3fff493caec10c36bc0e457983a33045cc891cf589d";
};
- beamDeps = [ postgrex_0_11_1 jsx_2_8_0 ];
+ beamDeps = [ sbroker_0_7_0 postgrex_0_11_1 ];
meta = {
- description = ''erlang wrapper for postgrex'';
+ description = ''erlang wrapper for the postgrex postgres
+ client'';
license = with stdenv.lib.licenses; [ asl20 mit ];
homepage = "https://github.com/talentdeficit/posterize";
};
} // packageOverrides)
) {};
- posterize = posterize_0_10_0;
+ posterize = posterize_0_11_0;
postgrex_0_11_1 = callPackage
(
@@ -22560,8 +31637,8 @@ let
buildMix,
packageOverrides ? {},
fetchHex,
- decimal_1_1_1,
- db_connection_0_2_4,
+ decimal_1_1_2,
+ db_connection_1_0_0_rc_0,
connection_1_0_2
}:
buildMix ({
@@ -22573,8 +31650,11 @@ let
sha256 =
"f56d47038f4f642cee0f9c40eeea0ef9ba645b7fc77723b4764f282df95baeb8";
};
- beamDeps = [ decimal_1_1_1 db_connection_0_2_4 connection_1_0_2
- ];
+ beamDeps = [
+ decimal_1_1_2
+ db_connection_1_0_0_rc_0
+ connection_1_0_2
+ ];
meta = {
description = ''PostgreSQL driver for Elixir.'';
@@ -22586,31 +31666,9 @@ let
postgrex = postgrex_0_11_1;
- postgrex_0_8_4 = callPackage
- (
- { buildMix, packageOverrides ? {}, fetchHex, decimal_1_1_1 }:
- buildMix ({
- name = "postgrex";
- version = "0.8.4";
- src = fetchHex {
- pkg = "postgrex";
- version = "0.8.4";
- sha256 =
- "19c205c8de0e2e5817f2250100281c58e717cb11ff1bb410bf661ee78c24e79b";
- };
- beamDeps = [ decimal_1_1_1 ];
-
- meta = {
- description = ''PostgreSQL driver for Elixir.'';
- license = stdenv.lib.licenses.asl20;
- homepage = "https://github.com/ericmj/postgrex";
- };
- } // packageOverrides)
- ) {};
-
postgrex_0_9_1 = callPackage
(
- { buildMix, packageOverrides ? {}, fetchHex, decimal_1_1_1 }:
+ { buildMix, packageOverrides ? {}, fetchHex, decimal_1_1_2 }:
buildMix ({
name = "postgrex";
version = "0.9.1";
@@ -22620,7 +31678,7 @@ let
sha256 =
"9c9a4ffca145479b343d7a51730557305425aab69e8d31cc32f348f85996fb5a";
};
- beamDeps = [ decimal_1_1_1 ];
+ beamDeps = [ decimal_1_1_2 ];
meta = {
description = ''PostgreSQL driver for Elixir.'';
@@ -22679,6 +31737,31 @@ let
power_assert = power_assert_0_0_8;
+ ppg_0_1_3 = callPackage
+ (
+ { buildRebar3, packageOverrides ? {}, fetchHex, evel_0_1_1 }:
+ buildRebar3 ({
+ name = "ppg";
+ version = "0.1.3";
+ src = fetchHex {
+ pkg = "ppg";
+ version = "0.1.3";
+ sha256 =
+ "8bbd51b5c1f2e08636839ad6f6151b3ad2a5c46e3fe8bdb1f33f79a2b57d1e13";
+ };
+
+ beamDeps = [ evel_0_1_1 ];
+
+ meta = {
+ description = ''Plumtree based Process Group'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/sile/ppg";
+ };
+ } // packageOverrides)
+ ) {};
+
+ ppg = ppg_0_1_3;
+
pqueue_1_5_1 = callPackage
(
{ buildRebar3, packageOverrides ? {}, fetchHex }:
@@ -22702,17 +31785,17 @@ let
pqueue = pqueue_1_5_1;
- pragmatic_0_1_6 = callPackage
+ pragmatic_0_1_7 = callPackage
(
{ buildMix, packageOverrides ? {}, fetchHex }:
buildMix ({
name = "pragmatic";
- version = "0.1.6";
+ version = "0.1.7";
src = fetchHex {
pkg = "pragmatic";
- version = "0.1.6";
+ version = "0.1.7";
sha256 =
- "e26b1b60d9657a61b6543646817a5d2dff73120bae33fa3de4c60bb356cf49b0";
+ "a86e89bf594108715bf7db70ccb93eb2a020367a9bb6c441ca74d3eb92c35fa3";
};
meta = {
@@ -22725,7 +31808,7 @@ let
} // packageOverrides)
) {};
- pragmatic = pragmatic_0_1_6;
+ pragmatic = pragmatic_0_1_7;
prefecture_jp_0_0_2 = callPackage
(
@@ -22855,17 +31938,40 @@ let
pricing = pricing_0_0_1;
- progress_bar_1_4_0 = callPackage
+ priority_queue_1_0_0 = callPackage
+ (
+ { buildMix, packageOverrides ? {}, fetchHex }:
+ buildMix ({
+ name = "priority_queue";
+ version = "1.0.0";
+ src = fetchHex {
+ pkg = "priority_queue";
+ version = "1.0.0";
+ sha256 =
+ "ba3dc420a5898d863803455c05ad870c6b6f3adb12b50ebea6cd6aeed1b358b7";
+ };
+
+ meta = {
+ description = ''Priority Queue for Elixir. Heap implementation'';
+ license = stdenv.lib.licenses.asl20;
+ homepage = "https://github.com/ewildgoose/elixir_priority_queue";
+ };
+ } // packageOverrides)
+ ) {};
+
+ priority_queue = priority_queue_1_0_0;
+
+ progress_bar_1_5_0 = callPackage
(
{ buildMix, packageOverrides ? {}, fetchHex }:
buildMix ({
name = "progress_bar";
- version = "1.4.0";
+ version = "1.5.0";
src = fetchHex {
pkg = "progress_bar";
- version = "1.4.0";
+ version = "1.5.0";
sha256 =
- "c184bba509ec32f81ee03a596972b84e7e9d04de2ae076a408bd08a7a80e98fa";
+ "36fa99f89b876078a19f9d929dd74a043a5e34bbf8d62cda5d9cd26e2ce94426";
};
meta = {
@@ -22876,7 +31982,114 @@ let
} // packageOverrides)
) {};
- progress_bar = progress_bar_1_4_0;
+ progress_bar = progress_bar_1_5_0;
+
+ project_info_1_0_0 = callPackage
+ (
+ { buildMix, packageOverrides ? {}, fetchHex }:
+ buildMix ({
+ name = "project_info";
+ version = "1.0.0";
+ src = fetchHex {
+ pkg = "project_info";
+ version = "1.0.0";
+ sha256 =
+ "749553b710d363e5b900a6d3d37da7c461b8f7a977c9da814124f5862cf209a0";
+ };
+
+ meta = {
+ longDescription = ''A mix task to get info about the current mix
+ project such as name or version number. Useful
+ to automate tasks using a CI server or a build
+ script.'';
+ license = stdenv.lib.licenses.asl20;
+ homepage = "https://github.com/nubleer/project_info";
+ };
+ } // packageOverrides)
+ ) {};
+
+ project_info = project_info_1_0_0;
+
+ prometheus_0_2_0 = callPackage
+ (
+ { buildRebar3, packageOverrides ? {}, fetchHex }:
+ buildRebar3 ({
+ name = "prometheus";
+ version = "0.2.0";
+ src = fetchHex {
+ pkg = "prometheus";
+ version = "0.2.0";
+ sha256 =
+ "9fbf8aeee723667f86f1d24bbe2562a4db4322ef850d5d6cc353d15c54f64937";
+ };
+
+ meta = {
+ description = ''Prometheus monitoring system and time series
+ database client in Erlang.'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/deadtrickster/prometheus.erl";
+ };
+ } // packageOverrides)
+ ) {};
+
+ prometheus = prometheus_0_2_0;
+
+ prometheus_plugs_0_0_3 = callPackage
+ (
+ {
+ buildMix,
+ packageOverrides ? {},
+ fetchHex,
+ prometheus_0_2_0,
+ plug_1_1_5,
+ cowboy_1_0_4
+ }:
+ buildMix ({
+ name = "prometheus_plugs";
+ version = "0.0.3";
+ src = fetchHex {
+ pkg = "prometheus_plugs";
+ version = "0.0.3";
+ sha256 =
+ "b15e425ba78e1c76368b66b22f5e22d283fa3cff26f3a4d45a2498cb5db6c0ff";
+ };
+ beamDeps = [ prometheus_0_2_0 plug_1_1_5 cowboy_1_0_4 ];
+
+ meta = {
+ description = ''Prometheus monitoring system client Plugs. Http
+ metrics collector and exporter'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/deadtrickster/prometheus-plugs";
+ };
+ } // packageOverrides)
+ ) {};
+
+ prometheus_plugs = prometheus_plugs_0_0_3;
+
+ prop_types_0_0_11 = callPackage
+ (
+ { buildMix, packageOverrides ? {}, fetchHex, tipo_0_0_3 }:
+ buildMix ({
+ name = "prop_types";
+ version = "0.0.11";
+ src = fetchHex {
+ pkg = "prop_types";
+ version = "0.0.11";
+ sha256 =
+ "d786fbef06701e21871f39c9c1bb3354966f24cd606d1b1fd7bff1cc97d2873f";
+ };
+ beamDeps = [ tipo_0_0_3 ];
+
+ meta = {
+ description = ''Property Type validations and checkers for elixir
+ apps'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/bakasho/prop_types";
+ };
+ } // packageOverrides)
+ ) {};
+
+ prop_types = prop_types_0_0_11;
proper_case_0_1_1 = callPackage
(
@@ -22929,19 +32142,25 @@ let
proplist = proplist_1_1_0;
- proto_def_0_0_1 = callPackage
+ proto_def_0_0_4 = callPackage
(
- { buildMix, packageOverrides ? {}, fetchHex, poison_2_1_0 }:
+ {
+ buildMix,
+ packageOverrides ? {},
+ fetchHex,
+ poison_2_1_0,
+ estree_2_3_0
+ }:
buildMix ({
name = "proto_def";
- version = "0.0.1";
+ version = "0.0.4";
src = fetchHex {
pkg = "proto_def";
- version = "0.0.1";
+ version = "0.0.4";
sha256 =
- "0b045cd0f4684c7b0fe8100e136e7b54c2be247423cad741d4d9405e6178a769";
+ "155b17cd62296cc1d5ee0333a87df4b25616a6dff7863a8e7ad219437db5a37e";
};
- beamDeps = [ poison_2_1_0 ];
+ beamDeps = [ poison_2_1_0 estree_2_3_0 ];
meta = {
longDescription = ''ProtoDef compiler for Elixir. (mostly)
@@ -22953,33 +32172,7 @@ let
} // packageOverrides)
) {};
- proto_def = proto_def_0_0_1;
-
- provider_asn1_0_2_1 = callPackage
- (
- { buildRebar3, packageOverrides ? {}, fetchHex }:
- buildRebar3 ({
- name = "provider_asn1";
- version = "0.2.1";
- src = fetchHex {
- pkg = "provider_asn1";
- version = "0.2.1";
- sha256 =
- "1fbf4a1a9711b6308423a213d45dbe409937cdfbad0816491d18aea5d3c44242";
- };
-
- buildPlugins = [ rebar3_hex ];
-
-
- meta = {
- description = ''Compile ASN.1 with Rebar3'';
- license = stdenv.lib.licenses.free;
- homepage = "https://github.com/knusbaum/provider_asn1";
- };
- } // packageOverrides)
- ) {};
-
- provider_asn1 = provider_asn1_0_2_1;
+ proto_def = proto_def_0_0_4;
providers_1_4_1 = callPackage
(
@@ -23029,6 +32222,117 @@ let
providers = providers_1_6_0;
+ proxy_0_0_1 = callPackage
+ (
+ {
+ buildMix,
+ packageOverrides ? {},
+ fetchHex,
+ plug_1_1_5,
+ httpoison_0_8_3,
+ cowboy_1_0_4
+ }:
+ buildMix ({
+ name = "proxy";
+ version = "0.0.1";
+ src = fetchHex {
+ pkg = "proxy";
+ version = "0.0.1";
+ sha256 =
+ "74691b18a0918d6e14df1f254ee9f342a547bc280151a4d88a540839ae75bbae";
+ };
+ beamDeps = [ plug_1_1_5 httpoison_0_8_3 cowboy_1_0_4 ];
+
+ meta = {
+ description = ''Proxy plug for upstream servers'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/chadwpry/elixir-proxy";
+ };
+ } // packageOverrides)
+ ) {};
+
+ proxy = proxy_0_0_1;
+
+ public_suffix_0_3_0 = callPackage
+ (
+ { buildMix, packageOverrides ? {}, fetchHex, idna_2_0_0 }:
+ buildMix ({
+ name = "public_suffix";
+ version = "0.3.0";
+ src = fetchHex {
+ pkg = "public_suffix";
+ version = "0.3.0";
+ sha256 =
+ "ffced61dca1d881ed91b4c6ee675e707bd1dbff14adb48adebf0bebbaeccae48";
+ };
+ beamDeps = [ idna_2_0_0 ];
+
+ meta = {
+ longDescription = ''Operate on domain names using the public
+ suffix rules provided by
+ https://publicsuffix.org/.'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/seomoz/publicsuffix-elixir";
+ };
+ } // packageOverrides)
+ ) {};
+
+ public_suffix = public_suffix_0_3_0;
+
+ publicsuffix_0_0_1 = callPackage
+ (
+ { buildMix, packageOverrides ? {}, fetchHex }:
+ buildMix ({
+ name = "publicsuffix";
+ version = "0.0.1";
+ src = fetchHex {
+ pkg = "publicsuffix";
+ version = "0.0.1";
+ sha256 =
+ "c20351c883ab00a424c6eace4adb23726fbf242240bc63f583f4c07cbe0a824b";
+ };
+
+ meta = {
+ description = ''Domain name parser for Elixir based on the Public
+ Suffix List.'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/weppos/publicsuffix-elixir";
+ };
+ } // packageOverrides)
+ ) {};
+
+ publicsuffix = publicsuffix_0_0_1;
+
+ pubnub_ex_0_0_2 = callPackage
+ (
+ {
+ buildMix,
+ packageOverrides ? {},
+ fetchHex,
+ httpoison_0_8_3,
+ exjsx_3_2_0
+ }:
+ buildMix ({
+ name = "pubnub_ex";
+ version = "0.0.2";
+ src = fetchHex {
+ pkg = "pubnub_ex";
+ version = "0.0.2";
+ sha256 =
+ "83d270cfe2be6728fb96d9145371a87ddc876a97f91cdca2584cc82c2a0b91cb";
+ };
+ beamDeps = [ httpoison_0_8_3 exjsx_3_2_0 ];
+
+ meta = {
+ description = ''A pubsub tool for pubnub.'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/ryuone/pubnub_ex";
+ };
+ } // packageOverrides)
+ ) {};
+
+ pubnub_ex = pubnub_ex_0_0_2;
+
pubsub_0_0_2 = callPackage
(
{ buildMix, packageOverrides ? {}, fetchHex }:
@@ -23052,26 +32356,83 @@ let
pubsub = pubsub_0_0_2;
- qdate_0_4_2 = callPackage
+ pulse_0_1_3 = callPackage
+ (
+ { buildMix, packageOverrides ? {}, fetchHex, sonic_0_1_3 }:
+ buildMix ({
+ name = "pulse";
+ version = "0.1.3";
+ src = fetchHex {
+ pkg = "pulse";
+ version = "0.1.3";
+ sha256 =
+ "8d9ab6b8f5b3e8da2feedb32062b97243bfc8c250ad5bab09fd61944e51e6aa0";
+ };
+ beamDeps = [ sonic_0_1_3 ];
+
+ meta = {
+ longDescription = ''Service registration and discovery library
+ for Elixir. Relies on etcd as an external
+ service registry.'';
+ license = stdenv.lib.licenses.asl20;
+ homepage = "https://github.com/heroiclabs/pulse";
+ };
+ } // packageOverrides)
+ ) {};
+
+ pulse = pulse_0_1_3;
+
+ pusher_0_1_3 = callPackage
+ (
+ {
+ buildMix,
+ packageOverrides ? {},
+ fetchHex,
+ signaturex_1_0_1,
+ httpoison_0_8_3,
+ exjsx_3_2_0
+ }:
+ buildMix ({
+ name = "pusher";
+ version = "0.1.3";
+ src = fetchHex {
+ pkg = "pusher";
+ version = "0.1.3";
+ sha256 =
+ "1443c9652d3a3d03fcfef0e8dca817affa80d1c4e0eb582282af0d9c69a087f3";
+ };
+ beamDeps = [ signaturex_1_0_1 httpoison_0_8_3 exjsx_3_2_0 ];
+
+ meta = {
+ description = ''Pusher HTTP client'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/edgurgel/pusher";
+ };
+ } // packageOverrides)
+ ) {};
+
+ pusher = pusher_0_1_3;
+
+ qdate_0_4_3 = callPackage
(
{
buildRebar3,
packageOverrides ? {},
fetchHex,
- erlware_commons_0_18_0,
+ erlware_commons_0_20_0,
erlang_localtime_1_0_0
}:
buildRebar3 ({
name = "qdate";
- version = "0.4.2";
+ version = "0.4.3";
src = fetchHex {
pkg = "qdate";
- version = "0.4.2";
+ version = "0.4.3";
sha256 =
- "4cb9dcc4418e57e27aff12d0e7d6c6e373a18e130ad66155a3dfdccde848c052";
+ "0bbad4929a7cf2432c832fe45310080776c64973037c5b1aa21bbe05dbc61401";
};
- beamDeps = [ erlware_commons_0_18_0 erlang_localtime_1_0_0 ];
+ beamDeps = [ erlware_commons_0_20_0 erlang_localtime_1_0_0 ];
meta = {
description = ''Simple Date and Timezone handling for Erlang'';
@@ -23081,7 +32442,67 @@ let
} // packageOverrides)
) {};
- qdate = qdate_0_4_2;
+ qdate = qdate_0_4_3;
+
+ qiita_ex_0_0_2 = callPackage
+ (
+ {
+ buildMix,
+ packageOverrides ? {},
+ fetchHex,
+ httpoison_0_8_3,
+ exjsx_3_2_0
+ }:
+ buildMix ({
+ name = "qiita_ex";
+ version = "0.0.2";
+ src = fetchHex {
+ pkg = "qiita_ex";
+ version = "0.0.2";
+ sha256 =
+ "0bb9a5535c0915c426ff13350b907cbd2b455bb99d8bcb8324ffadb6c9bcf1eb";
+ };
+ beamDeps = [ httpoison_0_8_3 exjsx_3_2_0 ];
+
+ meta = {
+ description = ''Qiita API v2 Interface for Elixir'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/ma2gedev/qiita_ex";
+ };
+ } // packageOverrides)
+ ) {};
+
+ qiita_ex = qiita_ex_0_0_2;
+
+ qiniu_0_3_0 = callPackage
+ (
+ {
+ buildMix,
+ packageOverrides ? {},
+ fetchHex,
+ poison_2_1_0,
+ httpoison_0_8_3
+ }:
+ buildMix ({
+ name = "qiniu";
+ version = "0.3.0";
+ src = fetchHex {
+ pkg = "qiniu";
+ version = "0.3.0";
+ sha256 =
+ "f47360528cd289be5f5bb444d289e90f5f330a3230c9386f5a7aecd019a73081";
+ };
+ beamDeps = [ poison_2_1_0 httpoison_0_8_3 ];
+
+ meta = {
+ description = ''Qiniu Resource (Cloud) Storage SDK for Elixir'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/tony612/qiniu";
+ };
+ } // packageOverrides)
+ ) {};
+
+ qiniu = qiniu_0_3_0;
qlc_1_0_0 = callPackage
(
@@ -23108,7 +32529,7 @@ let
quantum_1_7_1 = callPackage
(
- { buildMix, packageOverrides ? {}, fetchHex, timex_2_1_3 }:
+ { buildMix, packageOverrides ? {}, fetchHex, timex_2_1_6 }:
buildMix ({
name = "quantum";
version = "1.7.1";
@@ -23118,7 +32539,7 @@ let
sha256 =
"55a74be6a021816fe78d9a4a9450281e027302806313c9fa6e51694d44106c0a";
};
- beamDeps = [ timex_2_1_3 ];
+ beamDeps = [ timex_2_1_6 ];
meta = {
description = ''Cron-like job scheduler for Elixir.'';
@@ -23153,6 +32574,29 @@ let
quark = quark_1_0_2;
+ queue_0_0_1 = callPackage
+ (
+ { buildMix, packageOverrides ? {}, fetchHex }:
+ buildMix ({
+ name = "queue";
+ version = "0.0.1";
+ src = fetchHex {
+ pkg = "queue";
+ version = "0.0.1";
+ sha256 =
+ "a383d4b4a64e7639e66f314ae9e38e387453bcce6c96173e3d90b497c82bed9b";
+ };
+
+ meta = {
+ description = ''Elixir wrapper for erlang double sided FIFO
+ queue'';
+
+ };
+ } // packageOverrides)
+ ) {};
+
+ queue = queue_0_0_1;
+
queuex_0_2_0 = callPackage
(
{ buildMix, packageOverrides ? {}, fetchHex }:
@@ -23202,28 +32646,6 @@ let
quickrand = quickrand_1_5_1;
- quintana_0_2_0 = callPackage
- (
- { buildRebar3, packageOverrides ? {}, fetchHex, folsom_0_8_3 }:
- buildRebar3 ({
- name = "quintana";
- version = "0.2.0";
- src = fetchHex {
- pkg = "quintana";
- version = "0.2.0";
- sha256 =
- "0646fe332ca3415ca6b0b273b4a5689ec902b9f9004ca62229ded00bd5f64cda";
- };
-
- beamDeps = [ folsom_0_8_3 ];
-
- meta = {
- description = ''Wrapper around some Folsom functions'';
-
- };
- } // packageOverrides)
- ) {};
-
quintana_0_2_1 = callPackage
(
{ buildRebar3, packageOverrides ? {}, fetchHex, folsom_0_8_3 }:
@@ -23323,7 +32745,7 @@ let
rails_4_2_0 = callPackage
(
- { buildMix, packageOverrides ? {}, fetchHex, plug_1_1_3 }:
+ { buildMix, packageOverrides ? {}, fetchHex, plug_1_1_5 }:
buildMix ({
name = "rails";
version = "4.2.0";
@@ -23333,7 +32755,7 @@ let
sha256 =
"731692769aa106a20c87b12dca15336fd1d16a7f02e2615ad76f6ce83a2b0b46";
};
- beamDeps = [ plug_1_1_3 ];
+ beamDeps = [ plug_1_1_5 ];
meta = {
longDescription = ''A plug to get your plug/phoenix applications
@@ -23346,6 +32768,60 @@ let
rails = rails_4_2_0;
+ ralitobu_0_1_0 = callPackage
+ (
+ { buildMix, packageOverrides ? {}, fetchHex }:
+ buildMix ({
+ name = "ralitobu";
+ version = "0.1.0";
+ src = fetchHex {
+ pkg = "ralitobu";
+ version = "0.1.0";
+ sha256 =
+ "c131ef38e9f9e438e7479ba34430c7c874d1646670d6636a8cc98db2f113d075";
+ };
+
+ meta = {
+ description = ''The Rate Limiter with Token Bucket algorithm'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/asaaki/ralitobu";
+ };
+ } // packageOverrides)
+ ) {};
+
+ ralitobu = ralitobu_0_1_0;
+
+ ralitobu_plug_0_1_0 = callPackage
+ (
+ {
+ buildMix,
+ packageOverrides ? {},
+ fetchHex,
+ ralitobu_0_1_0,
+ plug_1_1_5
+ }:
+ buildMix ({
+ name = "ralitobu_plug";
+ version = "0.1.0";
+ src = fetchHex {
+ pkg = "ralitobu_plug";
+ version = "0.1.0";
+ sha256 =
+ "f6c425f0dea74222243ffb3d4aaefd24b5ee0547ec71ac78896f1cfe02821e74";
+ };
+ beamDeps = [ ralitobu_0_1_0 plug_1_1_5 ];
+
+ meta = {
+ description = ''Elixir Plug for Ralitobu, the Rate Limiter with
+ Token Bucket algorithm'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/asaaki/ralitobu_plug";
+ };
+ } // packageOverrides)
+ ) {};
+
+ ralitobu_plug = ralitobu_plug_0_1_0;
+
ranch_1_1_0 = callPackage
(
{ buildErlangMk, packageOverrides ? {}, fetchHex }:
@@ -23438,19 +32914,19 @@ let
range_extras = range_extras_0_1_0;
- rankmatcher_0_1_4 = callPackage
+ rankmatcher_0_1_5 = callPackage
(
{
buildRebar3, packageOverrides ? {}, fetchHex, libsnarlmatch_0_1_7
}:
buildRebar3 ({
name = "rankmatcher";
- version = "0.1.4";
+ version = "0.1.5";
src = fetchHex {
pkg = "rankmatcher";
- version = "0.1.4";
+ version = "0.1.5";
sha256 =
- "ae02bd458ba5c4298809e056668206dac3675c15319780808cbdde48068185c6";
+ "304704fcc294c636d80f030001495ada0e6b66a36c7a2f785964c8f491e3f197";
};
beamDeps = [ libsnarlmatch_0_1_7 ];
@@ -23463,7 +32939,71 @@ let
} // packageOverrides)
) {};
- rankmatcher = rankmatcher_0_1_4;
+ rankmatcher = rankmatcher_0_1_5;
+
+ rapidax_0_0_3 = callPackage
+ (
+ {
+ buildMix,
+ packageOverrides ? {},
+ fetchHex,
+ poison_1_5_2,
+ httpoison_0_8_3,
+ cowboy_1_0_4
+ }:
+ buildMix ({
+ name = "rapidax";
+ version = "0.0.3";
+ src = fetchHex {
+ pkg = "rapidax";
+ version = "0.0.3";
+ sha256 =
+ "9912b79b3d2729465bf66315bd955e031aeb038f05a63faa2dc0414026edb18c";
+ };
+ beamDeps = [ poison_1_5_2 httpoison_0_8_3 cowboy_1_0_4 ];
+
+ meta = {
+ description = ''Rapidly develop your API client - based on
+ rapidash gem'';
+ license = stdenv.lib.licenses.asl20;
+ homepage = "https://github.com/victorlcampos/rapidax";
+ };
+ } // packageOverrides)
+ ) {};
+
+ rapidax = rapidax_0_0_3;
+
+ ratio_1_0_0 = callPackage
+ (
+ { buildMix, packageOverrides ? {}, fetchHex }:
+ buildMix ({
+ name = "ratio";
+ version = "1.0.0";
+ src = fetchHex {
+ pkg = "ratio";
+ version = "1.0.0";
+ sha256 =
+ "bd20f7aff8c5052a59037a66b603df55a7f23db1b23e7f8287bd331c0d9b8e9c";
+ };
+
+ meta = {
+ longDescription = ''This library allows you to use Rational
+ numbers in Elixir, to enable exact calculations
+ with all numbers big and small. It defines the
+ new <|> operator, (optionally) overrides the
+ arithmetic +, -, * and / operators to work with
+ ints, floats and Rational numbers all alike.
+ Floats are also automatically coerced into
+ Rationals whenever possible. And don`t worry: If
+ you don`t like operator-overloading: There are
+ longhand function aliases available too.'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/qqwy/elixir-rational";
+ };
+ } // packageOverrides)
+ ) {};
+
+ ratio = ratio_1_0_0;
rational_0_2_0 = callPackage
(
@@ -23517,36 +33057,240 @@ let
ratx = ratx_0_1_0;
- readme_md_doc_0_1_2 = callPackage
+ ravel_0_0_6 = callPackage
+ (
+ { buildMix, packageOverrides ? {}, fetchHex }:
+ buildMix ({
+ name = "ravel";
+ version = "0.0.6";
+ src = fetchHex {
+ pkg = "ravel";
+ version = "0.0.6";
+ sha256 =
+ "a8fc97393216e2c4429982deefb77b48031ca7feca1f81835451af8977d4932e";
+ };
+
+ meta = {
+ description = ''Extendable validation for Elixir'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/revati/ravel";
+ };
+ } // packageOverrides)
+ ) {};
+
+ ravel = ravel_0_0_6;
+
+ ravenex_0_0_5 = callPackage
(
{
buildMix,
packageOverrides ? {},
fetchHex,
- ex_doc_0_11_4,
- argument_parser_0_1_3
+ uuid_1_1_4,
+ poison_2_1_0,
+ httpoison_0_8_3
}:
buildMix ({
- name = "readme_md_doc";
- version = "0.1.2";
+ name = "ravenex";
+ version = "0.0.5";
src = fetchHex {
- pkg = "readme_md_doc";
- version = "0.1.2";
+ pkg = "ravenex";
+ version = "0.0.5";
sha256 =
- "3353e8598991afbaa8d12344212fdd9c85413d1664b026a7ee1036573c6f536c";
+ "909039771fc414dd95d72d3e57c474f5ba7e593c9a9b448e3849ea68aa9d58cc";
};
- beamDeps = [ ex_doc_0_11_4 argument_parser_0_1_3 ];
+ beamDeps = [ uuid_1_1_4 poison_2_1_0 httpoison_0_8_3 ];
meta = {
- description = ''README.md generation tool for small Elixir
- project'';
- license = stdenv.lib.licenses.asl20;
- homepage = "https://github.com/jisaacstone/readme_md_docgen";
+ longDescription = ''Ravenex is an Elixir client for Sentry.
+ Automatically send error notifications to
+ Sentry. Easily connects with Phoenix through
+ adding a logger or Plug.'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/hayesgm/ravenex";
};
} // packageOverrides)
) {};
- readme_md_doc = readme_md_doc_0_1_2;
+ ravenex = ravenex_0_0_5;
+
+ raxx_0_0_1 = callPackage
+ (
+ {
+ buildMix,
+ packageOverrides ? {},
+ fetchHex,
+ httpoison_0_8_3,
+ cowboy_1_0_4
+ }:
+ buildMix ({
+ name = "raxx";
+ version = "0.0.1";
+ src = fetchHex {
+ pkg = "raxx";
+ version = "0.0.1";
+ sha256 =
+ "b4a2fbb7d4e85932626656d38adb4de95d47bce04255a9c5b7c2562a27f92111";
+ };
+ beamDeps = [ httpoison_0_8_3 cowboy_1_0_4 ];
+
+ meta = {
+ longDescription = ''A Elixir webserver interface, for stateless
+ HTTP. Raxx exists to simplify handling the HTTP
+ request-response cycle. It deliberately does not
+ handle other communication styles that are part
+ of the modern web.'';
+ license = stdenv.lib.licenses.asl20;
+ homepage = "https://github.com/crowdhailer/raxx";
+ };
+ } // packageOverrides)
+ ) {};
+
+ raxx = raxx_0_0_1;
+
+ react_on_elixir_0_0_4 = callPackage
+ (
+ {
+ buildMix,
+ packageOverrides ? {},
+ fetchHex,
+ poolboy_1_5_1,
+ poison_1_5_2
+ }:
+ buildMix ({
+ name = "react_on_elixir";
+ version = "0.0.4";
+ src = fetchHex {
+ pkg = "react_on_elixir";
+ version = "0.0.4";
+ sha256 =
+ "5747938079acd15a39768a77ab013b199d429d725397fcd1e8313abf6eeb7c3b";
+ };
+ beamDeps = [ poolboy_1_5_1 poison_1_5_2 ];
+
+ meta = {
+ description = ''Server render react components from Elixir'';
+ license = stdenv.lib.licenses.unlicense;
+ homepage = "https://github.com/gauravtiwari/react_on_elixir";
+ };
+ } // packageOverrides)
+ ) {};
+
+ react_on_elixir = react_on_elixir_0_0_4;
+
+ read_repos_0_0_1 = callPackage
+ (
+ { buildMix, packageOverrides ? {}, fetchHex }:
+ buildMix ({
+ name = "read_repos";
+ version = "0.0.1";
+ src = fetchHex {
+ pkg = "read_repos";
+ version = "0.0.1";
+ sha256 =
+ "f981ea689d21956e1470d947ba24c5480e808fdf1a9da4cd148e5a4e1247e8b4";
+ };
+
+ meta = {
+ description = ''Simple master-slave library for Ecto.'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/kenta-aktsk/read_repos";
+ };
+ } // packageOverrides)
+ ) {};
+
+ read_repos = read_repos_0_0_1;
+
+ readability_0_5_0 = callPackage
+ (
+ {
+ buildMix,
+ packageOverrides ? {},
+ fetchHex,
+ httpoison_0_8_3,
+ floki_0_8_1
+ }:
+ buildMix ({
+ name = "readability";
+ version = "0.5.0";
+ src = fetchHex {
+ pkg = "readability";
+ version = "0.5.0";
+ sha256 =
+ "82b03705957be376e748029a9ac94a699f5dac072fdef662c46258c83d7e1a3e";
+ };
+ beamDeps = [ httpoison_0_8_3 floki_0_8_1 ];
+
+ meta = {
+ description = ''Readability library for extracting and curating
+ articles.'';
+ license = stdenv.lib.licenses.asl20;
+ homepage = "https://github.com/keepcosmos/readability";
+ };
+ } // packageOverrides)
+ ) {};
+
+ readability = readability_0_5_0;
+
+ readit_0_0_3 = callPackage
+ (
+ {
+ buildMix,
+ packageOverrides ? {},
+ fetchHex,
+ poison_2_1_0,
+ httpoison_0_8_3
+ }:
+ buildMix ({
+ name = "readit";
+ version = "0.0.3";
+ src = fetchHex {
+ pkg = "readit";
+ version = "0.0.3";
+ sha256 =
+ "a3f99c65e9ef62c625c81150735b7456db71e350cf892ee1119d3839cfab361e";
+ };
+ beamDeps = [ poison_2_1_0 httpoison_0_8_3 ];
+
+ meta = {
+ description = ''A Simple Read-Only Reddit API Client'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/adamzaninovich/readit";
+ };
+ } // packageOverrides)
+ ) {};
+
+ readit = readit_0_0_3;
+
+ reagent_0_1_9 = callPackage
+ (
+ {
+ buildMix,
+ packageOverrides ? {},
+ fetchHex,
+ socket_0_3_4,
+ exts_0_3_1
+ }:
+ buildMix ({
+ name = "reagent";
+ version = "0.1.9";
+ src = fetchHex {
+ pkg = "reagent";
+ version = "0.1.9";
+ sha256 =
+ "c76c57437dff9d46fcc617a2c2ae9d87bef1c3619c2e6da84fa0bd2392591e5b";
+ };
+ beamDeps = [ socket_0_3_4 exts_0_3_1 ];
+
+ meta = {
+ description = ''You need more reagents to conjure this server'';
+ license = stdenv.lib.licenses.wtfpl;
+ homepage = "https://github.com/meh/reagent";
+ };
+ } // packageOverrides)
+ ) {};
+
+ reagent = reagent_0_1_9;
reap_0_1_3 = callPackage
(
@@ -23600,17 +33344,17 @@ let
reaxive = reaxive_0_1_0;
- rebar3_appup_plugin_1_0_0 = callPackage
+ rebar3_appup_plugin_1_1_1 = callPackage
(
{ buildRebar3, packageOverrides ? {}, fetchHex }:
buildRebar3 ({
name = "rebar3_appup_plugin";
- version = "1.0.0";
+ version = "1.1.1";
src = fetchHex {
pkg = "rebar3_appup_plugin";
- version = "1.0.0";
+ version = "1.1.1";
sha256 =
- "8211e7cf4f251cdd3c324864e6e090d89a9edb58d019f4cdb7e1084cc6a4b9d7";
+ "ea6d33c962770187021c528d0472a4f0b123c4adaf3242afb33465b796a34497";
};
meta = {
@@ -23621,7 +33365,7 @@ let
} // packageOverrides)
) {};
- rebar3_appup_plugin = rebar3_appup_plugin_1_0_0;
+ rebar3_appup_plugin = rebar3_appup_plugin_1_1_1;
rebar3_asn1_compiler_1_0_0 = callPackage
(
@@ -23646,2423 +33390,6 @@ let
rebar3_asn1_compiler = rebar3_asn1_compiler_1_0_0;
- rebar3_cuttlefish_0_10_0 = callPackage
- (
- {
- buildRebar3, packageOverrides ? {}, fetchHex, cuttlefish_2_0_7
- }:
- buildRebar3 ({
- name = "rebar3_cuttlefish";
- version = "0.10.0";
- src = fetchHex {
- pkg = "rebar3_cuttlefish";
- version = "0.10.0";
- sha256 =
- "e19a7393b09f2ed35e6ebbac392290d6ff1428e6d8573eac9ce49684b324b6e0";
- };
-
- beamDeps = [ cuttlefish_2_0_7 ];
-
- meta = {
- description = ''A rebar plugin'';
- license = stdenv.lib.licenses.apsl20;
- homepage = "https://github.com/tsloughter/rebar3_cuttlefish";
- };
- } // packageOverrides)
- ) {};
-
- rebar3_cuttlefish = rebar3_cuttlefish_0_10_0;
-
- rebar3_diameter_compiler_0_3_1 = callPackage
- (
- { buildRebar3, packageOverrides ? {}, fetchHex }:
- buildRebar3 ({
- name = "rebar3_diameter_compiler";
- version = "0.3.1";
- src = fetchHex {
- pkg = "rebar3_diameter_compiler";
- version = "0.3.1";
- sha256 =
- "c5965e3810ccf9ef9ba9185a81fe569ef6e9f3a9e546e99c5e900736b0c39274";
- };
-
- meta = {
- description = ''Compile diameter .dia files'';
- license = stdenv.lib.licenses.mit;
- homepage =
- "https://github.com/carlosedp/rebar3_diameter_compiler";
- };
- } // packageOverrides)
- ) {};
-
- rebar3_diameter_compiler = rebar3_diameter_compiler_0_3_1;
-
- rebar3_elixirc_0_1_0 = callPackage
- (
- { buildRebar3, packageOverrides ? {}, fetchHex }:
- buildRebar3 ({
- name = "rebar3_elixirc";
- version = "0.1.0";
- src = fetchHex {
- pkg = "rebar3_elixirc";
- version = "0.1.0";
- sha256 =
- "1c6ae367737306beefa0891d60cabf0357b85fcf472a2808c3e2295882f6ead8";
- };
-
- meta = {
- description = ''A rebar plugin'';
- license = stdenv.lib.licenses.bsd3;
- homepage = "https://github.com/tsloughter/rebar3_elixirc";
- };
- } // packageOverrides)
- ) {};
-
- rebar3_elixirc = rebar3_elixirc_0_1_0;
-
- rebar3_hex_1_19_0 = callPackage
- (
- { buildRebar3, packageOverrides ? {}, fetchHex }:
- buildRebar3 ({
- name = "rebar3_hex";
- version = "1.19.0";
- src = fetchHex {
- pkg = "rebar3_hex";
- version = "1.19.0";
- sha256 =
- "b7c291d742e25eeae5dc5bd97e5b0a8987dab17da65054f757311ad90b16b73e";
- };
-
- meta = {
- description = ''Hex.pm plugin for rebar3'';
- license = stdenv.lib.licenses.mit;
- homepage = "https://github.com/tsloughter/rebar3_hex";
- };
- } // packageOverrides)
- ) {};
-
- rebar3_hex = rebar3_hex_1_19_0;
-
- rebar3_idl_compiler_0_3_0 = callPackage
- (
- { buildRebar3, packageOverrides ? {}, fetchHex }:
- buildRebar3 ({
- name = "rebar3_idl_compiler";
- version = "0.3.0";
- src = fetchHex {
- pkg = "rebar3_idl_compiler";
- version = "0.3.0";
- sha256 =
- "31ba95205c40b990cb3c49abb397abc47b4d5f9c402db83f9daebbc44e69789d";
- };
-
- meta = {
- description = ''Rebar3 IDL Compiler'';
-
- homepage = "https://github.com/sebastiw/rebar3_idl_compiler";
- };
- } // packageOverrides)
- ) {};
-
- rebar3_idl_compiler = rebar3_idl_compiler_0_3_0;
-
- rebar3_neotoma_plugin_0_2_0 = callPackage
- (
- { buildRebar3, packageOverrides ? {}, fetchHex, neotoma_1_7_3 }:
- buildRebar3 ({
- name = "rebar3_neotoma_plugin";
- version = "0.2.0";
- src = fetchHex {
- pkg = "rebar3_neotoma_plugin";
- version = "0.2.0";
- sha256 =
- "c0ebbdb08c017cac90c7d3310a9bd4a5088a46abd4e2fef9e9a9805a657396b8";
- };
-
- beamDeps = [ neotoma_1_7_3 ];
-
- meta = {
- description = ''Neotoma rebar plugin'';
- license = stdenv.lib.licenses.apsl20;
- homepage =
- "https://github.com/zamotivator/rebar3_neotoma_plugin";
- };
- } // packageOverrides)
- ) {};
-
- rebar3_neotoma_plugin = rebar3_neotoma_plugin_0_2_0;
-
- rebar3_vendor_0_1_0 = callPackage
- (
- { buildRebar3, packageOverrides ? {}, fetchHex }:
- buildRebar3 ({
- name = "rebar3_vendor";
- version = "0.1.0";
- src = fetchHex {
- pkg = "rebar3_vendor";
- version = "0.1.0";
- sha256 =
- "db0c9623e1c45eda4daa04752768d580682a827a314a548e5fd61ffcf950b301";
- };
-
- meta = {
- description = ''Rebar3 plugin for vendoring dependencies.'';
- license = stdenv.lib.licenses.apsl20;
- homepage = "http://github.com/tsloughter/rebar3_vendor";
- };
- } // packageOverrides)
- ) {};
-
- rebar3_vendor = rebar3_vendor_0_1_0;
-
- rebar_alias_0_1_0 = callPackage
- (
- { buildRebar3, packageOverrides ? {}, fetchHex }:
- buildRebar3 ({
- name = "rebar_alias";
- version = "0.1.0";
- src = fetchHex {
- pkg = "rebar_alias";
- version = "0.1.0";
- sha256 =
- "59fb42b39964af3a29ebe94c11247f618dd4d5e4e1a69cfaffabbed03ccff70f";
- };
-
- meta = {
- description = ''A rebar plugin'';
-
- };
- } // packageOverrides)
- ) {};
-
- rebar_alias = rebar_alias_0_1_0;
-
- rebar_erl_vsn_0_1_0 = callPackage
- (
- { buildRebar3, packageOverrides ? {}, fetchHex }:
- buildRebar3 ({
- name = "rebar_erl_vsn";
- version = "0.1.0";
- src = fetchHex {
- pkg = "rebar_erl_vsn";
- version = "0.1.0";
- sha256 =
- "7cf1e2e85a80785a4e4e1529a2c837dbd2d540214cf791214e56f931e5e9865d";
- };
-
- meta = {
- description = ''defines for erlang versions'';
- license = stdenv.lib.licenses.mit;
- };
- } // packageOverrides)
- ) {};
-
- rebar_erl_vsn = rebar_erl_vsn_0_1_0;
-
- rebind_0_1_3 = callPackage
- (
- { buildMix, packageOverrides ? {}, fetchHex }:
- buildMix ({
- name = "rebind";
- version = "0.1.3";
- src = fetchHex {
- pkg = "rebind";
- version = "0.1.3";
- sha256 =
- "043322759e646ef255e91440d275573b70d9ac6bdf10988ec976ddcf1baf99c3";
- };
-
- meta = {
- description = ''rebind parse transform for erlang'';
- license = stdenv.lib.licenses.mit;
- homepage = "https://github.com/camshaft/rebind";
- };
- } // packageOverrides)
- ) {};
-
- rebind = rebind_0_1_3;
-
- recon_2_2_1 = callPackage
- (
- { buildRebar3, packageOverrides ? {}, fetchHex }:
- buildRebar3 ({
- name = "recon";
- version = "2.2.1";
- src = fetchHex {
- pkg = "recon";
- version = "2.2.1";
- sha256 =
- "6c548ad0f4916495a78977674a251847869f85b5125b7c2a44da3178955adfd1";
- };
-
- meta = {
- description = ''Diagnostic tools for production use'';
- license = stdenv.lib.licenses.bsd3;
- homepage = "https://github.com/ferd/recon/";
- };
- } // packageOverrides)
- ) {};
-
- recon = recon_2_2_1;
-
- red_0_0_5 = callPackage
- (
- { buildMix, packageOverrides ? {}, fetchHex, exredis_0_2_3 }:
- buildMix ({
- name = "red";
- version = "0.0.5";
- src = fetchHex {
- pkg = "red";
- version = "0.0.5";
- sha256 =
- "191b394672817e1ef955cc9b99bd26c61daab9bbbbc089825e7957e92c0eba60";
- };
- beamDeps = [ exredis_0_2_3 ];
-
- meta = {
- longDescription = ''Red is an Elixir library that uses Redis to
- persist relationships between objects, like a
- graph.'';
- license = stdenv.lib.licenses.asl20;
- homepage = "https://github.com/rodrigues/red";
- };
- } // packageOverrides)
- ) {};
-
- red = red_0_0_5;
-
- red_black_tree_1_2_0 = callPackage
- (
- { buildMix, packageOverrides ? {}, fetchHex }:
- buildMix ({
- name = "red_black_tree";
- version = "1.2.0";
- src = fetchHex {
- pkg = "red_black_tree";
- version = "1.2.0";
- sha256 =
- "1e8e7b85d075e249f9384ba0fcd2aacbff3697a5cb3cb5c9838c86f762b79725";
- };
-
- meta = {
- description = ''Red-Black trees: an ordered key-value store with
- O(log(N)) performance'';
- license = stdenv.lib.licenses.mit;
- homepage = "https://github.com/SenecaSystems/red_black_tree";
- };
- } // packageOverrides)
- ) {};
-
- red_black_tree = red_black_tree_1_2_0;
-
- redis_pool_0_2_3 = callPackage
- (
- {
- buildMix,
- packageOverrides ? {},
- fetchHex,
- poolboy_1_5_1,
- eredis_1_0_8
- }:
- buildMix ({
- name = "redis_pool";
- version = "0.2.3";
- src = fetchHex {
- pkg = "redis_pool";
- version = "0.2.3";
- sha256 =
- "e30620f1376b516fb0ccbb40b0f1097e23a21c5676b1cd3fe9fe89fb9f655339";
- };
- beamDeps = [ poolboy_1_5_1 eredis_1_0_8 ];
-
- meta = {
- description = ''Redis pool for Elixir. Build on top of eredis and
- poolboy.'';
- license = stdenv.lib.licenses.mit;
- homepage = "https://github.com/le0pard/redis_pool";
- };
- } // packageOverrides)
- ) {};
-
- redis_pool = redis_pool_0_2_3;
-
- redis_poolex_0_0_5 = callPackage
- (
- {
- buildMix,
- packageOverrides ? {},
- fetchHex,
- poolboy_1_5_1,
- exredis_0_2_3
- }:
- buildMix ({
- name = "redis_poolex";
- version = "0.0.5";
- src = fetchHex {
- pkg = "redis_poolex";
- version = "0.0.5";
- sha256 =
- "aec40aa6807c6629a20657af502073849263bc35385abbcbb13748aaf8c995b6";
- };
- beamDeps = [ poolboy_1_5_1 exredis_0_2_3 ];
-
- meta = {
- description = ''Redis connection pool using poolboy and exredis
- libraries'';
- license = stdenv.lib.licenses.mit;
- homepage = "https://github.com/oivoodoo/redis_poolex";
- };
- } // packageOverrides)
- ) {};
-
- redis_poolex = redis_poolex_0_0_5;
-
- redix_0_3_6 = callPackage
- (
- { buildMix, packageOverrides ? {}, fetchHex, connection_1_0_2 }:
- buildMix ({
- name = "redix";
- version = "0.3.6";
- src = fetchHex {
- pkg = "redix";
- version = "0.3.6";
- sha256 =
- "6c7e3d6bf904eeff99232d28832d3234e4309179dc11516829dd672c8a98a663";
- };
- beamDeps = [ connection_1_0_2 ];
-
- meta = {
- description = ''Superfast, pipelined, resilient Redis driver for
- Elixir.'';
- license = stdenv.lib.licenses.mit;
- homepage = "https://github.com/whatyouhide/redix";
- };
- } // packageOverrides)
- ) {};
-
- redix = redix_0_3_6;
-
- redo_2_0_1 = callPackage
- (
- { buildRebar3, packageOverrides ? {}, fetchHex }:
- buildRebar3 ({
- name = "redo";
- version = "2.0.1";
- src = fetchHex {
- pkg = "redo";
- version = "2.0.1";
- sha256 =
- "f7b2be8c825ec34413c54d8f302cc935ce4ecac8421ae3914c5dadd816dcb1e6";
- };
-
- meta = {
- description = ''Pipelined Redis Erlang Driver'';
- license = stdenv.lib.licenses.mit;
- homepage = "https://github.com/heroku/redo";
- };
- } // packageOverrides)
- ) {};
-
- redo = redo_2_0_1;
-
- ref_inspector_0_8_0 = callPackage
- (
- { buildMix, packageOverrides ? {}, fetchHex, poolboy_1_5_1 }:
- buildMix ({
- name = "ref_inspector";
- version = "0.8.0";
- src = fetchHex {
- pkg = "ref_inspector";
- version = "0.8.0";
- sha256 =
- "3bef725ae702cfd9724fb1adabf1210740a15d6861feab01d13ccb9007f9a634";
- };
- beamDeps = [ poolboy_1_5_1 ];
-
- meta = {
- description = ''Referer parser library'';
- license = stdenv.lib.licenses.asl20;
- homepage = "https://github.com/elixytics/ref_inspector";
- };
- } // packageOverrides)
- ) {};
-
- ref_inspector = ref_inspector_0_8_0;
-
- regdom_0_0_1 = callPackage
- (
- { buildMix, packageOverrides ? {}, fetchHex }:
- buildMix ({
- name = "regdom";
- version = "0.0.1";
- src = fetchHex {
- pkg = "regdom";
- version = "0.0.1";
- sha256 =
- "845cdc5c60e50bac9684fa762ecd42627a84eedf96c7f554fceb0d8f3bfc86bd";
- };
-
- meta = {
- description = ''elixir port of regdom-lib'';
- license = stdenv.lib.licenses.asl20;
- homepage = "https://github.com/adqio/regdom-lib";
- };
- } // packageOverrides)
- ) {};
-
- regdom = regdom_0_0_1;
-
- relflow_1_0_5 = callPackage
- (
- { buildRebar3, packageOverrides ? {}, fetchHex }:
- buildRebar3 ({
- name = "relflow";
- version = "1.0.5";
- src = fetchHex {
- pkg = "relflow";
- version = "1.0.5";
- sha256 =
- "7a991b7e5e390f1cdb16dd0cbb9327bd70ce785e6cebcb6ea25a6693fd836b18";
- };
-
- buildPlugins = [ rebar3_hex ];
-
-
- meta = {
- description = ''Rebar3 release workflow plugin'';
- license = stdenv.lib.licenses.apsl20;
- };
- } // packageOverrides)
- ) {};
-
- relflow = relflow_1_0_5;
-
- relief_0_0_1 = callPackage
- (
- { buildMix, packageOverrides ? {}, fetchHex }:
- buildMix ({
- name = "relief";
- version = "0.0.1";
- src = fetchHex {
- pkg = "relief";
- version = "0.0.1";
- sha256 =
- "81c51cdf1fbaa7654da74d4ac1831b0d79504affd7b1fbe9d6f16ce701288c50";
- };
-
- meta = {
- description = ''A collection of Elixir Stream oriented relief
- mechanisms.'';
- license = stdenv.lib.licenses.asl20;
- homepage = "https://github.com/voidlock/relief";
- };
- } // packageOverrides)
- ) {};
-
- relief = relief_0_0_1;
-
- relocker_0_0_8 = callPackage
- (
- { buildMix, packageOverrides ? {}, fetchHex, exredis_0_2_3 }:
- buildMix ({
- name = "relocker";
- version = "0.0.8";
- src = fetchHex {
- pkg = "relocker";
- version = "0.0.8";
- sha256 =
- "e5678d5fe1795384c672a15a80bf91e3007683e5d22bc523eed634635e89bf4b";
- };
- beamDeps = [ exredis_0_2_3 ];
-
- meta = {
- description = ''A library for holding a lock in Redis.'';
- license = stdenv.lib.licenses.mit;
- homepage = "https://github.com/grandCru/relocker";
- };
- } // packageOverrides)
- ) {};
-
- relocker = relocker_0_0_8;
-
- reltool_util_1_5_1 = callPackage
- (
- { buildRebar3, packageOverrides ? {}, fetchHex }:
- buildRebar3 ({
- name = "reltool_util";
- version = "1.5.1";
- src = fetchHex {
- pkg = "reltool_util";
- version = "1.5.1";
- sha256 =
- "746e16871afdcf85d8a115389193c8d660d0df1d26d6ac700590e0ad252646b1";
- };
-
- meta = {
- description = ''Erlang reltool utility functionality
- application'';
- license = stdenv.lib.licenses.bsd3;
- homepage = "https://github.com/okeuday/reltool_util";
- };
- } // packageOverrides)
- ) {};
-
- reltool_util = reltool_util_1_5_1;
-
- relx_3_18_0 = callPackage
- (
- {
- buildRebar3,
- packageOverrides ? {},
- fetchHex,
- providers_1_6_0,
- getopt_0_8_2,
- erlware_commons_0_19_0,
- cf_0_2_1,
- bbmustache_1_0_4
- }:
- buildRebar3 ({
- name = "relx";
- version = "3.18.0";
- src = fetchHex {
- pkg = "relx";
- version = "3.18.0";
- sha256 =
- "e76e0446b8d1b113f2b7dcc713f032ccdf1dbda33d76edfeb19c2b6b686dcad7";
- };
-
- beamDeps = [
- providers_1_6_0
- getopt_0_8_2
- erlware_commons_0_19_0
- cf_0_2_1
- bbmustache_1_0_4
- ];
-
- meta = {
- description = ''Release assembler for Erlang/OTP Releases'';
- license = stdenv.lib.licenses.apsl20;
- homepage = "https://github.com/erlware/relx";
- };
- } // packageOverrides)
- ) {};
-
- relx = relx_3_18_0;
-
- relx_3_3_2 = callPackage
- (
- {
- buildRebar3,
- packageOverrides ? {},
- fetchHex,
- providers_1_4_1,
- getopt_0_8_2,
- erlware_commons_0_15_0,
- bbmustache_1_0_3
- }:
- buildRebar3 ({
- name = "relx";
- version = "3.3.2";
- src = fetchHex {
- pkg = "relx";
- version = "3.3.2";
- sha256 =
- "4c97df0ceb82890b3612b9c30e8d865e3d738fc69186bc94da0f75f619f7195a";
- };
-
- beamDeps = [
- providers_1_4_1
- getopt_0_8_2
- erlware_commons_0_15_0
- bbmustache_1_0_3
- ];
-
- meta = {
- description = ''Release assembler for Erlang/OTP Releases'';
- license = stdenv.lib.licenses.apsl20;
- homepage = "https://github.com/erlware/relx";
- };
- } // packageOverrides)
- ) {};
-
- relx_3_5_0 = callPackage
- (
- {
- buildRebar3,
- packageOverrides ? {},
- fetchHex,
- providers_1_4_1,
- getopt_0_8_2,
- erlware_commons_0_15_0,
- bbmustache_1_0_3
- }:
- buildRebar3 ({
- name = "relx";
- version = "3.5.0";
- src = fetchHex {
- pkg = "relx";
- version = "3.5.0";
- sha256 =
- "a8cbf529702024f56d03d43349a5aafac55a6aa1b2ecf7bd3e8cc61e72a858a1";
- };
-
- beamDeps = [
- providers_1_4_1
- getopt_0_8_2
- erlware_commons_0_15_0
- bbmustache_1_0_3
- ];
-
- meta = {
- description = ''Release assembler for Erlang/OTP Releases'';
- license = stdenv.lib.licenses.apsl20;
- homepage = "https://github.com/erlware/relx";
- };
- } // packageOverrides)
- ) {};
-
- remix_0_0_2 = callPackage
- (
- { buildMix, packageOverrides ? {}, fetchHex }:
- buildMix ({
- name = "remix";
- version = "0.0.2";
- src = fetchHex {
- pkg = "remix";
- version = "0.0.2";
- sha256 =
- "5f5555646ed4fca83fab8620735150aa0bc408c5a17a70d28cfa7086bc6f497c";
- };
-
- meta = {
- description = ''Recompiles mix projects on any change to the lib
- directory.'';
- license = stdenv.lib.licenses.asl20;
- homepage = "https://github.com/AgilionApps/remix";
- };
- } // packageOverrides)
- ) {};
-
- remix = remix_0_0_2;
-
- remodel_0_0_1 = callPackage
- (
- { buildMix, packageOverrides ? {}, fetchHex }:
- buildMix ({
- name = "remodel";
- version = "0.0.1";
- src = fetchHex {
- pkg = "remodel";
- version = "0.0.1";
- sha256 =
- "f88edf81e99f7474792e71f5ab61155d1a031484565badebb8a15b0fe15b5207";
- };
-
- meta = {
- longDescription = ''Remodel is an Elixir presenter package used
- to transform data structures. This is especially
- useful when a desired representation doesn`t
- match the schema defined within the database.
- '';
- license = stdenv.lib.licenses.asl20;
- homepage = "https://github.com/stavro/remodel";
- };
- } // packageOverrides)
- ) {};
-
- remodel = remodel_0_0_1;
-
- repoquery_0_0_2 = callPackage
- (
- { buildMix, packageOverrides ? {}, fetchHex }:
- buildMix ({
- name = "repoquery";
- version = "0.0.2";
- src = fetchHex {
- pkg = "repoquery";
- version = "0.0.2";
- sha256 =
- "6b379793fae7cf8ff696feaeff9bf06d58ad66a9cbadfc8a769291c54814c922";
- };
-
- meta = {
- description = ''An Elixir interface for the `repoquery` cli
- tool.'';
- license = stdenv.lib.licenses.mit;
- homepage = "https://github.com/rentpath/repoquery";
- };
- } // packageOverrides)
- ) {};
-
- repoquery = repoquery_0_0_2;
-
- reprise_0_5_0 = callPackage
- (
- { buildMix, packageOverrides ? {}, fetchHex }:
- buildMix ({
- name = "reprise";
- version = "0.5.0";
- src = fetchHex {
- pkg = "reprise";
- version = "0.5.0";
- sha256 =
- "9db9fe973d2ac318a079409a75a18a8c2b5b1554db05f3611e81f555103ed9ed";
- };
-
- meta = {
- longDescription = ''Reprise reloads your modules after they`ve
- been recompiled. This is an intentionally
- simplified reloader when compared to the other
- ones, like exreloader or Mochiweb reloader. It
- aims to do one thing well. Only the beam files
- which were created under your mix project are
- scanned for changes. Deps are also excluded from
- checking and reloading. It doesn`t try to
- compile changed sources -- this task is better
- left to some shell tools like inotify.'';
- license = stdenv.lib.licenses.bsd3;
- homepage = "https://github.com/herenowcoder/reprise";
- };
- } // packageOverrides)
- ) {};
-
- reprise = reprise_0_5_0;
-
- resin_0_4_1 = callPackage
- (
- { buildMix, packageOverrides ? {}, fetchHex, plug_1_1_3 }:
- buildMix ({
- name = "resin";
- version = "0.4.1";
- src = fetchHex {
- pkg = "resin";
- version = "0.4.1";
- sha256 =
- "c6bdfd13e91cbc289df91440e216b91aa590a7dafe59958b0197cedd8cfef792";
- };
- beamDeps = [ plug_1_1_3 ];
-
- meta = {
- description = ''Pour resin in your plug pipeline to add
- (configurable) enterpriseyness!'';
- license = stdenv.lib.licenses.mit;
- homepage = "https://github.com/Frost/resin";
- };
- } // packageOverrides)
- ) {};
-
- resin = resin_0_4_1;
-
- rest_1_5_0 = callPackage
- (
- { buildMix, packageOverrides ? {}, fetchHex }:
- buildMix ({
- name = "rest";
- version = "1.5.0";
- src = fetchHex {
- pkg = "rest";
- version = "1.5.0";
- sha256 =
- "d99f75ef949eae41e28f707f9e1b6ea5fa07cba57c5365b5466ed357e8f78b07";
- };
-
- meta = {
- description = ''REST erlang interface generator'';
- license = stdenv.lib.licenses.mit;
- homepage = "https://github.com/synrc/rest";
- };
- } // packageOverrides)
- ) {};
-
- rest = rest_1_5_0;
-
- reup_0_1_0 = callPackage
- (
- { buildRebar3, packageOverrides ? {}, fetchHex }:
- buildRebar3 ({
- name = "reup";
- version = "0.1.0";
- src = fetchHex {
- pkg = "reup";
- version = "0.1.0";
- sha256 =
- "949a672190119f8b24160167e3685fdd5397474f98dc875ccfd31378ebd68506";
- };
-
- buildPlugins = [ rebar3_hex ];
-
-
- meta = {
- description = ''dev watcher that auto compiles and reloads
- modules'';
- license = stdenv.lib.licenses.apsl20;
- };
- } // packageOverrides)
- ) {};
-
- reup = reup_0_1_0;
-
- revision_plate_ex_0_1_0 = callPackage
- (
- {
- buildMix,
- packageOverrides ? {},
- fetchHex,
- plug_1_1_3,
- cowboy_1_0_4
- }:
- buildMix ({
- name = "revision_plate_ex";
- version = "0.1.0";
- src = fetchHex {
- pkg = "revision_plate_ex";
- version = "0.1.0";
- sha256 =
- "6c88a514ae5b36999fd52c01cc3ea746f8ba9c7900b47f4758a65c197b8aed71";
- };
- beamDeps = [ plug_1_1_3 cowboy_1_0_4 ];
-
- meta = {
- longDescription = ''Plug application and middleware that serves
- endpoint returns application`s REVISION'';
- license = stdenv.lib.licenses.mit;
- homepage = "https://github.com/KazuCocoa/revision_plate_ex";
- };
- } // packageOverrides)
- ) {};
-
- revision_plate_ex = revision_plate_ex_0_1_0;
-
- rfc3339_0_9_0 = callPackage
- (
- { buildMix, packageOverrides ? {}, fetchHex }:
- buildMix ({
- name = "rfc3339";
- version = "0.9.0";
- src = fetchHex {
- pkg = "rfc3339";
- version = "0.9.0";
- sha256 =
- "182314de35c9f4180b22eb5f22916d8d7a799c1109a060c752970273a9332ad6";
- };
-
- meta = {
- description = ''an rfc3339 parser and formatter'';
- license = with stdenv.lib.licenses; [ asl20 mit ];
- homepage = "https://github.com/talentdeficit/rfc3339";
- };
- } // packageOverrides)
- ) {};
-
- rfc3339 = rfc3339_0_9_0;
-
- riak_dt_2_1_1 = callPackage
- (
- { buildRebar3, packageOverrides ? {}, fetchHex }:
- buildRebar3 ({
- name = "riak_dt";
- version = "2.1.1";
- src = fetchHex {
- pkg = "riak_dt";
- version = "2.1.1";
- sha256 =
- "b5ab9e1d579ec3129cbea4b1977261aa2c5ad634321f87ace83bb32b99f65396";
- };
-
- meta = {
- description = ''riak CTDT datatypes'';
- license = stdenv.lib.licenses.apsl20;
- homepage = "https://github.com/basho/riak_dt";
- };
- } // packageOverrides)
- ) {};
-
- riak_dt = riak_dt_2_1_1;
-
- riak_sysmon_2_1_2 = callPackage
- (
- { buildRebar3, packageOverrides ? {}, fetchHex, lager_3_0_2 }:
- buildRebar3 ({
- name = "riak_sysmon";
- version = "2.1.2";
- src = fetchHex {
- pkg = "riak_sysmon";
- version = "2.1.2";
- sha256 =
- "a467f7a24fbdeac5b23baf0269758236458fabf8b498e9c551e61c5238e6f97c";
- };
-
- beamDeps = [ lager_3_0_2 ];
-
- meta = {
- description = ''Rate-limiting system_monitor event handler'';
- license = stdenv.lib.licenses.apsl20;
- homepage = "https://github.com/basho/riak_sysmon";
- };
- } // packageOverrides)
- ) {};
-
- riak_sysmon = riak_sysmon_2_1_2;
-
- rollex_0_4_0 = callPackage
- (
- { buildMix, packageOverrides ? {}, fetchHex, sfmt_0_12_7 }:
- buildMix ({
- name = "rollex";
- version = "0.4.0";
- src = fetchHex {
- pkg = "rollex";
- version = "0.4.0";
- sha256 =
- "53410bbd7687ff751b51b9737965bff1ba9c3d0673af65752f4ae3be0de1b44c";
- };
- beamDeps = [ sfmt_0_12_7 ];
-
- meta = {
- description = ''Elixir library using a Pratt Parser algorithm to
- calculate dice rolls.'';
- license = stdenv.lib.licenses.mit;
- };
- } // packageOverrides)
- ) {};
-
- rollex = rollex_0_4_0;
-
- roman_numerals_1_0_1 = callPackage
- (
- { buildMix, packageOverrides ? {}, fetchHex }:
- buildMix ({
- name = "roman_numerals";
- version = "1.0.1";
- src = fetchHex {
- pkg = "roman_numerals";
- version = "1.0.1";
- sha256 =
- "5e9dcfcb645c1ca937ddc0170805028596fbf4936d0119131350d7de95b7c6a1";
- };
-
- meta = {
- description = ''Convert numbers to Roman numerals and back.'';
- license = stdenv.lib.licenses.mit;
- homepage = "https://github.com/lpil/roman-numerals";
- };
- } // packageOverrides)
- ) {};
-
- roman_numerals = roman_numerals_1_0_1;
-
- romanex_0_1_0 = callPackage
- (
- { buildMix, packageOverrides ? {}, fetchHex }:
- buildMix ({
- name = "romanex";
- version = "0.1.0";
- src = fetchHex {
- pkg = "romanex";
- version = "0.1.0";
- sha256 =
- "b1f769bbf638d14247c70be8b944cfa76a84a00ef690e9cba26032ae03e33a89";
- };
-
- meta = {
- description = ''Encode, Decode, and Validate Roman Numerals.'';
- license = stdenv.lib.licenses.asl20;
- homepage = "https://github.com/itsgreggreg/romanex";
- };
- } // packageOverrides)
- ) {};
-
- romanex = romanex_0_1_0;
-
- romeo_0_4_0 = callPackage
- (
- { buildMix, packageOverrides ? {}, fetchHex, connection_1_0_2 }:
- buildMix ({
- name = "romeo";
- version = "0.4.0";
- src = fetchHex {
- pkg = "romeo";
- version = "0.4.0";
- sha256 =
- "38f1fe4ddeab5865de68dff196cf18b86d7ba3b8bb49c2753f1d04b145f248d4";
- };
- beamDeps = [ connection_1_0_2 ];
-
- meta = {
- description = ''An XMPP Client for Elixir'';
- license = stdenv.lib.licenses.mit;
- homepage = "https://github.com/scrogson/romeo";
- };
- } // packageOverrides)
- ) {};
-
- romeo = romeo_0_4_0;
-
- rop_0_5_3 = callPackage
- (
- { buildMix, packageOverrides ? {}, fetchHex }:
- buildMix ({
- name = "rop";
- version = "0.5.3";
- src = fetchHex {
- pkg = "rop";
- version = "0.5.3";
- sha256 =
- "3b8c37802c530eecc7714c175fe36486bb45157519cc7498ac487f6590f396e8";
- };
-
- meta = {
- description = ''Some convenient macros to enable
- railsway-oriented programming in Elixir'';
- license = stdenv.lib.licenses.mit;
- homepage = "https://github.com/ruby2elixir/rop";
- };
- } // packageOverrides)
- ) {};
-
- rop = rop_0_5_3;
-
- rotor_0_2_2 = callPackage
- (
- { buildMix, packageOverrides ? {}, fetchHex }:
- buildMix ({
- name = "rotor";
- version = "0.2.2";
- src = fetchHex {
- pkg = "rotor";
- version = "0.2.2";
- sha256 =
- "82de479c2cb6d26299916209d2945d1b39cf820f38279485ea5d5a8c494cb281";
- };
-
- meta = {
- longDescription = ''Rotor is a build system for Elixir projects.
- Use it to compile things, run commands or do
- anything when files change. '';
- license = stdenv.lib.licenses.mit;
- homepage = "https://github.com/HashNuke/rotor";
- };
- } // packageOverrides)
- ) {};
-
- rotor = rotor_0_2_2;
-
- rquote_0_0_1 = callPackage
- (
- { buildMix, packageOverrides ? {}, fetchHex }:
- buildMix ({
- name = "rquote";
- version = "0.0.1";
- src = fetchHex {
- pkg = "rquote";
- version = "0.0.1";
- sha256 =
- "54e1cba92716a4176d89e20d841dbc3a1227ef2fd9f7ddc5711a900877912354";
- };
-
- meta = {
- description = ''Library and CLI for generating random price
- quotes '';
- license = stdenv.lib.licenses.mit;
- homepage = "https://github.com/stocks29/rquote";
- };
- } // packageOverrides)
- ) {};
-
- rquote = rquote_0_0_1;
-
- rsa_0_0_1 = callPackage
- (
- { buildMix, packageOverrides ? {}, fetchHex }:
- buildMix ({
- name = "rsa";
- version = "0.0.1";
- src = fetchHex {
- pkg = "rsa";
- version = "0.0.1";
- sha256 =
- "6351a45a5a58285c41d611ec32b37ee486d7dacd119d7ef90ada844c44e95596";
- };
-
- meta = {
- description = ''Erlang public_key cryptography wrapper'';
- license = stdenv.lib.licenses.mit;
- homepage = "https://github.com/trapped/elixir-rsa";
- };
- } // packageOverrides)
- ) {};
-
- rsa = rsa_0_0_1;
-
- rubix_0_0_2 = callPackage
- (
- { buildMix, packageOverrides ? {}, fetchHex }:
- buildMix ({
- name = "rubix";
- version = "0.0.2";
- src = fetchHex {
- pkg = "rubix";
- version = "0.0.2";
- sha256 =
- "b9083f7c8981fc162bfda5c8aa9855f79298905eb8e3b4a4089134614b2a8199";
- };
-
- meta = {
- description = ''A very simple (and barely-functioning) Ruby
- runner for Elixir'';
- license = stdenv.lib.licenses.mit;
- homepage = "https://github.com/YellowApple/Rubix";
- };
- } // packageOverrides)
- ) {};
-
- rubix = rubix_0_0_2;
-
- russian_0_1_0 = callPackage
- (
- { buildMix, packageOverrides ? {}, fetchHex }:
- buildMix ({
- name = "russian";
- version = "0.1.0";
- src = fetchHex {
- pkg = "russian";
- version = "0.1.0";
- sha256 =
- "ebacf93bb9f653f749f787d65629ed2bd830dec295fb785f44738c120e9fde9a";
- };
-
- meta = {
- description = ''Transliterate a string with russian characters'';
- license = stdenv.lib.licenses.mit;
- homepage = "https://github.com/Kr00lIX/russian_elixir";
- };
- } // packageOverrides)
- ) {};
-
- russian = russian_0_1_0;
-
- safetybox_0_1_2 = callPackage
- (
- {
- buildMix,
- packageOverrides ? {},
- fetchHex,
- earmark_0_2_1,
- cryptex_0_0_1
- }:
- buildMix ({
- name = "safetybox";
- version = "0.1.2";
- src = fetchHex {
- pkg = "safetybox";
- version = "0.1.2";
- sha256 =
- "7785f6f8f53082af331a3dd44d9a1dd759d7c7981f3b6924482c81370b8cc706";
- };
- beamDeps = [ earmark_0_2_1 cryptex_0_0_1 ];
-
- meta = {
- description = ''A set of helper functions for security oriented
- operations, like encrypt. '';
- license = stdenv.lib.licenses.mit;
- homepage = "https://github.com/aforward/safetybox";
- };
- } // packageOverrides)
- ) {};
-
- safetybox = safetybox_0_1_2;
-
- salsa20_0_3_0 = callPackage
- (
- { buildMix, packageOverrides ? {}, fetchHex }:
- buildMix ({
- name = "salsa20";
- version = "0.3.0";
- src = fetchHex {
- pkg = "salsa20";
- version = "0.3.0";
- sha256 =
- "4b2c2fc873c5443443220966f8c87e73d3d99725cd99cb93f6d752ce3cf3c335";
- };
-
- meta = {
- description = ''Salsa20 symmetric stream cipher'';
- license = stdenv.lib.licenses.mit;
- homepage = "https://github.com/mwmiller/salsa20_ex";
- };
- } // packageOverrides)
- ) {};
-
- salsa20 = salsa20_0_3_0;
-
- sap_0_0_2 = callPackage
- (
- {
- buildMix,
- packageOverrides ? {},
- fetchHex,
- plug_1_1_3,
- control_0_0_4
- }:
- buildMix ({
- name = "sap";
- version = "0.0.2";
- src = fetchHex {
- pkg = "sap";
- version = "0.0.2";
- sha256 =
- "63f2db3cbbb753eac51177783463fb364dd560745bf5e4e8ba10a237e557903c";
- };
- beamDeps = [ plug_1_1_3 control_0_0_4 ];
-
- meta = {
- longDescription = ''Sap is a toolkit for Plug applications to
- accept and respond to HTTP requests by using a
- decision tree built with combinators.'';
- license = stdenv.lib.licenses.mit;
- homepage = "https://github.com/slogsdon/sap";
- };
- } // packageOverrides)
- ) {};
-
- sap = sap_0_0_2;
-
- sasl_ex_0_1_0 = callPackage
- (
- { buildMix, packageOverrides ? {}, fetchHex }:
- buildMix ({
- name = "sasl_ex";
- version = "0.1.0";
- src = fetchHex {
- pkg = "sasl_ex";
- version = "0.1.0";
- sha256 =
- "ce7f244817f6264738d5432d9b734921b9fdfe4ca2351a890ed678eb6fbaad3e";
- };
-
- meta = {
- longDescription = ''A lib for decoding bytes in the format of the
- SASL protocol into an Elixir struct.'';
- license = stdenv.lib.licenses.mit;
- homepage = "https://github.com/elbow-jason/sasl_ex";
- };
- } // packageOverrides)
- ) {};
-
- sasl_ex = sasl_ex_0_1_0;
-
- sbroker_0_7_0 = callPackage
- (
- { buildRebar3, packageOverrides ? {}, fetchHex }:
- buildRebar3 ({
- name = "sbroker";
- version = "0.7.0";
- src = fetchHex {
- pkg = "sbroker";
- version = "0.7.0";
- sha256 =
- "5bc0bfd79896fd5b92072a71fa4a1e120f4110f2cf9562a0b9dd2fcfe9e5cfd2";
- };
-
- meta = {
- description = ''Process broker for dispatching with backpressure
- and load shedding'';
- license = stdenv.lib.licenses.asl20;
- homepage = "https://github.com/fishcakez/sbroker";
- };
- } // packageOverrides)
- ) {};
-
- sbroker = sbroker_0_7_0;
-
- scaffold_0_0_5 = callPackage
- (
- {
- buildMix,
- packageOverrides ? {},
- fetchHex,
- gitex_0_1_0,
- configparser_ex_0_2_1
- }:
- buildMix ({
- name = "scaffold";
- version = "0.0.5";
- src = fetchHex {
- pkg = "scaffold";
- version = "0.0.5";
- sha256 =
- "fad499b712a576bc9d0f4842494baf9ec8d4c388f99c14f74654b1dbd158945c";
- };
- beamDeps = [ gitex_0_1_0 configparser_ex_0_2_1 ];
-
- meta = {
- description = ''A mix task for creating new projects based on
- templates fetched from a Git-repo.'';
- license = stdenv.lib.licenses.asl20;
- homepage = "https://github.com/gausby/scaffold";
- };
- } // packageOverrides)
- ) {};
-
- scaffold = scaffold_0_0_5;
-
- schedule_0_1_0 = callPackage
- (
- { buildMix, packageOverrides ? {}, fetchHex }:
- buildMix ({
- name = "schedule";
- version = "0.1.0";
- src = fetchHex {
- pkg = "schedule";
- version = "0.1.0";
- sha256 =
- "0b9b9440fe5e6d4a0cad34a170d3ec3251e06c42610f1c4106d93949b845db73";
- };
-
- meta = {
- description = ''Basic operations with intervals for Elixir.'';
- license = stdenv.lib.licenses.asl20;
- homepage = "https://github.com/dvele55/schedule";
- };
- } // packageOverrides)
- ) {};
-
- schedule = schedule_0_1_0;
-
- schizo_0_0_1 = callPackage
- (
- { buildMix, packageOverrides ? {}, fetchHex }:
- buildMix ({
- name = "schizo";
- version = "0.0.1";
- src = fetchHex {
- pkg = "schizo";
- version = "0.0.1";
- sha256 =
- "278d738fe6d3d1455dd24e0450a95f4191b8ce63b7059a1b74e7bad86c47746d";
- };
-
- meta = {
- description = ''Transform every other word in a sentence with
- some transformers.'';
- license = stdenv.lib.licenses.unlicense;
- homepage = "https://github.com/teerawat1992/Schizo";
- };
- } // packageOverrides)
- ) {};
-
- schizo = schizo_0_0_1;
-
- seat_json_0_0_18 = callPackage
- (
- { buildMix, packageOverrides ? {}, fetchHex }:
- buildMix ({
- name = "seat_json";
- version = "0.0.18";
- src = fetchHex {
- pkg = "seat_json";
- version = "0.0.18";
- sha256 =
- "d0e7339fb24e156e53aa4cc733dda90d1c3bfa5f5fc38b7e293b690e7289c516";
- };
-
- meta = {
- description = ''Simple Elixir Api Testing lib'';
-
- };
- } // packageOverrides)
- ) {};
-
- seat_json = seat_json_0_0_18;
-
- secure_random_0_1_1 = callPackage
- (
- { buildMix, packageOverrides ? {}, fetchHex }:
- buildMix ({
- name = "secure_random";
- version = "0.1.1";
- src = fetchHex {
- pkg = "secure_random";
- version = "0.1.1";
- sha256 =
- "55fa172d9f606bbf43a775f5b34b0866c8bbf242acf7e1ff1eafec2c07fdcc53";
- };
-
- meta = {
- description = ''A convienance library based on Ruy`s
- SecureRandom'';
- license = stdenv.lib.licenses.asl20;
- homepage =
- "https://github.com/patricksrobertson/secure_random.ex";
- };
- } // packageOverrides)
- ) {};
-
- secure_random_0_2_0 = callPackage
- (
- { buildMix, packageOverrides ? {}, fetchHex }:
- buildMix ({
- name = "secure_random";
- version = "0.2.0";
- src = fetchHex {
- pkg = "secure_random";
- version = "0.2.0";
- sha256 =
- "d17b17f5b25e38359838ae61165d18724084796fcbdf3c18f09ee5876892c5a0";
- };
-
- meta = {
- description = ''A convienance library based on Ruy`s
- SecureRandom'';
- license = stdenv.lib.licenses.asl20;
- homepage =
- "https://github.com/patricksrobertson/secure_random.ex";
- };
- } // packageOverrides)
- ) {};
-
- secure_random = secure_random_0_2_0;
-
- segment_0_1_0 = callPackage
- (
- {
- buildMix,
- packageOverrides ? {},
- fetchHex,
- poison_1_3_1,
- httpotion_2_2_2
- }:
- buildMix ({
- name = "segment";
- version = "0.1.0";
- src = fetchHex {
- pkg = "segment";
- version = "0.1.0";
- sha256 =
- "1747bf7a3f8d524d28890ce4499ef30a635f91c826d62e2b95711061faf02423";
- };
- beamDeps = [ poison_1_3_1 httpotion_2_2_2 ];
-
- meta = {
- description = ''analytics_elixir'';
- license = stdenv.lib.licenses.mit;
- homepage = "https://github.com/stueccles/analytics-elixir";
- };
- } // packageOverrides)
- ) {};
-
- segment = segment_0_1_0;
-
- semver_0_1_2 = callPackage
- (
- { buildMix, packageOverrides ? {}, fetchHex }:
- buildMix ({
- name = "semver";
- version = "0.1.2";
- src = fetchHex {
- pkg = "semver";
- version = "0.1.2";
- sha256 =
- "6e8150b94b1d5cbe3c31986a46cdc57c9af6f71f3747900280b2da7c0466a993";
- };
-
- meta = {
- description = ''Utilities for working with semver.org-compliant
- version strings'';
- license = stdenv.lib.licenses.mit;
- homepage = "https://github.com/lee-dohm/semver";
- };
- } // packageOverrides)
- ) {};
-
- semver = semver_0_1_2;
-
- sentient_0_0_2 = callPackage
- (
- { buildMix, packageOverrides ? {}, fetchHex, poison_1_5_2 }:
- buildMix ({
- name = "sentient";
- version = "0.0.2";
- src = fetchHex {
- pkg = "sentient";
- version = "0.0.2";
- sha256 =
- "fb752b01c2eb4a729cbe8b8301acca5bcb75a242f12819b6a56f3be3c877c3ec";
- };
- beamDeps = [ poison_1_5_2 ];
-
- meta = {
- description = ''Simple sentiment analysis based on the AFINN-111
- wordlist'';
-
- };
- } // packageOverrides)
- ) {};
-
- sentient = sentient_0_0_2;
-
- setup_1_7_0 = callPackage
- (
- { buildRebar3, packageOverrides ? {}, fetchHex }:
- buildRebar3 ({
- name = "setup";
- version = "1.7.0";
- src = fetchHex {
- pkg = "setup";
- version = "1.7.0";
- sha256 =
- "50d9cd7862d15812d2fd96a688bd70d6b7df88bbbf42cab9f010bb0fd5c91baa";
- };
-
- meta = {
- description = ''Generic setup application for Erlang-based
- systems'';
- license = stdenv.lib.licenses.apsl20;
- homepage = "https://github.com/uwiger/setup";
- };
- } // packageOverrides)
- ) {};
-
- setup = setup_1_7_0;
-
- sfmt_0_12_7 = callPackage
- (
- { buildErlangMk, packageOverrides ? {}, fetchHex }:
- buildErlangMk ({
- name = "sfmt";
- version = "0.12.7";
- src = fetchHex {
- pkg = "sfmt";
- version = "0.12.7";
- sha256 =
- "4e295f5053b4a525c00b990cd88b38e492716e7e0c62abf0c626d9fea0ba800e";
- };
-
- meta = {
- description = ''SIMD-oriented Fast Mersenne Twister (SFMT) for
- Erlang.'';
- license = stdenv.lib.licenses.bsd2;
- homepage = "https://github.com/jj1bdx/sfmt-erlang/";
- };
- } // packageOverrides)
- ) {};
-
- sfmt_0_13_0 = callPackage
- (
- { buildErlangMk, packageOverrides ? {}, fetchHex }:
- buildErlangMk ({
- name = "sfmt";
- version = "0.13.0";
- src = fetchHex {
- pkg = "sfmt";
- version = "0.13.0";
- sha256 =
- "aaacd4824f2b3e439d360bcce6079863da1e7f564014602e9e7815f8740b6358";
- };
-
- meta = {
- description = ''SIMD-oriented Fast Mersenne Twister (SFMT) for
- Erlang.'';
- license = stdenv.lib.licenses.bsd2;
- homepage = "https://github.com/jj1bdx/sfmt-erlang/";
- };
- } // packageOverrides)
- ) {};
-
- sfmt = sfmt_0_13_0;
-
- sfsobject_0_0_3 = callPackage
- (
- { buildMix, packageOverrides ? {}, fetchHex }:
- buildMix ({
- name = "sfsobject";
- version = "0.0.3";
- src = fetchHex {
- pkg = "sfsobject";
- version = "0.0.3";
- sha256 =
- "fa30bf41d426d7dc899bd038ca44daf32c93e55452cfd0dc141eb6ded6d85f3c";
- };
-
- meta = {
- description = ''Encode/decode SFSObjects'';
- license = stdenv.lib.licenses.mit;
- homepage = "https://github.com/splattael/sfsobject";
- };
- } // packageOverrides)
- ) {};
-
- sfsobject = sfsobject_0_0_3;
-
- sh_1_1_2 = callPackage
- (
- { buildMix, packageOverrides ? {}, fetchHex }:
- buildMix ({
- name = "sh";
- version = "1.1.2";
- src = fetchHex {
- pkg = "sh";
- version = "1.1.2";
- sha256 =
- "78ec787a58d546ae915073978e9ad21a7b3e6187fb5b9c93922e6435542ae4c5";
- };
-
- meta = {
- description = ''Run programs as functions in Elixir'';
- license = stdenv.lib.licenses.unlicense;
- homepage = "https://github.com/devinus/sh";
- };
- } // packageOverrides)
- ) {};
-
- sh = sh_1_1_2;
-
- shameless_plug_1_0_0 = callPackage
- (
- { buildMix, packageOverrides ? {}, fetchHex, plug_1_1_3 }:
- buildMix ({
- name = "shameless_plug";
- version = "1.0.0";
- src = fetchHex {
- pkg = "shameless_plug";
- version = "1.0.0";
- sha256 =
- "65c8af34d1853e85c8412d6ca15fd39354668c09c124cbc8e35cffea59d3a617";
- };
- beamDeps = [ plug_1_1_3 ];
-
- meta = {
- description = ''A novelty Plug to remove the word \"shame\" from
- the page body.'';
- license = stdenv.lib.licenses.mit;
- homepage = "https://github.com/henrik/shameless_plug";
- };
- } // packageOverrides)
- ) {};
-
- shameless_plug = shameless_plug_1_0_0;
-
- shape_0_0_2 = callPackage
- (
- { buildMix, packageOverrides ? {}, fetchHex }:
- buildMix ({
- name = "shape";
- version = "0.0.2";
- src = fetchHex {
- pkg = "shape";
- version = "0.0.2";
- sha256 =
- "c2e990b68f3423110109bf7e6bbebe8c10307bb28778ebcf9f7d6e0b8dc854f2";
- };
-
- meta = {
- description = ''A data validation library for Elixir based on
- Prismatoc Scheme'';
- license = stdenv.lib.licenses.asl20;
- homepage = "https://github.com/prio/shape";
- };
- } // packageOverrides)
- ) {};
-
- shape = shape_0_0_2;
-
- short_maps_0_1_1 = callPackage
- (
- { buildMix, packageOverrides ? {}, fetchHex }:
- buildMix ({
- name = "short_maps";
- version = "0.1.1";
- src = fetchHex {
- pkg = "short_maps";
- version = "0.1.1";
- sha256 =
- "852170b9be988f51b7b8a920097238ab0847433c417a4bc3bea6cef3b013b2b8";
- };
-
- meta = {
- description = ''Implementation of a ~m sigil for ES6-like maps in
- Elixir'';
- license = stdenv.lib.licenses.mit;
- homepage = "https://github.com/whatyouhide/short_maps";
- };
- } // packageOverrides)
- ) {};
-
- short_maps = short_maps_0_1_1;
-
- shotgun_0_2_2 = callPackage
- (
- {
- buildErlangMk, packageOverrides ? {}, fetchHex, gun_1_0_0_pre_1
- }:
- buildErlangMk ({
- name = "shotgun";
- version = "0.2.2";
- src = fetchHex {
- pkg = "shotgun";
- version = "0.2.2";
- sha256 =
- "d2993953cff0c82eb47744206ae171a141deeff84539fe2f58068e3909ae066c";
- };
- beamDeps = [ gun_1_0_0_pre_1 ];
-
- meta = {
- description = ''better than just a gun'';
- license = stdenv.lib.licenses.asl20;
- homepage = "https://github.com/inaka/shotgun";
- };
- } // packageOverrides)
- ) {};
-
- shotgun_0_2_3 = callPackage
- (
- {
- buildErlangMk,
- packageOverrides ? {},
- fetchHex,
- gun_1_0_0_pre_1,
- cowlib_1_0_2
- }:
- buildErlangMk ({
- name = "shotgun";
- version = "0.2.3";
- src = fetchHex {
- pkg = "shotgun";
- version = "0.2.3";
- sha256 =
- "7b40dcf0faebf698fea541db5f6338f555d0c9c828493e9953d1748d9e5280b5";
- };
- beamDeps = [ gun_1_0_0_pre_1 cowlib_1_0_2 ];
-
- meta = {
- description = ''better than just a gun'';
- license = stdenv.lib.licenses.asl20;
- homepage = "https://github.com/inaka/shotgun";
- };
- } // packageOverrides)
- ) {};
-
- shotgun = shotgun_0_2_3;
-
- shouldi_0_3_0 = callPackage
- (
- { buildMix, packageOverrides ? {}, fetchHex }:
- buildMix ({
- name = "shouldi";
- version = "0.3.0";
- src = fetchHex {
- pkg = "shouldi";
- version = "0.3.0";
- sha256 =
- "1cc3706e7a7ce4e37f9893b3b49f1dc586f861ffd194f8170f118eaa324017d7";
- };
-
- meta = {
- description = ''Elixir testing libraries with support for nested
- contexts'';
- license = stdenv.lib.licenses.asl20;
- homepage = "https://github.com/batate/shouldi";
- };
- } // packageOverrides)
- ) {};
-
- shouldi = shouldi_0_3_0;
-
- shove_0_0_1 = callPackage
- (
- {
- buildMix,
- packageOverrides ? {},
- fetchHex,
- poolboy_1_5_1,
- poison_1_5_2
- }:
- buildMix ({
- name = "shove";
- version = "0.0.1";
- src = fetchHex {
- pkg = "shove";
- version = "0.0.1";
- sha256 =
- "48c7db56f6df92c8cd50ff5cfc73ce12d843e257991af6c3d4762f8af50bd87f";
- };
- beamDeps = [ poolboy_1_5_1 poison_1_5_2 ];
-
- meta = {
- description = ''Push notifications for Elixir'';
- license = stdenv.lib.licenses.mit;
- homepage = "https://github.com/bratsche/shove";
- };
- } // packageOverrides)
- ) {};
-
- shove = shove_0_0_1;
-
- shrivel_0_0_3 = callPackage
- (
- { buildMix, packageOverrides ? {}, fetchHex }:
- buildMix ({
- name = "shrivel";
- version = "0.0.3";
- src = fetchHex {
- pkg = "shrivel";
- version = "0.0.3";
- sha256 =
- "c2a4874eed97044fe2bfa5e871f188a191b4042e72a6156cfd50c7c0d8296dbf";
- };
-
- meta = {
- description = ''URL shortener'';
-
- homepage = "https://github.com/Qeaql/shrivel";
- };
- } // packageOverrides)
- ) {};
-
- shrivel = shrivel_0_0_3;
-
- sidejob_2_0_0 = callPackage
- (
- { buildRebar3, packageOverrides ? {}, fetchHex }:
- buildRebar3 ({
- name = "sidejob";
- version = "2.0.0";
- src = fetchHex {
- pkg = "sidejob";
- version = "2.0.0";
- sha256 =
- "19fea24060a1d0d37e78480fbd79d6b95e07f445aad725f7124a23194641c743";
- };
-
- meta = {
- longDescription = ''sidejob is an Erlang library that implements
- a parallel, capacity-limited request pool. In
- sidejob, these pools are called resources. A
- resource is managed by multiple gen_server like
- processes which can be sent calls and casts
- using sidejob:call or sidejob:cast respectively.
- This library was originally written to support
- process bounding in Riak using the
- sidejob_supervisor behavior. In Riak, this is
- used to limit the number of concurrent get/put
- FSMs that can be active, failing client requests
- with {error, overload} if the limit is ever hit.
- The purpose being to provide a fail-safe
- mechanism during extreme overload scenarios. '';
- license = stdenv.lib.licenses.asl20;
- homepage = "https://github.com/basho/sidejob";
- };
- } // packageOverrides)
- ) {};
-
- sidejob = sidejob_2_0_0;
-
- sideshow_0_0_1 = callPackage
- (
- { buildMix, packageOverrides ? {}, fetchHex }:
- buildMix ({
- name = "sideshow";
- version = "0.0.1";
- src = fetchHex {
- pkg = "sideshow";
- version = "0.0.1";
- sha256 =
- "b1816b137826a6c5da5d19b0d52f1f0a1263756e1598ece8cd31be95a74e1a85";
- };
-
- meta = {
- description = ''Background jobs OTP style'';
- license = stdenv.lib.licenses.gpl3;
- homepage = "https://github.com/pavlos/sideshow";
- };
- } // packageOverrides)
- ) {};
-
- sideshow = sideshow_0_0_1;
-
- sidetask_1_1_0 = callPackage
- (
- { buildMix, packageOverrides ? {}, fetchHex, sidejob_2_0_0 }:
- buildMix ({
- name = "sidetask";
- version = "1.1.0";
- src = fetchHex {
- pkg = "sidetask";
- version = "1.1.0";
- sha256 =
- "acf9f1620c003a13942cf607e360cfbfe57a3b5dcef1471653f4168891446d54";
- };
- beamDeps = [ sidejob_2_0_0 ];
-
- meta = {
- longDescription = ''SideTask is an alternative to Elixir`s
- Task.Supervisor that uses Basho`s sidejob
- library for better parallelism and to support
- capacity limiting of Tasks. SideTask provides an
- API similar to Task.Supervisor, with the
- addition that all calls that start a new task
- require a sidejob resource as argument and can
- return `{:error, :overload}`. Convenience
- functions for adding and deleting sidejob
- resources are provided.'';
- license = stdenv.lib.licenses.asl20;
- homepage = "https://github.com/MSch/sidetask";
- };
- } // packageOverrides)
- ) {};
-
- sidetask = sidetask_1_1_0;
-
- signaturex_1_0_1 = callPackage
- (
- { buildMix, packageOverrides ? {}, fetchHex }:
- buildMix ({
- name = "signaturex";
- version = "1.0.1";
- src = fetchHex {
- pkg = "signaturex";
- version = "1.0.1";
- sha256 =
- "a8cb1b527026288dcb8d72a351e784c00cbd6e08964109595f08d85f41f022cc";
- };
-
- meta = {
- description = ''Simple key/secret based authentication for
- APIs'';
- license = stdenv.lib.licenses.mit;
- homepage = "https://github.com/edgurgel/signaturex";
- };
- } // packageOverrides)
- ) {};
-
- signaturex = signaturex_1_0_1;
-
- simetric_0_1_0 = callPackage
- (
- { buildMix, packageOverrides ? {}, fetchHex }:
- buildMix ({
- name = "simetric";
- version = "0.1.0";
- src = fetchHex {
- pkg = "simetric";
- version = "0.1.0";
- sha256 =
- "5a69a4b65670a0af0dba7e775b56e6995f2e599771ea360e87e28fd5b7eab3a9";
- };
-
- meta = {
- longDescription = ''The library provides facilities to perform
- approximate string matching and measurement of
- string similarity/distance.'';
- license = stdenv.lib.licenses.isc;
- homepage = "https://github.com/lexmag/simetric";
- };
- } // packageOverrides)
- ) {};
-
- simetric = simetric_0_1_0;
-
- simple_agent_0_0_7 = callPackage
- (
- { buildMix, packageOverrides ? {}, fetchHex }:
- buildMix ({
- name = "simple_agent";
- version = "0.0.7";
- src = fetchHex {
- pkg = "simple_agent";
- version = "0.0.7";
- sha256 =
- "23532eed173ab8e1a980095c5a1352e41d9f2a149005ed21b9d4f67859603ffe";
- };
-
- meta = {
- description = ''A simplification/abstraction layer for the Agent
- module.'';
- license = stdenv.lib.licenses.mit;
- homepage =
- "https://github.com/TheFirstAvenger/elixir-simple_agent.git";
- };
- } // packageOverrides)
- ) {};
-
- simple_agent = simple_agent_0_0_7;
-
- simple_bar_0_0_7 = callPackage
- (
- { buildMix, packageOverrides ? {}, fetchHex }:
- buildMix ({
- name = "simple_bar";
- version = "0.0.7";
- src = fetchHex {
- pkg = "simple_bar";
- version = "0.0.7";
- sha256 =
- "68fca76dee6fb1073e613e3498121b6a50739a2786f35d826309c55f55735ae1";
- };
-
- meta = {
- description = ''The simplest cli progress bar'';
- license = stdenv.lib.licenses.mit;
- homepage = "https://github.com/jeffreybaird/simple_bar";
- };
- } // packageOverrides)
- ) {};
-
- simple_bar = simple_bar_0_0_7;
-
- simple_secrets_1_0_0 = callPackage
- (
- {
- buildMix,
- packageOverrides ? {},
- fetchHex,
- pkcs7_1_0_2,
- msgpax_0_8_2
- }:
- buildMix ({
- name = "simple_secrets";
- version = "1.0.0";
- src = fetchHex {
- pkg = "simple_secrets";
- version = "1.0.0";
- sha256 =
- "797c98d49250fb343ed9a98411db641a3e5ae3344433f0a46d22dfec98bce11f";
- };
- beamDeps = [ pkcs7_1_0_2 msgpax_0_8_2 ];
-
- meta = {
- description = ''A simple, opinionated library for encrypting
- small packets of data securely.'';
- license = stdenv.lib.licenses.mit;
- homepage = "https://github.com/camshaft/simple_secrets_ex";
- };
- } // packageOverrides)
- ) {};
-
- simple_secrets = simple_secrets_1_0_0;
-
- simplex_0_4_0 = callPackage
- (
- {
- buildMix,
- packageOverrides ? {},
- fetchHex,
- timex_1_0_2,
- sweet_xml_0_6_1,
- poison_1_5_2,
- ibrowse_4_2_2,
- httpotion_2_2_2
- }:
- buildMix ({
- name = "simplex";
- version = "0.4.0";
- src = fetchHex {
- pkg = "simplex";
- version = "0.4.0";
- sha256 =
- "43dfdc62aa2c4919464615b5acc4f03b028b3b9875fa72c128563e7d794ba2a2";
- };
- beamDeps = [
- timex_1_0_2
- sweet_xml_0_6_1
- poison_1_5_2
- ibrowse_4_2_2
- httpotion_2_2_2
- ];
-
- meta = {
- description = ''An Elixir library for interacting with the Amazon
- SimpleDB API.'';
- license = stdenv.lib.licenses.mit;
- homepage = "https://github.com/adamkittelson/simplex";
- };
- } // packageOverrides)
- ) {};
-
- simplex = simplex_0_4_0;
-
- simpre_0_1_0 = callPackage
- (
- { buildRebar3, packageOverrides ? {}, fetchHex }:
- buildRebar3 ({
- name = "simpre";
- version = "0.1.0";
- src = fetchHex {
- pkg = "simpre";
- version = "0.1.0";
- sha256 =
- "db0a48789360d2a683ea3a8605c2fb0134eb9fb63f07c0069be78906cdf5fb94";
- };
-
- meta = {
- description = ''Simple Process Registry'';
- license = stdenv.lib.licenses.mit;
- homepage = "https://github.com/yuce/simpre.git";
- };
- } // packageOverrides)
- ) {};
-
- simpre = simpre_0_1_0;
-
- skills_0_0_1 = callPackage
- (
- { buildMix, packageOverrides ? {}, fetchHex }:
- buildMix ({
- name = "skills";
- version = "0.0.1";
- src = fetchHex {
- pkg = "skills";
- version = "0.0.1";
- sha256 =
- "3845188cae5b6f43a8a9488a57831be8259ca83131ac0a1adfd24fbe846eb30f";
- };
-
- meta = {
- description = ''A skill-based ranking algorithms library for
- Elixir. Includes Elo and TrueSkill.'';
- license = stdenv.lib.licenses.mpl20;
- homepage = "https://github.com/folz/skills.ex";
- };
- } // packageOverrides)
- ) {};
-
- skills = skills_0_0_1;
-
- slim_fast_0_10_0 = callPackage
- (
- { buildMix, packageOverrides ? {}, fetchHex }:
- buildMix ({
- name = "slim_fast";
- version = "0.10.0";
- src = fetchHex {
- pkg = "slim_fast";
- version = "0.10.0";
- sha256 =
- "aae7eb1573c1ee98f5fa11098d758b80b35f4d67e6e5f81135ae4d66cb571c44";
- };
-
- meta = {
- description = ''An Elixir library for rendering slim
- templates.'';
- license = stdenv.lib.licenses.mit;
- homepage = "https://github.com/doomspork/slim_fast";
- };
- } // packageOverrides)
- ) {};
-
- slim_fast = slim_fast_0_10_0;
-
- slime_0_12_2 = callPackage
- (
- { buildMix, packageOverrides ? {}, fetchHex }:
- buildMix ({
- name = "slime";
- version = "0.12.2";
- src = fetchHex {
- pkg = "slime";
- version = "0.12.2";
- sha256 =
- "389ed56ef536f25e29a99979ff1a3402ce21a0d40fcc49be93e44dcde11b9633";
- };
-
- meta = {
- description = ''An Elixir library for rendering Slim-like
- templates.'';
- license = stdenv.lib.licenses.mit;
- homepage = "https://github.com/slime-lang/slime";
- };
- } // packageOverrides)
- ) {};
-
- slime = slime_0_12_2;
-
- slugerl_1_0_0 = callPackage
- (
- { buildRebar3, packageOverrides ? {}, fetchHex }:
- buildRebar3 ({
- name = "slugerl";
- version = "1.0.0";
- src = fetchHex {
- pkg = "slugerl";
- version = "1.0.0";
- sha256 =
- "5a06364270afb773b32a7a4e05cf9cb4ccf904faedb2825d7336f3065e4f791b";
- };
-
- buildPlugins = [ rebar3_hex ];
-
-
- meta = {
- description = ''slugify'';
- license = stdenv.lib.licenses.bsd3;
- homepage = "https://github.com/thraxil/slugerl";
- };
- } // packageOverrides)
- ) {};
-
- slugerl = slugerl_1_0_0;
-
- slugger_0_1_0 = callPackage
- (
- { buildMix, packageOverrides ? {}, fetchHex }:
- buildMix ({
- name = "slugger";
- version = "0.1.0";
- src = fetchHex {
- pkg = "slugger";
- version = "0.1.0";
- sha256 =
- "c74ef1f09acd6952591d89ab6747b337aaec9624e57623ca3a7b9e2cf536a8a3";
- };
-
- meta = {
- longDescription = ''The library Slugger can generate slugs from
- given strings that can be used in URLs or file
- names.'';
- license = stdenv.lib.licenses.mit;
- homepage = "https://github.com/h4cc/slugger";
- };
- } // packageOverrides)
- ) {};
-
- slugger = slugger_0_1_0;
-
- smurf_0_1_3 = callPackage
- (
- { buildRebar3, packageOverrides ? {}, fetchHex }:
- buildRebar3 ({
- name = "smurf";
- version = "0.1.3";
- src = fetchHex {
- pkg = "smurf";
- version = "0.1.3";
- sha256 =
- "5ed8e18ec8eea0647e7e938ce15cc76e59497d0a259cea15124520a48f0d6be6";
- };
-
- meta = {
- description = ''SMF interfacing library for erlang'';
- license = stdenv.lib.licenses.cddl;
- homepage = "https://github.com/project-fifo/smurf";
- };
- } // packageOverrides)
- ) {};
-
- smurf = smurf_0_1_3;
-
- sorted_set_1_1_0 = callPackage
- (
- {
- buildMix, packageOverrides ? {}, fetchHex, red_black_tree_1_2_0
- }:
- buildMix ({
- name = "sorted_set";
- version = "1.1.0";
- src = fetchHex {
- pkg = "sorted_set";
- version = "1.1.0";
- sha256 =
- "2c2c119554e02d8c813fd9511a8417b20f8efd3c27fa4ab722ba733140fb9a46";
- };
- beamDeps = [ red_black_tree_1_2_0 ];
-
- meta = {
- description = ''SortedSet implementation for Elixir'';
- license = stdenv.lib.licenses.mit;
- homepage = "https://github.com/SenecaSystems/sorted_set";
- };
- } // packageOverrides)
- ) {};
-
- sorted_set = sorted_set_1_1_0;
-
- spaceapi_0_1_2 = callPackage
- (
- { buildMix, packageOverrides ? {}, fetchHex, poison_2_1_0 }:
- buildMix ({
- name = "spaceapi";
- version = "0.1.2";
- src = fetchHex {
- pkg = "spaceapi";
- version = "0.1.2";
- sha256 =
- "2d9f7da251e3d6dfd33248173622166afb6ecb28dc6286191ab178d85117584d";
- };
- beamDeps = [ poison_2_1_0 ];
-
- meta = {
- description = ''A small Elixir package for parsing the Space
- API'';
- license = with stdenv.lib.licenses; [ mit gpl3 ];
- homepage = "https://github.com/geistesk/spaceapi";
- };
- } // packageOverrides)
- ) {};
-
- spaceapi = spaceapi_0_1_2;
-
- spacesaving_0_0_3 = callPackage
- (
- {
- buildMix,
- packageOverrides ? {},
- fetchHex,
- earmark_0_2_1,
- dialyze_0_2_1
- }:
- buildMix ({
- name = "spacesaving";
- version = "0.0.3";
- src = fetchHex {
- pkg = "spacesaving";
- version = "0.0.3";
- sha256 =
- "e13f6ceb1adaad447f12eab1cfc5668a2ab4784393c67b4c8cde815533cd43f8";
- };
- beamDeps = [ earmark_0_2_1 dialyze_0_2_1 ];
-
- meta = {
- description = ''stream count distinct element estimation using
- the \"space saving\" algorithm.'';
- license = stdenv.lib.licenses.mit;
- homepage = "https://github.com/rozap/spacesaving";
- };
- } // packageOverrides)
- ) {};
-
- spacesaving = spacesaving_0_0_3;
-
- sparkpost_0_1_0 = callPackage
- (
- {
- buildMix,
- packageOverrides ? {},
- fetchHex,
- poison_1_5_2,
- httpotion_2_2_2
- }:
- buildMix ({
- name = "sparkpost";
- version = "0.1.0";
- src = fetchHex {
- pkg = "sparkpost";
- version = "0.1.0";
- sha256 =
- "704fa320132235db00c4b40b6990e63ec3c2581d681d86c0765ef930c88a2694";
- };
- beamDeps = [ poison_1_5_2 httpotion_2_2_2 ];
-
- meta = {
- description = ''The official Elixir package for the SparkPost
- API'';
- license = stdenv.lib.licenses.asl20;
- homepage = "https://github.com/SparkPost/elixir-sparkpost";
- };
- } // packageOverrides)
- ) {};
-
- sparkpost = sparkpost_0_1_0;
-
spell_0_1_0 = callPackage
(
{
@@ -26095,6 +33422,30 @@ let
spell = spell_0_1_0;
+ spex_0_1_2 = callPackage
+ (
+ { buildMix, packageOverrides ? {}, fetchHex }:
+ buildMix ({
+ name = "spex";
+ version = "0.1.2";
+ src = fetchHex {
+ pkg = "spex";
+ version = "0.1.2";
+ sha256 =
+ "102a1a74e19cd68c843ba45ac8580f44b5b8e4cc572e206e143cab56f369fb93";
+ };
+
+ meta = {
+ description = ''Validate your Elixir values against value-based
+ specs'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/codegram/spex";
+ };
+ } // packageOverrides)
+ ) {};
+
+ spex = spex_0_1_2;
+
spf_0_0_1 = callPackage
(
{ buildMix, packageOverrides ? {}, fetchHex }:
@@ -26141,6 +33492,37 @@ let
spherical = spherical_0_0_1;
+ spotify_ex_0_0_4 = callPackage
+ (
+ {
+ buildMix,
+ packageOverrides ? {},
+ fetchHex,
+ poison_1_5_2,
+ plug_1_1_5,
+ httpoison_0_8_3
+ }:
+ buildMix ({
+ name = "spotify_ex";
+ version = "0.0.4";
+ src = fetchHex {
+ pkg = "spotify_ex";
+ version = "0.0.4";
+ sha256 =
+ "f2e8647410096d34d9baecf8d9622896214320641ed72c11c711f9a463e4a961";
+ };
+ beamDeps = [ poison_1_5_2 plug_1_1_5 httpoison_0_8_3 ];
+
+ meta = {
+ description = ''An Elixir wrapper for Spotify API O-Auth.'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://www.github.com/jsncmgs1/spotify_ex";
+ };
+ } // packageOverrides)
+ ) {};
+
+ spotify_ex = spotify_ex_0_0_4;
+
spout_0_0_1 = callPackage
(
{ buildMix, packageOverrides ? {}, fetchHex }:
@@ -26165,6 +33547,125 @@ let
spout = spout_0_0_1;
+ spreedly_0_1_2 = callPackage
+ (
+ {
+ buildMix,
+ packageOverrides ? {},
+ fetchHex,
+ poison_1_5_2,
+ httpoison_0_8_3
+ }:
+ buildMix ({
+ name = "spreedly";
+ version = "0.1.2";
+ src = fetchHex {
+ pkg = "spreedly";
+ version = "0.1.2";
+ sha256 =
+ "b5c770da8627fb1a3a570ffeec1a15e9ee1d643383f26018855ac028471e1329";
+ };
+ beamDeps = [ poison_1_5_2 httpoison_0_8_3 ];
+
+ meta = {
+ description = ''A wrapper for the Spreedly API.'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/duff/spreedly-elixir";
+ };
+ } // packageOverrides)
+ ) {};
+
+ spreedly = spreedly_0_1_2;
+
+ sqlcx_1_1_0 = callPackage
+ (
+ {
+ buildMix,
+ packageOverrides ? {},
+ fetchHex,
+ esqlcipher_1_0_0,
+ decimal_1_1_2
+ }:
+ buildMix ({
+ name = "sqlcx";
+ version = "1.1.0";
+ src = fetchHex {
+ pkg = "sqlcx";
+ version = "1.1.0";
+ sha256 =
+ "203c9b39da2e359322c9d83bb64d2559dd26e0f22a03d493bfc817120c394e8d";
+ };
+ beamDeps = [ esqlcipher_1_0_0 decimal_1_1_2 ];
+
+ meta = {
+ description = ''A thin Elixir wrapper around esqlcipher'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/FelixKiunke/sqlcx";
+ };
+ } // packageOverrides)
+ ) {};
+
+ sqlcx = sqlcx_1_1_0;
+
+ sqlitex_0_8_3 = callPackage
+ (
+ {
+ buildMix,
+ packageOverrides ? {},
+ fetchHex,
+ pipe_0_0_2,
+ esqlite_0_2_2,
+ decimal_1_1_2
+ }:
+ buildMix ({
+ name = "sqlitex";
+ version = "0.8.3";
+ src = fetchHex {
+ pkg = "sqlitex";
+ version = "0.8.3";
+ sha256 =
+ "44daaeb135178165d0a6cd6754e4af05e56e5d2943c0b1108df7df718745ec0f";
+ };
+ beamDeps = [ pipe_0_0_2 esqlite_0_2_2 decimal_1_1_2 ];
+
+ meta = {
+ description = ''A thin Elixir wrapper around esqlite'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/mmmries/sqlitex";
+ };
+ } // packageOverrides)
+ ) {};
+
+ sqlitex_1_0_0 = callPackage
+ (
+ {
+ buildMix,
+ packageOverrides ? {},
+ fetchHex,
+ esqlite_0_2_2,
+ decimal_1_1_2
+ }:
+ buildMix ({
+ name = "sqlitex";
+ version = "1.0.0";
+ src = fetchHex {
+ pkg = "sqlitex";
+ version = "1.0.0";
+ sha256 =
+ "cbd7310e900841aa2dc6071b497330e730de1cd9618003006e0af48afb24d5f8";
+ };
+ beamDeps = [ esqlite_0_2_2 decimal_1_1_2 ];
+
+ meta = {
+ description = ''A thin Elixir wrapper around esqlite'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/mmmries/sqlitex";
+ };
+ } // packageOverrides)
+ ) {};
+
+ sqlitex = sqlitex_1_0_0;
+
sshex_2_1_0 = callPackage
(
{ buildMix, packageOverrides ? {}, fetchHex }:
@@ -26188,6 +33689,52 @@ let
sshex = sshex_2_1_0;
+ ssl_verify_fun_1_1_0 = callPackage
+ (
+ { buildRebar3, packageOverrides ? {}, fetchHex }:
+ buildRebar3 ({
+ name = "ssl_verify_fun";
+ version = "1.1.0";
+ src = fetchHex {
+ pkg = "ssl_verify_fun";
+ version = "1.1.0";
+ sha256 =
+ "6c0e0d857fdb031ba67b0a791202bee116bea2313db7b649839000847591ba1e";
+ };
+
+ meta = {
+ description = ''SSL verification functions for Erlang'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/deadtrickster/ssl_verify_fun.erl";
+ };
+ } // packageOverrides)
+ ) {};
+
+ ssl_verify_fun = ssl_verify_fun_1_1_0;
+
+ stache_0_2_1 = callPackage
+ (
+ { buildMix, packageOverrides ? {}, fetchHex }:
+ buildMix ({
+ name = "stache";
+ version = "0.2.1";
+ src = fetchHex {
+ pkg = "stache";
+ version = "0.2.1";
+ sha256 =
+ "475e80a2b6e713a75d0a085b067489e2fc1606751aab47413e12a33cf2ae4712";
+ };
+
+ meta = {
+ description = ''Mustache templates in Elixir.'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/cwbriones/stache";
+ };
+ } // packageOverrides)
+ ) {};
+
+ stache = stache_0_2_1;
+
stackd_0_0_1 = callPackage
(
{ buildMix, packageOverrides ? {}, fetchHex }:
@@ -26256,6 +33803,30 @@ let
stathat = stathat_0_0_3;
+ statistics_0_4_1 = callPackage
+ (
+ { buildMix, packageOverrides ? {}, fetchHex }:
+ buildMix ({
+ name = "statistics";
+ version = "0.4.1";
+ src = fetchHex {
+ pkg = "statistics";
+ version = "0.4.1";
+ sha256 =
+ "726d8791e9bafb08b3ceeb5b08df6664f29a73a0e6ac0db835500b686a153bd5";
+ };
+
+ meta = {
+ description = ''Functions for descriptive statistics and common
+ distributions'';
+ license = stdenv.lib.licenses.asl20;
+ homepage = "https://github.com/msharp/elixir-statistics";
+ };
+ } // packageOverrides)
+ ) {};
+
+ statistics = statistics_0_4_1;
+
statix_0_7_0 = callPackage
(
{ buildMix, packageOverrides ? {}, fetchHex }:
@@ -26313,6 +33884,37 @@ let
std_json_io = std_json_io_0_1_0;
+ steamex_0_0_5 = callPackage
+ (
+ {
+ buildMix,
+ packageOverrides ? {},
+ fetchHex,
+ sweet_xml_0_6_1,
+ httpoison_0_8_3
+ }:
+ buildMix ({
+ name = "steamex";
+ version = "0.0.5";
+ src = fetchHex {
+ pkg = "steamex";
+ version = "0.0.5";
+ sha256 =
+ "4a290c432c0480cf372fece76cc4f09e231261fda64ef5027e8855e16aa5a2f6";
+ };
+ beamDeps = [ sweet_xml_0_6_1 httpoison_0_8_3 ];
+
+ meta = {
+ description = ''Steam API and Auth (with Phoenix/Plug
+ integration) for Elixir'';
+ license = stdenv.lib.licenses.asl20;
+ homepage = "https://github.com/antipax/steamex";
+ };
+ } // packageOverrides)
+ ) {};
+
+ steamex = steamex_0_0_5;
+
stemex_0_1_1 = callPackage
(
{ buildMix, packageOverrides ? {}, fetchHex }:
@@ -26364,6 +33966,66 @@ let
stillir = stillir_1_0_0;
+ stockastic_0_0_2 = callPackage
+ (
+ {
+ buildMix,
+ packageOverrides ? {},
+ fetchHex,
+ httpoison_0_8_3,
+ exjsx_3_2_0
+ }:
+ buildMix ({
+ name = "stockastic";
+ version = "0.0.2";
+ src = fetchHex {
+ pkg = "stockastic";
+ version = "0.0.2";
+ sha256 =
+ "f180915a21d4aa4a64f660696b77c5788334d4bae2639a58814565af0d75ca56";
+ };
+ beamDeps = [ httpoison_0_8_3 exjsx_3_2_0 ];
+
+ meta = {
+ description = ''Simple Elixir wrapper for the Stockfighter API'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/shanewilton/stockastic";
+ };
+ } // packageOverrides)
+ ) {};
+
+ stockastic = stockastic_0_0_2;
+
+ stockfighter_0_0_1 = callPackage
+ (
+ {
+ buildMix,
+ packageOverrides ? {},
+ fetchHex,
+ poison_1_5_2,
+ httpoison_0_8_3
+ }:
+ buildMix ({
+ name = "stockfighter";
+ version = "0.0.1";
+ src = fetchHex {
+ pkg = "stockfighter";
+ version = "0.0.1";
+ sha256 =
+ "d72726cf055068e2b62ef9091ec17ab9292b60bc7f4a7306c17cad6d022a3bd7";
+ };
+ beamDeps = [ poison_1_5_2 httpoison_0_8_3 ];
+
+ meta = {
+ description = ''a simple wrapper of stockfighter http api'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/lerencao/stockfighter";
+ };
+ } // packageOverrides)
+ ) {};
+
+ stockfighter = stockfighter_0_0_1;
+
stopwatch_0_0_7 = callPackage
(
{ buildMix, packageOverrides ? {}, fetchHex, timex_1_0_2 }:
@@ -26434,6 +34096,29 @@ let
stream_weaver = stream_weaver_0_0_2;
+ stream_x_0_0_1 = callPackage
+ (
+ { buildMix, packageOverrides ? {}, fetchHex }:
+ buildMix ({
+ name = "stream_x";
+ version = "0.0.1";
+ src = fetchHex {
+ pkg = "stream_x";
+ version = "0.0.1";
+ sha256 =
+ "68832e9ac5542ca7763e5ea8493f2f775b84d79995fd63eda608ef6f786d1395";
+ };
+
+ meta = {
+ description = ''Extra Elixir Stream utilities'';
+ license = stdenv.lib.licenses.asl20;
+ homepage = "https://github.com/koyeung/stream_x";
+ };
+ } // packageOverrides)
+ ) {};
+
+ stream_x = stream_x_0_0_1;
+
strftimerl_0_1_1 = callPackage
(
{ buildRebar3, packageOverrides ? {}, fetchHex }:
@@ -26481,6 +34166,58 @@ let
strict_comparison = strict_comparison_0_0_1;
+ strinx_0_2_1 = callPackage
+ (
+ { buildMix, packageOverrides ? {}, fetchHex }:
+ buildMix ({
+ name = "strinx";
+ version = "0.2.1";
+ src = fetchHex {
+ pkg = "strinx";
+ version = "0.2.1";
+ sha256 =
+ "b3a083b3c0f28d35d283cb5e50b03798840e401eb723d44d8e9137735a3798e7";
+ };
+
+ meta = {
+ longDescription = ''Some string transformation functions for
+ Elixir. Heavily inspired by ActiveSupport`s
+ String extensions (Ruby).'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/asaaki/strinx.ex";
+ };
+ } // packageOverrides)
+ ) {};
+
+ strinx = strinx_0_2_1;
+
+ stripex_0_1_0 = callPackage
+ (
+ { buildMix, packageOverrides ? {}, fetchHex, gateway_0_0_6 }:
+ buildMix ({
+ name = "stripex";
+ version = "0.1.0";
+ src = fetchHex {
+ pkg = "stripex";
+ version = "0.1.0";
+ sha256 =
+ "49959c78e677d3e30edd808cce7a013a7120f337705d0e2fd646c000d9b30853";
+ };
+ beamDeps = [ gateway_0_0_6 ];
+
+ meta = {
+ longDescription = ''A much more ruby-stripe-like wrapper around
+ Stripe`s API (built with Poison). Full
+ documentation can be found at
+ https://stripe.com/docs/api'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/foxnewsnetwork/stripex";
+ };
+ } // packageOverrides)
+ ) {};
+
+ stripex = stripex_0_1_0;
+
struct_fields_0_3_0 = callPackage
(
{ buildMix, packageOverrides ? {}, fetchHex }:
@@ -26505,6 +34242,54 @@ let
struct_fields = struct_fields_0_3_0;
+ styledown_0_0_3 = callPackage
+ (
+ { buildMix, packageOverrides ? {}, fetchHex, execjs_1_1_3 }:
+ buildMix ({
+ name = "styledown";
+ version = "0.0.3";
+ src = fetchHex {
+ pkg = "styledown";
+ version = "0.0.3";
+ sha256 =
+ "8dc31569257a9d5fe3eb67ca87d0cd29f6d14c4a62191262b41a28fc9bca18fc";
+ };
+ beamDeps = [ execjs_1_1_3 ];
+
+ meta = {
+ description = ''Elixir integration of Styledown'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/styledown/styledown_ex";
+ };
+ } // packageOverrides)
+ ) {};
+
+ styledown = styledown_0_0_3;
+
+ supervisor3_1_1_1 = callPackage
+ (
+ { buildErlangMk, packageOverrides ? {}, fetchHex }:
+ buildErlangMk ({
+ name = "supervisor3";
+ version = "1.1.1";
+ src = fetchHex {
+ pkg = "supervisor3";
+ version = "1.1.1";
+ sha256 =
+ "0d17df36f524f7420d7e1afb0d65054ffdfcd5438de63597d6ab626deb38f94c";
+ };
+
+ meta = {
+ description = ''A copy of supervisor.erl from the R16B Erlang/OTP
+ with modifications'';
+ license = stdenv.lib.licenses.free;
+ homepage = "https://github.com/klarna/supervisor3";
+ };
+ } // packageOverrides)
+ ) {};
+
+ supervisor3 = supervisor3_1_1_1;
+
supool_1_5_1 = callPackage
(
{ buildRebar3, packageOverrides ? {}, fetchHex }:
@@ -26528,6 +34313,30 @@ let
supool = supool_1_5_1;
+ swapi_1_0_0 = callPackage
+ (
+ { buildMix, packageOverrides ? {}, fetchHex, httpoison_0_8_3 }:
+ buildMix ({
+ name = "swapi";
+ version = "1.0.0";
+ src = fetchHex {
+ pkg = "swapi";
+ version = "1.0.0";
+ sha256 =
+ "55b40ddd97d632b027463aefccb8d6fa9ffa77f224a25af5565bbaecff5c7a3c";
+ };
+ beamDeps = [ httpoison_0_8_3 ];
+
+ meta = {
+ description = ''An Elixir wrapper for the Star Wars API.'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/twhitacre/swapi.ex";
+ };
+ } // packageOverrides)
+ ) {};
+
+ swapi = swapi_1_0_0;
+
sweet_xml_0_5_1 = callPackage
(
{ buildMix, packageOverrides ? {}, fetchHex }:
@@ -26574,53 +34383,17 @@ let
sweet_xml = sweet_xml_0_6_1;
- switchboard_0_3_2 = callPackage
- (
- {
- buildRebar3,
- packageOverrides ? {},
- fetchHex,
- lager_3_0_2,
- jsx_2_8_0,
- gproc_0_5_0,
- cowboy_1_0_4
- }:
- buildRebar3 ({
- name = "switchboard";
- version = "0.3.2";
- src = fetchHex {
- pkg = "switchboard";
- version = "0.3.2";
- sha256 =
- "0b1debb284cd63e5220dc56462dafebd1418579bb40a5b8e51dfdf1f50bfbeb3";
- };
-
- buildPlugins = [ rebar3_hex ];
-
- beamDeps = [ lager_3_0_2 jsx_2_8_0 gproc_0_5_0 cowboy_1_0_4 ];
-
- meta = {
- description = ''Conduct monitoring and operations across email
- accounts'';
- license = stdenv.lib.licenses.bsd3;
- homepage = "https://github.com/thusfresh/switchboard";
- };
- } // packageOverrides)
- ) {};
-
- switchboard = switchboard_0_3_2;
-
- syn_1_2_1 = callPackage
+ syn_1_4_0 = callPackage
(
{ buildRebar3, packageOverrides ? {}, fetchHex }:
buildRebar3 ({
name = "syn";
- version = "1.2.1";
+ version = "1.4.0";
src = fetchHex {
pkg = "syn";
- version = "1.2.1";
+ version = "1.4.0";
sha256 =
- "a21864a00c39f6753cde0269c979c5260dc9bf1991ca0d5c9635ebec499d6f61";
+ "cec944ba1768a5142ba496bc84b62ebeab68e8ddd2c8e3263c95f89660275d9c";
};
meta = {
@@ -26632,7 +34405,7 @@ let
} // packageOverrides)
) {};
- syn = syn_1_2_1;
+ syn = syn_1_4_0;
syn_osc_0_1_0 = callPackage
(
@@ -26658,6 +34431,29 @@ let
syn_osc = syn_osc_0_1_0;
+ syntactic_0_0_2 = callPackage
+ (
+ { buildMix, packageOverrides ? {}, fetchHex }:
+ buildMix ({
+ name = "syntactic";
+ version = "0.0.2";
+ src = fetchHex {
+ pkg = "syntactic";
+ version = "0.0.2";
+ sha256 =
+ "20adf1f265ebb17ab79d53355b7854c751cee68c73f8a66baca7035da06f65db";
+ };
+
+ meta = {
+ description = ''A collection of Elixir syntactic sugars.'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/hzamani/elixir-syntactic";
+ };
+ } // packageOverrides)
+ ) {};
+
+ syntactic = syntactic_0_0_2;
+
synthex_0_1_0 = callPackage
(
{ buildMix, packageOverrides ? {}, fetchHex }:
@@ -26706,17 +34502,17 @@ let
system_env_loader = system_env_loader_0_1_0;
- table_0_0_4 = callPackage
+ table_0_0_5 = callPackage
(
{ buildMix, packageOverrides ? {}, fetchHex }:
buildMix ({
name = "table";
- version = "0.0.4";
+ version = "0.0.5";
src = fetchHex {
pkg = "table";
- version = "0.0.4";
+ version = "0.0.5";
sha256 =
- "9962976cb40b4cd517a03c572ced492185e9642bb224e29942f9b7671e31c55a";
+ "8d1f3ac55512f92eeba1345842278ee6f89d2a4f19be0e272a5f32a958f066d5";
};
meta = {
@@ -26727,7 +34523,7 @@ let
} // packageOverrides)
) {};
- table = table_0_0_4;
+ table = table_0_0_5;
table_rex_0_4_0 = callPackage
(
@@ -26798,17 +34594,17 @@ let
tabula = tabula_2_0_1;
- tachometer_0_1_0 = callPackage
+ tachometer_0_1_1 = callPackage
(
{ buildMix, packageOverrides ? {}, fetchHex }:
buildMix ({
name = "tachometer";
- version = "0.1.0";
+ version = "0.1.1";
src = fetchHex {
pkg = "tachometer";
- version = "0.1.0";
+ version = "0.1.1";
sha256 =
- "5b2624c593280fc7a4621b264688509ba76ca3450a70ae0cfff43183604f903c";
+ "ead8f6a964b79df0b2948a59c72ec0e2b319bb7684079e7170fa191c78481a42";
};
meta = {
@@ -26819,7 +34615,29 @@ let
} // packageOverrides)
) {};
- tachometer = tachometer_0_1_0;
+ tachometer_0_2_0 = callPackage
+ (
+ { buildMix, packageOverrides ? {}, fetchHex, watcher_1_0_0 }:
+ buildMix ({
+ name = "tachometer";
+ version = "0.2.0";
+ src = fetchHex {
+ pkg = "tachometer";
+ version = "0.2.0";
+ sha256 =
+ "de5e0bda346e31130f33ca118cdd4afccd0ba6728c571ccae35f65d3020074aa";
+ };
+ beamDeps = [ watcher_1_0_0 ];
+
+ meta = {
+ description = ''Scheduler instrumentation for BEAM in Elixir'';
+ license = stdenv.lib.licenses.gpl3;
+ homepage = "https://github.com/pavlos/tachometer";
+ };
+ } // packageOverrides)
+ ) {};
+
+ tachometer = tachometer_0_2_0;
tail_1_0_1 = callPackage
(
@@ -26846,6 +34664,29 @@ let
tail = tail_1_0_1;
+ tally_0_0_1 = callPackage
+ (
+ { buildMix, packageOverrides ? {}, fetchHex }:
+ buildMix ({
+ name = "tally";
+ version = "0.0.1";
+ src = fetchHex {
+ pkg = "tally";
+ version = "0.0.1";
+ sha256 =
+ "cd9e07c47f5ce6f01a33a98552aa028e4f9a4c0ec35a2cb16178a9bf37117a36";
+ };
+
+ meta = {
+ description = ''A reporting library for Elixir'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/boudra/tally";
+ };
+ } // packageOverrides)
+ ) {};
+
+ tally = tally_0_0_1;
+
tane_0_3_1 = callPackage
(
{ buildMix, packageOverrides ? {}, fetchHex }:
@@ -26869,17 +34710,48 @@ let
tane = tane_0_3_1;
- tap_0_1_0 = callPackage
+ tanuki_0_2_0 = callPackage
+ (
+ {
+ buildMix,
+ packageOverrides ? {},
+ fetchHex,
+ poison_1_5_2,
+ httpoison_0_8_3
+ }:
+ buildMix ({
+ name = "tanuki";
+ version = "0.2.0";
+ src = fetchHex {
+ pkg = "tanuki";
+ version = "0.2.0";
+ sha256 =
+ "f499d6bcb80fc29f2d0b68d16d8309cb25589583b1f4d0eb23cbc4fe5afbab8c";
+ };
+ beamDeps = [ poison_1_5_2 httpoison_0_8_3 ];
+
+ meta = {
+ description = ''GitLab API wrapper in Elixir, named after GitLabs
+ mascot'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/ZJvandeWeg/Tanuki";
+ };
+ } // packageOverrides)
+ ) {};
+
+ tanuki = tanuki_0_2_0;
+
+ tap_0_1_4 = callPackage
(
{ buildMix, packageOverrides ? {}, fetchHex }:
buildMix ({
name = "tap";
- version = "0.1.0";
+ version = "0.1.4";
src = fetchHex {
pkg = "tap";
- version = "0.1.0";
+ version = "0.1.4";
sha256 =
- "6016e69aafb18d75cb82ec30c2e09660eccf5cbd439b6a6d81a68b0825f13172";
+ "573cba12e7152f6e577fd485e9f0d834bdf1ea60229123bbfbaefcfd91879218";
};
meta = {
@@ -26890,7 +34762,7 @@ let
} // packageOverrides)
) {};
- tap = tap_0_1_0;
+ tap = tap_0_1_4;
tau_0_0_6 = callPackage
(
@@ -26915,9 +34787,40 @@ let
tau = tau_0_0_6;
+ taxon_search_0_0_1 = callPackage
+ (
+ {
+ buildMix,
+ packageOverrides ? {},
+ fetchHex,
+ poison_2_1_0,
+ httpotion_2_2_2
+ }:
+ buildMix ({
+ name = "taxon_search";
+ version = "0.0.1";
+ src = fetchHex {
+ pkg = "taxon_search";
+ version = "0.0.1";
+ sha256 =
+ "eb185015a4f238e8a540f60d187edb28b19e643526e595f4cb0e4b553bdf1a6f";
+ };
+ beamDeps = [ poison_2_1_0 httpotion_2_2_2 ];
+
+ meta = {
+ description = ''TaxonSearch is a tool for looking up species
+ names in Elixir.'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/annejohnson/taxon_search";
+ };
+ } // packageOverrides)
+ ) {};
+
+ taxon_search = taxon_search_0_0_1;
+
tds_0_5_4 = callPackage
(
- { buildMix, packageOverrides ? {}, fetchHex, decimal_1_1_1 }:
+ { buildMix, packageOverrides ? {}, fetchHex, decimal_1_1_2 }:
buildMix ({
name = "tds";
version = "0.5.4";
@@ -26927,7 +34830,7 @@ let
sha256 =
"110eb8d8a58d0d5fe629bfe75dacb56fa14bde441d2baffbfa2bb0c65ee66cba";
};
- beamDeps = [ decimal_1_1_1 ];
+ beamDeps = [ decimal_1_1_2 ];
meta = {
description = ''MSSQL / TDS Driver for Ecto.'';
@@ -26962,21 +34865,19 @@ let
tea_crypto = tea_crypto_1_0_0;
- teacup_0_3_2 = callPackage
+ teacup_0_3_4 = callPackage
(
- { buildRebar3, packageOverrides ? {}, fetchHex, simpre_0_1_0 }:
+ { buildRebar3, packageOverrides ? {}, fetchHex }:
buildRebar3 ({
name = "teacup";
- version = "0.3.2";
+ version = "0.3.4";
src = fetchHex {
pkg = "teacup";
- version = "0.3.2";
+ version = "0.3.4";
sha256 =
- "53d616e19d858524e34cf113f0f418c5631db4ee01430f7b3d19afcf9beb68b1";
+ "59495d566e810f481ec22b263e8bf0ed90efea9c9272e4980e36d921cd6ab5f9";
};
- beamDeps = [ simpre_0_1_0 ];
-
meta = {
description = ''Simple TCP client library for Erlang'';
license = stdenv.lib.licenses.mit;
@@ -26984,29 +34885,29 @@ let
} // packageOverrides)
) {};
- teacup = teacup_0_3_2;
+ teacup = teacup_0_3_4;
- teacup_nats_0_3_1 = callPackage
+ teacup_nats_0_4_0 = callPackage
(
{
buildRebar3,
packageOverrides ? {},
fetchHex,
- teacup_0_3_2,
+ teacup_0_3_4,
nats_msg_0_4_1,
jsx_2_8_0
}:
buildRebar3 ({
name = "teacup_nats";
- version = "0.3.1";
+ version = "0.4.0";
src = fetchHex {
pkg = "teacup_nats";
- version = "0.3.1";
+ version = "0.4.0";
sha256 =
- "5ffd0732ca26931784c8c9fc713545ef02449a8ae9208e3c8b079623a36044c9";
+ "f0f891f8f9b384517380d643ecf2121a9e383fd05416997778597c5647a9dd6f";
};
- beamDeps = [ teacup_0_3_2 nats_msg_0_4_1 jsx_2_8_0 ];
+ beamDeps = [ teacup_0_3_4 nats_msg_0_4_1 jsx_2_8_0 ];
meta = {
description = ''Teacup based NATS Client for Erlang'';
@@ -27016,19 +34917,19 @@ let
} // packageOverrides)
) {};
- teacup_nats = teacup_nats_0_3_1;
+ teacup_nats = teacup_nats_0_4_0;
- teamcity_exunit_formatter_0_2_0 = callPackage
+ teamcity_exunit_formatter_0_3_0 = callPackage
(
{ buildMix, packageOverrides ? {}, fetchHex }:
buildMix ({
name = "teamcity_exunit_formatter";
- version = "0.2.0";
+ version = "0.3.0";
src = fetchHex {
pkg = "teamcity_exunit_formatter";
- version = "0.2.0";
+ version = "0.3.0";
sha256 =
- "894a7791c21537bef8438bfe8706b2612e7248f1e316af0ba8c0a0d95c19f0dc";
+ "0d209ca85fcd3d8112be29288988ce6329b2b2e7c10cd7deab636508716de82f";
};
meta = {
@@ -27041,7 +34942,31 @@ let
} // packageOverrides)
) {};
- teamcity_exunit_formatter = teamcity_exunit_formatter_0_2_0;
+ teamcity_exunit_formatter = teamcity_exunit_formatter_0_3_0;
+
+ telegram_0_0_3 = callPackage
+ (
+ { buildMix, packageOverrides ? {}, fetchHex, poison_2_1_0 }:
+ buildMix ({
+ name = "telegram";
+ version = "0.0.3";
+ src = fetchHex {
+ pkg = "telegram";
+ version = "0.0.3";
+ sha256 =
+ "ad7b74cec90ade9090a9056aa69c055398fd3f60352b50c732849f06c503287d";
+ };
+ beamDeps = [ poison_2_1_0 ];
+
+ meta = {
+ description = ''Simple module for parsing Telegram bot updates'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/col/telegram";
+ };
+ } // packageOverrides)
+ ) {};
+
+ telegram = telegram_0_0_3;
telehashname_0_0_2 = callPackage
(
@@ -27119,6 +35044,54 @@ let
temp = temp_0_4_0;
+ tempdir_0_0_1 = callPackage
+ (
+ { buildMix, packageOverrides ? {}, fetchHex }:
+ buildMix ({
+ name = "tempdir";
+ version = "0.0.1";
+ src = fetchHex {
+ pkg = "tempdir";
+ version = "0.0.1";
+ sha256 =
+ "fa658ebbdbddfa729b8276652949d20ac2fbb4eff0261a61fb5f9c96fc943ffd";
+ };
+
+ meta = {
+ description = ''Simple Elixir Library for creating self-cleaning
+ tmp directories'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/andrewvy/tempdir";
+ };
+ } // packageOverrides)
+ ) {};
+
+ tempdir = tempdir_0_0_1;
+
+ tempfile_0_1_0 = callPackage
+ (
+ { buildMix, packageOverrides ? {}, fetchHex }:
+ buildMix ({
+ name = "tempfile";
+ version = "0.1.0";
+ src = fetchHex {
+ pkg = "tempfile";
+ version = "0.1.0";
+ sha256 =
+ "e6e505207616d1bb77e85ac4b4d9a11437ed1eb58eb06e99c582498602a9a45b";
+ };
+
+ meta = {
+ description = ''Auto cleaning and randomly named temporary
+ files'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/sorentwo/tempfile";
+ };
+ } // packageOverrides)
+ ) {};
+
+ tempfile = tempfile_0_1_0;
+
temporary_env_1_0_1 = callPackage
(
{ buildMix, packageOverrides ? {}, fetchHex }:
@@ -27143,6 +35116,66 @@ let
temporary_env = temporary_env_1_0_1;
+ tentabucket_0_0_1 = callPackage
+ (
+ {
+ buildMix,
+ packageOverrides ? {},
+ fetchHex,
+ httpoison_0_8_3,
+ exjsx_3_2_0
+ }:
+ buildMix ({
+ name = "tentabucket";
+ version = "0.0.1";
+ src = fetchHex {
+ pkg = "tentabucket";
+ version = "0.0.1";
+ sha256 =
+ "5784dad17f973efcc3c4ea7672927095864d58af1f830614e4c8f06c63d4822d";
+ };
+ beamDeps = [ httpoison_0_8_3 exjsx_3_2_0 ];
+
+ meta = {
+ description = ''Simple Bitbucket API client library for Elixir'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/duksis/tentabucket";
+ };
+ } // packageOverrides)
+ ) {};
+
+ tentabucket = tentabucket_0_0_1;
+
+ tentacat_0_5_1 = callPackage
+ (
+ {
+ buildMix,
+ packageOverrides ? {},
+ fetchHex,
+ httpoison_0_8_3,
+ exjsx_3_2_0
+ }:
+ buildMix ({
+ name = "tentacat";
+ version = "0.5.1";
+ src = fetchHex {
+ pkg = "tentacat";
+ version = "0.5.1";
+ sha256 =
+ "eabbffa3f2529848bb44ecdd1c140fdd06fb382a9c76a5f3ed018b87c2691946";
+ };
+ beamDeps = [ httpoison_0_8_3 exjsx_3_2_0 ];
+
+ meta = {
+ description = ''Simple Elixir wrapper for the GitHub API'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/edgurgel/tentacat";
+ };
+ } // packageOverrides)
+ ) {};
+
+ tentacat = tentacat_0_5_1;
+
term_table_0_0_2 = callPackage
(
{ buildMix, packageOverrides ? {}, fetchHex }:
@@ -27261,17 +35294,17 @@ let
tfidf = tfidf_0_1_2;
- the_fuzz_0_2_2 = callPackage
+ the_fuzz_0_3_0 = callPackage
(
{ buildMix, packageOverrides ? {}, fetchHex }:
buildMix ({
name = "the_fuzz";
- version = "0.2.2";
+ version = "0.3.0";
src = fetchHex {
pkg = "the_fuzz";
- version = "0.2.2";
+ version = "0.3.0";
sha256 =
- "fe851aee08b2e09b6e5cc5acb08c48691f7ac27f52d8400ad55bb045e1f350c5";
+ "f959818716b25f2c535648e9dc6dc8558c6b9fce5f337e1fcf11f913178087b8";
};
meta = {
@@ -27289,19 +35322,19 @@ let
} // packageOverrides)
) {};
- the_fuzz = the_fuzz_0_2_2;
+ the_fuzz = the_fuzz_0_3_0;
- thermex_0_0_2 = callPackage
+ thermex_0_1_0 = callPackage
(
{ buildMix, packageOverrides ? {}, fetchHex }:
buildMix ({
name = "thermex";
- version = "0.0.2";
+ version = "0.1.0";
src = fetchHex {
pkg = "thermex";
- version = "0.0.2";
+ version = "0.1.0";
sha256 =
- "10ac274c919012c31539ecd7c4b2b27ba413af46c4dad86029203dc84b956ec3";
+ "0fd2767f5fd6a73ab57d65f5797a84675341d923b5a4c10652223c4969846656";
};
meta = {
@@ -27312,32 +35345,129 @@ let
} // packageOverrides)
) {};
- thermex = thermex_0_0_2;
+ thermex = thermex_0_1_0;
- thrift_1_2_0 = callPackage
+ thoth_0_0_5 = callPackage
+ (
+ { buildMix, packageOverrides ? {}, fetchHex }:
+ buildMix ({
+ name = "thoth";
+ version = "0.0.5";
+ src = fetchHex {
+ pkg = "thoth";
+ version = "0.0.5";
+ sha256 =
+ "2712b42e23e730ec8e9a226e1d9f86fb003d60e7b44b0674c9d44132a0fc3a83";
+ };
+
+ meta = {
+ description = ''An Elixir digraph inspired local Graph DB'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/oakfang/thoth";
+ };
+ } // packageOverrides)
+ ) {};
+
+ thoth = thoth_0_0_5;
+
+ thrash_0_1_0 = callPackage
+ (
+ { buildMix, packageOverrides ? {}, fetchHex }:
+ buildMix ({
+ name = "thrash";
+ version = "0.1.0";
+ src = fetchHex {
+ pkg = "thrash";
+ version = "0.1.0";
+ sha256 =
+ "cebcabe309682f04d030f24f71498579fd16f688965cc5e29262a660082953e7";
+ };
+
+ meta = {
+ description = ''Fast serializer/deserializer for Apache Thrift`s
+ binary protocol.'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/dantswain/thrash";
+ };
+ } // packageOverrides)
+ ) {};
+
+ thrash = thrash_0_1_0;
+
+ thrift_1_2_1 = callPackage
(
{ buildMix, packageOverrides ? {}, fetchHex }:
buildMix ({
name = "thrift";
- version = "1.2.0";
+ version = "1.2.1";
src = fetchHex {
pkg = "thrift";
- version = "1.2.0";
+ version = "1.2.1";
sha256 =
- "c16a8192125b8067ff4e8d0391ae8d59e3428176ebda381b01db782dab8177e7";
+ "52dbe7126498efa96039b0b7689a96295af244cb6203f891f1b4b10c1f7f539d";
};
meta = {
longDescription = ''A collection of utilities for working with
- Thrift in Elixir. Provides a copy of the Erlang
- Thrift runtime.'';
+ Thrift in Elixir. Provides a copy of the Apache
+ Thrift Erlang runtime.'';
license = stdenv.lib.licenses.asl20;
homepage = "https://github.com/pinterest/elixir-thrift";
};
} // packageOverrides)
) {};
- thrift = thrift_1_2_0;
+ thrift = thrift_1_2_1;
+
+ tiled_map_0_0_1 = callPackage
+ (
+ { buildMix, packageOverrides ? {}, fetchHex, poison_2_1_0 }:
+ buildMix ({
+ name = "tiled_map";
+ version = "0.0.1";
+ src = fetchHex {
+ pkg = "tiled_map";
+ version = "0.0.1";
+ sha256 =
+ "c285c5293bb97d0e526c1cab14cdcf4b17dd12a76e2a0d707f1b71a4fcf9501e";
+ };
+ beamDeps = [ poison_2_1_0 ];
+
+ meta = {
+ description = ''Basic parsing of JSON Map Format from Tiled map
+ editor'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/kentdahl/tiled_map";
+ };
+ } // packageOverrides)
+ ) {};
+
+ tiled_map = tiled_map_0_0_1;
+
+ time_ago_words_0_0_2 = callPackage
+ (
+ { buildMix, packageOverrides ? {}, fetchHex, timex_2_1_6 }:
+ buildMix ({
+ name = "time_ago_words";
+ version = "0.0.2";
+ src = fetchHex {
+ pkg = "time_ago_words";
+ version = "0.0.2";
+ sha256 =
+ "8cf37434618123ce09ebbba90f9b86eca0fdfdce6cd2887b2a03e5d171515f50";
+ };
+ beamDeps = [ timex_2_1_6 ];
+
+ meta = {
+ longDescription = ''A simple function to return the approximate
+ difference between two times using words.'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/midwire/time_ago_words";
+ };
+ } // packageOverrides)
+ ) {};
+
+ time_ago_words = time_ago_words_0_0_2;
time_distance_0_0_1 = callPackage
(
@@ -27392,67 +35522,32 @@ let
time_seer = time_seer_0_0_6;
- timex_1_0_0_rc4 = callPackage
+ timex_0_19_5 = callPackage
(
{
buildMix,
packageOverrides ? {},
fetchHex,
- tzdata_0_1_201603,
- combine_0_7_0
+ tzdata_0_5_8,
+ combine_0_8_0
}:
buildMix ({
name = "timex";
- version = "1.0.0-rc4";
+ version = "0.19.5";
src = fetchHex {
pkg = "timex";
- version = "1.0.0-rc4";
+ version = "0.19.5";
sha256 =
- "3da1356901fe205455404c83d2ea7804b63ed47e3a2cdb428545e568e05d6885";
+ "be1985ab99a6aebc3672b1d82b27e409c9a7af4658f3cc5900fa8754e159b02c";
};
- beamDeps = [ tzdata_0_1_201603 combine_0_7_0 ];
+ beamDeps = [ tzdata_0_5_8 combine_0_8_0 ];
meta = {
- longDescription = ''A comprehensive date/time library for Elixir
- Fully timezone-aware, using the Olson Timezone
- database - Supports local-timezone lookups -
- Supports POSIX-style timezones - Supports
- lookups of any Olson tzdata timezones - Supports
- arbitrary shifts across time and through
- timezones, including ambiguous time periods,
- non-existent time periods, and leaps. Provides
- both Date and DateTime types, for use depending
- on your needs, with an AmbiguousDateTime type
- for handling those DateTime values which fall on
- an ambigouos timezone period. Extendable via
- Convertable and Comparable protocols, so you can
- use Timex with your own types! Locale-aware,
- currently only supports \"ru\" and \"en\", but
- more will be added over time. Provides a broad
- array of date/time helper functions -
- shifting/adding/subtracting - diffing -
- comparing/before?/after?/between? - conversions
- - get day of week, week of year, ISO dates, and
- names for each - get the beginning or ending of
- a given week - get the beginning or ending of a
- year, quarter, week, or month - get days in a
- given month - normalization Provides a broad
- array of time-specific helpers - convert to and
- from units: weeks, days, hours, seconds, ms, and
- microseconds - measure execution time -
- diff/compare - to/from 12/24 hour clock times -
- add/subtract Safe date/time string formatting
- and parsing - Informative parser errors -
- Supports strftime, as well as an easier to read
- formatter, i.e. `{ISO:Basic}`, `{YYYY}` -
- Supports many formats out of the box: ISO8601
- basic and extended, RFC822, RFC1123, RFC3339,
- ANSIC, UNIX - Relative time formatter (i.e. \"2
- years from now\") Extendable - Protocols for
- core modules like the parser tokenizer - Easy to
- wrap to add extra functionality Can be used with
- Phoenix and Ecto when used with timex_ecto
- package'';
+ longDescription = ''Timex is a rich, comprehensive Date/Time
+ library for Elixir projects, with full timezone
+ support via the :tzdata package. If you need to
+ manipulate dates, times, datetimes, timestamps,
+ etc., then Timex is for you!'';
license = stdenv.lib.licenses.mit;
homepage = "https://github.com/bitwalker/timex";
};
@@ -27465,8 +35560,8 @@ let
buildMix,
packageOverrides ? {},
fetchHex,
- tzdata_0_1_201603,
- combine_0_7_0
+ tzdata_0_0_1,
+ combine_0_8_0
}:
buildMix ({
name = "timex";
@@ -27477,154 +35572,59 @@ let
sha256 =
"cbc359d21b5e2e694ab437e614bb4198af5be1031da4969dfd7ddf1b56064c88";
};
- beamDeps = [ tzdata_0_1_201603 combine_0_7_0 ];
+ beamDeps = [ tzdata_0_0_1 combine_0_8_0 ];
meta = {
- longDescription = ''A comprehensive date/time library for Elixir
- Fully timezone-aware, using the Olson Timezone
- database - Supports local-timezone lookups -
- Supports POSIX-style timezones - Supports
- lookups of any Olson tzdata timezones - Supports
- arbitrary shifts across time and through
- timezones, including ambiguous time periods,
- non-existent time periods, and leaps. Provides
- both Date and DateTime types, for use depending
- on your needs, with an AmbiguousDateTime type
- for handling those DateTime values which fall on
- an ambigouos timezone period. Extendable via
- Convertable and Comparable protocols, so you can
- use Timex with your own types! Locale-aware,
- currently only supports \"ru\" and \"en\", but
- more will be added over time. Provides a broad
- array of date/time helper functions -
- shifting/adding/subtracting - diffing -
- comparing/before?/after?/between? - conversions
- - get day of week, week of year, ISO dates, and
- names for each - get the beginning or ending of
- a given week - get the beginning or ending of a
- year, quarter, week, or month - get days in a
- given month - normalization Provides a broad
- array of time-specific helpers - convert to and
- from units: weeks, days, hours, seconds, ms, and
- microseconds - measure execution time -
- diff/compare - to/from 12/24 hour clock times -
- add/subtract Safe date/time string formatting
- and parsing - Informative parser errors -
- Supports strftime, as well as an easier to read
- formatter, i.e. `{ISO:Basic}`, `{YYYY}` -
- Supports many formats out of the box: ISO8601
- basic and extended, RFC822, RFC1123, RFC3339,
- ANSIC, UNIX - Relative time formatter (i.e. \"2
- years from now\") Extendable - Protocols for
- core modules like the parser tokenizer - Easy to
- wrap to add extra functionality Can be used with
- Phoenix and Ecto when used with timex_ecto
- package'';
+ longDescription = ''Timex is a rich, comprehensive Date/Time
+ library for Elixir projects, with full timezone
+ support via the :tzdata package. If you need to
+ manipulate dates, times, datetimes, timestamps,
+ etc., then Timex is for you!'';
license = stdenv.lib.licenses.mit;
homepage = "https://github.com/bitwalker/timex";
};
} // packageOverrides)
) {};
- timex_2_1_3 = callPackage
+ timex_2_1_6 = callPackage
(
{
buildMix,
packageOverrides ? {},
fetchHex,
- tzdata_0_1_201603,
- gettext_0_10_0,
- combine_0_7_0
+ gettext_0_11_0,
+ combine_0_8_0,
+ tzdata_0_0_1
}:
buildMix ({
name = "timex";
- version = "2.1.3";
+ version = "2.1.6";
src = fetchHex {
pkg = "timex";
- version = "2.1.3";
+ version = "2.1.6";
sha256 =
- "d39de4fc4ca4ceb08841f4ea362a5d3e6c07d6300b77d18581b0c034a8c8ac60";
+ "c0e3b74beb0734f0602eed0de5bbcce984fc435f258c974bde4169a407330d12";
};
- beamDeps = [ tzdata_0_1_201603 gettext_0_10_0 combine_0_7_0 ];
+ beamDeps = [ gettext_0_11_0 combine_0_8_0 tzdata_0_0_1 ];
meta = {
- longDescription = ''A comprehensive date/time library for Elixir
- Fully timezone-aware, using the Olson Timezone
- database - Supports local-timezone lookups -
- Supports POSIX-style timezones - Supports
- lookups of any Olson tzdata timezones - Supports
- arbitrary shifts across time and through
- timezones, including ambiguous time periods,
- non-existent time periods, and leaps. Provides
- both Date and DateTime types, for use depending
- on your needs, with an AmbiguousDateTime type
- for handling those DateTime values which fall on
- an ambigouos timezone period. Extendable via
- Convertable and Comparable protocols, so you can
- use Timex with your own types! Locale-aware,
- currently only supports \"ru\" and \"en\", but
- more will be added over time. Provides a broad
- array of date/time helper functions -
- shifting/adding/subtracting - diffing -
- comparing/before?/after?/between? - conversions
- - get day of week, week of year, ISO dates, and
- names for each - get the beginning or ending of
- a given week - get the beginning or ending of a
- year, quarter, week, or month - get days in a
- given month - normalization Provides a broad
- array of time-specific helpers - convert to and
- from units: weeks, days, hours, seconds, ms, and
- microseconds - measure execution time -
- diff/compare - to/from 12/24 hour clock times -
- add/subtract Safe date/time string formatting
- and parsing - Informative parser errors -
- Supports strftime, as well as an easier to read
- formatter, i.e. `{ISO:Basic}`, `{YYYY}` -
- Supports many formats out of the box: ISO8601
- basic and extended, RFC822, RFC1123, RFC3339,
- ANSIC, UNIX - Relative time formatter (i.e. \"2
- years from now\") Extendable - Protocols for
- core modules like the parser tokenizer - Easy to
- wrap to add extra functionality Can be used with
- Phoenix and Ecto when used with timex_ecto
- package'';
+ longDescription = ''Timex is a rich, comprehensive Date/Time
+ library for Elixir projects, with full timezone
+ support via the :tzdata package. If you need to
+ manipulate dates, times, datetimes, timestamps,
+ etc., then Timex is for you!'';
license = stdenv.lib.licenses.mit;
homepage = "https://github.com/bitwalker/timex";
};
} // packageOverrides)
) {};
- timex = timex_2_1_3;
-
- timex_interval_0_6_0 = callPackage
- (
- { buildMix, packageOverrides ? {}, fetchHex, timex_1_0_0_rc4 }:
- buildMix ({
- name = "timex_interval";
- version = "0.6.0";
- src = fetchHex {
- pkg = "timex_interval";
- version = "0.6.0";
- sha256 =
- "c2d932e892cb15dacabafdc456040208c285c6d00087f688282d6693a6bbb04e";
- };
- beamDeps = [ timex_1_0_0_rc4 ];
-
- meta = {
- description = ''A date/time interval library for Elixir projects,
- based on Timex.'';
- license = stdenv.lib.licenses.apsl20;
- homepage = "https://github.com/atabary/timex-interval";
- };
- } // packageOverrides)
- ) {};
-
- timex_interval = timex_interval_0_6_0;
+ timex = timex_2_1_6;
tinymt_0_3_1 = callPackage
(
- { buildErlangMk, packageOverrides ? {}, fetchHex }:
- buildErlangMk ({
+ { buildMix, packageOverrides ? {}, fetchHex }:
+ buildMix ({
name = "tinymt";
version = "0.3.1";
src = fetchHex {
@@ -27644,17 +35644,40 @@ let
tinymt = tinymt_0_3_1;
- tirexs_0_8_0_beta5 = callPackage
+ tipo_0_0_3 = callPackage
+ (
+ { buildMix, packageOverrides ? {}, fetchHex }:
+ buildMix ({
+ name = "tipo";
+ version = "0.0.3";
+ src = fetchHex {
+ pkg = "tipo";
+ version = "0.0.3";
+ sha256 =
+ "3feeb200a1806b41afe6404b09493fb98a140ab0c642c2c0328c96cbf9cf66c8";
+ };
+
+ meta = {
+ description = ''Type checking for primitive elixir data types'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/jwaterfaucett/tipo";
+ };
+ } // packageOverrides)
+ ) {};
+
+ tipo = tipo_0_0_3;
+
+ tirexs_0_8_0_beta6 = callPackage
(
{ buildMix, packageOverrides ? {}, fetchHex, exjsx_3_2_0 }:
buildMix ({
name = "tirexs";
- version = "0.8.0-beta5";
+ version = "0.8.0-beta6";
src = fetchHex {
pkg = "tirexs";
- version = "0.8.0-beta5";
+ version = "0.8.0-beta6";
sha256 =
- "5aec67541a1361aca21e6849c78755727596a6e93e2ad90d53add537892d399c";
+ "eee9deb8bb020f482ac9e6e77505819931b2db1050e7b999643bf9ca73beab15";
};
beamDeps = [ exjsx_3_2_0 ];
@@ -27667,7 +35690,30 @@ let
} // packageOverrides)
) {};
- tirexs = tirexs_0_8_0_beta5;
+ tirexs_0_8_2 = callPackage
+ (
+ { buildMix, packageOverrides ? {}, fetchHex, exjsx_3_2_0 }:
+ buildMix ({
+ name = "tirexs";
+ version = "0.8.2";
+ src = fetchHex {
+ pkg = "tirexs";
+ version = "0.8.2";
+ sha256 =
+ "0412e42030723f179579987bb9f6281cb0dc0db95134296058e2e95554a5b198";
+ };
+ beamDeps = [ exjsx_3_2_0 ];
+
+ meta = {
+ description = ''An Elixir flavored DSL for building JSON based
+ queries to Elasticsearch engine'';
+ license = stdenv.lib.licenses.asl20;
+ homepage = "https://github.com/Zatvobor/tirexs";
+ };
+ } // packageOverrides)
+ ) {};
+
+ tirexs = tirexs_0_8_2;
tlv_0_1_0 = callPackage
(
@@ -27692,6 +35738,33 @@ let
tlv = tlv_0_1_0;
+ tmdb_0_0_6 = callPackage
+ (
+ {
+ buildMix,
+ packageOverrides ? {},
+ fetchHex,
+ poison_1_4_0,
+ httpoison_0_8_3,
+ exjsx_3_1_0
+ }:
+ buildMix ({
+ name = "tmdb";
+ version = "0.0.6";
+ src = fetchHex {
+ pkg = "tmdb";
+ version = "0.0.6";
+ sha256 =
+ "4cbad6ffa556a0eeecb22c3960d47451e918313e5651808439f039403dd38d3a";
+ };
+ beamDeps = [ poison_1_4_0 httpoison_0_8_3 exjsx_3_1_0 ];
+
+ meta = { };
+ } // packageOverrides)
+ ) {};
+
+ tmdb = tmdb_0_0_6;
+
todo_1_2_0 = callPackage
(
{ buildMix, packageOverrides ? {}, fetchHex }:
@@ -27715,14 +35788,103 @@ let
todo = todo_1_2_0;
+ togglex_0_2_0 = callPackage
+ (
+ {
+ buildMix,
+ packageOverrides ? {},
+ fetchHex,
+ poison_2_1_0,
+ httpoison_0_8_3
+ }:
+ buildMix ({
+ name = "togglex";
+ version = "0.2.0";
+ src = fetchHex {
+ pkg = "togglex";
+ version = "0.2.0";
+ sha256 =
+ "725b4299c5aad1c87900e667d6a01c88ba18f8e545283f31d2f726745c174e30";
+ };
+ beamDeps = [ poison_2_1_0 httpoison_0_8_3 ];
+
+ meta = {
+ description = ''Simple Elixir wrapper for the Toggl API'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/diacode/togglex";
+ };
+ } // packageOverrides)
+ ) {};
+
+ togglex = togglex_0_2_0;
+
+ toglx_0_0_1 = callPackage
+ (
+ {
+ buildMix,
+ packageOverrides ? {},
+ fetchHex,
+ togglex_0_2_0,
+ configparser_ex_0_2_1,
+ argument_parser_0_1_3
+ }:
+ buildMix ({
+ name = "toglx";
+ version = "0.0.1";
+ src = fetchHex {
+ pkg = "toglx";
+ version = "0.0.1";
+ sha256 =
+ "e6952e6955f5d61d479254a9b4a99831c4d73237e6fc8b39eeea6e4277979ba5";
+ };
+ beamDeps = [
+ togglex_0_2_0
+ configparser_ex_0_2_1
+ argument_parser_0_1_3
+ ];
+
+ meta = {
+ description = ''Toggl(ex) time tracking client'';
+ license = stdenv.lib.licenses.free;
+ homepage = "https://github.com/kennyballou/toglx";
+ };
+ } // packageOverrides)
+ ) {};
+
+ toglx = toglx_0_0_1;
+
+ tonic_0_0_1 = callPackage
+ (
+ { buildMix, packageOverrides ? {}, fetchHex }:
+ buildMix ({
+ name = "tonic";
+ version = "0.0.1";
+ src = fetchHex {
+ pkg = "tonic";
+ version = "0.0.1";
+ sha256 =
+ "a94df1788fe102a001ec565846cf8b15d0eacc2e1644bf21c8c510b8294d24a6";
+ };
+
+ meta = {
+ description = ''A DSL for conveniently loading binary
+ data/files.'';
+ license = stdenv.lib.licenses.bsd2;
+ homepage = "https://github.com/ScrimpyCat/Tonic";
+ };
+ } // packageOverrides)
+ ) {};
+
+ tonic = tonic_0_0_1;
+
toniq_1_0_5 = callPackage
(
{
buildMix,
packageOverrides ? {},
fetchHex,
- uuid_1_1_3,
- exredis_0_2_3
+ uuid_1_1_4,
+ exredis_0_2_4
}:
buildMix ({
name = "toniq";
@@ -27733,7 +35895,7 @@ let
sha256 =
"aa67c43131393872d82d53b9a8bf4a3d5b97c52a6588d53aaa61c29828e0664a";
};
- beamDeps = [ uuid_1_1_3 exredis_0_2_3 ];
+ beamDeps = [ uuid_1_1_4 exredis_0_2_4 ];
meta = {
longDescription = ''Simple and reliable background job processing
@@ -27772,17 +35934,17 @@ let
towel = towel_0_2_1;
- tqdm_0_0_1 = callPackage
+ tqdm_0_0_2 = callPackage
(
{ buildMix, packageOverrides ? {}, fetchHex }:
buildMix ({
name = "tqdm";
- version = "0.0.1";
+ version = "0.0.2";
src = fetchHex {
pkg = "tqdm";
- version = "0.0.1";
+ version = "0.0.2";
sha256 =
- "70636f54515581abefb88020a5393b87a64186b7fa4a59a50e52854f999319bc";
+ "2791905b98c0d3371ebf98fd7185d0af58ca8d2911182d908b970afab0b8801d";
};
meta = {
@@ -27795,7 +35957,31 @@ let
} // packageOverrides)
) {};
- tqdm = tqdm_0_0_1;
+ tqdm = tqdm_0_0_2;
+
+ tracing_helper_0_0_3 = callPackage
+ (
+ { buildMix, packageOverrides ? {}, fetchHex }:
+ buildMix ({
+ name = "tracing_helper";
+ version = "0.0.3";
+ src = fetchHex {
+ pkg = "tracing_helper";
+ version = "0.0.3";
+ sha256 =
+ "a1d22c5901ed688acab63c0195aba2826f774a8d7e7f1b882878b715cd4688fb";
+ };
+
+ meta = {
+ description = ''TracingHelper is a helper module with predefined
+ tracing functions'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/andrzejsliwa/tracing_helper";
+ };
+ } // packageOverrides)
+ ) {};
+
+ tracing_helper = tracing_helper_0_0_3;
trackline_0_0_1 = callPackage
(
@@ -27806,7 +35992,7 @@ let
timex_1_0_2,
exml_0_1_0,
exmerl_0_1_1,
- erlsom_1_2_1,
+ erlsom_1_4_1,
apex_0_3_7
}:
buildMix ({
@@ -27822,7 +36008,7 @@ let
timex_1_0_2
exml_0_1_0
exmerl_0_1_1
- erlsom_1_2_1
+ erlsom_1_4_1
apex_0_3_7
];
@@ -27836,6 +36022,39 @@ let
trackline = trackline_0_0_1;
+ trackstar_0_0_1 = callPackage
+ (
+ {
+ buildMix,
+ packageOverrides ? {},
+ fetchHex,
+ poison_2_1_0,
+ erlsom_1_4_1
+ }:
+ buildMix ({
+ name = "trackstar";
+ version = "0.0.1";
+ src = fetchHex {
+ pkg = "trackstar";
+ version = "0.0.1";
+ sha256 =
+ "04a7634755da273b640737c8bef015f5ef4360524940fa763c3100e13db47cd4";
+ };
+ beamDeps = [ poison_2_1_0 erlsom_1_4_1 ];
+
+ meta = {
+ longDescription = ''Trackstar is a GPX parser. Specify the path
+ to a GPX file and it will output a GeoJSON of
+ the track as a LineString. It currently works
+ with Strava-exported GPX files.'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/andydangerous/trackstar";
+ };
+ } // packageOverrides)
+ ) {};
+
+ trackstar = trackstar_0_0_1;
+
tradie_0_0_1 = callPackage
(
{ buildMix, packageOverrides ? {}, fetchHex }:
@@ -27868,7 +36087,7 @@ let
buildMix,
packageOverrides ? {},
fetchHex,
- plug_1_1_3,
+ plug_1_1_5,
cowboy_1_0_4
}:
buildMix ({
@@ -27880,7 +36099,7 @@ let
sha256 =
"16e2485b7069c8e025460d183d4711d9c5bbf46ae532dde859cc6623d12bfc71";
};
- beamDeps = [ plug_1_1_3 cowboy_1_0_4 ];
+ beamDeps = [ plug_1_1_5 cowboy_1_0_4 ];
meta = {
longDescription = ''An elixir plug to support legacy APIs that
@@ -27927,17 +36146,77 @@ let
transducer = transducer_0_1_0;
- trie_1_5_0 = callPackage
+ travis_ex_0_0_2 = callPackage
+ (
+ {
+ buildMix,
+ packageOverrides ? {},
+ fetchHex,
+ poison_1_5_2,
+ httpoison_0_8_3
+ }:
+ buildMix ({
+ name = "travis_ex";
+ version = "0.0.2";
+ src = fetchHex {
+ pkg = "travis_ex";
+ version = "0.0.2";
+ sha256 =
+ "80589ec01596dfc1e02cef61ce0adc3c9b73977b56a528e214c37af079efa10a";
+ };
+ beamDeps = [ poison_1_5_2 httpoison_0_8_3 ];
+
+ meta = {
+ description = ''Travis-ci API client library for Elixir'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/duksis/travis_ex";
+ };
+ } // packageOverrides)
+ ) {};
+
+ travis_ex = travis_ex_0_0_2;
+
+ trello_1_3_0 = callPackage
+ (
+ {
+ buildMix,
+ packageOverrides ? {},
+ fetchHex,
+ poison_2_1_0,
+ httpoison_0_8_3
+ }:
+ buildMix ({
+ name = "trello";
+ version = "1.3.0";
+ src = fetchHex {
+ pkg = "trello";
+ version = "1.3.0";
+ sha256 =
+ "776d6514b766a9290b102bf8682dd13d1b63b1cab68fd73880a6da3b81014cd6";
+ };
+ beamDeps = [ poison_2_1_0 httpoison_0_8_3 ];
+
+ meta = {
+ description = ''Trello wrapper for elixir api'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/mikaak/trello-elixir";
+ };
+ } // packageOverrides)
+ ) {};
+
+ trello = trello_1_3_0;
+
+ trie_1_4_0 = callPackage
(
{ buildRebar3, packageOverrides ? {}, fetchHex }:
buildRebar3 ({
name = "trie";
- version = "1.5.0";
+ version = "1.4.0";
src = fetchHex {
pkg = "trie";
- version = "1.5.0";
+ version = "1.4.0";
sha256 =
- "613981536e33f58d92e44bd31801376f71deee0e57c63372fe8ab5fbbc37f7dc";
+ "befef786527fd17678716f9dc86a064a11811e7087094967204715804a23ea4b";
};
meta = {
@@ -28034,6 +36313,127 @@ let
tsuru = tsuru_1_4_0;
+ tubex_0_0_7 = callPackage
+ (
+ {
+ buildMix,
+ packageOverrides ? {},
+ fetchHex,
+ poison_2_1_0,
+ httpoison_0_8_3
+ }:
+ buildMix ({
+ name = "tubex";
+ version = "0.0.7";
+ src = fetchHex {
+ pkg = "tubex";
+ version = "0.0.7";
+ sha256 =
+ "8b34ade3d0484ee5ebb1155c16454d545284d0c215bf999a206cbcc198acea83";
+ };
+ beamDeps = [ poison_2_1_0 httpoison_0_8_3 ];
+
+ meta = {
+ description = ''Elixir wrapper of YouTube Data API v3'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/yoavlt/tubex";
+ };
+ } // packageOverrides)
+ ) {};
+
+ tubex = tubex_0_0_7;
+
+ tunnerl_0_2_2 = callPackage
+ (
+ {
+ buildRebar3,
+ packageOverrides ? {},
+ fetchHex,
+ ranch_1_2_1,
+ lager_3_0_2
+ }:
+ buildRebar3 ({
+ name = "tunnerl";
+ version = "0.2.2";
+ src = fetchHex {
+ pkg = "tunnerl";
+ version = "0.2.2";
+ sha256 =
+ "8b630b43d77f5c92901d6a1909be7ce3c8cd5668fa05263e2fcdf73b00d63bd0";
+ };
+
+ beamDeps = [ ranch_1_2_1 lager_3_0_2 ];
+
+ meta = {
+ description = ''SOCKS4 and SOCKS5 proxy server'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/surik/tunnerl";
+ };
+ } // packageOverrides)
+ ) {};
+
+ tunnerl = tunnerl_0_2_2;
+
+ tvdb_0_0_1 = callPackage
+ (
+ {
+ buildMix,
+ packageOverrides ? {},
+ fetchHex,
+ poison_2_1_0,
+ httpoison_0_8_3
+ }:
+ buildMix ({
+ name = "tvdb";
+ version = "0.0.1";
+ src = fetchHex {
+ pkg = "tvdb";
+ version = "0.0.1";
+ sha256 =
+ "627d0ce97938039748960550abe9bebe1f55be39701f85e85ff9f2b6e4af9f00";
+ };
+ beamDeps = [ poison_2_1_0 httpoison_0_8_3 ];
+
+ meta = {
+ description = ''Wrapper for TVDb API'';
+ license = stdenv.lib.licenses.asl20;
+ homepage = "https://github.com/markman123/tvdb";
+ };
+ } // packageOverrides)
+ ) {};
+
+ tvdb = tvdb_0_0_1;
+
+ twilex_0_0_2 = callPackage
+ (
+ {
+ buildMix,
+ packageOverrides ? {},
+ fetchHex,
+ poison_2_1_0,
+ httpoison_0_8_3
+ }:
+ buildMix ({
+ name = "twilex";
+ version = "0.0.2";
+ src = fetchHex {
+ pkg = "twilex";
+ version = "0.0.2";
+ sha256 =
+ "b032ee0327c90a9a0545756d771778129d6ded10dfade86b2c8dd1eb80fb56de";
+ };
+ beamDeps = [ poison_2_1_0 httpoison_0_8_3 ];
+
+ meta = {
+ description = ''A Twilio client for elixir.'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/hisea/twilex";
+ };
+ } // packageOverrides)
+ ) {};
+
+ twilex = twilex_0_0_2;
+
type_0_0_2 = callPackage
(
{ buildMix, packageOverrides ? {}, fetchHex }:
@@ -28057,6 +36457,59 @@ let
type = type_0_0_2;
+ typeformx_0_0_1 = callPackage
+ (
+ {
+ buildMix,
+ packageOverrides ? {},
+ fetchHex,
+ poison_1_5_2,
+ httpoison_0_8_3
+ }:
+ buildMix ({
+ name = "typeformx";
+ version = "0.0.1";
+ src = fetchHex {
+ pkg = "typeformx";
+ version = "0.0.1";
+ sha256 =
+ "8f6f1613f53f8c5012eb6d05276f5d305bdb9d4b0e94926680b536d0e1d94a62";
+ };
+ beamDeps = [ poison_1_5_2 httpoison_0_8_3 ];
+
+ meta = {
+ description = ''An Elixir client library for the Typeform API
+ (typeform.io)'';
+ license = stdenv.lib.licenses.asl20;
+ homepage = "https://github.com/netflakes/TypeformX";
+ };
+ } // packageOverrides)
+ ) {};
+
+ typeformx = typeformx_0_0_1;
+
+ tzdata_0_0_1 = callPackage
+ (
+ { buildMix, packageOverrides ? {}, fetchHex }:
+ buildMix ({
+ name = "tzdata";
+ version = "0.0.1";
+ src = fetchHex {
+ pkg = "tzdata";
+ version = "0.0.1";
+ sha256 =
+ "67020b94ec70faceef822dc5bffea0361c4fc9d812c8872c4edb6a2084b16b25";
+ };
+
+ meta = {
+ description = ''Tzdata is a parser and library for the tz
+ database.'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/lau/tzdata";
+ };
+ } // packageOverrides)
+ ) {};
+
tzdata_0_1_201603 = callPackage
(
{ buildMix, packageOverrides ? {}, fetchHex }:
@@ -28079,17 +36532,69 @@ let
} // packageOverrides)
) {};
- ua_inspector_0_11_0 = callPackage
+ tzdata_0_5_8 = callPackage
+ (
+ { buildMix, packageOverrides ? {}, fetchHex, hackney_1_6_0 }:
+ buildMix ({
+ name = "tzdata";
+ version = "0.5.8";
+ src = fetchHex {
+ pkg = "tzdata";
+ version = "0.5.8";
+ sha256 =
+ "218ab89e51fb297f1e4bf512e9e551b8214d361e61b7683179da303ba5be8c60";
+ };
+ beamDeps = [ hackney_1_6_0 ];
+
+ meta = {
+ description = ''Tzdata is a parser and library for the tz
+ database.'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/lau/tzdata";
+ };
+ } // packageOverrides)
+ ) {};
+
+ tzdata = tzdata_0_5_8;
+
+ ua_classifier_1_0_0 = callPackage
+ (
+ { buildRebar3, packageOverrides ? {}, fetchHex }:
+ buildRebar3 ({
+ name = "ua_classifier";
+ version = "1.0.0";
+ src = fetchHex {
+ pkg = "ua_classifier";
+ version = "1.0.0";
+ sha256 =
+ "59c3b3ed96a10fe05e91202a3ca983b40215c41dde0733fe6dd8a6841b6e315d";
+ };
+ compilePorts = true;
+ buildPlugins = [ pc ];
+
+
+ meta = {
+ description = ''Erlang User Agent Classifier - NIF for
+ WeatherChannel dClass'';
+ license = stdenv.lib.licenses.apsl20;
+ homepage = "https://github.com/zotonic/ua_classifier";
+ };
+ } // packageOverrides)
+ ) {};
+
+ ua_classifier = ua_classifier_1_0_0;
+
+ ua_inspector_0_11_1 = callPackage
(
{ buildMix, packageOverrides ? {}, fetchHex, poolboy_1_5_1 }:
buildMix ({
name = "ua_inspector";
- version = "0.11.0";
+ version = "0.11.1";
src = fetchHex {
pkg = "ua_inspector";
- version = "0.11.0";
+ version = "0.11.1";
sha256 =
- "ddc05b1293962317caab370610131e950a697a62ac7d041c885e5540dba1cf72";
+ "943787d2a766ed8fd50e30f6787c9775304bd1215ffbdb5fe0b445153af8d02b";
};
beamDeps = [ poolboy_1_5_1 ];
@@ -28101,7 +36606,7 @@ let
} // packageOverrides)
) {};
- ua_inspector = ua_inspector_0_11_0;
+ ua_inspector = ua_inspector_0_11_1;
uber_0_1_0 = callPackage
(
@@ -28152,7 +36657,7 @@ let
ueberauth_0_2_0 = callPackage
(
- { buildMix, packageOverrides ? {}, fetchHex, plug_1_1_3 }:
+ { buildMix, packageOverrides ? {}, fetchHex, plug_1_1_5 }:
buildMix ({
name = "ueberauth";
version = "0.2.0";
@@ -28162,7 +36667,7 @@ let
sha256 =
"d6ee9cfe96be0e2b4005cb482b8e29c20ae0d6f7332ea9f686397c4ab20bf4de";
};
- beamDeps = [ plug_1_1_3 ];
+ beamDeps = [ plug_1_1_5 ];
meta = {
description = ''An Elixir Authentication System for Plug-based
@@ -28182,7 +36687,7 @@ let
packageOverrides ? {},
fetchHex,
ueberauth_0_2_0,
- plug_1_1_3
+ plug_1_1_5
}:
buildMix ({
name = "ueberauth_identity";
@@ -28193,7 +36698,7 @@ let
sha256 =
"ebbb4d7fe6c94053486a32794ab2a561f004f01fd1099c7e0a69901dc32c51ca";
};
- beamDeps = [ ueberauth_0_2_0 plug_1_1_3 ];
+ beamDeps = [ ueberauth_0_2_0 plug_1_1_5 ];
meta = {
description = ''An Ueberauth strategy for basic
@@ -28206,30 +36711,36 @@ let
ueberauth_identity = ueberauth_identity_0_2_3;
- ui_0_1_1 = callPackage
+ ueberauth_twitter_0_2_2 = callPackage
(
- { buildRebar3, packageOverrides ? {}, fetchHex }:
- buildRebar3 ({
- name = "ui";
- version = "0.1.1";
+ {
+ buildMix,
+ packageOverrides ? {},
+ fetchHex,
+ ueberauth_0_2_0,
+ httpoison_0_8_3
+ }:
+ buildMix ({
+ name = "ueberauth_twitter";
+ version = "0.2.2";
src = fetchHex {
- pkg = "ui";
- version = "0.1.1";
+ pkg = "ueberauth_twitter";
+ version = "0.2.2";
sha256 =
- "492da59ca39055c0dfc794a2ebd564adb9ed635402c7b46659981f32aa9d94c1";
+ "911a227b8290e8d65cee8d45015477d4ea51dbcf637c8a41ff88b34fcc5ab65a";
};
-
- buildPlugins = [ rebar3_hex ];
-
+ beamDeps = [ ueberauth_0_2_0 httpoison_0_8_3 ];
meta = {
- description = ''An OTP application'';
-
+ description = ''An Uberauth strategy for Twitter
+ authentication.'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/ueberauth/ueberauth_twitter";
};
} // packageOverrides)
) {};
- ui = ui_0_1_1;
+ ueberauth_twitter = ueberauth_twitter_0_2_2;
uk_postcode_0_3_0 = callPackage
(
@@ -28256,28 +36767,36 @@ let
uk_postcode = uk_postcode_0_3_0;
- ulitos_0_3_0 = callPackage
+ unicode_0_0_1 = callPackage
(
- { buildRebar3, packageOverrides ? {}, fetchHex }:
- buildRebar3 ({
- name = "ulitos";
- version = "0.3.0";
+ { buildMix, packageOverrides ? {}, fetchHex, earmark_0_2_1 }:
+ buildMix ({
+ name = "unicode";
+ version = "0.0.1";
src = fetchHex {
- pkg = "ulitos";
- version = "0.3.0";
+ pkg = "unicode";
+ version = "0.0.1";
sha256 =
- "385f5fdc4cb2ea9f2ae3abcdec3f8dcbb120095f9d50acfd4ee58ecef18429d3";
+ "646bd8c3c9967a26b14aaa167e1bd08451d9db885d2736046b5fe5ada04bd2d6";
};
+ beamDeps = [ earmark_0_2_1 ];
meta = {
- description = ''Erlang common utils'';
-
- homepage = "https://github.com/palkan/ulitos";
+ longDescription = ''The _Unicode_ package provides functionality
+ to check properties of unicode codepoints,
+ graphemes and strings. This is often useful when
+ checking or validating the contents of strings
+ in situations where using Regular Expressions is
+ not necessary and/or too slow. The Unicode
+ package is based on Version 8.0.0 of the Unicode
+ standard.'';
+ license = stdenv.lib.licenses.asl20;
+ homepage = "https://github.com/Qqwy/elixir-unicode";
};
} // packageOverrides)
) {};
- ulitos = ulitos_0_3_0;
+ unicode = unicode_0_0_1;
unit_fun_0_5_1 = callPackage
(
@@ -28326,6 +36845,66 @@ let
units = units_1_0_0;
+ untappd_0_0_1 = callPackage
+ (
+ {
+ buildMix,
+ packageOverrides ? {},
+ fetchHex,
+ httpoison_0_8_3,
+ exjsx_3_2_0
+ }:
+ buildMix ({
+ name = "untappd";
+ version = "0.0.1";
+ src = fetchHex {
+ pkg = "untappd";
+ version = "0.0.1";
+ sha256 =
+ "f4560612cd78002202234660cf248f004c91ade8c10dc87ad136eb5d8f49d66a";
+ };
+ beamDeps = [ httpoison_0_8_3 exjsx_3_2_0 ];
+
+ meta = {
+ description = ''Elixir wrapper for the Untappd API'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/nimi/untappd";
+ };
+ } // packageOverrides)
+ ) {};
+
+ untappd = untappd_0_0_1;
+
+ until_then_0_0_1 = callPackage
+ (
+ { buildMix, packageOverrides ? {}, fetchHex, calendar_0_14_2 }:
+ buildMix ({
+ name = "until_then";
+ version = "0.0.1";
+ src = fetchHex {
+ pkg = "until_then";
+ version = "0.0.1";
+ sha256 =
+ "9bc5c61346d18a770efc25e5f3cb55c9cb68fe2d7ff179964ac8b314d779c111";
+ };
+ beamDeps = [ calendar_0_14_2 ];
+
+ meta = {
+ longDescription = ''This library tells you how many milliseconds
+ to the next occurrence of a scheduled event.
+ This is very convenient to combine with
+ `:timer.sleep/1` or `Process.send_after/3` as a
+ means of repeatedly invoking some code on a
+ schedule and not having those invocations
+ drift.'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/NoRedInk/until_then";
+ };
+ } // packageOverrides)
+ ) {};
+
+ until_then = until_then_0_0_1;
+
uri_0_1_0 = callPackage
(
{ buildRebar3, packageOverrides ? {}, fetchHex }:
@@ -28372,17 +36951,114 @@ let
urilib = urilib_0_1_1;
- uuid_1_0_0 = callPackage
+ url_tincture_0_0_6 = callPackage
+ (
+ { buildMix, packageOverrides ? {}, fetchHex, poison_2_1_0 }:
+ buildMix ({
+ name = "url_tincture";
+ version = "0.0.6";
+ src = fetchHex {
+ pkg = "url_tincture";
+ version = "0.0.6";
+ sha256 =
+ "00a00bfca54cea1f5d9b340c90d9ed52ad86fe7bc8b657f3cc27c7404c33c1f5";
+ };
+ beamDeps = [ poison_2_1_0 ];
+
+ meta = {
+ description = ''A package to reduce extended forms of URLs to a
+ canonical reference'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/craigwaterman/url_tincture";
+ };
+ } // packageOverrides)
+ ) {};
+
+ url_tincture = url_tincture_0_0_6;
+
+ url_unroller_0_0_3 = callPackage
+ (
+ { buildMix, packageOverrides ? {}, fetchHex, httpoison_0_8_3 }:
+ buildMix ({
+ name = "url_unroller";
+ version = "0.0.3";
+ src = fetchHex {
+ pkg = "url_unroller";
+ version = "0.0.3";
+ sha256 =
+ "65a46b7335060111bdc5ad164548361f3c7ff5a39ff9493a9109dd20b98498b9";
+ };
+ beamDeps = [ httpoison_0_8_3 ];
+
+ meta = {
+ description = ''A simple url unroller/unshortener'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/semanticart/url_unroller";
+ };
+ } // packageOverrides)
+ ) {};
+
+ url_unroller = url_unroller_0_0_3;
+
+ usefulness_0_0_6 = callPackage
+ (
+ { buildMix, packageOverrides ? {}, fetchHex }:
+ buildMix ({
+ name = "usefulness";
+ version = "0.0.6";
+ src = fetchHex {
+ pkg = "usefulness";
+ version = "0.0.6";
+ sha256 =
+ "993b6d5ef4a8c4a4c254c92c49290f245ea34f071a9acd100abd654b381ec238";
+ };
+
+ meta = {
+ description = ''Useful things'';
+ license = stdenv.lib.licenses.asl20;
+ homepage = "https://github.com/b-filip/usefulness";
+ };
+ } // packageOverrides)
+ ) {};
+
+ usefulness = usefulness_0_0_6;
+
+ user_agent_parser_1_0_1 = callPackage
+ (
+ { buildMix, packageOverrides ? {}, fetchHex }:
+ buildMix ({
+ name = "user_agent_parser";
+ version = "1.0.1";
+ src = fetchHex {
+ pkg = "user_agent_parser";
+ version = "1.0.1";
+ sha256 =
+ "ba049dfe5d9c611a0ba3ac13c9ef0d17ea49e8bdfab68c54e7415423f32aa74f";
+ };
+
+ meta = {
+ longDescription = ''A simple Elixir package for parsing user
+ agent strings with the help of BrowserScope`s UA
+ database'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/romul/uap-elixir";
+ };
+ } // packageOverrides)
+ ) {};
+
+ user_agent_parser = user_agent_parser_1_0_1;
+
+ uuid_0_1_5 = callPackage
(
{ buildMix, packageOverrides ? {}, fetchHex }:
buildMix ({
name = "uuid";
- version = "1.0.0";
+ version = "0.1.5";
src = fetchHex {
pkg = "uuid";
- version = "1.0.0";
+ version = "0.1.5";
sha256 =
- "ff0a92c21c23935a944a5c5608c1c5af8d629ff5e11593001434d21efcb343b4";
+ "5cfb91972f5cacb0bcb2f00414d5747dd575d84b864c96f668ab3b729cc08422";
};
meta = {
@@ -28393,17 +37069,17 @@ let
} // packageOverrides)
) {};
- uuid_1_1_3 = callPackage
+ uuid_1_1_4 = callPackage
(
{ buildMix, packageOverrides ? {}, fetchHex }:
buildMix ({
name = "uuid";
- version = "1.1.3";
+ version = "1.1.4";
src = fetchHex {
pkg = "uuid";
- version = "1.1.3";
+ version = "1.1.4";
sha256 =
- "dab67ed70fc162595e63b84c38904fb2ea1779909b46a5f61753ba7ddbe9877b";
+ "55ceed2fe12062e3e0bf19baa118d0ac64eb6edd79f242aaaf090236f09965f0";
};
meta = {
@@ -28414,7 +37090,7 @@ let
} // packageOverrides)
) {};
- uuid = uuid_1_1_3;
+ uuid = uuid_1_1_4;
vagrant_0_0_1 = callPackage
(
@@ -28462,17 +37138,17 @@ let
varpool = varpool_1_5_1;
- vector_0_1_0 = callPackage
+ vector_0_3_0 = callPackage
(
{ buildMix, packageOverrides ? {}, fetchHex }:
buildMix ({
name = "vector";
- version = "0.1.0";
+ version = "0.3.0";
src = fetchHex {
pkg = "vector";
- version = "0.1.0";
+ version = "0.3.0";
sha256 =
- "2399175b7daa136a15ddbaeeb007de0b903fd21979aec1afa2ead92d37033870";
+ "e1f7645d090d58c9efc63046be1ade8b7a431c6428460c3290d6eb6da85cba45";
};
meta = {
@@ -28484,33 +37160,34 @@ let
} // packageOverrides)
) {};
- vector_0_2_1 = callPackage
+ vector = vector_0_3_0;
+
+ verhoeff_0_1_2 = callPackage
(
- { buildMix, packageOverrides ? {}, fetchHex }:
- buildMix ({
- name = "vector";
- version = "0.2.1";
+ { buildRebar3, packageOverrides ? {}, fetchHex }:
+ buildRebar3 ({
+ name = "verhoeff";
+ version = "0.1.2";
src = fetchHex {
- pkg = "vector";
- version = "0.2.1";
+ pkg = "verhoeff";
+ version = "0.1.2";
sha256 =
- "20c7d2b83aae6da37c53e7d3139096b4dcfbd289a57b38a07dfb570a1c6e38fb";
+ "1110f266fb3e2b69c7ba29cdae13e583f32af99e6a24843cefa04690c529e8f9";
};
meta = {
- longDescription = ''Library of common vector functions for use in
- geometric or graphical calculations.'';
+ description = ''The Verhoeff algorithm implementation'';
license = stdenv.lib.licenses.mit;
- homepage = "https://github.com/pkinney/vector_ex";
+ homepage = "https://github.com/mururu/verhoeff";
};
} // packageOverrides)
) {};
- vector = vector_0_2_1;
+ verhoeff = verhoeff_0_1_2;
verify_origin_0_1_0 = callPackage
(
- { buildMix, packageOverrides ? {}, fetchHex, plug_1_1_3 }:
+ { buildMix, packageOverrides ? {}, fetchHex, plug_1_1_5 }:
buildMix ({
name = "verify_origin";
version = "0.1.0";
@@ -28520,7 +37197,7 @@ let
sha256 =
"90834033676cb0ca632f208f489f6eb92ae94323fe7243efba577e1deb031167";
};
- beamDeps = [ plug_1_1_3 ];
+ beamDeps = [ plug_1_1_5 ];
meta = {
description = ''A library for using Origin header checking to
@@ -28533,46 +37210,6 @@ let
verify_origin = verify_origin_0_1_0;
- verk_0_9_11 = callPackage
- (
- {
- buildMix,
- packageOverrides ? {},
- fetchHex,
- watcher_1_0_0,
- timex_1_0_2,
- redix_0_3_6,
- poolboy_1_5_1,
- poison_1_5_2
- }:
- buildMix ({
- name = "verk";
- version = "0.9.11";
- src = fetchHex {
- pkg = "verk";
- version = "0.9.11";
- sha256 =
- "79183e0e79a106f0712bd291ac1c81124a497d4e1aef0f9db6672ec5b6190b49";
- };
- beamDeps = [
- watcher_1_0_0
- timex_1_0_2
- redix_0_3_6
- poolboy_1_5_1
- poison_1_5_2
- ];
-
- meta = {
- description = ''Verk is a job processing system backed by
- Redis.'';
- license = stdenv.lib.licenses.mit;
- homepage = "https://github.com/edgurgel/verk";
- };
- } // packageOverrides)
- ) {};
-
- verk = verk_0_9_11;
-
vex_0_5_5 = callPackage
(
{ buildMix, packageOverrides ? {}, fetchHex }:
@@ -28597,47 +37234,101 @@ let
vex = vex_0_5_5;
- voorhees_0_1_1 = callPackage
+ viktor_0_1_1 = callPackage
(
{
buildMix,
packageOverrides ? {},
fetchHex,
poison_2_1_0,
- ex_doc_0_11_4
+ httpoison_0_8_3
}:
buildMix ({
- name = "voorhees";
+ name = "viktor";
version = "0.1.1";
src = fetchHex {
- pkg = "voorhees";
+ pkg = "viktor";
version = "0.1.1";
sha256 =
- "0cacff8371280ede205633691a60604f1c3d771508f9b7ffa83d523526326112";
+ "9796d7174806bae878082d53befc1efcd1a374715650afc9956ed63f648227fe";
};
- beamDeps = [ poison_2_1_0 ex_doc_0_11_4 ];
+ beamDeps = [ poison_2_1_0 httpoison_0_8_3 ];
meta = {
- description = ''A library for validating JSON responses'';
+ description = ''Client API wrapper for League of Legends API.'';
license = stdenv.lib.licenses.mit;
- homepage = "https://github.com/danmcclain/voorhees";
+ homepage = "https://github.com/josephyi/viktor";
};
} // packageOverrides)
) {};
- voorhees = voorhees_0_1_1;
+ viktor = viktor_0_1_1;
- voxpop_0_0_1 = callPackage
+ virus_total_0_0_1 = callPackage
+ (
+ {
+ buildMix,
+ packageOverrides ? {},
+ fetchHex,
+ jsx_2_8_0,
+ httpoison_0_8_3
+ }:
+ buildMix ({
+ name = "virus_total";
+ version = "0.0.1";
+ src = fetchHex {
+ pkg = "virus_total";
+ version = "0.0.1";
+ sha256 =
+ "bed3680d17c98f978a90f5b443b6e269ee0a3f2239d2262502d8d10ee042ebfa";
+ };
+ beamDeps = [ jsx_2_8_0 httpoison_0_8_3 ];
+
+ meta = {
+ description = ''Elixir OTP application for the VirusTotal Public
+ API v2.0'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/dtykocki/virus_total";
+ };
+ } // packageOverrides)
+ ) {};
+
+ virus_total = virus_total_0_0_1;
+
+ vmstats_2_0_0 = callPackage
+ (
+ { buildRebar3, packageOverrides ? {}, fetchHex }:
+ buildRebar3 ({
+ name = "vmstats";
+ version = "2.0.0";
+ src = fetchHex {
+ pkg = "vmstats";
+ version = "2.0.0";
+ sha256 =
+ "5cfac88ae597762dc38fcec0b56012ca7a2fbfcc00936326f63f5ddca4da0b53";
+ };
+
+ meta = {
+ description = ''Tiny application to gather VM statistics'';
+ license = stdenv.lib.licenses.bsd3;
+ homepage = "https://github.com/ferd/vmstats";
+ };
+ } // packageOverrides)
+ ) {};
+
+ vmstats = vmstats_2_0_0;
+
+ voxpop_0_0_2 = callPackage
(
{ buildMix, packageOverrides ? {}, fetchHex }:
buildMix ({
name = "voxpop";
- version = "0.0.1";
+ version = "0.0.2";
src = fetchHex {
pkg = "voxpop";
- version = "0.0.1";
+ version = "0.0.2";
sha256 =
- "85a410b1df2de5852ce491c653d29781b1db2845f8d2e51d9809f7ebbe90a6c9";
+ "74e3a74fb71aea428eeaea9c4b1e6705568070a014e7bc1d158be1000e3e8c88";
};
meta = {
@@ -28649,7 +37340,44 @@ let
} // packageOverrides)
) {};
- voxpop = voxpop_0_0_1;
+ voxpop = voxpop_0_0_2;
+
+ wallaby_0_5_0 = callPackage
+ (
+ {
+ buildMix,
+ packageOverrides ? {},
+ fetchHex,
+ poolboy_1_5_1,
+ poison_2_1_0,
+ httpoison_0_8_3,
+ dialyze_0_2_1
+ }:
+ buildMix ({
+ name = "wallaby";
+ version = "0.5.0";
+ src = fetchHex {
+ pkg = "wallaby";
+ version = "0.5.0";
+ sha256 =
+ "0ff4debbefb06e76affa7dfb09072898e744471e8e0b41e7b665382969015265";
+ };
+ beamDeps = [
+ poolboy_1_5_1
+ poison_2_1_0
+ httpoison_0_8_3
+ dialyze_0_2_1
+ ];
+
+ meta = {
+ description = ''Concurrent feature tests for elixir'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/keathley/wallaby";
+ };
+ } // packageOverrides)
+ ) {};
+
+ wallaby = wallaby_0_5_0;
watcher_1_0_0 = callPackage
(
@@ -28674,6 +37402,71 @@ let
watcher = watcher_1_0_0;
+ weather_report_0_2_0 = callPackage
+ (
+ {
+ buildMix,
+ packageOverrides ? {},
+ fetchHex,
+ trie_1_5_1,
+ sweet_xml_0_6_1,
+ httpoison_0_8_3,
+ feeder_2_0_0
+ }:
+ buildMix ({
+ name = "weather_report";
+ version = "0.2.0";
+ src = fetchHex {
+ pkg = "weather_report";
+ version = "0.2.0";
+ sha256 =
+ "d052a6b7d2a6c5a7e2c310f8a0be2fe70ee1a62ef2b0b89e1a804016c6fbeed5";
+ };
+ beamDeps = [
+ trie_1_5_1
+ sweet_xml_0_6_1
+ httpoison_0_8_3
+ feeder_2_0_0
+ ];
+
+ meta = {
+ longDescription = ''Get weather forecasts from the National
+ Oceanic and Atmospheric Administration! As the
+ NOAA is a United States government agency, only
+ forecasts in the US are supported.'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/sschneider1207/weather_report";
+ };
+ } // packageOverrides)
+ ) {};
+
+ weather_report = weather_report_0_2_0;
+
+ web_push_encryption_0_1_1 = callPackage
+ (
+ { buildMix, packageOverrides ? {}, fetchHex, httpoison_0_8_3 }:
+ buildMix ({
+ name = "web_push_encryption";
+ version = "0.1.1";
+ src = fetchHex {
+ pkg = "web_push_encryption";
+ version = "0.1.1";
+ sha256 =
+ "64f3c28f0ab40d3f1366285a8d9166b44959be56525f0a32db0a33d7cfb3feb2";
+ };
+ beamDeps = [ httpoison_0_8_3 ];
+
+ meta = {
+ description = ''Web push encryption lilbrary'';
+ license = stdenv.lib.licenses.mit;
+ homepage =
+ "https://github.com/tuvistavie/elixir-web-push-encryption";
+ };
+ } // packageOverrides)
+ ) {};
+
+ web_push_encryption = web_push_encryption_0_1_1;
+
web_socket_0_0_1 = callPackage
(
{
@@ -28735,6 +37528,67 @@ let
webassembly = webassembly_0_6_1;
+ webmentions_0_1_0 = callPackage
+ (
+ {
+ buildMix,
+ packageOverrides ? {},
+ fetchHex,
+ httpotion_2_2_2,
+ floki_0_7_2
+ }:
+ buildMix ({
+ name = "webmentions";
+ version = "0.1.0";
+ src = fetchHex {
+ pkg = "webmentions";
+ version = "0.1.0";
+ sha256 =
+ "5409b9237578fd67601b77c601093ab599a1bc507a6e1457a853c20e516c3d81";
+ };
+ beamDeps = [ httpotion_2_2_2 floki_0_7_2 ];
+
+ meta = {
+ description = ''A Webmentions
+ (https://indiewebcamp.com/Webmention) module for
+ Elixir'';
+ license = stdenv.lib.licenses.agpl3;
+ homepage = "https://github.com/ckruse/webmentions-elixir";
+ };
+ } // packageOverrides)
+ ) {};
+
+ webmentions = webmentions_0_1_0;
+
+ webpay_0_0_4 = callPackage
+ (
+ {
+ buildMix,
+ packageOverrides ? {},
+ fetchHex,
+ poison_1_5_2,
+ httpoison_0_8_3
+ }:
+ buildMix ({
+ name = "webpay";
+ version = "0.0.4";
+ src = fetchHex {
+ pkg = "webpay";
+ version = "0.0.4";
+ sha256 =
+ "abab40fc7fda25a55d3a3dce4327d3f322df378432a9ed5e7c43e553989f467e";
+ };
+ beamDeps = [ poison_1_5_2 httpoison_0_8_3 ];
+
+ meta = {
+ description = ''Elixir Webpay API wrapper'';
+
+ };
+ } // packageOverrides)
+ ) {};
+
+ webpay = webpay_0_0_4;
+
websocket_client_1_1_0 = callPackage
(
{ buildRebar3, packageOverrides ? {}, fetchHex }:
@@ -28760,7 +37614,7 @@ let
wechat_check_signature_0_0_1 = callPackage
(
- { buildMix, packageOverrides ? {}, fetchHex, plug_1_1_3 }:
+ { buildMix, packageOverrides ? {}, fetchHex, plug_1_1_5 }:
buildMix ({
name = "wechat_check_signature";
version = "0.0.1";
@@ -28770,7 +37624,7 @@ let
sha256 =
"5c5bb053c15082e12ad6da485fc4f711efa9198107368a42456aeafcf870caec";
};
- beamDeps = [ plug_1_1_3 ];
+ beamDeps = [ plug_1_1_5 ];
meta = {
description = ''An Elixir Plug for checking wechat signature.'';
@@ -28782,9 +37636,42 @@ let
wechat_check_signature = wechat_check_signature_0_0_1;
+ wechat_mp_auth_0_0_2 = callPackage
+ (
+ {
+ buildMix,
+ packageOverrides ? {},
+ fetchHex,
+ poison_2_1_0,
+ mimetype_parser_0_1_2,
+ httpoison_0_8_3
+ }:
+ buildMix ({
+ name = "wechat_mp_auth";
+ version = "0.0.2";
+ src = fetchHex {
+ pkg = "wechat_mp_auth";
+ version = "0.0.2";
+ sha256 =
+ "da88ac42f476eb8bb594cc702bd2e085c93adf6ebd7bf245e507cacf77e78ab9";
+ };
+ beamDeps = [ poison_2_1_0 mimetype_parser_0_1_2 httpoison_0_8_3
+ ];
+
+ meta = {
+ description = ''An Elixir WeChat Media Platform Authentication
+ Client Library.'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/he9qi/wechat_mp_auth";
+ };
+ } // packageOverrides)
+ ) {};
+
+ wechat_mp_auth = wechat_mp_auth_0_0_2;
+
wechatex_0_0_1 = callPackage
(
- { buildMix, packageOverrides ? {}, fetchHex, plug_1_1_3 }:
+ { buildMix, packageOverrides ? {}, fetchHex, plug_1_1_5 }:
buildMix ({
name = "wechatex";
version = "0.0.1";
@@ -28794,7 +37681,7 @@ let
sha256 =
"211971a79d38326dbf5e603ee00165708eb17670f2a84e54df929191c6fef81c";
};
- beamDeps = [ plug_1_1_3 ];
+ beamDeps = [ plug_1_1_5 ];
meta = {
description = ''Wechat plugins for Elixir.'';
@@ -28806,17 +37693,47 @@ let
wechatex = wechatex_0_0_1;
- white_bread_2_5_0 = callPackage
+ what3words_1_0_0 = callPackage
+ (
+ {
+ buildMix,
+ packageOverrides ? {},
+ fetchHex,
+ poison_2_1_0,
+ httpoison_0_8_3
+ }:
+ buildMix ({
+ name = "what3words";
+ version = "1.0.0";
+ src = fetchHex {
+ pkg = "what3words";
+ version = "1.0.0";
+ sha256 =
+ "a704976567fd49cc6450eb0de10a7a39acb49b8db5b9ea7b9d9c1491b7453bf7";
+ };
+ beamDeps = [ poison_2_1_0 httpoison_0_8_3 ];
+
+ meta = {
+ description = ''Wrapper for the What3Words API'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/lucidstack/w3w-elixir-wrapper";
+ };
+ } // packageOverrides)
+ ) {};
+
+ what3words = what3words_1_0_0;
+
+ white_bread_2_7_0 = callPackage
(
{ buildMix, packageOverrides ? {}, fetchHex }:
buildMix ({
name = "white_bread";
- version = "2.5.0";
+ version = "2.7.0";
src = fetchHex {
pkg = "white_bread";
- version = "2.5.0";
+ version = "2.7.0";
sha256 =
- "0256755080fadfbd45285ace5279147a6f8af3df2ae89eed70b5072471f21360";
+ "8938204a78b9081a2c097cb1c39e19037356f4d71a011897b1d51d728ba15946";
};
meta = {
@@ -28829,7 +37746,30 @@ let
} // packageOverrides)
) {};
- white_bread = white_bread_2_5_0;
+ white_bread = white_bread_2_7_0;
+
+ whois_0_0_1 = callPackage
+ (
+ { buildMix, packageOverrides ? {}, fetchHex }:
+ buildMix ({
+ name = "whois";
+ version = "0.0.1";
+ src = fetchHex {
+ pkg = "whois";
+ version = "0.0.1";
+ sha256 =
+ "71c21201c0bcf9934503a21e693e380fcf0e91d29728492dce182b15ff686636";
+ };
+
+ meta = {
+ description = ''Pure Elixir WHOIS client and parser.'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/utkarshkukreti/whois.ex";
+ };
+ } // packageOverrides)
+ ) {};
+
+ whois = whois_0_0_1;
witchcraft_0_4_2 = callPackage
(
@@ -28885,6 +37825,87 @@ let
wizard = wizard_0_1_0;
+ wizardry_0_0_1 = callPackage
+ (
+ {
+ buildMix,
+ packageOverrides ? {},
+ fetchHex,
+ plug_1_1_5,
+ comeonin_1_6_0
+ }:
+ buildMix ({
+ name = "wizardry";
+ version = "0.0.1";
+ src = fetchHex {
+ pkg = "wizardry";
+ version = "0.0.1";
+ sha256 =
+ "4a85b8c3e5813dee20aa0d5503811568743644883723c9b226436616c9a779a3";
+ };
+ beamDeps = [ plug_1_1_5 comeonin_1_6_0 ];
+
+ meta = {
+ description = ''Simple, low-level user account framework for
+ Phoenix Framework'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/knrz/wizardry";
+ };
+ } // packageOverrides)
+ ) {};
+
+ wizardry = wizardry_0_0_1;
+
+ woolly_0_1_2 = callPackage
+ (
+ { buildMix, packageOverrides ? {}, fetchHex }:
+ buildMix ({
+ name = "woolly";
+ version = "0.1.2";
+ src = fetchHex {
+ pkg = "woolly";
+ version = "0.1.2";
+ sha256 =
+ "34677dae0bcca0c66fd611d6528e1d0532247e0ad9478a4b469476058308b40d";
+ };
+
+ meta = {
+ longDescription = ''Woolly is the text mining and natural
+ language toolkit for the Elixir programming
+ language.'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/pjhampton/Woolly";
+ };
+ } // packageOverrides)
+ ) {};
+
+ woolly = woolly_0_1_2;
+
+ word_smith_0_1_2 = callPackage
+ (
+ { buildMix, packageOverrides ? {}, fetchHex }:
+ buildMix ({
+ name = "word_smith";
+ version = "0.1.2";
+ src = fetchHex {
+ pkg = "word_smith";
+ version = "0.1.2";
+ sha256 =
+ "481e643c5d26f113235ee577ea9b11c2c639228e0573670329c4385ee6d4cb32";
+ };
+
+ meta = {
+ longDescription = ''General text utility library to help with
+ string manipulation not found in the standard
+ Elixir library.'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/benfalk/word_smith";
+ };
+ } // packageOverrides)
+ ) {};
+
+ word_smith = word_smith_0_1_2;
+
work_queue_0_0_3 = callPackage
(
{
@@ -28933,7 +37954,28 @@ let
} // packageOverrides)
) {};
- worker_pool = worker_pool_1_0_4;
+ worker_pool_2_0_0 = callPackage
+ (
+ { buildRebar3, packageOverrides ? {}, fetchHex }:
+ buildRebar3 ({
+ name = "worker_pool";
+ version = "2.0.0";
+ src = fetchHex {
+ pkg = "worker_pool";
+ version = "2.0.0";
+ sha256 =
+ "915d3a1276d3c00c1438ae49785ff974f7b36772d5a13ad6a2c487e7c005f272";
+ };
+
+ meta = {
+ description = ''Erlang Worker Pool'';
+ license = stdenv.lib.licenses.free;
+ homepage = "https://github.com/inaka/worker_pool";
+ };
+ } // packageOverrides)
+ ) {};
+
+ worker_pool = worker_pool_2_0_0;
workex_0_10_0 = callPackage
(
@@ -29010,71 +38052,309 @@ let
world_json = world_json_0_1_6;
- xlsx_parser_0_0_4 = callPackage
+ wpa_supplicant_0_2_0 = callPackage
(
- {
- buildMix,
- packageOverrides ? {},
- fetchHex,
- timex_1_0_2,
- sweet_xml_0_5_1,
- simple_agent_0_0_7
- }:
+ { buildMix, packageOverrides ? {}, fetchHex }:
buildMix ({
- name = "xlsx_parser";
- version = "0.0.4";
+ name = "wpa_supplicant";
+ version = "0.2.0";
src = fetchHex {
- pkg = "xlsx_parser";
- version = "0.0.4";
+ pkg = "wpa_supplicant";
+ version = "0.2.0";
sha256 =
- "53d86e1142483421d5c1fe769f69980560a6809ca37a13c3dcd4c49fee46a831";
+ "40c86728b254dd9a9a96d862049a85ccf8b8ce9d1fe27985fe5d7c7a32c56bb6";
};
- beamDeps = [ timex_1_0_2 sweet_xml_0_5_1 simple_agent_0_0_7 ];
meta = {
- longDescription = ''Simple parsing of xlsx spreadsheet data. Data
- can be retrieved or written to csv.'';
- license = stdenv.lib.licenses.mit;
- homepage =
- "https://github.com/TheFirstAvenger/elixir-xlsx_parser.git";
+ longDescription = ''Elixir interface to the wpa_supplicant
+ daemon. The wpa_supplicant provides application
+ support for scanning for access points, managing
+ Wi-Fi connections, and handling all of the
+ security and other parameters associated with
+ Wi-Fi.'';
+ license = with stdenv.lib.licenses; [ asl20 free ];
+ homepage = "https://github.com/fhunleth/wpa_supplicant.ex";
};
} // packageOverrides)
) {};
- xlsx_parser = xlsx_parser_0_0_4;
+ wpa_supplicant = wpa_supplicant_0_2_0;
- xlsxir_0_0_2 = callPackage
+ ws_0_0_1 = callPackage
+ (
+ { buildMix, packageOverrides ? {}, fetchHex }:
+ buildMix ({
+ name = "ws";
+ version = "0.0.1";
+ src = fetchHex {
+ pkg = "ws";
+ version = "0.0.1";
+ sha256 =
+ "31185c57989f16c4d337974cf1896bb8da452b4f08258a48583cce211fbcf316";
+ };
+
+ meta = {
+ description = ''An RFC 6455 WebSocket implementation.'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/";
+ };
+ } // packageOverrides)
+ ) {};
+
+ ws = ws_0_0_1;
+
+ wx_utils_0_0_2 = callPackage
+ (
+ { buildMix, packageOverrides ? {}, fetchHex }:
+ buildMix ({
+ name = "wx_utils";
+ version = "0.0.2";
+ src = fetchHex {
+ pkg = "wx_utils";
+ version = "0.0.2";
+ sha256 =
+ "78bb6d423327e7cf41446a35741fe079fb138a4671d0a01e70223f6219afc3d4";
+ };
+
+ meta = {
+ description = ''All of the erlang wx macros exposed as normal
+ functions.'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/sschneider1207/wx_utils";
+ };
+ } // packageOverrides)
+ ) {};
+
+ wx_utils = wx_utils_0_0_2;
+
+ wykop_api_0_0_4 = callPackage
(
{
buildMix,
packageOverrides ? {},
fetchHex,
- sweet_xml_0_6_1,
- ex_doc_0_11_4,
- earmark_0_2_1
+ poison_1_5_2,
+ httpoison_0_8_3
}:
buildMix ({
- name = "xlsxir";
- version = "0.0.2";
+ name = "wykop_api";
+ version = "0.0.4";
src = fetchHex {
- pkg = "xlsxir";
- version = "0.0.2";
+ pkg = "wykop_api";
+ version = "0.0.4";
sha256 =
- "7019d6c58f87543fcccc463cec5132d7a2343f5ef2ffdbb77095b694646e6ab0";
+ "0c2acade581168e5cdf3d1dbde53183bc1c49882c8ba8793e045f20d5a9a26d0";
};
- beamDeps = [ sweet_xml_0_6_1 ex_doc_0_11_4 earmark_0_2_1 ];
+ beamDeps = [ poison_1_5_2 httpoison_0_8_3 ];
meta = {
- longDescription = ''Parses Microsoft Excel worksheets (currently
- only .xlsx format) and returns the data in
- either a list or a map.'';
+ description = ''Library for Wykop API.'';
+ license = stdenv.lib.licenses.cc0;
+ homepage = "https://github.com/remiq/wykop_api_elixir";
+ };
+ } // packageOverrides)
+ ) {};
+
+ wykop_api = wykop_api_0_0_4;
+
+ xain_0_5_3 = callPackage
+ (
+ { buildMix, packageOverrides ? {}, fetchHex }:
+ buildMix ({
+ name = "xain";
+ version = "0.5.3";
+ src = fetchHex {
+ pkg = "xain";
+ version = "0.5.3";
+ sha256 =
+ "c71c2b8180b317a361b4691cf6e9e72d1cf2ad00f7e31f5f5e72d79489eb6e24";
+ };
+
+ meta = {
+ description = ''An html DSL package.'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/smpallen99/xain";
+ };
+ } // packageOverrides)
+ ) {};
+
+ xain = xain_0_5_3;
+
+ xe_0_0_1 = callPackage
+ (
+ {
+ buildMix,
+ packageOverrides ? {},
+ fetchHex,
+ httpoison_0_8_3,
+ floki_0_8_1
+ }:
+ buildMix ({
+ name = "xe";
+ version = "0.0.1";
+ src = fetchHex {
+ pkg = "xe";
+ version = "0.0.1";
+ sha256 =
+ "53d693612db1343c36a7bbe6286c23f7ccfdbd44500c2a38970743238d230a77";
+ };
+ beamDeps = [ httpoison_0_8_3 floki_0_8_1 ];
+
+ meta = {
+ description = ''Real time conversion for currencies'';
+ license = stdenv.lib.licenses.asl20;
+ homepage = "https://github.com/paulodiniz/xe";
+ };
+ } // packageOverrides)
+ ) {};
+
+ xe = xe_0_0_1;
+
+ xepcache_1_0_1 = callPackage
+ (
+ { buildMix, packageOverrides ? {}, fetchHex, depcache_1_2_2 }:
+ buildMix ({
+ name = "xepcache";
+ version = "1.0.1";
+ src = fetchHex {
+ pkg = "xepcache";
+ version = "1.0.1";
+ sha256 =
+ "b163b26145c2ab3f37ec004dc24ca49c53c1c7b50529c068e94cfcfd78ec62dd";
+ };
+ beamDeps = [ depcache_1_2_2 ];
+
+ meta = {
+ longDescription = ''A wrapper around Erlang`s depcache, an
+ in-memory caching server. depcache bases its
+ caching around ETS but can also switch to using
+ the in-process dictionary for maintaining a
+ process-local cache. Convenient functions are
+ provided for getting/setting cache values, with
+ ttl and cache key dependencies, as well as a
+ memo function for caching the result of function
+ executions.'';
+ license = stdenv.lib.licenses.apsl20;
+ homepage = "https://github.com/arjan/xepcache";
+ };
+ } // packageOverrides)
+ ) {};
+
+ xepcache = xepcache_1_0_1;
+
+ xfighter_0_2_1 = callPackage
+ (
+ {
+ buildMix,
+ packageOverrides ? {},
+ fetchHex,
+ poison_1_5_2,
+ httpoison_0_8_3
+ }:
+ buildMix ({
+ name = "xfighter";
+ version = "0.2.1";
+ src = fetchHex {
+ pkg = "xfighter";
+ version = "0.2.1";
+ sha256 =
+ "67bb43379cd89b4b95f65f02ad5421719723d262fdbe7e399fb82ac7f3b490a8";
+ };
+ beamDeps = [ poison_1_5_2 httpoison_0_8_3 ];
+
+ meta = {
+ description = ''An API wrapper for the programming game
+ Stockfighter.'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/bitchef/xfighter";
+ };
+ } // packageOverrides)
+ ) {};
+
+ xfighter = xfighter_0_2_1;
+
+ xjs_0_1_1 = callPackage
+ (
+ { buildMix, packageOverrides ? {}, fetchHex, poison_2_1_0 }:
+ buildMix ({
+ name = "xjs";
+ version = "0.1.1";
+ src = fetchHex {
+ pkg = "xjs";
+ version = "0.1.1";
+ sha256 =
+ "51f93b5008fb73ad6d9320bc97892cd861171852a59408b02823b03fe8c1b751";
+ };
+ beamDeps = [ poison_2_1_0 ];
+
+ meta = {
+ description = ''elixir syntax, javascript semantics'';
+ license = stdenv.lib.licenses.isc;
+ homepage = "https://github.com/aaron-lebo/xjs";
+ };
+ } // packageOverrides)
+ ) {};
+
+ xjs = xjs_0_1_1;
+
+ xkcd_0_0_1 = callPackage
+ (
+ {
+ buildMix,
+ packageOverrides ? {},
+ fetchHex,
+ poison_2_1_0,
+ httpoison_0_8_3
+ }:
+ buildMix ({
+ name = "xkcd";
+ version = "0.0.1";
+ src = fetchHex {
+ pkg = "xkcd";
+ version = "0.0.1";
+ sha256 =
+ "1c757360b9c5ff3d098e9c04874ed273289ea890e4d87e7dd99164633fe061b5";
+ };
+ beamDeps = [ poison_2_1_0 httpoison_0_8_3 ];
+
+ meta = {
+ longDescription = ''Uses the XKCD JSON API to retrieve the
+ random, specific and the latest XKCD comic.'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/notdevinclark/xkcd";
+ };
+ } // packageOverrides)
+ ) {};
+
+ xkcd = xkcd_0_0_1;
+
+ xlsxir_1_3_0 = callPackage
+ (
+ { buildMix, packageOverrides ? {}, fetchHex, erlsom_1_4_1 }:
+ buildMix ({
+ name = "xlsxir";
+ version = "1.3.0";
+ src = fetchHex {
+ pkg = "xlsxir";
+ version = "1.3.0";
+ sha256 =
+ "8c5985daeafaa388b63dde1f9827d650c5c964a0d4c1a91aba9ff8463c6d7833";
+ };
+ beamDeps = [ erlsom_1_4_1 ];
+
+ meta = {
+ longDescription = ''Xlsx file parser. Supports large files,
+ multiple worksheets and ISO 8601 date formats.
+ Data is extracted to an Erlang Term Storage
+ (ETS) table and is accessed through various
+ functions. Tested with Excel and LibreOffice.'';
license = stdenv.lib.licenses.mit;
homepage = "https://github.com/kennellroxco/xlsxir";
};
} // packageOverrides)
) {};
- xlsxir = xlsxir_0_0_2;
+ xlsxir = xlsxir_1_3_0;
xml_builder_0_0_8 = callPackage
(
@@ -29099,6 +38379,31 @@ let
xml_builder = xml_builder_0_0_8;
+ xml_to_keyword_0_0_1 = callPackage
+ (
+ { buildMix, packageOverrides ? {}, fetchHex }:
+ buildMix ({
+ name = "xml_to_keyword";
+ version = "0.0.1";
+ src = fetchHex {
+ pkg = "xml_to_keyword";
+ version = "0.0.1";
+ sha256 =
+ "64433848f0ed0ad8f26f1c6e1a6509a6fbaf017701577bd8122bfbb6ee277e97";
+ };
+
+ meta = {
+ longDescription = ''This is an Elixir package that can convert
+ xml into Elixir`s Keyword List, which is
+ compilable with XmlBuilder
+ (joshnuss/xml_builder) package'';
+ license = stdenv.lib.licenses.free;
+ };
+ } // packageOverrides)
+ ) {};
+
+ xml_to_keyword = xml_to_keyword_0_0_1;
+
xmlrpc_0_9_1 = callPackage
(
{ buildMix, packageOverrides ? {}, fetchHex }:
@@ -29123,33 +38428,62 @@ let
} // packageOverrides)
) {};
- xmlrpc = xmlrpc_0_9_1;
-
- xref_runner_0_2_5 = callPackage
+ xmlrpc_1_0_0 = callPackage
(
- {
- buildErlangMk, packageOverrides ? {}, fetchHex, getopt_0_8_2
- }:
- buildErlangMk ({
- name = "xref_runner";
- version = "0.2.5";
+ { buildMix, packageOverrides ? {}, fetchHex }:
+ buildMix ({
+ name = "xmlrpc";
+ version = "1.0.0";
src = fetchHex {
- pkg = "xref_runner";
- version = "0.2.5";
+ pkg = "xmlrpc";
+ version = "1.0.0";
sha256 =
- "12ca46c02789b0b2755284dedeb73aac0d9a3120c28c992040feb86766ee2c9a";
+ "8b7dc690a64df7e72d192e9211a20084079933272c14c3e9c158eb101025a7ec";
};
- beamDeps = [ getopt_0_8_2 ];
meta = {
- description = ''Xref Runner'';
+ longDescription = ''XML-RPC encoder/decder for Elixir. Supports
+ all valid datatypes. Input (ie untrusted) is
+ parsed with erlsom against an xml-schema for
+ security.'';
license = stdenv.lib.licenses.asl20;
- homepage = "https://github.com/inaka/xref_runner";
+ homepage = "https://github.com/ewildgoose/elixir-xml_rpc";
};
} // packageOverrides)
) {};
- xref_runner = xref_runner_0_2_5;
+ xmlrpc = xmlrpc_1_0_0;
+
+ xoauth2_0_0_3 = callPackage
+ (
+ {
+ buildMix,
+ packageOverrides ? {},
+ fetchHex,
+ poison_1_5_2,
+ mock_0_1_3,
+ httpoison_0_8_3
+ }:
+ buildMix ({
+ name = "xoauth2";
+ version = "0.0.3";
+ src = fetchHex {
+ pkg = "xoauth2";
+ version = "0.0.3";
+ sha256 =
+ "4a43a0bca1707b579c6a141524666006dd25ed2efdc19aee5d6eeedf6efc3418";
+ };
+ beamDeps = [ poison_1_5_2 mock_0_1_3 httpoison_0_8_3 ];
+
+ meta = {
+ description = ''A simple XOAuth2 module for Elixir'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/craigp/elixir_xoauth2";
+ };
+ } // packageOverrides)
+ ) {};
+
+ xoauth2 = xoauth2_0_0_3;
xxhash_0_2_0 = callPackage
(
@@ -29174,6 +38508,61 @@ let
xxhash = xxhash_0_2_0;
+ y_process_0_0_1 = callPackage
+ (
+ { buildMix, packageOverrides ? {}, fetchHex }:
+ buildMix ({
+ name = "y_process";
+ version = "0.0.1";
+ src = fetchHex {
+ pkg = "y_process";
+ version = "0.0.1";
+ sha256 =
+ "3329d3fbe253d605b1f7a91a601c672ff4bc0e7b8c960871d82c964e92372bcb";
+ };
+
+ meta = {
+ description = ''GenServer wrapper behaviour for pubsub between
+ processes.'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/gmtprime/y_process";
+ };
+ } // packageOverrides)
+ ) {};
+
+ y_process = y_process_0_0_1;
+
+ yahoo_fx_0_2_0 = callPackage
+ (
+ {
+ buildMix,
+ packageOverrides ? {},
+ fetchHex,
+ time_seer_0_0_6,
+ httpoison_0_8_3
+ }:
+ buildMix ({
+ name = "yahoo_fx";
+ version = "0.2.0";
+ src = fetchHex {
+ pkg = "yahoo_fx";
+ version = "0.2.0";
+ sha256 =
+ "e06b6986c483cad62081e19fba3089f3eab4a4f1e1cc06cd17aa45d34dd14913";
+ };
+ beamDeps = [ time_seer_0_0_6 httpoison_0_8_3 ];
+
+ meta = {
+ longDescription = ''YahooFx is an Elixir library for getting
+ currency exchange rates from Yahoo Finance'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/lau/yahoo_fx";
+ };
+ } // packageOverrides)
+ ) {};
+
+ yahoo_fx = yahoo_fx_0_2_0;
+
yaml_elixir_1_0_0 = callPackage
(
{ buildMix, packageOverrides ? {}, fetchHex }:
@@ -29196,7 +38585,53 @@ let
} // packageOverrides)
) {};
- yaml_elixir = yaml_elixir_1_0_0;
+ yaml_elixir_1_2_0 = callPackage
+ (
+ { buildMix, packageOverrides ? {}, fetchHex }:
+ buildMix ({
+ name = "yaml_elixir";
+ version = "1.2.0";
+ src = fetchHex {
+ pkg = "yaml_elixir";
+ version = "1.2.0";
+ sha256 =
+ "7827069a57fc1d830c3025acbb9611f4cd51ee139e8e75de85d0c4e835df4c16";
+ };
+
+ meta = {
+ description = ''Yaml parser for Elixir based on native Erlang
+ implementation.'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/KamilLelonek/yaml-elixir";
+ };
+ } // packageOverrides)
+ ) {};
+
+ yaml_elixir = yaml_elixir_1_2_0;
+
+ yaml_encoder_0_0_2 = callPackage
+ (
+ { buildMix, packageOverrides ? {}, fetchHex }:
+ buildMix ({
+ name = "yaml_encoder";
+ version = "0.0.2";
+ src = fetchHex {
+ pkg = "yaml_encoder";
+ version = "0.0.2";
+ sha256 =
+ "ff3713e793daed297bca7252651deafd15c5f2f353a4ab03bf3f13a71fcb60a6";
+ };
+
+ meta = {
+ description = ''Simple module to encode data to YAML. Not ready
+ for production, still WIP.'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/pilu/yaml_encoder";
+ };
+ } // packageOverrides)
+ ) {};
+
+ yaml_encoder = yaml_encoder_0_0_2;
yes_msg_0_1_0 = callPackage
(
@@ -29221,6 +38656,62 @@ let
yes_msg = yes_msg_0_1_0;
+ yocingo_0_0_3 = callPackage
+ (
+ {
+ buildMix,
+ packageOverrides ? {},
+ fetchHex,
+ httpoison_0_8_3,
+ exjsx_3_2_0,
+ earmark_0_2_1
+ }:
+ buildMix ({
+ name = "yocingo";
+ version = "0.0.3";
+ src = fetchHex {
+ pkg = "yocingo";
+ version = "0.0.3";
+ sha256 =
+ "e222ea0050a5678568d463f8ae7cf7ccd8efba4dfee1637eb0e52c1a1c7809f1";
+ };
+ beamDeps = [ httpoison_0_8_3 exjsx_3_2_0 earmark_0_2_1 ];
+
+ meta = {
+ longDescription = ''This is a full Telegram Bot API. With this
+ module you can create your own Telegram Bot.'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/Yawolf/yocingo";
+ };
+ } // packageOverrides)
+ ) {};
+
+ yocingo = yocingo_0_0_3;
+
+ ytx_0_0_5 = callPackage
+ (
+ { buildMix, packageOverrides ? {}, fetchHex, rapidax_0_0_3 }:
+ buildMix ({
+ name = "ytx";
+ version = "0.0.5";
+ src = fetchHex {
+ pkg = "ytx";
+ version = "0.0.5";
+ sha256 =
+ "a30877517201e1c964627782345273fa7ae2157591d1ae6f5663333f370db6f6";
+ };
+ beamDeps = [ rapidax_0_0_3 ];
+
+ meta = {
+ description = ''Youtube API Client for Elixir'';
+ license = stdenv.lib.licenses.asl20;
+ homepage = "https://github.com/victorlcampos/ytx";
+ };
+ } // packageOverrides)
+ ) {};
+
+ ytx = ytx_0_0_5;
+
yubico_0_1_4 = callPackage
(
{ buildRebar3, packageOverrides ? {}, fetchHex }:
@@ -29292,17 +38783,17 @@ let
yyid = yyid_0_1_2;
- zarex_0_2_0 = callPackage
+ zarex_0_3_0 = callPackage
(
{ buildMix, packageOverrides ? {}, fetchHex }:
buildMix ({
name = "zarex";
- version = "0.2.0";
+ version = "0.3.0";
src = fetchHex {
pkg = "zarex";
- version = "0.2.0";
+ version = "0.3.0";
sha256 =
- "2e7d632116b1ec750ab2bd86e4936cc6f84a467c98a9507b4b3cf828f1edc1e1";
+ "b4c59af6ccc9c0ffea797920a7f66cdaaa498cda83e4bc4c077ff09cb3b21961";
};
meta = {
@@ -29313,7 +38804,7 @@ let
} // packageOverrides)
) {};
- zarex = zarex_0_2_0;
+ zarex = zarex_0_3_0;
zbase32_1_0_0 = callPackage
(
@@ -29375,28 +38866,84 @@ let
zigzag = zigzag_0_0_1;
- zipper_0_2_0 = callPackage
+ zip_stream_0_1_0 = callPackage
(
- { buildErlangMk, packageOverrides ? {}, fetchHex }:
- buildErlangMk ({
- name = "zipper";
- version = "0.2.0";
+ { buildMix, packageOverrides ? {}, fetchHex }:
+ buildMix ({
+ name = "zip_stream";
+ version = "0.1.0";
src = fetchHex {
- pkg = "zipper";
- version = "0.2.0";
+ pkg = "zip_stream";
+ version = "0.1.0";
sha256 =
- "8f5a9271cebd535ff9bf9fd6829a36b3031d16c71b2ae6712e171f117520c023";
+ "a712e24d5fe74e3761c74f3e05cb03df0aa9440f3edee957445f9c9be73c9a4e";
};
meta = {
- description = ''Generic Zipper Implementation for Erlang'';
- license = stdenv.lib.licenses.asl20;
- homepage = "https://github.com/inaka/zipper";
+ longDescription = ''Library to read zip file in a stream. Zip
+ file binary stream -> stream of {:new_file,name}
+ or uncompressed_bin Erlang zlib library only
+ allows deflate decompress stream. But Erlang zip
+ library does not allow content streaming.'';
+ license = stdenv.lib.licenses.mit;
+ homepage = "https://github.com/awetzel/zip_stream";
};
} // packageOverrides)
) {};
- zipper = zipper_0_2_0;
+ zip_stream = zip_stream_0_1_0;
+
+ zipcloudx_0_0_2 = callPackage
+ (
+ {
+ buildMix,
+ packageOverrides ? {},
+ fetchHex,
+ poison_1_5_2,
+ httpoison_0_8_3
+ }:
+ buildMix ({
+ name = "zipcloudx";
+ version = "0.0.2";
+ src = fetchHex {
+ pkg = "zipcloudx";
+ version = "0.0.2";
+ sha256 =
+ "1e474ec0229b6dd1404c34fbd2a851d136d9549d5ecccbd01d017baac64b264e";
+ };
+ beamDeps = [ poison_1_5_2 httpoison_0_8_3 ];
+
+ meta = {
+ description = ''Elixir zipcloud API wrapper'';
+
+ };
+ } // packageOverrides)
+ ) {};
+
+ zipcloudx = zipcloudx_0_0_2;
+
+ zipflow_0_0_1 = callPackage
+ (
+ { buildMix, packageOverrides ? {}, fetchHex }:
+ buildMix ({
+ name = "zipflow";
+ version = "0.0.1";
+ src = fetchHex {
+ pkg = "zipflow";
+ version = "0.0.1";
+ sha256 =
+ "1b6e43e3a40529e41fbbb47d27470a3842834be066b676b68f5b0bfed68c8f39";
+ };
+
+ meta = {
+ description = ''stream zip archives while building them'';
+ license = stdenv.lib.licenses.bsd3;
+ homepage = "http://github.com/dgvncsz0f/zipflow";
+ };
+ } // packageOverrides)
+ ) {};
+
+ zipflow = zipflow_0_0_1;
zipper_tree_0_1_1 = callPackage
(
@@ -29422,17 +38969,17 @@ let
zipper_tree = zipper_tree_0_1_1;
- zlist_1_0_1 = callPackage
+ zlist_1_0_3 = callPackage
(
{ buildRebar3, packageOverrides ? {}, fetchHex }:
buildRebar3 ({
name = "zlist";
- version = "1.0.1";
+ version = "1.0.3";
src = fetchHex {
pkg = "zlist";
- version = "1.0.1";
+ version = "1.0.3";
sha256 =
- "d63b2ef3328f9b4b3ad827663db3d3b878311d08973c2abc202a66ad55c8a78c";
+ "c5ed3928628cfc9041afb6b1ee3d73d5c85473e6d3ce0f4cb6b1fcb20a207b89";
};
meta = {
@@ -29443,7 +38990,7 @@ let
} // packageOverrides)
) {};
- zlist = zlist_1_0_1;
+ zlist = zlist_1_0_3;
};
in stdenv.lib.fix' (stdenv.lib.extends overrides packages)
\ No newline at end of file
diff --git a/pkgs/development/beam-modules/hex-registry-snapshot.nix b/pkgs/development/beam-modules/hex-registry-snapshot.nix
index 3c2690c0103..b4f02a127c0 100644
--- a/pkgs/development/beam-modules/hex-registry-snapshot.nix
+++ b/pkgs/development/beam-modules/hex-registry-snapshot.nix
@@ -2,14 +2,14 @@
stdenv.mkDerivation rec {
name = "hex-registry";
- rev = "59b836d";
+ rev = "d58a937";
version = "0.0.0+build.${rev}";
src = fetchFromGitHub {
owner = "erlang-nix";
repo = "hex-pm-registry-snapshots";
inherit rev;
- sha256 = "1l8m6ckn5ivhfiv3k4dymi6b7wg511fwymnpxd6ymfd39dq0n5b0";
+ sha256 = "11ymmn75qjlhzf7aaza708gq0hqg55dzd3q13npgq43wg90rgpxy";
};
installPhase = ''
diff --git a/pkgs/development/compilers/aldor/default.nix b/pkgs/development/compilers/aldor/default.nix
index 352dde6d9e1..09ccf9510bb 100644
--- a/pkgs/development/compilers/aldor/default.nix
+++ b/pkgs/development/compilers/aldor/default.nix
@@ -28,6 +28,8 @@ stdenv.mkDerivation {
'';
meta = {
+ # Please become a maintainer to fix this package
+ broken = true;
homepage = "http://www.aldor.org/";
description = "Programming language with an expressive type system";
license = stdenv.lib.licenses.asl20;
diff --git a/pkgs/development/compilers/avian/default.nix b/pkgs/development/compilers/avian/default.nix
new file mode 100644
index 00000000000..c2a2b93fc0c
--- /dev/null
+++ b/pkgs/development/compilers/avian/default.nix
@@ -0,0 +1,36 @@
+{ stdenv, fetchFromGitHub, zlib, jdk }:
+
+stdenv.mkDerivation rec {
+ name = "avian-${version}";
+ version = "1.2.0";
+
+ src = fetchFromGitHub {
+ owner = "readytalk";
+ repo = "avian";
+ rev = "v${version}";
+ sha256 = "1j2y45cpqk3x6a743mgpg7z3ivwm7qc9jy6xirvay7ah1qyxmm48";
+ };
+
+ buildInputs = [
+ zlib
+ jdk
+ ];
+
+ installPhase = ''
+ mkdir -p $out/bin
+ cp build/*/avian $out/bin/
+ cp build/*/avian-dynamic $out/bin/
+ '';
+
+ meta = {
+ description = "Lightweight Java virtual machine";
+ longDescription = ''
+ Avian is a lightweight virtual machine and class library designed
+ to provide a useful subset of Java’s features, suitable for
+ building self-contained applications.
+ '';
+ homepage = https://readytalk.github.io/avian/;
+ license = stdenv.lib.licenses.isc;
+ platforms = stdenv.lib.platforms.all;
+ };
+}
diff --git a/pkgs/development/compilers/boo/default.nix b/pkgs/development/compilers/boo/default.nix
index c57d4de8767..68d3e4d12ed 100644
--- a/pkgs/development/compilers/boo/default.nix
+++ b/pkgs/development/compilers/boo/default.nix
@@ -41,5 +41,6 @@ in stdenv.mkDerivation rec {
meta = with stdenv.lib; {
description = "The Boo Programming Language";
platforms = platforms.linux;
+ broken = true;
};
}
diff --git a/pkgs/development/compilers/chicken/0001-Introduce-CHICKEN_REPOSITORY_EXTRA.patch b/pkgs/development/compilers/chicken/0001-Introduce-CHICKEN_REPOSITORY_EXTRA.patch
index 0962c9cf46d..ca72ba0119f 100644
--- a/pkgs/development/compilers/chicken/0001-Introduce-CHICKEN_REPOSITORY_EXTRA.patch
+++ b/pkgs/development/compilers/chicken/0001-Introduce-CHICKEN_REPOSITORY_EXTRA.patch
@@ -1,6 +1,6 @@
-From 752dff853186dc334c519a86fa92f087795fea02 Mon Sep 17 00:00:00 2001
-From: Moritz Heidkamp
-Date: Wed, 1 Oct 2014 22:41:30 +0200
+From 2877f33747e3871c3a682b3a0c812b8ba2e4da5a Mon Sep 17 00:00:00 2001
+From: Caolan McMahon
+Date: Sat, 25 Jun 2016 11:52:28 +0100
Subject: [PATCH] Introduce CHICKEN_REPOSITORY_EXTRA
This environment variable works like CHICKEN_REPOSITORY but supports
@@ -8,47 +8,74 @@ multiple paths separated by `:'. Those paths are searched after
CHICKEN_REPOSITORY when loading extensions via `require-library' and
friends. It can be accessed and changed at runtime via the new procedure
`repository-extra-paths' which is analog to `repository-path'.
+
+Original patch by Moritz Heidkamp.
+Updated by Caolan McMahon for CHICKEN 4.11.0
---
- chicken-install.scm | 11 +++++++----
+ chicken-install.scm | 29 ++++++++++++++++++++++++-----
chicken.import.scm | 1 +
eval.scm | 37 +++++++++++++++++++++++++++++++------
- 3 files changed, 39 insertions(+), 10 deletions(-)
+ 3 files changed, 56 insertions(+), 11 deletions(-)
diff --git a/chicken-install.scm b/chicken-install.scm
-index 2ef6ef4..b5c6bf8 100644
+index 7bc6041..f557793 100644
--- a/chicken-install.scm
+++ b/chicken-install.scm
-@@ -109,10 +109,10 @@
- (define *show-foreign-depends* #f)
- (define *hacks* '())
+@@ -120,6 +120,19 @@
+ (sprintf "lib/chicken/~a" (##sys#fudge 42)))
+ (repository-path)))))
-- (define (repo-path)
+ (define (repo-paths)
- (if (and *cross-chicken* (not *host-extension*))
-- (make-pathname C_TARGET_LIB_HOME (sprintf "chicken/~a" C_BINARY_VERSION))
-- (repository-path)))
-+ (list (make-pathname C_TARGET_LIB_HOME (sprintf "chicken/~a" C_BINARY_VERSION)))
-+ (cons (repository-path) (repository-extra-paths))))
-
++ (if *deploy*
++ *prefix*
++ (if (and *cross-chicken* (not *host-extension*))
++ (list (make-pathname C_TARGET_LIB_HOME (sprintf "chicken/~a" C_BINARY_VERSION)))
++ (cons
++ (if *prefix*
++ (make-pathname
++ *prefix*
++ (sprintf "lib/chicken/~a" (##sys#fudge 42)))
++ (repository-path))
++ (repository-extra-paths)))))
++
(define (get-prefix #!optional runtime)
(cond ((and *cross-chicken*
-@@ -757,7 +757,10 @@
+ (not *host-extension*))
+@@ -226,10 +239,13 @@
+ (chicken-version) )
+ ;; Duplication of (extension-information) to get custom
+ ;; prefix. This should be fixed.
+- ((let* ((ep (##sys#canonicalize-extension-path x 'ext-version))
+- (sf (make-pathname (repo-path) ep "setup-info")))
+- (and (file-exists? sf)
+- (with-input-from-file sf read))) =>
++ ((let ((ep (##sys#canonicalize-extension-path x 'ext-version)))
++ (let loop ((paths (repo-paths)))
++ (cond ((null? paths) #f)
++ ((let ((sf (make-pathname (car paths) ep "setup-info")))
++ (and (file-exists? sf)
++ (with-input-from-file sf read))))
++ (else (loop (cdr paths)))))) =>
+ (lambda (info)
+ (let ((a (assq 'version info)))
+ (if a
+@@ -776,7 +792,10 @@
"installed extension has no information about which egg it belongs to"
(pathname-file sf))
#f))))
- (glob (make-pathname (repo-path) "*" "setup-info")))
+ (append-map
+ (lambda (path)
-+ (glob (make-pathname path "*" "setup-info")))
++ (glob (make-pathname path "*" "setup-info")))
+ (repo-paths)))
equal?))
(define (list-available-extensions trans locn)
diff --git a/chicken.import.scm b/chicken.import.scm
-index baa7316..2839b16 100644
+index f6e3a19..be1637c 100644
--- a/chicken.import.scm
+++ b/chicken.import.scm
-@@ -201,6 +201,7 @@
+@@ -200,6 +200,7 @@
repl
repl-prompt
repository-path
@@ -57,7 +84,7 @@ index baa7316..2839b16 100644
reset
reset-handler
diff --git a/eval.scm b/eval.scm
-index bbcd86c..838588d 100644
+index 6242f62..f7d76d4 100644
--- a/eval.scm
+++ b/eval.scm
@@ -81,6 +81,7 @@
@@ -68,9 +95,9 @@ index bbcd86c..838588d 100644
(define-constant prefix-environment-variable "CHICKEN_PREFIX")
; these are actually in unit extras, but that is used by default
-@@ -1180,6 +1181,25 @@
+@@ -1176,6 +1177,25 @@
- (define repository-path ##sys#repository-path)
+ (define ##sys#repository-path repository-path)
+(define ##sys#repository-extra-paths
+ (let* ((repaths (get-environment-variable repository-extra-environment-variable))
@@ -94,7 +121,7 @@ index bbcd86c..838588d 100644
(define ##sys#setup-mode #f)
(define ##sys#find-extension
-@@ -1197,6 +1217,7 @@
+@@ -1193,6 +1213,7 @@
(let loop ((paths (##sys#append
(if ##sys#setup-mode '(".") '())
(if rp (list rp) '())
@@ -102,7 +129,7 @@ index bbcd86c..838588d 100644
(if inc? ##sys#include-pathnames '())
(if ##sys#setup-mode '() '("."))) ))
(and (pair? paths)
-@@ -1256,12 +1277,16 @@
+@@ -1252,12 +1273,16 @@
[string-append string-append]
[read read] )
(lambda (id loc)
@@ -126,5 +153,5 @@ index bbcd86c..838588d 100644
(define (extension-information ext)
(##sys#extension-information ext 'extension-information) )
--
-2.1.0
+2.1.4
diff --git a/pkgs/development/compilers/chicken/default.nix b/pkgs/development/compilers/chicken/default.nix
index 82cf23e8be4..24d583ed886 100644
--- a/pkgs/development/compilers/chicken/default.nix
+++ b/pkgs/development/compilers/chicken/default.nix
@@ -1,7 +1,7 @@
{ stdenv, fetchurl, makeWrapper, bootstrap-chicken ? null }:
let
- version = "4.10.0";
+ version = "4.11.0";
platform = with stdenv;
if isDarwin then "macosx"
else if isCygwin then "cygwin"
@@ -13,15 +13,15 @@ in
stdenv.mkDerivation {
name = "chicken-${version}";
- binaryVersion = 7;
+ binaryVersion = 8;
src = fetchurl {
- url = "http://code.call-cc.org/releases/4.10.0/chicken-${version}.tar.gz";
- sha256 = "16w96jrhb6qf62fgznk53f55yhfv81damghdjn31k5hirnmza1qf";
+ url = "http://code.call-cc.org/releases/${version}/chicken-${version}.tar.gz";
+ sha256 = "12ddyiikqknpr8h6llsxbg2fz75xnayvcnsvr1cwv8xnjn7jpp73";
};
setupHook = lib.ifEnable (bootstrap-chicken != null) ./setup-hook.sh;
-
+
buildFlags = "PLATFORM=${platform} PREFIX=$(out) VARDIR=$(out)/var/lib";
installFlags = "PLATFORM=${platform} PREFIX=$(out) VARDIR=$(out)/var/lib";
diff --git a/pkgs/development/compilers/chicken/setup-hook.sh b/pkgs/development/compilers/chicken/setup-hook.sh
index 8d6b990a7e0..d7f28539dc6 100644
--- a/pkgs/development/compilers/chicken/setup-hook.sh
+++ b/pkgs/development/compilers/chicken/setup-hook.sh
@@ -1,5 +1,5 @@
addChickenRepositoryPath() {
- addToSearchPathWithCustomDelimiter : CHICKEN_REPOSITORY_EXTRA "$1/lib/chicken/7/"
+ addToSearchPathWithCustomDelimiter : CHICKEN_REPOSITORY_EXTRA "$1/lib/chicken/8/"
# addToSearchPathWithCustomDelimiter \; CHICKEN_INCLUDE_PATH "$1/share/"
export CHICKEN_INCLUDE_PATH="$1/share;$CHICKEN_INCLUDE_PATH"
}
diff --git a/pkgs/development/compilers/cmdstan/default.nix b/pkgs/development/compilers/cmdstan/default.nix
index 182808031e6..4bfe72c7acd 100644
--- a/pkgs/development/compilers/cmdstan/default.nix
+++ b/pkgs/development/compilers/cmdstan/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchurl }:
+{ stdenv, fetchurl, python }:
stdenv.mkDerivation rec {
name = "cmdstan-2.9.0";
@@ -10,9 +10,10 @@ stdenv.mkDerivation rec {
buildFlags = "build";
enableParallelBuilding = true;
+ nativeBuildInputs = stdenv.lib.optional doCheck python;
doCheck = true;
- checkPhase = "./runCmdStanTests.py src/test/interface";
+ checkPhase = "python ./runCmdStanTests.py src/test/interface"; # see #5368
installPhase = ''
mkdir -p $out/opt $out/bin
diff --git a/pkgs/development/compilers/colm/default.nix b/pkgs/development/compilers/colm/default.nix
index 3a3670279c6..f9dc99ee2f8 100644
--- a/pkgs/development/compilers/colm/default.nix
+++ b/pkgs/development/compilers/colm/default.nix
@@ -22,6 +22,7 @@ stdenv.mkDerivation rec {
description = "A programming language for the analysis and transformation of computer languages";
homepage = http://www.colm.net/open-source/colm;
license = licenses.gpl2;
+ platforms = platforms.unix;
maintainers = with maintainers; [ pSub ];
};
}
diff --git a/pkgs/development/compilers/elm/packages/elm-repl.nix b/pkgs/development/compilers/elm/packages/elm-repl.nix
index 030378e1811..3b17722b91d 100644
--- a/pkgs/development/compilers/elm/packages/elm-repl.nix
+++ b/pkgs/development/compilers/elm/packages/elm-repl.nix
@@ -24,6 +24,6 @@ mkDerivation {
];
jailbreak = true;
homepage = "https://github.com/elm-lang/elm-repl";
- description = "a REPL for Elm";
+ description = "A REPL for Elm";
license = stdenv.lib.licenses.bsd3;
}
diff --git a/pkgs/development/compilers/emscripten-fastcomp/default.nix b/pkgs/development/compilers/emscripten-fastcomp/default.nix
index 9c540b0c10e..5403c29baab 100644
--- a/pkgs/development/compilers/emscripten-fastcomp/default.nix
+++ b/pkgs/development/compilers/emscripten-fastcomp/default.nix
@@ -38,7 +38,7 @@ stdenv.mkDerivation rec {
meta = with stdenv.lib; {
homepage = https://github.com/kripken/emscripten-fastcomp;
- description = "emscripten llvm";
+ description = "Emscripten llvm";
platforms = platforms.all;
maintainers = with maintainers; [ qknight matthewbauer ];
license = stdenv.lib.licenses.ncsa;
diff --git a/pkgs/development/compilers/fstar/default.nix b/pkgs/development/compilers/fstar/default.nix
index 0b4ea9a1823..70aa22569a3 100644
--- a/pkgs/development/compilers/fstar/default.nix
+++ b/pkgs/development/compilers/fstar/default.nix
@@ -50,7 +50,7 @@ stdenv.mkDerivation rec {
-C src/ocaml-output
'';
- doCheck = true;
+ doCheck = !stdenv.isDarwin;
preCheck = "ulimit -s unlimited";
@@ -75,6 +75,6 @@ stdenv.mkDerivation rec {
description = "ML-like functional programming language aimed at program verification";
homepage = "https://www.fstar-lang.org";
license = licenses.asl20;
- platforms = with platforms; linux;
+ platforms = with platforms; darwin ++ linux;
};
}
diff --git a/pkgs/development/compilers/gcc/4.5/default.nix b/pkgs/development/compilers/gcc/4.5/default.nix
index db178db69a9..7a97b689714 100644
--- a/pkgs/development/compilers/gcc/4.5/default.nix
+++ b/pkgs/development/compilers/gcc/4.5/default.nix
@@ -181,11 +181,11 @@ stdenv.mkDerivation ({
sed -i "${gnu_h}" \
-es'|LIB_SPEC *"\(.*\)$|LIB_SPEC "${extraLibSpec} \1|g'
- echo "setting \`NATIVE_SYSTEM_HEADER_DIR' and \`STANDARD_INCLUDE_DIR' to \`${libc}/include'..."
+ echo "setting \`NATIVE_SYSTEM_HEADER_DIR' and \`STANDARD_INCLUDE_DIR' to \`${libc.dev}/include'..."
sed -i "${gnu_h}" \
- -es'|#define STANDARD_INCLUDE_DIR.*$|#define STANDARD_INCLUDE_DIR "${libc}/include"|g'
+ -es'|#define STANDARD_INCLUDE_DIR.*$|#define STANDARD_INCLUDE_DIR "${libc.dev}/include"|g'
sed -i gcc/config/t-gnu \
- -es'|NATIVE_SYSTEM_HEADER_DIR.*$|NATIVE_SYSTEM_HEADER_DIR = ${libc}/include|g'
+ -es'|NATIVE_SYSTEM_HEADER_DIR.*$|NATIVE_SYSTEM_HEADER_DIR = ${libc.dev}/include|g'
''
else if cross != null || stdenv.cc.libc != null then
# On NixOS, use the right path to the dynamic linker instead of
@@ -199,7 +199,7 @@ stdenv.mkDerivation ({
grep -q LIBC_DYNAMIC_LINKER "$header" || continue
echo " fixing \`$header'..."
sed -i "$header" \
- -e 's|define[[:blank:]]*\([UCG]\+\)LIBC_DYNAMIC_LINKER\([0-9]*\)[[:blank:]]"\([^\"]\+\)"$|define \1LIBC_DYNAMIC_LINKER\2 "${libc}\3"|g'
+ -e 's|define[[:blank:]]*\([UCG]\+\)LIBC_DYNAMIC_LINKER\([0-9]*\)[[:blank:]]"\([^\"]\+\)"$|define \1LIBC_DYNAMIC_LINKER\2 "${libc.out}\3"|g'
done
''
else null;
@@ -207,10 +207,10 @@ stdenv.mkDerivation ({
inherit noSysDirs profiledCompiler staticCompiler langJava crossStageStatic
libcCross crossMingw;
- nativeBuildInputs = [ texinfo which ]
+ nativeBuildInputs = [ texinfo which gettext ]
++ optional (perl != null) perl;
- buildInputs = [ gmp mpfr libmpc libelf gettext ]
+ buildInputs = [ gmp mpfr libmpc libelf ]
++ (optional (ppl != null) ppl)
++ (optional (cloogppl != null) cloogppl)
++ (optional (zlib != null) zlib)
@@ -286,6 +286,7 @@ stdenv.mkDerivation ({
${if langJava && javaAntlr != null then "--with-antlr-jar=${javaAntlr.crossDrv}" else ""}
--with-gmp=${gmp.crossDrv}
--with-mpfr=${mpfr.crossDrv}
+ --with-mpc=${libmpc.crossDrv}
--disable-libstdcxx-pch
--without-included-gettext
--with-system-zlib
@@ -348,15 +349,28 @@ stdenv.mkDerivation ({
++ optional (libpthread != null) libpthread)));
EXTRA_TARGET_CFLAGS =
- if cross != null && libcCross != null
- then "-idirafter ${libcCross}/include"
+ if cross != null && libcCross != null then [
+ "-idirafter ${libcCross.dev}/include"
+ ]
+ ++ optionals (! crossStageStatic) [
+ "-B${libcCross.out}/lib"
+ ]
else null;
EXTRA_TARGET_LDFLAGS =
- if cross != null && libcCross != null
- then "-B${libcCross}/lib -Wl,-L${libcCross}/lib" +
- (optionalString (libpthreadCross != null)
- " -L${libpthreadCross}/lib -Wl,${libpthreadCross.TARGET_LDFLAGS}")
+ if cross != null && libcCross != null then [
+ "-Wl,-L${libcCross.out}/lib"
+ ]
+ ++ (if crossStageStatic then [
+ "-B${libcCross.out}/lib"
+ ] else [
+ "-Wl,-rpath,${libcCross.out}/lib"
+ "-Wl,-rpath-link,${libcCross.out}/lib"
+ ])
+ ++ optionals (libpthreadCross != null) [
+ "-L${libpthreadCross}/lib"
+ "-Wl,${libpthreadCross.TARGET_LDFLAGS}"
+ ]
else null;
passthru = { inherit langC langCC langAda langFortran langVhdl
diff --git a/pkgs/development/compilers/gcc/4.6/builder.sh b/pkgs/development/compilers/gcc/4.6/builder.sh
index af36ec33b70..6087bb30cfb 100644
--- a/pkgs/development/compilers/gcc/4.6/builder.sh
+++ b/pkgs/development/compilers/gcc/4.6/builder.sh
@@ -209,7 +209,9 @@ postInstall() {
# Move runtime libraries to $lib.
mkdir -p $lib/lib
ln -s lib $lib/lib64
- mv -v $out/lib/lib*.so $out/lib/lib*.so.*[0-9] $out/lib/*.la $lib/lib/
+ moveToOutput "lib/lib*.so" "$lib"
+ moveToOutput "lib/lib*.so.*[0-9]" "$lib"
+ moveToOutput "lib/*.la" "$lib"
for i in $lib/lib/*.la; do
substituteInPlace $i --replace $out $lib
done
diff --git a/pkgs/development/compilers/gcc/4.6/default.nix b/pkgs/development/compilers/gcc/4.6/default.nix
index ce37ec7d02d..f98fde69fc4 100644
--- a/pkgs/development/compilers/gcc/4.6/default.nix
+++ b/pkgs/development/compilers/gcc/4.6/default.nix
@@ -170,7 +170,7 @@ let version = "4.6.4";
"-stage-final";
crossNameAddon = if cross != null then "-${cross.config}" + stageNameAddon else "";
- bootstrap = cross == null && !stdenv.isArm && !stdenv.isMips;
+ bootstrap = cross == null && !stdenv.isArm && !stdenv.isMips && !stdenv.isDarwin;
in
@@ -231,11 +231,11 @@ stdenv.mkDerivation ({
sed -i "${gnu_h}" \
-es'|LIB_SPEC *"\(.*\)$|LIB_SPEC "${extraLibSpec} \1|g'
- echo "setting \`NATIVE_SYSTEM_HEADER_DIR' and \`STANDARD_INCLUDE_DIR' to \`${libc}/include'..."
+ echo "setting \`NATIVE_SYSTEM_HEADER_DIR' and \`STANDARD_INCLUDE_DIR' to \`${libc.dev}/include'..."
sed -i "${gnu_h}" \
- -es'|#define STANDARD_INCLUDE_DIR.*$|#define STANDARD_INCLUDE_DIR "${libc}/include"|g'
+ -es'|#define STANDARD_INCLUDE_DIR.*$|#define STANDARD_INCLUDE_DIR "${libc.dev}/include"|g'
sed -i gcc/config/t-gnu \
- -es'|NATIVE_SYSTEM_HEADER_DIR.*$|NATIVE_SYSTEM_HEADER_DIR = ${libc}/include|g'
+ -es'|NATIVE_SYSTEM_HEADER_DIR.*$|NATIVE_SYSTEM_HEADER_DIR = ${libc.dev}/include|g'
''
else if cross != null || stdenv.cc.libc != null then
# On NixOS, use the right path to the dynamic linker instead of
@@ -249,7 +249,7 @@ stdenv.mkDerivation ({
grep -q LIBC_DYNAMIC_LINKER "$header" || continue
echo " fixing \`$header'..."
sed -i "$header" \
- -e 's|define[[:blank:]]*\([UCG]\+\)LIBC_DYNAMIC_LINKER\([0-9]*\)[[:blank:]]"\([^\"]\+\)"$|define \1LIBC_DYNAMIC_LINKER\2 "${libc}\3"|g'
+ -e 's|define[[:blank:]]*\([UCG]\+\)LIBC_DYNAMIC_LINKER\([0-9]*\)[[:blank:]]"\([^\"]\+\)"$|define \1LIBC_DYNAMIC_LINKER\2 "${libc.out}\3"|g'
done
''
else null;
@@ -359,6 +359,7 @@ stdenv.mkDerivation ({
${if langJava && javaAntlr != null then "--with-antlr-jar=${javaAntlr.crossDrv}" else ""}
--with-gmp=${gmp.crossDrv}
--with-mpfr=${mpfr.crossDrv}
+ --with-mpc=${libmpc.crossDrv}
--disable-libstdcxx-pch
--without-included-gettext
--with-system-zlib
@@ -423,15 +424,28 @@ stdenv.mkDerivation ({
++ optional (libpthread != null) libpthread)));
EXTRA_TARGET_CFLAGS =
- if cross != null && libcCross != null
- then "-idirafter ${libcCross}/include"
+ if cross != null && libcCross != null then [
+ "-idirafter ${libcCross.dev}/include"
+ ]
+ ++ optionals (! crossStageStatic) [
+ "-B${libcCross.out}/lib"
+ ]
else null;
EXTRA_TARGET_LDFLAGS =
- if cross != null && libcCross != null
- then "-B${libcCross}/lib -Wl,-L${libcCross}/lib" +
- (optionalString (libpthreadCross != null)
- " -L${libpthreadCross}/lib -Wl,${libpthreadCross.TARGET_LDFLAGS}")
+ if cross != null && libcCross != null then [
+ "-Wl,-L${libcCross.out}/lib"
+ ]
+ ++ (if crossStageStatic then [
+ "-B${libcCross.out}/lib"
+ ] else [
+ "-Wl,-rpath,${libcCross.out}/lib"
+ "-Wl,-rpath-link,${libcCross.out}/lib"
+ ])
+ ++ optionals (libpthreadCross != null) [
+ "-L${libpthreadCross}/lib"
+ "-Wl,${libpthreadCross.TARGET_LDFLAGS}"
+ ]
else null;
passthru = { inherit langC langCC langAda langFortran langVhdl
diff --git a/pkgs/development/compilers/gcc/4.8/default.nix b/pkgs/development/compilers/gcc/4.8/default.nix
index d80fd5e99a6..d15a9a90b79 100644
--- a/pkgs/development/compilers/gcc/4.8/default.nix
+++ b/pkgs/development/compilers/gcc/4.8/default.nix
@@ -70,7 +70,8 @@ let version = "4.8.5";
# The GNAT Makefiles did not pay attention to CFLAGS_FOR_TARGET for its
# target libraries and tools.
++ optional langAda ../gnat-cflags.patch
- ++ optional langFortran ../gfortran-driving.patch;
+ ++ optional langFortran ../gfortran-driving.patch
+ ++ optional stdenv.isDarwin ../gfortran-darwin-NXConstStr.patch;
javaEcj = fetchurl {
# The `$(top_srcdir)/ecj.jar' file is automatically picked up at
@@ -164,8 +165,8 @@ let version = "4.8.5";
" --disable-libatomic " + # libatomic requires libc
" --disable-decimal-float" # libdecnumber requires libc
else
- (if crossDarwin then " --with-sysroot=${libcCross}/share/sysroot"
- else " --with-headers=${libcCross}/include") +
+ (if crossDarwin then " --with-sysroot=${libcCross.out}/share/sysroot"
+ else " --with-headers=${libcCross.dev}/include") +
# Ensure that -print-prog-name is able to find the correct programs.
(stdenv.lib.optionalString (crossMingw || crossDarwin) (
" --with-as=${binutilsCross}/bin/${cross.config}-as" +
@@ -197,7 +198,7 @@ let version = "4.8.5";
stageNameAddon = if crossStageStatic then "-stage-static" else "-stage-final";
crossNameAddon = if cross != null then "-${cross.config}" + stageNameAddon else "";
- bootstrap = cross == null && !stdenv.isArm && !stdenv.isMips;
+ bootstrap = cross == null && !stdenv.isArm && !stdenv.isMips && !stdenv.isDarwin;
in
@@ -257,9 +258,9 @@ stdenv.mkDerivation ({
sed -i "${gnu_h}" \
-es'|LIB_SPEC *"\(.*\)$|LIB_SPEC "${extraLibSpec} \1|g'
- echo "setting \`NATIVE_SYSTEM_HEADER_DIR' and \`STANDARD_INCLUDE_DIR' to \`${libc}/include'..."
+ echo "setting \`NATIVE_SYSTEM_HEADER_DIR' and \`STANDARD_INCLUDE_DIR' to \`${libc.dev}/include'..."
sed -i "${gnu_h}" \
- -es'|#define STANDARD_INCLUDE_DIR.*$|#define STANDARD_INCLUDE_DIR "${libc}/include"|g'
+ -es'|#define STANDARD_INCLUDE_DIR.*$|#define STANDARD_INCLUDE_DIR "${libc.dev}/include"|g'
''
else if cross != null || stdenv.cc.libc != null then
# On NixOS, use the right path to the dynamic linker instead of
@@ -273,7 +274,7 @@ stdenv.mkDerivation ({
grep -q LIBC_DYNAMIC_LINKER "$header" || continue
echo " fixing \`$header'..."
sed -i "$header" \
- -e 's|define[[:blank:]]*\([UCG]\+\)LIBC_DYNAMIC_LINKER\([0-9]*\)[[:blank:]]"\([^\"]\+\)"$|define \1LIBC_DYNAMIC_LINKER\2 "${libc}\3"|g'
+ -e 's|define[[:blank:]]*\([UCG]\+\)LIBC_DYNAMIC_LINKER\([0-9]*\)[[:blank:]]"\([^\"]\+\)"$|define \1LIBC_DYNAMIC_LINKER\2 "${libc.out}\3"|g'
done
''
else null;
@@ -306,15 +307,6 @@ stdenv.mkDerivation ({
export LDFLAGS_FOR_TARGET="-Wl,-rpath,$prefix/lib/amd64 $LDFLAGS_FOR_TARGET"
export CXXFLAGS_FOR_TARGET="-Wl,-rpath,$prefix/lib/amd64 $CXXFLAGS_FOR_TARGET"
export CFLAGS_FOR_TARGET="-Wl,-rpath,$prefix/lib/amd64 $CFLAGS_FOR_TARGET"
- '' + stdenv.lib.optionalString stdenv.isDarwin ''
- if SDKROOT=$(/usr/bin/xcrun --show-sdk-path); then
- configureFlagsArray+=(--with-native-system-header-dir=$SDKROOT/usr/include)
- makeFlagsArray+=( \
- CFLAGS_FOR_BUILD=-F$SDKROOT/System/Library/Frameworks \
- CFLAGS_FOR_TARGET=-F$SDKROOT/System/Library/Frameworks \
- FLAGS_FOR_TARGET=-F$SDKROOT/System/Library/Frameworks \
- )
- fi
'';
dontDisableStatic = true;
@@ -417,6 +409,7 @@ stdenv.mkDerivation ({
${if langJava && javaAntlr != null then "--with-antlr-jar=${javaAntlr.crossDrv}" else ""}
--with-gmp=${gmp.crossDrv}
--with-mpfr=${mpfr.crossDrv}
+ --with-mpc=${libmpc.crossDrv}
--disable-libstdcxx-pch
--without-included-gettext
--with-system-zlib
@@ -484,15 +477,28 @@ stdenv.mkDerivation ({
++ optional (libpthread != null) libpthread)));
EXTRA_TARGET_CFLAGS =
- if cross != null && libcCross != null
- then "-idirafter ${libcCross}/include"
+ if cross != null && libcCross != null then [
+ "-idirafter ${libcCross.dev}/include"
+ ]
+ ++ optionals (! crossStageStatic) [
+ "-B${libcCross.out}/lib"
+ ]
else null;
EXTRA_TARGET_LDFLAGS =
- if cross != null && libcCross != null
- then "-B${libcCross}/lib -Wl,-L${libcCross}/lib" +
- (optionalString (libpthreadCross != null)
- " -L${libpthreadCross}/lib -Wl,${libpthreadCross.TARGET_LDFLAGS}")
+ if cross != null && libcCross != null then [
+ "-Wl,-L${libcCross.out}/lib"
+ ]
+ ++ (if crossStageStatic then [
+ "-B${libcCross.out}/lib"
+ ] else [
+ "-Wl,-rpath,${libcCross.out}/lib"
+ "-Wl,-rpath-link,${libcCross.out}/lib"
+ ])
+ ++ optionals (libpthreadCross != null) [
+ "-L${libpthreadCross}/lib"
+ "-Wl,${libpthreadCross.TARGET_LDFLAGS}"
+ ]
else null;
passthru =
diff --git a/pkgs/development/compilers/gcc/4.9/default.nix b/pkgs/development/compilers/gcc/4.9/default.nix
index ab67f8e0442..e0a8b98c21f 100644
--- a/pkgs/development/compilers/gcc/4.9/default.nix
+++ b/pkgs/development/compilers/gcc/4.9/default.nix
@@ -166,8 +166,8 @@ let version = "4.9.3";
" --disable-libatomic " + # libatomic requires libc
" --disable-decimal-float" # libdecnumber requires libc
else
- (if crossDarwin then " --with-sysroot=${libcCross}/share/sysroot"
- else " --with-headers=${libcCross}/include") +
+ (if crossDarwin then " --with-sysroot=${libcCross.out}/share/sysroot"
+ else " --with-headers=${libcCross.dev}/include") +
# Ensure that -print-prog-name is able to find the correct programs.
(stdenv.lib.optionalString (crossMingw || crossDarwin) (
" --with-as=${binutilsCross}/bin/${cross.config}-as" +
@@ -199,7 +199,7 @@ let version = "4.9.3";
stageNameAddon = if crossStageStatic then "-stage-static" else "-stage-final";
crossNameAddon = if cross != null then "-${cross.config}" + stageNameAddon else "";
- bootstrap = cross == null;
+ bootstrap = cross == null && !stdenv.isDarwin;
in
@@ -260,9 +260,9 @@ stdenv.mkDerivation ({
sed -i "${gnu_h}" \
-es'|LIB_SPEC *"\(.*\)$|LIB_SPEC "${extraLibSpec} \1|g'
- echo "setting \`NATIVE_SYSTEM_HEADER_DIR' and \`STANDARD_INCLUDE_DIR' to \`${libc}/include'..."
+ echo "setting \`NATIVE_SYSTEM_HEADER_DIR' and \`STANDARD_INCLUDE_DIR' to \`${libc.dev}/include'..."
sed -i "${gnu_h}" \
- -es'|#define STANDARD_INCLUDE_DIR.*$|#define STANDARD_INCLUDE_DIR "${libc}/include"|g'
+ -es'|#define STANDARD_INCLUDE_DIR.*$|#define STANDARD_INCLUDE_DIR "${libc.dev}/include"|g'
''
else if cross != null || stdenv.cc.libc != null then
# On NixOS, use the right path to the dynamic linker instead of
@@ -276,7 +276,7 @@ stdenv.mkDerivation ({
grep -q LIBC_DYNAMIC_LINKER "$header" || continue
echo " fixing \`$header'..."
sed -i "$header" \
- -e 's|define[[:blank:]]*\([UCG]\+\)LIBC_DYNAMIC_LINKER\([0-9]*\)[[:blank:]]"\([^\"]\+\)"$|define \1LIBC_DYNAMIC_LINKER\2 "${libc}\3"|g'
+ -e 's|define[[:blank:]]*\([UCG]\+\)LIBC_DYNAMIC_LINKER\([0-9]*\)[[:blank:]]"\([^\"]\+\)"$|define \1LIBC_DYNAMIC_LINKER\2 "${libc.out}\3"|g'
done
''
else null;
@@ -309,15 +309,6 @@ stdenv.mkDerivation ({
export LDFLAGS_FOR_TARGET="-Wl,-rpath,$prefix/lib/amd64 $LDFLAGS_FOR_TARGET"
export CXXFLAGS_FOR_TARGET="-Wl,-rpath,$prefix/lib/amd64 $CXXFLAGS_FOR_TARGET"
export CFLAGS_FOR_TARGET="-Wl,-rpath,$prefix/lib/amd64 $CFLAGS_FOR_TARGET"
- '' + stdenv.lib.optionalString stdenv.isDarwin ''
- if SDKROOT=$(/usr/bin/xcrun --show-sdk-path); then
- configureFlagsArray+=(--with-native-system-header-dir=$SDKROOT/usr/include)
- makeFlagsArray+=( \
- CFLAGS_FOR_BUILD=-F$SDKROOT/System/Library/Frameworks \
- CFLAGS_FOR_TARGET=-F$SDKROOT/System/Library/Frameworks \
- FLAGS_FOR_TARGET=-F$SDKROOT/System/Library/Frameworks \
- )
- fi
''
+ stdenv.lib.optionalString (langJava || langGo) ''
export lib=$out;
@@ -424,6 +415,7 @@ stdenv.mkDerivation ({
${if langJava && javaAntlr != null then "--with-antlr-jar=${javaAntlr.crossDrv}" else ""}
--with-gmp=${gmp.crossDrv}
--with-mpfr=${mpfr.crossDrv}
+ --with-mpc=${libmpc.crossDrv}
--disable-libstdcxx-pch
--without-included-gettext
--with-system-zlib
@@ -491,15 +483,28 @@ stdenv.mkDerivation ({
++ optional (libpthread != null) libpthread)));
EXTRA_TARGET_CFLAGS =
- if cross != null && libcCross != null
- then "-idirafter ${libcCross}/include"
+ if cross != null && libcCross != null then [
+ "-idirafter ${libcCross.dev}/include"
+ ]
+ ++ optionals (! crossStageStatic) [
+ "-B${libcCross.out}/lib"
+ ]
else null;
EXTRA_TARGET_LDFLAGS =
- if cross != null && libcCross != null
- then "-B${libcCross}/lib -Wl,-L${libcCross}/lib" +
- (optionalString (libpthreadCross != null)
- " -L${libpthreadCross}/lib -Wl,${libpthreadCross.TARGET_LDFLAGS}")
+ if cross != null && libcCross != null then [
+ "-Wl,-L${libcCross.out}/lib"
+ ]
+ ++ (if crossStageStatic then [
+ "-B${libcCross.out}/lib"
+ ] else [
+ "-Wl,-rpath,${libcCross.out}/lib"
+ "-Wl,-rpath-link,${libcCross.out}/lib"
+ ])
+ ++ optionals (libpthreadCross != null) [
+ "-L${libpthreadCross}/lib"
+ "-Wl,${libpthreadCross.TARGET_LDFLAGS}"
+ ]
else null;
passthru =
diff --git a/pkgs/development/compilers/gcc/5/default.nix b/pkgs/development/compilers/gcc/5/default.nix
index c1db238a89f..89a452166a1 100644
--- a/pkgs/development/compilers/gcc/5/default.nix
+++ b/pkgs/development/compilers/gcc/5/default.nix
@@ -58,7 +58,8 @@ assert langGo -> langCC;
with stdenv.lib;
with builtins;
-let version = "5.3.0";
+let version = "5.4.0";
+ sha256 = "0fihlcy5hnksdxk0sn6bvgnyq8gfrgs8m794b1jxwd1dxinzg3b0";
# Whether building a cross-compiler for GNU/Hurd.
crossGNU = cross != null && cross.config == "i586-pc-gnu";
@@ -165,8 +166,8 @@ let version = "5.3.0";
" --disable-libatomic " + # libatomic requires libc
" --disable-decimal-float" # libdecnumber requires libc
else
- (if crossDarwin then " --with-sysroot=${libcCross}/share/sysroot"
- else " --with-headers=${libcCross}/include") +
+ (if crossDarwin then " --with-sysroot=${getLib libcCross}/share/sysroot"
+ else " --with-headers=${getDev libcCross}/include") +
# Ensure that -print-prog-name is able to find the correct programs.
(stdenv.lib.optionalString (crossMingw || crossDarwin) (
" --with-as=${binutilsCross}/bin/${cross.config}-as" +
@@ -198,7 +199,7 @@ let version = "5.3.0";
stageNameAddon = if crossStageStatic then "-stage-static" else "-stage-final";
crossNameAddon = if cross != null then "-${cross.config}" + stageNameAddon else "";
- bootstrap = cross == null;
+ bootstrap = cross == null && !stdenv.isDarwin;
in
@@ -212,7 +213,7 @@ stdenv.mkDerivation ({
src = fetchurl {
url = "mirror://gnu/gcc/gcc-${version}/gcc-${version}.tar.bz2";
- sha256 = "1ny4smkp5bzs3cp8ss7pl6lk8yss0d9m4av1mvdp72r1x695akxq";
+ inherit sha256;
};
# FIXME stackprotector needs gcc 4.9 in bootstrap tools
@@ -259,9 +260,9 @@ stdenv.mkDerivation ({
sed -i "${gnu_h}" \
-es'|LIB_SPEC *"\(.*\)$|LIB_SPEC "${extraLibSpec} \1|g'
- echo "setting \`NATIVE_SYSTEM_HEADER_DIR' and \`STANDARD_INCLUDE_DIR' to \`${libc}/include'..."
+ echo "setting \`NATIVE_SYSTEM_HEADER_DIR' and \`STANDARD_INCLUDE_DIR' to \`${libc.dev}/include'..."
sed -i "${gnu_h}" \
- -es'|#define STANDARD_INCLUDE_DIR.*$|#define STANDARD_INCLUDE_DIR "${libc}/include"|g'
+ -es'|#define STANDARD_INCLUDE_DIR.*$|#define STANDARD_INCLUDE_DIR "${libc.dev}/include"|g'
''
else if cross != null || stdenv.cc.libc != null then
# On NixOS, use the right path to the dynamic linker instead of
@@ -275,7 +276,7 @@ stdenv.mkDerivation ({
grep -q LIBC_DYNAMIC_LINKER "$header" || continue
echo " fixing \`$header'..."
sed -i "$header" \
- -e 's|define[[:blank:]]*\([UCG]\+\)LIBC_DYNAMIC_LINKER\([0-9]*\)[[:blank:]]"\([^\"]\+\)"$|define \1LIBC_DYNAMIC_LINKER\2 "${libc}\3"|g'
+ -e 's|define[[:blank:]]*\([UCG]\+\)LIBC_DYNAMIC_LINKER\([0-9]*\)[[:blank:]]"\([^\"]\+\)"$|define \1LIBC_DYNAMIC_LINKER\2 "${libc.out}\3"|g'
done
''
else null;
@@ -309,15 +310,6 @@ stdenv.mkDerivation ({
export LDFLAGS_FOR_TARGET="-Wl,-rpath,$prefix/lib/amd64 $LDFLAGS_FOR_TARGET"
export CXXFLAGS_FOR_TARGET="-Wl,-rpath,$prefix/lib/amd64 $CXXFLAGS_FOR_TARGET"
export CFLAGS_FOR_TARGET="-Wl,-rpath,$prefix/lib/amd64 $CFLAGS_FOR_TARGET"
- '' + stdenv.lib.optionalString stdenv.isDarwin ''
- if SDKROOT=$(/usr/bin/xcrun --show-sdk-path); then
- configureFlagsArray+=(--with-native-system-header-dir=$SDKROOT/usr/include)
- makeFlagsArray+=( \
- CFLAGS_FOR_BUILD=-F$SDKROOT/System/Library/Frameworks \
- CFLAGS_FOR_TARGET=-F$SDKROOT/System/Library/Frameworks \
- FLAGS_FOR_TARGET=-F$SDKROOT/System/Library/Frameworks \
- )
- fi
'';
dontDisableStatic = true;
@@ -418,6 +410,7 @@ stdenv.mkDerivation ({
${if langJava && javaAntlr != null then "--with-antlr-jar=${javaAntlr.crossDrv}" else ""}
--with-gmp=${gmp.crossDrv}
--with-mpfr=${mpfr.crossDrv}
+ --with-mpc=${libmpc.crossDrv}
--disable-libstdcxx-pch
--without-included-gettext
--with-system-zlib
@@ -485,15 +478,28 @@ stdenv.mkDerivation ({
++ optional (libpthread != null) libpthread)));
EXTRA_TARGET_CFLAGS =
- if cross != null && libcCross != null
- then "-idirafter ${libcCross}/include"
+ if cross != null && libcCross != null then [
+ "-idirafter ${getDev libcCross}/include"
+ ]
+ ++ optionals (! crossStageStatic) [
+ "-B${libcCross.out}/lib"
+ ]
else null;
EXTRA_TARGET_LDFLAGS =
- if cross != null && libcCross != null
- then "-B${libcCross}/lib -Wl,-L${libcCross}/lib" +
- (optionalString (libpthreadCross != null)
- " -L${libpthreadCross}/lib -Wl,${libpthreadCross.TARGET_LDFLAGS}")
+ if cross != null && libcCross != null then [
+ "-Wl,-L${libcCross.out}/lib"
+ ]
+ ++ (if crossStageStatic then [
+ "-B${libcCross.out}/lib"
+ ] else [
+ "-Wl,-rpath,${libcCross.out}/lib"
+ "-Wl,-rpath-link,${libcCross.out}/lib"
+ ])
+ ++ optionals (libpthreadCross != null) [
+ "-L${libpthreadCross}/lib"
+ "-Wl,${libpthreadCross.TARGET_LDFLAGS}"
+ ]
else null;
passthru =
diff --git a/pkgs/development/compilers/gcc/6/default.nix b/pkgs/development/compilers/gcc/6/default.nix
index 5a9e615645e..f925499ef0b 100644
--- a/pkgs/development/compilers/gcc/6/default.nix
+++ b/pkgs/development/compilers/gcc/6/default.nix
@@ -165,8 +165,8 @@ let version = "6.1.0";
" --disable-libatomic " + # libatomic requires libc
" --disable-decimal-float" # libdecnumber requires libc
else
- (if crossDarwin then " --with-sysroot=${libcCross}/share/sysroot"
- else " --with-headers=${libcCross}/include") +
+ (if crossDarwin then " --with-sysroot=${libcCross.out}/share/sysroot"
+ else " --with-headers=${libcCross.dev}/include") +
# Ensure that -print-prog-name is able to find the correct programs.
(stdenv.lib.optionalString (crossMingw || crossDarwin) (
" --with-as=${binutilsCross}/bin/${cross.config}-as" +
@@ -198,7 +198,7 @@ let version = "6.1.0";
stageNameAddon = if crossStageStatic then "-stage-static" else "-stage-final";
crossNameAddon = if cross != null then "-${cross.config}" + stageNameAddon else "";
- bootstrap = cross == null;
+ bootstrap = cross == null && !stdenv.isDarwin;
in
@@ -258,9 +258,9 @@ stdenv.mkDerivation ({
sed -i "${gnu_h}" \
-es'|LIB_SPEC *"\(.*\)$|LIB_SPEC "${extraLibSpec} \1|g'
- echo "setting \`NATIVE_SYSTEM_HEADER_DIR' and \`STANDARD_INCLUDE_DIR' to \`${libc}/include'..."
+ echo "setting \`NATIVE_SYSTEM_HEADER_DIR' and \`STANDARD_INCLUDE_DIR' to \`${libc.dev}/include'..."
sed -i "${gnu_h}" \
- -es'|#define STANDARD_INCLUDE_DIR.*$|#define STANDARD_INCLUDE_DIR "${libc}/include"|g'
+ -es'|#define STANDARD_INCLUDE_DIR.*$|#define STANDARD_INCLUDE_DIR "${libc.dev}/include"|g'
''
else if cross != null || stdenv.cc.libc != null then
# On NixOS, use the right path to the dynamic linker instead of
@@ -274,7 +274,7 @@ stdenv.mkDerivation ({
grep -q LIBC_DYNAMIC_LINKER "$header" || continue
echo " fixing \`$header'..."
sed -i "$header" \
- -e 's|define[[:blank:]]*\([UCG]\+\)LIBC_DYNAMIC_LINKER\([0-9]*\)[[:blank:]]"\([^\"]\+\)"$|define \1LIBC_DYNAMIC_LINKER\2 "${libc}\3"|g'
+ -e 's|define[[:blank:]]*\([UCG]\+\)LIBC_DYNAMIC_LINKER\([0-9]*\)[[:blank:]]"\([^\"]\+\)"$|define \1LIBC_DYNAMIC_LINKER\2 "${libc.out}\3"|g'
done
''
else null;
@@ -308,15 +308,6 @@ stdenv.mkDerivation ({
export LDFLAGS_FOR_TARGET="-Wl,-rpath,$prefix/lib/amd64 $LDFLAGS_FOR_TARGET"
export CXXFLAGS_FOR_TARGET="-Wl,-rpath,$prefix/lib/amd64 $CXXFLAGS_FOR_TARGET"
export CFLAGS_FOR_TARGET="-Wl,-rpath,$prefix/lib/amd64 $CFLAGS_FOR_TARGET"
- '' + stdenv.lib.optionalString stdenv.isDarwin ''
- if SDKROOT=$(/usr/bin/xcrun --show-sdk-path); then
- configureFlagsArray+=(--with-native-system-header-dir=$SDKROOT/usr/include)
- makeFlagsArray+=( \
- CFLAGS_FOR_BUILD=-F$SDKROOT/System/Library/Frameworks \
- CFLAGS_FOR_TARGET=-F$SDKROOT/System/Library/Frameworks \
- FLAGS_FOR_TARGET=-F$SDKROOT/System/Library/Frameworks \
- )
- fi
'';
dontDisableStatic = true;
@@ -484,15 +475,28 @@ stdenv.mkDerivation ({
++ optional (libpthread != null) libpthread)));
EXTRA_TARGET_CFLAGS =
- if cross != null && libcCross != null
- then "-idirafter ${libcCross}/include"
+ if cross != null && libcCross != null then [
+ "-idirafter ${libcCross.dev}/include"
+ ]
+ ++ optionals (! crossStageStatic) [
+ "-B${libcCross.out}/lib"
+ ]
else null;
EXTRA_TARGET_LDFLAGS =
- if cross != null && libcCross != null
- then "-B${libcCross}/lib -Wl,-L${libcCross}/lib" +
- (optionalString (libpthreadCross != null)
- " -L${libpthreadCross}/lib -Wl,${libpthreadCross.TARGET_LDFLAGS}")
+ if cross != null && libcCross != null then [
+ "-Wl,-L${libcCross.out}/lib"
+ ]
+ ++ (if crossStageStatic then [
+ "-B${libcCross.out}/lib"
+ ] else [
+ "-Wl,-rpath,${libcCross.out}/lib"
+ "-Wl,-rpath-link,${libcCross.out}/lib"
+ ])
+ ++ optionals (libpthreadCross != null) [
+ "-L${libpthreadCross}/lib"
+ "-Wl,${libpthreadCross.TARGET_LDFLAGS}"
+ ]
else null;
passthru =
diff --git a/pkgs/development/compilers/gcc/builder.sh b/pkgs/development/compilers/gcc/builder.sh
index 22107e72ef7..0371630f3f6 100644
--- a/pkgs/development/compilers/gcc/builder.sh
+++ b/pkgs/development/compilers/gcc/builder.sh
@@ -70,10 +70,6 @@ if test "$noSysDirs" = "1"; then
# gcj in.
unset LIBRARY_PATH
unset CPATH
- if test -z "$crossStageStatic"; then
- EXTRA_TARGET_CFLAGS="-B${libcCross}/lib -idirafter ${libcCross}/include"
- EXTRA_TARGET_LDFLAGS="-Wl,-L${libcCross}/lib -Wl,-rpath,${libcCross}/lib -Wl,-rpath-link,${libcCross}/lib"
- fi
else
if test -z "$NIX_CC_CROSS"; then
EXTRA_TARGET_CFLAGS="$EXTRA_FLAGS"
@@ -90,15 +86,16 @@ if test "$noSysDirs" = "1"; then
extraFlags="$(cat $NIX_CC_CROSS/nix-support/libc-cflags)"
extraLDFlags="$(cat $NIX_CC_CROSS/nix-support/libc-ldflags) $(cat $NIX_CC_CROSS/nix-support/libc-ldflags-before)"
- # Use *real* header files, otherwise a limits.h is generated
- # that does not include Glibc's limits.h (notably missing
- # SSIZE_MAX, which breaks the build).
- NIX_FIXINC_DUMMY_CROSS=$(cat $NIX_CC_CROSS/nix-support/orig-libc)/include
-
# The path to the Glibc binaries such as `crti.o'.
glibc_dir="$(cat $NIX_CC_CROSS/nix-support/orig-libc)"
glibc_libdir="$glibc_dir/lib"
- configureFlags="$configureFlags --with-native-system-header-dir=$glibc_dir/include"
+ glibc_devdir="$(cat $NIX_CC_CROSS/nix-support/orig-libc-dev)"
+ configureFlags="$configureFlags --with-native-system-header-dir=$glibc_devdir/include"
+
+ # Use *real* header files, otherwise a limits.h is generated
+ # that does not include Glibc's limits.h (notably missing
+ # SSIZE_MAX, which breaks the build).
+ NIX_FIXINC_DUMMY_CROSS="$glibc_devdir/include"
extraFlags="-I$NIX_FIXINC_DUMMY_CROSS $extraFlags"
extraLDFlags="-L$glibc_libdir -rpath $glibc_libdir $extraLDFlags"
@@ -229,19 +226,21 @@ postInstall() {
# More dependencies with the previous gcc or some libs (gccbug stores the build command line)
rm -rf $out/bin/gccbug
- # Take out the bootstrap-tools from the rpath, as it's not needed at all having $out
- for i in $(find "$out"/libexec/gcc/*/*/* -type f -a \! -name '*.la'); do
- PREV_RPATH=`patchelf --print-rpath "$i"`
- NEW_RPATH=`echo "$PREV_RPATH" | sed 's,:[^:]*bootstrap-tools/lib,,g'`
- patchelf --set-rpath "$NEW_RPATH" "$i" && echo OK
- done
+ if type "patchelf"; then
+ # Take out the bootstrap-tools from the rpath, as it's not needed at all having $out
+ for i in $(find "$out"/libexec/gcc/*/*/* -type f -a \! -name '*.la'); do
+ PREV_RPATH=`patchelf --print-rpath "$i"`
+ NEW_RPATH=`echo "$PREV_RPATH" | sed 's,:[^:]*bootstrap-tools/lib,,g'`
+ patchelf --set-rpath "$NEW_RPATH" "$i" && echo OK
+ done
- # For some reason the libs retain RPATH to $out
- for i in "$lib"/lib/{libtsan,libasan,libubsan}.so.*.*.*; do
- PREV_RPATH=`patchelf --print-rpath "$i"`
- NEW_RPATH=`echo "$PREV_RPATH" | sed "s,:${out}[^:]*,,g"`
- patchelf --set-rpath "$NEW_RPATH" "$i" && echo OK
- done
+ # For some reason the libs retain RPATH to $out
+ for i in "$lib"/lib/{libtsan,libasan,libubsan}.so.*.*.*; do
+ PREV_RPATH=`patchelf --print-rpath "$i"`
+ NEW_RPATH=`echo "$PREV_RPATH" | sed "s,:${out}[^:]*,,g"`
+ patchelf --set-rpath "$NEW_RPATH" "$i" && echo OK
+ done
+ fi
# Get rid of some "fixed" header files
rm -rfv $out/lib/gcc/*/*/include-fixed/{root,linux}
diff --git a/pkgs/development/compilers/ghc/7.10.2.nix b/pkgs/development/compilers/ghc/7.10.2.nix
index aaf76d2ae40..4f13954d1db 100644
--- a/pkgs/development/compilers/ghc/7.10.2.nix
+++ b/pkgs/development/compilers/ghc/7.10.2.nix
@@ -31,6 +31,8 @@ stdenv.mkDerivation rec {
enableParallelBuilding = true;
+ outputs = [ "out" "doc" ];
+
preConfigure = ''
echo >mk/build.mk "${buildMK}"
sed -i -e 's|-isysroot /Developer/SDKs/MacOSX10.5.sdk||' configure
@@ -43,6 +45,7 @@ stdenv.mkDerivation rec {
configureFlags = [
"--with-gcc=${stdenv.cc}/bin/cc"
"--with-gmp-includes=${gmp.dev}/include" "--with-gmp-libraries=${gmp.out}/lib"
+ "--datadir=$doc/share/doc/ghc"
];
# required, because otherwise all symbols from HSffi.o are stripped, and
diff --git a/pkgs/development/compilers/ghc/7.10.3.nix b/pkgs/development/compilers/ghc/7.10.3.nix
index 2bed6d1487a..b8e9082f061 100644
--- a/pkgs/development/compilers/ghc/7.10.3.nix
+++ b/pkgs/development/compilers/ghc/7.10.3.nix
@@ -30,6 +30,8 @@ stdenv.mkDerivation rec {
enableParallelBuilding = true;
+ outputs = [ "out" "doc" ];
+
preConfigure = ''
sed -i -e 's|-isysroot /Developer/SDKs/MacOSX10.5.sdk||' configure
'' + stdenv.lib.optionalString (!stdenv.isDarwin) ''
@@ -42,6 +44,7 @@ stdenv.mkDerivation rec {
"--with-gcc=${stdenv.cc}/bin/cc"
"--with-gmp-includes=${gmp.dev}/include" "--with-gmp-libraries=${gmp.out}/lib"
"--with-curses-includes=${ncurses.dev}/include" "--with-curses-libraries=${ncurses.out}/lib"
+ "--datadir=$doc/share/doc/ghc"
] ++ stdenv.lib.optional stdenv.isDarwin [
"--with-iconv-includes=${libiconv}/include" "--with-iconv-libraries=${libiconv}/lib"
];
diff --git a/pkgs/development/compilers/ghc/8.0.1.nix b/pkgs/development/compilers/ghc/8.0.1.nix
index 612c237735c..fceade0741f 100644
--- a/pkgs/development/compilers/ghc/8.0.1.nix
+++ b/pkgs/development/compilers/ghc/8.0.1.nix
@@ -23,6 +23,8 @@ stdenv.mkDerivation rec {
enableParallelBuilding = true;
+ outputs = [ "out" "doc" ];
+
preConfigure = ''
sed -i -e 's|-isysroot /Developer/SDKs/MacOSX10.5.sdk||' configure
'' + stdenv.lib.optionalString (!stdenv.isDarwin) ''
@@ -35,6 +37,7 @@ stdenv.mkDerivation rec {
"--with-gcc=${stdenv.cc}/bin/cc"
"--with-gmp-includes=${gmp.dev}/include" "--with-gmp-libraries=${gmp.out}/lib"
"--with-curses-includes=${ncurses.dev}/include" "--with-curses-libraries=${ncurses.out}/lib"
+ "--datadir=$doc/share/doc/ghc"
] ++ stdenv.lib.optional stdenv.isDarwin [
"--with-iconv-includes=${libiconv}/include" "--with-iconv-libraries=${libiconv}/lib"
];
diff --git a/pkgs/development/compilers/ghc/with-packages.nix b/pkgs/development/compilers/ghc/with-packages.nix
deleted file mode 100644
index 9909c49e143..00000000000
--- a/pkgs/development/compilers/ghc/with-packages.nix
+++ /dev/null
@@ -1,70 +0,0 @@
-{ stdenv, ghc, packages, buildEnv, makeWrapper, ignoreCollisions ? false }:
-
-# This wrapper works only with GHC 6.12 or later.
-assert stdenv.lib.versionOlder "6.12" ghc.version;
-
-# It's probably a good idea to include the library "ghc-paths" in the
-# compiler environment, because we have a specially patched version of
-# that package in Nix that honors these environment variables
-#
-# NIX_GHC
-# NIX_GHCPKG
-# NIX_GHC_DOCDIR
-# NIX_GHC_LIBDIR
-#
-# instead of hard-coding the paths. The wrapper sets these variables
-# appropriately to configure ghc-paths to point back to the wrapper
-# instead of to the pristine GHC package, which doesn't know any of the
-# additional libraries.
-#
-# A good way to import the environment set by the wrapper below into
-# your shell is to add the following snippet to your ~/.bashrc:
-#
-# if [ -e ~/.nix-profile/bin/ghc ]; then
-# eval $(grep export ~/.nix-profile/bin/ghc)
-# fi
-
-let
- ghc761OrLater = stdenv.lib.versionOlder "7.6.1" ghc.version;
- packageDBFlag = if ghc761OrLater then "--global-package-db" else "--global-conf";
- libDir = "$out/lib/ghc-${ghc.version}";
- docDir = "$out/share/doc/ghc/html";
- packageCfgDir = "${libDir}/package.conf.d";
- isHaskellPkg = x: (x ? pname) && (x ? version);
-in
-if packages == [] then ghc else
-buildEnv {
- name = "haskell-env-${ghc.name}";
- paths = stdenv.lib.filter isHaskellPkg (stdenv.lib.closePropagation packages) ++ [ghc];
- inherit ignoreCollisions;
- postBuild = ''
- . ${makeWrapper}/nix-support/setup-hook
-
- for prg in ghc ghci ghc-${ghc.version} ghci-${ghc.version}; do
- rm -f $out/bin/$prg
- makeWrapper ${ghc}/bin/$prg $out/bin/$prg \
- --add-flags '"-B$NIX_GHC_LIBDIR"' \
- --set "NIX_GHC" "$out/bin/ghc" \
- --set "NIX_GHCPKG" "$out/bin/ghc-pkg" \
- --set "NIX_GHC_DOCDIR" "${docDir}" \
- --set "NIX_GHC_LIBDIR" "${libDir}"
- done
-
- for prg in runghc runhaskell; do
- rm -f $out/bin/$prg
- makeWrapper ${ghc}/bin/$prg $out/bin/$prg \
- --add-flags "-f $out/bin/ghc" \
- --set "NIX_GHC" "$out/bin/ghc" \
- --set "NIX_GHCPKG" "$out/bin/ghc-pkg" \
- --set "NIX_GHC_DOCDIR" "${docDir}" \
- --set "NIX_GHC_LIBDIR" "${libDir}"
- done
-
- for prg in ghc-pkg ghc-pkg-${ghc.version}; do
- rm -f $out/bin/$prg
- makeWrapper ${ghc}/bin/$prg $out/bin/$prg --add-flags "${packageDBFlag}=${packageCfgDir}"
- done
-
- $out/bin/ghc-pkg recache
- '';
-}
diff --git a/pkgs/development/compilers/julia/git.nix b/pkgs/development/compilers/julia/git.nix
index 60e71b353e8..80aaf6dd01f 100644
--- a/pkgs/development/compilers/julia/git.nix
+++ b/pkgs/development/compilers/julia/git.nix
@@ -2,7 +2,7 @@
# build tools
, gfortran, m4, makeWrapper, patchelf, perl, which, python2
# libjulia dependencies
-, libunwind, llvm, readline, utf8proc, zlib
+, libunwind, readline, utf8proc, zlib
# standard library dependencies
, curl, fftwSinglePrec, fftw, gmp, libgit2, mpfr, openlibm, openspecfun, pcre2
# linear algebra
@@ -22,16 +22,22 @@ let
in
let
+ llvmVersion = "3.7.1";
+ llvm = fetchurl {
+ url = "http://llvm.org/releases/${llvmVersion}/llvm-${llvmVersion}.src.tar.xz";
+ sha256 = "1masakdp9g2dan1yrazg7md5am2vacbkb3nahb3dchpc1knr8xxy";
+ };
+
dsfmtVersion = "2.2.3";
dsfmt = fetchurl {
url = "http://www.math.sci.hiroshima-u.ac.jp/~m-mat/MT/SFMT/dSFMT-src-${dsfmtVersion}.tar.gz";
sha256 = "03kaqbjbi6viz0n33dk5jlf6ayxqlsq4804n7kwkndiga9s4hd42";
};
- libuvVersion = "07730c4bd595b4d45a498a8ee0bcd53878ff7c10";
+ libuvVersion = "a1d9166a440e4a0664c0e6de6ebe25350de56a42";
libuv = fetchurl {
url = "https://api.github.com/repos/JuliaLang/libuv/tarball/${libuvVersion}";
- sha256 = "19nk8vdvx2mxyrwpndb7888c3b237ja5xvxr3jk5ah77ix3srr3h";
+ sha256 = "1sjvly4ylfyj8kxnx0gsjj2f70cg17h302h1i08gfndrqam68za5";
};
rmathVersion = "0.1";
@@ -40,26 +46,27 @@ let
sha256 = "0ai5dhjc43zcvangz123ryxmlbm51s21rg13bllwyn98w67arhb4";
};
- virtualenvVersion = "1.11.6";
+ virtualenvVersion = "15.0.0";
virtualenv = fetchurl {
url = "mirror://pypi/v/virtualenv/virtualenv-${virtualenvVersion}.tar.gz";
- sha256 = "1xq4prmg25n9cz5zcvbqx68lmc3kl39by582vd8pzs9f3qalqyiy";
+ sha256 = "06fw4liazpx5vf3am45q2pdiwrv0id7ckv7n6zmpml29x6vkzmkh";
};
in
stdenv.mkDerivation rec {
pname = "julia";
- version = "0.4.4-pre-2016-02-08";
+ version = "0.5.0-dev-2016-06-10";
name = "${pname}-${version}";
src = fetchgit {
url = "https://github.com/JuliaLang/${pname}";
- rev = "cb93e6b70b4b1313b4de8c54e55e85c8eb43daa3";
- sha256 = "1xihq66il4wlxfm5fsgcirh76dq936fm887v2ynqkm3kz7ahhssw";
+ rev = "56d7d6672c7db717dacb5e34f485180c2eba83b2";
+ sha256 = "1wbrzdrxp94i7yxdgf3qgrjshmqxi0c4bqz7wy0c0c0kjlg6flmx";
};
prePatch = ''
mkdir deps/srccache
+ cp "${llvm}" "./deps/srccache/llvm-${llvmVersion}.src.tar.xz"
cp "${dsfmt}" "./deps/srccache/dsfmt-${dsfmtVersion}.tar.gz"
cp "${rmath-julia}" "./deps/srccache/Rmath-julia-${rmathVersion}.tar.gz"
cp "${libuv}" "./deps/srccache/libuv-${libuvVersion}.tar.gz"
@@ -76,7 +83,7 @@ stdenv.mkDerivation rec {
'';
buildInputs = [
- arpack fftw fftwSinglePrec gmp libgit2 libunwind llvm mpfr
+ arpack fftw fftwSinglePrec gmp libgit2 libunwind mpfr
pcre2 openblas openlibm openspecfun readline suitesparse utf8proc
zlib
];
@@ -117,7 +124,8 @@ stdenv.mkDerivation rec {
"USE_SYSTEM_GMP=1"
"USE_SYSTEM_LIBGIT2=1"
"USE_SYSTEM_LIBUNWIND=1"
- "USE_SYSTEM_LLVM=1"
+ # 'replutil' test failure with LLVM 3.8.0, invalid libraries with 3.7.1
+ "USE_SYSTEM_LLVM=0"
"USE_SYSTEM_MPFR=1"
"USE_SYSTEM_OPENLIBM=1"
"USE_SYSTEM_OPENSPECFUN=1"
@@ -155,7 +163,7 @@ stdenv.mkDerivation rec {
postInstall = ''
for prog in "$out/bin/julia" "$out/bin/julia-debug"; do
wrapProgram "$prog" \
- --prefix LD_LIBRARY_PATH : "$LD_LIBRARY_PATH" \
+ --prefix LD_LIBRARY_PATH : "$out/lib/julia:$LD_LIBRARY_PATH" \
--prefix PATH : "${curl}/bin"
done
'';
diff --git a/pkgs/development/compilers/kotlin/default.nix b/pkgs/development/compilers/kotlin/default.nix
index 871d4d568cd..ba546f6f51f 100644
--- a/pkgs/development/compilers/kotlin/default.nix
+++ b/pkgs/development/compilers/kotlin/default.nix
@@ -1,12 +1,12 @@
{ stdenv, fetchurl, makeWrapper, jre, unzip }:
stdenv.mkDerivation rec {
- version = "1.0.2";
+ version = "1.0.3";
name = "kotlin-${version}";
src = fetchurl {
- url = "https://github.com/JetBrains/kotlin/releases/download/${version}/kotlin-compiler-${version}.zip";
- sha256 = "1m3j1ca0kvryqarvpscrb9mvmsscd1sc8vfjsz03br6h2hwmnr3z";
+ url = "https://github.com/JetBrains/kotlin/releases/download/v${version}/kotlin-compiler-${version}.zip";
+ sha256 = "15ywjv46i2d7zgg2b3vdklc6agr62nvn0gkz7k9hql78ccfmyq9p";
};
propagatedBuildInputs = [ jre ] ;
diff --git a/pkgs/development/compilers/llvm/3.8/libc++/darwin.patch b/pkgs/development/compilers/llvm/3.8/libc++/darwin.patch
index bf83f169cfc..6dd756f01cc 100644
--- a/pkgs/development/compilers/llvm/3.8/libc++/darwin.patch
+++ b/pkgs/development/compilers/llvm/3.8/libc++/darwin.patch
@@ -1,16 +1,18 @@
-diff -ru -x '*~' libcxx-3.4.2.src-orig/lib/CMakeLists.txt libcxx-3.4.2.src/lib/CMakeLists.txt
---- libcxx-3.4.2.src-orig/lib/CMakeLists.txt 2013-11-15 18:18:57.000000000 +0100
-+++ libcxx-3.4.2.src/lib/CMakeLists.txt 2014-09-24 14:04:01.000000000 +0200
-@@ -56,7 +56,7 @@
+--- libcxx-3.8.0.src.org/lib/CMakeLists.txt 2015-12-16 15:41:05.000000000 -0800
++++ libcxx-3.8.0.src/lib/CMakeLists.txt 2016-06-17 19:40:00.293394500 -0700
+@@ -94,30 +94,30 @@
+ add_definitions(-D__STRICT_ANSI__)
+ add_link_flags(
"-compatibility_version 1"
- "-current_version ${LIBCXX_VERSION}"
- "-install_name /usr/lib/libc++.1.dylib"
+ "-current_version 1"
+- "-install_name /usr/lib/libc++.1.dylib"
- "-Wl,-reexport_library,/usr/lib/libc++abi.dylib"
++ "-install_name ${LIBCXX_LIBCXXABI_LIB_PATH}/libc++.1.dylib"
+ "-Wl,-reexport_library,${LIBCXX_LIBCXXABI_LIB_PATH}/libc++abi.dylib"
"-Wl,-unexported_symbols_list,${CMAKE_CURRENT_SOURCE_DIR}/libc++unexp.exp"
"/usr/lib/libSystem.B.dylib")
else()
-@@ -64,14 +64,14 @@
+ if ( ${CMAKE_OSX_SYSROOT} )
list(FIND ${CMAKE_OSX_ARCHITECTURES} "armv7" OSX_HAS_ARMV7)
if (OSX_HAS_ARMV7)
set(OSX_RE_EXPORT_LINE
@@ -23,8 +25,15 @@ diff -ru -x '*~' libcxx-3.4.2.src-orig/lib/CMakeLists.txt libcxx-3.4.2.src/lib/C
+ "-Wl,-reexport_library,${CMAKE_OSX_SYSROOT}${LIBCXX_LIBCXXABI_LIB_PATH}/libc++abi.dylib")
endif()
else()
-- set (OSX_RE_EXPORT_LINE "/usr/lib/libc++abi.dylib -Wl,-reexported_symbols_list,${CMAKE_CURRENT_SOURCE_DIR}/libc++abi${LIBCXX_LIBCPPABI_VERSION}.exp")
-+ set (OSX_RE_EXPORT_LINE "${LIBCXX_LIBCXXABI_LIB_PATH}/libc++abi.dylib -Wl,-reexported_symbols_list,${CMAKE_CURRENT_SOURCE_DIR}/libc++abi${LIBCXX_LIBCPPABI_VERSION}.exp")
+- set(OSX_RE_EXPORT_LINE "/usr/lib/libc++abi.dylib -Wl,-reexported_symbols_list,${CMAKE_CURRENT_SOURCE_DIR}/libc++abi${LIBCXX_LIBCPPABI_VERSION}.exp")
++ set(OSX_RE_EXPORT_LINE "${LIBCXX_LIBCXXABI_LIB_PATH}/libc++abi.dylib -Wl,-reexported_symbols_list,${CMAKE_CURRENT_SOURCE_DIR}/libc++abi${LIBCXX_LIBCPPABI_VERSION}.exp")
endif()
- list(APPEND link_flags
+ add_link_flags(
+ "-compatibility_version 1"
+- "-install_name /usr/lib/libc++.1.dylib"
++ "-install_name ${LIBCXX_LIBCXXABI_LIB_PATH}/libc++.1.dylib"
+ "-Wl,-unexported_symbols_list,${CMAKE_CURRENT_SOURCE_DIR}/libc++unexp.exp"
+ "${OSX_RE_EXPORT_LINE}"
+ "-Wl,-force_symbols_not_weak_list,${CMAKE_CURRENT_SOURCE_DIR}/notweak.exp"
+ "-Wl,-force_symbols_weak_list,${CMAKE_CURRENT_SOURCE_DIR}/weak.exp")
diff --git a/pkgs/development/compilers/llvm/3.8/libc++/default.nix b/pkgs/development/compilers/llvm/3.8/libc++/default.nix
index e4da582857a..f10dcb6784c 100644
--- a/pkgs/development/compilers/llvm/3.8/libc++/default.nix
+++ b/pkgs/development/compilers/llvm/3.8/libc++/default.nix
@@ -14,7 +14,7 @@ stdenv.mkDerivation rec {
cmakeFlagsArray=($cmakeFlagsArray -DLIBCXX_CXX_ABI_INCLUDE_PATHS="$NIX_BUILD_TOP/libcxxabi-${version}.src/include")
'';
- patches = [ ./darwin.patch ];
+ patches = lib.optional stdenv.isDarwin ./darwin.patch;
buildInputs = [ cmake libcxxabi ] ++ lib.optional stdenv.isDarwin fixDarwinDylibNames;
diff --git a/pkgs/development/compilers/llvm/3.8/lldb.nix b/pkgs/development/compilers/llvm/3.8/lldb.nix
index fe69130e71a..ca8a74c28bb 100644
--- a/pkgs/development/compilers/llvm/3.8/lldb.nix
+++ b/pkgs/development/compilers/llvm/3.8/lldb.nix
@@ -15,12 +15,14 @@
stdenv.mkDerivation {
name = "lldb-${version}";
- src = fetch "lldb" "008fdbyza13ym3v0xpans4z4azw4y16hcbgrrnc4rx2mxwaw62ws";
+ src = fetch "lldb" "0dasg12gf5crrd9pbi5rd1y8vwlgqp8nxgw9g4z47w3x2i28zxp3";
- patchPhase = ''
- sed -i 's|/usr/bin/env||' \
- scripts/Python/finish-swig-Python-LLDB.sh \
- scripts/Python/build-swig-Python.sh
+ postUnpack = ''
+ # Hack around broken standalone builf as of 3.8
+ unpackFile ${llvm.src}
+ srcDir="$(ls -d lldb-*.src)"
+ mkdir -p "$srcDir/tools/lib/Support"
+ cp "$(ls -d llvm-*.src)/lib/Support/regex_impl.h" "$srcDir/tools/lib/Support/"
'';
buildInputs = [ cmake python which swig ncurses zlib libedit ];
@@ -33,7 +35,9 @@ stdenv.mkDerivation {
cmakeFlags = [
"-DCMAKE_BUILD_TYPE=Release"
"-DLLDB_PATH_TO_LLVM_BUILD=${llvm}"
+ "-DLLVM_MAIN_INCLUDE_DIR=${llvm}/include"
"-DLLDB_PATH_TO_CLANG_BUILD=${clang-unwrapped}"
+ "-DCLANG_MAIN_INCLUDE_DIR=${clang-unwrapped}/include"
"-DPYTHON_VERSION_MAJOR=2"
"-DPYTHON_VERSION_MINOR=7"
];
diff --git a/pkgs/development/compilers/manticore/default.nix b/pkgs/development/compilers/manticore/default.nix
index 983f86531dc..7e8312549da 100644
--- a/pkgs/development/compilers/manticore/default.nix
+++ b/pkgs/development/compilers/manticore/default.nix
@@ -11,7 +11,7 @@ stdenv.mkDerivation rec {
inherit stdenv coreutils autoconf automake smlnj;
meta = {
- description = "a parallel, pure variant of Standard ML";
+ description = "A parallel, pure variant of Standard ML";
longDescription = ''
Manticore is a high-level parallel programming language aimed at
diff --git a/pkgs/development/compilers/microscheme/default.nix b/pkgs/development/compilers/microscheme/default.nix
index 9ed5b8950e9..64d86aaac0d 100644
--- a/pkgs/development/compilers/microscheme/default.nix
+++ b/pkgs/development/compilers/microscheme/default.nix
@@ -2,12 +2,12 @@
stdenv.mkDerivation rec {
name = "microscheme-${version}";
- version = "0.9.2";
+ version = "0.9.3";
src = fetchzip {
name = "${name}-src";
url = "https://github.com/ryansuchocki/microscheme/archive/v${version}.tar.gz";
- sha256 = "0ly1cphvnsip70kng9q0blb07pkyp9allav42sr6ybswqfqg60j9";
+ sha256 = "1r3ng4pw1s9yy1h5rafra1rq19d3vmb5pzbpcz1913wz22qdd976";
};
buildInputs = [ makeWrapper vim ];
diff --git a/pkgs/development/compilers/mono/4.0.nix b/pkgs/development/compilers/mono/4.0.nix
new file mode 100644
index 00000000000..8621751e5a1
--- /dev/null
+++ b/pkgs/development/compilers/mono/4.0.nix
@@ -0,0 +1,6 @@
+{ stdenv, callPackage, Foundation, libobjc }:
+callPackage ./generic.nix (rec {
+ inherit Foundation libobjc;
+ version = "4.0.4.1";
+ sha256 = "1ydw9l89apc9p7xr5mdzy0h97g2q6v243g82mxswfc2rrqhfs4gd";
+})
diff --git a/pkgs/development/compilers/mono/4.4.nix b/pkgs/development/compilers/mono/4.4.nix
new file mode 100644
index 00000000000..7de39f9cbcd
--- /dev/null
+++ b/pkgs/development/compilers/mono/4.4.nix
@@ -0,0 +1,7 @@
+{ stdenv, callPackage, Foundation, libobjc }:
+
+callPackage ./generic.nix (rec {
+ inherit Foundation libobjc;
+ version = "4.4.1.0";
+ sha256 = "0jibyvyv2jy8dq5ij0j00iq3v74r0y90dcjc3dkspcfbnn37cphn";
+})
diff --git a/pkgs/development/compilers/mono/default.nix b/pkgs/development/compilers/mono/generic.nix
similarity index 81%
rename from pkgs/development/compilers/mono/default.nix
rename to pkgs/development/compilers/mono/generic.nix
index 54e76c731a1..3bc962859e2 100644
--- a/pkgs/development/compilers/mono/default.nix
+++ b/pkgs/development/compilers/mono/generic.nix
@@ -1,19 +1,18 @@
-{ stdenv, fetchurl, bison, pkgconfig, glib, gettext, perl, libgdiplus, libX11, callPackage, ncurses, zlib, withLLVM ? false, cacert, Foundation, libobjc }:
+{ stdenv, fetchurl, bison, pkgconfig, glib, gettext, perl, libgdiplus, libX11, callPackage, ncurses, zlib, withLLVM ? false, cacert, Foundation, libobjc, python, version, sha256 }:
let
llvm = callPackage ./llvm.nix { };
- llvmOpts = stdenv.lib.optionalString withLLVM "--enable-llvm --enable-llvmloaded --with-llvm=${llvm}";
in
stdenv.mkDerivation rec {
name = "mono-${version}";
- version = "4.0.4.1";
+
src = fetchurl {
+ inherit sha256;
url = "http://download.mono-project.com/sources/mono/${name}.tar.bz2";
- sha256 = "1ydw9l89apc9p7xr5mdzy0h97g2q6v243g82mxswfc2rrqhfs4gd";
};
buildInputs =
- [ bison pkgconfig glib gettext perl libgdiplus libX11 ncurses zlib
+ [ bison pkgconfig glib gettext perl libgdiplus libX11 ncurses zlib python
]
++ (stdenv.lib.optionals stdenv.isDarwin [ Foundation libobjc ]);
@@ -26,7 +25,16 @@ stdenv.mkDerivation rec {
# In fact I think this line does not help at all to what I
# wanted to achieve: have mono to find libgdiplus automatically
- configureFlags = "--x-includes=${libX11.dev}/include --x-libraries=${libX11.out}/lib --with-libgdiplus=${libgdiplus}/lib/libgdiplus.so ${llvmOpts}";
+ configureFlags = [
+ "--x-includes=${libX11.dev}/include"
+ "--x-libraries=${libX11.out}/lib"
+ "--with-libgdiplus=${libgdiplus}/lib/libgdiplus.so"
+ ]
+ ++ stdenv.lib.optionals withLLVM [
+ "--enable-llvm"
+ "--enable-llvmloaded"
+ "--with-llvm=${llvm}"
+ ];
# Attempt to fix this error when running "mcs --version":
# The file /nix/store/xxx-mono-2.4.2.1/lib/mscorlib.dll is an invalid CIL image
@@ -53,13 +61,12 @@ stdenv.mkDerivation rec {
# Other items in the DLLMap may need to be pointed to their store locations, I don't think this is exhaustive
# http://www.mono-project.com/Config_DllMap
postBuild = ''
- find . -name 'config' -type f | while read i; do
- sed -i "s@libX11.so.6@${libX11.out}/lib/libX11.so.6@g" $i
- sed -i "s@/.*libgdiplus.so@${libgdiplus}/lib/libgdiplus.so@g" $i
- done
+ find . -name 'config' -type f | xargs \
+ sed -i -e "s@libX11.so.6@${libX11.out}/lib/libX11.so.6@g" \
+ -e "s@/.*libgdiplus.so@${libgdiplus}/lib/libgdiplus.so@g" \
'';
- # Without this, any Mono application attempting to open an SSL connection will throw with
+ # Without this, any Mono application attempting to open an SSL connection will throw with
# The authentication or decryption has failed.
# ---> Mono.Security.Protocol.Tls.TlsException: Invalid certificate received from server.
postInstall = ''
@@ -76,7 +83,7 @@ stdenv.mkDerivation rec {
homepage = http://mono-project.com/;
description = "Cross platform, open source .NET development framework";
platforms = with stdenv.lib.platforms; darwin ++ linux;
- maintainers = with stdenv.lib.maintainers; [ viric thoughtpolice obadz ];
+ maintainers = with stdenv.lib.maintainers; [ viric thoughtpolice obadz vrthra ];
license = stdenv.lib.licenses.free; # Combination of LGPL/X11/GPL ?
};
}
diff --git a/pkgs/development/compilers/nim/default.nix b/pkgs/development/compilers/nim/default.nix
index f81370992a6..eef60bcd967 100644
--- a/pkgs/development/compilers/nim/default.nix
+++ b/pkgs/development/compilers/nim/default.nix
@@ -1,11 +1,11 @@
{ stdenv, fetchurl, unzip }:
stdenv.mkDerivation rec {
- name = "nim-0.13.0";
+ name = "nim-0.14.2";
src = fetchurl {
url = "http://nim-lang.org/download/${name}.tar.xz";
- sha256 = "1adiij20n1cigsc44dbp60jdbydmkfp7ixbddmcn6h4dfvjzaqfd";
+ sha256 = "14jy7wza54jawja21r6v676qyj0i9kg1jpn5bxwn8wfm1vbki3cg";
};
buildPhase = "sh build.sh";
diff --git a/pkgs/development/compilers/opendylan/default.nix b/pkgs/development/compilers/opendylan/default.nix
index 9ed85e9c4d4..773ab9f473f 100644
--- a/pkgs/development/compilers/opendylan/default.nix
+++ b/pkgs/development/compilers/opendylan/default.nix
@@ -1,5 +1,5 @@
# Build Open Dylan from source using the binary builds to bootstrap.
-{stdenv, fetchgit, patchelf, boehmgc, mps, gnused, opendylan-bootstrap, autoconf, automake, perl, makeWrapper, gcc }:
+{stdenv, fetchgit, boehmgc, mps, gnused, opendylan-bootstrap, autoconf, automake, perl, makeWrapper, gcc }:
stdenv.mkDerivation {
name = "opendylan-2013.2";
@@ -24,7 +24,7 @@ stdenv.mkDerivation {
./autogen.sh
'';
- configureFlags = if stdenv.system == "i686-linux" then "--with-mps=$(TMPDIR)/mps" else "--with-gc=${boehmgc.dev}";
+ configureFlags = if stdenv.system == "i686-linux" then "--with-mps=$(TMPDIR)/mps" else "--with-gc=${boehmgc.out}";
buildPhase = "make 3-stage-bootstrap";
postInstall = "wrapProgram $out/bin/dylan-compiler --suffix PATH : ${gcc}/bin";
@@ -33,5 +33,6 @@ stdenv.mkDerivation {
homepage = http://opendylan.org;
description = "A multi-paradigm functional and object-oriented programming language";
license = stdenv.lib.licenses.mit;
+ platforms = stdenv.lib.platforms.linux;
};
}
diff --git a/pkgs/development/compilers/openjdk/8.nix b/pkgs/development/compilers/openjdk/8.nix
index 0eb427754b3..c42b39ce91f 100644
--- a/pkgs/development/compilers/openjdk/8.nix
+++ b/pkgs/development/compilers/openjdk/8.nix
@@ -18,42 +18,42 @@ let
else
throw "openjdk requires i686-linux or x86_64 linux";
- update = "92";
- build = "14";
+ update = "102";
+ build = "04";
baseurl = "http://hg.openjdk.java.net/jdk8u/jdk8u";
repover = "jdk8u${update}-b${build}";
paxflags = if stdenv.isi686 then "msp" else "m";
jdk8 = fetchurl {
url = "${baseurl}/archive/${repover}.tar.gz";
- sha256 = "05ly2v3b6vr3sxa27m7ahlp8w4w1q68rki2dfczrklcdq4l61g0r";
+ sha256 = "1qwpkg169zrgx58iw8kzgr6l6chyh9n7ngkyabdfcp60i0qpga93";
};
langtools = fetchurl {
url = "${baseurl}/langtools/archive/${repover}.tar.gz";
- sha256 = "1zb7gvj1b1q3pvq5x7ac98k5dk83m7849ngcy1swfwj18g8i4k9p";
+ sha256 = "0nj9h0651ks9rssy58ma2fvnc05viwbfc91a6dxhkr1935bmzh3p";
};
hotspot = fetchurl {
url = "${baseurl}/hotspot/archive/${repover}.tar.gz";
- sha256 = "057qrhm9gbz672qgb85al9p3qvgvbviadppf5a9b8hp5sg322f35";
+ sha256 = "07719n5bxi4yhqisnj77h4w6psih75ja3v7nx7j623ynbb7xjb07";
};
corba = fetchurl {
url = "${baseurl}/corba/archive/${repover}.tar.gz";
- sha256 = "0s9h61jw42nbvrw24qaizp7pp063ala37sjgl547zfglhk1dlzi8";
+ sha256 = "0gf1gy4xbzxda8pwm10lh0kbjrh5icz4pxzlbhnkxq44xvl29vd3";
};
jdk = fetchurl {
url = "${baseurl}/jdk/archive/${repover}.tar.gz";
- sha256 = "0sgyjdmxsrdj8b8y2ri3c70x9l9m777v559cq8rmaz1jpc9lld4s";
+ sha256 = "0k5kzp9r3zny8kg9m6jad3gckf8dshlss5dd5v28njpzcsfrsd2v";
};
jaxws = fetchurl {
url = "${baseurl}/jaxws/archive/${repover}.tar.gz";
- sha256 = "12aajlswn5nkm4nbrdh3jff2sz81wdczrgliwd5lnqfnh73sbbkp";
+ sha256 = "1jw5w88yi59xarvak8rx4951090ri7jihkd17f29j1hbk6fzv052";
};
jaxp = fetchurl {
url = "${baseurl}/jaxp/archive/${repover}.tar.gz";
- sha256 = "133r5wicgva6mklrlnvb09p9izyw0fj281s51kndf3ba3zzggvv3";
+ sha256 = "151fwhz1x947a1bw0wgdrkzqw6hzfrlgn682jrjn8dvyjz7inka4";
};
nashorn = fetchurl {
url = "${baseurl}/nashorn/archive/${repover}.tar.gz";
- sha256 = "1rmk868qg7kgv7f5lhj1b7wdnql0bj2bfqd2lg9ci64418j8x8bn";
+ sha256 = "1vacw1hg1vgz5ydgw1m57bynq0zl5glxpgzznrajnqbwd9yq6rzp";
};
openjdk8 = stdenv.mkDerivation {
name = "openjdk-8u${update}b${build}";
diff --git a/pkgs/development/compilers/orc/default.nix b/pkgs/development/compilers/orc/default.nix
index 1488736a480..057b51ce80c 100644
--- a/pkgs/development/compilers/orc/default.nix
+++ b/pkgs/development/compilers/orc/default.nix
@@ -1,11 +1,11 @@
{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
- name = "orc-0.4.24";
+ name = "orc-0.4.25";
src = fetchurl {
url = "http://gstreamer.freedesktop.org/src/orc/${name}.tar.xz";
- sha256 = "16ykgdrgxr6pfpy931p979cs68klvwmk3ii1k0a00wr4nn9x931k";
+ sha256 = "1lak3hyvvb0w9avzmf0a8vayb7vqhj4m709q1czlhvgjb15dbcf1";
};
outputs = [ "dev" "out" ];
diff --git a/pkgs/development/compilers/rust/beta.nix b/pkgs/development/compilers/rust/beta.nix
new file mode 100644
index 00000000000..4b4ee89f981
--- /dev/null
+++ b/pkgs/development/compilers/rust/beta.nix
@@ -0,0 +1,27 @@
+{ stdenv, callPackage, rustPlatform,
+ targets ? [], targetToolchains ? [], targetPatches ? [] }:
+
+rec {
+ rustc = callPackage ./rustc.nix {
+ shortVersion = "beta-1.10.0";
+ forceBundledLLVM = false;
+ configureFlags = [ "--release-channel=beta" ];
+ srcRev = "d18e321abeecc69e4d1bf9cafba4fba53ddf267d";
+ srcSha = "1ck8mbjrq0bzq5xzwgaqdilakwm2ab0xpzqibjycds62ad4yw774";
+ patches = [ ./patches/disable-lockfile-check.patch ]
+ ++ stdenv.lib.optional stdenv.needsPax ./patches/grsec.patch;
+ inherit targets;
+ inherit targetPatches;
+ inherit targetToolchains;
+ inherit rustPlatform;
+ };
+
+ cargo = callPackage ./cargo.nix rec {
+ version = "0.10.0";
+ srcRev = "refs/tags/${version}";
+ srcSha = "06scvx5qh60mgvlpvri9ig4np2fsnicsfd452fi9w983dkxnz4l2";
+ depsSha256 = "0js4697n7v93wnqnpvamhp446w58llj66za5hkd6wannmc0gsy3b";
+ inherit rustc; # the rustc that will be wrapped by cargo
+ inherit rustPlatform; # used to build cargo
+ };
+}
diff --git a/pkgs/development/compilers/rust/bootstrap.nix b/pkgs/development/compilers/rust/bootstrap.nix
new file mode 100644
index 00000000000..bfc82c4317d
--- /dev/null
+++ b/pkgs/development/compilers/rust/bootstrap.nix
@@ -0,0 +1,82 @@
+{ stdenv, fetchurl, makeWrapper, cacert, zlib }:
+
+let
+ platform =
+ if stdenv.system == "i686-linux"
+ then "i686-unknown-linux-gnu"
+ else if stdenv.system == "x86_64-linux"
+ then "x86_64-unknown-linux-gnu"
+ else if stdenv.system == "i686-darwin"
+ then "i686-apple-darwin"
+ else if stdenv.system == "x86_64-darwin"
+ then "x86_64-apple-darwin"
+ else abort "missing boostrap url for platform ${stdenv.system}";
+
+ # fetch hashes by running `print-hashes.sh 1.9.0`
+ bootstrapHash =
+ if stdenv.system == "i686-linux"
+ then "dd4d9bf1b9393867eb18d00431e8fb733894984f2c7b5154bc1b64d045077b45"
+ else if stdenv.system == "x86_64-linux"
+ then "288ff13efa2577e81c77fc2cb6e2b49b1ed0ceab51b4fa12f7efb87039ac49b7"
+ else if stdenv.system == "i686-darwin"
+ then "4d4d4b256d6bd6ae2527cf61007b2553de200f0a1910b7ad41e4f51d2b21e536"
+ else if stdenv.system == "x86_64-darwin"
+ then "d59b5509e69c1cace20a57072e3b3ecefdbfd8c7e95657b0ff2ac10aa1dfebe6"
+ else throw "missing boostrap hash for platform ${stdenv.system}";
+
+ src = fetchurl {
+ url = "https://static.rust-lang.org/dist/rust-${version}-${platform}.tar.gz";
+ sha256 = bootstrapHash;
+ };
+
+ version = "1.9.0";
+in
+
+rec {
+ rustc = stdenv.mkDerivation rec {
+ name = "rustc-bootstrap-${version}";
+
+ inherit version;
+ inherit src;
+
+ buildInputs = [ makeWrapper ];
+ phases = ["unpackPhase" "installPhase"];
+
+ installPhase = ''
+ ./install.sh --prefix=$out \
+ --components=rustc,rust-std-${platform},rust-docs
+
+ patchelf \
+ --set-interpreter $(cat $NIX_CC/nix-support/dynamic-linker) \
+ "$out/bin/rustc"
+
+ # Do NOT, I repeat, DO NOT use `wrapProgram` on $out/bin/rustc
+ # (or similar) here. It causes strange effects where rustc loads
+ # the wrong libraries in a bootstrap-build causing failures that
+ # are very hard to track dow. For details, see
+ # https://github.com/rust-lang/rust/issues/34722#issuecomment-232164943
+ '';
+ };
+
+ cargo = stdenv.mkDerivation rec {
+ name = "cargo-bootstrap-${version}";
+
+ inherit version;
+ inherit src;
+
+ buildInputs = [ makeWrapper zlib rustc ];
+ phases = ["unpackPhase" "installPhase"];
+
+ installPhase = ''
+ ./install.sh --prefix=$out \
+ --components=cargo
+
+ patchelf \
+ --set-interpreter $(cat $NIX_CC/nix-support/dynamic-linker) \
+ "$out/bin/cargo"
+
+ wrapProgram "$out/bin/cargo" \
+ --suffix PATH : "${rustc}/bin"
+ '';
+ };
+}
diff --git a/pkgs/development/compilers/rust/cargo.nix b/pkgs/development/compilers/rust/cargo.nix
new file mode 100644
index 00000000000..fc4bf732cf6
--- /dev/null
+++ b/pkgs/development/compilers/rust/cargo.nix
@@ -0,0 +1,64 @@
+{ stdenv, fetchgit, file, curl, pkgconfig, python, openssl, cmake, zlib
+, makeWrapper, libiconv, cacert, rustPlatform, rustc
+, version, srcRev, srcSha, depsSha256 }:
+
+rustPlatform.buildRustPackage rec {
+ name = "cargo-${version}";
+ inherit version;
+
+ src = fetchgit {
+ url = "https://github.com/rust-lang/cargo";
+ rev = srcRev;
+ sha256 = srcSha;
+ };
+
+ inherit depsSha256;
+
+ passthru.rustc = rustc;
+
+ buildInputs = [ file curl pkgconfig python openssl cmake zlib makeWrapper ]
+ ++ stdenv.lib.optional stdenv.isDarwin libiconv;
+
+ configurePhase = ''
+ ./configure --enable-optimize --prefix=$out --local-cargo=${rustPlatform.rust.cargo}/bin/cargo
+ '';
+
+ buildPhase = "make";
+
+ installPhase = ''
+ make install
+ ${postInstall}
+ '';
+
+ postInstall = ''
+ rm "$out/lib/rustlib/components" \
+ "$out/lib/rustlib/install.log" \
+ "$out/lib/rustlib/rust-installer-version" \
+ "$out/lib/rustlib/uninstall.sh" \
+ "$out/lib/rustlib/manifest-cargo"
+
+ wrapProgram "$out/bin/cargo" \
+ --suffix PATH : "${rustc}/bin" \
+ --run "export SSL_CERT_FILE=${cacert}/etc/ssl/certs/ca-bundle.crt" \
+ ${stdenv.lib.optionalString stdenv.isDarwin ''--suffix DYLD_LIBRARY_PATH : "${rustc}/lib"''}
+ '';
+
+ checkPhase = ''
+ # Export SSL_CERT_FILE as without it one test fails with SSL verification error
+ export SSL_CERT_FILE=${cacert}/etc/ssl/certs/ca-bundle.crt
+ # Disable cross compilation tests
+ export CFG_DISABLE_CROSS_TESTS=1
+ cargo test
+ '';
+
+ # Disable check phase as there are failures (author_prefers_cargo test fails)
+ doCheck = false;
+
+ meta = with stdenv.lib; {
+ homepage = http://crates.io;
+ description = "Downloads your Rust project's dependencies and builds your project";
+ maintainers = with maintainers; [ wizeman retrry ];
+ license = [ licenses.mit licenses.asl20 ];
+ platforms = platforms.linux ++ platforms.darwin;
+ };
+}
diff --git a/pkgs/development/compilers/rust/default.nix b/pkgs/development/compilers/rust/default.nix
new file mode 100644
index 00000000000..adabdd71a1d
--- /dev/null
+++ b/pkgs/development/compilers/rust/default.nix
@@ -0,0 +1,33 @@
+{ stdenv, callPackage, recurseIntoAttrs, makeRustPlatform,
+ targets ? [], targetToolchains ? [], targetPatches ? [] }:
+
+let
+ rustPlatform = recurseIntoAttrs (makeRustPlatform (callPackage ./bootstrap.nix {}));
+in
+
+rec {
+ rustc = callPackage ./rustc.nix {
+ shortVersion = "1.10.0";
+ isRelease = true;
+ forceBundledLLVM = false;
+ configureFlags = [ "--release-channel=stable" ];
+ srcRev = "cfcb716cf0961a7e3a4eceac828d94805cf8140b";
+ srcSha = "15i81ybh32xymmkyz3bkb5bdgi9hx8nb0sh00ac6qba6w8ljpii9";
+ patches = [
+ ./patches/disable-lockfile-check.patch
+ ] ++ stdenv.lib.optional stdenv.needsPax ./patches/grsec.patch;
+ inherit targets;
+ inherit targetPatches;
+ inherit targetToolchains;
+ inherit rustPlatform;
+ };
+
+ cargo = callPackage ./cargo.nix rec {
+ version = "0.11.0";
+ srcRev = "refs/tags/${version}";
+ srcSha = "0ic2093bmwiw6vl2l9yhip87ni6dbz7dhrizy9wdx61229k16hc4";
+ depsSha256 = "0690sgn6fcay7sazlmrbbn4jbhnvmznrpz5z3rvkbaifkjrg4w6d";
+ inherit rustc; # the rustc that will be wrapped by cargo
+ inherit rustPlatform; # used to build cargo
+ };
+}
diff --git a/pkgs/development/compilers/rust/head.nix b/pkgs/development/compilers/rust/head.nix
new file mode 100644
index 00000000000..bbfe5c9a152
--- /dev/null
+++ b/pkgs/development/compilers/rust/head.nix
@@ -0,0 +1,27 @@
+{ stdenv, callPackage, rustPlatform,
+ targets ? [], targetToolchains ? [], targetPatches ? [] }:
+
+rec {
+ rustc = callPackage ./rustc.nix {
+ shortVersion = "master-1.11.0";
+ forceBundledLLVM = false;
+ srcRev = "298730e7032cd55809423773da397cd5c7d827d4";
+ srcSha = "0hyz5j1z75sjkgsifzgxviv3b1lhgaz8wqwvmq80xx5vd78yd0c1";
+ patches = [ ./patches/disable-lockfile-check.patch
+ ./patches/use-rustc-1.9.0.patch ]
+ ++ stdenv.lib.optional stdenv.needsPax ./patches/grsec.patch;
+ inherit targets;
+ inherit targetPatches;
+ inherit targetToolchains;
+ inherit rustPlatform;
+ };
+
+ cargo = callPackage ./cargo.nix rec {
+ version = "2016.06.07";
+ srcRev = "3e70312a2a4ebedace131fc63bb8f27463c5db28";
+ srcSha = "0nibzyfjkiqfnq0c00hhqvs856l5qls8wds252p97q5q92yvp40f";
+ depsSha256 = "1xbb33aqnf5yyws6gjys9w8kznbh9rh6hw8mpg1hhq1ahipc2j1f";
+ inherit rustc; # the rustc that will be wrapped by cargo
+ inherit rustPlatform; # used to build cargo
+ };
+}
diff --git a/pkgs/development/compilers/rustc/patches/disable-lockfile-check.patch b/pkgs/development/compilers/rust/patches/disable-lockfile-check.patch
similarity index 100%
rename from pkgs/development/compilers/rustc/patches/disable-lockfile-check.patch
rename to pkgs/development/compilers/rust/patches/disable-lockfile-check.patch
diff --git a/pkgs/development/compilers/rustc/patches/grsec.patch b/pkgs/development/compilers/rust/patches/grsec.patch
similarity index 100%
rename from pkgs/development/compilers/rustc/patches/grsec.patch
rename to pkgs/development/compilers/rust/patches/grsec.patch
diff --git a/pkgs/development/compilers/rust/print-hashes.sh b/pkgs/development/compilers/rust/print-hashes.sh
new file mode 100755
index 00000000000..4d1d20066b8
--- /dev/null
+++ b/pkgs/development/compilers/rust/print-hashes.sh
@@ -0,0 +1,17 @@
+#!/bin/sh
+
+PLATFORMS="i686-unknown-linux-gnu x86_64-unknown-linux-gnu i686-apple-darwin x86_64-apple-darwin"
+BASEURL="https://static.rust-lang.org/dist"
+VERSION=$1
+
+if [[ -z $VERSION ]]
+then
+ echo "No version supplied"
+ exit -1
+fi
+
+for PLATFORM in $PLATFORMS
+do
+ URL="$BASEURL/rust-$VERSION-$PLATFORM.tar.gz.sha256"
+ curl $URL
+done
diff --git a/pkgs/development/compilers/rustc/generic.nix b/pkgs/development/compilers/rust/rustc.nix
similarity index 74%
rename from pkgs/development/compilers/rustc/generic.nix
rename to pkgs/development/compilers/rust/rustc.nix
index 09d8ad8bf00..b1b33d57bb2 100644
--- a/pkgs/development/compilers/rustc/generic.nix
+++ b/pkgs/development/compilers/rust/rustc.nix
@@ -1,5 +1,5 @@
{ stdenv, fetchurl, fetchgit, fetchzip, file, python2, tzdata, procps
-, llvm, jemalloc, ncurses, darwin, binutils, rustc
+, llvm, jemalloc, ncurses, darwin, binutils, rustPlatform, git
, isRelease ? false
, shortVersion
@@ -7,22 +7,11 @@
, srcSha, srcRev
, configureFlags ? []
, patches
+, targets
+, targetPatches
+, targetToolchains
} @ args:
-/* Rust's build process has a few quirks :
-
-- The Rust compiler is written is Rust, so it requires a bootstrap
- compiler, which is downloaded during the build. To make the build
- pure, we download it ourself before and put it where it is
- expected. Once the language is stable (1.0) , we might want to
- switch it to use nix's packaged rust compiler. This might not be possible
- as the compiler is highly coupled to the bootstrap.
-
-NOTE : some derivation depend on rust. When updating this, please make
-sure those derivations still compile. (racer, for example).
-
-*/
-
let
version = if isRelease then
"${shortVersion}"
@@ -35,15 +24,7 @@ let
llvmShared = llvm.override { enableSharedLibraries = true; };
- target = if stdenv.system == "i686-linux"
- then "i686-unknown-linux-gnu"
- else if stdenv.system == "x86_64-linux"
- then "x86_64-unknown-linux-gnu"
- else if stdenv.system == "i686-darwin"
- then "i686-apple-darwin"
- else if stdenv.system == "x86_64-darwin"
- then "x86_64-apple-darwin"
- else abort "no snapshot to bootstrap for this platform (missing target triple)";
+ target = builtins.replaceStrings [" "] [","] (builtins.toString targets);
meta = with stdenv.lib; {
homepage = http://www.rust-lang.org/;
@@ -71,13 +52,15 @@ stdenv.mkDerivation {
# We need rust to build rust. If we don't provide it, configure will try to download it.
configureFlags = configureFlags
- ++ [ "--enable-local-rust" "--local-rust-root=${rustc}" "--enable-rpath" ]
+ ++ [ "--enable-local-rust" "--local-rust-root=${rustPlatform.rust.rustc}" "--enable-rpath" ]
# ++ [ "--jemalloc-root=${jemalloc}/lib"
++ [ "--default-linker=${stdenv.cc}/bin/cc" "--default-ar=${binutils.out}/bin/ar" ]
++ stdenv.lib.optional (stdenv.cc.cc ? isClang) "--enable-clang"
+ ++ stdenv.lib.optional (targets != []) "--target=${target}"
++ stdenv.lib.optional (!forceBundledLLVM) "--llvm-root=${llvmShared}";
- inherit patches;
+ patches = patches ++ targetPatches;
+ passthru.target = target;
postPatch = ''
substituteInPlace src/rust-installer/gen-install-script.sh \
@@ -112,8 +95,8 @@ stdenv.mkDerivation {
'';
# ps is needed for one of the test cases
- nativeBuildInputs = [ file python2 procps rustc ];
- buildInputs = [ ncurses ]
+ nativeBuildInputs = [ file python2 procps rustPlatform.rust.rustc git ];
+ buildInputs = [ ncurses ] ++ targetToolchains
++ stdenv.lib.optional (!forceBundledLLVM) llvmShared;
# https://github.com/rust-lang/rust/issues/30181
@@ -125,4 +108,5 @@ stdenv.mkDerivation {
preCheck = "export TZDIR=${tzdata}/share/zoneinfo";
doCheck = true;
+ dontSetConfigureCross = true;
}
diff --git a/pkgs/development/compilers/rustc/beta.nix b/pkgs/development/compilers/rustc/beta.nix
deleted file mode 100644
index 7dbd8ae7a69..00000000000
--- a/pkgs/development/compilers/rustc/beta.nix
+++ /dev/null
@@ -1,12 +0,0 @@
-{ stdenv, callPackage, rustcStable }:
-
-callPackage ./generic.nix {
- shortVersion = "beta-1.10.0";
- forceBundledLLVM = false;
- configureFlags = [ "--release-channel=beta" ];
- srcRev = "39f3c16cca889ef3f1719d9177e3315258222a65";
- srcSha = "01bx6616lslp2mbj4h8bb6m042fs0y1z8g0jgpxvbk3fbhzwafrx";
- patches = [ ./patches/disable-lockfile-check.patch ] ++
- stdenv.lib.optional stdenv.needsPax ./patches/grsec.patch;
- rustc = rustcStable;
-}
diff --git a/pkgs/development/compilers/rustc/bootstrap.nix b/pkgs/development/compilers/rustc/bootstrap.nix
deleted file mode 100644
index 8bff511459d..00000000000
--- a/pkgs/development/compilers/rustc/bootstrap.nix
+++ /dev/null
@@ -1,58 +0,0 @@
-{ stdenv, fetchurl }:
-
-let
- platform = if stdenv.system == "i686-linux"
- then "linux-i386"
- else if stdenv.system == "x86_64-linux"
- then "linux-x86_64"
- else if stdenv.system == "i686-darwin"
- then "macos-i386"
- else if stdenv.system == "x86_64-darwin"
- then "macos-x86_64"
- else abort "no snapshot to bootstrap for this platform (missing platform url suffix)";
-
- /* Rust is bootstrapped from an earlier built version. We need
- to fetch these earlier versions, which vary per platform.
- The shapshot info you want can be found at
- https://github.com/rust-lang/rust/blob/{$shortVersion}/src/snapshots.txt
- with the set you want at the top. Make sure this is the latest snapshot
- for the tagged release and not a snapshot in the current HEAD.
- NOTE: Rust 1.9.0 is the last version that uses snapshots
- */
-
- snapshotHashLinux686 = "0e0e4448b80d0a12b75485795244bb3857a0a7ef";
- snapshotHashLinux64 = "1273b6b6aed421c9e40c59f366d0df6092ec0397";
- snapshotHashDarwin686 = "9f9c0b4a2db09acbce54b792fb8839a735585565";
- snapshotHashDarwin64 = "52570f6fd915b0210a9be98cfc933148e16a75f8";
- snapshotDate = "2016-03-18";
- snapshotRev = "235d774";
-
- snapshotHash = if stdenv.system == "i686-linux"
- then snapshotHashLinux686
- else if stdenv.system == "x86_64-linux"
- then snapshotHashLinux64
- else if stdenv.system == "i686-darwin"
- then snapshotHashDarwin686
- else if stdenv.system == "x86_64-darwin"
- then snapshotHashDarwin64
- else abort "no snapshot for platform ${stdenv.system}";
-
- snapshotName = "rust-stage0-${snapshotDate}-${snapshotRev}-${platform}-${snapshotHash}.tar.bz2";
-in
-
-stdenv.mkDerivation {
- name = "rust-bootstrap";
- src = fetchurl {
- url = "http://static.rust-lang.org/stage0-snapshots/${snapshotName}";
- sha1 = snapshotHash;
- };
- dontStrip = true;
- installPhase = ''
- mkdir -p "$out"
- cp -r bin "$out/bin"
- '' + stdenv.lib.optionalString stdenv.isLinux ''
- patchelf --interpreter "${stdenv.glibc.out}/lib/${stdenv.cc.dynamicLinker}" \
- --set-rpath "${stdenv.cc.cc.lib}/lib/:${stdenv.cc.cc.lib}/lib64/" \
- "$out/bin/rustc"
- '';
-}
diff --git a/pkgs/development/compilers/rustc/head.nix b/pkgs/development/compilers/rustc/head.nix
deleted file mode 100644
index 8d9373eb3c3..00000000000
--- a/pkgs/development/compilers/rustc/head.nix
+++ /dev/null
@@ -1,13 +0,0 @@
-# Please make sure to check if rustfmt still builds when updating nightly
-{ stdenv, callPackage, rustcStable }:
-
-callPackage ./generic.nix {
- shortVersion = "master-1.11.0";
- forceBundledLLVM = false;
- srcRev = "298730e7032cd55809423773da397cd5c7d827d4";
- srcSha = "0hyz5j1z75sjkgsifzgxviv3b1lhgaz8wqwvmq80xx5vd78yd0c1";
- patches = [ ./patches/disable-lockfile-check.patch
- ./patches/use-rustc-1.9.0.patch ] ++
- stdenv.lib.optional stdenv.needsPax ./patches/grsec.patch;
- rustc = rustcStable;
-}
diff --git a/pkgs/development/compilers/rustc/patches/remove-uneeded-git.patch b/pkgs/development/compilers/rustc/patches/remove-uneeded-git.patch
deleted file mode 100644
index 3c68d777f88..00000000000
--- a/pkgs/development/compilers/rustc/patches/remove-uneeded-git.patch
+++ /dev/null
@@ -1,19 +0,0 @@
-diff --git a/src/etc/tidy.py b/src/etc/tidy.py
-index 9f5f919..a607180 100644
---- a/src/etc/tidy.py
-+++ b/src/etc/tidy.py
-@@ -66,13 +66,9 @@ def interesting_file(f):
- return any(os.path.splitext(f)[1] == ext for ext in interesting_files)
-
-
--# Be careful to support Python 2.4, 2.6, and 3.x here!
--config_proc = subprocess.Popen(["git", "config", "core.autocrlf"],
-- stdout=subprocess.PIPE)
--result = config_proc.communicate()[0]
-
- true = "true".encode('utf8')
--autocrlf = result.strip() == true if result is not None else False
-+autocrlf = False
-
- current_name = ""
- current_contents = ""
diff --git a/pkgs/development/compilers/rustc/patches/use-rustc-1.9.0.patch b/pkgs/development/compilers/rustc/patches/use-rustc-1.9.0.patch
deleted file mode 100644
index 150306744be..00000000000
--- a/pkgs/development/compilers/rustc/patches/use-rustc-1.9.0.patch
+++ /dev/null
@@ -1,25 +0,0 @@
-From 2710f3c8ae142abe1720b3476cd1ca60cee0c077 Mon Sep 17 00:00:00 2001
-From: David Craven
-Date: Wed, 1 Jun 2016 00:12:35 +0200
-Subject: [PATCH] Patch stage0.txt to use rustc 1.9.0
-
----
- src/stage0.txt | 4 ++--
- 1 file changed, 2 insertions(+), 2 deletions(-)
-
-diff --git a/src/stage0.txt b/src/stage0.txt
-index 58b7f8f..3c84cab 100644
---- a/src/stage0.txt
-+++ b/src/stage0.txt
-@@ -12,6 +12,6 @@
- # tarball for a stable release you'll likely see `1.x.0-$date` where `1.x.0` was
- # released on `$date`
-
--rustc: beta-2016-04-13
--rustc_key: c2743eb4
-+rustc: 1.9.0-2016-05-24
-+rustc_key: d16b8f0e
- cargo: nightly-2016-04-10
---
-2.8.3
-
diff --git a/pkgs/development/compilers/rustc/stable.nix b/pkgs/development/compilers/rustc/stable.nix
deleted file mode 100644
index 596ef2d0cb7..00000000000
--- a/pkgs/development/compilers/rustc/stable.nix
+++ /dev/null
@@ -1,13 +0,0 @@
-{ stdenv, callPackage }:
-
-callPackage ./generic.nix {
- shortVersion = "1.9.0";
- isRelease = true;
- forceBundledLLVM = false;
- configureFlags = [ "--release-channel=stable" ];
- srcRev = "e4e8b666850a763fdf1c3c2c142856ab51e32779";
- srcSha = "1pz4qx70mqv78fxm4w1mq7csk5pssq4qmr2vwwb5v8hyx03caff8";
- patches = [ ./patches/remove-uneeded-git.patch ]
- ++ stdenv.lib.optional stdenv.needsPax ./patches/grsec.patch;
- rustc = callPackage ./bootstrap.nix {};
-}
diff --git a/pkgs/development/compilers/terra/default.nix b/pkgs/development/compilers/terra/default.nix
index 3586e4c32e5..5abcf42efd9 100644
--- a/pkgs/development/compilers/terra/default.nix
+++ b/pkgs/development/compilers/terra/default.nix
@@ -1,41 +1,66 @@
-{ stdenv, lua, fetchFromGitHub, fetchurl, which, llvm, clang, ncurses }:
+{ stdenv, fetchFromGitHub, fetchurl, llvmPackages, ncurses, lua }:
-let luajitArchive = "LuaJIT-2.0.4.tar.gz";
- luajitSrc = fetchurl {
- url = "http://luajit.org/download/${luajitArchive}";
- sha256 = "0zc0y7p6nx1c0pp4nhgbdgjljpfxsb5kgwp4ysz22l1p2bms83v2";
- };
-in stdenv.mkDerivation rec {
+let
+ luajitArchive = "LuaJIT-2.0.4.tar.gz";
+ luajitSrc = fetchurl {
+ url = "http://luajit.org/download/${luajitArchive}";
+ sha256 = "0zc0y7p6nx1c0pp4nhgbdgjljpfxsb5kgwp4ysz22l1p2bms83v2";
+ };
+in
+
+stdenv.mkDerivation rec {
name = "terra-git-${version}";
- version = "2016-01-06";
+ version = "2016-06-09";
src = fetchFromGitHub {
owner = "zdevito";
repo = "terra";
- rev = "914cb98b8adcd50b2ec8205ef5d6914d3547e281";
- sha256 = "1q0dm9gkx2lh2d2sfgly6j5nw32qigmlj3phdvjp26bz99cvxq46";
+ rev = "22696f178be8597af555a296db804dba820638ba";
+ sha256 = "1c2i9ih331304bh31c5gh94fx0qa49rsn70pvczvdfhi8pmcms6g";
};
- patchPhase = ''
+ outputs = [ "dev" "out" "bin" "static" ];
+
+ postPatch = ''
substituteInPlace Makefile --replace \
'-lcurses' '-lncurses'
'';
- configurePhase = ''
+ preBuild = ''
+ cat >Makefile.inc<$out/default.nix
+ '';
+ };
+
in
import ./hackage-packages.nix { inherit pkgs stdenv callPackage; } self // {
inherit mkDerivation callPackage;
+ callHackage = name: version: self.callPackage (hackage2nix name version);
+
ghcWithPackages = selectFrom: withPackages (selectFrom self);
ghcWithHoogle = selectFrom:
diff --git a/pkgs/development/haskell-modules/generic-builder.nix b/pkgs/development/haskell-modules/generic-builder.nix
index 2700caa1a5b..72110227140 100644
--- a/pkgs/development/haskell-modules/generic-builder.nix
+++ b/pkgs/development/haskell-modules/generic-builder.nix
@@ -7,7 +7,7 @@
, version, revision ? null
, sha256 ? null
, src ? fetchurl { url = "mirror://hackage/${pname}-${version}.tar.gz"; inherit sha256; }
-, buildDepends ? [], libraryHaskellDepends ? [], executableHaskellDepends ? []
+, buildDepends ? [], setupHaskellDepends ? [], libraryHaskellDepends ? [], executableHaskellDepends ? []
, buildTarget ? ""
, buildTools ? [], libraryToolDepends ? [], executableToolDepends ? [], testToolDepends ? []
, configureFlags ? []
@@ -120,7 +120,7 @@ let
optionals doCheck testPkgconfigDepends;
propagatedBuildInputs = buildDepends ++ libraryHaskellDepends ++ executableHaskellDepends;
- otherBuildInputs = extraLibraries ++ librarySystemDepends ++ executableSystemDepends ++
+ otherBuildInputs = extraLibraries ++ librarySystemDepends ++ executableSystemDepends ++ setupHaskellDepends ++
buildTools ++ libraryToolDepends ++ executableToolDepends ++
optionals (allPkgconfigDepends != []) ([pkgconfig] ++ allPkgconfigDepends) ++
optionals doCheck (testDepends ++ testHaskellDepends ++ testSystemDepends ++ testToolDepends);
diff --git a/pkgs/development/haskell-modules/generic-stack-builder.nix b/pkgs/development/haskell-modules/generic-stack-builder.nix
index 94999ed8c45..09bd38ccc93 100644
--- a/pkgs/development/haskell-modules/generic-stack-builder.nix
+++ b/pkgs/development/haskell-modules/generic-stack-builder.nix
@@ -4,7 +4,8 @@ with stdenv.lib;
{ buildInputs ? []
, extraArgs ? []
-, LD_LIBRARY_PATH ? ""
+, LD_LIBRARY_PATH ? []
+, ghc ? ghc
, ...
}@args:
@@ -15,6 +16,7 @@ stdenv.mkDerivation (args // {
optional stdenv.isLinux glibcLocales ++
[ ghc pkgconfig ];
+ STACK_PLATFORM_VARIANT="nix";
STACK_IN_NIX_SHELL=1;
STACK_IN_NIX_EXTRA_ARGS =
concatMap (pkg: ["--extra-lib-dirs=${pkg}/lib"
@@ -22,7 +24,7 @@ stdenv.mkDerivation (args // {
extraArgs;
# XXX: workaround for https://ghc.haskell.org/trac/ghc/ticket/11042.
- LD_LIBRARY_PATH = "${makeLibraryPath buildInputs}:${LD_LIBRARY_PATH}";
+ LD_LIBRARY_PATH = makeLibraryPath (LD_LIBRARY_PATH ++ buildInputs);
preferLocalBuild = true;
diff --git a/pkgs/development/haskell-modules/ghcjs/stage2.nix b/pkgs/development/haskell-modules/ghcjs/stage2.nix
index 4b31e77ca7b..aca4c6c7828 100644
--- a/pkgs/development/haskell-modules/ghcjs/stage2.nix
+++ b/pkgs/development/haskell-modules/ghcjs/stage2.nix
@@ -312,7 +312,7 @@
];
jailbreak = true;
homepage = "http://github.com/ghcjs/ghcjs-base";
- description = "base library for GHCJS";
+ description = "Base library for GHCJS";
license = stdenv.lib.licenses.mit;
}) {};
Cabal = callPackage
diff --git a/pkgs/development/haskell-modules/hackage-packages.nix b/pkgs/development/haskell-modules/hackage-packages.nix
index 99a40609510..01475c0bf26 100644
--- a/pkgs/development/haskell-modules/hackage-packages.nix
+++ b/pkgs/development/haskell-modules/hackage-packages.nix
@@ -31,7 +31,7 @@ self: {
jailbreak = true;
homepage = "https://github.com/capsjac/3dmodels";
description = "3D model parsers";
- license = stdenv.lib.licenses.gpl3;
+ license = stdenv.lib.licenses.lgpl3;
hydraPlatforms = [ "x86_64-darwin" ];
}) {};
@@ -259,8 +259,6 @@ self: {
pname = "ADPfusion";
version = "0.5.1.0";
sha256 = "cd3acc617c59a90e94b6666f5f6814515a2a11625d8794c977afe51520586951";
- isLibrary = true;
- isExecutable = true;
libraryHaskellDepends = [
base bits containers mmorph mtl OrderedBits primitive
PrimitiveArray QuickCheck strict template-haskell th-orphans
@@ -465,18 +463,13 @@ self: {
}) {};
"ALUT" = callPackage
- ({ mkDerivation, base, freealut, OpenAL, pretty, StateVar
- , transformers
- }:
+ ({ mkDerivation, base, freealut, OpenAL, StateVar, transformers }:
mkDerivation {
pname = "ALUT";
version = "2.4.0.2";
sha256 = "b8364da380f5f1d85d13e427851a153be2809e1838d16393e37566f34b384b87";
- isLibrary = true;
- isExecutable = true;
libraryHaskellDepends = [ base OpenAL StateVar transformers ];
librarySystemDepends = [ freealut ];
- executableHaskellDepends = [ base pretty ];
homepage = "https://github.com/haskell-openal/ALUT";
description = "A binding for the OpenAL Utility Toolkit";
license = stdenv.lib.licenses.bsd3;
@@ -817,7 +810,7 @@ self: {
maintainers = with stdenv.lib.maintainers; [ abbradar ];
}) {inherit (pkgs) emacs;};
- "Agda" = callPackage
+ "Agda_2_5_1" = callPackage
({ mkDerivation, alex, array, base, binary, boxes, bytestring
, containers, cpphs, data-hash, deepseq, directory, EdisonAPI
, EdisonCore, edit-distance, emacs, equivalence, filemanip
@@ -849,7 +842,55 @@ self: {
executableToolDepends = [ emacs ];
jailbreak = true;
postInstall = ''
- files=("$out/share/"*"-ghc-"*"/Agda-"*"/lib/prim/Agda/{Primitive.agda,Builtin/"*.agda})
+ files=("$out/share/"*"-ghc-"*"/Agda-"*"/lib/prim/Agda/"{Primitive.agda,Builtin"/"*.agda})
+ for f in "''${files[@]}" ; do
+ $out/bin/agda $f
+ done
+ for f in "''${files[@]}" ; do
+ $out/bin/agda -c --no-main $f
+ done
+ $out/bin/agda-mode compile
+ '';
+ homepage = "http://wiki.portal.chalmers.se/agda/";
+ description = "A dependently typed functional programming language and proof assistant";
+ license = "unknown";
+ hydraPlatforms = stdenv.lib.platforms.none;
+ maintainers = with stdenv.lib.maintainers; [ abbradar ];
+ }) {inherit (pkgs) emacs;};
+
+ "Agda" = callPackage
+ ({ mkDerivation, alex, array, base, binary, boxes, bytestring
+ , containers, cpphs, data-hash, deepseq, directory, EdisonAPI
+ , EdisonCore, edit-distance, emacs, equivalence, filemanip
+ , filepath, geniplate-mirror, happy, hashable, hashtables
+ , haskeline, haskell-src-exts, monadplus, mtl, parallel, pretty
+ , process, QuickCheck, strict, template-haskell, text, time
+ , transformers, transformers-compat, unordered-containers, xhtml
+ , zlib
+ }:
+ mkDerivation {
+ pname = "Agda";
+ version = "2.5.1.1";
+ sha256 = "563b8063fc94349b56ae1867e973f1751db0e9a8997af7ede93d3c3a8c66a6b0";
+ isLibrary = true;
+ isExecutable = true;
+ libraryHaskellDepends = [
+ array base binary boxes bytestring containers data-hash deepseq
+ directory EdisonAPI EdisonCore edit-distance equivalence filepath
+ geniplate-mirror hashable hashtables haskeline haskell-src-exts
+ monadplus mtl parallel pretty process QuickCheck strict
+ template-haskell text time transformers transformers-compat
+ unordered-containers xhtml zlib
+ ];
+ libraryToolDepends = [ alex cpphs happy ];
+ executableHaskellDepends = [
+ base binary containers directory filemanip filepath
+ haskell-src-exts mtl process
+ ];
+ executableToolDepends = [ emacs ];
+ jailbreak = true;
+ postInstall = ''
+ files=("$out/share/"*"-ghc-"*"/Agda-"*"/lib/prim/Agda/"{Primitive.agda,Builtin"/"*.agda})
for f in "''${files[@]}" ; do
$out/bin/agda $f
done
@@ -1034,13 +1075,13 @@ self: {
}) {};
"AppleScript" = callPackage
- ({ mkDerivation, base }:
+ ({ mkDerivation }:
mkDerivation {
pname = "AppleScript";
version = "0.2.0.1";
sha256 = "796b0a7deaa5a6ae0f30f98f9451afa5033aea96b41df52b1d4bd7b27d8fbcca";
- libraryHaskellDepends = [ base ];
- doHaddock = false;
+ isLibrary = false;
+ isExecutable = false;
homepage = "https://github.com/reinerp/haskell-AppleScript";
description = "Call AppleScript from Haskell, and then call back into Haskell";
license = stdenv.lib.licenses.bsd3;
@@ -1376,8 +1417,6 @@ self: {
pname = "BenchmarkHistory";
version = "0.0.0.2";
sha256 = "a3ab4de30a90e70c3b8bfe28d956322312c5e14b42f94da1051c71ff0853fa3d";
- isLibrary = true;
- isExecutable = true;
libraryHaskellDepends = [
base bytestring cassava deepseq directory statistics time vector
];
@@ -2077,7 +2116,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "BlogLiterately" = callPackage
+ "BlogLiterately_0_8_3" = callPackage
({ mkDerivation, base, blaze-html, bool-extras, bytestring, cmdargs
, containers, data-default, directory, filepath, HaXml, haxr
, highlighting-kate, hscolour, HTTP, lens, mtl, pandoc
@@ -2104,6 +2143,58 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
+ "BlogLiterately_0_8_3_1" = callPackage
+ ({ mkDerivation, base, blaze-html, bool-extras, bytestring, cmdargs
+ , containers, data-default, directory, filepath, HaXml, haxr
+ , highlighting-kate, hscolour, HTTP, lens, mtl, pandoc
+ , pandoc-citeproc, pandoc-types, parsec, process, split, strict
+ , tagsoup, temporary, transformers
+ }:
+ mkDerivation {
+ pname = "BlogLiterately";
+ version = "0.8.3.1";
+ sha256 = "230edb974c43c7639c89ce2415fea6f9b57d4a15078f674f2b39f6437f5be09a";
+ isLibrary = true;
+ isExecutable = true;
+ libraryHaskellDepends = [
+ base blaze-html bool-extras bytestring cmdargs containers
+ data-default directory filepath HaXml haxr highlighting-kate
+ hscolour HTTP lens mtl pandoc pandoc-citeproc pandoc-types parsec
+ process split strict tagsoup temporary transformers
+ ];
+ executableHaskellDepends = [ base cmdargs ];
+ homepage = "http://byorgey.wordpress.com/blogliterately/";
+ description = "A tool for posting Haskelly articles to blogs";
+ license = "GPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "BlogLiterately" = callPackage
+ ({ mkDerivation, base, blaze-html, bool-extras, bytestring, cmdargs
+ , containers, data-default, directory, filepath, HaXml, haxr
+ , highlighting-kate, hscolour, HTTP, lens, mtl, pandoc
+ , pandoc-citeproc, pandoc-types, parsec, process, split, strict
+ , tagsoup, temporary, transformers
+ }:
+ mkDerivation {
+ pname = "BlogLiterately";
+ version = "0.8.4";
+ sha256 = "1eb44830043ba01ddd186498d594a8b01c1ced908f2ea2dc6aa6085e2c91dd7d";
+ isLibrary = true;
+ isExecutable = true;
+ libraryHaskellDepends = [
+ base blaze-html bool-extras bytestring cmdargs containers
+ data-default directory filepath HaXml haxr highlighting-kate
+ hscolour HTTP lens mtl pandoc pandoc-citeproc pandoc-types parsec
+ process split strict tagsoup temporary transformers
+ ];
+ executableHaskellDepends = [ base cmdargs ];
+ homepage = "http://byorgey.wordpress.com/blogliterately/";
+ description = "A tool for posting Haskelly articles to blogs";
+ license = "GPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"BlogLiterately-diagrams_0_1_4_3" = callPackage
({ mkDerivation, base, BlogLiterately, containers, diagrams-builder
, diagrams-cairo, diagrams-lib, directory, filepath, pandoc, safe
@@ -2336,7 +2427,7 @@ self: {
];
homepage = "https://github.com/orclev/CBOR";
description = "Encode/Decode values to/from CBOR";
- license = stdenv.lib.licenses.gpl3;
+ license = stdenv.lib.licenses.lgpl3;
hydraPlatforms = [ "x86_64-darwin" ];
}) {};
@@ -3214,8 +3305,8 @@ self: {
}:
mkDerivation {
pname = "Chart";
- version = "1.7.1";
- sha256 = "068e8ec72dbc3bb7ddaca052729cb0a187df6d3828978966b1c15c8ac36be610";
+ version = "1.8";
+ sha256 = "7181289529ba96df4946c2e9018cabf3d8566da1a11a2a7e0f0eb8c39e9e70dc";
libraryHaskellDepends = [
array base colour data-default-class lens mtl old-locale
operational time vector
@@ -3288,8 +3379,8 @@ self: {
}:
mkDerivation {
pname = "Chart-cairo";
- version = "1.7.1";
- sha256 = "3f3cffb7b971b45b0ace2c45f2916df1fc9b5473b49c4f0fc86937802790fe01";
+ version = "1.8";
+ sha256 = "05cf006424750562dc786cc5eb169474759932c05da6ec08a44b932b72b620ec";
libraryHaskellDepends = [
array base cairo Chart colour data-default-class lens mtl
old-locale operational time
@@ -3422,8 +3513,8 @@ self: {
}:
mkDerivation {
pname = "Chart-diagrams";
- version = "1.7.1";
- sha256 = "d88af0adbe2bd9e208bcd27fda55810031ce09438801fc2bc25da15c414805c5";
+ version = "1.8";
+ sha256 = "d5c3e7235a98683337dc44127bc19998d747e37fa2d4211f2142ac51a5288558";
libraryHaskellDepends = [
base blaze-markup bytestring Chart colour containers
data-default-class diagrams-core diagrams-lib diagrams-postscript
@@ -3442,8 +3533,8 @@ self: {
}:
mkDerivation {
pname = "Chart-gtk";
- version = "1.7";
- sha256 = "6adba9e92f11cebba5b3487352bd4a750b325b5fe0e17b1dfd02a920618d9991";
+ version = "1.8";
+ sha256 = "2bf9b59cf417a263cfe29fdc18135c8abfb997d5468e47ccaf9a756afde61aec";
libraryHaskellDepends = [
array base cairo Chart Chart-cairo colour data-default-class gtk
mtl old-locale time
@@ -3472,21 +3563,14 @@ self: {
}) {};
"ChasingBottoms_1_3_0_8" = callPackage
- ({ mkDerivation, array, base, containers, mtl, QuickCheck, random
- , syb
- }:
+ ({ mkDerivation, base, containers, mtl, QuickCheck, random, syb }:
mkDerivation {
pname = "ChasingBottoms";
version = "1.3.0.8";
sha256 = "bb05710630f876767d79b684fd5f3fe59ea39c63e7bef4193c7ee8132479d2b8";
- isLibrary = true;
- isExecutable = true;
libraryHaskellDepends = [
base containers mtl QuickCheck random syb
];
- executableHaskellDepends = [
- array base containers mtl QuickCheck random syb
- ];
jailbreak = true;
description = "For testing partial and infinite values";
license = stdenv.lib.licenses.mit;
@@ -3494,21 +3578,14 @@ self: {
}) {};
"ChasingBottoms_1_3_0_9" = callPackage
- ({ mkDerivation, array, base, containers, mtl, QuickCheck, random
- , syb
- }:
+ ({ mkDerivation, base, containers, mtl, QuickCheck, random, syb }:
mkDerivation {
pname = "ChasingBottoms";
version = "1.3.0.9";
sha256 = "0cdb9b9f47f9b08477e249b0f3d0d93ad63acd99610cea1bb64bc8513454dd92";
- isLibrary = true;
- isExecutable = true;
libraryHaskellDepends = [
base containers mtl QuickCheck random syb
];
- executableHaskellDepends = [
- array base containers mtl QuickCheck random syb
- ];
jailbreak = true;
description = "For testing partial and infinite values";
license = stdenv.lib.licenses.mit;
@@ -3577,7 +3654,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "ChasingBottoms" = callPackage
+ "ChasingBottoms_1_3_0_14" = callPackage
({ mkDerivation, array, base, containers, mtl, QuickCheck, random
, syb
}:
@@ -3593,6 +3670,25 @@ self: {
];
description = "For testing partial and infinite values";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "ChasingBottoms" = callPackage
+ ({ mkDerivation, array, base, containers, mtl, QuickCheck, random
+ , syb
+ }:
+ mkDerivation {
+ pname = "ChasingBottoms";
+ version = "1.3.1";
+ sha256 = "116cf6aad779499fb02fd1f44e0d42236b69401723bb29ed6138ff6b59eee888";
+ libraryHaskellDepends = [
+ base containers mtl QuickCheck random syb
+ ];
+ testHaskellDepends = [
+ array base containers mtl QuickCheck random syb
+ ];
+ description = "For testing partial and infinite values";
+ license = stdenv.lib.licenses.mit;
}) {};
"CheatSheet" = callPackage
@@ -3878,6 +3974,17 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "Concurrent-Cache" = callPackage
+ ({ mkDerivation, base }:
+ mkDerivation {
+ pname = "Concurrent-Cache";
+ version = "0.2.0.0";
+ sha256 = "df1d1540e28338609f86baef867704c4df1a2dfb8cf46881ec9227d3433fae3b";
+ libraryHaskellDepends = [ base ];
+ description = "A Cached variable for IO functions";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
"ConcurrentUtils" = callPackage
({ mkDerivation, array, base, binary, bytestring, containers
, crypto-random, cryptohash, list-extras, MonadRandom, monads-tf
@@ -3942,8 +4049,6 @@ self: {
pname = "ConfigFile";
version = "1.1.4";
sha256 = "ae087b359ff2945a62b671449227e0a811d143ee651179f4e7e9c66548e0f514";
- isLibrary = true;
- isExecutable = true;
libraryHaskellDepends = [ base containers MissingH mtl parsec ];
homepage = "http://software.complete.org/configfile";
description = "Configuration file reading & writing";
@@ -4462,21 +4567,14 @@ self: {
}) {};
"DMuCheck" = callPackage
- ({ mkDerivation, base, binary, directory, distributed-process
- , distributed-process-simplelocalnet, hint, MuCheck
- , network-transport-tcp, unix
- }:
+ ({ mkDerivation, base, MuCheck }:
mkDerivation {
pname = "DMuCheck";
version = "0.3.0.2";
sha256 = "4d0d343eedc2660f2e1f722acccca80e5fdbf993a5049d372d48350b819fb001";
isLibrary = false;
isExecutable = true;
- executableHaskellDepends = [
- base binary directory distributed-process
- distributed-process-simplelocalnet hint MuCheck
- network-transport-tcp unix
- ];
+ executableHaskellDepends = [ base MuCheck ];
jailbreak = true;
homepage = "https://bitbucket.com/osu-testing/d-mucheck";
description = "Distributed Mutation Analysis framework for MuCheck";
@@ -4533,7 +4631,7 @@ self: {
regex-posix split syb time unix
];
libraryToolDepends = [ alex happy ];
- executableHaskellDepends = [ array base bytestring HTF ];
+ executableHaskellDepends = [ base ];
jailbreak = true;
description = "Darcs Patch Manager";
license = "GPL";
@@ -4889,15 +4987,15 @@ self: {
}:
mkDerivation {
pname = "Delta-Lambda";
- version = "0.1.0.0";
- sha256 = "461c514ead6bb39501bd54dd0b5005d27dfefded510d3c803906414d67318535";
+ version = "0.2.0.0";
+ sha256 = "257636843d457a08119e1e410b46fa5ea51e25f1b84cfed0b27355fb96afb232";
isLibrary = false;
isExecutable = true;
executableHaskellDepends = [
base bytestring cereal cpphs filepath haskeline megaparsec mtl
options parallel text wl-pprint
];
- jailbreak = true;
+ homepage = "https://github.com/listofoptions/delta-lambda";
description = "A demonstration interpreter for type system delta-lambda (of N.G. De-bruijn)";
license = stdenv.lib.licenses.mit;
}) {};
@@ -5428,7 +5526,7 @@ self: {
jailbreak = true;
homepage = "https://github.com/zombiecalypse/DynamicTimeWarp";
description = "Dynamic time warping of sequences";
- license = stdenv.lib.licenses.gpl3;
+ license = stdenv.lib.licenses.lgpl3;
hydraPlatforms = [ "x86_64-darwin" ];
}) {};
@@ -5491,16 +5589,13 @@ self: {
"Earley_0_9_0" = callPackage
({ mkDerivation, base, ListLike, tasty, tasty-hunit
- , tasty-quickcheck, unordered-containers
+ , tasty-quickcheck
}:
mkDerivation {
pname = "Earley";
version = "0.9.0";
sha256 = "5ec955f00c872cc585bc2dd82fec137f53b095fde73a498e2a0ca7e0eb8140aa";
- isLibrary = true;
- isExecutable = true;
libraryHaskellDepends = [ base ListLike ];
- executableHaskellDepends = [ base unordered-containers ];
testHaskellDepends = [ base tasty tasty-hunit tasty-quickcheck ];
jailbreak = true;
description = "Parsing all context-free grammars using Earley's algorithm";
@@ -5510,7 +5605,7 @@ self: {
"Earley_0_10_1_0" = callPackage
({ mkDerivation, base, ListLike, tasty, tasty-hunit
- , tasty-quickcheck, unordered-containers
+ , tasty-quickcheck
}:
mkDerivation {
pname = "Earley";
@@ -5518,10 +5613,7 @@ self: {
sha256 = "a90c5c1e210a0e37db577ace20b1ca2aa33d22454766ecaeb5dc253cb7d4887e";
revision = "2";
editedCabalFile = "310e7216914ee8e8338bc9481f6aa75f7cb2324d35ab03d29973b93bee2a725a";
- isLibrary = true;
- isExecutable = true;
libraryHaskellDepends = [ base ListLike ];
- executableHaskellDepends = [ base unordered-containers ];
testHaskellDepends = [ base tasty tasty-hunit tasty-quickcheck ];
description = "Parsing all context-free grammars using Earley's algorithm";
license = stdenv.lib.licenses.bsd3;
@@ -5530,16 +5622,13 @@ self: {
"Earley" = callPackage
({ mkDerivation, base, ListLike, tasty, tasty-hunit
- , tasty-quickcheck, unordered-containers
+ , tasty-quickcheck
}:
mkDerivation {
pname = "Earley";
version = "0.11.0.1";
sha256 = "c207a40926bb0b9de05641a0fc03c22849a2c7e0bc007d2ffef37f33793985b3";
- isLibrary = true;
- isExecutable = true;
libraryHaskellDepends = [ base ListLike ];
- executableHaskellDepends = [ base unordered-containers ];
testHaskellDepends = [ base tasty tasty-hunit tasty-quickcheck ];
description = "Parsing all context-free grammars using Earley's algorithm";
license = stdenv.lib.licenses.bsd3;
@@ -5803,8 +5892,6 @@ self: {
pname = "EsounD";
version = "0.2";
sha256 = "59b6f6676e5cd005e296ee8e8f0669522d981f94fb96874deb223133d09842b4";
- isLibrary = true;
- isExecutable = true;
libraryHaskellDepends = [
base base-unicode-symbols bindings-EsounD monad-control network
regions safer-file-handles storablevector transformers unix
@@ -5867,7 +5954,7 @@ self: {
];
homepage = "http://mitar.tnode.com";
description = "A general data-flow framework";
- license = stdenv.lib.licenses.gpl3;
+ license = stdenv.lib.licenses.lgpl3;
hydraPlatforms = [ "x86_64-darwin" ];
}) {};
@@ -5888,7 +5975,7 @@ self: {
jailbreak = true;
homepage = "http://mitar.tnode.com";
description = "Data-flow based graph algorithms";
- license = stdenv.lib.licenses.gpl3;
+ license = stdenv.lib.licenses.lgpl3;
hydraPlatforms = [ "x86_64-darwin" ];
}) {};
@@ -5947,10 +6034,8 @@ self: {
}:
mkDerivation {
pname = "Euterpea";
- version = "2.0.0";
- sha256 = "755214020c31362d37380a53655d6c28bd60be07e55881e23f5bb3092fd2894b";
- revision = "1";
- editedCabalFile = "510bf796ea4d89573b4b30927ed70bde80cc382bc84d63149d57187aeb793f19";
+ version = "2.0.2";
+ sha256 = "9b7dfed82cceae3f1213c1dffee46d17a4d729626ad873175984567abab44db4";
libraryHaskellDepends = [
array arrows base bytestring containers deepseq ghc-prim HCodecs
heap PortMidi random stm
@@ -6750,8 +6835,6 @@ self: {
pname = "Frames";
version = "0.1.2.1";
sha256 = "3e98ce3aa849d7912b955f6f0e4898fd3f59d2e2961189c02d7a4c6c0174816f";
- isLibrary = true;
- isExecutable = true;
libraryHaskellDepends = [
base ghc-prim pipes primitive readable template-haskell text
transformers vector vinyl
@@ -6770,8 +6853,6 @@ self: {
pname = "Frames";
version = "0.1.3";
sha256 = "8bf6f8b64e377c25becf697de4707e4dbcaaba8fd7fa62b526faf89ae7082cc1";
- isLibrary = true;
- isExecutable = true;
libraryHaskellDepends = [
base ghc-prim pipes primitive readable template-haskell text
transformers vector vinyl
@@ -6789,8 +6870,6 @@ self: {
pname = "Frames";
version = "0.1.4";
sha256 = "3330b53867f07959c58b2cfc237390422ea08ca474b329547f092b6cb2bf39a0";
- isLibrary = true;
- isExecutable = true;
libraryHaskellDepends = [
base ghc-prim pipes primitive readable template-haskell text
transformers vector vinyl
@@ -6820,8 +6899,6 @@ self: {
pname = "FreeTypeGL";
version = "0.0.4";
sha256 = "4e85f39777c29cc145b760289906b3a9f8e518296af258004223d87bbbdc5183";
- isLibrary = true;
- isExecutable = true;
libraryHaskellDepends = [ base freetype2 OpenGL ];
jailbreak = true;
description = "Loadable texture fonts for OpenGL";
@@ -7225,23 +7302,17 @@ self: {
}) {inherit (pkgs) freeglut; inherit (pkgs) mesa;};
"GLUT_2_7_0_5" = callPackage
- ({ mkDerivation, array, base, bytestring, containers, freeglut
- , mesa, OpenGL, OpenGLRaw, random, StateVar, transformers
+ ({ mkDerivation, array, base, containers, freeglut, mesa, OpenGL
+ , StateVar, transformers
}:
mkDerivation {
pname = "GLUT";
version = "2.7.0.5";
sha256 = "72d4545ef6ca0ad473f0780d6bc934febc7dfbf0b42aad8c3a8ca67e663795bf";
- isLibrary = true;
- isExecutable = true;
libraryHaskellDepends = [
array base containers OpenGL StateVar transformers
];
librarySystemDepends = [ freeglut mesa ];
- executableHaskellDepends = [
- array base bytestring OpenGLRaw random
- ];
- jailbreak = true;
homepage = "http://www.haskell.org/haskellwiki/Opengl";
description = "A binding for the OpenGL Utility Toolkit";
license = stdenv.lib.licenses.bsd3;
@@ -7249,23 +7320,17 @@ self: {
}) {inherit (pkgs) freeglut; inherit (pkgs) mesa;};
"GLUT_2_7_0_6" = callPackage
- ({ mkDerivation, array, base, bytestring, containers, freeglut
- , mesa, OpenGL, OpenGLRaw, random, StateVar, transformers
+ ({ mkDerivation, array, base, containers, freeglut, mesa, OpenGL
+ , StateVar, transformers
}:
mkDerivation {
pname = "GLUT";
version = "2.7.0.6";
sha256 = "c2166db513482178bd5f331a591d70f00d78e9f19afe9e1e572d222e7855d43a";
- isLibrary = true;
- isExecutable = true;
libraryHaskellDepends = [
array base containers OpenGL StateVar transformers
];
librarySystemDepends = [ freeglut mesa ];
- executableHaskellDepends = [
- array base bytestring OpenGLRaw random
- ];
- jailbreak = true;
homepage = "http://www.haskell.org/haskellwiki/Opengl";
description = "A binding for the OpenGL Utility Toolkit";
license = stdenv.lib.licenses.bsd3;
@@ -7273,23 +7338,17 @@ self: {
}) {inherit (pkgs) freeglut; inherit (pkgs) mesa;};
"GLUT_2_7_0_7" = callPackage
- ({ mkDerivation, array, base, bytestring, containers, freeglut
- , mesa, OpenGL, OpenGLRaw, random, StateVar, transformers
+ ({ mkDerivation, array, base, containers, freeglut, mesa, OpenGL
+ , StateVar, transformers
}:
mkDerivation {
pname = "GLUT";
version = "2.7.0.7";
sha256 = "3a9f292f6a417c90f39065c7e0d441798b99276ccdd1c0f3feff50955b937c93";
- isLibrary = true;
- isExecutable = true;
libraryHaskellDepends = [
array base containers OpenGL StateVar transformers
];
librarySystemDepends = [ freeglut mesa ];
- executableHaskellDepends = [
- array base bytestring OpenGLRaw random
- ];
- jailbreak = true;
homepage = "http://www.haskell.org/haskellwiki/Opengl";
description = "A binding for the OpenGL Utility Toolkit";
license = stdenv.lib.licenses.bsd3;
@@ -7297,21 +7356,16 @@ self: {
}) {inherit (pkgs) freeglut; inherit (pkgs) mesa;};
"GLUT" = callPackage
- ({ mkDerivation, array, base, bytestring, containers, OpenGL
- , OpenGLRaw, random, StateVar, transformers
+ ({ mkDerivation, array, base, containers, OpenGL, StateVar
+ , transformers
}:
mkDerivation {
pname = "GLUT";
version = "2.7.0.10";
sha256 = "4b11cbf9b7876c0ec14bf0673006bd23e7ffc7d396568987b326a1b706497569";
- isLibrary = true;
- isExecutable = true;
libraryHaskellDepends = [
array base containers OpenGL StateVar transformers
];
- executableHaskellDepends = [
- array base bytestring OpenGLRaw random
- ];
homepage = "http://www.haskell.org/haskellwiki/Opengl";
description = "A binding for the OpenGL Utility Toolkit";
license = stdenv.lib.licenses.bsd3;
@@ -7324,8 +7378,8 @@ self: {
}:
mkDerivation {
pname = "GLUtil";
- version = "0.9.0.1";
- sha256 = "573a5aca29e64cd2b7610c940235ec43b5a07d9b239fec030d3e3037dc7a1f59";
+ version = "0.9.1.0";
+ sha256 = "7f66dcdd5cdaa85d9ee14cbabb856e545b97f05ceeb55ce52ba1ef79ea33d3a9";
libraryHaskellDepends = [
array base bytestring containers directory filepath hpp JuicyPixels
linear OpenGL OpenGLRaw transformers vector
@@ -7804,7 +7858,7 @@ self: {
license = stdenv.lib.licenses.mit;
}) {};
- "Glob" = callPackage
+ "Glob_0_7_5" = callPackage
({ mkDerivation, base, containers, directory, dlist, filepath
, transformers
}:
@@ -7820,6 +7874,31 @@ self: {
homepage = "http://iki.fi/matti.niemenmaa/glob/";
description = "Globbing library";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "Glob" = callPackage
+ ({ mkDerivation, base, containers, directory, dlist, filepath
+ , HUnit, QuickCheck, test-framework, test-framework-hunit
+ , test-framework-quickcheck2, transformers, transformers-compat
+ }:
+ mkDerivation {
+ pname = "Glob";
+ version = "0.7.9";
+ sha256 = "a6c48b6a94971c00f8d1360c417275b1e0c089017db523df3f54729622567dbd";
+ libraryHaskellDepends = [
+ base containers directory dlist filepath transformers
+ transformers-compat
+ ];
+ testHaskellDepends = [
+ base containers directory dlist filepath HUnit QuickCheck
+ test-framework test-framework-hunit test-framework-quickcheck2
+ transformers transformers-compat
+ ];
+ doCheck = false;
+ homepage = "http://iki.fi/matti.niemenmaa/glob/";
+ description = "Globbing library";
+ license = stdenv.lib.licenses.bsd3;
}) {};
"GlomeTrace" = callPackage
@@ -7964,8 +8043,6 @@ self: {
pname = "GrammarProducts";
version = "0.1.1.2";
sha256 = "9023283298ad178efaf9ba965e7a0005ff41a8a01d2e0f581ed3c29e414f15a2";
- isLibrary = true;
- isExecutable = true;
libraryHaskellDepends = [
ADPfusion ansi-wl-pprint base bytestring containers data-default
FormalGrammars lens newtype parsers PrimitiveArray semigroups
@@ -8213,7 +8290,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "H" = callPackage
+ "H_0_8_0_0" = callPackage
({ mkDerivation, base, bytestring, cmdargs, directory, file-embed
, inline-r, pretty, process, singletons, tasty, tasty-golden
, tasty-hunit, temporary, text, vector
@@ -8235,6 +8312,32 @@ self: {
doCheck = false;
description = "The Haskell/R mixed programming environment";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "H" = callPackage
+ ({ mkDerivation, base, bytestring, cmdargs, directory, file-embed
+ , inline-r, pretty, process, singletons, tasty, tasty-golden
+ , tasty-hunit, temporary, text, vector
+ }:
+ mkDerivation {
+ pname = "H";
+ version = "0.9.0.0";
+ sha256 = "7719247cbf03f7b24d668a56aa0895a95c2577c536845c046d74bba2e358f799";
+ isLibrary = false;
+ isExecutable = true;
+ executableHaskellDepends = [
+ base bytestring cmdargs file-embed inline-r pretty process
+ temporary vector
+ ];
+ testHaskellDepends = [
+ base bytestring directory inline-r process singletons tasty
+ tasty-golden tasty-hunit text vector
+ ];
+ doCheck = false;
+ homepage = "https://tweag.github.io/HaskellR";
+ description = "The Haskell/R mixed programming environment";
+ license = stdenv.lib.licenses.bsd3;
hydraPlatforms = [ "x86_64-linux" ];
}) {};
@@ -8416,13 +8519,12 @@ self: {
pname = "HDBC";
version = "2.4.0.1";
sha256 = "7a3ee21c41e716111c4a3742a66eb448683719a9384afbf7021c5942ac73d2ad";
- isLibrary = true;
- isExecutable = true;
+ revision = "1";
+ editedCabalFile = "da1cef4f99bc200ef3c4c866519859dfee81457aff6a8fa7418c17f210a1e7fd";
libraryHaskellDepends = [
base bytestring containers convertible mtl old-time text time
utf8-string
];
- jailbreak = true;
homepage = "https://github.com/hdbc/hdbc";
description = "Haskell Database Connectivity";
license = stdenv.lib.licenses.bsd3;
@@ -8450,8 +8552,6 @@ self: {
pname = "HDBC-odbc";
version = "2.5.0.0";
sha256 = "729982fb31e2d7816e8600212236f32d9d9a59191d73ce57fce097be2234953b";
- isLibrary = true;
- isExecutable = true;
libraryHaskellDepends = [
base bytestring concurrent-extra HDBC mtl time utf8-string
];
@@ -8462,7 +8562,7 @@ self: {
hydraPlatforms = [ "x86_64-darwin" ];
}) {inherit (pkgs) unixODBC;};
- "HDBC-postgresql" = callPackage
+ "HDBC-postgresql_2_3_2_3" = callPackage
({ mkDerivation, base, bytestring, convertible, HDBC, mtl, old-time
, parsec, postgresql, time, utf8-string
}:
@@ -8470,18 +8570,34 @@ self: {
pname = "HDBC-postgresql";
version = "2.3.2.3";
sha256 = "4396038e1a66ba14b6b3388f2ee303c938e55c3fe0fe5df059a70335761e64cb";
- isLibrary = true;
- isExecutable = true;
libraryHaskellDepends = [
base bytestring convertible HDBC mtl old-time parsec time
utf8-string
];
librarySystemDepends = [ postgresql ];
- executableSystemDepends = [ postgresql ];
jailbreak = true;
homepage = "http://github.com/hdbc/hdbc-postgresql";
description = "PostgreSQL driver for HDBC";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {inherit (pkgs) postgresql;};
+
+ "HDBC-postgresql" = callPackage
+ ({ mkDerivation, base, bytestring, convertible, HDBC, mtl, old-time
+ , parsec, postgresql, time, utf8-string
+ }:
+ mkDerivation {
+ pname = "HDBC-postgresql";
+ version = "2.3.2.4";
+ sha256 = "71988482df2efc773e8272a041f46c61bb4357aa3856edbc69d3fb9d09c168fd";
+ libraryHaskellDepends = [
+ base bytestring convertible HDBC mtl old-time parsec time
+ utf8-string
+ ];
+ librarySystemDepends = [ postgresql ];
+ homepage = "http://github.com/hdbc/hdbc-postgresql";
+ description = "PostgreSQL driver for HDBC";
+ license = stdenv.lib.licenses.bsd3;
hydraPlatforms = [ "x86_64-darwin" ];
}) {inherit (pkgs) postgresql;};
@@ -8499,7 +8615,7 @@ self: {
hydraPlatforms = [ "x86_64-darwin" ];
}) {};
- "HDBC-session" = callPackage
+ "HDBC-session_0_1_0_0" = callPackage
({ mkDerivation, base, HDBC }:
mkDerivation {
pname = "HDBC-session";
@@ -8509,6 +8625,19 @@ self: {
homepage = "http://khibino.github.io/haskell-relational-record/";
description = "Bracketed connection for HDBC";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "HDBC-session" = callPackage
+ ({ mkDerivation, base, HDBC }:
+ mkDerivation {
+ pname = "HDBC-session";
+ version = "0.1.0.1";
+ sha256 = "bf9342008c1d86733f05c60f90b18974e8c6748b9bd254bb47555245b6f77008";
+ libraryHaskellDepends = [ base HDBC ];
+ homepage = "http://khibino.github.io/haskell-relational-record/";
+ description = "Bracketed connection for HDBC";
+ license = stdenv.lib.licenses.bsd3;
hydraPlatforms = [ "x86_64-darwin" ];
}) {};
@@ -8519,11 +8648,8 @@ self: {
pname = "HDBC-sqlite3";
version = "2.3.3.1";
sha256 = "a783d9ab707ebfc68e3e46bd1bbb5d3d5493f50a7ccf31223d9848cff986ebea";
- isLibrary = true;
- isExecutable = true;
libraryHaskellDepends = [ base bytestring HDBC mtl utf8-string ];
librarySystemDepends = [ sqlite ];
- executableSystemDepends = [ sqlite ];
homepage = "https://github.com/hdbc/hdbc-sqlite3";
description = "Sqlite v3 driver for HDBC";
license = stdenv.lib.licenses.bsd3;
@@ -8579,8 +8705,6 @@ self: {
pname = "HFuse";
version = "0.2.4.5";
sha256 = "e28e0689dfe5f7bc312b842adb02e172b56c3f53a1819ebda7ab39eace6c24a1";
- isLibrary = true;
- isExecutable = true;
libraryHaskellDepends = [ base bytestring unix ];
librarySystemDepends = [ fuse ];
preConfigure = ''
@@ -8591,6 +8715,21 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {inherit (pkgs) fuse;};
+ "HGE2D" = callPackage
+ ({ mkDerivation, base, GLUT, OpenGL, time }:
+ mkDerivation {
+ pname = "HGE2D";
+ version = "0.1.6.5";
+ sha256 = "072579275b26bc68356e564f6691bf9168548848e5ef759865e629b7f684d326";
+ isLibrary = true;
+ isExecutable = true;
+ libraryHaskellDepends = [ base GLUT OpenGL time ];
+ executableHaskellDepends = [ base ];
+ homepage = "https://github.com/I3ck/HGE2D";
+ description = "2D game engine written in Haskell";
+ license = stdenv.lib.licenses.mit;
+ }) {};
+
"HGL" = callPackage
({ mkDerivation, array, base, X11 }:
mkDerivation {
@@ -9346,6 +9485,22 @@ self: {
hydraPlatforms = [ "x86_64-darwin" ];
}) {};
+ "HPhone" = callPackage
+ ({ mkDerivation, base, containers, hspec, phone-metadata
+ , regex-pcre
+ }:
+ mkDerivation {
+ pname = "HPhone";
+ version = "0.0.1.2";
+ sha256 = "b59b05042042e7bc440077494faf79684a47b963f023da18c9003d95a2880f39";
+ libraryHaskellDepends = [
+ base containers phone-metadata regex-pcre
+ ];
+ testHaskellDepends = [ base hspec ];
+ description = "Phone number parser and validator - This is now DEPRECATED!";
+ license = "unknown";
+ }) {};
+
"HPi" = callPackage
({ mkDerivation, base, bcm2835, bytestring }:
mkDerivation {
@@ -9553,8 +9708,6 @@ self: {
pname = "HSH";
version = "2.1.2";
sha256 = "788a7f25336e7fe9c7d38b68bb4cc0030712fc47e0cdf282267dea1e46b0da9f";
- isLibrary = true;
- isExecutable = true;
libraryHaskellDepends = [
base bytestring directory filepath hslogger MissingH mtl process
regex-base regex-compat regex-posix unix
@@ -10819,13 +10972,10 @@ self: {
pname = "HandsomeSoup";
version = "0.3.5";
sha256 = "35cf24eb6330bfd1c3a2460293da4380ad6267797ded9e0c93bdd590a9553fb4";
- isLibrary = true;
- isExecutable = true;
libraryHaskellDepends = [
base containers HTTP hxt hxt-http MaybeT mtl network network-uri
parsec transformers
];
- executableHaskellDepends = [ base hxt ];
testHaskellDepends = [ base hspec hxt ];
homepage = "https://github.com/egonSchiele/HandsomeSoup";
description = "Work with HTML more easily in HXT";
@@ -10841,13 +10991,10 @@ self: {
pname = "HandsomeSoup";
version = "0.4.2";
sha256 = "0ae2dad3fbde1efee9e45b84b2aeb5b526cc7b3ea2cbc5715494f7bde3ceeefb";
- isLibrary = true;
- isExecutable = true;
libraryHaskellDepends = [
base containers HTTP hxt hxt-http mtl network network-uri parsec
transformers
];
- executableHaskellDepends = [ base hxt ];
testHaskellDepends = [ base hspec hxt ];
homepage = "https://github.com/egonSchiele/HandsomeSoup";
description = "Work with HTML more easily in HXT";
@@ -10917,7 +11064,7 @@ self: {
jailbreak = true;
homepage = "https://bitbucket.org/bash/harmtrace-base";
description = "Parsing and unambiguously representing musical chords";
- license = stdenv.lib.licenses.gpl3;
+ license = stdenv.lib.licenses.lgpl3;
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
@@ -11308,7 +11455,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "Hclip" = callPackage
+ "Hclip_3_0_0_3" = callPackage
({ mkDerivation, base, mtl, process, strict, tasty, tasty-hunit }:
mkDerivation {
pname = "Hclip";
@@ -11320,6 +11467,20 @@ self: {
homepage = "https://github.com/jetho/Hclip";
description = "A small cross-platform library for reading and modifying the system clipboard";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "Hclip" = callPackage
+ ({ mkDerivation, base, mtl, process, strict }:
+ mkDerivation {
+ pname = "Hclip";
+ version = "3.0.0.4";
+ sha256 = "d8c80bd2d035571cd76ce4f69453e9fcef4096dbc8868eb4cfcd7eb74fe5f712";
+ libraryHaskellDepends = [ base mtl process strict ];
+ doCheck = false;
+ homepage = "https://github.com/jetho/Hclip";
+ description = "A small cross-platform library for reading and modifying the system clipboard";
+ license = stdenv.lib.licenses.bsd3;
}) {};
"Hedi" = callPackage
@@ -11514,8 +11675,6 @@ self: {
pname = "Hoed";
version = "0.3.6";
sha256 = "8508f5077a0a45662af4dddd44bf1ce55fb4cd007b0246ce193ff6d439c351db";
- isLibrary = true;
- isExecutable = true;
libraryHaskellDepends = [
array base bytestring cereal containers directory filepath FPretty
libgraph mtl process RBTree regex-posix template-haskell
@@ -12252,7 +12411,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "IntervalMap" = callPackage
+ "IntervalMap_0_5_1_0" = callPackage
({ mkDerivation, base, Cabal, containers, deepseq, QuickCheck }:
mkDerivation {
pname = "IntervalMap";
@@ -12263,6 +12422,20 @@ self: {
homepage = "http://www.chr-breitkopf.de/comp/IntervalMap";
description = "Containers for intervals, with efficient search";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "IntervalMap" = callPackage
+ ({ mkDerivation, base, Cabal, containers, deepseq, QuickCheck }:
+ mkDerivation {
+ pname = "IntervalMap";
+ version = "0.5.1.1";
+ sha256 = "5a3324a4a98f2b15f871db98e2b2fe4a0f65d9de776314b955f30d4c1eda32ab";
+ libraryHaskellDepends = [ base containers deepseq ];
+ testHaskellDepends = [ base Cabal containers deepseq QuickCheck ];
+ homepage = "http://www.chr-breitkopf.de/comp/IntervalMap";
+ description = "Containers for intervals, with efficient search";
+ license = stdenv.lib.licenses.bsd3;
}) {};
"Irc" = callPackage
@@ -12358,16 +12531,10 @@ self: {
sha256 = "477eecd8af2f070ff648f576ee81ee04efa45cc77b606f7fc09b6f2c156df299";
revision = "1";
editedCabalFile = "47b2855a9c5769eadfdbb4eaddca6c66e6de21432d555162f2cc4dcde6e0861a";
- isLibrary = true;
- isExecutable = true;
libraryHaskellDepends = [
attoparsec base bytestring bytestring-nums bytestring-trie
containers utf8-string
];
- executableHaskellDepends = [
- attoparsec base bytestring bytestring-nums bytestring-trie
- containers utf8-string
- ];
jailbreak = true;
homepage = "http://github.com/solidsnack/JSONb/";
description = "JSON parser that uses byte strings";
@@ -12766,7 +12933,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "JuicyPixels" = callPackage
+ "JuicyPixels_3_2_7_1" = callPackage
({ mkDerivation, base, binary, bytestring, containers, deepseq, mtl
, primitive, transformers, vector, zlib
}:
@@ -12781,6 +12948,24 @@ self: {
homepage = "https://github.com/Twinside/Juicy.Pixels";
description = "Picture loading/serialization (in png, jpeg, bitmap, gif, tga, tiff and radiance)";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "JuicyPixels" = callPackage
+ ({ mkDerivation, base, binary, bytestring, containers, deepseq, mtl
+ , primitive, transformers, vector, zlib
+ }:
+ mkDerivation {
+ pname = "JuicyPixels";
+ version = "3.2.7.2";
+ sha256 = "500b0ed64e1385a5f5e5fa4b51f3575d38e77ebac19a374942a308a04fa7c902";
+ libraryHaskellDepends = [
+ base binary bytestring containers deepseq mtl primitive
+ transformers vector zlib
+ ];
+ homepage = "https://github.com/Twinside/Juicy.Pixels";
+ description = "Picture loading/serialization (in png, jpeg, bitmap, gif, tga, tiff and radiance)";
+ license = stdenv.lib.licenses.bsd3;
}) {};
"JuicyPixels-canvas" = callPackage
@@ -13182,12 +13367,8 @@ self: {
pname = "LDAP";
version = "0.6.10";
sha256 = "4050875df6157fd71ce14bb0025499a1e9ccbb4d7a03686d68d3521dd2539f82";
- isLibrary = true;
- isExecutable = true;
libraryHaskellDepends = [ base ];
librarySystemDepends = [ lber openldap ];
- executableHaskellDepends = [ base ];
- executableSystemDepends = [ lber openldap ];
homepage = "https://github.com/ezyang/ldap-haskell";
description = "Haskell binding for C LDAP API";
license = stdenv.lib.licenses.bsd3;
@@ -13222,8 +13403,8 @@ self: {
}:
mkDerivation {
pname = "LambdaCalculator";
- version = "0.1";
- sha256 = "9f3d4517c621c670ec8eba095728905a4ce77c3665d01b9edf56f2a82552962c";
+ version = "0.2";
+ sha256 = "d15c5e9262879997db9481387c62073b4efd788319a964351873c0d4bff51a81";
isLibrary = false;
isExecutable = true;
executableHaskellDepends = [
@@ -13402,7 +13583,7 @@ self: {
pipes-parse
];
description = "Library for RedPitaya";
- license = stdenv.lib.licenses.gpl3;
+ license = stdenv.lib.licenses.lgpl3;
}) {};
"LargeCardinalHierarchy" = callPackage
@@ -13664,7 +13845,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "ListLike" = callPackage
+ "ListLike_4_2_1" = callPackage
({ mkDerivation, array, base, bytestring, containers, dlist, fmlist
, HUnit, QuickCheck, random, text, vector
}:
@@ -13683,6 +13864,30 @@ self: {
homepage = "http://software.complete.org/listlike";
description = "Generic support for list-like structures";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "ListLike" = callPackage
+ ({ mkDerivation, array, base, bytestring, containers, deepseq
+ , dlist, fmlist, HUnit, QuickCheck, random, text, utf8-string
+ , vector
+ }:
+ mkDerivation {
+ pname = "ListLike";
+ version = "4.4";
+ sha256 = "5aea87970f913a2e826634e4fb1d0c082202d005ce27ef9c1dcbc33ac412171a";
+ libraryHaskellDepends = [
+ array base bytestring containers deepseq dlist fmlist text
+ utf8-string vector
+ ];
+ testHaskellDepends = [
+ array base bytestring containers dlist fmlist HUnit QuickCheck
+ random text utf8-string vector
+ ];
+ doCheck = false;
+ homepage = "http://github.com/JohnLato/listlike";
+ description = "Generic support for list-like structures";
+ license = stdenv.lib.licenses.bsd3;
}) {};
"ListTree" = callPackage
@@ -13751,8 +13956,6 @@ self: {
pname = "LogicGrowsOnTrees";
version = "1.1.0.2";
sha256 = "f3f6e7ee3022a60d279eff5d27fd6d3a7ca25972f18077594f90a15ed9cf16fb";
- isLibrary = true;
- isExecutable = true;
libraryHaskellDepends = [
AbortT-mtl AbortT-transformers base bytestring cereal cmdtheline
composition containers data-ivar derive directory hslogger
@@ -13760,9 +13963,6 @@ self: {
mtl multiset old-locale operational prefix-units pretty PSQueue
sequential-index split stm time transformers void yjtools
];
- executableHaskellDepends = [
- base cereal cmdtheline containers transformers
- ];
testHaskellDepends = [
base bytestring cereal composition containers data-ivar directory
hslogger hslogger-template HUnit lens MonadCatchIO-transformers
@@ -13785,18 +13985,12 @@ self: {
pname = "LogicGrowsOnTrees-MPI";
version = "1.0.0.1.1";
sha256 = "22f5bcb22e731984e40a76ae1d48b0e59329ac5d3bd633efef7cb8140de8146b";
- isLibrary = true;
- isExecutable = true;
libraryHaskellDepends = [
base bytestring cereal cmdtheline containers data-ivar derive
hslogger hslogger-template LogicGrowsOnTrees
MonadCatchIO-transformers stm transformers
];
librarySystemDepends = [ openmpi ];
- executableHaskellDepends = [
- base cereal cmdtheline hslogger LogicGrowsOnTrees
- ];
- executableSystemDepends = [ openmpi ];
jailbreak = true;
description = "an adapter for LogicGrowsOnTrees that uses MPI";
license = stdenv.lib.licenses.bsd3;
@@ -13813,16 +14007,11 @@ self: {
pname = "LogicGrowsOnTrees-network";
version = "1.0.0.4";
sha256 = "7a01eb40f87b5810bfccfb23d49e4a04f7bb630f201425caaa0eeb0a82d9b973";
- isLibrary = true;
- isExecutable = true;
libraryHaskellDepends = [
base cereal cmdtheline composition containers hslogger
hslogger-template lens LogicGrowsOnTrees MonadCatchIO-transformers
mtl network pretty transformers
];
- executableHaskellDepends = [
- base cereal cmdtheline LogicGrowsOnTrees
- ];
testHaskellDepends = [
base hslogger hslogger-template HUnit LogicGrowsOnTrees network
random stm test-framework test-framework-hunit transformers
@@ -13843,16 +14032,11 @@ self: {
pname = "LogicGrowsOnTrees-processes";
version = "1.0.0.2";
sha256 = "766b912ffe650e0ab7cd23a54b51fa440b9e411b63be1d520936bb815af93334";
- isLibrary = true;
- isExecutable = true;
libraryHaskellDepends = [
base bytestring cereal cmdtheline containers filepath FindBin
hslogger hslogger-template LogicGrowsOnTrees
MonadCatchIO-transformers process transformers
];
- executableHaskellDepends = [
- base cereal cmdtheline LogicGrowsOnTrees
- ];
testHaskellDepends = [
base cereal hslogger hslogger-template HUnit LogicGrowsOnTrees
random test-framework test-framework-hunit transformers
@@ -13919,7 +14103,7 @@ self: {
testHaskellDepends = [ base containers mtl ];
jailbreak = true;
description = "Generate MASM code from haskell";
- license = stdenv.lib.licenses.gpl3;
+ license = stdenv.lib.licenses.lgpl3;
}) {};
"MC-Fold-DP" = callPackage
@@ -14039,7 +14223,7 @@ self: {
, containers, directory, extensible-exceptions, ghc, ghc-paths
, hashable, haskell-src, hint, html, monad-par, mtl, mueval
, network, network-uri, pretty, process, random, syb
- , template-haskell, time, transformers, unix
+ , template-haskell, tf-random, time, transformers, unix
}:
mkDerivation {
pname = "MagicHaskeller";
@@ -14050,13 +14234,13 @@ self: {
libraryHaskellDepends = [
array base bytestring containers directory ghc ghc-paths hashable
haskell-src html mtl network network-uri pretty random syb
- template-haskell time
+ template-haskell tf-random time
];
executableHaskellDepends = [
abstract-par array base bytestring cgi containers directory
extensible-exceptions ghc ghc-paths hashable haskell-src hint html
monad-par mtl mueval network network-uri pretty process random syb
- template-haskell time transformers unix
+ template-haskell tf-random time transformers unix
];
homepage = "http://nautilus.cs.miyazaki-u.ac.jp/~skata/MagicHaskeller.html";
description = "Automatic inductive functional programmer by systematic search";
@@ -14205,10 +14389,7 @@ self: {
sha256 = "4238c8f7ea1ecd2497d0a948493acbdc47728b2528b6e7841ef064b783d68b1c";
revision = "1";
editedCabalFile = "035cea173a56cf920ebb4c84b4033d2ea270c1ee24d07ad323b9b2701ebc72e7";
- isLibrary = true;
- isExecutable = true;
libraryHaskellDepends = [ base ];
- executableHaskellDepends = [ base ];
doHaddock = false;
homepage = "https://github.com/conal/MemoTrie";
description = "Trie-based memo functions";
@@ -14398,10 +14579,8 @@ self: {
}:
mkDerivation {
pname = "MissingH";
- version = "1.4.0.0";
- sha256 = "e7bfd371a3504cf6be9fb3e549514119f30d012be5ebb10ace84e00de27688dc";
- revision = "2";
- editedCabalFile = "fb4dda9bef0a8a75549961dd8a35d1f49372ec43b53eb6aa27cc53850ad10034";
+ version = "1.4.0.1";
+ sha256 = "283f2afd46625d98b4e29f77edadfa5e6009a227812ee2ece10091ad6a7e9b71";
libraryHaskellDepends = [
array base containers directory filepath hslogger HUnit mtl network
old-locale old-time parsec process random regex-compat time unix
@@ -15110,7 +15289,7 @@ self: {
];
homepage = "http://mitar.tnode.com";
description = "A Haskell interface to Lego Mindstorms NXT";
- license = stdenv.lib.licenses.gpl3;
+ license = stdenv.lib.licenses.lgpl3;
hydraPlatforms = [ "x86_64-darwin" ];
}) {bluetooth = null;};
@@ -15179,15 +15358,12 @@ self: {
}) {};
"NaturalSort" = callPackage
- ({ mkDerivation, base, bytestring, QuickCheck, strict }:
+ ({ mkDerivation, base, bytestring, strict }:
mkDerivation {
pname = "NaturalSort";
version = "0.2.1";
sha256 = "49fd310566c86d85714a1839f1bc845891771dbc023a0befee16f073bbac50f6";
- isLibrary = true;
- isExecutable = true;
libraryHaskellDepends = [ base bytestring strict ];
- executableHaskellDepends = [ base bytestring QuickCheck strict ];
homepage = "http://github.com/joachifm/natsort";
description = "Natural sorting for strings";
license = stdenv.lib.licenses.bsd3;
@@ -15309,12 +15485,12 @@ self: {
}) {integer = null;};
"NineP" = callPackage
- ({ mkDerivation, base, binary, bytestring }:
+ ({ mkDerivation, base, binary }:
mkDerivation {
pname = "NineP";
version = "0.0.2.1";
sha256 = "4bb1516b9fb340118960043e0c72aa62316be8ff3f78cc8c1354e2fac96dd8cc";
- libraryHaskellDepends = [ base binary bytestring ];
+ libraryHaskellDepends = [ base binary ];
homepage = "http://9ph.googlecode.com";
description = "9P2000 in pure Haskell";
license = stdenv.lib.licenses.bsd3;
@@ -15908,13 +16084,10 @@ self: {
pname = "OpenAL";
version = "1.7.0.4";
sha256 = "3989f6c4fe437843551004dd011c4308bf63d787ae4fbb8ce71d44b1b0b1f118";
- isLibrary = true;
- isExecutable = true;
libraryHaskellDepends = [
base ObjectName OpenGL StateVar transformers
];
librarySystemDepends = [ openal ];
- executableHaskellDepends = [ base ];
homepage = "https://github.com/haskell-openal/ALUT";
description = "A binding to the OpenAL cross-platform 3D audio API";
license = stdenv.lib.licenses.bsd3;
@@ -16427,8 +16600,6 @@ self: {
pname = "PDBtools";
version = "0.0.3";
sha256 = "d80810bd44765b86c0ebf247f32ddded301eddb587fe12a0bdc378ee6b8fb0c4";
- isLibrary = true;
- isExecutable = true;
libraryHaskellDepends = [ base bytestring containers ];
homepage = "http://www.github.com/rotskoff";
description = "A library for analysis of 3-D protein coordinates";
@@ -16819,16 +16990,13 @@ self: {
}:
mkDerivation {
pname = "Plot-ho-matic";
- version = "0.9.0.8";
- sha256 = "22b6f69b384eb9883560b837cdf8dbe70b76099a10818adca803298c22cbe3bd";
- isLibrary = true;
- isExecutable = true;
+ version = "0.10.1.0";
+ sha256 = "af1880de4e2bdb5c0bcdd5e532163d15c6fd33b1f01a1d09c8f5ded3dcfa70c5";
libraryHaskellDepends = [
base bytestring cairo cereal Chart Chart-cairo containers
data-default-class generic-accessors glib gtk3 lens text time
transformers vector
];
- executableHaskellDepends = [ base containers generic-accessors ];
description = "Real-time line plotter for generic data";
license = stdenv.lib.licenses.bsd3;
hydraPlatforms = stdenv.lib.platforms.none;
@@ -16893,7 +17061,7 @@ self: {
license = stdenv.lib.licenses.gpl3;
}) {};
- "PortMidi" = callPackage
+ "PortMidi_0_1_6_0" = callPackage
({ mkDerivation, alsaLib, base }:
mkDerivation {
pname = "PortMidi";
@@ -16904,6 +17072,20 @@ self: {
homepage = "http://haskell.org/haskellwiki/PortMidi";
description = "A binding for PortMedia/PortMidi";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {inherit (pkgs) alsaLib;};
+
+ "PortMidi" = callPackage
+ ({ mkDerivation, alsaLib, base }:
+ mkDerivation {
+ pname = "PortMidi";
+ version = "0.1.6.1";
+ sha256 = "b89e9293d5b80d23b197dbb9bf196737765c66ffe96eaabdb9517fe20b516690";
+ libraryHaskellDepends = [ base ];
+ librarySystemDepends = [ alsaLib ];
+ homepage = "http://github.com/ninegua/PortMidi";
+ description = "A binding for PortMedia/PortMidi";
+ license = stdenv.lib.licenses.bsd3;
}) {inherit (pkgs) alsaLib;};
"PostgreSQL" = callPackage
@@ -17327,7 +17509,6 @@ self: {
testHaskellDepends = [
base containers template-haskell test-framework
];
- jailbreak = true;
homepage = "https://github.com/nick8325/quickcheck";
description = "Automatic testing of Haskell programs";
license = stdenv.lib.licenses.bsd3;
@@ -17353,6 +17534,27 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "QuickCheck_2_9_1" = callPackage
+ ({ mkDerivation, base, containers, random, template-haskell
+ , test-framework, tf-random, transformers
+ }:
+ mkDerivation {
+ pname = "QuickCheck";
+ version = "2.9.1";
+ sha256 = "f8769cbef895a67f9bd1ac554faa577e6c1fb41e271425880a759009e454d05f";
+ libraryHaskellDepends = [
+ base containers random template-haskell tf-random transformers
+ ];
+ testHaskellDepends = [
+ base containers template-haskell test-framework
+ ];
+ jailbreak = true;
+ homepage = "https://github.com/nick8325/quickcheck";
+ description = "Automatic testing of Haskell programs";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"QuickCheck-GenT" = callPackage
({ mkDerivation, base, mtl, QuickCheck, random }:
mkDerivation {
@@ -17388,8 +17590,6 @@ self: {
pname = "QuickPlot";
version = "0.1.0.1";
sha256 = "02864cb2f1abcea25b5956421cfdd596c3b4d3ceafcd54d3aad26f443ba53fb5";
- isLibrary = true;
- isExecutable = true;
libraryHaskellDepends = [
aeson attoparsec base bytestring haskell-src-meta parsec scientific
snap snap-core template-haskell text vector websockets
@@ -18501,8 +18701,6 @@ self: {
pname = "SHA";
version = "1.6.4.1";
sha256 = "743bc6d7dd3e74a44bfca8920f0f0ba5855722a62f6cc44f0a38d10c11bddc0d";
- isLibrary = true;
- isExecutable = true;
libraryHaskellDepends = [ array base binary bytestring ];
description = "Implementations of the SHA suite of message digest functions";
license = stdenv.lib.licenses.bsd3;
@@ -18510,17 +18708,14 @@ self: {
}) {};
"SHA" = callPackage
- ({ mkDerivation, array, base, binary, bytestring, directory
- , QuickCheck, test-framework, test-framework-quickcheck2
+ ({ mkDerivation, array, base, binary, bytestring, QuickCheck
+ , test-framework, test-framework-quickcheck2
}:
mkDerivation {
pname = "SHA";
version = "1.6.4.2";
sha256 = "c470176f63cbe49fd0502a1b32ef22bc01b1af42385583b8be94547750958a8c";
- isLibrary = true;
- isExecutable = true;
libraryHaskellDepends = [ array base binary bytestring ];
- executableHaskellDepends = [ base bytestring directory ];
testHaskellDepends = [
array base binary bytestring QuickCheck test-framework
test-framework-quickcheck2
@@ -18573,7 +18768,7 @@ self: {
jailbreak = true;
homepage = "http://www.snet-home.org/";
description = "Declarative coördination language for streaming networks";
- license = stdenv.lib.licenses.gpl3;
+ license = stdenv.lib.licenses.lgpl3;
hydraPlatforms = [ "x86_64-darwin" ];
}) {};
@@ -18670,6 +18865,7 @@ self: {
data-default-class diagrams-core diagrams-lib directory parsec
split text tuple vector xml
];
+ jailbreak = true;
description = "Fonts from the SVG-Font format";
license = stdenv.lib.licenses.bsd3;
hydraPlatforms = stdenv.lib.platforms.none;
@@ -18719,7 +18915,7 @@ self: {
];
homepage = "https://github.com/siddhanathan/SWMMoutGetMB";
description = "A parser for SWMM 5 binary .OUT files";
- license = stdenv.lib.licenses.gpl3;
+ license = stdenv.lib.licenses.lgpl3;
}) {};
"SableCC2Hs" = callPackage
@@ -18872,8 +19068,6 @@ self: {
pname = "SegmentTree";
version = "0.3";
sha256 = "6188c1b1276d7fa0391098a563df73dd522d20b57dc5321fe3418a9e3ca84fc1";
- isLibrary = true;
- isExecutable = true;
libraryHaskellDepends = [ base ];
description = "Data structure for querying the set (or count) of intervals covering given point";
license = stdenv.lib.licenses.bsd3;
@@ -18936,7 +19130,7 @@ self: {
];
jailbreak = true;
description = "Easy Loggingframework";
- license = stdenv.lib.licenses.gpl3;
+ license = stdenv.lib.licenses.lgpl3;
hydraPlatforms = [ "x86_64-darwin" ];
}) {};
@@ -19994,7 +20188,7 @@ self: {
hydraPlatforms = [ "x86_64-darwin" ];
}) {};
- "Strafunski-StrategyLib" = callPackage
+ "Strafunski-StrategyLib_5_0_0_8" = callPackage
({ mkDerivation, base, directory, mtl, syb, transformers }:
mkDerivation {
pname = "Strafunski-StrategyLib";
@@ -20004,6 +20198,18 @@ self: {
jailbreak = true;
description = "Library for strategic programming";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "Strafunski-StrategyLib" = callPackage
+ ({ mkDerivation, base, directory, mtl, syb, transformers }:
+ mkDerivation {
+ pname = "Strafunski-StrategyLib";
+ version = "5.0.0.9";
+ sha256 = "c8e464538cd27c4f2636eb25dcd1a1ef1df680f89600219baa2ca21ce2a98e1d";
+ libraryHaskellDepends = [ base directory mtl syb transformers ];
+ description = "Library for strategic programming";
+ license = stdenv.lib.licenses.bsd3;
}) {};
"StrappedTemplates" = callPackage
@@ -20329,10 +20535,7 @@ self: {
pname = "Takusen";
version = "0.8.7";
sha256 = "9e9fe740a9030e27ee84343a7e308853b0e5d50371a841d9a3979a9f8d99ac57";
- isLibrary = true;
- isExecutable = true;
libraryHaskellDepends = [ base mtl old-time time ];
- executableHaskellDepends = [ base mtl old-time ];
description = "Database library with left-fold interface, for PostgreSQL, Oracle, SQLite, ODBC";
license = stdenv.lib.licenses.bsd3;
hydraPlatforms = [ "x86_64-darwin" ];
@@ -20446,7 +20649,7 @@ self: {
];
homepage = "https://github.com/testexplode/testexplode";
description = "Generates testcases from program-snippets";
- license = stdenv.lib.licenses.gpl3;
+ license = stdenv.lib.licenses.lgpl3;
}) {};
"Theora" = callPackage
@@ -21624,10 +21827,7 @@ self: {
pname = "Win32-notify";
version = "0.3.0.1";
sha256 = "c49159d8154f9ff7d30207901125ceadc2aa94baa3b2996ff0884e9f0158eb7f";
- isLibrary = true;
- isExecutable = true;
libraryHaskellDepends = [ base containers directory Win32 ];
- executableHaskellDepends = [ base directory ];
description = "A binding to part of the Win32 library for file notification";
license = stdenv.lib.licenses.bsd3;
hydraPlatforms = stdenv.lib.platforms.none;
@@ -21639,8 +21839,6 @@ self: {
pname = "Win32-security";
version = "0.1.1";
sha256 = "9eca6c3efea64d83ee3aaf2ec0706695087e98e47c77163ac497f70ad4f90436";
- isLibrary = true;
- isExecutable = true;
libraryHaskellDepends = [ base text Win32 Win32-errors ];
homepage = "https://github.com/anton-dessiatov/Win32-security";
description = "Haskell bindings to a security-related functions of the Windows API";
@@ -22120,7 +22318,7 @@ self: {
pname = "Yablog";
version = "0.2.0";
sha256 = "737b4a1ab300cc2d5b8689640b51092b5a54d8ad4cb4bb451699b2367caa4761";
- isLibrary = true;
+ isLibrary = false;
isExecutable = true;
executableHaskellDepends = [
base blaze-builder blaze-html bytestring case-insensitive
@@ -22133,7 +22331,6 @@ self: {
yesod-default yesod-form yesod-newsfeed yesod-platform
yesod-recaptcha yesod-static
];
- jailbreak = true;
homepage = "http://gitweb.konn-san.com/repo/Yablog/tree/master";
description = "A simple blog engine powered by Yesod";
license = stdenv.lib.licenses.bsd3;
@@ -22268,11 +22465,7 @@ self: {
pname = "Yampa-core";
version = "0.2.0";
sha256 = "b78b1367c404e50021a7f17748d894e0c74a8b22dc8e48c7fbceea8fa4adaf1a";
- isLibrary = true;
- isExecutable = true;
libraryHaskellDepends = [ base deepseq random vector-space ];
- executableHaskellDepends = [ base ];
- testHaskellDepends = [ base ];
homepage = "https://github.com/ony/Yampa-core";
description = "Library for programming hybrid systems";
license = stdenv.lib.licenses.bsd3;
@@ -22507,14 +22700,11 @@ self: {
pname = "abcBridge";
version = "0.15";
sha256 = "45fef882d6e9c3f7ad48621fc835417df5c161c6743ebc4e4d3cabe9445b113c";
- isLibrary = true;
- isExecutable = true;
libraryHaskellDepends = [
aig base base-compat containers directory vector
];
librarySystemDepends = [ abc ];
libraryToolDepends = [ c2hs ];
- executableHaskellDepends = [ base base-compat ];
testHaskellDepends = [
aig base base-compat directory QuickCheck tasty tasty-ant-xml
tasty-hunit tasty-quickcheck vector
@@ -22565,8 +22755,8 @@ self: {
}:
mkDerivation {
pname = "abnf";
- version = "0.3.1.0";
- sha256 = "c556b06416b432092f2d6084605a40384b4e91822b49ccc33596badd7fc2ad12";
+ version = "0.4.1.0";
+ sha256 = "f9b5e111e060c2283beb296a8ad4ec28a1abd3da2602a735d017f8f4f45262cb";
libraryHaskellDepends = [
attoparsec base containers megaparsec text
];
@@ -22574,7 +22764,6 @@ self: {
attoparsec base containers HUnit megaparsec tasty tasty-hunit
test-framework test-framework-hunit text
];
- jailbreak = true;
homepage = "https://github.com/Xandaros/abnf.git";
description = "Parse ABNF and generate parsers for the specified document";
license = stdenv.lib.licenses.bsd2;
@@ -22801,8 +22990,6 @@ self: {
pname = "accelerate-cufft";
version = "0.0";
sha256 = "a7f5f2ee43acebd1a5caf6fd268b05def2d279485bf1e7021a0299097ef9ca89";
- isLibrary = true;
- isExecutable = true;
libraryHaskellDepends = [
accelerate accelerate-cuda accelerate-fourier accelerate-utility
base cuda cufft
@@ -23028,6 +23215,18 @@ self: {
hydraPlatforms = [ "x86_64-darwin" ];
}) {};
+ "accuerr" = callPackage
+ ({ mkDerivation, base, bifunctors, lens, semigroups }:
+ mkDerivation {
+ pname = "accuerr";
+ version = "0.2.0.2";
+ sha256 = "4f6a8230d2ad3bc274dea234208ce4f5282e2d9413a5da1f5505fc55a2fa9a36";
+ libraryHaskellDepends = [ base bifunctors lens semigroups ];
+ homepage = "http://www.github.com/massysett/accuerr";
+ description = "Data type like Either but with accumulating error type";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
"ace" = callPackage
({ mkDerivation, attoparsec, base, bifunctors, blaze-html
, blaze-markup, data-default, hspec, HUnit, mtl, parsec, text
@@ -23762,7 +23961,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "active" = callPackage
+ "active_0_2_0_9" = callPackage
({ mkDerivation, base, lens, linear, QuickCheck, semigroupoids
, semigroups, vector
}:
@@ -23776,6 +23975,26 @@ self: {
testHaskellDepends = [
base lens linear QuickCheck semigroupoids semigroups vector
];
+ jailbreak = true;
+ description = "Abstractions for animation";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "active" = callPackage
+ ({ mkDerivation, base, lens, linear, QuickCheck, semigroupoids
+ , semigroups, vector
+ }:
+ mkDerivation {
+ pname = "active";
+ version = "0.2.0.10";
+ sha256 = "0819b0ae7a690bba42f974ba3d1efb1b356919e0f9e278cb30653d022bce78b1";
+ libraryHaskellDepends = [
+ base lens linear semigroupoids semigroups vector
+ ];
+ testHaskellDepends = [
+ base lens linear QuickCheck semigroupoids semigroups vector
+ ];
description = "Abstractions for animation";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -23953,7 +24172,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "ad" = callPackage
+ "ad_4_3_2" = callPackage
({ mkDerivation, array, base, comonad, containers, data-reify
, directory, doctest, erf, filepath, free, nats, reflection
, transformers
@@ -23972,6 +24191,27 @@ self: {
homepage = "http://github.com/ekmett/ad";
description = "Automatic Differentiation";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "ad" = callPackage
+ ({ mkDerivation, array, base, comonad, containers, data-reify
+ , directory, doctest, erf, filepath, free, nats, reflection
+ , transformers
+ }:
+ mkDerivation {
+ pname = "ad";
+ version = "4.3.2.1";
+ sha256 = "84de5524f60a088f4a326956434c74f32b9c4961be616fb3f1fbea620413e39d";
+ libraryHaskellDepends = [
+ array base comonad containers data-reify erf free nats reflection
+ transformers
+ ];
+ testHaskellDepends = [ base directory doctest filepath ];
+ doCheck = false;
+ homepage = "http://github.com/ekmett/ad";
+ description = "Automatic Differentiation";
+ license = stdenv.lib.licenses.bsd3;
}) {};
"adaptive-containers" = callPackage
@@ -23994,6 +24234,7 @@ self: {
version = "0.2.0";
sha256 = "218f0271298f9a42aad50c10cc042388c62d1619624b750f0b665be4f068c4cd";
libraryHaskellDepends = [ base template-haskell type-level ];
+ jailbreak = true;
homepage = "http://inmachina.net/~jwlato/haskell/";
description = "Self-optimizing tuple types";
license = stdenv.lib.licenses.bsd3;
@@ -24216,8 +24457,6 @@ self: {
pname = "adp-multi";
version = "0.2.3";
sha256 = "4728f3d87728adead1d6ebb33e032dd05673cc43573dc00d52a9522154f7b5d2";
- isLibrary = true;
- isExecutable = true;
libraryHaskellDepends = [ array base containers htrace ];
testHaskellDepends = [
array base containers htrace HUnit mtl QuickCheck random-shuffle
@@ -24238,8 +24477,6 @@ self: {
pname = "adp-multi-monadiccp";
version = "0.2.1";
sha256 = "dae838558f728af3cf1e58aaccfcc66fe66a0d3d33332eb365d710e71facf48f";
- isLibrary = true;
- isExecutable = true;
libraryHaskellDepends = [ adp-multi base containers monadiccp ];
testHaskellDepends = [
adp-multi base containers monadiccp mtl QuickCheck test-framework
@@ -24489,6 +24726,18 @@ self: {
license = stdenv.lib.licenses.mit;
}) {};
+ "aeson-coerce" = callPackage
+ ({ mkDerivation, aeson, base, bytestring, containers, text }:
+ mkDerivation {
+ pname = "aeson-coerce";
+ version = "0.1.0.0";
+ sha256 = "489c3b6f2c9c667fdda9ccdf3df16bd3f329b1e2d4645b393f905c3e61dad744";
+ libraryHaskellDepends = [ aeson base bytestring containers text ];
+ homepage = "https://github.com/lichtzwerge/aeson-coerce#readme";
+ description = "Initial project template from stack";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
"aeson-compat_0_3_0_0" = callPackage
({ mkDerivation, aeson, attoparsec, base, bytestring, containers
, exceptions, hashable, quickcheck-instances, scientific, tasty
@@ -24602,7 +24851,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "aeson-compat" = callPackage
+ "aeson-compat_0_3_4_0" = callPackage
({ mkDerivation, aeson, attoparsec, base, base-compat, base-orphans
, bytestring, containers, exceptions, hashable, nats, QuickCheck
, quickcheck-instances, scientific, semigroups, tagged, tasty
@@ -24627,6 +24876,34 @@ self: {
homepage = "https://github.com/phadej/aeson-compat#readme";
description = "Compatibility layer for aeson";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "aeson-compat" = callPackage
+ ({ mkDerivation, aeson, attoparsec, base, base-compat, base-orphans
+ , bytestring, containers, exceptions, hashable, nats, QuickCheck
+ , quickcheck-instances, scientific, semigroups, tagged, tasty
+ , tasty-hunit, tasty-quickcheck, text, time, time-locale-compat
+ , unordered-containers, vector
+ }:
+ mkDerivation {
+ pname = "aeson-compat";
+ version = "0.3.5.1";
+ sha256 = "6ab707c4e4f15d2f55e968a91809ab52c06d0099a58c1255c0f0c382caf3c843";
+ libraryHaskellDepends = [
+ aeson attoparsec base base-compat bytestring containers exceptions
+ hashable nats scientific semigroups tagged text time
+ time-locale-compat unordered-containers vector
+ ];
+ testHaskellDepends = [
+ aeson attoparsec base base-compat base-orphans bytestring
+ containers exceptions hashable nats QuickCheck quickcheck-instances
+ scientific semigroups tagged tasty tasty-hunit tasty-quickcheck
+ text time time-locale-compat unordered-containers vector
+ ];
+ homepage = "https://github.com/phadej/aeson-compat#readme";
+ description = "Compatibility layer for aeson";
+ license = stdenv.lib.licenses.bsd3;
}) {};
"aeson-diff" = callPackage
@@ -25015,6 +25292,29 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "aeson-pretty_0_8_1" = callPackage
+ ({ mkDerivation, aeson, attoparsec, base, base-compat, bytestring
+ , cmdargs, scientific, text, unordered-containers, vector
+ }:
+ mkDerivation {
+ pname = "aeson-pretty";
+ version = "0.8.1";
+ sha256 = "922a7c4413394b28c83e70d41f105e5bb2b991e1e47e2d802876a33589b6e6a1";
+ isLibrary = true;
+ isExecutable = true;
+ libraryHaskellDepends = [
+ aeson base base-compat bytestring scientific text
+ unordered-containers vector
+ ];
+ executableHaskellDepends = [
+ aeson attoparsec base bytestring cmdargs
+ ];
+ homepage = "http://github.com/informatikr/aeson-pretty";
+ description = "JSON pretty-printing library and command-line tool";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"aeson-qq_0_7_4" = callPackage
({ mkDerivation, aeson, base, ghc-prim, haskell-src-meta, hspec
, parsec, template-haskell, text, vector
@@ -25314,10 +25614,9 @@ self: {
({ mkDerivation, aeson, base }:
mkDerivation {
pname = "aeson-yak";
- version = "0.1.1";
- sha256 = "b71317e0a87bbd84d6ec407a307299201070a10e3b2cf9d28c4afb5cf8b0dad2";
+ version = "0.1.1.1";
+ sha256 = "68eaed01e8d928870dc8c3f3530a3c77aaf8ef1bec86928f2382b9e0af81a260";
libraryHaskellDepends = [ aeson base ];
- jailbreak = true;
homepage = "https://github.com/tejon/aeson-yak";
description = "Handle JSON that may or may not be a list, or exist";
license = stdenv.lib.licenses.mit;
@@ -25466,18 +25765,11 @@ self: {
pname = "agentx";
version = "0.2.0.0";
sha256 = "e61dc3994aaf70cf8823064d56e839ee1af18ae6be30e294214f759064ccb65e";
- isLibrary = true;
- isExecutable = true;
libraryHaskellDepends = [
base binary bitwise bytestring containers data-default Diff
fclabels mtl network pipes pipes-concurrency pipes-network safe
snmp time transformers unix
];
- executableHaskellDepends = [
- base binary bitwise bytestring containers data-default Diff
- fclabels mtl network pipes pipes-concurrency pipes-network safe
- snmp time transformers unix
- ];
jailbreak = true;
description = "AgentX protocol for write SNMP subagents";
license = stdenv.lib.licenses.bsd3;
@@ -25757,8 +26049,8 @@ self: {
({ mkDerivation, array, base, containers, mtl, random, vector }:
mkDerivation {
pname = "aivika";
- version = "4.3.5";
- sha256 = "0fc1120a7f3ff97d4200b2149cb61c8a3182d05479fdd338306069236d9e2259";
+ version = "4.5";
+ sha256 = "4a86928ea9d289f82a5e81227dd2f5b29870fa3be608f135e4469e5a8f08c865";
libraryHaskellDepends = [
array base containers mtl random vector
];
@@ -25773,31 +26065,31 @@ self: {
}:
mkDerivation {
pname = "aivika-branches";
- version = "0.1.2";
- sha256 = "6c8a2cd2b840f839881e847af3402f13cb2dc33e6fed19954477c4ae3417a417";
+ version = "0.1.3";
+ sha256 = "d14dac2f3d59a8e51acf4eb078e67910cbf4c52f5acc91f54af6431618f41fb3";
libraryHaskellDepends = [
aivika aivika-transformers base containers mtl random
];
homepage = "http://www.aivikasoft.com/en/products/aivika.html";
- description = "Branching discrete event simulation library";
+ description = "Nested discrete event simulation module for the Aivika library";
license = stdenv.lib.licenses.bsd3;
}) {};
"aivika-distributed" = callPackage
({ mkDerivation, aivika, aivika-transformers, base, binary
- , bytestring, containers, distributed-process, exceptions, mtl
- , random, stm, time
+ , containers, distributed-process, exceptions, mtl, random, stm
+ , time
}:
mkDerivation {
pname = "aivika-distributed";
- version = "0.1.3";
- sha256 = "fbfce34de97c3631dcc067726327c10df1325118685beb89458feb58ce860aae";
+ version = "0.2";
+ sha256 = "19dac37eb6436ce9dbcda7b8a30ee914ec28b6704321512571c27c483ac8b8cc";
libraryHaskellDepends = [
- aivika aivika-transformers base binary bytestring containers
+ aivika aivika-transformers base binary containers
distributed-process exceptions mtl random stm time
];
homepage = "http://www.aivikasoft.com/en/products/aivika.html";
- description = "Parallel distributed simulation library";
+ description = "Parallel distributed discrete event simulation module for the Aivika library";
license = stdenv.lib.licenses.bsd3;
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
@@ -25848,6 +26140,7 @@ self: {
aivika aivika-experiment array base Chart colour containers
data-default-class filepath lens mtl split
];
+ jailbreak = true;
homepage = "http://github.com/dsorokin/aivika-experiment-chart";
description = "Simulation experiments with charting for the Aivika library";
license = stdenv.lib.licenses.bsd3;
@@ -25871,14 +26164,30 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
+ "aivika-lattice" = callPackage
+ ({ mkDerivation, aivika, aivika-transformers, base, containers, mtl
+ , random
+ }:
+ mkDerivation {
+ pname = "aivika-lattice";
+ version = "0.1.1";
+ sha256 = "6867ddbe564dbf99a5bc4acd942896068f2953de28efe86a02a638dc6450e1d7";
+ libraryHaskellDepends = [
+ aivika aivika-transformers base containers mtl random
+ ];
+ homepage = "http://www.aivikasoft.com/en/products/aivika.html";
+ description = "Nested discrete event simulation module for the Aivika library using lattice";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
"aivika-transformers" = callPackage
({ mkDerivation, aivika, array, base, containers, mtl, random
, vector
}:
mkDerivation {
pname = "aivika-transformers";
- version = "4.3.5";
- sha256 = "8903fc269b790233425684167ed193c2195a33a8134e8351ba98df69058ec6e7";
+ version = "4.5";
+ sha256 = "c86a3db16ffcf528bed4b97cd764ebec3888dc39afa80d9bd7340e178f4b5111";
libraryHaskellDepends = [
aivika array base containers mtl random vector
];
@@ -25975,7 +26284,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "alarmclock" = callPackage
+ "alarmclock_0_2_0_9" = callPackage
({ mkDerivation, base, stm, time, unbounded-delays }:
mkDerivation {
pname = "alarmclock";
@@ -25989,6 +26298,21 @@ self: {
homepage = "https://bitbucket.org/davecturner/alarmclock";
description = "Wake up and perform an action at a certain time";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "alarmclock" = callPackage
+ ({ mkDerivation, async, base, clock, stm, time, unbounded-delays }:
+ mkDerivation {
+ pname = "alarmclock";
+ version = "0.4.0.2";
+ sha256 = "a84c412ac9ded121d1916ce05c9b5e33e35d0fdba1ae86a8202021ff1b28e91c";
+ libraryHaskellDepends = [
+ async base clock stm time unbounded-delays
+ ];
+ homepage = "https://bitbucket.org/davecturner/alarmclock";
+ description = "Wake up and perform an action at a certain time";
+ license = stdenv.lib.licenses.bsd3;
}) {};
"alea" = callPackage
@@ -26527,8 +26851,6 @@ self: {
pname = "alsa-pcm";
version = "0.6.0.4";
sha256 = "9aae1379903b8445073f8a2b6ccf86b904b4045247747516530a165a3f76ca2a";
- isLibrary = true;
- isExecutable = true;
libraryHaskellDepends = [
alsa-core array base extensible-exceptions sample-frame
storable-record
@@ -26562,8 +26884,6 @@ self: {
pname = "alsa-seq";
version = "0.6.0.6";
sha256 = "f5e58660f07943f0cc33eb2e1ada5e111c43d4114eeb4e0ac0251d72c43b7144";
- isLibrary = true;
- isExecutable = true;
libraryHaskellDepends = [
alsa-core array base bytestring data-accessor enumset
extensible-exceptions poll transformers utility-ht
@@ -26829,7 +27149,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "amazonka" = callPackage
+ "amazonka_1_4_2" = callPackage
({ mkDerivation, amazonka-core, base, bytestring, conduit
, conduit-extra, directory, exceptions, http-conduit, ini, mmorph
, monad-control, mtl, resourcet, retry, tasty, tasty-hunit, text
@@ -26845,6 +27165,29 @@ self: {
retry text time transformers transformers-base transformers-compat
];
testHaskellDepends = [ base tasty tasty-hunit ];
+ jailbreak = true;
+ homepage = "https://github.com/brendanhay/amazonka";
+ description = "Comprehensive Amazon Web Services SDK";
+ license = "unknown";
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "amazonka" = callPackage
+ ({ mkDerivation, amazonka-core, base, bytestring, conduit
+ , conduit-extra, directory, exceptions, http-conduit, ini, mmorph
+ , monad-control, mtl, resourcet, retry, tasty, tasty-hunit, text
+ , time, transformers, transformers-base, transformers-compat
+ }:
+ mkDerivation {
+ pname = "amazonka";
+ version = "1.4.3";
+ sha256 = "18aa7816d755df58a824fc252d34cb1f81c6cba2ca2a7194c3a3f0d630c26686";
+ libraryHaskellDepends = [
+ amazonka-core base bytestring conduit conduit-extra directory
+ exceptions http-conduit ini mmorph monad-control mtl resourcet
+ retry text time transformers transformers-base transformers-compat
+ ];
+ testHaskellDepends = [ base tasty tasty-hunit ];
homepage = "https://github.com/brendanhay/amazonka";
description = "Comprehensive Amazon Web Services SDK";
license = "unknown";
@@ -26891,7 +27234,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "amazonka-apigateway" = callPackage
+ "amazonka-apigateway_1_4_2" = callPackage
({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
, tasty, tasty-hunit, text, time, unordered-containers
}:
@@ -26904,6 +27247,26 @@ self: {
amazonka-core amazonka-test base bytestring tasty tasty-hunit text
time unordered-containers
];
+ jailbreak = true;
+ homepage = "https://github.com/brendanhay/amazonka";
+ description = "Amazon API Gateway SDK";
+ license = "unknown";
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "amazonka-apigateway" = callPackage
+ ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
+ , tasty, tasty-hunit, text, time, unordered-containers
+ }:
+ mkDerivation {
+ pname = "amazonka-apigateway";
+ version = "1.4.3";
+ sha256 = "74fe95daa465255ad2a49f3f0b78242c5e1ec33d81d0e9dfffa833324894d948";
+ libraryHaskellDepends = [ amazonka-core base ];
+ testHaskellDepends = [
+ amazonka-core amazonka-test base bytestring tasty tasty-hunit text
+ time unordered-containers
+ ];
homepage = "https://github.com/brendanhay/amazonka";
description = "Amazon API Gateway SDK";
license = "unknown";
@@ -26916,8 +27279,8 @@ self: {
}:
mkDerivation {
pname = "amazonka-application-autoscaling";
- version = "1.4.2";
- sha256 = "acf3b5b1badbd50e7f2cafe2fdf75d44ee3352f423367f434b4c1a12a3ed57ab";
+ version = "1.4.3";
+ sha256 = "5506a59b594355ab0e78f3e1c0f550bd5b2a858c4a0688732a4931e6ac096f6c";
libraryHaskellDepends = [ amazonka-core base ];
testHaskellDepends = [
amazonka-core amazonka-test base bytestring tasty tasty-hunit text
@@ -27010,7 +27373,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "amazonka-autoscaling" = callPackage
+ "amazonka-autoscaling_1_4_2" = callPackage
({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
, tasty, tasty-hunit, text, time, unordered-containers
}:
@@ -27023,6 +27386,26 @@ self: {
amazonka-core amazonka-test base bytestring tasty tasty-hunit text
time unordered-containers
];
+ jailbreak = true;
+ homepage = "https://github.com/brendanhay/amazonka";
+ description = "Amazon Auto Scaling SDK";
+ license = "unknown";
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "amazonka-autoscaling" = callPackage
+ ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
+ , tasty, tasty-hunit, text, time, unordered-containers
+ }:
+ mkDerivation {
+ pname = "amazonka-autoscaling";
+ version = "1.4.3";
+ sha256 = "4a47502b75b54cae3ab3da1792f5862a1e726e551d25bc0ba54f7854a66fa3df";
+ libraryHaskellDepends = [ amazonka-core base ];
+ testHaskellDepends = [
+ amazonka-core amazonka-test base bytestring tasty tasty-hunit text
+ time unordered-containers
+ ];
homepage = "https://github.com/brendanhay/amazonka";
description = "Amazon Auto Scaling SDK";
license = "unknown";
@@ -27049,7 +27432,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "amazonka-certificatemanager" = callPackage
+ "amazonka-certificatemanager_1_4_2" = callPackage
({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
, tasty, tasty-hunit, text, time, unordered-containers
}:
@@ -27062,6 +27445,26 @@ self: {
amazonka-core amazonka-test base bytestring tasty tasty-hunit text
time unordered-containers
];
+ jailbreak = true;
+ homepage = "https://github.com/brendanhay/amazonka";
+ description = "Amazon Certificate Manager SDK";
+ license = "unknown";
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "amazonka-certificatemanager" = callPackage
+ ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
+ , tasty, tasty-hunit, text, time, unordered-containers
+ }:
+ mkDerivation {
+ pname = "amazonka-certificatemanager";
+ version = "1.4.3";
+ sha256 = "d1228f95581d90f53a29dba53c1d7a1d0eb7439e278c4c5aca70af01f3e30d55";
+ libraryHaskellDepends = [ amazonka-core base ];
+ testHaskellDepends = [
+ amazonka-core amazonka-test base bytestring tasty tasty-hunit text
+ time unordered-containers
+ ];
homepage = "https://github.com/brendanhay/amazonka";
description = "Amazon Certificate Manager SDK";
license = "unknown";
@@ -27150,7 +27553,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "amazonka-cloudformation" = callPackage
+ "amazonka-cloudformation_1_4_2" = callPackage
({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
, tasty, tasty-hunit, text, time, unordered-containers
}:
@@ -27163,6 +27566,26 @@ self: {
amazonka-core amazonka-test base bytestring tasty tasty-hunit text
time unordered-containers
];
+ jailbreak = true;
+ homepage = "https://github.com/brendanhay/amazonka";
+ description = "Amazon CloudFormation SDK";
+ license = "unknown";
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "amazonka-cloudformation" = callPackage
+ ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
+ , tasty, tasty-hunit, text, time, unordered-containers
+ }:
+ mkDerivation {
+ pname = "amazonka-cloudformation";
+ version = "1.4.3";
+ sha256 = "3b2069debd35ddfd08af2281902d7c063b267fd2a23b71057321cd2e55cd7690";
+ libraryHaskellDepends = [ amazonka-core base ];
+ testHaskellDepends = [
+ amazonka-core amazonka-test base bytestring tasty tasty-hunit text
+ time unordered-containers
+ ];
homepage = "https://github.com/brendanhay/amazonka";
description = "Amazon CloudFormation SDK";
license = "unknown";
@@ -27251,7 +27674,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "amazonka-cloudfront" = callPackage
+ "amazonka-cloudfront_1_4_2" = callPackage
({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
, tasty, tasty-hunit, text, time, unordered-containers
}:
@@ -27264,6 +27687,26 @@ self: {
amazonka-core amazonka-test base bytestring tasty tasty-hunit text
time unordered-containers
];
+ jailbreak = true;
+ homepage = "https://github.com/brendanhay/amazonka";
+ description = "Amazon CloudFront SDK";
+ license = "unknown";
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "amazonka-cloudfront" = callPackage
+ ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
+ , tasty, tasty-hunit, text, time, unordered-containers
+ }:
+ mkDerivation {
+ pname = "amazonka-cloudfront";
+ version = "1.4.3";
+ sha256 = "5241ccb0d39cc055f97eb6496835783a97de0ce0b33c765a1325d01119abecbe";
+ libraryHaskellDepends = [ amazonka-core base ];
+ testHaskellDepends = [
+ amazonka-core amazonka-test base bytestring tasty tasty-hunit text
+ time unordered-containers
+ ];
homepage = "https://github.com/brendanhay/amazonka";
description = "Amazon CloudFront SDK";
license = "unknown";
@@ -27352,7 +27795,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "amazonka-cloudhsm" = callPackage
+ "amazonka-cloudhsm_1_4_2" = callPackage
({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
, tasty, tasty-hunit, text, time, unordered-containers
}:
@@ -27365,6 +27808,26 @@ self: {
amazonka-core amazonka-test base bytestring tasty tasty-hunit text
time unordered-containers
];
+ jailbreak = true;
+ homepage = "https://github.com/brendanhay/amazonka";
+ description = "Amazon CloudHSM SDK";
+ license = "unknown";
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "amazonka-cloudhsm" = callPackage
+ ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
+ , tasty, tasty-hunit, text, time, unordered-containers
+ }:
+ mkDerivation {
+ pname = "amazonka-cloudhsm";
+ version = "1.4.3";
+ sha256 = "6848989619b58c75fa1d72d122e96c621b881bf4c376b9325eeb54c8c3200c43";
+ libraryHaskellDepends = [ amazonka-core base ];
+ testHaskellDepends = [
+ amazonka-core amazonka-test base bytestring tasty tasty-hunit text
+ time unordered-containers
+ ];
homepage = "https://github.com/brendanhay/amazonka";
description = "Amazon CloudHSM SDK";
license = "unknown";
@@ -27453,7 +27916,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "amazonka-cloudsearch" = callPackage
+ "amazonka-cloudsearch_1_4_2" = callPackage
({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
, tasty, tasty-hunit, text, time, unordered-containers
}:
@@ -27466,6 +27929,26 @@ self: {
amazonka-core amazonka-test base bytestring tasty tasty-hunit text
time unordered-containers
];
+ jailbreak = true;
+ homepage = "https://github.com/brendanhay/amazonka";
+ description = "Amazon CloudSearch SDK";
+ license = "unknown";
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "amazonka-cloudsearch" = callPackage
+ ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
+ , tasty, tasty-hunit, text, time, unordered-containers
+ }:
+ mkDerivation {
+ pname = "amazonka-cloudsearch";
+ version = "1.4.3";
+ sha256 = "7126175d24355afa678c9dd59400fd1b1a40c18240d96de88bd831b0099c0c26";
+ libraryHaskellDepends = [ amazonka-core base ];
+ testHaskellDepends = [
+ amazonka-core amazonka-test base bytestring tasty tasty-hunit text
+ time unordered-containers
+ ];
homepage = "https://github.com/brendanhay/amazonka";
description = "Amazon CloudSearch SDK";
license = "unknown";
@@ -27554,7 +28037,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "amazonka-cloudsearch-domains" = callPackage
+ "amazonka-cloudsearch-domains_1_4_2" = callPackage
({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
, tasty, tasty-hunit, text, time, unordered-containers
}:
@@ -27567,6 +28050,26 @@ self: {
amazonka-core amazonka-test base bytestring tasty tasty-hunit text
time unordered-containers
];
+ jailbreak = true;
+ homepage = "https://github.com/brendanhay/amazonka";
+ description = "Amazon CloudSearch Domain SDK";
+ license = "unknown";
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "amazonka-cloudsearch-domains" = callPackage
+ ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
+ , tasty, tasty-hunit, text, time, unordered-containers
+ }:
+ mkDerivation {
+ pname = "amazonka-cloudsearch-domains";
+ version = "1.4.3";
+ sha256 = "4416cb88845bd27c845ecac50029e7721f3d13d26d24ab6c9c571b5c2c543f7d";
+ libraryHaskellDepends = [ amazonka-core base ];
+ testHaskellDepends = [
+ amazonka-core amazonka-test base bytestring tasty tasty-hunit text
+ time unordered-containers
+ ];
homepage = "https://github.com/brendanhay/amazonka";
description = "Amazon CloudSearch Domain SDK";
license = "unknown";
@@ -27655,7 +28158,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "amazonka-cloudtrail" = callPackage
+ "amazonka-cloudtrail_1_4_2" = callPackage
({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
, tasty, tasty-hunit, text, time, unordered-containers
}:
@@ -27668,6 +28171,26 @@ self: {
amazonka-core amazonka-test base bytestring tasty tasty-hunit text
time unordered-containers
];
+ jailbreak = true;
+ homepage = "https://github.com/brendanhay/amazonka";
+ description = "Amazon CloudTrail SDK";
+ license = "unknown";
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "amazonka-cloudtrail" = callPackage
+ ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
+ , tasty, tasty-hunit, text, time, unordered-containers
+ }:
+ mkDerivation {
+ pname = "amazonka-cloudtrail";
+ version = "1.4.3";
+ sha256 = "04ea4c78e0d73f71e1144eb5a357e1e6bce16109453ab30c31d8e7a9ae77fa6f";
+ libraryHaskellDepends = [ amazonka-core base ];
+ testHaskellDepends = [
+ amazonka-core amazonka-test base bytestring tasty tasty-hunit text
+ time unordered-containers
+ ];
homepage = "https://github.com/brendanhay/amazonka";
description = "Amazon CloudTrail SDK";
license = "unknown";
@@ -27756,7 +28279,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "amazonka-cloudwatch" = callPackage
+ "amazonka-cloudwatch_1_4_2" = callPackage
({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
, tasty, tasty-hunit, text, time, unordered-containers
}:
@@ -27769,6 +28292,26 @@ self: {
amazonka-core amazonka-test base bytestring tasty tasty-hunit text
time unordered-containers
];
+ jailbreak = true;
+ homepage = "https://github.com/brendanhay/amazonka";
+ description = "Amazon CloudWatch SDK";
+ license = "unknown";
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "amazonka-cloudwatch" = callPackage
+ ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
+ , tasty, tasty-hunit, text, time, unordered-containers
+ }:
+ mkDerivation {
+ pname = "amazonka-cloudwatch";
+ version = "1.4.3";
+ sha256 = "98df67a18bfdf4c00736f6be41576877f8191ac936ab2f5666b160cb80c22d5f";
+ libraryHaskellDepends = [ amazonka-core base ];
+ testHaskellDepends = [
+ amazonka-core amazonka-test base bytestring tasty tasty-hunit text
+ time unordered-containers
+ ];
homepage = "https://github.com/brendanhay/amazonka";
description = "Amazon CloudWatch SDK";
license = "unknown";
@@ -27795,7 +28338,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "amazonka-cloudwatch-events" = callPackage
+ "amazonka-cloudwatch-events_1_4_2" = callPackage
({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
, tasty, tasty-hunit, text, time, unordered-containers
}:
@@ -27808,6 +28351,26 @@ self: {
amazonka-core amazonka-test base bytestring tasty tasty-hunit text
time unordered-containers
];
+ jailbreak = true;
+ homepage = "https://github.com/brendanhay/amazonka";
+ description = "Amazon CloudWatch Events SDK";
+ license = "unknown";
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "amazonka-cloudwatch-events" = callPackage
+ ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
+ , tasty, tasty-hunit, text, time, unordered-containers
+ }:
+ mkDerivation {
+ pname = "amazonka-cloudwatch-events";
+ version = "1.4.3";
+ sha256 = "fb839e3e4c402151e138b1d69356600f2d378d53631a3616b6228f620713df56";
+ libraryHaskellDepends = [ amazonka-core base ];
+ testHaskellDepends = [
+ amazonka-core amazonka-test base bytestring tasty tasty-hunit text
+ time unordered-containers
+ ];
homepage = "https://github.com/brendanhay/amazonka";
description = "Amazon CloudWatch Events SDK";
license = "unknown";
@@ -27896,7 +28459,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "amazonka-cloudwatch-logs" = callPackage
+ "amazonka-cloudwatch-logs_1_4_2" = callPackage
({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
, tasty, tasty-hunit, text, time, unordered-containers
}:
@@ -27909,6 +28472,26 @@ self: {
amazonka-core amazonka-test base bytestring tasty tasty-hunit text
time unordered-containers
];
+ jailbreak = true;
+ homepage = "https://github.com/brendanhay/amazonka";
+ description = "Amazon CloudWatch Logs SDK";
+ license = "unknown";
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "amazonka-cloudwatch-logs" = callPackage
+ ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
+ , tasty, tasty-hunit, text, time, unordered-containers
+ }:
+ mkDerivation {
+ pname = "amazonka-cloudwatch-logs";
+ version = "1.4.3";
+ sha256 = "de201710b2d594519b1c9d8b20fab92e1a0f4e777e5c05ed1bd32c91ae260161";
+ libraryHaskellDepends = [ amazonka-core base ];
+ testHaskellDepends = [
+ amazonka-core amazonka-test base bytestring tasty tasty-hunit text
+ time unordered-containers
+ ];
homepage = "https://github.com/brendanhay/amazonka";
description = "Amazon CloudWatch Logs SDK";
license = "unknown";
@@ -27955,7 +28538,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "amazonka-codecommit" = callPackage
+ "amazonka-codecommit_1_4_2" = callPackage
({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
, tasty, tasty-hunit, text, time, unordered-containers
}:
@@ -27968,6 +28551,26 @@ self: {
amazonka-core amazonka-test base bytestring tasty tasty-hunit text
time unordered-containers
];
+ jailbreak = true;
+ homepage = "https://github.com/brendanhay/amazonka";
+ description = "Amazon CodeCommit SDK";
+ license = "unknown";
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "amazonka-codecommit" = callPackage
+ ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
+ , tasty, tasty-hunit, text, time, unordered-containers
+ }:
+ mkDerivation {
+ pname = "amazonka-codecommit";
+ version = "1.4.3";
+ sha256 = "fe8d033203bccb7c8c7242a063a814cdbb8a22fb4a95e5fa4f01b200d547966b";
+ libraryHaskellDepends = [ amazonka-core base ];
+ testHaskellDepends = [
+ amazonka-core amazonka-test base bytestring tasty tasty-hunit text
+ time unordered-containers
+ ];
homepage = "https://github.com/brendanhay/amazonka";
description = "Amazon CodeCommit SDK";
license = "unknown";
@@ -28056,7 +28659,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "amazonka-codedeploy" = callPackage
+ "amazonka-codedeploy_1_4_2" = callPackage
({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
, tasty, tasty-hunit, text, time, unordered-containers
}:
@@ -28069,6 +28672,26 @@ self: {
amazonka-core amazonka-test base bytestring tasty tasty-hunit text
time unordered-containers
];
+ jailbreak = true;
+ homepage = "https://github.com/brendanhay/amazonka";
+ description = "Amazon CodeDeploy SDK";
+ license = "unknown";
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "amazonka-codedeploy" = callPackage
+ ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
+ , tasty, tasty-hunit, text, time, unordered-containers
+ }:
+ mkDerivation {
+ pname = "amazonka-codedeploy";
+ version = "1.4.3";
+ sha256 = "d216d3af7472428fecab9763e65e2f2ea412dfaaf8debbbe5e37ab158c5392d9";
+ libraryHaskellDepends = [ amazonka-core base ];
+ testHaskellDepends = [
+ amazonka-core amazonka-test base bytestring tasty tasty-hunit text
+ time unordered-containers
+ ];
homepage = "https://github.com/brendanhay/amazonka";
description = "Amazon CodeDeploy SDK";
license = "unknown";
@@ -28115,7 +28738,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "amazonka-codepipeline" = callPackage
+ "amazonka-codepipeline_1_4_2" = callPackage
({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
, tasty, tasty-hunit, text, time, unordered-containers
}:
@@ -28128,6 +28751,26 @@ self: {
amazonka-core amazonka-test base bytestring tasty tasty-hunit text
time unordered-containers
];
+ jailbreak = true;
+ homepage = "https://github.com/brendanhay/amazonka";
+ description = "Amazon CodePipeline SDK";
+ license = "unknown";
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "amazonka-codepipeline" = callPackage
+ ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
+ , tasty, tasty-hunit, text, time, unordered-containers
+ }:
+ mkDerivation {
+ pname = "amazonka-codepipeline";
+ version = "1.4.3";
+ sha256 = "2422824f998a0808151310c88c780bfa411a0f56966f93f614694f4dd526fdb1";
+ libraryHaskellDepends = [ amazonka-core base ];
+ testHaskellDepends = [
+ amazonka-core amazonka-test base bytestring tasty tasty-hunit text
+ time unordered-containers
+ ];
homepage = "https://github.com/brendanhay/amazonka";
description = "Amazon CodePipeline SDK";
license = "unknown";
@@ -28216,7 +28859,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "amazonka-cognito-identity" = callPackage
+ "amazonka-cognito-identity_1_4_2" = callPackage
({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
, tasty, tasty-hunit, text, time, unordered-containers
}:
@@ -28229,6 +28872,26 @@ self: {
amazonka-core amazonka-test base bytestring tasty tasty-hunit text
time unordered-containers
];
+ jailbreak = true;
+ homepage = "https://github.com/brendanhay/amazonka";
+ description = "Amazon Cognito Identity SDK";
+ license = "unknown";
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "amazonka-cognito-identity" = callPackage
+ ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
+ , tasty, tasty-hunit, text, time, unordered-containers
+ }:
+ mkDerivation {
+ pname = "amazonka-cognito-identity";
+ version = "1.4.3";
+ sha256 = "a45aa18f815e75da5e928ec8dfe7ed827394b0b1f4654bf059fe1f3897bfb232";
+ libraryHaskellDepends = [ amazonka-core base ];
+ testHaskellDepends = [
+ amazonka-core amazonka-test base bytestring tasty tasty-hunit text
+ time unordered-containers
+ ];
homepage = "https://github.com/brendanhay/amazonka";
description = "Amazon Cognito Identity SDK";
license = "unknown";
@@ -28255,7 +28918,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "amazonka-cognito-idp" = callPackage
+ "amazonka-cognito-idp_1_4_2" = callPackage
({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
, tasty, tasty-hunit, text, time, unordered-containers
}:
@@ -28268,6 +28931,26 @@ self: {
amazonka-core amazonka-test base bytestring tasty tasty-hunit text
time unordered-containers
];
+ jailbreak = true;
+ homepage = "https://github.com/brendanhay/amazonka";
+ description = "Amazon Cognito Identity Provider SDK";
+ license = "unknown";
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "amazonka-cognito-idp" = callPackage
+ ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
+ , tasty, tasty-hunit, text, time, unordered-containers
+ }:
+ mkDerivation {
+ pname = "amazonka-cognito-idp";
+ version = "1.4.3";
+ sha256 = "a7c23b78acf5ca6701540bd74bb5e20b007acbce0bf97905083e2e5dcab940e2";
+ libraryHaskellDepends = [ amazonka-core base ];
+ testHaskellDepends = [
+ amazonka-core amazonka-test base bytestring tasty tasty-hunit text
+ time unordered-containers
+ ];
homepage = "https://github.com/brendanhay/amazonka";
description = "Amazon Cognito Identity Provider SDK";
license = "unknown";
@@ -28356,7 +29039,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "amazonka-cognito-sync" = callPackage
+ "amazonka-cognito-sync_1_4_2" = callPackage
({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
, tasty, tasty-hunit, text, time, unordered-containers
}:
@@ -28369,6 +29052,26 @@ self: {
amazonka-core amazonka-test base bytestring tasty tasty-hunit text
time unordered-containers
];
+ jailbreak = true;
+ homepage = "https://github.com/brendanhay/amazonka";
+ description = "Amazon Cognito Sync SDK";
+ license = "unknown";
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "amazonka-cognito-sync" = callPackage
+ ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
+ , tasty, tasty-hunit, text, time, unordered-containers
+ }:
+ mkDerivation {
+ pname = "amazonka-cognito-sync";
+ version = "1.4.3";
+ sha256 = "51a484d6dd44e9d6f9506bd8d97f04ccfa48a04e79aadb193b8644e17a696be7";
+ libraryHaskellDepends = [ amazonka-core base ];
+ testHaskellDepends = [
+ amazonka-core amazonka-test base bytestring tasty tasty-hunit text
+ time unordered-containers
+ ];
homepage = "https://github.com/brendanhay/amazonka";
description = "Amazon Cognito Sync SDK";
license = "unknown";
@@ -28457,7 +29160,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "amazonka-config" = callPackage
+ "amazonka-config_1_4_2" = callPackage
({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
, tasty, tasty-hunit, text, time, unordered-containers
}:
@@ -28470,6 +29173,26 @@ self: {
amazonka-core amazonka-test base bytestring tasty tasty-hunit text
time unordered-containers
];
+ jailbreak = true;
+ homepage = "https://github.com/brendanhay/amazonka";
+ description = "Amazon Config SDK";
+ license = "unknown";
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "amazonka-config" = callPackage
+ ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
+ , tasty, tasty-hunit, text, time, unordered-containers
+ }:
+ mkDerivation {
+ pname = "amazonka-config";
+ version = "1.4.3";
+ sha256 = "d9c105b20e1269c55a59180ef61f040315643f873c0075b8b95e84723508e266";
+ libraryHaskellDepends = [ amazonka-core base ];
+ testHaskellDepends = [
+ amazonka-core amazonka-test base bytestring tasty tasty-hunit text
+ time unordered-containers
+ ];
homepage = "https://github.com/brendanhay/amazonka";
description = "Amazon Config SDK";
license = "unknown";
@@ -28588,6 +29311,8 @@ self: {
pname = "amazonka-core";
version = "1.3.7";
sha256 = "29c8aebe23cd6f48fa5f49c2ba02e2f12b8aa8fc0f820489b49dc95b28f8e05c";
+ revision = "1";
+ editedCabalFile = "8695dd4b7cd9abc2bc420d17a6e3da75ae1b28058fbb40984fdd940130874fdd";
libraryHaskellDepends = [
aeson attoparsec base bifunctors bytestring case-insensitive
conduit conduit-extra cryptonite exceptions hashable http-conduit
@@ -28620,6 +29345,8 @@ self: {
pname = "amazonka-core";
version = "1.4.1";
sha256 = "609024a35a4ce8e3561e513de2a36b44c1250163ad54ee6970cdce2a14fca33a";
+ revision = "1";
+ editedCabalFile = "be48f9c4426d35c2a9540d7828cc78d09cac516b19a7710fb7954b841f28b9cb";
libraryHaskellDepends = [
aeson attoparsec base bifunctors bytestring case-insensitive
conduit conduit-extra cryptonite deepseq exceptions hashable
@@ -28639,7 +29366,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "amazonka-core" = callPackage
+ "amazonka-core_1_4_2" = callPackage
({ mkDerivation, aeson, attoparsec, base, bifunctors, bytestring
, case-insensitive, conduit, conduit-extra, cryptonite, deepseq
, exceptions, hashable, http-conduit, http-types, lens, memory, mtl
@@ -28652,6 +29379,41 @@ self: {
pname = "amazonka-core";
version = "1.4.2";
sha256 = "57d9e816a3b3f378899a6bf32216dcab077ebb831828c57c6ad901308d5ee398";
+ revision = "1";
+ editedCabalFile = "8bd4e8d5e7b9697e88550af98f1e3c1c551cac7f3a26c025dbd0c3e1c581708b";
+ libraryHaskellDepends = [
+ aeson attoparsec base bifunctors bytestring case-insensitive
+ conduit conduit-extra cryptonite deepseq exceptions hashable
+ http-conduit http-types lens memory mtl resourcet scientific
+ semigroups tagged text time transformers transformers-compat
+ unordered-containers xml-conduit xml-types
+ ];
+ testHaskellDepends = [
+ aeson base bytestring case-insensitive http-types QuickCheck
+ quickcheck-unicode tasty tasty-hunit tasty-quickcheck
+ template-haskell text time
+ ];
+ homepage = "https://github.com/brendanhay/amazonka";
+ description = "Core data types and functionality for Amazonka libraries";
+ license = "unknown";
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "amazonka-core" = callPackage
+ ({ mkDerivation, aeson, attoparsec, base, bifunctors, bytestring
+ , case-insensitive, conduit, conduit-extra, cryptonite, deepseq
+ , exceptions, hashable, http-conduit, http-types, lens, memory, mtl
+ , QuickCheck, quickcheck-unicode, resourcet, scientific, semigroups
+ , tagged, tasty, tasty-hunit, tasty-quickcheck, template-haskell
+ , text, time, transformers, transformers-compat
+ , unordered-containers, xml-conduit, xml-types
+ }:
+ mkDerivation {
+ pname = "amazonka-core";
+ version = "1.4.3";
+ sha256 = "8270e26104bb0cbc7654d3522dce631c9804b433ec9ff5a2a0c7f844938eead0";
+ revision = "1";
+ editedCabalFile = "c2a93b788f323072f99ab6c120449c605f9249ba5e44d9e56221fa95b5254dba";
libraryHaskellDepends = [
aeson attoparsec base bifunctors bytestring case-insensitive
conduit conduit-extra cryptonite deepseq exceptions hashable
@@ -28752,7 +29514,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "amazonka-datapipeline" = callPackage
+ "amazonka-datapipeline_1_4_2" = callPackage
({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
, tasty, tasty-hunit, text, time, unordered-containers
}:
@@ -28765,6 +29527,26 @@ self: {
amazonka-core amazonka-test base bytestring tasty tasty-hunit text
time unordered-containers
];
+ jailbreak = true;
+ homepage = "https://github.com/brendanhay/amazonka";
+ description = "Amazon Data Pipeline SDK";
+ license = "unknown";
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "amazonka-datapipeline" = callPackage
+ ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
+ , tasty, tasty-hunit, text, time, unordered-containers
+ }:
+ mkDerivation {
+ pname = "amazonka-datapipeline";
+ version = "1.4.3";
+ sha256 = "04bb3873f247a6fc75b5f0a7822e28c1d212765b7918d490474b6bb0faf3d781";
+ libraryHaskellDepends = [ amazonka-core base ];
+ testHaskellDepends = [
+ amazonka-core amazonka-test base bytestring tasty tasty-hunit text
+ time unordered-containers
+ ];
homepage = "https://github.com/brendanhay/amazonka";
description = "Amazon Data Pipeline SDK";
license = "unknown";
@@ -28811,7 +29593,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "amazonka-devicefarm" = callPackage
+ "amazonka-devicefarm_1_4_2" = callPackage
({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
, tasty, tasty-hunit, text, time, unordered-containers
}:
@@ -28824,6 +29606,26 @@ self: {
amazonka-core amazonka-test base bytestring tasty tasty-hunit text
time unordered-containers
];
+ jailbreak = true;
+ homepage = "https://github.com/brendanhay/amazonka";
+ description = "Amazon Device Farm SDK";
+ license = "unknown";
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "amazonka-devicefarm" = callPackage
+ ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
+ , tasty, tasty-hunit, text, time, unordered-containers
+ }:
+ mkDerivation {
+ pname = "amazonka-devicefarm";
+ version = "1.4.3";
+ sha256 = "36ac89a5166ac8bf89d628b43ea7bd88e6624e9fedd6e7de2a7be5501a3d35cd";
+ libraryHaskellDepends = [ amazonka-core base ];
+ testHaskellDepends = [
+ amazonka-core amazonka-test base bytestring tasty tasty-hunit text
+ time unordered-containers
+ ];
homepage = "https://github.com/brendanhay/amazonka";
description = "Amazon Device Farm SDK";
license = "unknown";
@@ -28912,7 +29714,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "amazonka-directconnect" = callPackage
+ "amazonka-directconnect_1_4_2" = callPackage
({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
, tasty, tasty-hunit, text, time, unordered-containers
}:
@@ -28925,6 +29727,26 @@ self: {
amazonka-core amazonka-test base bytestring tasty tasty-hunit text
time unordered-containers
];
+ jailbreak = true;
+ homepage = "https://github.com/brendanhay/amazonka";
+ description = "Amazon Direct Connect SDK";
+ license = "unknown";
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "amazonka-directconnect" = callPackage
+ ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
+ , tasty, tasty-hunit, text, time, unordered-containers
+ }:
+ mkDerivation {
+ pname = "amazonka-directconnect";
+ version = "1.4.3";
+ sha256 = "96f67da0a8afb2013c84fc5650e700736711105b7924ce8f288f7f61ba133c7d";
+ libraryHaskellDepends = [ amazonka-core base ];
+ testHaskellDepends = [
+ amazonka-core amazonka-test base bytestring tasty tasty-hunit text
+ time unordered-containers
+ ];
homepage = "https://github.com/brendanhay/amazonka";
description = "Amazon Direct Connect SDK";
license = "unknown";
@@ -28937,8 +29759,8 @@ self: {
}:
mkDerivation {
pname = "amazonka-discovery";
- version = "1.4.2";
- sha256 = "89b5279777aaf404c6801efe126402ca8844f7329773c685ebdf3b9df0ed99ad";
+ version = "1.4.3";
+ sha256 = "bfe7c0601d44ca07c28171cb1def3eec5297fa690e6d005edeed4659ec49365f";
libraryHaskellDepends = [ amazonka-core base ];
testHaskellDepends = [
amazonka-core amazonka-test base bytestring tasty tasty-hunit text
@@ -28969,7 +29791,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "amazonka-dms" = callPackage
+ "amazonka-dms_1_4_2" = callPackage
({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
, tasty, tasty-hunit, text, time, unordered-containers
}:
@@ -28982,6 +29804,26 @@ self: {
amazonka-core amazonka-test base bytestring tasty tasty-hunit text
time unordered-containers
];
+ jailbreak = true;
+ homepage = "https://github.com/brendanhay/amazonka";
+ description = "Amazon Database Migration Service SDK";
+ license = "unknown";
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "amazonka-dms" = callPackage
+ ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
+ , tasty, tasty-hunit, text, time, unordered-containers
+ }:
+ mkDerivation {
+ pname = "amazonka-dms";
+ version = "1.4.3";
+ sha256 = "1714e72bc22176cab07ab9932cec4050e816c450afc3bf6a2810f3318066f8ff";
+ libraryHaskellDepends = [ amazonka-core base ];
+ testHaskellDepends = [
+ amazonka-core amazonka-test base bytestring tasty tasty-hunit text
+ time unordered-containers
+ ];
homepage = "https://github.com/brendanhay/amazonka";
description = "Amazon Database Migration Service SDK";
license = "unknown";
@@ -29028,7 +29870,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "amazonka-ds" = callPackage
+ "amazonka-ds_1_4_2" = callPackage
({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
, tasty, tasty-hunit, text, time, unordered-containers
}:
@@ -29041,6 +29883,26 @@ self: {
amazonka-core amazonka-test base bytestring tasty tasty-hunit text
time unordered-containers
];
+ jailbreak = true;
+ homepage = "https://github.com/brendanhay/amazonka";
+ description = "Amazon Directory Service SDK";
+ license = "unknown";
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "amazonka-ds" = callPackage
+ ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
+ , tasty, tasty-hunit, text, time, unordered-containers
+ }:
+ mkDerivation {
+ pname = "amazonka-ds";
+ version = "1.4.3";
+ sha256 = "d3433eb5c52093f2274055595174bda99e32eb3a4c4760811c22f9c0bbcfe700";
+ libraryHaskellDepends = [ amazonka-core base ];
+ testHaskellDepends = [
+ amazonka-core amazonka-test base bytestring tasty tasty-hunit text
+ time unordered-containers
+ ];
homepage = "https://github.com/brendanhay/amazonka";
description = "Amazon Directory Service SDK";
license = "unknown";
@@ -29129,7 +29991,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "amazonka-dynamodb" = callPackage
+ "amazonka-dynamodb_1_4_2" = callPackage
({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
, tasty, tasty-hunit, text, time, unordered-containers
}:
@@ -29142,6 +30004,26 @@ self: {
amazonka-core amazonka-test base bytestring tasty tasty-hunit text
time unordered-containers
];
+ jailbreak = true;
+ homepage = "https://github.com/brendanhay/amazonka";
+ description = "Amazon DynamoDB SDK";
+ license = "unknown";
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "amazonka-dynamodb" = callPackage
+ ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
+ , tasty, tasty-hunit, text, time, unordered-containers
+ }:
+ mkDerivation {
+ pname = "amazonka-dynamodb";
+ version = "1.4.3";
+ sha256 = "309d695e84fcf5fb2234031b5c650ae2d72ee9bb91bee1cc2522b95228e4d652";
+ libraryHaskellDepends = [ amazonka-core base ];
+ testHaskellDepends = [
+ amazonka-core amazonka-test base bytestring tasty tasty-hunit text
+ time unordered-containers
+ ];
homepage = "https://github.com/brendanhay/amazonka";
description = "Amazon DynamoDB SDK";
license = "unknown";
@@ -29188,7 +30070,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "amazonka-dynamodb-streams" = callPackage
+ "amazonka-dynamodb-streams_1_4_2" = callPackage
({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
, tasty, tasty-hunit, text, time, unordered-containers
}:
@@ -29201,6 +30083,26 @@ self: {
amazonka-core amazonka-test base bytestring tasty tasty-hunit text
time unordered-containers
];
+ jailbreak = true;
+ homepage = "https://github.com/brendanhay/amazonka";
+ description = "Amazon DynamoDB Streams SDK";
+ license = "unknown";
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "amazonka-dynamodb-streams" = callPackage
+ ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
+ , tasty, tasty-hunit, text, time, unordered-containers
+ }:
+ mkDerivation {
+ pname = "amazonka-dynamodb-streams";
+ version = "1.4.3";
+ sha256 = "61cc56bdbd831438d1daa1149106df1b1f5f0d8f6d8b20cbafcb4ad2869206c5";
+ libraryHaskellDepends = [ amazonka-core base ];
+ testHaskellDepends = [
+ amazonka-core amazonka-test base bytestring tasty tasty-hunit text
+ time unordered-containers
+ ];
homepage = "https://github.com/brendanhay/amazonka";
description = "Amazon DynamoDB Streams SDK";
license = "unknown";
@@ -29305,7 +30207,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "amazonka-ec2" = callPackage
+ "amazonka-ec2_1_4_2" = callPackage
({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
, tasty, tasty-hunit, text, time, unordered-containers
}:
@@ -29318,6 +30220,27 @@ self: {
amazonka-core amazonka-test base bytestring tasty tasty-hunit text
time unordered-containers
];
+ jailbreak = true;
+ doCheck = false;
+ homepage = "https://github.com/brendanhay/amazonka";
+ description = "Amazon Elastic Compute Cloud SDK";
+ license = "unknown";
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "amazonka-ec2" = callPackage
+ ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
+ , tasty, tasty-hunit, text, time, unordered-containers
+ }:
+ mkDerivation {
+ pname = "amazonka-ec2";
+ version = "1.4.3";
+ sha256 = "caeb98e701196d9350d44cd6b1f7b1f5790cc1c4bbbb30dd70824d025c7cc1b7";
+ libraryHaskellDepends = [ amazonka-core base ];
+ testHaskellDepends = [
+ amazonka-core amazonka-test base bytestring tasty tasty-hunit text
+ time unordered-containers
+ ];
doCheck = false;
homepage = "https://github.com/brendanhay/amazonka";
description = "Amazon Elastic Compute Cloud SDK";
@@ -29345,7 +30268,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "amazonka-ecr" = callPackage
+ "amazonka-ecr_1_4_2" = callPackage
({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
, tasty, tasty-hunit, text, time, unordered-containers
}:
@@ -29358,6 +30281,26 @@ self: {
amazonka-core amazonka-test base bytestring tasty tasty-hunit text
time unordered-containers
];
+ jailbreak = true;
+ homepage = "https://github.com/brendanhay/amazonka";
+ description = "Amazon EC2 Container Registry SDK";
+ license = "unknown";
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "amazonka-ecr" = callPackage
+ ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
+ , tasty, tasty-hunit, text, time, unordered-containers
+ }:
+ mkDerivation {
+ pname = "amazonka-ecr";
+ version = "1.4.3";
+ sha256 = "e9c1475c8eb4b89cafc7df8f2e8d6c4cff16b349db5407d014ef49726d7b1861";
+ libraryHaskellDepends = [ amazonka-core base ];
+ testHaskellDepends = [
+ amazonka-core amazonka-test base bytestring tasty tasty-hunit text
+ time unordered-containers
+ ];
homepage = "https://github.com/brendanhay/amazonka";
description = "Amazon EC2 Container Registry SDK";
license = "unknown";
@@ -29446,7 +30389,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "amazonka-ecs" = callPackage
+ "amazonka-ecs_1_4_2" = callPackage
({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
, tasty, tasty-hunit, text, time, unordered-containers
}:
@@ -29459,6 +30402,26 @@ self: {
amazonka-core amazonka-test base bytestring tasty tasty-hunit text
time unordered-containers
];
+ jailbreak = true;
+ homepage = "https://github.com/brendanhay/amazonka";
+ description = "Amazon EC2 Container Service SDK";
+ license = "unknown";
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "amazonka-ecs" = callPackage
+ ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
+ , tasty, tasty-hunit, text, time, unordered-containers
+ }:
+ mkDerivation {
+ pname = "amazonka-ecs";
+ version = "1.4.3";
+ sha256 = "4c10a7da68605f7a9656714cb134cf47d920b2aa02f0c38e0c06f8ddf9152471";
+ libraryHaskellDepends = [ amazonka-core base ];
+ testHaskellDepends = [
+ amazonka-core amazonka-test base bytestring tasty tasty-hunit text
+ time unordered-containers
+ ];
homepage = "https://github.com/brendanhay/amazonka";
description = "Amazon EC2 Container Service SDK";
license = "unknown";
@@ -29505,7 +30468,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "amazonka-efs" = callPackage
+ "amazonka-efs_1_4_2" = callPackage
({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
, tasty, tasty-hunit, text, time, unordered-containers
}:
@@ -29518,6 +30481,26 @@ self: {
amazonka-core amazonka-test base bytestring tasty tasty-hunit text
time unordered-containers
];
+ jailbreak = true;
+ homepage = "https://github.com/brendanhay/amazonka";
+ description = "Amazon Elastic File System SDK";
+ license = "unknown";
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "amazonka-efs" = callPackage
+ ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
+ , tasty, tasty-hunit, text, time, unordered-containers
+ }:
+ mkDerivation {
+ pname = "amazonka-efs";
+ version = "1.4.3";
+ sha256 = "c65054594451e774e1e9ad1fbfbf8a724dac86cbd4efa01aa5119d3d9f7a8301";
+ libraryHaskellDepends = [ amazonka-core base ];
+ testHaskellDepends = [
+ amazonka-core amazonka-test base bytestring tasty tasty-hunit text
+ time unordered-containers
+ ];
homepage = "https://github.com/brendanhay/amazonka";
description = "Amazon Elastic File System SDK";
license = "unknown";
@@ -29606,7 +30589,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "amazonka-elasticache" = callPackage
+ "amazonka-elasticache_1_4_2" = callPackage
({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
, tasty, tasty-hunit, text, time, unordered-containers
}:
@@ -29619,6 +30602,26 @@ self: {
amazonka-core amazonka-test base bytestring tasty tasty-hunit text
time unordered-containers
];
+ jailbreak = true;
+ homepage = "https://github.com/brendanhay/amazonka";
+ description = "Amazon ElastiCache SDK";
+ license = "unknown";
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "amazonka-elasticache" = callPackage
+ ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
+ , tasty, tasty-hunit, text, time, unordered-containers
+ }:
+ mkDerivation {
+ pname = "amazonka-elasticache";
+ version = "1.4.3";
+ sha256 = "673912e1f5db5762dd00da1312cc09e2265da0ac6a35d92ee2bbb6e88230f879";
+ libraryHaskellDepends = [ amazonka-core base ];
+ testHaskellDepends = [
+ amazonka-core amazonka-test base bytestring tasty tasty-hunit text
+ time unordered-containers
+ ];
homepage = "https://github.com/brendanhay/amazonka";
description = "Amazon ElastiCache SDK";
license = "unknown";
@@ -29707,7 +30710,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "amazonka-elasticbeanstalk" = callPackage
+ "amazonka-elasticbeanstalk_1_4_2" = callPackage
({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
, tasty, tasty-hunit, text, time, unordered-containers
}:
@@ -29720,6 +30723,26 @@ self: {
amazonka-core amazonka-test base bytestring tasty tasty-hunit text
time unordered-containers
];
+ jailbreak = true;
+ homepage = "https://github.com/brendanhay/amazonka";
+ description = "Amazon Elastic Beanstalk SDK";
+ license = "unknown";
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "amazonka-elasticbeanstalk" = callPackage
+ ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
+ , tasty, tasty-hunit, text, time, unordered-containers
+ }:
+ mkDerivation {
+ pname = "amazonka-elasticbeanstalk";
+ version = "1.4.3";
+ sha256 = "675730e477fcf3926605dc42bf08f3fba48f7272cc63cb5c845bb16c296fbd9b";
+ libraryHaskellDepends = [ amazonka-core base ];
+ testHaskellDepends = [
+ amazonka-core amazonka-test base bytestring tasty tasty-hunit text
+ time unordered-containers
+ ];
homepage = "https://github.com/brendanhay/amazonka";
description = "Amazon Elastic Beanstalk SDK";
license = "unknown";
@@ -29766,7 +30789,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "amazonka-elasticsearch" = callPackage
+ "amazonka-elasticsearch_1_4_2" = callPackage
({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
, tasty, tasty-hunit, text, time, unordered-containers
}:
@@ -29779,6 +30802,26 @@ self: {
amazonka-core amazonka-test base bytestring tasty tasty-hunit text
time unordered-containers
];
+ jailbreak = true;
+ homepage = "https://github.com/brendanhay/amazonka";
+ description = "Amazon Elasticsearch Service SDK";
+ license = "unknown";
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "amazonka-elasticsearch" = callPackage
+ ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
+ , tasty, tasty-hunit, text, time, unordered-containers
+ }:
+ mkDerivation {
+ pname = "amazonka-elasticsearch";
+ version = "1.4.3";
+ sha256 = "9e7b1911946ce7a0df8c7ef13277f32a06a26e2a7a6334b3d1514cf089d014d5";
+ libraryHaskellDepends = [ amazonka-core base ];
+ testHaskellDepends = [
+ amazonka-core amazonka-test base bytestring tasty tasty-hunit text
+ time unordered-containers
+ ];
homepage = "https://github.com/brendanhay/amazonka";
description = "Amazon Elasticsearch Service SDK";
license = "unknown";
@@ -29867,7 +30910,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "amazonka-elastictranscoder" = callPackage
+ "amazonka-elastictranscoder_1_4_2" = callPackage
({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
, tasty, tasty-hunit, text, time, unordered-containers
}:
@@ -29880,6 +30923,26 @@ self: {
amazonka-core amazonka-test base bytestring tasty tasty-hunit text
time unordered-containers
];
+ jailbreak = true;
+ homepage = "https://github.com/brendanhay/amazonka";
+ description = "Amazon Elastic Transcoder SDK";
+ license = "unknown";
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "amazonka-elastictranscoder" = callPackage
+ ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
+ , tasty, tasty-hunit, text, time, unordered-containers
+ }:
+ mkDerivation {
+ pname = "amazonka-elastictranscoder";
+ version = "1.4.3";
+ sha256 = "9a5d534e54f5421a37103b4117d07bcf16eb241a0bd153457037f1f83ccb8b2f";
+ libraryHaskellDepends = [ amazonka-core base ];
+ testHaskellDepends = [
+ amazonka-core amazonka-test base bytestring tasty tasty-hunit text
+ time unordered-containers
+ ];
homepage = "https://github.com/brendanhay/amazonka";
description = "Amazon Elastic Transcoder SDK";
license = "unknown";
@@ -29968,7 +31031,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "amazonka-elb" = callPackage
+ "amazonka-elb_1_4_2" = callPackage
({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
, tasty, tasty-hunit, text, time, unordered-containers
}:
@@ -29981,6 +31044,26 @@ self: {
amazonka-core amazonka-test base bytestring tasty tasty-hunit text
time unordered-containers
];
+ jailbreak = true;
+ homepage = "https://github.com/brendanhay/amazonka";
+ description = "Amazon Elastic Load Balancing SDK";
+ license = "unknown";
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "amazonka-elb" = callPackage
+ ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
+ , tasty, tasty-hunit, text, time, unordered-containers
+ }:
+ mkDerivation {
+ pname = "amazonka-elb";
+ version = "1.4.3";
+ sha256 = "81fae99dff50a8feb54150afdb5ef6a06b1be57b6d46957e37c503a730bd2d56";
+ libraryHaskellDepends = [ amazonka-core base ];
+ testHaskellDepends = [
+ amazonka-core amazonka-test base bytestring tasty tasty-hunit text
+ time unordered-containers
+ ];
homepage = "https://github.com/brendanhay/amazonka";
description = "Amazon Elastic Load Balancing SDK";
license = "unknown";
@@ -30069,7 +31152,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "amazonka-emr" = callPackage
+ "amazonka-emr_1_4_2" = callPackage
({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
, tasty, tasty-hunit, text, time, unordered-containers
}:
@@ -30082,6 +31165,26 @@ self: {
amazonka-core amazonka-test base bytestring tasty tasty-hunit text
time unordered-containers
];
+ jailbreak = true;
+ homepage = "https://github.com/brendanhay/amazonka";
+ description = "Amazon Elastic MapReduce SDK";
+ license = "unknown";
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "amazonka-emr" = callPackage
+ ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
+ , tasty, tasty-hunit, text, time, unordered-containers
+ }:
+ mkDerivation {
+ pname = "amazonka-emr";
+ version = "1.4.3";
+ sha256 = "b31ab69a06ea6ba585a89c133a78ed0ea2cb89faa9e2a04b6d12228167fa8e75";
+ libraryHaskellDepends = [ amazonka-core base ];
+ testHaskellDepends = [
+ amazonka-core amazonka-test base bytestring tasty tasty-hunit text
+ time unordered-containers
+ ];
homepage = "https://github.com/brendanhay/amazonka";
description = "Amazon Elastic MapReduce SDK";
license = "unknown";
@@ -30108,7 +31211,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "amazonka-gamelift" = callPackage
+ "amazonka-gamelift_1_4_2" = callPackage
({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
, tasty, tasty-hunit, text, time, unordered-containers
}:
@@ -30121,6 +31224,26 @@ self: {
amazonka-core amazonka-test base bytestring tasty tasty-hunit text
time unordered-containers
];
+ jailbreak = true;
+ homepage = "https://github.com/brendanhay/amazonka";
+ description = "Amazon GameLift SDK";
+ license = "unknown";
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "amazonka-gamelift" = callPackage
+ ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
+ , tasty, tasty-hunit, text, time, unordered-containers
+ }:
+ mkDerivation {
+ pname = "amazonka-gamelift";
+ version = "1.4.3";
+ sha256 = "c7fa8f5e3d83a6c1b2848676e270534dac9c8084d702abcd2edc79b603766429";
+ libraryHaskellDepends = [ amazonka-core base ];
+ testHaskellDepends = [
+ amazonka-core amazonka-test base bytestring tasty tasty-hunit text
+ time unordered-containers
+ ];
homepage = "https://github.com/brendanhay/amazonka";
description = "Amazon GameLift SDK";
license = "unknown";
@@ -30209,7 +31332,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "amazonka-glacier" = callPackage
+ "amazonka-glacier_1_4_2" = callPackage
({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
, tasty, tasty-hunit, text, time, unordered-containers
}:
@@ -30222,6 +31345,26 @@ self: {
amazonka-core amazonka-test base bytestring tasty tasty-hunit text
time unordered-containers
];
+ jailbreak = true;
+ homepage = "https://github.com/brendanhay/amazonka";
+ description = "Amazon Glacier SDK";
+ license = "unknown";
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "amazonka-glacier" = callPackage
+ ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
+ , tasty, tasty-hunit, text, time, unordered-containers
+ }:
+ mkDerivation {
+ pname = "amazonka-glacier";
+ version = "1.4.3";
+ sha256 = "dddfa10e13eceba289a534fa6f7accd2969c8c6cc06b967e5bf35604c6738bec";
+ libraryHaskellDepends = [ amazonka-core base ];
+ testHaskellDepends = [
+ amazonka-core amazonka-test base bytestring tasty tasty-hunit text
+ time unordered-containers
+ ];
homepage = "https://github.com/brendanhay/amazonka";
description = "Amazon Glacier SDK";
license = "unknown";
@@ -30310,7 +31453,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "amazonka-iam" = callPackage
+ "amazonka-iam_1_4_2" = callPackage
({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
, tasty, tasty-hunit, text, time, unordered-containers
}:
@@ -30323,6 +31466,26 @@ self: {
amazonka-core amazonka-test base bytestring tasty tasty-hunit text
time unordered-containers
];
+ jailbreak = true;
+ homepage = "https://github.com/brendanhay/amazonka";
+ description = "Amazon Identity and Access Management SDK";
+ license = "unknown";
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "amazonka-iam" = callPackage
+ ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
+ , tasty, tasty-hunit, text, time, unordered-containers
+ }:
+ mkDerivation {
+ pname = "amazonka-iam";
+ version = "1.4.3";
+ sha256 = "4208dcc7e9f4a5c351246d4c33f7215079dad2325e0e894186284d86c8243734";
+ libraryHaskellDepends = [ amazonka-core base ];
+ testHaskellDepends = [
+ amazonka-core amazonka-test base bytestring tasty tasty-hunit text
+ time unordered-containers
+ ];
homepage = "https://github.com/brendanhay/amazonka";
description = "Amazon Identity and Access Management SDK";
license = "unknown";
@@ -30411,7 +31574,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "amazonka-importexport" = callPackage
+ "amazonka-importexport_1_4_2" = callPackage
({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
, tasty, tasty-hunit, text, time, unordered-containers
}:
@@ -30424,6 +31587,26 @@ self: {
amazonka-core amazonka-test base bytestring tasty tasty-hunit text
time unordered-containers
];
+ jailbreak = true;
+ homepage = "https://github.com/brendanhay/amazonka";
+ description = "Amazon Import/Export SDK";
+ license = "unknown";
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "amazonka-importexport" = callPackage
+ ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
+ , tasty, tasty-hunit, text, time, unordered-containers
+ }:
+ mkDerivation {
+ pname = "amazonka-importexport";
+ version = "1.4.3";
+ sha256 = "ce555f40f865c0ef4680b6fd2344927f86f44bc04cb4f97d8bdd47c18de3ca64";
+ libraryHaskellDepends = [ amazonka-core base ];
+ testHaskellDepends = [
+ amazonka-core amazonka-test base bytestring tasty tasty-hunit text
+ time unordered-containers
+ ];
homepage = "https://github.com/brendanhay/amazonka";
description = "Amazon Import/Export SDK";
license = "unknown";
@@ -30470,7 +31653,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "amazonka-inspector" = callPackage
+ "amazonka-inspector_1_4_2" = callPackage
({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
, tasty, tasty-hunit, text, time, unordered-containers
}:
@@ -30483,6 +31666,26 @@ self: {
amazonka-core amazonka-test base bytestring tasty tasty-hunit text
time unordered-containers
];
+ jailbreak = true;
+ homepage = "https://github.com/brendanhay/amazonka";
+ description = "Amazon Inspector SDK";
+ license = "unknown";
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "amazonka-inspector" = callPackage
+ ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
+ , tasty, tasty-hunit, text, time, unordered-containers
+ }:
+ mkDerivation {
+ pname = "amazonka-inspector";
+ version = "1.4.3";
+ sha256 = "0f54b9b7c5bf3317390e86e3351806116fc55dce8614f26c79af7bfed1bf28c8";
+ libraryHaskellDepends = [ amazonka-core base ];
+ testHaskellDepends = [
+ amazonka-core amazonka-test base bytestring tasty tasty-hunit text
+ time unordered-containers
+ ];
homepage = "https://github.com/brendanhay/amazonka";
description = "Amazon Inspector SDK";
license = "unknown";
@@ -30529,7 +31732,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "amazonka-iot" = callPackage
+ "amazonka-iot_1_4_2" = callPackage
({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
, tasty, tasty-hunit, text, time, unordered-containers
}:
@@ -30542,6 +31745,26 @@ self: {
amazonka-core amazonka-test base bytestring tasty tasty-hunit text
time unordered-containers
];
+ jailbreak = true;
+ homepage = "https://github.com/brendanhay/amazonka";
+ description = "Amazon IoT SDK";
+ license = "unknown";
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "amazonka-iot" = callPackage
+ ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
+ , tasty, tasty-hunit, text, time, unordered-containers
+ }:
+ mkDerivation {
+ pname = "amazonka-iot";
+ version = "1.4.3";
+ sha256 = "4b9f17daddab2f04f60d84109e8c78077bd1feae610f0053fbe7edf0317c3e91";
+ libraryHaskellDepends = [ amazonka-core base ];
+ testHaskellDepends = [
+ amazonka-core amazonka-test base bytestring tasty tasty-hunit text
+ time unordered-containers
+ ];
homepage = "https://github.com/brendanhay/amazonka";
description = "Amazon IoT SDK";
license = "unknown";
@@ -30588,7 +31811,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "amazonka-iot-dataplane" = callPackage
+ "amazonka-iot-dataplane_1_4_2" = callPackage
({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
, tasty, tasty-hunit, text, time, unordered-containers
}:
@@ -30601,6 +31824,26 @@ self: {
amazonka-core amazonka-test base bytestring tasty tasty-hunit text
time unordered-containers
];
+ jailbreak = true;
+ homepage = "https://github.com/brendanhay/amazonka";
+ description = "Amazon IoT Data Plane SDK";
+ license = "unknown";
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "amazonka-iot-dataplane" = callPackage
+ ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
+ , tasty, tasty-hunit, text, time, unordered-containers
+ }:
+ mkDerivation {
+ pname = "amazonka-iot-dataplane";
+ version = "1.4.3";
+ sha256 = "2c3ef08bc6a294591f029a7189a35acf5cbd9bc332f1f3f8f94cca0a8e9a5b96";
+ libraryHaskellDepends = [ amazonka-core base ];
+ testHaskellDepends = [
+ amazonka-core amazonka-test base bytestring tasty tasty-hunit text
+ time unordered-containers
+ ];
homepage = "https://github.com/brendanhay/amazonka";
description = "Amazon IoT Data Plane SDK";
license = "unknown";
@@ -30689,7 +31932,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "amazonka-kinesis" = callPackage
+ "amazonka-kinesis_1_4_2" = callPackage
({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
, tasty, tasty-hunit, text, time, unordered-containers
}:
@@ -30702,6 +31945,26 @@ self: {
amazonka-core amazonka-test base bytestring tasty tasty-hunit text
time unordered-containers
];
+ jailbreak = true;
+ homepage = "https://github.com/brendanhay/amazonka";
+ description = "Amazon Kinesis SDK";
+ license = "unknown";
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "amazonka-kinesis" = callPackage
+ ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
+ , tasty, tasty-hunit, text, time, unordered-containers
+ }:
+ mkDerivation {
+ pname = "amazonka-kinesis";
+ version = "1.4.3";
+ sha256 = "6b9f597488893470ef9914857ec3e593aea3a41b2c69794d95065ce3e332e812";
+ libraryHaskellDepends = [ amazonka-core base ];
+ testHaskellDepends = [
+ amazonka-core amazonka-test base bytestring tasty tasty-hunit text
+ time unordered-containers
+ ];
homepage = "https://github.com/brendanhay/amazonka";
description = "Amazon Kinesis SDK";
license = "unknown";
@@ -30748,7 +32011,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "amazonka-kinesis-firehose" = callPackage
+ "amazonka-kinesis-firehose_1_4_2" = callPackage
({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
, tasty, tasty-hunit, text, time, unordered-containers
}:
@@ -30761,6 +32024,26 @@ self: {
amazonka-core amazonka-test base bytestring tasty tasty-hunit text
time unordered-containers
];
+ jailbreak = true;
+ homepage = "https://github.com/brendanhay/amazonka";
+ description = "Amazon Kinesis Firehose SDK";
+ license = "unknown";
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "amazonka-kinesis-firehose" = callPackage
+ ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
+ , tasty, tasty-hunit, text, time, unordered-containers
+ }:
+ mkDerivation {
+ pname = "amazonka-kinesis-firehose";
+ version = "1.4.3";
+ sha256 = "2add7d8f8b27cbc339c473244007683d7ceab6caa00258c9030ed8983d16853a";
+ libraryHaskellDepends = [ amazonka-core base ];
+ testHaskellDepends = [
+ amazonka-core amazonka-test base bytestring tasty tasty-hunit text
+ time unordered-containers
+ ];
homepage = "https://github.com/brendanhay/amazonka";
description = "Amazon Kinesis Firehose SDK";
license = "unknown";
@@ -30849,7 +32132,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "amazonka-kms" = callPackage
+ "amazonka-kms_1_4_2" = callPackage
({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
, tasty, tasty-hunit, text, time, unordered-containers
}:
@@ -30862,6 +32145,26 @@ self: {
amazonka-core amazonka-test base bytestring tasty tasty-hunit text
time unordered-containers
];
+ jailbreak = true;
+ homepage = "https://github.com/brendanhay/amazonka";
+ description = "Amazon Key Management Service SDK";
+ license = "unknown";
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "amazonka-kms" = callPackage
+ ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
+ , tasty, tasty-hunit, text, time, unordered-containers
+ }:
+ mkDerivation {
+ pname = "amazonka-kms";
+ version = "1.4.3";
+ sha256 = "933a098970511c03b72698138329350ac722dd84dbd3fc76b49e2eb5504a73ed";
+ libraryHaskellDepends = [ amazonka-core base ];
+ testHaskellDepends = [
+ amazonka-core amazonka-test base bytestring tasty tasty-hunit text
+ time unordered-containers
+ ];
homepage = "https://github.com/brendanhay/amazonka";
description = "Amazon Key Management Service SDK";
license = "unknown";
@@ -30950,7 +32253,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "amazonka-lambda" = callPackage
+ "amazonka-lambda_1_4_2" = callPackage
({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
, tasty, tasty-hunit, text, time, unordered-containers
}:
@@ -30963,6 +32266,26 @@ self: {
amazonka-core amazonka-test base bytestring tasty tasty-hunit text
time unordered-containers
];
+ jailbreak = true;
+ homepage = "https://github.com/brendanhay/amazonka";
+ description = "Amazon Lambda SDK";
+ license = "unknown";
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "amazonka-lambda" = callPackage
+ ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
+ , tasty, tasty-hunit, text, time, unordered-containers
+ }:
+ mkDerivation {
+ pname = "amazonka-lambda";
+ version = "1.4.3";
+ sha256 = "4ed68d68eaa379b41f0ccf4ef82981687bd029fea84b544a0137ce0408d01787";
+ libraryHaskellDepends = [ amazonka-core base ];
+ testHaskellDepends = [
+ amazonka-core amazonka-test base bytestring tasty tasty-hunit text
+ time unordered-containers
+ ];
homepage = "https://github.com/brendanhay/amazonka";
description = "Amazon Lambda SDK";
license = "unknown";
@@ -31009,7 +32332,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "amazonka-marketplace-analytics" = callPackage
+ "amazonka-marketplace-analytics_1_4_2" = callPackage
({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
, tasty, tasty-hunit, text, time, unordered-containers
}:
@@ -31022,6 +32345,26 @@ self: {
amazonka-core amazonka-test base bytestring tasty tasty-hunit text
time unordered-containers
];
+ jailbreak = true;
+ homepage = "https://github.com/brendanhay/amazonka";
+ description = "Amazon Marketplace Commerce Analytics SDK";
+ license = "unknown";
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "amazonka-marketplace-analytics" = callPackage
+ ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
+ , tasty, tasty-hunit, text, time, unordered-containers
+ }:
+ mkDerivation {
+ pname = "amazonka-marketplace-analytics";
+ version = "1.4.3";
+ sha256 = "cca9bd6001747c33714601b7b9cc85623e179e99f67e05e04d38be340d80dec7";
+ libraryHaskellDepends = [ amazonka-core base ];
+ testHaskellDepends = [
+ amazonka-core amazonka-test base bytestring tasty tasty-hunit text
+ time unordered-containers
+ ];
homepage = "https://github.com/brendanhay/amazonka";
description = "Amazon Marketplace Commerce Analytics SDK";
license = "unknown";
@@ -31048,7 +32391,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "amazonka-marketplace-metering" = callPackage
+ "amazonka-marketplace-metering_1_4_2" = callPackage
({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
, tasty, tasty-hunit, text, time, unordered-containers
}:
@@ -31061,6 +32404,26 @@ self: {
amazonka-core amazonka-test base bytestring tasty tasty-hunit text
time unordered-containers
];
+ jailbreak = true;
+ homepage = "https://github.com/brendanhay/amazonka";
+ description = "Amazon Marketplace Metering SDK";
+ license = "unknown";
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "amazonka-marketplace-metering" = callPackage
+ ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
+ , tasty, tasty-hunit, text, time, unordered-containers
+ }:
+ mkDerivation {
+ pname = "amazonka-marketplace-metering";
+ version = "1.4.3";
+ sha256 = "577270b944784ea27d8cc0e911757c5a5fe18657892d2862e5e20e3e64b37a21";
+ libraryHaskellDepends = [ amazonka-core base ];
+ testHaskellDepends = [
+ amazonka-core amazonka-test base bytestring tasty tasty-hunit text
+ time unordered-containers
+ ];
homepage = "https://github.com/brendanhay/amazonka";
description = "Amazon Marketplace Metering SDK";
license = "unknown";
@@ -31121,7 +32484,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "amazonka-ml" = callPackage
+ "amazonka-ml_1_4_2" = callPackage
({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
, tasty, tasty-hunit, text, time, unordered-containers
}:
@@ -31134,6 +32497,26 @@ self: {
amazonka-core amazonka-test base bytestring tasty tasty-hunit text
time unordered-containers
];
+ jailbreak = true;
+ homepage = "https://github.com/brendanhay/amazonka";
+ description = "Amazon Machine Learning SDK";
+ license = "unknown";
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "amazonka-ml" = callPackage
+ ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
+ , tasty, tasty-hunit, text, time, unordered-containers
+ }:
+ mkDerivation {
+ pname = "amazonka-ml";
+ version = "1.4.3";
+ sha256 = "dd5731a2df42ecb1d07968436ed27c1a72b61a3e1b5a3b7c8c04d38ed9ada4dd";
+ libraryHaskellDepends = [ amazonka-core base ];
+ testHaskellDepends = [
+ amazonka-core amazonka-test base bytestring tasty tasty-hunit text
+ time unordered-containers
+ ];
homepage = "https://github.com/brendanhay/amazonka";
description = "Amazon Machine Learning SDK";
license = "unknown";
@@ -31222,7 +32605,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "amazonka-opsworks" = callPackage
+ "amazonka-opsworks_1_4_2" = callPackage
({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
, tasty, tasty-hunit, text, time, unordered-containers
}:
@@ -31235,6 +32618,26 @@ self: {
amazonka-core amazonka-test base bytestring tasty tasty-hunit text
time unordered-containers
];
+ jailbreak = true;
+ homepage = "https://github.com/brendanhay/amazonka";
+ description = "Amazon OpsWorks SDK";
+ license = "unknown";
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "amazonka-opsworks" = callPackage
+ ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
+ , tasty, tasty-hunit, text, time, unordered-containers
+ }:
+ mkDerivation {
+ pname = "amazonka-opsworks";
+ version = "1.4.3";
+ sha256 = "8a3844b702d7d68e7f26b8a886e3c4ca3984b6f2522c13f0e7c5174f2e8ef273";
+ libraryHaskellDepends = [ amazonka-core base ];
+ testHaskellDepends = [
+ amazonka-core amazonka-test base bytestring tasty tasty-hunit text
+ time unordered-containers
+ ];
homepage = "https://github.com/brendanhay/amazonka";
description = "Amazon OpsWorks SDK";
license = "unknown";
@@ -31323,7 +32726,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "amazonka-rds" = callPackage
+ "amazonka-rds_1_4_2" = callPackage
({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
, tasty, tasty-hunit, text, time, unordered-containers
}:
@@ -31336,6 +32739,26 @@ self: {
amazonka-core amazonka-test base bytestring tasty tasty-hunit text
time unordered-containers
];
+ jailbreak = true;
+ homepage = "https://github.com/brendanhay/amazonka";
+ description = "Amazon Relational Database Service SDK";
+ license = "unknown";
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "amazonka-rds" = callPackage
+ ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
+ , tasty, tasty-hunit, text, time, unordered-containers
+ }:
+ mkDerivation {
+ pname = "amazonka-rds";
+ version = "1.4.3";
+ sha256 = "4d58e361bdc88245b71e718edace7f2a360fecb7bf243a61d0eac1424abf2acf";
+ libraryHaskellDepends = [ amazonka-core base ];
+ testHaskellDepends = [
+ amazonka-core amazonka-test base bytestring tasty tasty-hunit text
+ time unordered-containers
+ ];
homepage = "https://github.com/brendanhay/amazonka";
description = "Amazon Relational Database Service SDK";
license = "unknown";
@@ -31424,7 +32847,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "amazonka-redshift" = callPackage
+ "amazonka-redshift_1_4_2" = callPackage
({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
, tasty, tasty-hunit, text, time, unordered-containers
}:
@@ -31437,6 +32860,26 @@ self: {
amazonka-core amazonka-test base bytestring tasty tasty-hunit text
time unordered-containers
];
+ jailbreak = true;
+ homepage = "https://github.com/brendanhay/amazonka";
+ description = "Amazon Redshift SDK";
+ license = "unknown";
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "amazonka-redshift" = callPackage
+ ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
+ , tasty, tasty-hunit, text, time, unordered-containers
+ }:
+ mkDerivation {
+ pname = "amazonka-redshift";
+ version = "1.4.3";
+ sha256 = "af9d7957c68c0e66cb1301b611bc196adaead8eb2b88210d369dc01ed377fe68";
+ libraryHaskellDepends = [ amazonka-core base ];
+ testHaskellDepends = [
+ amazonka-core amazonka-test base bytestring tasty tasty-hunit text
+ time unordered-containers
+ ];
homepage = "https://github.com/brendanhay/amazonka";
description = "Amazon Redshift SDK";
license = "unknown";
@@ -31539,7 +32982,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "amazonka-route53" = callPackage
+ "amazonka-route53_1_4_2" = callPackage
({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
, tasty, tasty-hunit, text, time, unordered-containers
}:
@@ -31552,6 +32995,26 @@ self: {
amazonka-core amazonka-test base bytestring tasty tasty-hunit text
time unordered-containers
];
+ jailbreak = true;
+ homepage = "https://github.com/brendanhay/amazonka";
+ description = "Amazon Route 53 SDK";
+ license = "unknown";
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "amazonka-route53" = callPackage
+ ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
+ , tasty, tasty-hunit, text, time, unordered-containers
+ }:
+ mkDerivation {
+ pname = "amazonka-route53";
+ version = "1.4.3";
+ sha256 = "a7fb42486f54b7e1b858edc907a57be656b20a2da8a08c982e3d8bf0c592b0cf";
+ libraryHaskellDepends = [ amazonka-core base ];
+ testHaskellDepends = [
+ amazonka-core amazonka-test base bytestring tasty tasty-hunit text
+ time unordered-containers
+ ];
homepage = "https://github.com/brendanhay/amazonka";
description = "Amazon Route 53 SDK";
license = "unknown";
@@ -31640,7 +33103,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "amazonka-route53-domains" = callPackage
+ "amazonka-route53-domains_1_4_2" = callPackage
({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
, tasty, tasty-hunit, text, time, unordered-containers
}:
@@ -31653,6 +33116,26 @@ self: {
amazonka-core amazonka-test base bytestring tasty tasty-hunit text
time unordered-containers
];
+ jailbreak = true;
+ homepage = "https://github.com/brendanhay/amazonka";
+ description = "Amazon Route 53 Domains SDK";
+ license = "unknown";
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "amazonka-route53-domains" = callPackage
+ ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
+ , tasty, tasty-hunit, text, time, unordered-containers
+ }:
+ mkDerivation {
+ pname = "amazonka-route53-domains";
+ version = "1.4.3";
+ sha256 = "1a773fc3c18faa770874fc708ff0cb6b7150a09836c3a9c6332b9d222a4fe18b";
+ libraryHaskellDepends = [ amazonka-core base ];
+ testHaskellDepends = [
+ amazonka-core amazonka-test base bytestring tasty tasty-hunit text
+ time unordered-containers
+ ];
homepage = "https://github.com/brendanhay/amazonka";
description = "Amazon Route 53 Domains SDK";
license = "unknown";
@@ -31743,7 +33226,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "amazonka-s3" = callPackage
+ "amazonka-s3_1_4_2" = callPackage
({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
, lens, tasty, tasty-hunit, text, time, unordered-containers
}:
@@ -31756,6 +33239,27 @@ self: {
amazonka-core amazonka-test base bytestring tasty tasty-hunit text
time unordered-containers
];
+ jailbreak = true;
+ doCheck = false;
+ homepage = "https://github.com/brendanhay/amazonka";
+ description = "Amazon Simple Storage Service SDK";
+ license = "unknown";
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "amazonka-s3" = callPackage
+ ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
+ , lens, tasty, tasty-hunit, text, time, unordered-containers
+ }:
+ mkDerivation {
+ pname = "amazonka-s3";
+ version = "1.4.3";
+ sha256 = "9ed6c9e7675e99a545a84ac2c979a7542ecd898dd6e4c2fbbbba2c4a40d8fc50";
+ libraryHaskellDepends = [ amazonka-core base lens text ];
+ testHaskellDepends = [
+ amazonka-core amazonka-test base bytestring tasty tasty-hunit text
+ time unordered-containers
+ ];
doCheck = false;
homepage = "https://github.com/brendanhay/amazonka";
description = "Amazon Simple Storage Service SDK";
@@ -31845,7 +33349,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "amazonka-sdb" = callPackage
+ "amazonka-sdb_1_4_2" = callPackage
({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
, tasty, tasty-hunit, text, time, unordered-containers
}:
@@ -31858,6 +33362,26 @@ self: {
amazonka-core amazonka-test base bytestring tasty tasty-hunit text
time unordered-containers
];
+ jailbreak = true;
+ homepage = "https://github.com/brendanhay/amazonka";
+ description = "Amazon SimpleDB SDK";
+ license = "unknown";
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "amazonka-sdb" = callPackage
+ ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
+ , tasty, tasty-hunit, text, time, unordered-containers
+ }:
+ mkDerivation {
+ pname = "amazonka-sdb";
+ version = "1.4.3";
+ sha256 = "7fac8b39c2210e09d1ef15f7c964b64397c1b6165638c92f4069be8002ebf1d3";
+ libraryHaskellDepends = [ amazonka-core base ];
+ testHaskellDepends = [
+ amazonka-core amazonka-test base bytestring tasty tasty-hunit text
+ time unordered-containers
+ ];
homepage = "https://github.com/brendanhay/amazonka";
description = "Amazon SimpleDB SDK";
license = "unknown";
@@ -31946,7 +33470,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "amazonka-ses" = callPackage
+ "amazonka-ses_1_4_2" = callPackage
({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
, tasty, tasty-hunit, text, time, unordered-containers
}:
@@ -31959,6 +33483,26 @@ self: {
amazonka-core amazonka-test base bytestring tasty tasty-hunit text
time unordered-containers
];
+ jailbreak = true;
+ homepage = "https://github.com/brendanhay/amazonka";
+ description = "Amazon Simple Email Service SDK";
+ license = "unknown";
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "amazonka-ses" = callPackage
+ ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
+ , tasty, tasty-hunit, text, time, unordered-containers
+ }:
+ mkDerivation {
+ pname = "amazonka-ses";
+ version = "1.4.3";
+ sha256 = "2ccab07f3c08d9145c2bc936048e5f973532871f1a366e0111a2bf70973d96a2";
+ libraryHaskellDepends = [ amazonka-core base ];
+ testHaskellDepends = [
+ amazonka-core amazonka-test base bytestring tasty tasty-hunit text
+ time unordered-containers
+ ];
homepage = "https://github.com/brendanhay/amazonka";
description = "Amazon Simple Email Service SDK";
license = "unknown";
@@ -32047,7 +33591,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "amazonka-sns" = callPackage
+ "amazonka-sns_1_4_2" = callPackage
({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
, tasty, tasty-hunit, text, time, unordered-containers
}:
@@ -32060,6 +33604,26 @@ self: {
amazonka-core amazonka-test base bytestring tasty tasty-hunit text
time unordered-containers
];
+ jailbreak = true;
+ homepage = "https://github.com/brendanhay/amazonka";
+ description = "Amazon Simple Notification Service SDK";
+ license = "unknown";
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "amazonka-sns" = callPackage
+ ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
+ , tasty, tasty-hunit, text, time, unordered-containers
+ }:
+ mkDerivation {
+ pname = "amazonka-sns";
+ version = "1.4.3";
+ sha256 = "681335a9d385af666d5c895b982fb757fa65862a0047d3a498d544f6d136544a";
+ libraryHaskellDepends = [ amazonka-core base ];
+ testHaskellDepends = [
+ amazonka-core amazonka-test base bytestring tasty tasty-hunit text
+ time unordered-containers
+ ];
homepage = "https://github.com/brendanhay/amazonka";
description = "Amazon Simple Notification Service SDK";
license = "unknown";
@@ -32148,7 +33712,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "amazonka-sqs" = callPackage
+ "amazonka-sqs_1_4_2" = callPackage
({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
, tasty, tasty-hunit, text, time, unordered-containers
}:
@@ -32161,6 +33725,26 @@ self: {
amazonka-core amazonka-test base bytestring tasty tasty-hunit text
time unordered-containers
];
+ jailbreak = true;
+ homepage = "https://github.com/brendanhay/amazonka";
+ description = "Amazon Simple Queue Service SDK";
+ license = "unknown";
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "amazonka-sqs" = callPackage
+ ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
+ , tasty, tasty-hunit, text, time, unordered-containers
+ }:
+ mkDerivation {
+ pname = "amazonka-sqs";
+ version = "1.4.3";
+ sha256 = "2e94eaab5fc5c9a4471bfe834ccf975c1776b268cb291281740db62148825ece";
+ libraryHaskellDepends = [ amazonka-core base ];
+ testHaskellDepends = [
+ amazonka-core amazonka-test base bytestring tasty tasty-hunit text
+ time unordered-containers
+ ];
homepage = "https://github.com/brendanhay/amazonka";
description = "Amazon Simple Queue Service SDK";
license = "unknown";
@@ -32249,7 +33833,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "amazonka-ssm" = callPackage
+ "amazonka-ssm_1_4_2" = callPackage
({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
, tasty, tasty-hunit, text, time, unordered-containers
}:
@@ -32262,6 +33846,26 @@ self: {
amazonka-core amazonka-test base bytestring tasty tasty-hunit text
time unordered-containers
];
+ jailbreak = true;
+ homepage = "https://github.com/brendanhay/amazonka";
+ description = "Amazon Simple Systems Management Service SDK";
+ license = "unknown";
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "amazonka-ssm" = callPackage
+ ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
+ , tasty, tasty-hunit, text, time, unordered-containers
+ }:
+ mkDerivation {
+ pname = "amazonka-ssm";
+ version = "1.4.3";
+ sha256 = "260a3e4178f48f4df2bb2574809ac7c81c7208fa9d77225c6101844bb21c38c1";
+ libraryHaskellDepends = [ amazonka-core base ];
+ testHaskellDepends = [
+ amazonka-core amazonka-test base bytestring tasty tasty-hunit text
+ time unordered-containers
+ ];
homepage = "https://github.com/brendanhay/amazonka";
description = "Amazon Simple Systems Management Service SDK";
license = "unknown";
@@ -32350,7 +33954,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "amazonka-storagegateway" = callPackage
+ "amazonka-storagegateway_1_4_2" = callPackage
({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
, tasty, tasty-hunit, text, time, unordered-containers
}:
@@ -32363,6 +33967,26 @@ self: {
amazonka-core amazonka-test base bytestring tasty tasty-hunit text
time unordered-containers
];
+ jailbreak = true;
+ homepage = "https://github.com/brendanhay/amazonka";
+ description = "Amazon Storage Gateway SDK";
+ license = "unknown";
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "amazonka-storagegateway" = callPackage
+ ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
+ , tasty, tasty-hunit, text, time, unordered-containers
+ }:
+ mkDerivation {
+ pname = "amazonka-storagegateway";
+ version = "1.4.3";
+ sha256 = "5522fa5aa0bfed529b5b85385d2000aedf5b1c8fb5400bf280d4b131275b7b47";
+ libraryHaskellDepends = [ amazonka-core base ];
+ testHaskellDepends = [
+ amazonka-core amazonka-test base bytestring tasty tasty-hunit text
+ time unordered-containers
+ ];
homepage = "https://github.com/brendanhay/amazonka";
description = "Amazon Storage Gateway SDK";
license = "unknown";
@@ -32451,7 +34075,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "amazonka-sts" = callPackage
+ "amazonka-sts_1_4_2" = callPackage
({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
, tasty, tasty-hunit, text, time, unordered-containers
}:
@@ -32464,6 +34088,26 @@ self: {
amazonka-core amazonka-test base bytestring tasty tasty-hunit text
time unordered-containers
];
+ jailbreak = true;
+ homepage = "https://github.com/brendanhay/amazonka";
+ description = "Amazon Security Token Service SDK";
+ license = "unknown";
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "amazonka-sts" = callPackage
+ ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
+ , tasty, tasty-hunit, text, time, unordered-containers
+ }:
+ mkDerivation {
+ pname = "amazonka-sts";
+ version = "1.4.3";
+ sha256 = "d36e38218fe83a696c13dfef9362028cb23f73b96fb468bb9b809ef69598606c";
+ libraryHaskellDepends = [ amazonka-core base ];
+ testHaskellDepends = [
+ amazonka-core amazonka-test base bytestring tasty tasty-hunit text
+ time unordered-containers
+ ];
homepage = "https://github.com/brendanhay/amazonka";
description = "Amazon Security Token Service SDK";
license = "unknown";
@@ -32552,7 +34196,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "amazonka-support" = callPackage
+ "amazonka-support_1_4_2" = callPackage
({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
, tasty, tasty-hunit, text, time, unordered-containers
}:
@@ -32565,6 +34209,26 @@ self: {
amazonka-core amazonka-test base bytestring tasty tasty-hunit text
time unordered-containers
];
+ jailbreak = true;
+ homepage = "https://github.com/brendanhay/amazonka";
+ description = "Amazon Support SDK";
+ license = "unknown";
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "amazonka-support" = callPackage
+ ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
+ , tasty, tasty-hunit, text, time, unordered-containers
+ }:
+ mkDerivation {
+ pname = "amazonka-support";
+ version = "1.4.3";
+ sha256 = "d9acfb0d35f3c987dd534c0a59959cef44825facfc4665ba20bf286e4023d70f";
+ libraryHaskellDepends = [ amazonka-core base ];
+ testHaskellDepends = [
+ amazonka-core amazonka-test base bytestring tasty tasty-hunit text
+ time unordered-containers
+ ];
homepage = "https://github.com/brendanhay/amazonka";
description = "Amazon Support SDK";
license = "unknown";
@@ -32655,7 +34319,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "amazonka-swf" = callPackage
+ "amazonka-swf_1_4_2" = callPackage
({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
, tasty, tasty-hunit, text, time, unordered-containers
}:
@@ -32668,6 +34332,27 @@ self: {
amazonka-core amazonka-test base bytestring tasty tasty-hunit text
time unordered-containers
];
+ jailbreak = true;
+ doCheck = false;
+ homepage = "https://github.com/brendanhay/amazonka";
+ description = "Amazon Simple Workflow Service SDK";
+ license = "unknown";
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "amazonka-swf" = callPackage
+ ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
+ , tasty, tasty-hunit, text, time, unordered-containers
+ }:
+ mkDerivation {
+ pname = "amazonka-swf";
+ version = "1.4.3";
+ sha256 = "0443d02c23d93eca09f6b91ad7aa1e32ab02e6b92e0bb6595ab65ce5f13ab469";
+ libraryHaskellDepends = [ amazonka-core base ];
+ testHaskellDepends = [
+ amazonka-core amazonka-test base bytestring tasty tasty-hunit text
+ time unordered-containers
+ ];
doCheck = false;
homepage = "https://github.com/brendanhay/amazonka";
description = "Amazon Simple Workflow Service SDK";
@@ -32723,7 +34408,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "amazonka-test" = callPackage
+ "amazonka-test_1_4_2" = callPackage
({ mkDerivation, aeson, amazonka-core, base, bifunctors, bytestring
, case-insensitive, conduit, conduit-extra, groom, http-client
, http-types, process, resourcet, tasty, tasty-hunit
@@ -32740,6 +34425,30 @@ self: {
resourcet tasty tasty-hunit template-haskell temporary text time
unordered-containers yaml
];
+ jailbreak = true;
+ homepage = "https://github.com/brendanhay/amazonka";
+ description = "Common functionality for Amazonka library test-suites";
+ license = "unknown";
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "amazonka-test" = callPackage
+ ({ mkDerivation, aeson, amazonka-core, base, bifunctors, bytestring
+ , case-insensitive, conduit, conduit-extra, groom, http-client
+ , http-types, process, resourcet, tasty, tasty-hunit
+ , template-haskell, temporary, text, time, unordered-containers
+ , yaml
+ }:
+ mkDerivation {
+ pname = "amazonka-test";
+ version = "1.4.3";
+ sha256 = "10310abf1036afb3f2ea688b300d738700f780a2459a10f306b1bedff9019d9b";
+ libraryHaskellDepends = [
+ aeson amazonka-core base bifunctors bytestring case-insensitive
+ conduit conduit-extra groom http-client http-types process
+ resourcet tasty tasty-hunit template-haskell temporary text time
+ unordered-containers yaml
+ ];
homepage = "https://github.com/brendanhay/amazonka";
description = "Common functionality for Amazonka library test-suites";
license = "unknown";
@@ -32786,7 +34495,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "amazonka-waf" = callPackage
+ "amazonka-waf_1_4_2" = callPackage
({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
, tasty, tasty-hunit, text, time, unordered-containers
}:
@@ -32799,6 +34508,26 @@ self: {
amazonka-core amazonka-test base bytestring tasty tasty-hunit text
time unordered-containers
];
+ jailbreak = true;
+ homepage = "https://github.com/brendanhay/amazonka";
+ description = "Amazon WAF SDK";
+ license = "unknown";
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "amazonka-waf" = callPackage
+ ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
+ , tasty, tasty-hunit, text, time, unordered-containers
+ }:
+ mkDerivation {
+ pname = "amazonka-waf";
+ version = "1.4.3";
+ sha256 = "7e9c9d7ca82c8d1e95e7aabf696980040f8644d96c011438e06c51dd41655a85";
+ libraryHaskellDepends = [ amazonka-core base ];
+ testHaskellDepends = [
+ amazonka-core amazonka-test base bytestring tasty tasty-hunit text
+ time unordered-containers
+ ];
homepage = "https://github.com/brendanhay/amazonka";
description = "Amazon WAF SDK";
license = "unknown";
@@ -32859,7 +34588,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "amazonka-workspaces" = callPackage
+ "amazonka-workspaces_1_4_2" = callPackage
({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
, tasty, tasty-hunit, text, time, unordered-containers
}:
@@ -32872,6 +34601,26 @@ self: {
amazonka-core amazonka-test base bytestring tasty tasty-hunit text
time unordered-containers
];
+ jailbreak = true;
+ homepage = "https://github.com/brendanhay/amazonka";
+ description = "Amazon WorkSpaces SDK";
+ license = "unknown";
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "amazonka-workspaces" = callPackage
+ ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
+ , tasty, tasty-hunit, text, time, unordered-containers
+ }:
+ mkDerivation {
+ pname = "amazonka-workspaces";
+ version = "1.4.3";
+ sha256 = "61828d17aec286062dd453e69b730e180a651f59387c7355872d1cae47805d78";
+ libraryHaskellDepends = [ amazonka-core base ];
+ testHaskellDepends = [
+ amazonka-core amazonka-test base bytestring tasty tasty-hunit text
+ time unordered-containers
+ ];
homepage = "https://github.com/brendanhay/amazonka";
description = "Amazon WorkSpaces SDK";
license = "unknown";
@@ -33028,7 +34777,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "amqp" = callPackage
+ "amqp_0_13_1" = callPackage
({ mkDerivation, base, binary, bytestring, clock, connection
, containers, data-binary-ieee754, hspec, hspec-expectations
, monad-control, network, network-uri, split, stm, text, vector
@@ -33055,6 +34804,36 @@ self: {
homepage = "https://github.com/hreinhardt/amqp";
description = "Client library for AMQP servers (currently only RabbitMQ)";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "amqp" = callPackage
+ ({ mkDerivation, base, binary, bytestring, clock, connection
+ , containers, data-binary-ieee754, hspec, hspec-expectations
+ , monad-control, network, network-uri, split, stm, text, vector
+ , xml
+ }:
+ mkDerivation {
+ pname = "amqp";
+ version = "0.14.0";
+ sha256 = "32d8c07217713e8aa97d79f07847ea147a657cd86292f0a0cc2dbbb62da35ab1";
+ isLibrary = true;
+ isExecutable = true;
+ libraryHaskellDepends = [
+ base binary bytestring clock connection containers
+ data-binary-ieee754 monad-control network network-uri split stm
+ text vector
+ ];
+ executableHaskellDepends = [ base containers xml ];
+ testHaskellDepends = [
+ base binary bytestring clock connection containers
+ data-binary-ieee754 hspec hspec-expectations network network-uri
+ split stm text vector
+ ];
+ doCheck = false;
+ homepage = "https://github.com/hreinhardt/amqp";
+ description = "Client library for AMQP servers (currently only RabbitMQ)";
+ license = stdenv.lib.licenses.bsd3;
}) {};
"amqp-conduit" = callPackage
@@ -33077,6 +34856,7 @@ self: {
homepage = "http://github.com/tatac1/amqp-conduit/";
description = "Conduit bindings for AMQP (see amqp package)";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"amrun" = callPackage
@@ -33343,10 +35123,7 @@ self: {
pname = "anonymous-sums";
version = "0.4.0.0";
sha256 = "116626dd139f7ba57b66d790915ff21cdf09f267da16f873f396ae76aad16749";
- isLibrary = true;
- isExecutable = true;
libraryHaskellDepends = [ base ];
- executableHaskellDepends = [ base ];
homepage = "http://www.github.com/massysett/anonymous-sums";
description = "Anonymous sum types";
license = stdenv.lib.licenses.bsd3;
@@ -33391,10 +35168,7 @@ self: {
pname = "ansi-terminal";
version = "0.6.2.1";
sha256 = "965a38671ddd195b243af9d0284faedb52b852eace5f7cced11e6fcf2e47b7f6";
- isLibrary = true;
- isExecutable = true;
libraryHaskellDepends = [ base unix ];
- executableHaskellDepends = [ base unix ];
homepage = "https://github.com/feuerbach/ansi-terminal";
description = "Simple ANSI terminal support, with Windows compatibility";
license = stdenv.lib.licenses.bsd3;
@@ -33407,10 +35181,7 @@ self: {
pname = "ansi-terminal";
version = "0.6.2.2";
sha256 = "da082cfcbd7f65b808adea6c9915ad58643b8a22c7bcd21d3dbaf091828dd4bf";
- isLibrary = true;
- isExecutable = true;
libraryHaskellDepends = [ base unix ];
- executableHaskellDepends = [ base unix ];
homepage = "https://github.com/feuerbach/ansi-terminal";
description = "Simple ANSI terminal support, with Windows compatibility";
license = stdenv.lib.licenses.bsd3;
@@ -33423,10 +35194,7 @@ self: {
pname = "ansi-terminal";
version = "0.6.2.3";
sha256 = "4dc02cb53e9ca7c8800bbdfc0337b961e5a945382cd09a6a40c6170126e0ee42";
- isLibrary = true;
- isExecutable = true;
libraryHaskellDepends = [ base unix ];
- executableHaskellDepends = [ base unix ];
homepage = "https://github.com/feuerbach/ansi-terminal";
description = "Simple ANSI terminal support, with Windows compatibility";
license = stdenv.lib.licenses.bsd3;
@@ -33440,10 +35208,7 @@ self: {
sha256 = "d980c265cacf6d6aa37a24d056e730b678680e07d3ab87210affb415de0ac1af";
revision = "1";
editedCabalFile = "3ab6d9878470a4f5ec495d6aea47396172d162518aa37abf8e50fe58d6323715";
- isLibrary = true;
- isExecutable = true;
libraryHaskellDepends = [ ansi-terminal base ];
- executableHaskellDepends = [ ansi-terminal base ];
jailbreak = true;
homepage = "http://github.com/batterseapower/ansi-wl-pprint";
description = "The Wadler/Leijen Pretty Printer for colored ANSI terminal output";
@@ -33457,10 +35222,7 @@ self: {
pname = "ansi-wl-pprint";
version = "0.6.7.2";
sha256 = "015ec4414242089fff5d6d567b392b6bb4fa5f85afff7f0708566082e1d91774";
- isLibrary = true;
- isExecutable = true;
libraryHaskellDepends = [ ansi-terminal base ];
- executableHaskellDepends = [ ansi-terminal base ];
homepage = "http://github.com/batterseapower/ansi-wl-pprint";
description = "The Wadler/Leijen Pretty Printer for colored ANSI terminal output";
license = stdenv.lib.licenses.bsd3;
@@ -33473,10 +35235,7 @@ self: {
pname = "ansi-wl-pprint";
version = "0.6.7.3";
sha256 = "3789ecaa89721eabef58ddc5711f7fd1ff67e262da1659f3b20d38a9e1f5b708";
- isLibrary = true;
- isExecutable = true;
libraryHaskellDepends = [ ansi-terminal base ];
- executableHaskellDepends = [ ansi-terminal base ];
homepage = "http://github.com/ekmett/ansi-wl-pprint";
description = "The Wadler/Leijen Pretty Printer for colored ANSI terminal output";
license = stdenv.lib.licenses.bsd3;
@@ -33662,10 +35421,7 @@ self: {
pname = "anydbm";
version = "1.0.7";
sha256 = "d33410fc5fad79bd5a5bcc24248f6e5a7a3133ede5111c31a8c58068b219b3e7";
- isLibrary = true;
- isExecutable = true;
libraryHaskellDepends = [ base containers MissingH mtl ];
- executableHaskellDepends = [ base containers MissingH mtl ];
homepage = "http://software.complete.org/anydbm";
description = "Interface for DBM-like database systems";
license = "GPL";
@@ -35755,8 +37511,6 @@ self: {
pname = "ascii-progress";
version = "0.3.2.0";
sha256 = "51a70a0d1fd39138f6d143bf52080c765d0f0b69d5af887f2fa80a950448c771";
- isLibrary = true;
- isExecutable = true;
libraryHaskellDepends = [
async base concurrent-output data-default time
];
@@ -35777,8 +37531,6 @@ self: {
pname = "ascii-progress";
version = "0.3.3.0";
sha256 = "7e3fa6b80c09a83c9ba8a0644ef304ca92d65b76383b8dd023ff9f89ebec913e";
- isLibrary = true;
- isExecutable = true;
libraryHaskellDepends = [
async base concurrent-output data-default time
];
@@ -35965,8 +37717,6 @@ self: {
sha256 = "f9a8a8ec41e89ebb4af6bd6b8a4c45515e44d7d61524d02b52881bfe7caf4783";
revision = "1";
editedCabalFile = "6c8f01076a88b9ea0f2ce9b5fa2b09dc658332bd4dedfbc8d6e7fae25ea5ed1f";
- isLibrary = true;
- isExecutable = true;
libraryHaskellDepends = [ base bytestring cereal mtl text ];
jailbreak = true;
homepage = "http://github.com/vincenthz/hs-asn1-data";
@@ -35983,8 +37733,6 @@ self: {
sha256 = "83999c03cbc993f7e0dea010942a4dc39ae986c498c57eadc1e5ee1b4e23aca1";
revision = "1";
editedCabalFile = "1543bc1ee13d3f4b9ee6f9445edede596d5fe7f8a4551333b54634aad5b112a3";
- isLibrary = true;
- isExecutable = true;
libraryHaskellDepends = [ base bytestring cereal mtl text ];
homepage = "https://github.com/vincenthz/hs-asn1/tree/master/data";
description = "ASN1 data reader and writer in RAW, BER and DER forms";
@@ -36033,7 +37781,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "asn1-encoding" = callPackage
+ "asn1-encoding_0_9_3" = callPackage
({ mkDerivation, asn1-types, base, bytestring, hourglass, mtl
, tasty, tasty-quickcheck, text
}:
@@ -36049,6 +37797,25 @@ self: {
homepage = "http://github.com/vincenthz/hs-asn1";
description = "ASN1 data reader and writer in RAW, BER and DER forms";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "asn1-encoding" = callPackage
+ ({ mkDerivation, asn1-types, base, bytestring, hourglass, mtl
+ , tasty, tasty-quickcheck, text
+ }:
+ mkDerivation {
+ pname = "asn1-encoding";
+ version = "0.9.4";
+ sha256 = "a78058f7db08fbd72f2b40c72af324a4d31ea95d70b4bfa372107b980394dde8";
+ libraryHaskellDepends = [ asn1-types base bytestring hourglass ];
+ testHaskellDepends = [
+ asn1-types base bytestring hourglass mtl tasty tasty-quickcheck
+ text
+ ];
+ homepage = "http://github.com/vincenthz/hs-asn1";
+ description = "ASN1 data reader and writer in RAW, BER and DER forms";
+ license = stdenv.lib.licenses.bsd3;
}) {};
"asn1-parse_0_9_0" = callPackage
@@ -36636,7 +38403,7 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
- "atom-conduit" = callPackage
+ "atom-conduit_0_3_0_0" = callPackage
({ mkDerivation, base, conduit, conduit-parse, data-default
, exceptions, foldl, hlint, lens-simple, mono-traversable, parsers
, quickcheck-instances, resourcet, tasty, tasty-hunit
@@ -36662,6 +38429,63 @@ self: {
];
description = "Streaming parser/renderer for the Atom 1.0 standard (RFC 4287).";
license = "unknown";
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "atom-conduit_0_3_1_1" = callPackage
+ ({ mkDerivation, base, conduit, conduit-parse, data-default
+ , exceptions, foldl, hlint, lens-simple, mono-traversable, parsers
+ , quickcheck-instances, resourcet, tasty, tasty-hunit
+ , tasty-quickcheck, text, time, timerep, uri-bytestring
+ , xml-conduit, xml-conduit-parse, xml-types
+ }:
+ mkDerivation {
+ pname = "atom-conduit";
+ version = "0.3.1.1";
+ sha256 = "d0603a5a726fade01a9fe6c5859d81c6f53d8770dc0db8b889e2717e63a3d2b3";
+ revision = "1";
+ editedCabalFile = "8ebc45eae1c2408eb475b62923c8801b07abe999d107f3d9b22ec22c2e8c1dad";
+ libraryHaskellDepends = [
+ base conduit conduit-parse exceptions foldl lens-simple
+ mono-traversable parsers text time timerep uri-bytestring
+ xml-conduit xml-conduit-parse xml-types
+ ];
+ testHaskellDepends = [
+ base conduit conduit-parse data-default exceptions hlint
+ lens-simple mono-traversable parsers quickcheck-instances resourcet
+ tasty tasty-hunit tasty-quickcheck text time uri-bytestring
+ xml-conduit xml-conduit-parse xml-types
+ ];
+ jailbreak = true;
+ description = "Streaming parser/renderer for the Atom 1.0 standard (RFC 4287).";
+ license = "unknown";
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "atom-conduit" = callPackage
+ ({ mkDerivation, base, conduit, conduit-parse, data-default
+ , exceptions, foldl, hlint, lens-simple, mono-traversable, parsers
+ , quickcheck-instances, resourcet, tasty, tasty-hunit
+ , tasty-quickcheck, text, time, timerep, uri-bytestring
+ , xml-conduit, xml-conduit-parse, xml-types
+ }:
+ mkDerivation {
+ pname = "atom-conduit";
+ version = "0.3.1.2";
+ sha256 = "ab469b789cd81a5dab366c367a5b86a073e7cfc8fbb1a978d3107441795f7a22";
+ libraryHaskellDepends = [
+ base conduit conduit-parse exceptions foldl lens-simple
+ mono-traversable parsers text time timerep uri-bytestring
+ xml-conduit xml-conduit-parse xml-types
+ ];
+ testHaskellDepends = [
+ base conduit conduit-parse data-default exceptions hlint
+ lens-simple mono-traversable parsers quickcheck-instances resourcet
+ tasty tasty-hunit tasty-quickcheck text time uri-bytestring
+ xml-conduit xml-conduit-parse xml-types
+ ];
+ description = "Streaming parser/renderer for the Atom 1.0 standard (RFC 4287).";
+ license = "unknown";
}) {};
"atom-msp430" = callPackage
@@ -36805,7 +38629,6 @@ self: {
haskeline hint mtl parsec pretty regex-pcre template-haskell text
time vector
];
- jailbreak = true;
homepage = "http://atomo-lang.org/";
description = "A highly dynamic, extremely simple, very fun programming language";
license = stdenv.lib.licenses.bsd3;
@@ -37250,8 +39073,6 @@ self: {
pname = "audacity";
version = "0.0";
sha256 = "1f578e6cf8bfc5524a9e49ff306a736ab1c5db2a8a4ab4a3e4f47cb34a2fd7ed";
- isLibrary = true;
- isExecutable = true;
libraryHaskellDepends = [ base deepseq utility-ht ];
jailbreak = true;
homepage = "http://code.haskell.org/~thielema/audacity";
@@ -37339,6 +39160,23 @@ self: {
license = stdenv.lib.licenses.gpl3;
}) {};
+ "aur-api" = callPackage
+ ({ mkDerivation, aeson, base, bytestring, exceptions, hspec
+ , http-client, http-client-tls, mtl, text
+ }:
+ mkDerivation {
+ pname = "aur-api";
+ version = "0.1.2.1";
+ sha256 = "8262daf22fa46e3eaba2dffc97bfac7c7146b8cac371cd4161b0e03e1cbed744";
+ libraryHaskellDepends = [
+ aeson base bytestring exceptions hspec http-client http-client-tls
+ mtl text
+ ];
+ homepage = "https://github.com/wangbj/aur-api";
+ description = "ArchLinux AUR json v5 API";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
"authenticate_1_3_2_10" = callPackage
({ mkDerivation, aeson, attoparsec, base, blaze-builder, bytestring
, case-insensitive, conduit, containers, http-conduit, http-types
@@ -37405,7 +39243,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "authenticate" = callPackage
+ "authenticate_1_3_3_1" = callPackage
({ mkDerivation, aeson, attoparsec, base, blaze-builder, bytestring
, case-insensitive, conduit, containers, http-conduit, http-types
, monad-control, network-uri, resourcet, tagstream-conduit, text
@@ -37424,6 +39262,28 @@ self: {
homepage = "http://github.com/yesodweb/authenticate";
description = "Authentication methods for Haskell web applications";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "authenticate" = callPackage
+ ({ mkDerivation, aeson, attoparsec, base, blaze-builder, bytestring
+ , case-insensitive, conduit, containers, http-conduit, http-types
+ , monad-control, network-uri, resourcet, tagstream-conduit, text
+ , transformers, unordered-containers, xml-conduit
+ }:
+ mkDerivation {
+ pname = "authenticate";
+ version = "1.3.3.2";
+ sha256 = "a65ff7791e646ea847fc6b8369addeecf6d2c3055a0b7ebe1421881103656e30";
+ libraryHaskellDepends = [
+ aeson attoparsec base blaze-builder bytestring case-insensitive
+ conduit containers http-conduit http-types monad-control
+ network-uri resourcet tagstream-conduit text transformers
+ unordered-containers xml-conduit
+ ];
+ homepage = "http://github.com/yesodweb/authenticate";
+ description = "Authentication methods for Haskell web applications";
+ license = stdenv.lib.licenses.mit;
}) {};
"authenticate-kerberos" = callPackage
@@ -37702,6 +39562,8 @@ self: {
pname = "autonix-deps";
version = "0.3.0.0";
sha256 = "9baa7c387af363674385b7bdb5df57904dd752ebb5a73fde53d492dab8d9e256";
+ revision = "1";
+ editedCabalFile = "505749d414987733b04b399a581731ed9d8550de1d9d07d9bb55b6305ca26637";
libraryHaskellDepends = [
aeson aeson-pretty base bytestring conduit containers errors
filepath lens libarchive-conduit mtl optparse-applicative process
@@ -37719,6 +39581,8 @@ self: {
pname = "autonix-deps-kf5";
version = "0.3.0.0";
sha256 = "c19068cbae9ba93f0b1e634ee948c52f6680ef886b779183622800d3457f555a";
+ revision = "1";
+ editedCabalFile = "a59bffb60ab47fb89ca0846c8fdcb68d31386196232cdeea327e3f9f2f329563";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -38066,6 +39930,22 @@ self: {
license = stdenv.lib.licenses.publicDomain;
}) {};
+ "avwx" = callPackage
+ ({ mkDerivation, attoparsec, base, HTTP, pretty-show, text }:
+ mkDerivation {
+ pname = "avwx";
+ version = "0.1.0.1";
+ sha256 = "6c1c7a58489a6b2b1e19c4b5ade3d606b80f61e663e755526adbcb5c5cfcd7e8";
+ isLibrary = true;
+ isExecutable = true;
+ libraryHaskellDepends = [ attoparsec base HTTP text ];
+ executableHaskellDepends = [ base pretty-show ];
+ testHaskellDepends = [ base text ];
+ homepage = "https://github.com/hce/avwx";
+ description = "Parse METAR weather reports";
+ license = stdenv.lib.licenses.mit;
+ }) {};
+
"awesome-prelude" = callPackage
({ mkDerivation, base }:
mkDerivation {
@@ -38091,7 +39971,7 @@ self: {
aeson attoparsec awesomium-raw base containers text vector
];
description = "High-level Awesomium bindings";
- license = stdenv.lib.licenses.gpl3;
+ license = stdenv.lib.licenses.lgpl3;
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
@@ -38103,7 +39983,7 @@ self: {
sha256 = "edfe81d9c3bc77dd1da7c46d5b92a21b1f6e10f53967f0d2294648d1237eb09c";
libraryHaskellDepends = [ awesomium awesomium-raw base GLUT ];
description = "Utilities for using Awesomium with GLUT";
- license = stdenv.lib.licenses.gpl3;
+ license = stdenv.lib.licenses.lgpl3;
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
@@ -38117,7 +39997,7 @@ self: {
librarySystemDepends = [ awesomium ];
libraryToolDepends = [ c2hs ];
description = "Low-level Awesomium bindings";
- license = stdenv.lib.licenses.gpl3;
+ license = stdenv.lib.licenses.lgpl3;
hydraPlatforms = stdenv.lib.platforms.none;
}) {awesomium = null;};
@@ -38138,8 +40018,6 @@ self: {
sha256 = "496dafa5f847a4401d8ec34c45e11e77ee558ea9dc09caef2680f7c2c8c907a7";
revision = "1";
editedCabalFile = "60b1c78a946c4c45dae2771dfedeebacb1229e0f61d03dbf3ed76dbcbbb96c13";
- isLibrary = true;
- isExecutable = true;
libraryHaskellDepends = [
aeson attoparsec base base16-bytestring base64-bytestring
blaze-builder byteable bytestring case-insensitive cereal conduit
@@ -38179,8 +40057,6 @@ self: {
sha256 = "f1e3df0c141823f384f3410c9eef92eb410b716b0caa6534aec67dacb82b1697";
revision = "2";
editedCabalFile = "9759b26f78a14b3e31eb516e471af0ad00840793a0029170c5e27ffaf14e1838";
- isLibrary = true;
- isExecutable = true;
libraryHaskellDepends = [
aeson attoparsec base base16-bytestring base64-bytestring
blaze-builder byteable bytestring case-insensitive cereal conduit
@@ -38219,8 +40095,6 @@ self: {
sha256 = "14a9a9f4435f92b9a0364de66469e293f3ad09c7fe54aacce3486280866de30a";
revision = "2";
editedCabalFile = "73e3d00ce401c09e55bfd27b2d73afff8709d43967718182c5ebc8b406d6bcf6";
- isLibrary = true;
- isExecutable = true;
libraryHaskellDepends = [
aeson attoparsec base base16-bytestring base64-bytestring
blaze-builder byteable bytestring case-insensitive cereal conduit
@@ -38259,8 +40133,6 @@ self: {
sha256 = "33c254d949af40c55f3f82c95b76bd9d456039fef44ecd675f343fc14e9857d6";
revision = "1";
editedCabalFile = "ce643c305e10f780d10157dfe4eb51ce840b206a7ba736616f445d38725ec02f";
- isLibrary = true;
- isExecutable = true;
libraryHaskellDepends = [
aeson attoparsec base base16-bytestring base64-bytestring
blaze-builder byteable bytestring case-insensitive cereal conduit
@@ -38299,8 +40171,6 @@ self: {
sha256 = "6c85bac359ea94d78f287b45c6e7e981dc260a1c029a7888ed752a1c0e64d32b";
revision = "1";
editedCabalFile = "15033cfa014e706515a9d2b59c4996a921e41bfd9a460d7f8388d3faa55e9ff5";
- isLibrary = true;
- isExecutable = true;
libraryHaskellDepends = [
aeson attoparsec base base16-bytestring base64-bytestring
blaze-builder byteable bytestring case-insensitive cereal conduit
@@ -38339,8 +40209,6 @@ self: {
sha256 = "3504c96a00d12fa0fe4ae5ab4dafa3eec7ca576a02ed7906cff70a75625a75a6";
revision = "1";
editedCabalFile = "57beb101b4203e6784df90817aadfbda98972052e31f85fa620f2d7dcdf6a446";
- isLibrary = true;
- isExecutable = true;
libraryHaskellDepends = [
aeson attoparsec base base16-bytestring base64-bytestring
blaze-builder byteable bytestring case-insensitive cereal conduit
@@ -38377,8 +40245,6 @@ self: {
pname = "aws";
version = "0.13.2";
sha256 = "998a9ddc9bc3e74a292e733aac1e9af0ec654d17aa1834319f9f6af4d907ff59";
- isLibrary = true;
- isExecutable = true;
libraryHaskellDepends = [
aeson attoparsec base base16-bytestring base64-bytestring
blaze-builder byteable bytestring case-insensitive cereal conduit
@@ -38392,6 +40258,7 @@ self: {
mtl QuickCheck quickcheck-instances resourcet tagged tasty
tasty-quickcheck text time transformers transformers-base
];
+ jailbreak = true;
doCheck = false;
homepage = "http://github.com/aristidb/aws";
description = "Amazon Web Services (AWS) for Haskell";
@@ -38415,8 +40282,6 @@ self: {
pname = "aws";
version = "0.14.0";
sha256 = "b5b959f9b0ae8c07baf91e067b4005dc554d76c1ab15d019f13a4dc88a8a813e";
- isLibrary = true;
- isExecutable = true;
libraryHaskellDepends = [
aeson attoparsec base base16-bytestring base64-bytestring
blaze-builder byteable bytestring case-insensitive cereal conduit
@@ -38555,8 +40420,6 @@ self: {
pname = "aws-elastic-transcoder";
version = "0.2.0.2";
sha256 = "896b7cdb17313b8a5e848de797ab61a3d1ab3779b6bf2d571cda50e5317ebe09";
- isLibrary = true;
- isExecutable = true;
libraryHaskellDepends = [
aeson aws aws-sign4 base bytestring conduit containers http-conduit
http-types QuickCheck regex-compat safe text time transformers
@@ -39228,7 +41091,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "b9" = callPackage
+ "b9_0_5_19" = callPackage
({ mkDerivation, aeson, async, base, bifunctors, binary, boxes
, bytestring, conduit, conduit-extra, ConfigFile, directory
, filepath, free, hashable, hspec, hspec-expectations, mtl
@@ -39259,6 +41122,74 @@ self: {
homepage = "https://github.com/sheyll/b9-vm-image-builder";
description = "A tool and library for building virtual machine images";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "b9_0_5_20" = callPackage
+ ({ mkDerivation, aeson, async, base, bifunctors, binary, boxes
+ , bytestring, conduit, conduit-extra, ConfigFile, directory
+ , filepath, free, hashable, hspec, hspec-expectations, mtl
+ , optparse-applicative, parallel, parsec, pretty, pretty-show
+ , process, QuickCheck, random, semigroups, syb, template, text
+ , time, transformers, unordered-containers, vector, yaml
+ }:
+ mkDerivation {
+ pname = "b9";
+ version = "0.5.20";
+ sha256 = "c776312009488496aa4cb5bf1a9e691ec0c4e9208e39c2ef3402e5410ce3a158";
+ isLibrary = true;
+ isExecutable = true;
+ libraryHaskellDepends = [
+ aeson async base bifunctors binary boxes bytestring conduit
+ conduit-extra ConfigFile directory filepath free hashable mtl
+ parallel parsec pretty pretty-show process QuickCheck random
+ semigroups syb template text time transformers unordered-containers
+ vector yaml
+ ];
+ executableHaskellDepends = [
+ base bytestring directory optparse-applicative
+ ];
+ testHaskellDepends = [
+ aeson base bytestring hspec hspec-expectations QuickCheck
+ semigroups text unordered-containers vector yaml
+ ];
+ homepage = "https://github.com/sheyll/b9-vm-image-builder";
+ description = "A tool and library for building virtual machine images";
+ license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "b9" = callPackage
+ ({ mkDerivation, aeson, async, base, bifunctors, binary, boxes
+ , bytestring, conduit, conduit-extra, ConfigFile, directory
+ , filepath, free, hashable, hspec, hspec-expectations, mtl
+ , optparse-applicative, parallel, parsec, pretty, pretty-show
+ , process, QuickCheck, random, semigroups, syb, template, text
+ , time, transformers, unordered-containers, vector, yaml
+ }:
+ mkDerivation {
+ pname = "b9";
+ version = "0.5.21";
+ sha256 = "a7db049d73b0800399cef22fa016932cd5699d6faf9f6056a350eae1952f6cb4";
+ isLibrary = true;
+ isExecutable = true;
+ libraryHaskellDepends = [
+ aeson async base bifunctors binary boxes bytestring conduit
+ conduit-extra ConfigFile directory filepath free hashable mtl
+ parallel parsec pretty pretty-show process QuickCheck random
+ semigroups syb template text time transformers unordered-containers
+ vector yaml
+ ];
+ executableHaskellDepends = [
+ base bytestring directory optparse-applicative
+ ];
+ testHaskellDepends = [
+ aeson base bytestring hspec hspec-expectations QuickCheck
+ semigroups text unordered-containers vector yaml
+ ];
+ homepage = "https://github.com/sheyll/b9-vm-image-builder";
+ description = "A tool and library for building virtual machine images";
+ license = stdenv.lib.licenses.mit;
}) {};
"babylon" = callPackage
@@ -39531,8 +41462,8 @@ self: {
}) {};
"bamse" = callPackage
- ({ mkDerivation, base, com, directory, filepath, HUnit, old-time
- , pretty, process, QuickCheck, regex-compat
+ ({ mkDerivation, base, com, directory, filepath, old-time, pretty
+ , process, regex-compat
}:
mkDerivation {
pname = "bamse";
@@ -39543,7 +41474,6 @@ self: {
libraryHaskellDepends = [
base com directory filepath old-time pretty process regex-compat
];
- executableHaskellDepends = [ HUnit QuickCheck ];
description = "A Windows Installer (MSI) generator framework";
license = stdenv.lib.licenses.bsd3;
hydraPlatforms = [ "x86_64-darwin" ];
@@ -39591,7 +41521,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "bank-holidays-england" = callPackage
+ "bank-holidays-england_0_1_0_3" = callPackage
({ mkDerivation, base, containers, hspec, QuickCheck, time }:
mkDerivation {
pname = "bank-holidays-england";
@@ -39603,6 +41533,20 @@ self: {
homepage = "https://bitbucket.org/davecturner/bank-holidays-england";
description = "Calculation of bank holidays in England and Wales";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "bank-holidays-england" = callPackage
+ ({ mkDerivation, base, containers, hspec, QuickCheck, time }:
+ mkDerivation {
+ pname = "bank-holidays-england";
+ version = "0.1.0.5";
+ sha256 = "0619db7812762ea3af48db434dbcad81e26525d733126073dfe3dbd357a83760";
+ libraryHaskellDepends = [ base containers time ];
+ testHaskellDepends = [ base containers hspec QuickCheck time ];
+ homepage = "https://bitbucket.org/davecturner/bank-holidays-england";
+ description = "Calculation of bank holidays in England and Wales";
+ license = stdenv.lib.licenses.bsd3;
}) {};
"banwords" = callPackage
@@ -39727,8 +41671,6 @@ self: {
sha256 = "9f7c56af995b47791ee0ffa69c27d3de0b895125dbd5fe0c84d8b621467f90ba";
revision = "2";
editedCabalFile = "bcb912e8105f792720b8515ddf9b37d6a1eecd17cb325cc40bd688641068e9e6";
- isLibrary = true;
- isExecutable = true;
libraryHaskellDepends = [
base blaze-svg bytestring template-haskell text
unordered-containers
@@ -40817,6 +42759,29 @@ self: {
hydraPlatforms = [ "x86_64-darwin" ];
}) {};
+ "beam-th" = callPackage
+ ({ mkDerivation, base, beam, doctest, doctest-discover, microlens
+ , mtl, tasty, tasty-hunit, template-haskell, text, th-expand-syns
+ , transformers
+ }:
+ mkDerivation {
+ pname = "beam-th";
+ version = "0.2.0.0";
+ sha256 = "d1a7938b5dda902e9c50566b70c9243bd6900285db0724f176ec200423c6d408";
+ libraryHaskellDepends = [
+ base beam microlens mtl template-haskell th-expand-syns
+ transformers
+ ];
+ testHaskellDepends = [
+ base beam doctest doctest-discover tasty tasty-hunit
+ template-haskell text
+ ];
+ homepage = "https://github.com/hesiod/beam-th";
+ description = "Template Haskell utilities for beam";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"beamable" = callPackage
({ mkDerivation, base, blaze-builder, bytestring, ghc-prim
, integer-gmp, murmur-hash, QuickCheck, test-framework
@@ -40839,6 +42804,18 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
+ "bearriver" = callPackage
+ ({ mkDerivation, base, dunai, mtl, transformers }:
+ mkDerivation {
+ pname = "bearriver";
+ version = "0.10.4";
+ sha256 = "c1117be28a5852f92fcdc08143b0c430b34e0c571652a439dd9a27baba9a3e2b";
+ libraryHaskellDepends = [ base dunai mtl transformers ];
+ homepage = "keera.co.uk";
+ description = "A replacement of Yampa based on Monadic Stream Functions";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
"beautifHOL" = callPackage
({ mkDerivation, array, base, haskell98, mtl }:
mkDerivation {
@@ -40924,7 +42901,7 @@ self: {
license = stdenv.lib.licenses.gpl3;
}) {};
- "benchpress" = callPackage
+ "benchpress_0_2_2_7" = callPackage
({ mkDerivation, base, mtl, time }:
mkDerivation {
pname = "benchpress";
@@ -40935,6 +42912,22 @@ self: {
homepage = "https://github.com/WillSewell/benchpress";
description = "Micro-benchmarking with detailed statistics";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "benchpress" = callPackage
+ ({ mkDerivation, base, bytestring, mtl, time }:
+ mkDerivation {
+ pname = "benchpress";
+ version = "0.2.2.8";
+ sha256 = "39fbf32e333466931c8de7dafa922de8a010ee57cd0a8fde8961da310d04057d";
+ isLibrary = true;
+ isExecutable = true;
+ libraryHaskellDepends = [ base mtl time ];
+ executableHaskellDepends = [ base bytestring ];
+ homepage = "https://github.com/WillSewell/benchpress";
+ description = "Micro-benchmarking with detailed statistics";
+ license = stdenv.lib.licenses.bsd3;
}) {};
"bencode" = callPackage
@@ -41070,8 +43063,6 @@ self: {
pname = "bet";
version = "0.1.2.3";
sha256 = "a818d927e09c0386842658f70682089c16bc241961834af07fdbb0155015c13f";
- isLibrary = true;
- isExecutable = true;
libraryHaskellDepends = [
aeson base bifunctors binary bytestring containers exceptions
HsOpenSSL http-client http-client-openssl lens mtl semigroupoids
@@ -41136,8 +43127,6 @@ self: {
pname = "bff";
version = "0.3.1.2";
sha256 = "5d44be6c1890b08ed18b8ebac8cf2565747f2c20f143edb7c0d0c311e73dbec4";
- isLibrary = true;
- isExecutable = true;
libraryHaskellDepends = [
base bimap category-extras containers derive haskell98 mtl
template-haskell unix
@@ -41221,8 +43210,6 @@ self: {
pname = "bibtex";
version = "0.1.0.6";
sha256 = "090a3b9589388bdf9d2bf60d8d1898aa0313a2874b551ba86cbbd049f3ee5f04";
- isLibrary = true;
- isExecutable = true;
libraryHaskellDepends = [ base latex parsec utility-ht ];
homepage = "http://www.haskell.org/haskellwiki/BibTeX";
description = "Parse, format and processing BibTeX files";
@@ -41414,7 +43401,7 @@ self: {
jailbreak = true;
homepage = "http://ddmal.music.mcgill.ca/billboard";
description = "A parser for the Billboard chord dataset";
- license = stdenv.lib.licenses.gpl3;
+ license = stdenv.lib.licenses.lgpl3;
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
@@ -41613,15 +43600,15 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "binary_0_8_4_0" = callPackage
+ "binary_0_8_4_1" = callPackage
({ mkDerivation, array, base, bytestring, Cabal, containers
, directory, filepath, HUnit, QuickCheck, random, test-framework
, test-framework-quickcheck2
}:
mkDerivation {
pname = "binary";
- version = "0.8.4.0";
- sha256 = "d7a672366741152365a2c1e67525dc08bf606a4a8cae06f58c7f51a2e43f9018";
+ version = "0.8.4.1";
+ sha256 = "8d13c700fe96c84644a2af37003f488668fe9cd1f8e5b316fc929de26ce7e7ba";
libraryHaskellDepends = [ array base bytestring containers ];
testHaskellDepends = [
array base bytestring Cabal containers directory filepath HUnit
@@ -41662,7 +43649,7 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
- "binary-conduit" = callPackage
+ "binary-conduit_1_2_3" = callPackage
({ mkDerivation, base, binary, bytestring, conduit, hspec
, QuickCheck, quickcheck-assertions, resourcet, vector
}:
@@ -41670,8 +43657,29 @@ self: {
pname = "binary-conduit";
version = "1.2.3";
sha256 = "d9a18707bfbc583d8ac8bedc2ff5cf89c8e490575b5c75e2bc4192729cefb07a";
- revision = "1";
- editedCabalFile = "9cb1c58171575429a65947d1ef7e22c1501b4ca9becc07904c7b4a5066345e29";
+ revision = "2";
+ editedCabalFile = "488839b9dbc62394ccfe9ac772a54f993e4fa4fe20f6631fb67b1fb75daefe29";
+ libraryHaskellDepends = [
+ base binary bytestring conduit resourcet vector
+ ];
+ testHaskellDepends = [
+ base binary bytestring conduit hspec QuickCheck
+ quickcheck-assertions resourcet
+ ];
+ homepage = "http://github.com/qnikst/binary-conduit/";
+ description = "data serialization/deserialization conduit library";
+ license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "binary-conduit" = callPackage
+ ({ mkDerivation, base, binary, bytestring, conduit, hspec
+ , QuickCheck, quickcheck-assertions, resourcet, vector
+ }:
+ mkDerivation {
+ pname = "binary-conduit";
+ version = "1.2.4.1";
+ sha256 = "445cbb60bcff6da468e27b1db6a8d576b0b43ff284c3dcca4ae4c13f1ca6ca82";
libraryHaskellDepends = [
base binary bytestring conduit resourcet vector
];
@@ -41679,7 +43687,6 @@ self: {
base binary bytestring conduit hspec QuickCheck
quickcheck-assertions resourcet
];
- jailbreak = true;
homepage = "http://github.com/qnikst/binary-conduit/";
description = "data serialization/deserialization conduit library";
license = stdenv.lib.licenses.mit;
@@ -41803,7 +43810,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "binary-list" = callPackage
+ "binary-list_1_1_1_1" = callPackage
({ mkDerivation, base, binary, bytestring, deepseq, phantom-state
, transformers
}:
@@ -41816,6 +43823,22 @@ self: {
];
description = "Lists of length a power of two";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "binary-list" = callPackage
+ ({ mkDerivation, base, binary, bytestring, deepseq, phantom-state
+ , transformers
+ }:
+ mkDerivation {
+ pname = "binary-list";
+ version = "1.1.1.2";
+ sha256 = "6b21e58ea4091b9572cb24a92dfb1ddc14fcea82d2272d30a83eb1b430dd1878";
+ libraryHaskellDepends = [
+ base binary bytestring deepseq phantom-state transformers
+ ];
+ description = "Lists of length a power of two";
+ license = stdenv.lib.licenses.bsd3;
}) {};
"binary-literal-qq" = callPackage
@@ -41912,7 +43935,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "binary-orphans" = callPackage
+ "binary-orphans_0_1_4_0" = callPackage
({ mkDerivation, aeson, base, binary, hashable
, quickcheck-instances, scientific, semigroups, tagged, tasty
, tasty-quickcheck, text, text-binary, time, unordered-containers
@@ -41934,6 +43957,33 @@ self: {
semigroups tagged tasty tasty-quickcheck text time
unordered-containers vector
];
+ jailbreak = true;
+ homepage = "https://github.com/phadej/binary-orphans#readme";
+ description = "Orphan instances for binary";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "binary-orphans" = callPackage
+ ({ mkDerivation, aeson, base, binary, case-insensitive, hashable
+ , quickcheck-instances, scientific, tagged, tasty, tasty-quickcheck
+ , text, text-binary, time, unordered-containers, vector
+ , vector-binary-instances
+ }:
+ mkDerivation {
+ pname = "binary-orphans";
+ version = "0.1.5.0";
+ sha256 = "6e93593ac39485f6e0290fcbeaf96ef1b3be0ec3dc7434643529583c31db5d10";
+ libraryHaskellDepends = [
+ aeson base binary case-insensitive hashable scientific tagged text
+ text-binary time unordered-containers vector
+ vector-binary-instances
+ ];
+ testHaskellDepends = [
+ aeson base binary case-insensitive hashable quickcheck-instances
+ scientific tagged tasty tasty-quickcheck text time
+ unordered-containers vector
+ ];
homepage = "https://github.com/phadej/binary-orphans#readme";
description = "Orphan instances for binary";
license = stdenv.lib.licenses.bsd3;
@@ -42010,8 +44060,6 @@ self: {
pname = "binary-protocol-zmq";
version = "0.2";
sha256 = "beaad38fb11794b368e69f3b84d46809440a1afae26110401c79c9c0a6b94a92";
- isLibrary = true;
- isExecutable = true;
libraryHaskellDepends = [
base binary bytestring mtl zeromq-haskell
];
@@ -42553,7 +44601,7 @@ self: {
jailbreak = true;
homepage = "http://projects.haskell.org/bindings-bfd/";
description = "Bindings for libbfd, a library of the GNU `binutils'";
- license = stdenv.lib.licenses.gpl3;
+ license = stdenv.lib.licenses.lgpl3;
hydraPlatforms = [ "x86_64-darwin" ];
}) {bfd = null; opcodes = null;};
@@ -42745,7 +44793,7 @@ self: {
libraryHaskellDepends = [ base bindings-DSL bindings-glib ];
libraryPkgconfigDepends = [ gts ];
description = "Low level bindings supporting GTS, the GNU Triangulated Surface Library";
- license = stdenv.lib.licenses.gpl3;
+ license = stdenv.lib.licenses.lgpl3;
hydraPlatforms = [ "x86_64-darwin" ];
}) {inherit (pkgs) gts;};
@@ -43078,7 +45126,7 @@ self: {
libraryPkgconfigDepends = [ saneBackends ];
homepage = "http://floss.scru.org/bindings-sane";
description = "FFI bindings to libsane";
- license = stdenv.lib.licenses.gpl3;
+ license = stdenv.lib.licenses.lgpl3;
hydraPlatforms = [ "x86_64-darwin" ];
}) {saneBackends = null;};
@@ -43254,8 +45302,7 @@ self: {
"bio" = callPackage
({ mkDerivation, array, base, binary, bytestring, containers
- , directory, mtl, old-time, parallel, parsec, process, QuickCheck
- , random, tagsoup
+ , directory, mtl, parallel, parsec, QuickCheck, random, tagsoup
}:
mkDerivation {
pname = "bio";
@@ -43267,9 +45314,7 @@ self: {
array base binary bytestring containers directory mtl parallel
parsec QuickCheck tagsoup
];
- executableHaskellDepends = [
- base bytestring containers old-time process QuickCheck random
- ];
+ executableHaskellDepends = [ base bytestring random ];
jailbreak = true;
homepage = "http://biohaskell.org/Libraries/Bio";
description = "A bioinformatics library";
@@ -43565,6 +45610,7 @@ self: {
homepage = "https://github.com/nikita-volkov/bit-array";
description = "A bit array (aka bitset, bitmap, bit vector) API for numeric types";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"bit-vector" = callPackage
@@ -43667,18 +45713,19 @@ self: {
"bitcoin-payment-channel" = callPackage
({ mkDerivation, aeson, base, base16-bytestring, base58string
- , base64-bytestring, binary, bytestring, cereal, haskoin-core
- , hexstring, QuickCheck, scientific, text, time
+ , base64-bytestring, binary, bytestring, cereal, errors
+ , haskoin-core, hexstring, QuickCheck, scientific, text, time
}:
mkDerivation {
pname = "bitcoin-payment-channel";
- version = "0.1.1.2";
- sha256 = "13e64ee669f4752947170940b42afdcb43aa8bcde503a967370492ff12d6f9fc";
+ version = "0.2.0.0";
+ sha256 = "0bfb82323eaf0064990c17cd2e544416c8e8dfe71749b01a86fca51eaa1d6dc1";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
aeson base base16-bytestring base58string base64-bytestring binary
- bytestring cereal haskoin-core hexstring scientific text time
+ bytestring cereal errors haskoin-core hexstring scientific text
+ time
];
executableHaskellDepends = [
aeson base base16-bytestring base58string base64-bytestring binary
@@ -43831,7 +45878,7 @@ self: {
hydraPlatforms = [ "x86_64-darwin" ];
}) {};
- "bits" = callPackage
+ "bits_0_4" = callPackage
({ mkDerivation, base, bytes, directory, doctest, filepath, mtl
, transformers
}:
@@ -43847,6 +45894,22 @@ self: {
homepage = "http://github.com/analytics/bits";
description = "Various bit twiddling and bitwise serialization primitives";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "bits" = callPackage
+ ({ mkDerivation, base, bytes, directory, doctest, filepath, mtl
+ , transformers
+ }:
+ mkDerivation {
+ pname = "bits";
+ version = "0.5";
+ sha256 = "5834fbf0c5b4c5d0259f9aae9631c906e184a50606786132896307f15e406f1a";
+ libraryHaskellDepends = [ base bytes mtl transformers ];
+ testHaskellDepends = [ base directory doctest filepath ];
+ homepage = "http://github.com/ekmett/bits";
+ description = "Various bit twiddling and bitwise serialization primitives";
+ license = stdenv.lib.licenses.bsd3;
}) {};
"bits-atomic" = callPackage
@@ -43855,8 +45918,6 @@ self: {
pname = "bits-atomic";
version = "0.1.3";
sha256 = "e0ac3456cf0338e1d5ed33f4c3c6b932d652add2ac827c6a1b6636c6e754cb8d";
- isLibrary = true;
- isExecutable = true;
libraryHaskellDepends = [ base ];
description = "Atomic bit operations on memory locations for low-level synchronization";
license = stdenv.lib.licenses.bsd3;
@@ -43895,8 +45956,6 @@ self: {
pname = "bits-extras";
version = "0.1.3";
sha256 = "27a5dcf562e5f4c011421263859e09f65d4c382cd123abd73807f456f56cc96b";
- isLibrary = true;
- isExecutable = true;
libraryHaskellDepends = [ base ];
librarySystemDepends = [ gcc_s ];
description = "Efficient high-level bit operations not found in Data.Bits";
@@ -44071,18 +46130,19 @@ self: {
}) {};
"bitx-bitcoin" = callPackage
- ({ mkDerivation, aeson, base, bytestring, directory, doctest, hspec
- , http-client, http-client-tls, http-types, microlens, microlens-th
- , network, QuickCheck, safe, scientific, split, text, time
+ ({ mkDerivation, aeson, base, bytestring, directory, doctest
+ , exceptions, hspec, http-client, http-client-tls, http-types
+ , microlens, microlens-th, network, QuickCheck, safe, scientific
+ , split, text, time
}:
mkDerivation {
pname = "bitx-bitcoin";
- version = "0.8.0.0";
- sha256 = "6df64f668a4949fe3efc5f695efef7e05edb6b6d47559ae1a95d5355eee62dd2";
+ version = "0.9.0.1";
+ sha256 = "5a0b9076aafd4ad9939891df0251c8bfaed687d12f4bcb21f46e3a5f85ffd332";
libraryHaskellDepends = [
- aeson base bytestring http-client http-client-tls http-types
- microlens microlens-th network QuickCheck scientific split text
- time
+ aeson base bytestring exceptions http-client http-client-tls
+ http-types microlens microlens-th network QuickCheck scientific
+ split text time
];
testHaskellDepends = [
aeson base bytestring directory doctest hspec http-client
@@ -44941,17 +47001,20 @@ self: {
}) {};
"blink1" = callPackage
- ({ mkDerivation, base, unix }:
+ ({ mkDerivation, base, bytestring, text, unix, usb, vector }:
mkDerivation {
pname = "blink1";
version = "0.4";
sha256 = "128bba0aa3247b4a6546c41b0b7f85ad1869c0ec8aaa20ff2bbb8b89c9e38714";
isLibrary = true;
isExecutable = true;
- libraryHaskellDepends = [ base unix ];
- executableHaskellDepends = [ base unix ];
+ libraryHaskellDepends = [ base bytestring text unix usb vector ];
+ executableHaskellDepends = [
+ base bytestring text unix usb vector
+ ];
description = "Control library for blink(1) LED from ThingM";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"blip" = callPackage
@@ -45170,23 +47233,55 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "bloodhound_0_11_1_0" = callPackage
+ ({ mkDerivation, aeson, base, blaze-builder, bytestring, containers
+ , data-default-class, derive, directory, doctest, doctest-prop
+ , errors, exceptions, filepath, hashable, hspec, http-client
+ , http-types, mtl, mtl-compat, network-uri, QuickCheck
+ , quickcheck-properties, scientific, semigroups, text, time
+ , transformers, unordered-containers, vector
+ }:
+ mkDerivation {
+ pname = "bloodhound";
+ version = "0.11.1.0";
+ sha256 = "ecaf8e6d1bcb197387f8f7862420a362f33f03cb86fd068b8b9a1e462813d557";
+ libraryHaskellDepends = [
+ aeson base blaze-builder bytestring containers data-default-class
+ exceptions hashable http-client http-types mtl mtl-compat
+ network-uri scientific semigroups text time transformers
+ unordered-containers vector
+ ];
+ testHaskellDepends = [
+ aeson base bytestring containers derive directory doctest
+ doctest-prop errors filepath hspec http-client http-types mtl
+ QuickCheck quickcheck-properties semigroups text time
+ unordered-containers vector
+ ];
+ jailbreak = true;
+ homepage = "https://github.com/bitemyapp/bloodhound";
+ description = "ElasticSearch client library for Haskell";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"bloodhound-amazonka-auth" = callPackage
- ({ mkDerivation, amazonka-core, amazonka-elasticsearch, base
- , bloodhound, exceptions, http-client, http-types, tasty
- , tasty-hunit, time, transformers, uri-bytestring
+ ({ mkDerivation, aeson, amazonka, amazonka-core
+ , amazonka-elasticsearch, base, bloodhound, exceptions, http-client
+ , http-client-tls, http-types, lens, retry, tasty, tasty-hunit
+ , text, time, transformers, uri-bytestring
}:
mkDerivation {
pname = "bloodhound-amazonka-auth";
- version = "0.1.0.0";
- sha256 = "8a0bff2793fe8493e3d6239b43da5b15c1d31bfec71cad6bac0b20f0fd57c297";
+ version = "0.1.1.0";
+ sha256 = "cf92a14be0e0d5552f2b00cdb19ab320f93ae612b92589999b674a3984858504";
libraryHaskellDepends = [
amazonka-core amazonka-elasticsearch base bloodhound exceptions
http-client http-types time transformers uri-bytestring
];
testHaskellDepends = [
- amazonka-core base http-client tasty tasty-hunit time
+ aeson amazonka amazonka-core base bloodhound http-client
+ http-client-tls lens retry tasty tasty-hunit text time
];
- jailbreak = true;
homepage = "http://github.com/MichaelXavier/bloodhound-amazonka-auth#readme";
description = "Adds convenient Amazon ElasticSearch Service authentication to Bloodhound";
license = stdenv.lib.licenses.bsd3;
@@ -45372,7 +47467,7 @@ self: {
license = stdenv.lib.licenses.mit;
}) {};
- "bmp" = callPackage
+ "bmp_1_2_5_2" = callPackage
({ mkDerivation, base, binary, bytestring }:
mkDerivation {
pname = "bmp";
@@ -45383,6 +47478,20 @@ self: {
homepage = "http://code.ouroborus.net/bmp";
description = "Read and write uncompressed BMP image files";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "bmp" = callPackage
+ ({ mkDerivation, base, binary, bytestring }:
+ mkDerivation {
+ pname = "bmp";
+ version = "1.2.6.1";
+ sha256 = "077d81403b98c554dd3b55334c3b989ff7fae84f344e7c7e2c2385f5e4cbac55";
+ libraryHaskellDepends = [ base binary bytestring ];
+ jailbreak = true;
+ homepage = "https://github.com/benl23x5/bmp";
+ description = "Read and write uncompressed BMP image files";
+ license = stdenv.lib.licenses.mit;
}) {};
"board-games" = callPackage
@@ -45698,6 +47807,21 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
+ "boring-window-switcher" = callPackage
+ ({ mkDerivation, base, gtk, transformers, X11 }:
+ mkDerivation {
+ pname = "boring-window-switcher";
+ version = "0.1.0.0";
+ sha256 = "8f09a9dca17f7b9275adb05a1e45e0a2571f25c5654566ccaf18dc792322737c";
+ isLibrary = true;
+ isExecutable = true;
+ libraryHaskellDepends = [ base gtk transformers X11 ];
+ executableHaskellDepends = [ base ];
+ homepage = "https://github.com/debug-ito/boring-window-switcher";
+ description = "A boring window switcher";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
"bot" = callPackage
({ mkDerivation, arrows, base, Stream }:
mkDerivation {
@@ -45929,15 +48053,14 @@ self: {
({ mkDerivation, base, containers, GLUT, hosc, hsc3, random }:
mkDerivation {
pname = "bowntz";
- version = "0";
- sha256 = "771d0f4b4fccefd96e58d6c6ddf71d111aaa0c49180f1e0cab6ad61ec0d9b378";
+ version = "1";
+ sha256 = "d65ddea77c5b9ef49a90afb68dc515dc2dcbd08dd0f768ca3309b1b353d9ae2c";
isLibrary = false;
isExecutable = true;
executableHaskellDepends = [
base containers GLUT hosc hsc3 random
];
- jailbreak = true;
- homepage = "http://code.mathr.co.uk/bowntz";
+ homepage = "https://code.mathr.co.uk/bowntz";
description = "audio-visual pseudo-physical simulation of colliding circles";
license = stdenv.lib.licenses.gpl3;
}) {};
@@ -46049,8 +48172,8 @@ self: {
({ mkDerivation, base, mtl, transformers }:
mkDerivation {
pname = "break";
- version = "1.0.0";
- sha256 = "55083f86c32ca20519605bd37e847e3c6e07aeab622395c18e9fc470146cd895";
+ version = "1.0.1";
+ sha256 = "28e0cff1cc4f96aa19ebaac3caad4ca6851e89cd26bd48c4de4f611cbcf95166";
libraryHaskellDepends = [ base mtl transformers ];
jailbreak = true;
description = "Break from a loop";
@@ -46120,15 +48243,10 @@ self: {
pname = "brick";
version = "0.3.1";
sha256 = "0e97e82a8dc3b9eba8f11cdf69818b6a919dbe6e8c7710b55483c3908ecfc7a9";
- isLibrary = true;
- isExecutable = true;
libraryHaskellDepends = [
base containers contravariant data-default deepseq lens
template-haskell text text-zipper transformers vector vty
];
- executableHaskellDepends = [
- base data-default lens text vector vty
- ];
homepage = "https://github.com/jtdaugherty/brick/";
description = "A declarative terminal user interface library";
license = stdenv.lib.licenses.bsd3;
@@ -46144,15 +48262,10 @@ self: {
pname = "brick";
version = "0.4.1";
sha256 = "bea0df7fdcb476fc955f7301e77bfb8845008ab0e36cab2c2dcc1cf679a4595d";
- isLibrary = true;
- isExecutable = true;
libraryHaskellDepends = [
base containers contravariant data-default deepseq lens
template-haskell text text-zipper transformers vector vty
];
- executableHaskellDepends = [
- base data-default lens text vector vty
- ];
homepage = "https://github.com/jtdaugherty/brick/";
description = "A declarative terminal user interface library";
license = stdenv.lib.licenses.bsd3;
@@ -46166,18 +48279,13 @@ self: {
}:
mkDerivation {
pname = "brick";
- version = "0.7";
- sha256 = "99547ab0ebbe3cf298466d4084802a40c3a2bf2021d491f064a39e309d2e596b";
- isLibrary = true;
- isExecutable = true;
+ version = "0.8";
+ sha256 = "f730fd999e070700d90d36aadf8716aaf7d86094900f204f06f6593b5e5b1382";
libraryHaskellDepends = [
base containers contravariant data-default deepseq microlens
microlens-mtl microlens-th template-haskell text text-zipper
transformers vector vty
];
- executableHaskellDepends = [
- base data-default microlens microlens-th text vector vty
- ];
homepage = "https://github.com/jtdaugherty/brick/";
description = "A declarative terminal user interface library";
license = stdenv.lib.licenses.bsd3;
@@ -46205,7 +48313,7 @@ self: {
hydraPlatforms = [ "x86_64-darwin" ];
}) {};
- "broadcast-chan" = callPackage
+ "broadcast-chan_0_1_0" = callPackage
({ mkDerivation, base }:
mkDerivation {
pname = "broadcast-chan";
@@ -46215,6 +48323,19 @@ self: {
homepage = "https://github.com/merijn/broadcast-chan";
description = "Broadcast channel type that avoids 0 reader space leaks";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "broadcast-chan" = callPackage
+ ({ mkDerivation, base }:
+ mkDerivation {
+ pname = "broadcast-chan";
+ version = "0.1.1";
+ sha256 = "ad5bd65a301aff6df38c4111f02e73cce3bcfed7bfae6c66c2e70310f1e985f2";
+ libraryHaskellDepends = [ base ];
+ homepage = "https://github.com/merijn/broadcast-chan";
+ description = "Broadcast channel type that avoids 0 reader space leaks";
+ license = stdenv.lib.licenses.bsd3;
}) {};
"broccoli" = callPackage
@@ -46470,8 +48591,6 @@ self: {
sha256 = "1f3d34897047c124f858b6097bf29ebf250d85aaad74c2c44183607041472bcc";
revision = "1";
editedCabalFile = "1ef2b2d9f4768be3250cf2f971639c1a0e410e6bb9b035e922305c62c5f00887";
- isLibrary = true;
- isExecutable = true;
libraryHaskellDepends = [ base bytestring time unix ];
homepage = "https://github.com/redneb/hs-btrfs";
description = "Bindings to the btrfs API";
@@ -46485,8 +48604,6 @@ self: {
pname = "btrfs";
version = "0.1.2.0";
sha256 = "a1e7bdb44c587686299e3e9e3910fb7a271bcd7462ee6fac0ffccd8c7a60fe0c";
- isLibrary = true;
- isExecutable = true;
libraryHaskellDepends = [ base bytestring time unix ];
homepage = "https://github.com/redneb/hs-btrfs";
description = "Bindings to the btrfs API";
@@ -46649,14 +48766,11 @@ self: {
pname = "bugzilla";
version = "0.2.1.1";
sha256 = "ad30a9b8cbe7e9b994d6898ff68007e0c5a5a45b873e9a52dd51cf68d5945ea5";
- isLibrary = true;
- isExecutable = true;
libraryHaskellDepends = [
aeson base blaze-builder bytestring connection containers
data-default http-conduit http-types iso8601-time resourcet text
time transformers unordered-containers vector
];
- executableHaskellDepends = [ base containers text time ];
jailbreak = true;
homepage = "https://github.com/sethfowler/hsbugzilla";
description = "A Haskell interface to the Bugzilla native REST API";
@@ -46682,13 +48796,12 @@ self: {
}:
mkDerivation {
pname = "buildbox";
- version = "2.1.8.1";
- sha256 = "086a39b3424e4e86a0f5338877ad06847de42e5b868c67446e80dea1540dd445";
+ version = "2.1.9.1";
+ sha256 = "4143193ed3a190a1f9559de05d1070df7df0f2e6cfa905d531aee3acde0c32e7";
libraryHaskellDepends = [
base bytestring containers directory exceptions mtl old-locale
pretty process stm temporary text time
];
- jailbreak = true;
homepage = "http://code.ouroborus.net/buildbox";
description = "Rehackable components for writing buildbots and test harnesses";
license = stdenv.lib.licenses.bsd3;
@@ -47001,8 +49114,6 @@ self: {
pname = "bv";
version = "0.4.1";
sha256 = "dd092150f1792e76e168365d69798d3a27b911ce9de8b21a47c5fed42acf45bb";
- isLibrary = true;
- isExecutable = true;
libraryHaskellDepends = [ base ghc-prim integer-gmp ];
homepage = "https://github.com/iagoabal/haskell-bv";
description = "Bit-vector arithmetic library";
@@ -47018,13 +49129,10 @@ self: {
pname = "byline";
version = "0.2.2.0";
sha256 = "f1a00142d77643a3da1ddabf9d9f1308e7ee1d8ea758d8161ed118a3d7c4123a";
- isLibrary = true;
- isExecutable = true;
libraryHaskellDepends = [
ansi-terminal base colour containers exceptions haskeline mtl
terminfo-hs text transformers
];
- executableHaskellDepends = [ base text ];
jailbreak = true;
homepage = "http://github.com/pjones/byline";
description = "Library for creating command-line interfaces (colors, menus, etc.)";
@@ -47061,8 +49169,6 @@ self: {
pname = "bytedump";
version = "1.0";
sha256 = "ae17b5040f0423eec792505f14d1d3e53f5ff81ddf83524f1c5dc7a16c0dc0dd";
- isLibrary = true;
- isExecutable = true;
libraryHaskellDepends = [ base bytestring ];
homepage = "http://github.com/vincenthz/hs-bytedump";
description = "Flexible byte dump helpers for human readers";
@@ -47543,8 +49649,6 @@ self: {
pname = "bytestring-nums";
version = "0.3.6";
sha256 = "bdca97600d91f00bb3c0f654784e3fbd2d62fcf4671820578105487cdf39e7cd";
- isLibrary = true;
- isExecutable = true;
libraryHaskellDepends = [ base bytestring containers ];
homepage = "http://github.com/solidsnack/bytestring-nums";
description = "Parse numeric literals from ByteStrings";
@@ -47557,10 +49661,11 @@ self: {
pname = "bytestring-plain";
version = "0.1.0.2";
sha256 = "9e2dfbba5b90c6b121953f8a18afbab4041c5a26b8af350360ec888a6ce6fddd";
+ revision = "1";
+ editedCabalFile = "cab22ad55f84b4ec53b0506c4d50d5f29a2235e377444dda20e5897d0adb5632";
libraryHaskellDepends = [
base bytestring deepseq ghc-prim hashable
];
- jailbreak = true;
homepage = "https://github.com/hvr/bytestring-plain";
description = "Plain byte strings ('ForeignPtr'-less 'ByteString's)";
license = stdenv.lib.licenses.bsd3;
@@ -47669,13 +49774,13 @@ self: {
}) {};
"bytestring-short" = callPackage
- ({ mkDerivation, base, bytestring }:
+ ({ mkDerivation, base, bytestring, deepseq, QuickCheck }:
mkDerivation {
pname = "bytestring-short";
version = "0.1.0.0";
sha256 = "39b303951403758dcf626f48e4501b93865d3b4d52d90ae594bbe91a4fc9fca6";
- libraryHaskellDepends = [ base bytestring ];
- testHaskellDepends = [ base ];
+ libraryHaskellDepends = [ base bytestring deepseq ];
+ testHaskellDepends = [ base bytestring QuickCheck ];
description = "Backport copy of ShortByteString";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -47688,10 +49793,11 @@ self: {
pname = "bytestring-show";
version = "0.3.5.6";
sha256 = "29242efd16951ebba888218c469a99ff25b19ab74ee1e0d7b4db09b8800a0812";
+ revision = "1";
+ editedCabalFile = "a923f5b218cbfc39a6fea6e8d5cb09bb96373e4b2ca8dfd11b1c05253088d858";
libraryHaskellDepends = [
array base binary bytestring containers integer-gmp
];
- jailbreak = true;
homepage = "http://code.haskell.org/~dolio/";
description = "Efficient conversion of values into readable byte strings";
license = stdenv.lib.licenses.bsd3;
@@ -47766,24 +49872,24 @@ self: {
}) {};
"bytestringparser" = callPackage
- ({ mkDerivation, base, bytestring, containers }:
+ ({ mkDerivation, base }:
mkDerivation {
pname = "bytestringparser";
version = "0.3";
sha256 = "0d0b686fcb68901a54045377e003aeb9b6fd6877c107b2e830254e12eeda29bd";
- libraryHaskellDepends = [ base bytestring containers ];
+ libraryHaskellDepends = [ base ];
description = "Combinator parsing with Data.ByteString.Lazy";
license = stdenv.lib.licenses.bsd3;
hydraPlatforms = [ "x86_64-darwin" ];
}) {};
"bytestringparser-temporary" = callPackage
- ({ mkDerivation, base, bytestring, containers }:
+ ({ mkDerivation, base }:
mkDerivation {
pname = "bytestringparser-temporary";
version = "0.4.1";
sha256 = "eda2b21f45cc42f057f8afdee0969cbdec9b91f7ded3c0e6d7f555580cee2a05";
- libraryHaskellDepends = [ base bytestring containers ];
+ libraryHaskellDepends = [ base ];
description = "Combinator parsing with Data.ByteString.Lazy";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -47828,7 +49934,7 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {inherit (pkgs) bzip2;};
- "bzlib-conduit" = callPackage
+ "bzlib-conduit_0_2_1_3" = callPackage
({ mkDerivation, base, bindings-DSL, bytestring, bzip2, conduit
, conduit-extra, data-default, hspec, mtl, QuickCheck, random
, resourcet
@@ -47849,6 +49955,30 @@ self: {
homepage = "https://github.com/snoyberg/bzlib-conduit";
description = "Streaming compression/decompression via conduits";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {inherit (pkgs) bzip2;};
+
+ "bzlib-conduit" = callPackage
+ ({ mkDerivation, base, bindings-DSL, bytestring, bzip2, conduit
+ , conduit-extra, data-default, hspec, mtl, QuickCheck, random
+ , resourcet
+ }:
+ mkDerivation {
+ pname = "bzlib-conduit";
+ version = "0.2.1.4";
+ sha256 = "2d707004ccc83d9aa283805574c7253db5089854abb3a7350587de62f2b2fd1d";
+ libraryHaskellDepends = [
+ base bindings-DSL bytestring conduit conduit-extra data-default mtl
+ resourcet
+ ];
+ librarySystemDepends = [ bzip2 ];
+ testHaskellDepends = [
+ base bytestring conduit conduit-extra hspec QuickCheck random
+ resourcet
+ ];
+ homepage = "https://github.com/snoyberg/bzlib-conduit";
+ description = "Streaming compression/decompression via conduits";
+ license = stdenv.lib.licenses.bsd3;
}) {inherit (pkgs) bzip2;};
"c-dsl" = callPackage
@@ -48312,7 +50442,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "cabal-debian" = callPackage
+ "cabal-debian_4_32_4" = callPackage
({ mkDerivation, ansi-wl-pprint, base, bifunctors, Cabal
, containers, data-default, debian, deepseq, Diff, directory
, exceptions, filepath, hsemail, HUnit, lens, memoize, mtl
@@ -48347,6 +50477,41 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
+ "cabal-debian" = callPackage
+ ({ mkDerivation, ansi-wl-pprint, base, bifunctors, Cabal
+ , containers, data-default, debian, deepseq, Diff, directory
+ , exceptions, filepath, hsemail, HUnit, lens, memoize, mtl
+ , network-uri, newtype-generics, optparse-applicative, parsec
+ , pretty, process, pureMD5, regex-tdfa, set-extra, syb, text, unix
+ , Unixutils, utf8-string
+ }:
+ mkDerivation {
+ pname = "cabal-debian";
+ version = "4.32.5";
+ sha256 = "7e78c2ed2fbb2ea57bef4eb4a8b8b1a1b8b741097132759eb28353124711d24e";
+ isLibrary = true;
+ isExecutable = true;
+ libraryHaskellDepends = [
+ ansi-wl-pprint base bifunctors Cabal containers data-default debian
+ deepseq Diff directory exceptions filepath hsemail HUnit lens
+ memoize mtl network-uri newtype-generics optparse-applicative
+ parsec pretty process pureMD5 regex-tdfa set-extra syb text unix
+ Unixutils utf8-string
+ ];
+ executableHaskellDepends = [
+ base Cabal debian lens mtl pretty Unixutils
+ ];
+ testHaskellDepends = [
+ base Cabal containers debian Diff directory filepath hsemail HUnit
+ lens pretty process text
+ ];
+ doCheck = false;
+ homepage = "https://github.com/ddssff/cabal-debian";
+ description = "Create a Debianization for a Cabal package";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"cabal-dependency-licenses" = callPackage
({ mkDerivation, base, Cabal, containers, directory, filepath }:
mkDerivation {
@@ -48475,6 +50640,8 @@ self: {
pname = "cabal-helper";
version = "0.6.2.0";
sha256 = "32adfd7deb1a227aa9b2fa5d9c6768ed395c1acaa9e5e0c5698ede52766daa2e";
+ revision = "1";
+ editedCabalFile = "218af6a209ee60126eb7997b51509638df1836d074267850d0e19248845a7111";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -48504,6 +50671,8 @@ self: {
pname = "cabal-helper";
version = "0.6.3.0";
sha256 = "95d62411205c03f87737daaa790e885e73fea875194366a0b2168af494735f04";
+ revision = "1";
+ editedCabalFile = "068fec3003f2be2666502398dc893e9c42b6f412462c275884ad811e85811aea";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -48533,6 +50702,8 @@ self: {
pname = "cabal-helper";
version = "0.6.3.1";
sha256 = "c19a9a87c54f6649e0f8cbb3a070244bff9fcc5b9ae783c00c049867fb1a7afe";
+ revision = "1";
+ editedCabalFile = "63136d3d9e1dc39c8fd90687c031727aa7c8c5f38dcf2b26a3b652a44b4d8041";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -48563,6 +50734,8 @@ self: {
pname = "cabal-helper";
version = "0.7.1.0";
sha256 = "7c78b875b5f246b8422b641923d2ffe593bf65ce9e99373e19ef8372df8db66f";
+ revision = "2";
+ editedCabalFile = "b84eff37825d78f316e9712e175937b54b35d7c67eed8741a3db160800fbd177";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -49120,6 +51293,7 @@ self: {
];
description = "A monitor for cabal builds";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"cabal-nirvana" = callPackage
@@ -49335,8 +51509,8 @@ self: {
}) {};
"cabal-rpm" = callPackage
- ({ mkDerivation, base, Cabal, directory, filepath, process, time
- , unix
+ ({ mkDerivation, base, Cabal, directory, filepath, old-locale
+ , process, time, unix
}:
mkDerivation {
pname = "cabal-rpm";
@@ -49345,7 +51519,7 @@ self: {
isLibrary = false;
isExecutable = true;
executableHaskellDepends = [
- base Cabal directory filepath process time unix
+ base Cabal directory filepath old-locale process time unix
];
homepage = "https://github.com/juhp/cabal-rpm";
description = "RPM packaging tool for Haskell Cabal-based packages";
@@ -49622,10 +51796,9 @@ self: {
({ mkDerivation, base, Cabal, QuickCheck }:
mkDerivation {
pname = "cabal-test-quickcheck";
- version = "0.1.6";
- sha256 = "71c52f6439610ce48f67c86bd22a6f23808dfb21384c97135dae7538c7dfce65";
+ version = "0.1.7";
+ sha256 = "a48e74605af551a527987ad35ead89ae07477ffa1216165af35b9b0fdada0621";
libraryHaskellDepends = [ base Cabal QuickCheck ];
- jailbreak = true;
homepage = "https://github.com/zmthy/cabal-test-quickcheck";
description = "QuickCheck for Cabal";
license = stdenv.lib.licenses.mit;
@@ -49732,25 +51905,34 @@ self: {
}) {};
"cabal2nix" = callPackage
- ({ mkDerivation, base, Cabal, containers, deepseq, directory
- , doctest, filepath, hackage-db, mtl, pretty, process, regex-posix
- , transformers
+ ({ mkDerivation, aeson, ansi-wl-pprint, base, bytestring, Cabal
+ , containers, deepseq, directory, distribution-nixpkgs, filepath
+ , hackage-db, language-nix, lens, monad-par, monad-par-extras, mtl
+ , optparse-applicative, pretty, process, SHA, split, stackage-types
+ , text, time, transformers, utf8-string, yaml
}:
mkDerivation {
pname = "cabal2nix";
- version = "1.73";
- sha256 = "3bf693e683847ca4fc5326b842b015989cc2f90c0be85870aa1ca932516653db";
- revision = "5";
- editedCabalFile = "54866b8081ddfc72761c1f38cc96df6782682058cd09b465300562910f57e2ea";
- isLibrary = false;
+ version = "2.0";
+ sha256 = "cc9e277133d371d8ffd8e0755464051f132775e1400981573db26aef7610c152";
+ revision = "1";
+ editedCabalFile = "ac3c02fa357a9aa1e262de189e43e935cbe7aab9b313bb355314884cb5a0307d";
+ isLibrary = true;
isExecutable = true;
- executableHaskellDepends = [
- base Cabal containers deepseq directory filepath hackage-db mtl
- pretty process regex-posix transformers
+ libraryHaskellDepends = [
+ aeson ansi-wl-pprint base bytestring Cabal containers deepseq
+ directory distribution-nixpkgs filepath hackage-db language-nix
+ lens optparse-applicative pretty process SHA split text
+ transformers yaml
];
- testHaskellDepends = [ base doctest ];
- jailbreak = true;
- homepage = "http://github.com/NixOS/cabal2nix";
+ executableHaskellDepends = [
+ aeson ansi-wl-pprint base bytestring Cabal containers deepseq
+ directory distribution-nixpkgs filepath hackage-db language-nix
+ lens monad-par monad-par-extras mtl optparse-applicative pretty
+ process SHA split stackage-types text time transformers utf8-string
+ yaml
+ ];
+ homepage = "https://github.com/nixos/cabal2nix#readme";
description = "Convert Cabal files into Nix build instructions";
license = stdenv.lib.licenses.bsd3;
maintainers = with stdenv.lib.maintainers; [ peti ];
@@ -49986,8 +52168,6 @@ self: {
pname = "cacophony";
version = "0.6.0";
sha256 = "2a1b2cf962fbf2743efb36439428b89882add585a4877436533b9fc755d98a9c";
- isLibrary = true;
- isExecutable = true;
libraryHaskellDepends = [
base bytestring cryptonite deepseq free lens memory mtl
];
@@ -50010,8 +52190,6 @@ self: {
pname = "cacophony";
version = "0.7.0";
sha256 = "e67a7fb0e957b47dd6a9b4b956cad17ff42022bca119bb08422d52050a51379f";
- isLibrary = true;
- isExecutable = true;
libraryHaskellDepends = [
base bytestring cryptonite deepseq free lens memory monad-coroutine
mtl transformers
@@ -50068,6 +52246,7 @@ self: {
jailbreak = true;
homepage = "https://github.com/ajtulloch/caffegraph/";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"cairo_0_13_0_5" = callPackage
@@ -50149,13 +52328,14 @@ self: {
}) {inherit (pkgs) cairo;};
"cairo" = callPackage
- ({ mkDerivation, array, base, bytestring, cairo, mtl, text
- , utf8-string
+ ({ mkDerivation, array, base, bytestring, Cabal, cairo
+ , gtk2hs-buildtools, mtl, text, utf8-string
}:
mkDerivation {
pname = "cairo";
version = "0.13.3.0";
sha256 = "fe895ad001228f56b167ab76de1d645f46966062544bf831b0fb9fa7e938ff08";
+ setupHaskellDepends = [ base Cabal gtk2hs-buildtools ];
libraryHaskellDepends = [
array base bytestring mtl text utf8-string
];
@@ -50356,20 +52536,35 @@ self: {
}:
mkDerivation {
pname = "caledon";
- version = "3.2.1.0";
- sha256 = "e9375150e95a7d02fe927a1d27209e925622bcdef28772ddbee569f789c5e355";
+ version = "3.2.2.0";
+ sha256 = "684d9af96e1ed25e995f5ec9c7205b32c0af77d52a24d053b4a90c673658656d";
isLibrary = false;
isExecutable = true;
executableHaskellDepends = [
base containers cpphs lens mtl parsec transformers
];
- jailbreak = true;
homepage = "https://github.com/mmirman/caledon";
description = "a logic programming language based on the calculus of constructions";
license = stdenv.lib.licenses.gpl3;
hydraPlatforms = [ "x86_64-darwin" ];
}) {};
+ "calendar-recycling" = callPackage
+ ({ mkDerivation, base, containers, html, old-time, utility-ht }:
+ mkDerivation {
+ pname = "calendar-recycling";
+ version = "0.0";
+ sha256 = "a33e62c5bdbbece82491b6b795510496467df9993c715c819a7aad7707ee7963";
+ isLibrary = false;
+ isExecutable = true;
+ executableHaskellDepends = [
+ base containers html old-time utility-ht
+ ];
+ homepage = "http://hub.darcs.net/thielema/calendar-recycling";
+ description = "List years with the same calendars";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
"call" = callPackage
({ mkDerivation, base, bindings-portaudio, boundingboxes, colors
, containers, control-bool, deepseq, directory, filepath, free
@@ -50381,8 +52576,6 @@ self: {
pname = "call";
version = "0.1.4.2";
sha256 = "2fe8f1ade21ea24c67ab2447189f756b75a60cbb4d2221a0058bc62050c00461";
- isLibrary = true;
- isExecutable = true;
libraryHaskellDepends = [
base bindings-portaudio boundingboxes colors containers
control-bool deepseq directory filepath free freetype2 GLFW-b
@@ -50390,7 +52583,6 @@ self: {
OpenGL OpenGLRaw random template-haskell text transformers vector
WAVE
];
- executableHaskellDepends = [ base lens ];
jailbreak = true;
homepage = "https://github.com/fumieval/call";
description = "The call game engine";
@@ -50419,28 +52611,37 @@ self: {
}) {};
"camfort" = callPackage
- ({ mkDerivation, alex, array, base, comonad, containers, directory
- , fclabels, generic-deriving, happy, haskell-src, hmatrix
- , language-fortran, matrix, mtl, syb, syz, template-haskell, text
- , transformers, uniplate, vector
+ ({ mkDerivation, alex, array, base, bytestring, comonad, containers
+ , directory, fclabels, fgl, filepath, fortran-src, generic-deriving
+ , GenericPretty, ghc-prim, happy, haskell-src, hmatrix, hspec
+ , language-fortran, matrix, mtl, QuickCheck, regex-base, regex-pcre
+ , syb, syz, template-haskell, text, transformers, uniplate, vector
}:
mkDerivation {
pname = "camfort";
- version = "0.700";
- sha256 = "f5978dfbc1af77fc7fb0ff0190fae5d58f797301acbec7115ce66ab146913151";
+ version = "0.800";
+ sha256 = "353634acb37e99cda4f747fc61309583c9c556b9eec579db79dd089c0202a450";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
- array base comonad containers directory fclabels generic-deriving
+ array base bytestring comonad containers directory fclabels fgl
+ filepath fortran-src generic-deriving GenericPretty ghc-prim
haskell-src hmatrix language-fortran matrix mtl syb syz
template-haskell text transformers uniplate vector
];
libraryToolDepends = [ alex happy ];
executableHaskellDepends = [
- array base comonad containers directory fclabels generic-deriving
- haskell-src hmatrix language-fortran matrix mtl syb syz
- template-haskell text transformers uniplate vector
+ array base bytestring comonad containers directory fclabels fgl
+ filepath fortran-src generic-deriving GenericPretty ghc-prim
+ haskell-src hmatrix language-fortran matrix mtl QuickCheck
+ regex-base regex-pcre syb syz template-haskell text transformers
+ uniplate vector
];
+ testHaskellDepends = [
+ base bytestring containers directory filepath fortran-src hspec mtl
+ QuickCheck uniplate
+ ];
+ jailbreak = true;
description = "CamFort - Cambridge Fortran infrastructure";
license = stdenv.lib.licenses.asl20;
hydraPlatforms = [ "x86_64-darwin" ];
@@ -50524,8 +52725,8 @@ self: {
}:
mkDerivation {
pname = "canteven-log";
- version = "0.3.0.2";
- sha256 = "296cc4329510c766b973d98c2e6f1186404df46eaf0f10f53fec432a3a5a3379";
+ version = "0.3.0.3";
+ sha256 = "2496d0cc6aad2108ad9982229e078144d8c8a7f427e86803a1e10a6b6bc6a36b";
libraryHaskellDepends = [
aeson base bytestring canteven-config directory fast-logger
filepath hslogger monad-logger template-haskell text time
@@ -50677,8 +52878,6 @@ self: {
pname = "caramia";
version = "0.7.2.2";
sha256 = "fa3129d63816e1ccb47a57808ece432a2b6ab652eeba15ac6a76d6799af277b3";
- isLibrary = true;
- isExecutable = true;
libraryHaskellDepends = [
base bytestring containers exceptions gl lens linear mtl semigroups
text transformers vector
@@ -50790,8 +52989,6 @@ self: {
pname = "cartel";
version = "0.14.2.6";
sha256 = "8c4540ece37f0a708032d06bde61a4d6a198ba3b8242fafd385dfb121f5aa416";
- isLibrary = true;
- isExecutable = true;
libraryHaskellDepends = [
base directory filepath time transformers
];
@@ -50814,8 +53011,27 @@ self: {
pname = "cartel";
version = "0.14.2.8";
sha256 = "c8d36712a4504f3a22d6290d8952535f32c533b33d4e54fa461a0867c7e09989";
- isLibrary = true;
- isExecutable = true;
+ libraryHaskellDepends = [
+ base directory filepath time transformers
+ ];
+ testHaskellDepends = [
+ base directory filepath multiarg QuickCheck random tasty
+ tasty-quickcheck tasty-th time transformers
+ ];
+ homepage = "http://www.github.com/massysett/cartel";
+ description = "Specify Cabal files in Haskell";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "cartel_0_16_0_0" = callPackage
+ ({ mkDerivation, base, directory, filepath, multiarg, QuickCheck
+ , random, tasty, tasty-quickcheck, tasty-th, time, transformers
+ }:
+ mkDerivation {
+ pname = "cartel";
+ version = "0.16.0.0";
+ sha256 = "67594fa408d74553038b677b650863f457309d69d968b01f4dda3bdf46a8b6b3";
libraryHaskellDepends = [
base directory filepath time transformers
];
@@ -50830,21 +53046,28 @@ self: {
}) {};
"cartel" = callPackage
- ({ mkDerivation, base, directory, filepath, multiarg, QuickCheck
- , random, tasty, tasty-quickcheck, tasty-th, time, transformers
+ ({ mkDerivation, base, directory, filepath, multiarg
+ , optparse-applicative, pretty-show, process, QuickCheck, random
+ , split, tasty, tasty-quickcheck, tasty-th, time, transformers
}:
mkDerivation {
pname = "cartel";
- version = "0.16.0.0";
- sha256 = "67594fa408d74553038b677b650863f457309d69d968b01f4dda3bdf46a8b6b3";
+ version = "0.18.0.2";
+ sha256 = "7b27aa2cbeb73b1d5bf93214f290275025c3231fee23b32d80de104ec76ec270";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
- base directory filepath time transformers
+ base directory filepath optparse-applicative pretty-show process
+ split time transformers
+ ];
+ executableHaskellDepends = [
+ base directory filepath optparse-applicative pretty-show process
+ split time transformers
];
testHaskellDepends = [
- base directory filepath multiarg QuickCheck random tasty
- tasty-quickcheck tasty-th time transformers
+ base directory filepath multiarg optparse-applicative pretty-show
+ process QuickCheck random split tasty tasty-quickcheck tasty-th
+ time transformers
];
homepage = "http://www.github.com/massysett/cartel";
description = "Specify Cabal files in Haskell";
@@ -50890,7 +53113,7 @@ self: {
];
homepage = "http://github.com/ghorn/casadi-bindings";
description = "mid-level bindings to CasADi";
- license = stdenv.lib.licenses.gpl3;
+ license = stdenv.lib.licenses.lgpl3;
hydraPlatforms = [ "x86_64-darwin" ];
}) {casadi = null;};
@@ -50908,7 +53131,7 @@ self: {
libraryPkgconfigDepends = [ casadi_control ];
jailbreak = true;
description = "low level bindings to casadi-control";
- license = stdenv.lib.licenses.gpl3;
+ license = stdenv.lib.licenses.lgpl3;
hydraPlatforms = [ "x86_64-darwin" ];
}) {casadi_control = null;};
@@ -50925,7 +53148,7 @@ self: {
];
libraryPkgconfigDepends = [ casadi ];
description = "autogenerated low level bindings to casadi";
- license = stdenv.lib.licenses.gpl3;
+ license = stdenv.lib.licenses.lgpl3;
hydraPlatforms = [ "x86_64-darwin" ];
}) {casadi = null;};
@@ -50939,7 +53162,7 @@ self: {
libraryPkgconfigDepends = [ casadi ];
homepage = "http://github.com/ghorn/casadi-bindings";
description = "low level bindings to CasADi";
- license = stdenv.lib.licenses.gpl3;
+ license = stdenv.lib.licenses.lgpl3;
hydraPlatforms = [ "x86_64-darwin" ];
}) {casadi = null;};
@@ -50956,7 +53179,7 @@ self: {
];
libraryPkgconfigDepends = [ casadi_ipopt_interface ];
description = "low level bindings to casadi-ipopt_interface";
- license = stdenv.lib.licenses.gpl3;
+ license = stdenv.lib.licenses.lgpl3;
hydraPlatforms = [ "x86_64-darwin" ];
}) {casadi_ipopt_interface = null;};
@@ -50973,7 +53196,7 @@ self: {
];
libraryPkgconfigDepends = [ casadi_snopt_interface ];
description = "low level bindings to casadi-snopt_interface";
- license = stdenv.lib.licenses.gpl3;
+ license = stdenv.lib.licenses.lgpl3;
hydraPlatforms = [ "x86_64-darwin" ];
}) {casadi_snopt_interface = null;};
@@ -51231,8 +53454,8 @@ self: {
}:
mkDerivation {
pname = "casr-logbook";
- version = "0.0.9";
- sha256 = "02651b7d7e3ada1f99f5e9026f5a994677b17dd53764d150afe26fb4759d3a0a";
+ version = "0.0.12";
+ sha256 = "83d8075b9d212ec15b06fc9d197fb573de177386624a002bb6fb6bbf9f951c6d";
libraryHaskellDepends = [ base containers ];
testHaskellDepends = [
base directory doctest filepath QuickCheck template-haskell
@@ -51537,6 +53760,28 @@ self: {
hydraPlatforms = [ "x86_64-darwin" ];
}) {};
+ "cassava-megaparsec" = callPackage
+ ({ mkDerivation, base, bytestring, cassava, containers, hspec
+ , hspec-megaparsec, megaparsec, unordered-containers, vector
+ }:
+ mkDerivation {
+ pname = "cassava-megaparsec";
+ version = "0.1.0";
+ sha256 = "8d77229766aec5e9e31e145138be981cca791699a3d66010619604827c590702";
+ revision = "2";
+ editedCabalFile = "bc6342181a72157c5f8900ef98a8226e5826b93b75ecd34aedc1c0e8b589a93a";
+ libraryHaskellDepends = [
+ base bytestring cassava containers megaparsec unordered-containers
+ vector
+ ];
+ testHaskellDepends = [
+ base bytestring cassava hspec hspec-megaparsec vector
+ ];
+ homepage = "https://github.com/stackbuilders/cassava-megaparsec";
+ description = "Megaparsec parser of CSV files that plays nicely with Cassava";
+ license = stdenv.lib.licenses.mit;
+ }) {};
+
"cassava-streams" = callPackage
({ mkDerivation, base, bytestring, cassava, io-streams, QuickCheck
, tasty, tasty-quickcheck, vector
@@ -51545,8 +53790,6 @@ self: {
pname = "cassava-streams";
version = "0.2.0.0";
sha256 = "b4e825309533f9bd33728de92950eea33f362ea5bfd4e04689777b3760f69d6d";
- isLibrary = true;
- isExecutable = true;
libraryHaskellDepends = [
base bytestring cassava io-streams vector
];
@@ -51880,8 +54123,6 @@ self: {
pname = "cci";
version = "0.3.1";
sha256 = "87390d636e6877bfb982ce60b3accef9d73153ea03632cec967526eb8eb96a5f";
- isLibrary = true;
- isExecutable = true;
libraryHaskellDepends = [ base bytestring ];
librarySystemDepends = [ cci ];
testHaskellDepends = [
@@ -52193,6 +54434,23 @@ self: {
hydraPlatforms = [ "x86_64-darwin" ];
}) {};
+ "cereal-io-streams" = callPackage
+ ({ mkDerivation, base, bytestring, cereal, derive, HUnit
+ , io-streams, mtl, QuickCheck, tasty, tasty-hunit, tasty-quickcheck
+ }:
+ mkDerivation {
+ pname = "cereal-io-streams";
+ version = "0.0.1.0";
+ sha256 = "b32bb775ec6f93fcc7246b5903473c893995b45d11f82c29913a20f459e568f1";
+ libraryHaskellDepends = [ base bytestring cereal io-streams ];
+ testHaskellDepends = [
+ base bytestring cereal derive HUnit io-streams mtl QuickCheck tasty
+ tasty-hunit tasty-quickcheck
+ ];
+ description = "io-streams support for the cereal binary serialization library";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
"cereal-plus" = callPackage
({ mkDerivation, array, base, bytestring, cereal, containers
, errors, hashable, hashtables, HTF, HUnit, mmorph, mtl, QuickCheck
@@ -52219,6 +54477,23 @@ self: {
hydraPlatforms = [ "x86_64-darwin" ];
}) {};
+ "cereal-streams" = callPackage
+ ({ mkDerivation, base, bytestring, cereal, derive, HUnit
+ , io-streams, mtl, QuickCheck, tasty, tasty-hunit, tasty-quickcheck
+ }:
+ mkDerivation {
+ pname = "cereal-streams";
+ version = "0.0.1.0";
+ sha256 = "f2f7852ee6a64bfe8d526ee46d178973a58079c8a3f8390f2a367546b4d8b7cc";
+ libraryHaskellDepends = [ base bytestring cereal io-streams ];
+ testHaskellDepends = [
+ base bytestring cereal derive HUnit io-streams mtl QuickCheck tasty
+ tasty-hunit tasty-quickcheck
+ ];
+ description = "Use cereal to encode/decode io-streams";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
"cereal-text" = callPackage
({ mkDerivation, base, cereal, text }:
mkDerivation {
@@ -52255,8 +54530,6 @@ self: {
sha256 = "e6257b4b0e884db8a817d265d9a7f9a6c76af8190504f32dadbbf64b0fcee5a1";
revision = "1";
editedCabalFile = "6b4b703a1c34a9fa3e0223f3ff2796183c7b9b7351da1ad34478225637e837ba";
- isLibrary = true;
- isExecutable = true;
libraryHaskellDepends = [
asn1-data base bytestring containers crypto-pubkey-types cryptohash
directory filepath mtl pem process time
@@ -52473,20 +54746,20 @@ self: {
({ mkDerivation, ansi-terminal, array, async, base, bytestring
, cmdargs, containers, directory, dlist, either, filepath, ghc-prim
, mtl, process, regex-base, regex-pcre, regex-posix, safe, split
- , stm, stringsearch, transformers, unix-compat
- , unordered-containers
+ , stm, stringsearch, transformers, unicode-show, unix-compat
+ , unordered-containers, utf8-string
}:
mkDerivation {
pname = "cgrep";
- version = "6.6.14";
- sha256 = "9e46ab2f0014e585f3bd8fd85a86926acec04b338bdfe2d6af82ca35cab130cd";
+ version = "6.6.16";
+ sha256 = "7161e331f409ee95abfab14f720ad300ce4c9bd37a9fae74de6643c0f30b134b";
isLibrary = false;
isExecutable = true;
executableHaskellDepends = [
ansi-terminal array async base bytestring cmdargs containers
directory dlist either filepath ghc-prim mtl process regex-base
regex-pcre regex-posix safe split stm stringsearch transformers
- unix-compat unordered-containers
+ unicode-show unix-compat unordered-containers utf8-string
];
homepage = "http://awgn.github.io/cgrep/";
description = "Command line tool";
@@ -52533,7 +54806,6 @@ self: {
array base binary bytestring Codec-Image-DevIL containers
data-reify directory GLUT OpenGLRaw process time
];
- executableHaskellDepends = [ base ];
homepage = "http://www.ittc.ku.edu/csdl/fpg/ChalkBoard";
description = "Combinators for building and processing 2D images";
license = stdenv.lib.licenses.bsd3;
@@ -52795,9 +55067,8 @@ self: {
}) {};
"cheapskate_0_1_0_4" = callPackage
- ({ mkDerivation, aeson, base, blaze-html, bytestring, containers
- , data-default, http-types, mtl, syb, text, uniplate, wai
- , wai-extra, xss-sanitize
+ ({ mkDerivation, base, blaze-html, bytestring, containers
+ , data-default, mtl, syb, text, uniplate, xss-sanitize
}:
mkDerivation {
pname = "cheapskate";
@@ -52809,9 +55080,7 @@ self: {
base blaze-html containers data-default mtl syb text uniplate
xss-sanitize
];
- executableHaskellDepends = [
- aeson base blaze-html bytestring http-types text wai wai-extra
- ];
+ executableHaskellDepends = [ base blaze-html bytestring text ];
jailbreak = true;
homepage = "http://github.com/jgm/cheapskate";
description = "Experimental markdown processor";
@@ -52820,23 +55089,22 @@ self: {
}) {};
"cheapskate" = callPackage
- ({ mkDerivation, aeson, base, blaze-html, bytestring, containers
- , data-default, http-types, mtl, syb, text, uniplate, wai
- , wai-extra, xss-sanitize
+ ({ mkDerivation, base, blaze-html, bytestring, containers
+ , data-default, mtl, syb, text, uniplate, xss-sanitize
}:
mkDerivation {
pname = "cheapskate";
version = "0.1.0.5";
sha256 = "7a63b7ffc4976d006c5f693569a5ffd7a887e83d126d1dce9bbe8b5fbaabfa32";
+ revision = "1";
+ editedCabalFile = "29f13526ac3bce29f1bf861959a4e731b3a03a1af15fafecdd7f89d6b2b508d5";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
base blaze-html containers data-default mtl syb text uniplate
xss-sanitize
];
- executableHaskellDepends = [
- aeson base blaze-html bytestring http-types text wai wai-extra
- ];
+ executableHaskellDepends = [ base blaze-html bytestring text ];
homepage = "http://github.com/jgm/cheapskate";
description = "Experimental markdown processor";
license = stdenv.lib.licenses.bsd3;
@@ -53136,6 +55404,7 @@ self: {
homepage = "https://github.com/mocnik-science/chorale-geo";
description = "A module containing basic geo functions";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"chp" = callPackage
@@ -53289,7 +55558,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "chunked-data" = callPackage
+ "chunked-data_0_2_0" = callPackage
({ mkDerivation, base, blaze-builder, bytestring, containers
, mono-traversable, semigroups, text, transformers, vector
}:
@@ -53306,6 +55575,23 @@ self: {
homepage = "https://github.com/fpco/chunked-data";
description = "Typeclasses for dealing with various chunked data representations";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "chunked-data" = callPackage
+ ({ mkDerivation, base, bytestring, containers, semigroups, text
+ , transformers, vector
+ }:
+ mkDerivation {
+ pname = "chunked-data";
+ version = "0.3.0";
+ sha256 = "e1be9da64c3682fd907aa9f1a118e8bfba7964d509fddf54bd245b199dc15f2f";
+ libraryHaskellDepends = [
+ base bytestring containers semigroups text transformers vector
+ ];
+ homepage = "https://github.com/snoyberg/mono-traversable";
+ description = "Typeclasses for dealing with various chunked data representations";
+ license = stdenv.lib.licenses.mit;
}) {};
"chunks" = callPackage
@@ -53334,7 +55620,7 @@ self: {
testHaskellDepends = [ base binary bytestring HUnit text ];
jailbreak = true;
description = "Human-readable storage of text/binary objects";
- license = stdenv.lib.licenses.gpl3;
+ license = stdenv.lib.licenses.lgpl3;
}) {};
"church-list" = callPackage
@@ -53463,8 +55749,6 @@ self: {
pname = "cipher-aes128";
version = "0.6.4";
sha256 = "4a95c3f572aacbe3b0d68c593f45c16014ef96b5e38dd32a8fb6466e10bf7f24";
- isLibrary = true;
- isExecutable = true;
libraryHaskellDepends = [
base bytestring cereal crypto-api tagged
];
@@ -53480,8 +55764,6 @@ self: {
pname = "cipher-aes128";
version = "0.7.0.1";
sha256 = "18aecff826ca46e188062b972dfbda7360f6f73e2ffe45aa15bdc676debb7662";
- isLibrary = true;
- isExecutable = true;
libraryHaskellDepends = [
base bytestring cereal crypto-api tagged
];
@@ -53810,8 +56092,8 @@ self: {
}:
mkDerivation {
pname = "clafer";
- version = "0.4.3";
- sha256 = "0be4dd9ab5551e247e69bf9b8863de4f6615a38e26e4c51d3f0bf214478585e4";
+ version = "0.4.4";
+ sha256 = "285e0dc889526f37f7bcc6418699b5465c269a9e6cb17a9219405089c644f21f";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -53829,7 +56111,6 @@ self: {
lens lens-aeson mtl mtl-compat QuickCheck tasty tasty-hunit
tasty-th transformers-compat
];
- jailbreak = true;
homepage = "http://clafer.org";
description = "Compiles Clafer models to other formats: Alloy, JavaScript, JSON, HTML, Dot";
license = stdenv.lib.licenses.mit;
@@ -53845,8 +56126,8 @@ self: {
}:
mkDerivation {
pname = "claferIG";
- version = "0.4.3";
- sha256 = "e3afbf8d5a057a54bf0e41a0ad19259f284ab2b7c33f208b08426f1436c52fc3";
+ version = "0.4.4";
+ sha256 = "7eecfddae7d82ba90fba1e68ab19513f5eb056ed3741f6b577b5b41d8728eeb4";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -53863,7 +56144,6 @@ self: {
array base clafer cmdargs directory filepath HUnit tasty
tasty-hunit tasty-th transformers transformers-compat
];
- jailbreak = true;
homepage = "http://clafer.org";
description = "claferIG is an interactive tool that generates instances of Clafer models";
license = stdenv.lib.licenses.mit;
@@ -53877,14 +56157,13 @@ self: {
}:
mkDerivation {
pname = "claferwiki";
- version = "0.4.3";
- sha256 = "7a582f4e59757ea00346f01ced2ef917ea8640941c45c3a407fe7760a5aa483c";
+ version = "0.4.4";
+ sha256 = "993d093d554939dd4570ce7d54df818b5c249f7434c90d68d89f5e537dbff028";
libraryHaskellDepends = [
base clafer containers directory gitit MissingH mtl network
network-uri process SHA split time transformers transformers-compat
utf8-string
];
- jailbreak = true;
homepage = "http://github.com/gsdlab/claferwiki";
description = "A wiki-based IDE for literate modeling with Clafer";
license = stdenv.lib.licenses.mit;
@@ -53897,14 +56176,13 @@ self: {
}:
mkDerivation {
pname = "clang-pure";
- version = "0.1.0.0";
- sha256 = "7c5cfef49732236bc6d6da95b89087c07447d9bf235c032c16c7e6850a747b08";
+ version = "0.1.0.1";
+ sha256 = "9beb6dd2d0a21a4057a0372d5fc9da2984ffc455bd24ed3c93c7b4ba7ec20900";
libraryHaskellDepends = [
base bytestring containers contravariant inline-c stm
template-haskell vector
];
librarySystemDepends = [ clang ];
- jailbreak = true;
description = "Pure C++ code analysis with libclang";
license = stdenv.lib.licenses.asl20;
hydraPlatforms = stdenv.lib.platforms.none;
@@ -54566,30 +56844,6 @@ self: {
}) {};
"clash-lib" = callPackage
- ({ mkDerivation, aeson, attoparsec, base, bytestring, clash-prelude
- , concurrent-supply, containers, deepseq, directory, errors, fgl
- , filepath, hashable, lens, mtl, pretty, process, template-haskell
- , text, time, transformers, unbound-generics, unordered-containers
- , uu-parsinglib, wl-pprint-text
- }:
- mkDerivation {
- pname = "clash-lib";
- version = "0.6.16";
- sha256 = "f2da35653db0ef4834ccd97f403084d0e0d706a59070547922ff7f34f739fb0a";
- revision = "1";
- editedCabalFile = "02a7623d96f27553486c2b3df4a4ff15e4c2f96c4fe5c82ff462bf3b35cc0d16";
- libraryHaskellDepends = [
- aeson attoparsec base bytestring clash-prelude concurrent-supply
- containers deepseq directory errors fgl filepath hashable lens mtl
- pretty process template-haskell text time transformers
- unbound-generics unordered-containers uu-parsinglib wl-pprint-text
- ];
- homepage = "http://www.clash-lang.org/";
- description = "CAES Language for Synchronous Hardware - As a Library";
- license = stdenv.lib.licenses.bsd2;
- }) {};
-
- "clash-lib_0_6_17" = callPackage
({ mkDerivation, aeson, attoparsec, base, bytestring, clash-prelude
, concurrent-supply, containers, deepseq, directory, errors, fgl
, filepath, hashable, lens, mtl, pretty, process, template-haskell
@@ -54609,7 +56863,6 @@ self: {
homepage = "http://www.clash-lang.org/";
description = "CAES Language for Synchronous Hardware - As a Library";
license = stdenv.lib.licenses.bsd2;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"clash-prelude_0_9_2" = callPackage
@@ -54750,8 +57003,10 @@ self: {
}:
mkDerivation {
pname = "clash-prelude";
- version = "0.10.8";
- sha256 = "0fb1a0b3e8bc03cee43303f31a9a17f0d89f2e1cdcdf468a807a6199ea7cb9db";
+ version = "0.10.9";
+ sha256 = "4a96fa9222427df9b515c343d0db6f53441c710141a09a344ee47ab30ebacee1";
+ revision = "2";
+ editedCabalFile = "966a6c0c7d74ee6932671fc44d7cd1d809ef6a11523ff5caf4c4a9c13583cb80";
libraryHaskellDepends = [
array base data-default ghc-prim ghc-typelits-extra
ghc-typelits-natnormalise integer-gmp lens QuickCheck reflection
@@ -54764,29 +57019,6 @@ self: {
license = stdenv.lib.licenses.bsd2;
}) {};
- "clash-prelude_0_10_9" = callPackage
- ({ mkDerivation, array, base, data-default, doctest, ghc-prim
- , ghc-typelits-extra, ghc-typelits-natnormalise, integer-gmp, lens
- , QuickCheck, reflection, singletons, template-haskell
- }:
- mkDerivation {
- pname = "clash-prelude";
- version = "0.10.9";
- sha256 = "4a96fa9222427df9b515c343d0db6f53441c710141a09a344ee47ab30ebacee1";
- revision = "1";
- editedCabalFile = "60f4e89dd73b84c4798fc7fd7f52d58afd7eb3069b5d41994fb3d43be4eb40f5";
- libraryHaskellDepends = [
- array base data-default ghc-prim ghc-typelits-extra
- ghc-typelits-natnormalise integer-gmp lens QuickCheck reflection
- singletons template-haskell
- ];
- testHaskellDepends = [ base doctest ];
- homepage = "http://www.clash-lang.org/";
- description = "CAES Language for Synchronous Hardware - Prelude library";
- license = stdenv.lib.licenses.bsd2;
- hydraPlatforms = stdenv.lib.platforms.none;
- }) {};
-
"clash-prelude-quickcheck" = callPackage
({ mkDerivation, base, clash-prelude, QuickCheck }:
mkDerivation {
@@ -55289,23 +57521,6 @@ self: {
}) {};
"clash-vhdl" = callPackage
- ({ mkDerivation, base, clash-lib, clash-prelude, fgl, lens, mtl
- , text, unordered-containers, wl-pprint-text
- }:
- mkDerivation {
- pname = "clash-vhdl";
- version = "0.6.12";
- sha256 = "cff549b30950aa8eabb8e113233b356a2e10e3b893119f7cbea31a9cc1c0e3c0";
- libraryHaskellDepends = [
- base clash-lib clash-prelude fgl lens mtl text unordered-containers
- wl-pprint-text
- ];
- homepage = "http://www.clash-lang.org/";
- description = "CAES Language for Synchronous Hardware - VHDL backend";
- license = stdenv.lib.licenses.bsd2;
- }) {};
-
- "clash-vhdl_0_6_13" = callPackage
({ mkDerivation, base, clash-lib, clash-prelude, fgl, lens, mtl
, text, unordered-containers, wl-pprint-text
}:
@@ -55320,7 +57535,6 @@ self: {
homepage = "http://www.clash-lang.org/";
description = "CAES Language for Synchronous Hardware - VHDL backend";
license = stdenv.lib.licenses.bsd2;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"classify" = callPackage
@@ -55707,7 +57921,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "classy-prelude" = callPackage
+ "classy-prelude_0_12_7" = callPackage
({ mkDerivation, base, basic-prelude, bifunctors, bytestring
, chunked-data, containers, dlist, enclosed-exceptions, exceptions
, ghc-prim, hashable, hspec, lifted-base, mono-traversable, mtl
@@ -55732,6 +57946,65 @@ self: {
homepage = "https://github.com/snoyberg/classy-prelude";
description = "A typeclass-based Prelude";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "classy-prelude_0_12_8" = callPackage
+ ({ mkDerivation, base, basic-prelude, bifunctors, bytestring
+ , chunked-data, containers, dlist, enclosed-exceptions, exceptions
+ , ghc-prim, hashable, hspec, lifted-base, mono-traversable, mtl
+ , mutable-containers, primitive, QuickCheck, semigroups, stm, text
+ , time, time-locale-compat, transformers, transformers-base
+ , unordered-containers, vector, vector-instances
+ }:
+ mkDerivation {
+ pname = "classy-prelude";
+ version = "0.12.8";
+ sha256 = "afa89959a687d74b851a2a3fce1b2d397cc40041ff5223ec9317bd723d47ca7f";
+ libraryHaskellDepends = [
+ base basic-prelude bifunctors bytestring chunked-data containers
+ dlist enclosed-exceptions exceptions ghc-prim hashable lifted-base
+ mono-traversable mtl mutable-containers primitive semigroups stm
+ text time time-locale-compat transformers transformers-base
+ unordered-containers vector vector-instances
+ ];
+ testHaskellDepends = [
+ base containers hspec QuickCheck transformers unordered-containers
+ ];
+ homepage = "https://github.com/snoyberg/classy-prelude";
+ description = "A typeclass-based Prelude";
+ license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "classy-prelude" = callPackage
+ ({ mkDerivation, async, base, basic-prelude, bifunctors, bytestring
+ , chunked-data, containers, deepseq, dlist, exceptions, ghc-prim
+ , hashable, hspec, lifted-async, lifted-base, monad-unlift
+ , mono-traversable, mono-traversable-instances, mtl
+ , mutable-containers, primitive, QuickCheck, safe-exceptions
+ , semigroups, stm, text, time, time-locale-compat, transformers
+ , transformers-base, unordered-containers, vector, vector-instances
+ }:
+ mkDerivation {
+ pname = "classy-prelude";
+ version = "1.0.0";
+ sha256 = "066603ee1d29d5738d34076870003d211632712251a7124983828fe4763c23b7";
+ libraryHaskellDepends = [
+ async base basic-prelude bifunctors bytestring chunked-data
+ containers deepseq dlist exceptions ghc-prim hashable lifted-async
+ lifted-base monad-unlift mono-traversable
+ mono-traversable-instances mtl mutable-containers primitive
+ safe-exceptions semigroups stm text time time-locale-compat
+ transformers transformers-base unordered-containers vector
+ vector-instances
+ ];
+ testHaskellDepends = [
+ base containers hspec QuickCheck transformers unordered-containers
+ ];
+ homepage = "https://github.com/snoyberg/mono-traversable";
+ description = "A typeclass-based Prelude";
+ license = stdenv.lib.licenses.mit;
}) {};
"classy-prelude-conduit_0_10_2" = callPackage
@@ -55968,7 +58241,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "classy-prelude-conduit" = callPackage
+ "classy-prelude-conduit_0_12_7" = callPackage
({ mkDerivation, base, bytestring, classy-prelude, conduit
, conduit-combinators, hspec, monad-control, QuickCheck, resourcet
, transformers, void
@@ -55984,9 +58257,55 @@ self: {
testHaskellDepends = [
base bytestring conduit hspec QuickCheck transformers
];
+ jailbreak = true;
homepage = "https://github.com/snoyberg/classy-prelude";
description = "conduit instances for classy-prelude";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "classy-prelude-conduit_0_12_8" = callPackage
+ ({ mkDerivation, base, bytestring, classy-prelude, conduit
+ , conduit-combinators, hspec, monad-control, QuickCheck, resourcet
+ , transformers, void
+ }:
+ mkDerivation {
+ pname = "classy-prelude-conduit";
+ version = "0.12.8";
+ sha256 = "5ba261f04339ea8533abbe760257f9108433c9183c644e87bca5ba637ed1663d";
+ libraryHaskellDepends = [
+ base bytestring classy-prelude conduit conduit-combinators
+ monad-control resourcet transformers void
+ ];
+ testHaskellDepends = [
+ base bytestring conduit hspec QuickCheck transformers
+ ];
+ jailbreak = true;
+ homepage = "https://github.com/snoyberg/classy-prelude";
+ description = "conduit instances for classy-prelude";
+ license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "classy-prelude-conduit" = callPackage
+ ({ mkDerivation, base, bytestring, classy-prelude, conduit
+ , conduit-combinators, hspec, monad-control, QuickCheck, resourcet
+ , transformers, void
+ }:
+ mkDerivation {
+ pname = "classy-prelude-conduit";
+ version = "1.0.0";
+ sha256 = "248b3a30c6da08400039b5a9485039319e059c52927edf2a1dbcd6a9089da22e";
+ libraryHaskellDepends = [
+ base bytestring classy-prelude conduit conduit-combinators
+ monad-control resourcet transformers void
+ ];
+ testHaskellDepends = [
+ base bytestring conduit hspec QuickCheck transformers
+ ];
+ homepage = "https://github.com/snoyberg/mono-traversable";
+ description = "classy-prelude together with conduit functions";
+ license = stdenv.lib.licenses.mit;
}) {};
"classy-prelude-yesod_0_10_2" = callPackage
@@ -56199,7 +58518,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "classy-prelude-yesod" = callPackage
+ "classy-prelude-yesod_0_12_7" = callPackage
({ mkDerivation, aeson, base, classy-prelude
, classy-prelude-conduit, data-default, http-conduit, http-types
, persistent, yesod, yesod-newsfeed, yesod-static
@@ -56213,12 +58532,54 @@ self: {
http-conduit http-types persistent yesod yesod-newsfeed
yesod-static
];
+ jailbreak = true;
homepage = "https://github.com/snoyberg/classy-prelude";
description = "Provide a classy prelude including common Yesod functionality";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "classy-prelude-yesod_0_12_8" = callPackage
+ ({ mkDerivation, aeson, base, classy-prelude
+ , classy-prelude-conduit, data-default, http-conduit, http-types
+ , persistent, yesod, yesod-newsfeed, yesod-static
+ }:
+ mkDerivation {
+ pname = "classy-prelude-yesod";
+ version = "0.12.8";
+ sha256 = "fa2c5c8407b0b7e10abeb360d237eec9e629cb34098dc1e84a23baf106f85f5e";
+ libraryHaskellDepends = [
+ aeson base classy-prelude classy-prelude-conduit data-default
+ http-conduit http-types persistent yesod yesod-newsfeed
+ yesod-static
+ ];
+ jailbreak = true;
+ homepage = "https://github.com/snoyberg/classy-prelude";
+ description = "Provide a classy prelude including common Yesod functionality";
+ license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "classy-prelude-yesod" = callPackage
+ ({ mkDerivation, aeson, base, classy-prelude
+ , classy-prelude-conduit, data-default, http-conduit, http-types
+ , persistent, yesod, yesod-newsfeed, yesod-static
+ }:
+ mkDerivation {
+ pname = "classy-prelude-yesod";
+ version = "1.0.0";
+ sha256 = "12ac3f4b72302cf18a7ebd5a836eb8cfe22729cbcd1f0a723db047c2b80a9ce2";
+ libraryHaskellDepends = [
+ aeson base classy-prelude classy-prelude-conduit data-default
+ http-conduit http-types persistent yesod yesod-newsfeed
+ yesod-static
+ ];
+ homepage = "https://github.com/snoyberg/mono-traversable";
+ description = "Provide a classy prelude including common Yesod functionality";
+ license = stdenv.lib.licenses.mit;
}) {};
- "clay" = callPackage
+ "clay_0_10_1" = callPackage
({ mkDerivation, base, HUnit, mtl, test-framework
, test-framework-hunit, text
}:
@@ -56237,6 +58598,21 @@ self: {
homepage = "http://fvisser.nl/clay";
description = "CSS preprocessor as embedded Haskell";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "clay" = callPackage
+ ({ mkDerivation, base, hspec, hspec-expectations, mtl, text }:
+ mkDerivation {
+ pname = "clay";
+ version = "0.11";
+ sha256 = "c3172361b21508ec0634cf43a3cd018323bd0e24ce936f554b0f16ca4329b3c1";
+ libraryHaskellDepends = [ base mtl text ];
+ testHaskellDepends = [ base hspec hspec-expectations mtl text ];
+ doCheck = false;
+ homepage = "http://fvisser.nl/clay";
+ description = "CSS preprocessor as embedded Haskell";
+ license = stdenv.lib.licenses.bsd3;
}) {};
"clckwrks_0_23_13" = callPackage
@@ -56309,6 +58685,41 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {inherit (pkgs) openssl;};
+ "clckwrks_0_23_16" = callPackage
+ ({ mkDerivation, acid-state, aeson, aeson-qq, attoparsec, base
+ , blaze-html, bytestring, cereal, containers, directory, filepath
+ , happstack-authenticate, happstack-hsp, happstack-jmacro
+ , happstack-server, happstack-server-tls, hsp, hsx-jmacro, hsx2hs
+ , ixset, jmacro, lens, mtl, network, network-uri, old-locale
+ , openssl, process, random, reform, reform-happstack, reform-hsp
+ , safecopy, stm, text, time, time-locale-compat
+ , unordered-containers, userid, utf8-string, uuid-orphans
+ , uuid-types, vector, web-plugins, web-routes, web-routes-happstack
+ , web-routes-hsp, web-routes-th, xss-sanitize
+ }:
+ mkDerivation {
+ pname = "clckwrks";
+ version = "0.23.16";
+ sha256 = "17622913f530b68dcb570603a5223c31f72263a57d5be7342642d18dd41a47b6";
+ libraryHaskellDepends = [
+ acid-state aeson aeson-qq attoparsec base blaze-html bytestring
+ cereal containers directory filepath happstack-authenticate
+ happstack-hsp happstack-jmacro happstack-server
+ happstack-server-tls hsp hsx-jmacro hsx2hs ixset jmacro lens mtl
+ network network-uri old-locale process random reform
+ reform-happstack reform-hsp safecopy stm text time
+ time-locale-compat unordered-containers userid utf8-string
+ uuid-orphans uuid-types vector web-plugins web-routes
+ web-routes-happstack web-routes-hsp web-routes-th xss-sanitize
+ ];
+ librarySystemDepends = [ openssl ];
+ jailbreak = true;
+ homepage = "http://www.clckwrks.com/";
+ description = "A secure, reliable content management system (CMS) and blogging platform";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {inherit (pkgs) openssl;};
+
"clckwrks" = callPackage
({ mkDerivation, acid-state, aeson, aeson-qq, attoparsec, base
, blaze-html, bytestring, cereal, containers, directory, filepath
@@ -56316,22 +58727,22 @@ self: {
, happstack-server, happstack-server-tls, hsp, hsx-jmacro, hsx2hs
, ixset, jmacro, lens, mtl, network, network-uri, old-locale
, openssl, process, random, reform, reform-happstack, reform-hsp
- , safecopy, stm, tagsoup, text, time, time-locale-compat
+ , safecopy, stm, text, time, time-locale-compat
, unordered-containers, userid, utf8-string, uuid-orphans
, uuid-types, vector, web-plugins, web-routes, web-routes-happstack
, web-routes-hsp, web-routes-th, xss-sanitize
}:
mkDerivation {
pname = "clckwrks";
- version = "0.23.15";
- sha256 = "ef2959ed07b4123815536ee9eb98a91d93570717a5efb159ac1343b2072e7872";
+ version = "0.23.17";
+ sha256 = "ac6134a2b6a54d08aadda1fa2251120fb034238397199c62fc50d980d143b08d";
libraryHaskellDepends = [
acid-state aeson aeson-qq attoparsec base blaze-html bytestring
cereal containers directory filepath happstack-authenticate
happstack-hsp happstack-jmacro happstack-server
happstack-server-tls hsp hsx-jmacro hsx2hs ixset jmacro lens mtl
network network-uri old-locale process random reform
- reform-happstack reform-hsp safecopy stm tagsoup text time
+ reform-happstack reform-hsp safecopy stm text time
time-locale-compat unordered-containers userid utf8-string
uuid-orphans uuid-types vector web-plugins web-routes
web-routes-happstack web-routes-hsp web-routes-th xss-sanitize
@@ -56438,7 +58849,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "clckwrks-plugin-media" = callPackage
+ "clckwrks-plugin-media_0_6_15" = callPackage
({ mkDerivation, acid-state, attoparsec, base, blaze-html, cereal
, clckwrks, containers, directory, filepath, gd, happstack-server
, hsp, hsx2hs, ixset, magic, mtl, reform, reform-happstack
@@ -56462,6 +58873,30 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
+ "clckwrks-plugin-media" = callPackage
+ ({ mkDerivation, acid-state, attoparsec, base, blaze-html, cereal
+ , clckwrks, containers, directory, filepath, gd, happstack-server
+ , hsp, hsx2hs, ixset, magic, mtl, reform, reform-happstack
+ , reform-hsp, safecopy, text, web-plugins, web-routes
+ , web-routes-th
+ }:
+ mkDerivation {
+ pname = "clckwrks-plugin-media";
+ version = "0.6.16";
+ sha256 = "7e4dbb81a28a3e4bf81c5d1ef5d0820a858877c00d1f2c98488d391a4a478598";
+ libraryHaskellDepends = [
+ acid-state attoparsec base blaze-html cereal clckwrks containers
+ directory filepath gd happstack-server hsp ixset magic mtl reform
+ reform-happstack reform-hsp safecopy text web-plugins web-routes
+ web-routes-th
+ ];
+ libraryToolDepends = [ hsx2hs ];
+ homepage = "http://clckwrks.com/";
+ description = "media plugin for clckwrks";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"clckwrks-plugin-page_0_4_3" = callPackage
({ mkDerivation, acid-state, aeson, attoparsec, base, clckwrks
, containers, directory, filepath, happstack-hsp, happstack-server
@@ -56488,7 +58923,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "clckwrks-plugin-page" = callPackage
+ "clckwrks-plugin-page_0_4_3_1" = callPackage
({ mkDerivation, acid-state, aeson, attoparsec, base, clckwrks
, containers, directory, filepath, happstack-hsp, happstack-server
, hsp, hsx2hs, ixset, mtl, old-locale, random, reform
@@ -56514,7 +58949,32 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "clckwrks-theme-bootstrap" = callPackage
+ "clckwrks-plugin-page" = callPackage
+ ({ mkDerivation, acid-state, aeson, attoparsec, base, clckwrks
+ , containers, directory, filepath, happstack-hsp, happstack-server
+ , hsp, hsx2hs, ixset, mtl, old-locale, random, reform
+ , reform-happstack, reform-hsp, safecopy, tagsoup, template-haskell
+ , text, time, time-locale-compat, uuid, web-plugins, web-routes
+ , web-routes-happstack, web-routes-th
+ }:
+ mkDerivation {
+ pname = "clckwrks-plugin-page";
+ version = "0.4.3.3";
+ sha256 = "cae111456424fe22eae06a3a0ef1d417d9373b4d09809920a678664b89d7e161";
+ libraryHaskellDepends = [
+ acid-state aeson attoparsec base clckwrks containers directory
+ filepath happstack-hsp happstack-server hsp hsx2hs ixset mtl
+ old-locale random reform reform-happstack reform-hsp safecopy
+ tagsoup template-haskell text time time-locale-compat uuid
+ web-plugins web-routes web-routes-happstack web-routes-th
+ ];
+ homepage = "http://www.clckwrks.com/";
+ description = "support for CMS/Blogging in clckwrks";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "clckwrks-theme-bootstrap_0_4_1" = callPackage
({ mkDerivation, base, clckwrks, happstack-authenticate, hsp
, hsx-jmacro, hsx2hs, jmacro, mtl, text, web-plugins
}:
@@ -56532,6 +58992,24 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
+ "clckwrks-theme-bootstrap" = callPackage
+ ({ mkDerivation, base, clckwrks, happstack-authenticate, hsp
+ , hsx-jmacro, hsx2hs, jmacro, mtl, text, web-plugins
+ }:
+ mkDerivation {
+ pname = "clckwrks-theme-bootstrap";
+ version = "0.4.2";
+ sha256 = "6b613719a51e4df718559b3517d9e6322ced8e75a874e69fcfc38d1648f22348";
+ libraryHaskellDepends = [
+ base clckwrks happstack-authenticate hsp hsx-jmacro hsx2hs jmacro
+ mtl text web-plugins
+ ];
+ homepage = "http://www.clckwrks.com/";
+ description = "simple bootstrap based template for clckwrks";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"clckwrks-theme-clckwrks" = callPackage
({ mkDerivation, base, clckwrks, containers, happstack-authenticate
, hsp, hsx2hs, mtl, text, web-plugins
@@ -56682,7 +59160,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "clientsession" = callPackage
+ "clientsession_0_9_1_1" = callPackage
({ mkDerivation, base, base64-bytestring, bytestring, cereal
, cipher-aes, containers, cprng-aes, crypto-api, crypto-random
, directory, entropy, hspec, HUnit, QuickCheck, setenv, skein
@@ -56706,6 +59184,33 @@ self: {
homepage = "http://github.com/yesodweb/clientsession/tree/master";
description = "Securely store session data in a client-side cookie";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "clientsession" = callPackage
+ ({ mkDerivation, base, base64-bytestring, bytestring, cereal
+ , cipher-aes, containers, cprng-aes, crypto-api, crypto-random
+ , directory, entropy, hspec, HUnit, QuickCheck, setenv, skein
+ , tagged, transformers
+ }:
+ mkDerivation {
+ pname = "clientsession";
+ version = "0.9.1.2";
+ sha256 = "5915adc4de26d2a8b03f1a445bac0b0f5d10a5b0380a4eed71b79a20a727d068";
+ isLibrary = true;
+ isExecutable = true;
+ libraryHaskellDepends = [
+ base base64-bytestring bytestring cereal cipher-aes cprng-aes
+ crypto-api crypto-random directory entropy setenv skein tagged
+ ];
+ executableHaskellDepends = [ base ];
+ testHaskellDepends = [
+ base bytestring cereal containers hspec HUnit QuickCheck
+ transformers
+ ];
+ homepage = "http://github.com/yesodweb/clientsession/tree/master";
+ description = "Securely store session data in a client-side cookie";
+ license = stdenv.lib.licenses.mit;
}) {};
"clifford" = callPackage
@@ -56810,8 +59315,8 @@ self: {
}:
mkDerivation {
pname = "cloben";
- version = "0.1.0.1";
- sha256 = "99cfae53ed2ad5db9d1d1860b1654b28ab5189437fd5abb298a432f8a98d4728";
+ version = "0.1.0.3";
+ sha256 = "c2b7d36c7ad47ed45c1b7328da1f0d6d22727134eab7a2bd3447815b2ed0f3db";
isLibrary = false;
isExecutable = true;
executableHaskellDepends = [
@@ -56920,7 +59425,7 @@ self: {
libraryPkgconfigDepends = [ QtCore ];
homepage = "http://patch-tag.com/r/shahn/clocked/home";
description = "timer functionality to clock IO commands";
- license = stdenv.lib.licenses.gpl3;
+ license = stdenv.lib.licenses.lgpl3;
hydraPlatforms = [ "x86_64-darwin" ];
}) {QtCore = null;};
@@ -57307,8 +59812,6 @@ self: {
sha256 = "5e66581205cb76a2621a7bf5cb42411a8cc1d37fe3b8a266803266c2991fb62b";
revision = "1";
editedCabalFile = "e37c92e6337ccbacd95f77938a1d0459f52cdb1a51c920a96610793cf2b5e4dc";
- isLibrary = true;
- isExecutable = true;
libraryHaskellDepends = [
base filepath process template-haskell transformers
];
@@ -57326,8 +59829,6 @@ self: {
pname = "cmdargs";
version = "0.10.13";
sha256 = "66117c1fadaa2a79be07998287ca7cee334c249615b0fab9b91467ad813bbf6e";
- isLibrary = true;
- isExecutable = true;
libraryHaskellDepends = [
base filepath process template-haskell transformers
];
@@ -57345,8 +59846,6 @@ self: {
pname = "cmdargs";
version = "0.10.14";
sha256 = "38b60053c11394a1876d2744950eece66ca9e4364298c1383f247894044bce58";
- isLibrary = true;
- isExecutable = true;
libraryHaskellDepends = [
base filepath process template-haskell transformers
];
@@ -57382,8 +59881,6 @@ self: {
pname = "cmdlib";
version = "0.3.6";
sha256 = "5643d219c371f903c3f877b5955de4ca99a723bc96165f4f629d3e3dbc3fb357";
- isLibrary = true;
- isExecutable = true;
libraryHaskellDepends = [ base mtl split syb transformers ];
description = "a library for command line parsing & online help";
license = stdenv.lib.licenses.bsd3;
@@ -57472,8 +59969,9 @@ self: {
"cnc-spec-compiler" = callPackage
({ mkDerivation, ansi-terminal, array, base, binary, bytestring
- , containers, directory, fgl, filepath, HUnit, mtl, parsec, pretty
- , prettyclass, process, split, stringtable-atom, unix, zlib
+ , containers, directory, fgl, filepath, graphviz, HaXml, haxr
+ , hubigraph, HUnit, mtl, parsec, pretty, prettyclass, process
+ , split, stringtable-atom, unix, zlib
}:
mkDerivation {
pname = "cnc-spec-compiler";
@@ -57483,8 +59981,8 @@ self: {
isExecutable = true;
executableHaskellDepends = [
ansi-terminal array base binary bytestring containers directory fgl
- filepath HUnit mtl parsec pretty prettyclass process split
- stringtable-atom unix zlib
+ filepath graphviz HaXml haxr hubigraph HUnit mtl parsec pretty
+ prettyclass process split stringtable-atom unix zlib
];
homepage = "http://software.intel.com/en-us/articles/intel-concurrent-collections-for-cc/";
description = "Compiler/Translator for CnC Specification Files";
@@ -57496,8 +59994,8 @@ self: {
({ mkDerivation, array, base, bytestring, text }:
mkDerivation {
pname = "cndict";
- version = "0.7.8";
- sha256 = "10574f4cd8b67667598b13398907b73c109853382795895fb1487ef05a83cd7f";
+ version = "0.8.0";
+ sha256 = "3c6ca0c603fff56be9d1ce8dca89a699ce745bd6bc39217fd9d3c817021e31c9";
libraryHaskellDepends = [ array base bytestring text ];
homepage = "https://github.com/Lemmih/cndict";
description = "Chinese/Mandarin <-> English dictionary, Chinese lexer";
@@ -57858,24 +60356,22 @@ self: {
"coin" = callPackage
({ mkDerivation, aeson, base, binary, bytestring, containers
- , directory, filepath, glib, gtk3, hgettext, lens-simple
- , monad-control, monad-logger, mtl, persistent, persistent-sqlite
- , persistent-template, resourcet, setlocale, text, time
- , transformers
+ , directory, filepath, glib, gtk3, lens, monad-control
+ , monad-logger, mtl, persistent, persistent-sqlite
+ , persistent-template, resourcet, text, time, transformers
}:
mkDerivation {
pname = "coin";
- version = "1.0";
- sha256 = "5eba9c5d527f0ee0da7f0f5678aedf2f8ef012abd4557796e8542201dbfb5572";
+ version = "1.1.1";
+ sha256 = "e020b0b4f31586832db5e56e0d757d60546071d2ca7bfef1f451d154f02486a2";
isLibrary = false;
isExecutable = true;
executableHaskellDepends = [
aeson base binary bytestring containers directory filepath glib
- gtk3 hgettext lens-simple monad-control monad-logger mtl persistent
- persistent-sqlite persistent-template resourcet setlocale text time
+ gtk3 lens monad-control monad-logger mtl persistent
+ persistent-sqlite persistent-template resourcet text time
transformers
];
- jailbreak = true;
homepage = "https://bitbucket.org/borekpiotr/coin";
description = "Simple account manager";
license = "GPL";
@@ -58085,6 +60581,18 @@ self: {
license = "LGPL";
}) {};
+ "colonnade" = callPackage
+ ({ mkDerivation, base, contravariant, vector }:
+ mkDerivation {
+ pname = "colonnade";
+ version = "0.3";
+ sha256 = "eab23a4fc5a24b3ab1c40254a63ccfdacf19c59fdead79258ee58e2d42f111c7";
+ libraryHaskellDepends = [ base contravariant vector ];
+ homepage = "https://github.com/andrewthad/colonnade#readme";
+ description = "Generic types and functions for columnar encoding and decoding";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
"color-counter" = callPackage
({ mkDerivation, aeson, base, cmdargs, colour, containers
, data-default, directory, friday, friday-devil, split, v4l2
@@ -58176,7 +60684,8 @@ self: {
pname = "com";
version = "1.2.3.1";
sha256 = "f5085572cd0b0c8f8fdf115fad5c842657e803c70b2ce1c230ee452f87a9dff8";
- doHaddock = false;
+ isLibrary = false;
+ isExecutable = false;
description = "Haskell COM support library";
license = stdenv.lib.licenses.bsd3;
hydraPlatforms = [ "x86_64-darwin" ];
@@ -59284,8 +61793,6 @@ self: {
pname = "concraft";
version = "0.9.4";
sha256 = "030f63c8c08dba11ac85b08746a145df45276930de8fc937ecf6260b1cac079f";
- isLibrary = true;
- isExecutable = true;
libraryHaskellDepends = [
aeson array base binary bytestring cmdargs comonad containers
crf-chain1-constrained crf-chain2-tiers data-lens lazy-io
@@ -59598,8 +62105,6 @@ self: {
pname = "concurrent-state";
version = "0.6.0.0";
sha256 = "e6071814c277106cb13b458a7161dd42269e9a7c2419b17992a1908a7fb3342d";
- isLibrary = true;
- isExecutable = true;
libraryHaskellDepends = [ base exceptions mtl stm transformers ];
jailbreak = true;
homepage = "https://github.com/joelteon/concurrent-state";
@@ -59657,8 +62162,9 @@ self: {
pname = "concurrent-utilities";
version = "0.2.0.0";
sha256 = "d108b831e0631c1d3d9b5e2dbfb335b63997206384b7a069978c95a2a1af918a";
+ revision = "1";
+ editedCabalFile = "2b711482a361d04696567a2d07b866747e1fcd12a70b081dab94887d94cf4f6a";
libraryHaskellDepends = [ base ];
- jailbreak = true;
homepage = "-";
description = "More utilities and broad-used datastructures for concurrency";
license = stdenv.lib.licenses.bsd3;
@@ -60070,8 +62576,9 @@ self: {
pname = "conduit-audio";
version = "0.2.0.2";
sha256 = "e23cf60d1e70a65560308517db79ba150456fcf9f24a0d77f5e6f96cdf1aef0b";
+ revision = "1";
+ editedCabalFile = "3c61190def62e1eaf73fe7921fe09df99f2c4e6b4397f852ed7e7fba345128ff";
libraryHaskellDepends = [ base conduit vector ];
- jailbreak = true;
homepage = "http://github.com/mtolly/conduit-audio";
description = "Combinators to efficiently slice and dice audio streams";
license = stdenv.lib.licenses.bsd3;
@@ -60085,12 +62592,13 @@ self: {
pname = "conduit-audio-lame";
version = "0.1.2";
sha256 = "07bbd0c82daff28e9b4dd147cee0cbca5ee74a50bdc5de5a5d905a8848573a5d";
+ revision = "1";
+ editedCabalFile = "5359747af74efab99b94c924a4a0e29ab2ad8e290fd6beddeaacfad6f54086bb";
libraryHaskellDepends = [
base bytestring conduit conduit-audio resourcet transformers vector
];
librarySystemDepends = [ mp3lame ];
libraryToolDepends = [ c2hs ];
- jailbreak = true;
homepage = "http://github.com/mtolly/conduit-audio";
description = "conduit-audio interface to the LAME MP3 library";
license = stdenv.lib.licenses.bsd3;
@@ -60105,12 +62613,13 @@ self: {
pname = "conduit-audio-samplerate";
version = "0.1.0.2";
sha256 = "e8ee6621926909df05f91f969e95a2bde85d0fe09f17d54ea8fa2a6ff93adedd";
+ revision = "1";
+ editedCabalFile = "3e2613f2a9f915d915e23f12fde64abac36679a149080d817b98a2e6361d8436";
libraryHaskellDepends = [
base conduit conduit-audio resourcet transformers vector
];
librarySystemDepends = [ samplerate ];
libraryToolDepends = [ c2hs ];
- jailbreak = true;
homepage = "http://github.com/mtolly/conduit-audio";
description = "conduit-audio interface to the libsamplerate resampling library";
license = stdenv.lib.licenses.bsd3;
@@ -60125,11 +62634,12 @@ self: {
pname = "conduit-audio-sndfile";
version = "0.1.2";
sha256 = "7e499e45b4e7c92e02ce8dc52a4c482b05f2fc611bd46ac868aea8190e53fae6";
+ revision = "1";
+ editedCabalFile = "92be6b314eb2b0e0435f2778e0bce09d91614cf5bb26387e3c45cc6507c2a496";
libraryHaskellDepends = [
base conduit conduit-audio hsndfile hsndfile-vector resourcet
transformers
];
- jailbreak = true;
homepage = "http://github.com/mtolly/conduit-audio";
description = "conduit-audio interface to the libsndfile audio file library";
license = stdenv.lib.licenses.bsd3;
@@ -60280,7 +62790,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "conduit-combinators" = callPackage
+ "conduit-combinators_1_0_3_1" = callPackage
({ mkDerivation, base, base16-bytestring, base64-bytestring
, bytestring, chunked-data, conduit, conduit-extra, containers
, directory, filepath, hspec, monad-control, mono-traversable, mtl
@@ -60306,6 +62816,35 @@ self: {
homepage = "https://github.com/fpco/conduit-combinators";
description = "Commonly used conduit functions, for both chunked and unchunked data";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "conduit-combinators" = callPackage
+ ({ mkDerivation, base, base16-bytestring, base64-bytestring
+ , bytestring, chunked-data, conduit, conduit-extra, containers
+ , directory, filepath, hspec, monad-control, mono-traversable, mtl
+ , mwc-random, primitive, QuickCheck, resourcet, safe, silently
+ , text, transformers, transformers-base, unix, unix-compat, vector
+ , void
+ }:
+ mkDerivation {
+ pname = "conduit-combinators";
+ version = "1.0.4";
+ sha256 = "75a90da15f7bd70748ebb3a3612d50896e421d8fdbaa4879e8aabfbeaf4dc7de";
+ libraryHaskellDepends = [
+ base base16-bytestring base64-bytestring bytestring chunked-data
+ conduit conduit-extra filepath monad-control mono-traversable
+ mwc-random primitive resourcet text transformers transformers-base
+ unix unix-compat vector void
+ ];
+ testHaskellDepends = [
+ base base16-bytestring base64-bytestring bytestring chunked-data
+ conduit containers directory filepath hspec mono-traversable mtl
+ mwc-random QuickCheck safe silently text transformers vector
+ ];
+ homepage = "https://github.com/snoyberg/mono-traversable";
+ description = "Commonly used conduit functions, for both chunked and unchunked data";
+ license = stdenv.lib.licenses.mit;
}) {};
"conduit-connection" = callPackage
@@ -60710,7 +63249,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "conduit-extra" = callPackage
+ "conduit-extra_1_1_13_1" = callPackage
({ mkDerivation, async, attoparsec, base, blaze-builder, bytestring
, bytestring-builder, conduit, directory, exceptions, filepath
, hspec, monad-control, network, primitive, process, QuickCheck
@@ -60734,6 +63273,33 @@ self: {
homepage = "http://github.com/snoyberg/conduit";
description = "Batteries included conduit: adapters for common libraries";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "conduit-extra" = callPackage
+ ({ mkDerivation, async, attoparsec, base, blaze-builder, bytestring
+ , bytestring-builder, conduit, directory, exceptions, filepath
+ , hspec, monad-control, network, primitive, process, QuickCheck
+ , resourcet, stm, streaming-commons, text, transformers
+ , transformers-base
+ }:
+ mkDerivation {
+ pname = "conduit-extra";
+ version = "1.1.13.2";
+ sha256 = "9fccd20c45b017c5b5b12a933b1cedd9088f27375c6b7bb2dadce9db92d51b81";
+ libraryHaskellDepends = [
+ async attoparsec base blaze-builder bytestring conduit directory
+ exceptions filepath monad-control network primitive process
+ resourcet stm streaming-commons text transformers transformers-base
+ ];
+ testHaskellDepends = [
+ async attoparsec base blaze-builder bytestring bytestring-builder
+ conduit exceptions hspec process QuickCheck resourcet stm
+ streaming-commons text transformers transformers-base
+ ];
+ homepage = "http://github.com/snoyberg/conduit";
+ description = "Batteries included conduit: adapters for common libraries";
+ license = stdenv.lib.licenses.mit;
}) {};
"conduit-iconv" = callPackage
@@ -60754,6 +63320,18 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "conduit-merge" = callPackage
+ ({ mkDerivation, base, conduit, mtl }:
+ mkDerivation {
+ pname = "conduit-merge";
+ version = "0.1.2.0";
+ sha256 = "4d332f30af4c79c345af81072396b33e1dc26f35c9e6d9a6e51559cc46c0ce1e";
+ libraryHaskellDepends = [ base conduit mtl ];
+ homepage = "https://github.com/cblp/conduit-merge#readme";
+ description = "Merge multiple sorted conduits";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
"conduit-network-stream" = callPackage
({ mkDerivation, base, bytestring, conduit, mtl, network-conduit
, resourcet
@@ -60911,10 +63489,8 @@ self: {
}:
mkDerivation {
pname = "config-value";
- version = "0.4.0.1";
- sha256 = "67e92a664a7d5b80c456d3f0cdbbf6f1fc8d00710509f784221fd01c60342f35";
- revision = "1";
- editedCabalFile = "a07f958c50a175dba2f3e4ee6130a1871d14eb6cb28612b4cf040251cd026b28";
+ version = "0.4.0.2";
+ sha256 = "214481f20acac05b7a67dad3ce11b0965b19429c4ddb95ed1f869caffaaefc57";
libraryHaskellDepends = [ array base pretty text transformers ];
libraryToolDepends = [ alex happy ];
homepage = "https://github.com/glguy/config-value";
@@ -60938,23 +63514,18 @@ self: {
({ mkDerivation, aeson, aeson-pretty, base, bytestring
, case-insensitive, containers, directory, either, functor-infix
, hspec, hspec-discover, mtl, pretty-show, QuickCheck, safe
- , scientific, string-conversions, template-haskell, text
+ , scientific, string-conversions, template-haskell
, unordered-containers, vector, yaml
}:
mkDerivation {
pname = "configifier";
- version = "0.1.0";
- sha256 = "bda7c1ae24e838204f972f64816e6e7ec5552b3ea03a2e17eb5c9e9ea9ad030e";
- isLibrary = true;
- isExecutable = true;
+ version = "0.1.1";
+ sha256 = "52cbd5b32d438766e655104e583baa5379e618bc2526382c970bde313db72e11";
libraryHaskellDepends = [
base bytestring case-insensitive containers directory either
functor-infix mtl safe string-conversions template-haskell
unordered-containers vector yaml
];
- executableHaskellDepends = [
- base bytestring mtl pretty-show string-conversions text yaml
- ];
testHaskellDepends = [
aeson aeson-pretty base case-insensitive hspec hspec-discover mtl
pretty-show QuickCheck scientific string-conversions
@@ -61216,13 +63787,12 @@ self: {
}:
mkDerivation {
pname = "connection-pool";
- version = "0.2";
- sha256 = "a6c3ba5f1905832cefdf9afc55cbf46a6c6a321ecac19254f20f091402b440fa";
+ version = "0.2.1";
+ sha256 = "2364c5a7b5d0dbeb00478070a4e527ab019ffb86e14e726a2a9ee56f8cb884dc";
libraryHaskellDepends = [
base between data-default-class monad-control network resource-pool
streaming-commons time transformers-base
];
- jailbreak = true;
homepage = "https://github.com/trskop/connection-pool";
description = "Connection pool built on top of resource-pool and streaming-commons";
license = stdenv.lib.licenses.bsd3;
@@ -61522,8 +64092,8 @@ self: {
}:
mkDerivation {
pname = "consumers";
- version = "1.1";
- sha256 = "0a0c574fcc036653364d75f7ec597310bf8e0952acd9de97f97febb7d7cc958c";
+ version = "2.0";
+ sha256 = "467af01ed4ce5f5240c16a0693e32f27f1f098723d11c7f1eab004d08f285995";
libraryHaskellDepends = [
base containers exceptions hpqtypes lifted-base lifted-threads log
monad-control mtl stm time transformers-base
@@ -61725,29 +64295,19 @@ self: {
}) {};
"continuum" = callPackage
- ({ mkDerivation, base, bytestring, cereal, containers, data-default
- , foldl, hyperleveldb, leveldb-haskell-fork, mtl, nanomsg-haskell
- , parallel-io, resourcet, stm, suspend, time, timers, transformers
- , transformers-base
+ ({ mkDerivation, base, bytestring, cereal, containers, mtl
+ , nanomsg-haskell, time
}:
mkDerivation {
pname = "continuum";
version = "0.1.0.7";
sha256 = "a6bbd7bee80d5216e4678fc9bdf85f4136b079ed8d2e2cf8585c76420bb0386e";
- isLibrary = true;
- isExecutable = true;
libraryHaskellDepends = [
base bytestring cereal containers mtl nanomsg-haskell time
];
- executableHaskellDepends = [
- base bytestring cereal containers data-default foldl
- leveldb-haskell-fork mtl nanomsg-haskell parallel-io resourcet stm
- suspend time timers transformers transformers-base
- ];
- executableSystemDepends = [ hyperleveldb ];
license = stdenv.lib.licenses.mit;
hydraPlatforms = [ "x86_64-darwin" ];
- }) {hyperleveldb = null;};
+ }) {};
"continuum-client" = callPackage
({ mkDerivation, base, bytestring, cereal, containers, mtl
@@ -62312,8 +64872,6 @@ self: {
sha256 = "13c4943c302700a207426aabcd6dab5a5de85de2353acacbcf4159e924f9835d";
revision = "3";
editedCabalFile = "9958bc1e79fce365c2c3a1629abe13ce1cf35588252d625bc86e5e10667401fa";
- isLibrary = true;
- isExecutable = true;
libraryHaskellDepends = [
base bytestring containers mtl old-locale old-time text time
];
@@ -62331,8 +64889,6 @@ self: {
pname = "convertible";
version = "1.1.1.0";
sha256 = "e9f9a70904b9995314c2aeb41580d654a2c76293feb955fb6bd63256c355286c";
- isLibrary = true;
- isExecutable = true;
libraryHaskellDepends = [
base bytestring containers mtl old-locale old-time text time
];
@@ -62368,13 +64924,10 @@ self: {
pname = "convertible-text";
version = "0.4.0.2";
sha256 = "df8dc391ff4d82e3d18b049e3c4db50198aa1345c101d088683a075d5ba217f3";
- isLibrary = true;
- isExecutable = true;
libraryHaskellDepends = [
attempt base bytestring containers old-time template-haskell text
time
];
- jailbreak = true;
homepage = "http://github.com/snoyberg/convertible/tree/text";
description = "Typeclasses and instances for converting between types (deprecated)";
license = stdenv.lib.licenses.bsd3;
@@ -62465,7 +65018,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "cookie" = callPackage
+ "cookie_0_4_2" = callPackage
({ mkDerivation, base, blaze-builder, bytestring
, data-default-class, deepseq, HUnit, old-locale, QuickCheck, tasty
, tasty-hunit, tasty-quickcheck, text, time
@@ -62485,17 +65038,40 @@ self: {
homepage = "http://github.com/snoyberg/cookie";
description = "HTTP cookie parsing and rendering";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "cookie" = callPackage
+ ({ mkDerivation, base, blaze-builder, bytestring
+ , data-default-class, deepseq, HUnit, old-locale, QuickCheck, tasty
+ , tasty-hunit, tasty-quickcheck, text, time
+ }:
+ mkDerivation {
+ pname = "cookie";
+ version = "0.4.2.1";
+ sha256 = "06413091908e20ce154effdcd354d7eea1447380e29a8acdb15c3347512852e4";
+ libraryHaskellDepends = [
+ base blaze-builder bytestring data-default-class deepseq old-locale
+ text time
+ ];
+ testHaskellDepends = [
+ base blaze-builder bytestring HUnit QuickCheck tasty tasty-hunit
+ tasty-quickcheck text time
+ ];
+ homepage = "http://github.com/snoyberg/cookie";
+ description = "HTTP cookie parsing and rendering";
+ license = stdenv.lib.licenses.mit;
}) {};
"coordinate" = callPackage
({ mkDerivation, base, directory, doctest, filepath, lens
- , QuickCheck, radian, tagged, template-haskell, transformers
+ , QuickCheck, template-haskell, transformers
}:
mkDerivation {
pname = "coordinate";
- version = "0.0.21";
- sha256 = "a126c5713e498514f8225af4942dfac5a2ccca501b20a1a2c1e7783f58f39a4f";
- libraryHaskellDepends = [ base lens radian tagged transformers ];
+ version = "0.1.2";
+ sha256 = "dba23e66c6669344571ee24b7ce65b3817241a4211e608cfb879daa4e5dbf052";
+ libraryHaskellDepends = [ base lens transformers ];
testHaskellDepends = [
base directory doctest filepath QuickCheck template-haskell
];
@@ -62892,12 +65468,17 @@ self: {
}) {};
"countable" = callPackage
- ({ mkDerivation, base }:
+ ({ mkDerivation, base, bytestring, silently, tasty, tasty-golden
+ , tasty-hunit
+ }:
mkDerivation {
pname = "countable";
- version = "0.2";
- sha256 = "3352e7cf080c88ce775da53107f21e86d9a5fc80386ca3fd7b07151dc3bce6ab";
+ version = "1.0";
+ sha256 = "f9a0eb6f697a044bdf72e9c08126d4cb0f2d6de82cce07e55cb87ddbae6a0e6c";
libraryHaskellDepends = [ base ];
+ testHaskellDepends = [
+ base bytestring silently tasty tasty-golden tasty-hunit
+ ];
homepage = "https://github.com/AshleyYakeley/countable";
description = "Countable, Searchable, Finite, Empty classes";
license = stdenv.lib.licenses.bsd3;
@@ -62917,17 +65498,12 @@ self: {
}) {};
"country-codes_0_1_2" = callPackage
- ({ mkDerivation, aeson, base, HTF, HUnit, shakespeare, tagsoup
- , text
- }:
+ ({ mkDerivation, aeson, base, HTF, HUnit, shakespeare, text }:
mkDerivation {
pname = "country-codes";
version = "0.1.2";
sha256 = "e49ccaa859c375f41def1429d7718f8b1440e31d30146e13b46f11fbf24be298";
- isLibrary = true;
- isExecutable = true;
libraryHaskellDepends = [ aeson base shakespeare text ];
- executableHaskellDepends = [ base tagsoup text ];
testHaskellDepends = [ aeson base HTF HUnit ];
jailbreak = true;
homepage = "https://github.com/prowdsponsor/country-codes";
@@ -62937,17 +65513,12 @@ self: {
}) {};
"country-codes" = callPackage
- ({ mkDerivation, aeson, base, HTF, HUnit, shakespeare, tagsoup
- , text
- }:
+ ({ mkDerivation, aeson, base, HTF, HUnit, shakespeare, text }:
mkDerivation {
pname = "country-codes";
version = "0.1.3";
sha256 = "062843cebfcb4df513e4688456311f07a2eb693935a053ce2eade2c8d586d1b5";
- isLibrary = true;
- isExecutable = true;
libraryHaskellDepends = [ aeson base shakespeare text ];
- executableHaskellDepends = [ base tagsoup text ];
testHaskellDepends = [ aeson base HTF HUnit ];
homepage = "https://github.com/prowdsponsor/country-codes";
description = "ISO 3166 country codes and i18n names";
@@ -63003,7 +65574,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "courier" = callPackage
+ "courier_0_1_1_2" = callPackage
({ mkDerivation, async, base, bytestring, cereal, containers
, directory, hslogger, HUnit, network, stm, test-framework
, test-framework-hunit, text, uuid
@@ -63026,6 +65597,32 @@ self: {
homepage = "http://github.com/hargettp/courier";
description = "A message-passing library for simplifying network applications";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "courier" = callPackage
+ ({ mkDerivation, async, base, bytestring, cereal, containers
+ , directory, hslogger, HUnit, network, stm, test-framework
+ , test-framework-hunit, text, uuid
+ }:
+ mkDerivation {
+ pname = "courier";
+ version = "0.1.1.3";
+ sha256 = "0cf44b62c2b134a7bf9aa779ef2b04d91f4b44a46273bb478ecdcbd9d1198e83";
+ isLibrary = true;
+ isExecutable = true;
+ libraryHaskellDepends = [
+ async base bytestring cereal containers hslogger network stm text
+ uuid
+ ];
+ executableHaskellDepends = [ base cereal ];
+ testHaskellDepends = [
+ async base cereal containers directory hslogger HUnit network stm
+ test-framework test-framework-hunit
+ ];
+ homepage = "http://github.com/hargettp/courier";
+ description = "A message-passing library for simplifying network applications";
+ license = stdenv.lib.licenses.mit;
}) {};
"court" = callPackage
@@ -63327,14 +65924,14 @@ self: {
}) {};
"cpsa" = callPackage
- ({ mkDerivation, array, base, containers, parallel }:
+ ({ mkDerivation, base, containers, parallel }:
mkDerivation {
pname = "cpsa";
- version = "3.3.1";
- sha256 = "05080b614849554de2387f5478868ab670bd7cf2c97b2fbffc90c84941cac0fa";
+ version = "3.3.2";
+ sha256 = "0e0d19ea96de4ab9cf21bef285b04bd68e0c00796d52f36b86c30653c30c3b1d";
isLibrary = false;
isExecutable = true;
- executableHaskellDepends = [ array base containers parallel ];
+ executableHaskellDepends = [ base containers parallel ];
description = "Symbolic cryptographic protocol analyzer";
license = stdenv.lib.licenses.bsd3;
hydraPlatforms = stdenv.lib.platforms.none;
@@ -63346,8 +65943,6 @@ self: {
pname = "cpu";
version = "0.1.2";
sha256 = "5627feb4974a3ff8499c42cc958927e88761a2e004c4000d34e9cd6a15ad2974";
- isLibrary = true;
- isExecutable = true;
libraryHaskellDepends = [ base ];
homepage = "http://github.com/vincenthz/hs-cpu";
description = "Cpu information and properties helpers";
@@ -63360,8 +65955,6 @@ self: {
pname = "cpuid";
version = "0.2.3";
sha256 = "f8198ab4408219fe001c0a50908af38a766e2a0b3afb8260307838e5517add88";
- isLibrary = true;
- isExecutable = true;
libraryHaskellDepends = [ base data-accessor enumset ];
homepage = "http://code.haskell.org/cpuid/";
description = "Binding for the cpuid machine instruction on x86 compatible processors";
@@ -63445,7 +66038,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "cql" = callPackage
+ "cql_3_0_7" = callPackage
({ mkDerivation, base, bytestring, cereal, Decimal, iproute
, network, QuickCheck, tasty, tasty-quickcheck, template-haskell
, text, time, transformers, uuid, vector
@@ -63469,6 +66062,29 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
+ "cql" = callPackage
+ ({ mkDerivation, base, bytestring, cereal, Decimal, iproute
+ , network, QuickCheck, tasty, tasty-quickcheck, template-haskell
+ , text, time, transformers, uuid, vector
+ }:
+ mkDerivation {
+ pname = "cql";
+ version = "3.1.0";
+ sha256 = "0639f54c5c1e1a96b27203691aa0b37d59c4309aac1f75c20864d41ad86f4c53";
+ libraryHaskellDepends = [
+ base bytestring cereal Decimal iproute network template-haskell
+ text time transformers uuid vector
+ ];
+ testHaskellDepends = [
+ base bytestring cereal Decimal iproute network QuickCheck tasty
+ tasty-quickcheck text time uuid
+ ];
+ homepage = "https://gitlab.com/twittner/cql/";
+ description = "Cassandra CQL binary protocol";
+ license = "unknown";
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"cql-io_0_14_5" = callPackage
({ mkDerivation, async, auto-update, base, bytestring, containers
, cql, cryptohash, data-default-class, exceptions, hashable
@@ -63493,7 +66109,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "cql-io" = callPackage
+ "cql-io_0_15_2" = callPackage
({ mkDerivation, async, auto-update, base, bytestring, containers
, cql, cryptohash, data-default-class, exceptions, hashable
, HsOpenSSL, iproute, lens, monad-control, mtl, mwc-random, network
@@ -63517,6 +66133,29 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
+ "cql-io" = callPackage
+ ({ mkDerivation, async, auto-update, base, bytestring, containers
+ , cql, cryptohash, data-default-class, exceptions, hashable
+ , HsOpenSSL, iproute, lens, monad-control, mtl, mwc-random, network
+ , retry, semigroups, stm, text, time, tinylog, transformers
+ , transformers-base, uuid, vector
+ }:
+ mkDerivation {
+ pname = "cql-io";
+ version = "0.16.0";
+ sha256 = "82e5aff9b929fd9dec92760b9d0e75ca509ce2619942628e5c7e3a66f4204004";
+ libraryHaskellDepends = [
+ async auto-update base bytestring containers cql cryptohash
+ data-default-class exceptions hashable HsOpenSSL iproute lens
+ monad-control mtl mwc-random network retry semigroups stm text time
+ tinylog transformers transformers-base uuid vector
+ ];
+ homepage = "https://gitlab.com/twittner/cql-io/";
+ description = "Cassandra CQL client";
+ license = stdenv.lib.licenses.mpl20;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"cqrs" = callPackage
({ mkDerivation, base }:
mkDerivation {
@@ -63750,8 +66389,6 @@ self: {
pname = "craftwerk";
version = "0.1";
sha256 = "a39d24c7e05469883f35d642c393c04a8bca6d03d1bd41905fd5a981ddb00200";
- isLibrary = true;
- isExecutable = true;
libraryHaskellDepends = [ base colour mtl vector-space ];
jailbreak = true;
homepage = "http://mahrz.github.com/craftwerk.html";
@@ -63782,8 +66419,6 @@ self: {
pname = "craftwerk-gtk";
version = "0.1";
sha256 = "ced95080b5b735d57a13b9082ebdadf5015926f4f49a3b181a3e974ba01f66a1";
- isLibrary = true;
- isExecutable = true;
libraryHaskellDepends = [
base cairo containers craftwerk craftwerk-cairo gtk mtl
];
@@ -63873,8 +66508,8 @@ self: {
}:
mkDerivation {
pname = "creatur";
- version = "5.9.12";
- sha256 = "111633a5e483d50567ab5a0240d7a0ffeedda8b3f4399ff42e6740a1462442bb";
+ version = "5.9.14";
+ sha256 = "040f72d38d7b83f7dc57da07e1f6570b65087c508aa9e3c10c426ee559c2d583";
libraryHaskellDepends = [
array base bytestring cereal cond directory exceptions filepath
gray-extended hdaemonize hsyslog MonadRandom mtl old-locale process
@@ -64006,15 +66641,12 @@ self: {
pname = "criterion";
version = "1.0.2.0";
sha256 = "1de2f6c9975135959fd8948ad2889310e5d19a736f9051a48c0fec081359ac0a";
- isLibrary = true;
- isExecutable = true;
libraryHaskellDepends = [
aeson ansi-wl-pprint base binary bytestring cassava containers
deepseq directory either filepath Glob hastache mtl mwc-random
optparse-applicative parsec statistics text time transformers
vector vector-algorithms
];
- executableHaskellDepends = [ base ];
testHaskellDepends = [
base bytestring HUnit QuickCheck statistics test-framework
test-framework-hunit test-framework-quickcheck2 vector
@@ -64039,15 +66671,12 @@ self: {
sha256 = "5cedd41bb6e5a85e65b51fdb00cb32038b826b8d18af072a8319cab43a452d38";
revision = "1";
editedCabalFile = "4de7233df470abf00ce1db761e7f46db68dd7855cc491d49584de149e922f5db";
- isLibrary = true;
- isExecutable = true;
libraryHaskellDepends = [
aeson ansi-wl-pprint base binary bytestring cassava containers
deepseq directory filepath Glob hastache mtl mwc-random
optparse-applicative parsec statistics text time transformers
transformers-compat vector vector-algorithms
];
- executableHaskellDepends = [ base ];
testHaskellDepends = [
base bytestring HUnit QuickCheck statistics test-framework
test-framework-hunit test-framework-quickcheck2 vector
@@ -64238,7 +66867,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "cron" = callPackage
+ "cron_0_4_1_1" = callPackage
({ mkDerivation, attoparsec, base, derive, mtl, mtl-compat
, old-locale, quickcheck-instances, semigroups, tasty, tasty-hunit
, tasty-quickcheck, text, time, transformers-compat
@@ -64257,6 +66886,28 @@ self: {
homepage = "http://github.com/michaelxavier/cron";
description = "Cron datatypes and Attoparsec parser";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "cron" = callPackage
+ ({ mkDerivation, attoparsec, base, derive, mtl, mtl-compat
+ , old-locale, quickcheck-instances, semigroups, tasty, tasty-hunit
+ , tasty-quickcheck, text, time, transformers-compat
+ }:
+ mkDerivation {
+ pname = "cron";
+ version = "0.4.1.2";
+ sha256 = "554c0b971306e55815cce41e2b1c6cc14aaecd7728795310d13b114e5260daa5";
+ libraryHaskellDepends = [
+ attoparsec base mtl mtl-compat old-locale semigroups text time
+ ];
+ testHaskellDepends = [
+ attoparsec base derive quickcheck-instances semigroups tasty
+ tasty-hunit tasty-quickcheck text time transformers-compat
+ ];
+ homepage = "http://github.com/michaelxavier/cron";
+ description = "Cron datatypes and Attoparsec parser";
+ license = stdenv.lib.licenses.mit;
}) {};
"cron-compat" = callPackage
@@ -64468,10 +67119,31 @@ self: {
hydraPlatforms = [ "x86_64-darwin" ];
}) {};
+ "crypto-multihash" = callPackage
+ ({ mkDerivation, base, base58-bytestring, bytestring, containers
+ , cryptonite, hspec, memory, string-conversions
+ }:
+ mkDerivation {
+ pname = "crypto-multihash";
+ version = "0.4.1.0";
+ sha256 = "175f277341722a856495bde25906fd9dc55b9864e10a337302ea1ae3d2cd4f9b";
+ isLibrary = true;
+ isExecutable = true;
+ libraryHaskellDepends = [
+ base base58-bytestring bytestring containers cryptonite memory
+ string-conversions
+ ];
+ executableHaskellDepends = [ base bytestring ];
+ testHaskellDepends = [ base bytestring hspec ];
+ homepage = "https://github.com/mseri/crypto-multihash#crypto-multihash";
+ description = "Multihash library on top of cryptonite crypto library";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
"crypto-numbers_0_2_3" = callPackage
- ({ mkDerivation, base, byteable, bytestring, crypto-random, HUnit
- , QuickCheck, test-framework, test-framework-hunit
- , test-framework-quickcheck2, vector
+ ({ mkDerivation, base, byteable, bytestring, crypto-random
+ , ghc-prim, HUnit, integer-gmp, QuickCheck, test-framework
+ , test-framework-hunit, test-framework-quickcheck2, vector
}:
mkDerivation {
pname = "crypto-numbers";
@@ -64479,7 +67151,9 @@ self: {
sha256 = "f77dabd4dd6aa6343ba351b2ae1c55e4b9ef85c7911eadf6914704401cada25b";
revision = "4";
editedCabalFile = "696ab7efd05590e0a45b905855e89493fe79e841291fdd45186b4215b6f7f6d2";
- libraryHaskellDepends = [ base bytestring crypto-random vector ];
+ libraryHaskellDepends = [
+ base bytestring crypto-random ghc-prim integer-gmp vector
+ ];
testHaskellDepends = [
base byteable bytestring crypto-random HUnit QuickCheck
test-framework test-framework-hunit test-framework-quickcheck2
@@ -64847,8 +67521,8 @@ self: {
}:
mkDerivation {
pname = "cryptohash-md5";
- version = "0.11.100.0";
- sha256 = "b78cb2469b247aa1ac5c828e510506eaca57340eb84882e71147bbfd5ec9581d";
+ version = "0.11.100.1";
+ sha256 = "710bd48770fa3e9a3b05428c6dc77fb72c91956d334a1eb89ded11bb843e18f9";
libraryHaskellDepends = [ base bytestring ];
testHaskellDepends = [
base base16-bytestring bytestring pureMD5 tasty tasty-hunit
@@ -64865,8 +67539,8 @@ self: {
}:
mkDerivation {
pname = "cryptohash-sha1";
- version = "0.11.100.0";
- sha256 = "24a6853f180ec505a44a6b93bd9272d4ac5e21dca254d89176bce4147dfafecf";
+ version = "0.11.100.1";
+ sha256 = "3c79af33542512442f8f87f6abb1faef7cd43bbfb2859260a33251d861eb0dab";
libraryHaskellDepends = [ base bytestring ];
testHaskellDepends = [
base base16-bytestring bytestring SHA tasty tasty-hunit
@@ -64883,8 +67557,8 @@ self: {
}:
mkDerivation {
pname = "cryptohash-sha256";
- version = "0.11.100.0";
- sha256 = "d4ec71b168f3600226cb53ac43559eb5795d5d79904a910c26046c360d60d780";
+ version = "0.11.100.1";
+ sha256 = "57b02338e9648639335788b422dd4c744543cb0991347472e2e3628a33c2f5d6";
libraryHaskellDepends = [ base bytestring ];
testHaskellDepends = [
base base16-bytestring bytestring SHA tasty tasty-hunit
@@ -65047,7 +67721,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "cryptol" = callPackage
+ "cryptol_2_3_0" = callPackage
({ mkDerivation, alex, ansi-terminal, array, async, base
, base-compat, bytestring, containers, deepseq, deepseq-generics
, directory, filepath, generic-trie, gitrev, GraphSCC, happy
@@ -65082,6 +67756,39 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
+ "cryptol" = callPackage
+ ({ mkDerivation, alex, ansi-terminal, array, async, base
+ , base-compat, bytestring, containers, deepseq, directory, filepath
+ , gitrev, GraphSCC, happy, haskeline, heredoc, monad-control
+ , monadLib, old-time, presburger, pretty, process, QuickCheck
+ , random, sbv, simple-smt, smtLib, syb, template-haskell, text
+ , tf-random, transformers, transformers-base, utf8-string
+ }:
+ mkDerivation {
+ pname = "cryptol";
+ version = "2.4.0";
+ sha256 = "d34471f734429c25b52ca71ce63270ec3157a8413eeaf7f65dd7abe3cb27014d";
+ isLibrary = true;
+ isExecutable = true;
+ libraryHaskellDepends = [
+ array async base base-compat bytestring containers deepseq
+ directory filepath gitrev GraphSCC heredoc monad-control monadLib
+ old-time presburger pretty process QuickCheck random sbv simple-smt
+ smtLib syb template-haskell text tf-random transformers
+ transformers-base utf8-string
+ ];
+ libraryToolDepends = [ alex happy ];
+ executableHaskellDepends = [
+ ansi-terminal base base-compat containers deepseq directory
+ filepath haskeline monad-control monadLib process random sbv
+ tf-random transformers
+ ];
+ homepage = "http://www.cryptol.net/";
+ description = "Cryptol: The Language of Cryptography";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"cryptonite_0_6" = callPackage
({ mkDerivation, base, byteable, bytestring, deepseq, ghc-prim
, integer-gmp, memory, tasty, tasty-hunit, tasty-kat
@@ -65155,8 +67862,8 @@ self: {
}:
mkDerivation {
pname = "cryptonite";
- version = "0.16";
- sha256 = "5c3bf190954986ea4af466914eb7a0c55a0b4c1c66552d00341277c89082511a";
+ version = "0.17";
+ sha256 = "a6c6a129b844c55580c4bfd79ecdf5bdc37ea8be6634ae7858015219111156c8";
libraryHaskellDepends = [
base bytestring deepseq ghc-prim integer-gmp memory
];
@@ -65435,7 +68142,7 @@ self: {
license = stdenv.lib.licenses.mit;
}) {};
- "css-text" = callPackage
+ "css-text_0_1_2_1" = callPackage
({ mkDerivation, attoparsec, base, hspec, QuickCheck, text }:
mkDerivation {
pname = "css-text";
@@ -65446,6 +68153,21 @@ self: {
homepage = "http://www.yesodweb.com/";
description = "CSS parser and renderer";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "css-text" = callPackage
+ ({ mkDerivation, attoparsec, base, hspec, QuickCheck, text }:
+ mkDerivation {
+ pname = "css-text";
+ version = "0.1.2.2";
+ sha256 = "dff564ac08587950dab4fedf07c357d9907099f60c87bf465d648a8965e61987";
+ libraryHaskellDepends = [ attoparsec base text ];
+ testHaskellDepends = [ attoparsec base hspec QuickCheck text ];
+ doCheck = false;
+ homepage = "http://www.yesodweb.com/";
+ description = "CSS parser and renderer";
+ license = stdenv.lib.licenses.mit;
}) {};
"csv" = callPackage
@@ -65470,18 +68192,12 @@ self: {
pname = "csv-conduit";
version = "0.6.3";
sha256 = "e42711dde5be65630d63dfabf48dff5bbf47fe83e1e5591972de67402fe561b5";
- isLibrary = true;
- isExecutable = true;
libraryHaskellDepends = [
array attoparsec attoparsec-conduit base blaze-builder bytestring
conduit conduit-extra containers data-default ghc-prim mmorph
monad-control mtl primitive resourcet text transformers
unordered-containers vector
];
- executableHaskellDepends = [
- base bytestring containers directory mtl primitive text
- transformers vector
- ];
testHaskellDepends = [
base bytestring containers directory HUnit mtl primitive
test-framework test-framework-hunit text transformers vector
@@ -65504,18 +68220,12 @@ self: {
pname = "csv-conduit";
version = "0.6.6";
sha256 = "7329056af16c2f81382ad0cc3437232b80e9910288daf687519a2e2cd2ee5d8b";
- isLibrary = true;
- isExecutable = true;
libraryHaskellDepends = [
array attoparsec base blaze-builder bytestring conduit
conduit-extra containers data-default ghc-prim mmorph monad-control
mtl primitive resourcet text transformers unordered-containers
vector
];
- executableHaskellDepends = [
- base bytestring containers directory mtl primitive text
- transformers vector
- ];
testHaskellDepends = [
base bytestring containers directory HUnit mtl primitive
test-framework test-framework-hunit text transformers vector
@@ -65681,12 +68391,7 @@ self: {
pname = "cube";
version = "0.2.0";
sha256 = "d71f6392f0323ab12da36c43e8780a39c3d547e217d63d19205f056839a30c6a";
- isLibrary = true;
- isExecutable = true;
libraryHaskellDepends = [ base bytestring cereal containers STL ];
- executableHaskellDepends = [
- base bytestring cereal containers hspec STL
- ];
testHaskellDepends = [
base bytestring cereal containers hspec STL
];
@@ -65845,12 +68550,12 @@ self: {
}) {};
"curl" = callPackage
- ({ mkDerivation, base, bytestring, containers, curl }:
+ ({ mkDerivation, base, bytestring, curl }:
mkDerivation {
pname = "curl";
version = "1.3.8";
sha256 = "9087c936bfcdb865bad3166baa3f12bf37acf076fa76010e3b5f82a1d485446e";
- libraryHaskellDepends = [ base bytestring containers ];
+ libraryHaskellDepends = [ base bytestring ];
librarySystemDepends = [ curl ];
description = "Haskell binding to libcurl";
license = stdenv.lib.licenses.bsd3;
@@ -66187,6 +68892,7 @@ self: {
];
description = "Compile-time, type-safe directed acyclic graphs";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"damnpacket" = callPackage
@@ -66413,7 +69119,6 @@ self: {
HUnit mtl QuickCheck shelly split test-framework
test-framework-hunit test-framework-quickcheck2 text zip-archive
];
- jailbreak = true;
doCheck = false;
postInstall = ''
mkdir -p $out/etc/bash_completion.d
@@ -66422,6 +69127,7 @@ self: {
homepage = "http://darcs.net/";
description = "a distributed, interactive, smart revision control system";
license = "GPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {inherit (pkgs) curl;};
"darcs-benchmark" = callPackage
@@ -66476,7 +69182,6 @@ self: {
vector zlib
];
executableSystemDepends = [ curl ];
- jailbreak = true;
homepage = "http://darcs.net/";
description = "a distributed, interactive, smart revision control system";
license = "GPL";
@@ -66782,7 +69487,7 @@ self: {
jailbreak = true;
homepage = "http://www.github.com/jfeltz/dash-haskell";
description = "Convert package Haddock to Dash docsets (IDE docs)";
- license = stdenv.lib.licenses.gpl3;
+ license = stdenv.lib.licenses.lgpl3;
hydraPlatforms = [ "x86_64-darwin" ];
}) {};
@@ -66871,12 +69576,11 @@ self: {
}:
mkDerivation {
pname = "data-accessor-template";
- version = "0.2.1.12";
- sha256 = "07042d79a2f26892ef0b847a36a78f8fc217843a47dd8684d24ffbb7174e795e";
+ version = "0.2.1.13";
+ sha256 = "ea947385d3619cecf628221316bd5b441889f548b999b017b353581a1e7a3958";
libraryHaskellDepends = [
base data-accessor template-haskell utility-ht
];
- jailbreak = true;
homepage = "http://www.haskell.org/haskellwiki/Record_access";
description = "Utilities for accessing and manipulating fields of records";
license = stdenv.lib.licenses.bsd3;
@@ -66936,8 +69640,8 @@ self: {
({ mkDerivation, base, ghc-prim, tasty, tasty-quickcheck }:
mkDerivation {
pname = "data-bword";
- version = "0.1";
- sha256 = "8d90db097d4df7688f2767f86d27534c79e8aa933a274962fc4a3ab4428b0ee8";
+ version = "0.1.0.1";
+ sha256 = "70f01f857865edcf1d1d20128b0202320b1635cc03b00954b6d1447cd699db7d";
libraryHaskellDepends = [ base ghc-prim ];
testHaskellDepends = [ base tasty tasty-quickcheck ];
homepage = "https://github.com/mvv/data-bword";
@@ -67067,37 +69771,28 @@ self: {
"data-default" = callPackage
({ mkDerivation, base, data-default-class
- , data-default-instances-base, data-default-instances-containers
- , data-default-instances-dlist, data-default-instances-old-locale
+ , data-default-instances-containers, data-default-instances-dlist
+ , data-default-instances-old-locale
}:
mkDerivation {
pname = "data-default";
- version = "0.6.0";
- sha256 = "1f84023990e44e4555ac54e6bc84e4efa3bb42a0851ce0bb7b3358ef5344386d";
+ version = "0.7.1.1";
+ sha256 = "b0f95d279cd75cacaa8152a01590dc3460f7134f6840b37052abb3ba3cb2a511";
libraryHaskellDepends = [
- base data-default-class data-default-instances-base
- data-default-instances-containers data-default-instances-dlist
- data-default-instances-old-locale
+ base data-default-class data-default-instances-containers
+ data-default-instances-dlist data-default-instances-old-locale
];
description = "A class for types with a default value";
license = stdenv.lib.licenses.bsd3;
}) {};
- "data-default_0_7_0" = callPackage
- ({ mkDerivation, base, data-default-class
- , data-default-instances-base, data-default-instances-containers
- , data-default-instances-dlist, data-default-instances-old-locale
- }:
+ "data-default-class_0_0_1" = callPackage
+ ({ mkDerivation, base }:
mkDerivation {
- pname = "data-default";
- version = "0.7.0";
- sha256 = "933b52b2477edbaaf2569a2bc76d4df8cf6fb52dc5e345ce18a76630423cb077";
- libraryHaskellDepends = [
- base data-default-class data-default-instances-base
- data-default-instances-containers data-default-instances-dlist
- data-default-instances-old-locale
- ];
- jailbreak = true;
+ pname = "data-default-class";
+ version = "0.0.1";
+ sha256 = "adc8ee80a6f0e5903339a2b8685220b32bc3e23856d3c12186cc464ae5c88f31";
+ libraryHaskellDepends = [ base ];
description = "A class for types with a default value";
license = stdenv.lib.licenses.bsd3;
hydraPlatforms = stdenv.lib.platforms.none;
@@ -67107,25 +69802,13 @@ self: {
({ mkDerivation, base }:
mkDerivation {
pname = "data-default-class";
- version = "0.0.1";
- sha256 = "adc8ee80a6f0e5903339a2b8685220b32bc3e23856d3c12186cc464ae5c88f31";
+ version = "0.1.2.0";
+ sha256 = "4f01b423f000c3e069aaf52a348564a6536797f31498bb85c3db4bd2d0973e56";
libraryHaskellDepends = [ base ];
description = "A class for types with a default value";
license = stdenv.lib.licenses.bsd3;
}) {};
- "data-default-class_0_1_0" = callPackage
- ({ mkDerivation, base }:
- mkDerivation {
- pname = "data-default-class";
- version = "0.1.0";
- sha256 = "01186c3b0da2d8513c2f93464a253fdc7eaeef06b1c526a5d139300bfcb39790";
- libraryHaskellDepends = [ base ];
- description = "A class for types with a default value";
- license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- }) {};
-
"data-default-extra" = callPackage
({ mkDerivation, base, data-default-class
, data-default-instances-base, data-default-instances-bytestring
@@ -67188,7 +69871,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "data-default-instances-base" = callPackage
+ "data-default-instances-base_0_1_0" = callPackage
({ mkDerivation, base, data-default-class }:
mkDerivation {
pname = "data-default-instances-base";
@@ -67197,6 +69880,18 @@ self: {
libraryHaskellDepends = [ base data-default-class ];
description = "Default instances for types in base";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "data-default-instances-base" = callPackage
+ ({ mkDerivation, base, data-default-class }:
+ mkDerivation {
+ pname = "data-default-instances-base";
+ version = "0.1.0.1";
+ sha256 = "844fe453f674b6b0998da804465914abce8936c5e640d8bb8bff37ad07d7a17a";
+ libraryHaskellDepends = [ base data-default-class ];
+ description = "Default instances for types in base";
+ license = stdenv.lib.licenses.bsd3;
}) {};
"data-default-instances-bytestring" = callPackage
@@ -67206,6 +69901,7 @@ self: {
version = "0.0.1";
sha256 = "4c431278d0dc1054fd531281db70d8615f88d9b2a29924aba2567fb3cf647220";
libraryHaskellDepends = [ base bytestring data-default-class ];
+ jailbreak = true;
homepage = "https://github.com/trskop/data-default-extra";
description = "Default instances for (lazy and strict) ByteString, Builder and ShortByteString";
license = stdenv.lib.licenses.bsd3;
@@ -67218,6 +69914,7 @@ self: {
version = "0.0.1";
sha256 = "430135708ad9d0730a4c3a3d1eb574bdc6f07547a5a9c5f30202e1e786070ab4";
libraryHaskellDepends = [ case-insensitive data-default-class ];
+ jailbreak = true;
homepage = "https://github.com/trskop/data-default-extra";
description = "Default instance for CI type from case-insensitive package";
license = stdenv.lib.licenses.bsd3;
@@ -67280,6 +69977,7 @@ self: {
version = "0.0.1";
sha256 = "db5d4c46cf36ce5956ffd0affe0f2c48e1c000b9bd61821d3e6c1b0171060cdf";
libraryHaskellDepends = [ base data-default-class text ];
+ jailbreak = true;
homepage = "https://github.com/trskop/data-default-extra";
description = "Default instances for (lazy and strict) Text and Text Builder";
license = stdenv.lib.licenses.bsd3;
@@ -67294,6 +69992,7 @@ self: {
libraryHaskellDepends = [
data-default-class unordered-containers
];
+ jailbreak = true;
homepage = "https://github.com/trskop/data-default-extra";
description = "Default instances for unordered-containers";
license = stdenv.lib.licenses.bsd3;
@@ -67306,6 +70005,7 @@ self: {
version = "0.0.1";
sha256 = "9ac84473a3af8b0c5e795ea5f84a34a0c18c3b2d5e17ce428206203f9d794666";
libraryHaskellDepends = [ data-default-class vector ];
+ jailbreak = true;
homepage = "https://github.com/trskop/data-default-extra";
description = "Default instances for types defined in vector package";
license = stdenv.lib.licenses.bsd3;
@@ -67340,8 +70040,8 @@ self: {
}:
mkDerivation {
pname = "data-dword";
- version = "0.3";
- sha256 = "e3f8bd8b529cd1e720d07a9ab9861f4e6f2cf63594a246d405d0c8125bad9254";
+ version = "0.3.1";
+ sha256 = "0aa84874feca89e86320915e07e5c48c303e34bbcaf6a1c77dbe03f7fba601ea";
libraryHaskellDepends = [
base data-bword ghc-prim hashable template-haskell
];
@@ -67373,6 +70073,23 @@ self: {
hydraPlatforms = [ "x86_64-darwin" ];
}) {};
+ "data-elf" = callPackage
+ ({ mkDerivation, base, binary, bytestring, data-endian, data-flags
+ , data-sword, text-latin1
+ }:
+ mkDerivation {
+ pname = "data-elf";
+ version = "0.1.0.1";
+ sha256 = "33f6f3508721bafabb5cc2d1f04b262964e178883d7dbcbe3feeb8cc069e5df9";
+ libraryHaskellDepends = [
+ base binary bytestring data-endian data-flags data-sword
+ text-latin1
+ ];
+ homepage = "https://github.com/mvv/data-elf";
+ description = "Executable and Linkable Format (ELF) data structures";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
"data-embed" = callPackage
({ mkDerivation, base, bytestring, cereal, containers, directory
, executable-path, hashable, utf8-string
@@ -67401,8 +70118,8 @@ self: {
({ mkDerivation, base }:
mkDerivation {
pname = "data-endian";
- version = "0.1";
- sha256 = "39b84a6b516c8d7e0fdb72ed16a77f87bae9fcffb9c9437797d406de47bb9b46";
+ version = "0.1.1";
+ sha256 = "8c1d4f30374f8331d31f4d7c6b39284331b6b9436e7b50f86547417bd05f2ac0";
libraryHaskellDepends = [ base ];
homepage = "https://github.com/mvv/data-endian";
description = "Endian-sensitive data";
@@ -67513,9 +70230,10 @@ self: {
({ mkDerivation, base, template-haskell }:
mkDerivation {
pname = "data-flags";
- version = "0.0.3.1";
- sha256 = "45bfa0c14b4e31364c5b7c70bf19f1ee3aa6ae692e08e7a70b56668503970de8";
+ version = "0.0.3.2";
+ sha256 = "9e8944d63a314a116d1cc8ecb115ad0ea8dabd5ccb84dbbefd332e641430794a";
libraryHaskellDepends = [ base template-haskell ];
+ homepage = "https://github.com/mvv/data-flags";
description = "A package for working with bit masks and flags in general";
license = stdenv.lib.licenses.bsd3;
hydraPlatforms = stdenv.lib.platforms.none;
@@ -67830,8 +70548,8 @@ self: {
({ mkDerivation, attoparsec, base, binary, containers, text }:
mkDerivation {
pname = "data-named";
- version = "0.5.2";
- sha256 = "5d43477697af2202b899300bb8283540d95b9f1004194daea924cab3d8b2fcd7";
+ version = "0.6.1";
+ sha256 = "515e245a63c8ee278633edb368c3eaa474750bdaa0f0e5554e4d6038c295b093";
libraryHaskellDepends = [ attoparsec base binary containers text ];
homepage = "https://github.com/kawu/data-named";
description = "Data types for named entities";
@@ -67893,8 +70611,6 @@ self: {
pname = "data-object-yaml";
version = "0.3.4.2";
sha256 = "5785ea86b5c2da50edc5dc595d9deadae0a5868f294a6b9664f1aceb38c949a1";
- isLibrary = true;
- isExecutable = true;
libraryHaskellDepends = [
base bytestring conduit containers convertible-text data-object
failure text transformers yaml
@@ -68004,10 +70720,7 @@ self: {
sha256 = "47997d8b36d3103d024ed572255abf51707984743514f619e2fb17796b422e56";
revision = "1";
editedCabalFile = "60185d3fdb87fe62f297eb4473d58a7ccf93d1b6ee790a8b2faed79e1ac833c1";
- isLibrary = true;
- isExecutable = true;
libraryHaskellDepends = [ base containers ];
- executableHaskellDepends = [ base ];
homepage = "http://www.ittc.ku.edu/csdl/fpg/Tools/IOReification";
description = "Reify a recursive data structure into an explicit graph";
license = stdenv.lib.licenses.bsd3;
@@ -68022,10 +70735,7 @@ self: {
sha256 = "61350a1e96cb1276c2b6b8b13fa1bade5d4e63c702509a3f5e90bbc19ad9b202";
revision = "1";
editedCabalFile = "f7f3a5b2f482a67eb77f4ba32e15f91bcfa4c220cdda9dde22cd9d9ff18ab447";
- isLibrary = true;
- isExecutable = true;
libraryHaskellDepends = [ base containers ];
- executableHaskellDepends = [ base ];
homepage = "http://ku-fpg.github.io/software/data-reify/";
description = "Reify a recursive data structure into an explicit graph";
license = stdenv.lib.licenses.bsd3;
@@ -68197,6 +70907,23 @@ self: {
license = stdenv.lib.licenses.mit;
}) {};
+ "data-sword" = callPackage
+ ({ mkDerivation, base, data-bword, hashable, tasty
+ , tasty-quickcheck, template-haskell
+ }:
+ mkDerivation {
+ pname = "data-sword";
+ version = "0.1.1";
+ sha256 = "9fa52df57b18f0086a0a5e718221357e7f2a23917252648ec6b66c222ae6ce88";
+ libraryHaskellDepends = [
+ base data-bword hashable template-haskell
+ ];
+ testHaskellDepends = [ base tasty tasty-quickcheck ];
+ homepage = "https://github.com/mvv/data-sword";
+ description = "Shorter binary words";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
"data-tensor" = callPackage
({ mkDerivation, base }:
mkDerivation {
@@ -68250,8 +70977,8 @@ self: {
({ mkDerivation, base, containers, mtl }:
mkDerivation {
pname = "data-transform";
- version = "0.1.0.0";
- sha256 = "516ab72802b18befd0e0f3b9ab051ad1f5af9aea5d52ce088624104d205f0cd6";
+ version = "0.1.0.1";
+ sha256 = "868aed778aa6cb91cd9e43ee238c18e1e3f4e4f9e038a5c907e54bf6a4fd66c5";
libraryHaskellDepends = [ base containers mtl ];
description = "Functions to transform data structures";
license = stdenv.lib.licenses.bsd3;
@@ -68363,8 +71090,6 @@ self: {
pname = "dataenc";
version = "0.14.0.7";
sha256 = "f9d370a1ac1b9cd3c66abd13ad351270d020a21fcd774f49dae6cfa9f8a98ff3";
- isLibrary = true;
- isExecutable = true;
libraryHaskellDepends = [ array base containers ];
jailbreak = true;
homepage = "http://www.haskell.org/haskellwiki/Library/Data_encoding";
@@ -68888,6 +71613,17 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "ddate" = callPackage
+ ({ mkDerivation, base, dates, time }:
+ mkDerivation {
+ pname = "ddate";
+ version = "0.1.0.0";
+ sha256 = "c5b2865267163dd4055533a874c72e77d4749293975f639fe1e229c38ec580d7";
+ libraryHaskellDepends = [ base dates time ];
+ description = "Discordian Date Types for Haskell";
+ license = stdenv.lib.licenses.gpl2;
+ }) {};
+
"ddc-base" = callPackage
({ mkDerivation, base, containers, deepseq, parsec, transformers
, wl-pprint
@@ -69214,8 +71950,8 @@ self: {
}:
mkDerivation {
pname = "dead-code-detection";
- version = "0.8";
- sha256 = "8eadc01d4df3100697b3b4f93d8253c417f851a320c2bfc2ea6362f7937b1c03";
+ version = "0.8.1";
+ sha256 = "6b69771ae3dac21d73ccd6fbb145dac98cf3f661787f2c59ecd6ee26726bc1fb";
isLibrary = false;
isExecutable = true;
executableHaskellDepends = [
@@ -69344,7 +72080,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "debian-build" = callPackage
+ "debian-build_0_9_2_0" = callPackage
({ mkDerivation, base, Cabal, directory, filepath, process, split
, transformers
}:
@@ -69361,6 +72097,26 @@ self: {
homepage = "http://twitter.com/khibino/";
description = "Debian package build sequence tools";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "debian-build" = callPackage
+ ({ mkDerivation, base, directory, filepath, process, split
+ , transformers
+ }:
+ mkDerivation {
+ pname = "debian-build";
+ version = "0.10.1.0";
+ sha256 = "a41033dee53346bda2f77a4192f85b54dbe3d25ef9b1fd158fdc09b4411e90b4";
+ isLibrary = true;
+ isExecutable = true;
+ libraryHaskellDepends = [
+ base directory filepath process split transformers
+ ];
+ executableHaskellDepends = [ base filepath transformers ];
+ homepage = "http://twitter.com/khibino/";
+ description = "Debian package build sequence tools";
+ license = stdenv.lib.licenses.bsd3;
}) {};
"debug-diff" = callPackage
@@ -70079,7 +72835,7 @@ self: {
jailbreak = true;
homepage = "https://github.com/kryoxide/delta";
description = "A library for detecting file changes";
- license = stdenv.lib.licenses.gpl3;
+ license = stdenv.lib.licenses.lgpl3;
hydraPlatforms = [ "x86_64-darwin" ];
}) {};
@@ -70147,6 +72903,30 @@ self: {
hydraPlatforms = [ "x86_64-darwin" ];
}) {};
+ "dense" = callPackage
+ ({ mkDerivation, base, binary, bytes, cereal, comonad, deepseq
+ , doctest, ghc-prim, hashable, lens, linear, primitive
+ , semigroupoids, simple-reflect, template-haskell, transformers
+ , transformers-compat, vector
+ }:
+ mkDerivation {
+ pname = "dense";
+ version = "0.1.0.0";
+ sha256 = "29fd49d5ebaede4ba4da04a263f2f2dbb168bf94327e21517a9519f34dcfd7b3";
+ libraryHaskellDepends = [
+ base binary bytes cereal comonad deepseq ghc-prim hashable lens
+ linear primitive semigroupoids template-haskell transformers
+ transformers-compat vector
+ ];
+ testHaskellDepends = [
+ base binary bytes cereal comonad deepseq doctest ghc-prim hashable
+ lens linear primitive semigroupoids simple-reflect template-haskell
+ transformers transformers-compat vector
+ ];
+ description = "Mutable and immutable dense multidimensional arrays";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
"dependent-map_0_1_1_3" = callPackage
({ mkDerivation, base, containers, dependent-sum }:
mkDerivation {
@@ -70505,7 +73285,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "derive" = callPackage
+ "derive_2_5_25" = callPackage
({ mkDerivation, base, bytestring, containers, directory, filepath
, haskell-src-exts, pretty, process, syb, template-haskell
, transformers, uniplate
@@ -70524,6 +73304,28 @@ self: {
homepage = "https://github.com/ndmitchell/derive#readme";
description = "A program and library to derive instances for data types";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "derive" = callPackage
+ ({ mkDerivation, base, bytestring, containers, directory, filepath
+ , haskell-src-exts, pretty, process, syb, template-haskell
+ , transformers, uniplate
+ }:
+ mkDerivation {
+ pname = "derive";
+ version = "2.5.26";
+ sha256 = "b6ef2e5e7fa79d3b76053c97bf88cd2ab77fe15065bf321a135a29d18b4e4a6d";
+ isLibrary = true;
+ isExecutable = true;
+ libraryHaskellDepends = [
+ base bytestring containers directory filepath haskell-src-exts
+ pretty process syb template-haskell transformers uniplate
+ ];
+ executableHaskellDepends = [ base ];
+ homepage = "https://github.com/ndmitchell/derive#readme";
+ description = "A program and library to derive instances for data types";
+ license = stdenv.lib.licenses.bsd3;
}) {};
"derive-IG" = callPackage
@@ -70625,7 +73427,7 @@ self: {
hydraPlatforms = [ "x86_64-darwin" ];
}) {};
- "deriving-compat" = callPackage
+ "deriving-compat_0_2" = callPackage
({ mkDerivation, base, base-compat, base-orphans, containers
, ghc-prim, hspec, QuickCheck, template-haskell, transformers
, transformers-compat
@@ -70641,6 +73443,30 @@ self: {
base base-compat base-orphans hspec QuickCheck transformers
transformers-compat
];
+ jailbreak = true;
+ homepage = "https://github.com/haskell-compat/deriving-compat";
+ description = "Backports of GHC deriving extensions";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "deriving-compat" = callPackage
+ ({ mkDerivation, base, base-compat, base-orphans, containers
+ , ghc-boot-th, ghc-prim, hspec, QuickCheck, template-haskell
+ , transformers, transformers-compat
+ }:
+ mkDerivation {
+ pname = "deriving-compat";
+ version = "0.3";
+ sha256 = "14d1921e1046ca9802dc1cc62e1343d6d8ea6ea9056b8245b57cfaf85ee408ea";
+ libraryHaskellDepends = [
+ base containers ghc-boot-th ghc-prim template-haskell transformers
+ transformers-compat
+ ];
+ testHaskellDepends = [
+ base base-compat base-orphans hspec QuickCheck transformers
+ transformers-compat
+ ];
homepage = "https://github.com/haskell-compat/deriving-compat";
description = "Backports of GHC deriving extensions";
license = stdenv.lib.licenses.bsd3;
@@ -71349,7 +74175,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "diagrams-cairo" = callPackage
+ "diagrams-cairo_1_3_0_6" = callPackage
({ mkDerivation, array, base, bytestring, cairo, colour, containers
, data-default-class, diagrams-core, diagrams-lib, filepath
, hashable, JuicyPixels, lens, mtl, optparse-applicative, pango
@@ -71372,6 +74198,28 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
+ "diagrams-cairo" = callPackage
+ ({ mkDerivation, array, base, bytestring, cairo, colour, containers
+ , data-default-class, diagrams-core, diagrams-lib, filepath
+ , hashable, JuicyPixels, lens, mtl, optparse-applicative, pango
+ , split, statestack, transformers, unix, vector
+ }:
+ mkDerivation {
+ pname = "diagrams-cairo";
+ version = "1.3.1";
+ sha256 = "0c3949f07592ffae838f81ea76fb88639dfbf64a3002a563101330accbadc485";
+ libraryHaskellDepends = [
+ array base bytestring cairo colour containers data-default-class
+ diagrams-core diagrams-lib filepath hashable JuicyPixels lens mtl
+ optparse-applicative pango split statestack transformers unix
+ vector
+ ];
+ homepage = "http://projects.haskell.org/diagrams";
+ description = "Cairo backend for diagrams drawing EDSL";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"diagrams-canvas_0_3_0_3" = callPackage
({ mkDerivation, base, blank-canvas, cmdargs, containers
, data-default-class, diagrams-core, diagrams-lib, lens, mtl
@@ -71437,7 +74285,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "diagrams-canvas" = callPackage
+ "diagrams-canvas_1_3_0_4" = callPackage
({ mkDerivation, base, blank-canvas, cmdargs, containers
, data-default-class, diagrams-core, diagrams-lib, lens, mtl
, NumInstances, optparse-applicative, statestack, text
@@ -71458,6 +74306,26 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
+ "diagrams-canvas" = callPackage
+ ({ mkDerivation, base, blank-canvas, cmdargs, containers
+ , data-default-class, diagrams-core, diagrams-lib, lens, mtl
+ , NumInstances, optparse-applicative, statestack, text
+ }:
+ mkDerivation {
+ pname = "diagrams-canvas";
+ version = "1.3.0.5";
+ sha256 = "624a99f868ff7fbfed123b6c3ddc0a2369d48b472bf7c5ac9cc5c3a38f755de9";
+ libraryHaskellDepends = [
+ base blank-canvas cmdargs containers data-default-class
+ diagrams-core diagrams-lib lens mtl NumInstances
+ optparse-applicative statestack text
+ ];
+ homepage = "http://projects.haskell.org/diagrams/";
+ description = "HTML5 canvas backend for diagrams drawing EDSL";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"diagrams-contrib_1_1_2_4" = callPackage
({ mkDerivation, arithmoi, base, circle-packing, colour, containers
, data-default, data-default-class, diagrams-core, diagrams-lib
@@ -71980,8 +74848,8 @@ self: {
}:
mkDerivation {
pname = "diagrams-graphviz";
- version = "1.3.0.1";
- sha256 = "1d2ec9533aaac6a429eac9750fd7e5fc7a21d18223010067ebeae60c0d95da05";
+ version = "1.3.1";
+ sha256 = "09ae6f6d08d3ed43f6f6bf711e3749f1979b2e2e6976cbd7da05bd2a8f0d6a04";
libraryHaskellDepends = [
base containers diagrams-lib fgl graphviz split
];
@@ -71991,7 +74859,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "diagrams-gtk" = callPackage
+ "diagrams-gtk_1_3_0_1" = callPackage
({ mkDerivation, base, cairo, diagrams-cairo, diagrams-lib, gtk }:
mkDerivation {
pname = "diagrams-gtk";
@@ -72007,6 +74875,21 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
+ "diagrams-gtk" = callPackage
+ ({ mkDerivation, base, cairo, diagrams-cairo, diagrams-lib, gtk }:
+ mkDerivation {
+ pname = "diagrams-gtk";
+ version = "1.3.0.2";
+ sha256 = "ef4751e30f9b51ddb78f5310c5fd890ab9f26dd7cf409e3dbf39a96e73884c29";
+ libraryHaskellDepends = [
+ base cairo diagrams-cairo diagrams-lib gtk
+ ];
+ homepage = "http://projects.haskell.org/diagrams/";
+ description = "Backend for rendering diagrams directly to GTK windows";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"diagrams-haddock_0_2_2_12" = callPackage
({ mkDerivation, ansi-terminal, base, base64-bytestring, blaze-svg
, bytestring, Cabal, cautious-file, cmdargs, containers, cpphs
@@ -72264,7 +75147,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "diagrams-html5" = callPackage
+ "diagrams-html5_1_3_0_5" = callPackage
({ mkDerivation, base, cmdargs, containers, data-default-class
, diagrams-core, diagrams-lib, lens, mtl, NumInstances
, optparse-applicative, split, statestack, static-canvas, text
@@ -72285,6 +75168,26 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
+ "diagrams-html5" = callPackage
+ ({ mkDerivation, base, cmdargs, containers, data-default-class
+ , diagrams-core, diagrams-lib, lens, mtl, NumInstances
+ , optparse-applicative, split, statestack, static-canvas, text
+ }:
+ mkDerivation {
+ pname = "diagrams-html5";
+ version = "1.3.0.6";
+ sha256 = "92d980c07aa22df32b898ec43c00ed2c5405c6e6d29b6fb152d420d82a4c171d";
+ libraryHaskellDepends = [
+ base cmdargs containers data-default-class diagrams-core
+ diagrams-lib lens mtl NumInstances optparse-applicative split
+ statestack static-canvas text
+ ];
+ homepage = "http://projects.haskell.org/diagrams/";
+ description = "HTML5 canvas backend for diagrams drawing EDSL";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"diagrams-lib_1_2_0_7" = callPackage
({ mkDerivation, active, array, base, colour, containers
, data-default-class, diagrams-core, dual-tree, filepath
@@ -72952,6 +75855,7 @@ self: {
libraryHaskellDepends = [
base data-default-class diagrams-lib lens
];
+ jailbreak = true;
homepage = "https://github.com/timjb/rubiks-cube";
description = "Library for drawing the Rubik's Cube";
license = stdenv.lib.licenses.mit;
@@ -73222,8 +76126,6 @@ self: {
pname = "diagrams-wx";
version = "0.1.1.0";
sha256 = "472855bcd4f7df78002a35099ba9b0eb21e5473c30e6eff74ecc9dcafa35b9ba";
- isLibrary = true;
- isExecutable = true;
libraryHaskellDepends = [
base cairo diagrams-cairo diagrams-lib wx wxcore
];
@@ -73300,6 +76202,19 @@ self: {
license = stdenv.lib.licenses.gpl3;
}) {};
+ "dictionary-sharing" = callPackage
+ ({ mkDerivation, base, containers }:
+ mkDerivation {
+ pname = "dictionary-sharing";
+ version = "0.1.0.0";
+ sha256 = "8c3b5184d5d6056433d51a49c5402e4ab7b0260073d5342685b8e141d2be5a01";
+ revision = "2";
+ editedCabalFile = "71d347366e563d81041dc8b9c226a53bd98e2ba3774e17cacbd84d3726c3ab5f";
+ libraryHaskellDepends = [ base containers ];
+ description = "Sharing/memoization of class members";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
"dictparser" = callPackage
({ mkDerivation, base, hspec, parsec, split }:
mkDerivation {
@@ -73862,7 +76777,7 @@ self: {
license = stdenv.lib.licenses.mit;
}) {};
- "digits" = callPackage
+ "digits_0_2" = callPackage
({ mkDerivation, base, QuickCheck }:
mkDerivation {
pname = "digits";
@@ -73871,6 +76786,19 @@ self: {
libraryHaskellDepends = [ base QuickCheck ];
description = "Converts integers to lists of digits and back";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "digits" = callPackage
+ ({ mkDerivation, base, QuickCheck }:
+ mkDerivation {
+ pname = "digits";
+ version = "0.3.1";
+ sha256 = "a8499c9745dcf8a4e6c48594f555e6c6276e8d91c457dcc562a370ccadcd6a2c";
+ libraryHaskellDepends = [ base QuickCheck ];
+ testHaskellDepends = [ base QuickCheck ];
+ description = "Converts integers to lists of digits and back";
+ license = stdenv.lib.licenses.bsd3;
}) {};
"dimensional_0_13_0_1" = callPackage
@@ -74518,7 +77446,7 @@ self: {
license = stdenv.lib.licenses.gpl3;
}) {};
- "distributed-closure" = callPackage
+ "distributed-closure_0_3_0_0" = callPackage
({ mkDerivation, base, binary, bytestring, constraints, hspec
, QuickCheck, syb, template-haskell
}:
@@ -74533,6 +77461,24 @@ self: {
homepage = "https://github.com/tweag/distributed-closure";
description = "Serializable closures for distributed programming";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "distributed-closure" = callPackage
+ ({ mkDerivation, base, binary, bytestring, constraints, hspec
+ , QuickCheck, syb, template-haskell
+ }:
+ mkDerivation {
+ pname = "distributed-closure";
+ version = "0.3.1.0";
+ sha256 = "eb7894b3394662ddc86e249bfe424033674597e3b952e117f1c9a7f554543fa3";
+ libraryHaskellDepends = [
+ base binary bytestring constraints syb template-haskell
+ ];
+ testHaskellDepends = [ base binary hspec QuickCheck ];
+ homepage = "https://github.com/tweag/distributed-closure";
+ description = "Serializable closures for distributed programming";
+ license = stdenv.lib.licenses.bsd3;
hydraPlatforms = [ "x86_64-darwin" ];
}) {};
@@ -74660,18 +77606,19 @@ self: {
"distributed-process" = callPackage
({ mkDerivation, base, binary, bytestring, containers
, data-accessor, deepseq, distributed-static, exceptions, hashable
- , mtl, network-transport, random, rank1dynamic, stm, syb, time
- , transformers
+ , mtl, network-transport, random, rank1dynamic, stm, syb
+ , template-haskell, time, transformers
}:
mkDerivation {
pname = "distributed-process";
- version = "0.6.2";
- sha256 = "ea3a29d9fa80d273807012c79f6af05e6c4022d29c5be1ef113fe335526a1fe9";
+ version = "0.6.4";
+ sha256 = "013d53a6768cb1bbb14b50898cc75033cc058c6f289e6e5add30852a0449414f";
libraryHaskellDepends = [
base binary bytestring containers data-accessor deepseq
distributed-static exceptions hashable mtl network-transport random
- rank1dynamic stm syb time transformers
+ rank1dynamic stm syb template-haskell time transformers
];
+ doCheck = false;
homepage = "http://haskell-distributed.github.com/";
description = "Cloud Haskell: Erlang-style concurrency in Haskell";
license = stdenv.lib.licenses.bsd3;
@@ -74749,8 +77696,6 @@ self: {
pname = "distributed-process-azure";
version = "0.1.0";
sha256 = "4f64d22e0ff0dc94e6ecfd99cc7133ab5c5df4dbbe3415bd2c99fdaee98f8035";
- isLibrary = true;
- isExecutable = true;
libraryHaskellDepends = [
azure-service-api base binary bytestring certificate
distributed-process distributed-static executable-path filepath
@@ -74810,6 +77755,8 @@ self: {
pname = "distributed-process-client-server";
version = "0.1.3.2";
sha256 = "2c905624d5486b7bc8bd1a4763b139e7eb364b20467c9abddd553f9afbd3601f";
+ revision = "1";
+ editedCabalFile = "de3bac2148543dcd00c7cebdaf95a7403d7b0f966683bf9ee23fe4eb8d33fcc6";
libraryHaskellDepends = [
base binary containers data-accessor deepseq distributed-process
distributed-process-async distributed-process-extras fingertree
@@ -74897,6 +77844,8 @@ self: {
pname = "distributed-process-execution";
version = "0.1.2.2";
sha256 = "9fbfca6b394e52af462586127a0edc2efc2a160ae8f69a9d34234a71e3dbf7b5";
+ revision = "1";
+ editedCabalFile = "c7fad93838da34d675ea6484d0697e437ab3453d580e9759fa0c5bd66f86d7bf";
libraryHaskellDepends = [
base binary containers data-accessor deepseq distributed-process
distributed-process-client-server distributed-process-extras
@@ -74965,6 +77914,8 @@ self: {
pname = "distributed-process-extras";
version = "0.2.1.2";
sha256 = "c1a4e1a5e3ec30089251db40fd479b19c5fd74c9dd8ca50f8eb32aaf9747a048";
+ revision = "1";
+ editedCabalFile = "5f287b8a5c2d4460cc101fd2b96d116fa74876b894f8ae5ab44b925af5f233d6";
libraryHaskellDepends = [
base binary containers data-accessor deepseq distributed-process
fingertree hashable mtl stm time transformers unordered-containers
@@ -75039,13 +77990,10 @@ self: {
pname = "distributed-process-p2p";
version = "0.1.3.2";
sha256 = "613c65aa986085e61cf65b55bf174cc2f31a79e5b666daf1ef402bcad940a28e";
- isLibrary = true;
- isExecutable = true;
libraryHaskellDepends = [
base binary bytestring containers distributed-process mtl network
network-transport network-transport-tcp
];
- executableHaskellDepends = [ base distributed-process mtl ];
homepage = "https://bitbucket.org/dpwiz/distributed-process-p2p/";
description = "Peer-to-peer node discovery for Cloud Haskell";
license = stdenv.lib.licenses.bsd3;
@@ -75065,8 +78013,6 @@ self: {
pname = "distributed-process-platform";
version = "0.1.0";
sha256 = "752980d006aaa5319b91da7b5bd5124322552fff9e9cb7de816aff89b7f5ae2f";
- isLibrary = true;
- isExecutable = true;
libraryHaskellDepends = [
base binary containers data-accessor deepseq distributed-process
fingertree hashable mtl stm time transformers unordered-containers
@@ -75129,8 +78075,6 @@ self: {
pname = "distributed-process-simplelocalnet";
version = "0.2.2.0";
sha256 = "219d7137acc4633728bec1708e4408d29ce7f1e8277551c988a788cfbc2c9508";
- isLibrary = true;
- isExecutable = true;
libraryHaskellDepends = [
base binary bytestring containers data-accessor distributed-process
network network-multicast network-transport network-transport-tcp
@@ -75152,8 +78096,6 @@ self: {
pname = "distributed-process-simplelocalnet";
version = "0.2.3.0";
sha256 = "5ece5c8cf825c6b0fbdd7c0c499d95ae77008530b1a43acc66fc17c9480e0705";
- isLibrary = true;
- isExecutable = true;
libraryHaskellDepends = [
base binary bytestring containers data-accessor distributed-process
network network-multicast network-transport network-transport-tcp
@@ -75175,8 +78117,6 @@ self: {
pname = "distributed-process-simplelocalnet";
version = "0.2.3.2";
sha256 = "c3351cf8a782dda756689b3747ede1e3879dcb913a07065eb4ec0052a963825f";
- isLibrary = true;
- isExecutable = true;
libraryHaskellDepends = [
base binary bytestring containers data-accessor distributed-process
network network-multicast network-transport network-transport-tcp
@@ -75236,6 +78176,8 @@ self: {
pname = "distributed-process-supervisor";
version = "0.1.3.2";
sha256 = "3e9b9c940afb67d41bb3ec50229ea972ffd386a2e424007b9cbacc361f053df4";
+ revision = "1";
+ editedCabalFile = "b23308ae5fb7d64215ea9c5a25f92c8ccd7371437e63f4bd9968ab20bfa65e5d";
libraryHaskellDepends = [
base binary containers data-accessor deepseq distributed-process
distributed-process-client-server distributed-process-extras
@@ -75309,6 +78251,8 @@ self: {
pname = "distributed-process-task";
version = "0.1.2.2";
sha256 = "ec25caf01b9185d166433246210be688a9733e73f54b03f91a910eaf2cd05c23";
+ revision = "1";
+ editedCabalFile = "2881a849616f0f38ece555040465acf23dc273964282be1a3a00521eb0929c26";
libraryHaskellDepends = [
base binary containers data-accessor deepseq distributed-process
distributed-process-async distributed-process-client-server
@@ -75393,13 +78337,10 @@ self: {
pname = "distributed-process-zookeeper";
version = "0.2.1.0";
sha256 = "98e74ca698daf1434fda5ac2cb277e8849080ef897e907716a196c1348c84bcd";
- isLibrary = true;
- isExecutable = true;
libraryHaskellDepends = [
base binary bytestring containers deepseq distributed-process hzk
mtl network network-transport network-transport-tcp transformers
];
- executableHaskellDepends = [ base distributed-process ];
testHaskellDepends = [
base bytestring deepseq distributed-process
distributed-process-monad-control enclosed-exceptions hspec hzk
@@ -75505,18 +78446,39 @@ self: {
({ mkDerivation, array, base, containers, MonadRandom, random }:
mkDerivation {
pname = "distribution";
- version = "1.0.0.0";
- sha256 = "9ed0b100f62fda5e9bb7e7e952f7470ef5225faa9094abd799977a08c755097e";
+ version = "1.0.1.0";
+ sha256 = "c5777b37b0b200966f73c69d3586dd694fe13ab7e587c5d8fd23efad9cdc1f0e";
libraryHaskellDepends = [
array base containers MonadRandom random
];
- jailbreak = true;
homepage = "https://github.com/redelmann/haskell-distribution";
description = "Finite discrete probability distributions";
license = stdenv.lib.licenses.asl20;
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
+ "distribution-nixpkgs" = callPackage
+ ({ mkDerivation, aeson, base, bytestring, Cabal, containers
+ , deepseq, doctest, hspec, language-nix, lens, pretty, process
+ , QuickCheck, split
+ }:
+ mkDerivation {
+ pname = "distribution-nixpkgs";
+ version = "1.0.0.1";
+ sha256 = "b69bfe3fcb58d484a2d35f36d918a9596256aa11f050ac2b93bc63058ffb1b48";
+ libraryHaskellDepends = [
+ aeson base bytestring Cabal containers deepseq language-nix lens
+ pretty process split
+ ];
+ testHaskellDepends = [
+ aeson base bytestring Cabal containers deepseq doctest hspec
+ language-nix lens pretty process QuickCheck split
+ ];
+ homepage = "https://github.com/peti/distribution-nixpkgs#readme";
+ description = "Types and functions to manipulate the Nixpkgs distribution";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
"distribution-plot" = callPackage
({ mkDerivation, base, Chart, Chart-cairo, colour, containers
, data-default-class, distribution, lens
@@ -75596,7 +78558,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "diversity" = callPackage
+ "diversity_0_8_0_0" = callPackage
({ mkDerivation, base, containers, data-ordlist, fasta
, math-functions, MonadRandom, optparse-applicative, parsec, pipes
, random-shuffle, scientific, split
@@ -75617,6 +78579,30 @@ self: {
homepage = "https://github.com/GregorySchwartz/diversity";
description = "Quantify the diversity of a population";
license = stdenv.lib.licenses.gpl2;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "diversity" = callPackage
+ ({ mkDerivation, base, containers, data-ordlist, fasta
+ , math-functions, MonadRandom, optparse-applicative, parsec, pipes
+ , random-shuffle, scientific, split
+ }:
+ mkDerivation {
+ pname = "diversity";
+ version = "0.8.0.1";
+ sha256 = "06ee80a100424346e725777467173198a574d1df354cfd0051b0ee2983c1feba";
+ isLibrary = true;
+ isExecutable = true;
+ libraryHaskellDepends = [
+ base containers data-ordlist fasta math-functions MonadRandom
+ parsec random-shuffle scientific split
+ ];
+ executableHaskellDepends = [
+ base containers fasta optparse-applicative pipes
+ ];
+ homepage = "https://github.com/GregorySchwartz/diversity";
+ description = "Quantify the diversity of a population";
+ license = stdenv.lib.licenses.gpl3;
}) {};
"dixi_0_6_0_2" = callPackage
@@ -75970,7 +78956,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "dns" = callPackage
+ "dns_2_0_2" = callPackage
({ mkDerivation, attoparsec, base, binary, blaze-builder
, bytestring, conduit, conduit-extra, containers, doctest, hspec
, iproute, mtl, network, random, resourcet, word8
@@ -75992,6 +78978,31 @@ self: {
testTarget = "spec";
description = "DNS library in Haskell";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "dns" = callPackage
+ ({ mkDerivation, attoparsec, base, binary, blaze-builder
+ , bytestring, conduit, conduit-extra, containers, doctest, hspec
+ , iproute, mtl, network, random, resourcet, safe, word8
+ }:
+ mkDerivation {
+ pname = "dns";
+ version = "2.0.3";
+ sha256 = "ce364ece31f9c0ecb4255a48d4cb6b55e22778db571f0ed311a918c3f7e89aa0";
+ libraryHaskellDepends = [
+ attoparsec base binary blaze-builder bytestring conduit
+ conduit-extra containers iproute mtl network random resourcet safe
+ ];
+ testHaskellDepends = [
+ attoparsec base binary blaze-builder bytestring conduit
+ conduit-extra containers doctest hspec iproute mtl network random
+ resourcet safe word8
+ ];
+ doCheck = false;
+ testTarget = "spec";
+ description = "DNS library in Haskell";
+ license = stdenv.lib.licenses.bsd3;
}) {};
"dnscache" = callPackage
@@ -76415,8 +79426,8 @@ self: {
}:
mkDerivation {
pname = "docvim";
- version = "0.2.0.0";
- sha256 = "3c9ad07ffa3c6e4d0a5352df82975027ea83206b1066f4026729cf620bc8c71d";
+ version = "0.3.2.1";
+ sha256 = "fd4b9005f4da2cfeda35796233bed0e9217ca633cc13408442218c51e493074f";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -76425,14 +79436,14 @@ self: {
];
executableHaskellDepends = [ base ];
testHaskellDepends = [
- base bytestring containers deepseq dlist filepath hlint lens mtl
- parsec pretty-show process split tasty tasty-golden tasty-hunit
- temporary
+ base bytestring containers deepseq directory dlist filepath hlint
+ lens mtl parsec pretty-show process split tasty tasty-golden
+ tasty-hunit temporary
];
- jailbreak = true;
homepage = "https://github.com/wincent/docvim";
description = "Documentation generator for Vim plug-ins";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"dom-lt" = callPackage
@@ -76549,6 +79560,34 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "dot-linker" = callPackage
+ ({ mkDerivation, attoparsec, base, bytestring, HUnit
+ , system-filepath, tasty, tasty-hunit, text, turtle, unix
+ , unordered-containers
+ }:
+ mkDerivation {
+ pname = "dot-linker";
+ version = "0.1.0.0";
+ sha256 = "a1a1750cd3b5231f29fede26eb0e9dd52192203d64d54beed4cca6c0109f97fe";
+ isLibrary = true;
+ isExecutable = true;
+ libraryHaskellDepends = [
+ attoparsec base bytestring system-filepath text turtle unix
+ unordered-containers
+ ];
+ executableHaskellDepends = [
+ attoparsec base text turtle unordered-containers
+ ];
+ testHaskellDepends = [
+ attoparsec base bytestring HUnit tasty tasty-hunit turtle
+ unordered-containers
+ ];
+ jailbreak = true;
+ homepage = "https://github.com/pjrt/Dot-Linker#readme";
+ description = "Initial project template from stack";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
"dot2graphml" = callPackage
({ mkDerivation, base, containers, graphviz, hxt, text }:
mkDerivation {
@@ -76587,7 +79626,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "dotenv" = callPackage
+ "dotenv_0_3_0_1" = callPackage
({ mkDerivation, base, base-compat, hspec, megaparsec
, optparse-applicative, process, text
}:
@@ -76606,6 +79645,27 @@ self: {
homepage = "https://github.com/stackbuilders/dotenv-hs";
description = "Loads environment variables from dotenv files";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "dotenv" = callPackage
+ ({ mkDerivation, base, base-compat, hspec, megaparsec
+ , optparse-applicative, process, text
+ }:
+ mkDerivation {
+ pname = "dotenv";
+ version = "0.3.0.2";
+ sha256 = "1c53efa4a770ecd359830583b94cab6f26b5c6a6b3bcbe983cd7f37bc7d36303";
+ isLibrary = true;
+ isExecutable = true;
+ libraryHaskellDepends = [ base base-compat megaparsec text ];
+ executableHaskellDepends = [
+ base base-compat megaparsec optparse-applicative process text
+ ];
+ testHaskellDepends = [ base base-compat hspec megaparsec text ];
+ homepage = "https://github.com/stackbuilders/dotenv-hs";
+ description = "Loads environment variables from dotenv files";
+ license = stdenv.lib.licenses.mit;
hydraPlatforms = [ "x86_64-darwin" ];
}) {};
@@ -76648,10 +79708,7 @@ self: {
pname = "dotgen";
version = "0.4.2";
sha256 = "cf0de20a435d74aeb9a32b8bcb3ebfa1b6659ac3f26edefe2df9e1aaf1481891";
- isLibrary = true;
- isExecutable = true;
libraryHaskellDepends = [ base containers ];
- executableHaskellDepends = [ base ];
homepage = "https://github.com/ku-fpg/dotgen";
description = "A simple interface for building .dot graph files.";
license = stdenv.lib.licenses.bsd3;
@@ -76717,8 +79774,8 @@ self: {
}:
mkDerivation {
pname = "dow";
- version = "0.2.5";
- sha256 = "34ddcc6606724c54ece1a98b6131ecde4ac5adefec83a4a04c847bc05df37497";
+ version = "0.2.6";
+ sha256 = "17371346730fb7d133671261c303b453a2e0bcfaeb83a68b441e350483565731";
isLibrary = false;
isExecutable = true;
executableHaskellDepends = [
@@ -76752,6 +79809,7 @@ self: {
revision = "1";
editedCabalFile = "7e6df1d4f39879e9b031c8ff5e2f6fd5be3729cc40f7515e117ac0b47ed3f675";
libraryHaskellDepends = [ base bytestring curl feed tagsoup xml ];
+ jailbreak = true;
homepage = "http://code.haskell.org/~dons/code/download-curl";
description = "High-level file download based on URLs";
license = stdenv.lib.licenses.bsd3;
@@ -77082,8 +80140,6 @@ self: {
pname = "drawille";
version = "0.1.0.6";
sha256 = "3282ca7d783580f95349ffd85b6f668f57a354aad74a84c37406fc8ef2636c09";
- isLibrary = true;
- isExecutable = true;
libraryHaskellDepends = [ base containers ];
testHaskellDepends = [ base containers hspec QuickCheck ];
homepage = "https://github.com/yamadapc/haskell-drawille";
@@ -77161,6 +80217,7 @@ self: {
librarySystemDepends = [ drmaa ];
description = "A simple Haskell bindings to DRMAA C library";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {drmaa = null;};
"dropbox-sdk" = callPackage
@@ -77423,8 +80480,6 @@ self: {
pname = "dtrace";
version = "0.1";
sha256 = "393b9e0f3ed92d2b817ae162ad5478116d001ec8e05ddf3c65a0334029a45f63";
- isLibrary = true;
- isExecutable = true;
libraryHaskellDepends = [ base ];
description = "Haskell interface to the DTrace system tracing utility";
license = stdenv.lib.licenses.bsd3;
@@ -77532,6 +80587,17 @@ self: {
license = stdenv.lib.licenses.mit;
}) {};
+ "dunai" = callPackage
+ ({ mkDerivation, base, transformers, transformers-base }:
+ mkDerivation {
+ pname = "dunai";
+ version = "0.1.0.0";
+ sha256 = "fa6908be1794caa9ad335f1acc92fd837c238a8f8dea9740dd875f212046500d";
+ libraryHaskellDepends = [ base transformers transformers-base ];
+ description = "Generalised reactive framework supporting classic, arrowized and monadic FRP";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
"duplo" = callPackage
({ mkDerivation, aeson, aeson-pretty, ansi-terminal, base
, base64-bytestring, bytestring, containers, directory
@@ -77570,6 +80636,29 @@ self: {
hydraPlatforms = [ "x86_64-darwin" ];
}) {};
+ "dustme" = callPackage
+ ({ mkDerivation, ansi-terminal, ansi-wl-pprint, async, attoparsec
+ , base, bytestring, containers, deepseq, extra, hashable, hspec
+ , safe, semigroups, terminfo, text, unordered-containers
+ }:
+ mkDerivation {
+ pname = "dustme";
+ version = "0.1.0.0";
+ sha256 = "e0e9b1a28fef4f9b3230af437272661f3287cc13f8ddc0dd94f4177311ccaa69";
+ isLibrary = true;
+ isExecutable = true;
+ libraryHaskellDepends = [
+ ansi-terminal ansi-wl-pprint async attoparsec base bytestring
+ containers deepseq extra hashable safe semigroups terminfo text
+ unordered-containers
+ ];
+ executableHaskellDepends = [ base ];
+ testHaskellDepends = [ base hspec ];
+ homepage = "https://github.com/mwotton/dustme#readme";
+ description = "Initial project template from stack";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
"dvda" = callPackage
({ mkDerivation, ad, base, containers, directory, fgl
, file-location, graphviz, hashable, hashtables, mtl, process
@@ -77916,22 +81005,18 @@ self: {
}) {};
"dynobud" = callPackage
- ({ mkDerivation, aeson, base, binary, bytestring, casadi-bindings
- , casadi-bindings-core, cereal, Chart, Chart-gtk, cmdargs, colour
- , containers, data-default-class, directory, distributive, doctest
- , generic-accessors, hmatrix, hmatrix-gsl, HUnit, jacobi-roots
- , lens, linear, mtl, mwc-random, not-gloss, Plot-ho-matic, process
- , QuickCheck, reflection, semigroups, spatial-math, stm
+ ({ mkDerivation, aeson, base, binary, casadi-bindings
+ , casadi-bindings-core, cereal, containers, data-default-class
+ , directory, distributive, doctest, generic-accessors, hmatrix
+ , hmatrix-gsl, HUnit, jacobi-roots, lens, linear, mtl, mwc-random
+ , Plot-ho-matic, process, QuickCheck, reflection, spatial-math
, test-framework, test-framework-hunit, test-framework-quickcheck2
- , time, unordered-containers, vector, vector-binary-instances
- , zeromq4-haskell
+ , time, vector, vector-binary-instances
}:
mkDerivation {
pname = "dynobud";
version = "1.9.1.0";
sha256 = "3995a1186ca493ae30fc38b72fbfa49b8f4b5858e266a9b6b24135267deedde5";
- isLibrary = true;
- isExecutable = true;
libraryHaskellDepends = [
aeson base binary casadi-bindings casadi-bindings-core cereal
containers data-default-class directory distributive
@@ -77939,19 +81024,13 @@ self: {
mwc-random Plot-ho-matic process reflection spatial-math time
vector vector-binary-instances
];
- executableHaskellDepends = [
- base bytestring casadi-bindings casadi-bindings-core cereal Chart
- Chart-gtk cmdargs colour containers data-default-class
- generic-accessors lens linear mtl not-gloss Plot-ho-matic
- semigroups stm time unordered-containers vector zeromq4-haskell
- ];
testHaskellDepends = [
base binary casadi-bindings cereal containers doctest hmatrix
hmatrix-gsl HUnit linear QuickCheck test-framework
test-framework-hunit test-framework-quickcheck2 vector
];
description = "your dynamic optimization buddy";
- license = stdenv.lib.licenses.gpl3;
+ license = stdenv.lib.licenses.lgpl3;
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
@@ -78106,12 +81185,11 @@ self: {
}:
mkDerivation {
pname = "easyrender";
- version = "0.1.1.0";
- sha256 = "eb0ca0d7622c7aed65787e92eb2c627a9e7153aaa4afc9f9981f6d4b7c020ec4";
+ version = "0.1.1.1";
+ sha256 = "ad303ad4bc4f746564b32fe587a9c0290af2c2173a9370ec42a8b4dcdacbfe63";
libraryHaskellDepends = [
base bytestring containers mtl superdoc zlib
];
- jailbreak = true;
homepage = "http://www.mathstat.dal.ca/~selinger/easyrender/";
description = "User-friendly creation of EPS, PostScript, and PDF files";
license = stdenv.lib.licenses.gpl3;
@@ -78170,6 +81248,40 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "ec2-unikernel" = callPackage
+ ({ mkDerivation, amazonka, amazonka-core, amazonka-ec2, amazonka-s3
+ , base, bytestring, directory, filepath, lens, process, semigroups
+ , temporary, text, time, unix
+ }:
+ mkDerivation {
+ pname = "ec2-unikernel";
+ version = "0.9";
+ sha256 = "338ba1f1202a9411b63b94bbd583faf3f4a371a44d4c648a9d0f650b0ef24e22";
+ isLibrary = false;
+ isExecutable = true;
+ executableHaskellDepends = [
+ amazonka amazonka-core amazonka-ec2 amazonka-s3 base bytestring
+ directory filepath lens process semigroups temporary text time unix
+ ];
+ homepage = "http://github.com/GaloisInc/ec2-unikernel";
+ description = "A handy tool for uploading unikernels to Amazon's EC2";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
+ "eccrypto" = callPackage
+ ({ mkDerivation, base, bytestring, cereal, crypto-api, SHA, vector
+ }:
+ mkDerivation {
+ pname = "eccrypto";
+ version = "0.0.1";
+ sha256 = "fd4adad1c85bbe1b001aef804584d87b7daadba2aa7310a319e59cc616a79cc9";
+ libraryHaskellDepends = [
+ base bytestring cereal crypto-api SHA vector
+ ];
+ description = "Elliptic Curve Cryptography for Haskell";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
"ecdsa" = callPackage
({ mkDerivation, base, bytestring, crypto-api, crypto-pubkey-types
, hecc
@@ -78464,8 +81576,6 @@ self: {
sha256 = "84bcc319f4b7dc48994de082819bc656e6a001fdf40c2f7327b9a2acc2d5bd21";
revision = "1";
editedCabalFile = "27d6fb19e1707aa05883ca4ffd6715dcc81db287c71508d6aaa420cefc8f29c1";
- isLibrary = true;
- isExecutable = true;
libraryHaskellDepends = [ array base containers random ];
jailbreak = true;
homepage = "http://github.com/batterseapower/edit-distance";
@@ -78480,8 +81590,6 @@ self: {
pname = "edit-distance";
version = "0.2.1.3";
sha256 = "a0b2e59ab50b30af604681eba822b15bbb90d9b477b8d233a6f12b1fd4c9dac6";
- isLibrary = true;
- isExecutable = true;
libraryHaskellDepends = [ array base containers random ];
homepage = "http://github.com/batterseapower/edit-distance";
description = "Levenshtein and restricted Damerau-Levenshtein edit distances";
@@ -78891,7 +81999,7 @@ self: {
"ehs" = callPackage
({ mkDerivation, base, bytestring, haskell-src-meta, parsec
- , template-haskell, text, time, transformers
+ , template-haskell, text, transformers
}:
mkDerivation {
pname = "ehs";
@@ -78899,13 +82007,10 @@ self: {
sha256 = "3d84485f15b876982c857a57e6e0fec85417c85eddd6b6f4344b3db30f8b934d";
revision = "3";
editedCabalFile = "e27ea9e604b3868e61e330abcd605d550371ef7f2c27e12e60b1caad99458222";
- isLibrary = true;
- isExecutable = true;
libraryHaskellDepends = [
base bytestring haskell-src-meta parsec template-haskell text
transformers
];
- executableHaskellDepends = [ base bytestring text time ];
homepage = "http://github.com/minpou/ehs/";
description = "Embedded haskell template using quasiquotes";
license = stdenv.lib.licenses.mit;
@@ -79344,12 +82449,9 @@ self: {
pname = "ekg-push";
version = "0.0.3";
sha256 = "be683041cb6935aa194a9d241b5f11c2038b7056884fbc0a10ec1f148706b7fb";
- isLibrary = true;
- isExecutable = true;
libraryHaskellDepends = [
base bytestring ekg-core text time unordered-containers
];
- executableHaskellDepends = [ base ekg-core ];
jailbreak = true;
homepage = "https://github.com/adarqui/ekg-push";
description = "Small framework to push metric deltas to a broadcast channel using the ekg-core library";
@@ -79432,8 +82534,8 @@ self: {
}:
mkDerivation {
pname = "elerea";
- version = "2.8.0";
- sha256 = "4be921c06feda0a8084ad9a7c87c40565f6bbaa92e79050e6c071d57ce0987e9";
+ version = "2.9.0";
+ sha256 = "901221660b32597803b20fe2e78bb6f1f60f064d04671fb3f0baa05c87446681";
libraryHaskellDepends = [
base containers transformers transformers-base
];
@@ -79445,8 +82547,8 @@ self: {
({ mkDerivation, base, elerea, GLFW, OpenGL }:
mkDerivation {
pname = "elerea-examples";
- version = "2.2.3";
- sha256 = "a1af24b4fc0b8205c2a6d5350a2e147b1bfca3b29052abdce50524850d13a59e";
+ version = "2.9.0";
+ sha256 = "8486b5458a3a176c2c558d7a0c639caacc27192e45711f12b0863e06b1ae9d36";
isLibrary = false;
isExecutable = true;
executableHaskellDepends = [ base elerea GLFW OpenGL ];
@@ -79757,8 +82859,8 @@ self: {
}:
mkDerivation {
pname = "elm-export";
- version = "0.3.0.2";
- sha256 = "f89797336f6a8d2d54e1015fabc0ab3f45e8ef8a3b7d7419694dd8144fb5a646";
+ version = "0.4.0.1";
+ sha256 = "9aa94c4d0ed01a6f6344778eee2e87b6489fc9ddd1de87154acb2be67fb7b79e";
libraryHaskellDepends = [
base bytestring containers directory mtl text time
];
@@ -79800,6 +82902,21 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "elm-hybrid" = callPackage
+ ({ mkDerivation, base, directory, filepath, split, text, time }:
+ mkDerivation {
+ pname = "elm-hybrid";
+ version = "0.1.3.0";
+ sha256 = "c911c4040e4d12ba65127a125c041bf0390da3b503d01913f269eeb9fb3272fe";
+ libraryHaskellDepends = [
+ base directory filepath split text time
+ ];
+ testHaskellDepends = [ base ];
+ homepage = "https://gitlab.com/paramander/elm-hybrid";
+ description = "Combine Elm with Haskell for data based applications";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
"elm-init" = callPackage
({ mkDerivation, aeson, aeson-pretty, base, base-unicode-symbols
, bytestring, containers, directory, file-embed, filepath, process
@@ -80279,6 +83396,22 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "enchant" = callPackage
+ ({ mkDerivation, base, c2hs, enchant }:
+ mkDerivation {
+ pname = "enchant";
+ version = "0.1.0.0";
+ sha256 = "553536cc63fa18dfa07441e03166f10ae71d19c6dbfd04a996a91c318be36dfc";
+ libraryHaskellDepends = [ base ];
+ libraryPkgconfigDepends = [ enchant ];
+ libraryToolDepends = [ c2hs ];
+ testHaskellDepends = [ base ];
+ homepage = "https://github.com/kseo/enchant#readme";
+ description = "Binding to the Enchant library";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {inherit (pkgs) enchant;};
+
"enclosed-exceptions_1_0_1" = callPackage
({ mkDerivation, async, base, deepseq, hspec, lifted-base
, monad-control, QuickCheck, transformers, transformers-base
@@ -80301,7 +83434,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "enclosed-exceptions" = callPackage
+ "enclosed-exceptions_1_0_1_1" = callPackage
({ mkDerivation, async, base, deepseq, hspec, lifted-base
, monad-control, QuickCheck, transformers, transformers-base
}:
@@ -80321,6 +83454,30 @@ self: {
homepage = "https://github.com/jcristovao/enclosed-exceptions";
description = "Catching all exceptions from within an enclosed computation";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "enclosed-exceptions" = callPackage
+ ({ mkDerivation, async, base, deepseq, hspec, lifted-base
+ , monad-control, QuickCheck, stm, transformers, transformers-base
+ }:
+ mkDerivation {
+ pname = "enclosed-exceptions";
+ version = "1.0.2";
+ sha256 = "7b9beab82d219c0dd879dfdef70fb74a4a7595b4dbd0baf7adb12cdbbe8189f1";
+ revision = "1";
+ editedCabalFile = "40b6f9bc9de19819e54b215008a8b60862f2558119dc49e7c747a5bac4435566";
+ libraryHaskellDepends = [
+ base deepseq lifted-base monad-control transformers
+ transformers-base
+ ];
+ testHaskellDepends = [
+ async base deepseq hspec lifted-base monad-control QuickCheck stm
+ transformers transformers-base
+ ];
+ homepage = "https://github.com/jcristovao/enclosed-exceptions";
+ description = "Catching all exceptions from within an enclosed computation";
+ license = stdenv.lib.licenses.mit;
}) {};
"encoding" = callPackage
@@ -80352,6 +83509,7 @@ self: {
libraryHaskellDepends = [
base between data-default-class mtl transformers
];
+ jailbreak = true;
homepage = "https://github.com/trskop/endo";
description = "Endomorphism utilities";
license = stdenv.lib.licenses.bsd3;
@@ -81511,8 +84669,6 @@ self: {
sha256 = "b83980c6f537ab812ac8605a9fe8c3bb9764bb5ae098e20ef882fd5aa824f7b6";
revision = "1";
editedCabalFile = "146f86cb3df790cd26c0ec2f7061027257c7932a64ff8a6725eee5356a887776";
- isLibrary = true;
- isExecutable = true;
libraryHaskellDepends = [
array base containers ersatz toysolver transformers
];
@@ -82220,13 +85376,12 @@ self: {
pname = "eventloop";
version = "0.8.1.2";
sha256 = "1e4a62abcfb50f949cffe61a53d37c6b7a5ad157cdaecba31f528046f36fe42e";
- revision = "1";
- editedCabalFile = "11af2a4e0a7b4c39cb552ec0f0e4f9eed48e903194983d11fb1bc11705086baa";
+ revision = "3";
+ editedCabalFile = "c2eeaa631bc97d0a2214829ded0eaf1411852515fe1a9d2ed5aa5a25e8e6302d";
libraryHaskellDepends = [
aeson base bytestring concurrent-utilities deepseq network stm
suspend text timers websockets
];
- jailbreak = true;
homepage = "-";
description = "A different take on an IO system. Based on Amanda's IO loop, this eventloop takes a function that maps input events to output events. It can easily be extended by modules that represent IO devices or join multiple modules together.";
license = stdenv.lib.licenses.bsd3;
@@ -82339,8 +85494,8 @@ self: {
}:
mkDerivation {
pname = "eventstore";
- version = "0.13.0.0";
- sha256 = "5cacd62d1ff67ce2500d1bbff7670f2b8728b6a6c8418cc67fb04f4ca68780c3";
+ version = "0.13.1.2";
+ sha256 = "b519ae59c56c345cc2abe2bc6a779627d35c5553e9c0cfd51cb4aea4db9538fc";
libraryHaskellDepends = [
aeson array async base bytestring cereal connection containers dns
dotnet-timespan http-client protobuf random semigroups stm text
@@ -82350,6 +85505,7 @@ self: {
aeson base connection dotnet-timespan stm tasty tasty-hunit text
time
];
+ doCheck = false;
homepage = "http://github.com/YoEight/eventstore";
description = "EventStore TCP Client";
license = stdenv.lib.licenses.bsd3;
@@ -82357,6 +85513,33 @@ self: {
hydraPlatforms = [ "x86_64-darwin" ];
}) {};
+ "eventstore_0_13_1_3" = callPackage
+ ({ mkDerivation, aeson, array, async, base, bytestring, cereal
+ , connection, containers, dns, dotnet-timespan, http-client
+ , protobuf, random, semigroups, stm, tasty, tasty-hunit, text, time
+ , unordered-containers, uuid
+ }:
+ mkDerivation {
+ pname = "eventstore";
+ version = "0.13.1.3";
+ sha256 = "027dda722c410a7b528537c4f296040b90c16cf91d95362356e608c672de6b2a";
+ libraryHaskellDepends = [
+ aeson array async base bytestring cereal connection containers dns
+ dotnet-timespan http-client protobuf random semigroups stm text
+ time unordered-containers uuid
+ ];
+ testHaskellDepends = [
+ aeson base connection dotnet-timespan stm tasty tasty-hunit text
+ time
+ ];
+ jailbreak = true;
+ homepage = "http://github.com/YoEight/eventstore";
+ description = "EventStore TCP Client";
+ license = stdenv.lib.licenses.bsd3;
+ platforms = [ "x86_64-darwin" "x86_64-linux" ];
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"every-bit-counts" = callPackage
({ mkDerivation, base, haskell98 }:
mkDerivation {
@@ -82921,6 +86104,7 @@ self: {
homepage = "https://github.com/k0001/exinst";
description = "Derive instances for your existential types";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"exinst-aeson" = callPackage
@@ -82936,6 +86120,7 @@ self: {
homepage = "https://github.com/k0001/exinst";
description = "Derive instances for the `aeson` library for your existential types";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"exinst-bytes" = callPackage
@@ -82951,6 +86136,7 @@ self: {
homepage = "https://github.com/k0001/exinst";
description = "Derive instances for the `bytes` library for your existential types";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"exinst-deepseq" = callPackage
@@ -82964,6 +86150,7 @@ self: {
homepage = "https://github.com/k0001/exinst";
description = "Derive instances for the `deepseq` library for your existential types";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"exinst-hashable" = callPackage
@@ -82979,6 +86166,7 @@ self: {
homepage = "https://github.com/k0001/exinst";
description = "Derive instances for the `hashable` library for your existential types";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"existential" = callPackage
@@ -83039,19 +86227,19 @@ self: {
}) {};
"exp-pairs" = callPackage
- ({ mkDerivation, base, deepseq, ghc-prim, matrix, memoize
+ ({ mkDerivation, base, containers, deepseq, ghc-prim, matrix
, QuickCheck, random, smallcheck, tasty, tasty-hunit
, tasty-quickcheck, tasty-smallcheck, wl-pprint
}:
mkDerivation {
pname = "exp-pairs";
- version = "0.1.4.1";
- sha256 = "8532ee6bf433c613f0eb9315219175330808aee326651dad74bbd467aedb4d4b";
+ version = "0.1.5.1";
+ sha256 = "cb83312447031547092d9eef5ee092494d624d8e0c6a314ea66b8ec006f3aa2f";
libraryHaskellDepends = [
- base deepseq ghc-prim memoize wl-pprint
+ base containers deepseq ghc-prim wl-pprint
];
testHaskellDepends = [
- base matrix memoize QuickCheck random smallcheck tasty tasty-hunit
+ base matrix QuickCheck random smallcheck tasty tasty-hunit
tasty-quickcheck tasty-smallcheck
];
homepage = "https://github.com/Bodigrim/exp-pairs";
@@ -83160,8 +86348,6 @@ self: {
pname = "explicit-exception";
version = "0.1.7.3";
sha256 = "e1730a5b8ef61a672e9da88207d43e7cb160507df5146779788a7cf3290d3738";
- isLibrary = true;
- isExecutable = true;
libraryHaskellDepends = [ base transformers ];
jailbreak = true;
homepage = "http://www.haskell.org/haskellwiki/Exception";
@@ -83176,8 +86362,6 @@ self: {
pname = "explicit-exception";
version = "0.1.8";
sha256 = "7fee7a3781db3c3bf82079e635d510088dbb6f4295fde887c603819ec14cd16f";
- isLibrary = true;
- isExecutable = true;
libraryHaskellDepends = [ base deepseq transformers ];
homepage = "http://www.haskell.org/haskellwiki/Exception";
description = "Exceptions which are explicit in the type signature";
@@ -83676,7 +86860,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "extra" = callPackage
+ "extra_1_4_9" = callPackage
({ mkDerivation, base, directory, filepath, process, QuickCheck
, time, unix
}:
@@ -83693,6 +86877,26 @@ self: {
homepage = "https://github.com/ndmitchell/extra#readme";
description = "Extra functions I use";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "extra" = callPackage
+ ({ mkDerivation, base, directory, filepath, process, QuickCheck
+ , time, unix
+ }:
+ mkDerivation {
+ pname = "extra";
+ version = "1.4.10";
+ sha256 = "b40b3f74c02e40697f4ba5242a764c2846921e8aafdd92e79a30a7afd9e56759";
+ libraryHaskellDepends = [
+ base directory filepath process time unix
+ ];
+ testHaskellDepends = [
+ base directory filepath QuickCheck time unix
+ ];
+ homepage = "https://github.com/ndmitchell/extra#readme";
+ description = "Extra functions I use";
+ license = stdenv.lib.licenses.bsd3;
}) {};
"extract-dependencies_0_2_0_0" = callPackage
@@ -84138,8 +87342,8 @@ self: {
}:
mkDerivation {
pname = "fast-digits";
- version = "0.2.0.0";
- sha256 = "b5e050775cf9cfffac1adc90ded981b5fbc56be903984aecacc138ac62e98c33";
+ version = "0.2.1.0";
+ sha256 = "ec84576e479202de8257c7c499b66e91bcf18444f7683475d74b575e166dd83b";
libraryHaskellDepends = [ base integer-gmp ];
testHaskellDepends = [
base digits QuickCheck smallcheck tasty tasty-quickcheck
@@ -84391,7 +87595,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "fasta" = callPackage
+ "fasta_0_10_2_0" = callPackage
({ mkDerivation, attoparsec, base, bytestring, containers, foldl
, lens, parsec, pipes, pipes-attoparsec, pipes-bytestring
, pipes-group, pipes-text, split, text
@@ -84407,6 +87611,25 @@ self: {
homepage = "https://github.com/GregorySchwartz/fasta";
description = "A simple, mindless parser for fasta files";
license = stdenv.lib.licenses.gpl2;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "fasta" = callPackage
+ ({ mkDerivation, attoparsec, base, bytestring, containers, foldl
+ , lens, parsec, pipes, pipes-attoparsec, pipes-bytestring
+ , pipes-group, pipes-text, split, text
+ }:
+ mkDerivation {
+ pname = "fasta";
+ version = "0.10.4.0";
+ sha256 = "d37616f6107834ce47cc57163e9dddda055ef13b0400d74d6e77cbdd249f69da";
+ libraryHaskellDepends = [
+ attoparsec base bytestring containers foldl lens parsec pipes
+ pipes-attoparsec pipes-bytestring pipes-group pipes-text split text
+ ];
+ homepage = "https://github.com/GregorySchwartz/fasta";
+ description = "A simple, mindless parser for fasta files";
+ license = stdenv.lib.licenses.gpl3;
}) {};
"fastbayes" = callPackage
@@ -84709,8 +87932,8 @@ self: {
pname = "fay";
version = "0.23.1.12";
sha256 = "3d9c0a64f6d30923e2e45f27c043a7fa4f451c676466c8ca5b69a4121462f727";
- revision = "3";
- editedCabalFile = "eed2ee7a483cbde7f743e6f4cd880fa2ddbf72364159cce09d6c5ad963221c28";
+ revision = "5";
+ editedCabalFile = "b156068e9b7eaf0b8362d6f79504f9b9d89ce4b13756b18c92814d41ec9d3d23";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -84722,7 +87945,6 @@ self: {
utf8-string vector
];
executableHaskellDepends = [ base mtl optparse-applicative split ];
- jailbreak = true;
homepage = "https://github.com/faylang/fay/wiki";
description = "A compiler for Fay, a Haskell subset that compiles to JavaScript";
license = stdenv.lib.licenses.bsd3;
@@ -84857,12 +88079,11 @@ self: {
pname = "fay-builder";
version = "0.2.0.5";
sha256 = "116dea6dc304834be81d70faec7e3de1fd867ebbda0d02d3c1c6a0f96d2b31a2";
- revision = "2";
- editedCabalFile = "846d778c1b5f3feeb549d013338a08a746acb114d7c07c855b91032c4675d32b";
+ revision = "3";
+ editedCabalFile = "7e6aeeae40ee69594e435dd7e6d133fbaea764b3b06271b607cc0ae185178e89";
libraryHaskellDepends = [
base Cabal data-default directory fay filepath safe split text
];
- jailbreak = true;
description = "Compile Fay code on cabal install, and ad-hoc recompile during development";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -85291,14 +88512,14 @@ self: {
"fbmessenger-api" = callPackage
({ mkDerivation, aeson, base, bytestring, case-insensitive
, filepath, hspec, http-client, http-client-tls, http-media
- , http-types, mime-types, servant, servant-client, servant-server
- , stm, string-conversions, text, transformers, unordered-containers
- , warp
+ , http-types, mime-types, monad-logger, servant, servant-client
+ , servant-server, stm, string-conversions, text, transformers
+ , unordered-containers, wai, wai-logger, warp
}:
mkDerivation {
pname = "fbmessenger-api";
- version = "0.1.0.2";
- sha256 = "006c0f782b5e66e0c9198def481730ec6aa70ba3a5005ea409d3febeb8fb98de";
+ version = "0.1.2.0";
+ sha256 = "94bba7cff0abeb451ca841d30ef8237c9803331e1e988a9a5f6303eb4797ab2c";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -85307,11 +88528,11 @@ self: {
text transformers unordered-containers
];
executableHaskellDepends = [
- aeson base http-client http-client-tls servant servant-server stm
- text transformers warp
+ aeson base bytestring http-client http-client-tls monad-logger
+ servant servant-server stm text transformers wai wai-logger warp
];
testHaskellDepends = [ aeson base bytestring filepath hspec text ];
- homepage = "https://github.com/mseri/fbmessenger-api-hs#readme";
+ homepage = "https://github.com/mseri/fbmessenger-api-hs#fbmessenger-api";
description = "High-level bindings to Facebook Messenger Platform API";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -85786,8 +89007,8 @@ self: {
}:
mkDerivation {
pname = "feed-gipeda";
- version = "0.1.0.1";
- sha256 = "18be33291fc74c0ab18c8897e97f3811cb4e1e1f8fd11e084a49554d3696aa52";
+ version = "0.1.0.2";
+ sha256 = "609d0214ca1bbe773bb61af6c9f8ab779b0afedd612fbb3cdb467ded032d5ebf";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -86067,19 +89288,14 @@ self: {
}:
mkDerivation {
pname = "ffmpeg-light";
- version = "0.11.0";
- sha256 = "120899b72de9112e057cde89ab0c4a832091ba67101bbe191cd50f8744931117";
- isLibrary = true;
- isExecutable = true;
+ version = "0.11.1";
+ sha256 = "4783a481db0e880ddcc7f5551e31ab0ef890b0b067017ecb1255cd198b89d6cc";
libraryHaskellDepends = [
base either exceptions JuicyPixels mtl transformers vector
];
libraryPkgconfigDepends = [
ffmpeg libavcodec libavdevice libavformat libswscale
];
- executableHaskellDepends = [
- base JuicyPixels mtl transformers vector
- ];
homepage = "http://github.com/acowley/ffmpeg-light";
description = "Minimal bindings to the FFmpeg library";
license = stdenv.lib.licenses.bsd3;
@@ -86792,8 +90008,8 @@ self: {
}:
mkDerivation {
pname = "filestore";
- version = "0.6.1";
- sha256 = "0009c97f00044d2902209050d3b85a32dbad656ad0bb6276e811d7b0aca5d455";
+ version = "0.6.2";
+ sha256 = "a545e54c70bd12b5a2dfd9a303784d7eccd1db6a074860263f40fd0dd092d3d7";
libraryHaskellDepends = [
base bytestring containers Diff directory filepath old-locale
parsec process split time utf8-string xml
@@ -86801,7 +90017,6 @@ self: {
testHaskellDepends = [
base Diff directory filepath HUnit mtl time
];
- jailbreak = true;
description = "Interface for versioning file stores";
license = stdenv.lib.licenses.bsd3;
hydraPlatforms = [ "x86_64-darwin" ];
@@ -87179,6 +90394,21 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {inherit (pkgs) cfitsio;};
+ "fitspec" = callPackage
+ ({ mkDerivation, base, cmdargs, leancheck, template-haskell }:
+ mkDerivation {
+ pname = "fitspec";
+ version = "0.2.2";
+ sha256 = "1ac0034895c4ef1797b641a439d300910d3920cf7f02c00bbab3dae16a965e3d";
+ libraryHaskellDepends = [
+ base cmdargs leancheck template-haskell
+ ];
+ testHaskellDepends = [ base cmdargs leancheck template-haskell ];
+ homepage = "https://github.com/rudymatela/fitspec#readme";
+ description = "refining property sets for testing Haskell programs";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
"fix-imports" = callPackage
({ mkDerivation, base, containers, cpphs, directory, filepath
, haskell-src-exts, process, split, text, uniplate
@@ -87510,7 +90740,7 @@ self: {
];
homepage = "https://github.com/revnull/fixfile";
description = "File-backed recursive data structures";
- license = stdenv.lib.licenses.gpl3;
+ license = stdenv.lib.licenses.lgpl3;
hydraPlatforms = [ "x86_64-darwin" ];
}) {};
@@ -87587,6 +90817,17 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "fizzbuzz" = callPackage
+ ({ mkDerivation, base }:
+ mkDerivation {
+ pname = "fizzbuzz";
+ version = "0.1.0.0";
+ sha256 = "9df26295f66eadacad9c44ca3195651b15f2da8789124b91704eedaef9192a46";
+ libraryHaskellDepends = [ base ];
+ description = "test";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
"flaccuraterip" = callPackage
({ mkDerivation, base, binary, deepseq, HTTP, optparse-applicative
, process
@@ -87624,8 +90865,8 @@ self: {
({ mkDerivation, base, either, optparse-applicative, pipes }:
mkDerivation {
pname = "flamingra";
- version = "0.1.1.1";
- sha256 = "7bd82580668be11e780f529bcc9495250873ee45cbf6c2e2cc7b8caae47ad8f9";
+ version = "0.2";
+ sha256 = "054ee952793dfac199420c409613e2eaa275140aad56b418ee158709c5b08dab";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [ base ];
@@ -87973,6 +91214,19 @@ self: {
license = stdenv.lib.licenses.mit;
}) {};
+ "flow-er" = callPackage
+ ({ mkDerivation, base, doctest, flow, QuickCheck }:
+ mkDerivation {
+ pname = "flow-er";
+ version = "1.0.3";
+ sha256 = "c89d6bb8f11517809b27c5bed59d082c1fbd26c33de6272bbe3a65ddc263dba6";
+ libraryHaskellDepends = [ base flow ];
+ testHaskellDepends = [ base doctest flow QuickCheck ];
+ homepage = "https://github.com/expede/flower#README";
+ description = "More directional operators";
+ license = stdenv.lib.licenses.mit;
+ }) {};
+
"flow2dot" = callPackage
({ mkDerivation, base, containers, mtl, parsec, QuickCheck
, utf8-string
@@ -88140,8 +91394,8 @@ self: {
}:
mkDerivation {
pname = "fltkhs";
- version = "0.4.0.7";
- sha256 = "69c20beaab65c6fe76af6c1087b494891a7eff22ce719f2296f367c8ce4b0330";
+ version = "0.4.0.9";
+ sha256 = "37e34bda2f8f3bb78f4d2e1e2539e02fdd6ae0ee0613f3fab38c1a13fe7b7fb1";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [ base bytestring ];
@@ -88903,6 +92157,22 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
+ "foobar" = callPackage
+ ({ mkDerivation, base }:
+ mkDerivation {
+ pname = "foobar";
+ version = "0.1.0.0";
+ sha256 = "3cbf7d5eb5b7f6b9ad65b8fedcbe9caa02cc43ae374f30c0a001545e6724a2c4";
+ isLibrary = true;
+ isExecutable = true;
+ libraryHaskellDepends = [ base ];
+ executableHaskellDepends = [ base ];
+ testHaskellDepends = [ base ];
+ homepage = "https://github.com/githubuser/foobar#readme";
+ description = "Initial project template from stack";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
"for-free" = callPackage
({ mkDerivation, base, comonad, comonad-transformers, containers
, contravariant, transformers
@@ -89058,6 +92328,7 @@ self: {
libraryHaskellDepends = [
base containers data-default-class lens linear
];
+ jailbreak = true;
description = "Simple force-directed layout";
license = stdenv.lib.licenses.bsd3;
hydraPlatforms = stdenv.lib.platforms.none;
@@ -89447,6 +92718,32 @@ self: {
hydraPlatforms = [ "x86_64-darwin" ];
}) {};
+ "fortran-src" = callPackage
+ ({ mkDerivation, alex, array, base, bytestring, containers, fgl
+ , GenericPretty, happy, hspec, mtl, pretty, text, uniplate
+ }:
+ mkDerivation {
+ pname = "fortran-src";
+ version = "0.1.0.0";
+ sha256 = "bfe476623599655d58d3a26c77ca17503c512eb1470fb1a39add1e8fd5f1120a";
+ isLibrary = true;
+ isExecutable = true;
+ libraryHaskellDepends = [
+ array base bytestring containers fgl GenericPretty mtl pretty text
+ uniplate
+ ];
+ libraryToolDepends = [ alex happy ];
+ executableHaskellDepends = [
+ array base bytestring containers fgl GenericPretty mtl pretty text
+ uniplate
+ ];
+ testHaskellDepends = [
+ array base bytestring containers fgl hspec mtl text uniplate
+ ];
+ description = "Parser and anlyses for Fortran standards 66, 77, 90";
+ license = stdenv.lib.licenses.asl20;
+ }) {};
+
"foscam-directory" = callPackage
({ mkDerivation, base, directory, doctest, filepath
, foscam-filename, lens, pretty, QuickCheck, template-haskell
@@ -89799,6 +93096,28 @@ self: {
hydraPlatforms = [ "x86_64-darwin" ];
}) {};
+ "fraxl" = callPackage
+ ({ mkDerivation, async, base, dependent-map, dependent-sum
+ , exceptions, free, mtl, time, transformers, type-aligned
+ , vinyl-plus
+ }:
+ mkDerivation {
+ pname = "fraxl";
+ version = "0.1.0.0";
+ sha256 = "a630e66137612bea25fcc3f8eb8e76077e2bfa55e2a53e9d3a34bbf6de794160";
+ revision = "1";
+ editedCabalFile = "f1776631452087d0e757f0746b3264f1cb49a2e49c19df807a2df0dc7c745cba";
+ libraryHaskellDepends = [
+ async base dependent-map dependent-sum exceptions free mtl
+ transformers type-aligned vinyl-plus
+ ];
+ testHaskellDepends = [ base mtl time transformers ];
+ homepage = "https://github.com/ElvishJerricco/fraxl";
+ description = "Cached and parallel data fetching";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"freddy" = callPackage
({ mkDerivation, amqp, async, base, broadcast-chan, bytestring
, data-default, hspec, random, text, uuid
@@ -90185,8 +93504,8 @@ self: {
}:
mkDerivation {
pname = "freer";
- version = "0.2.2.6";
- sha256 = "0bad3ff57b7347ea50d031e6f6c05cf17311ee9fd3fab343130bd12282c36dc8";
+ version = "0.2.3.0";
+ sha256 = "e0ef288ad5c8fc5b1ab7a50413e435648251575bb6803d41374d702fc5ad44b8";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [ base ];
@@ -90194,7 +93513,6 @@ self: {
testHaskellDepends = [
base QuickCheck tasty tasty-hunit tasty-quickcheck
];
- jailbreak = true;
homepage = "https://gitlab.com/queertypes/freer";
description = "Implementation of the Freer Monad";
license = stdenv.lib.licenses.bsd3;
@@ -90266,8 +93584,6 @@ self: {
pname = "freetype2";
version = "0.1.1";
sha256 = "da18f9d3047277ba47e162dafa0b2a4777bfb6157b39ad91f9e808ba36f65e99";
- isLibrary = true;
- isExecutable = true;
libraryHaskellDepends = [ base ];
description = "Haskell binding for FreeType 2 library";
license = stdenv.lib.licenses.bsd3;
@@ -90318,7 +93634,7 @@ self: {
jailbreak = true;
homepage = "https://github.com/RaphaelJ/friday";
description = "A functional image processing library for Haskell";
- license = stdenv.lib.licenses.gpl3;
+ license = stdenv.lib.licenses.lgpl3;
}) {};
"friday-devil" = callPackage
@@ -90336,7 +93652,7 @@ self: {
jailbreak = true;
homepage = "https://github.com/RaphaelJ/friday-devil";
description = "Uses the DevIL C library to read and write images from and to files and memory buffers";
- license = stdenv.lib.licenses.gpl3;
+ license = stdenv.lib.licenses.lgpl3;
}) {inherit (pkgs) libdevil;};
"friday-juicypixels" = callPackage
@@ -90364,8 +93680,6 @@ self: {
pname = "friday-scale-dct";
version = "1.0.0.1";
sha256 = "0a40db255149c553169d8c2cc8f7ae11b511061b45a3e5c810f9be3390951b48";
- isLibrary = true;
- isExecutable = true;
libraryHaskellDepends = [
base base-compat carray fft friday vector
];
@@ -90647,12 +93961,9 @@ self: {
pname = "ftdi";
version = "0.2.0.1";
sha256 = "a892fae6e1c12c3fc1db3f10e84b99c46f6145ac3fb3bcad519bcb619f5dcebe";
- isLibrary = true;
- isExecutable = true;
libraryHaskellDepends = [
base base-unicode-symbols bytestring safe transformers usb
];
- jailbreak = true;
description = "A thin layer over USB to communicate with FTDI chips";
license = stdenv.lib.licenses.bsd3;
hydraPlatforms = [ "x86_64-darwin" ];
@@ -90685,8 +93996,6 @@ self: {
pname = "ftphs";
version = "1.0.9.1";
sha256 = "ce0b05b2fc7f93a6195184ed1a8edee69a7a9cf4aa3d15ebeb25421715571bf2";
- isLibrary = true;
- isExecutable = true;
libraryHaskellDepends = [
base hslogger MissingH mtl network parsec regex-compat
];
@@ -90751,17 +94060,14 @@ self: {
}) {};
"full-text-search" = callPackage
- ({ mkDerivation, alex, array, base, containers, happy, QuickCheck
- , tasty, tasty-quickcheck, text, vector
+ ({ mkDerivation, array, base, containers, QuickCheck, tasty
+ , tasty-quickcheck, text, vector
}:
mkDerivation {
pname = "full-text-search";
version = "0.2.1.3";
sha256 = "f3de82428b67819c1284f18192922e20cda5cb3cdb447297018507b13e3ca368";
- isLibrary = true;
- isExecutable = true;
libraryHaskellDepends = [ array base containers text vector ];
- executableToolDepends = [ alex happy ];
testHaskellDepends = [
array base containers QuickCheck tasty tasty-quickcheck text vector
];
@@ -91175,7 +94481,7 @@ self: {
sha256 = "7bb20c997e7d486ef201d67da1116007fe841e63ac3b212b8d2b6413a59e9083";
libraryHaskellDepends = [ base transformers ];
description = "realtime resource handling with manual concurrency";
- license = stdenv.lib.licenses.gpl3;
+ license = stdenv.lib.licenses.lgpl3;
}) {};
"fuzzcheck" = callPackage
@@ -91495,14 +94801,15 @@ self: {
}) {};
"gconf" = callPackage
- ({ mkDerivation, base, GConf, glib, gtk2hs-buildtools, text }:
+ ({ mkDerivation, base, Cabal, GConf, glib, gtk2hs-buildtools, text
+ }:
mkDerivation {
pname = "gconf";
version = "0.13.1.0";
sha256 = "57cfa606ef4dcd377e0d77d59b880439382ad05604b3e3d439fd64af64a21dad";
+ setupHaskellDepends = [ base Cabal gtk2hs-buildtools ];
libraryHaskellDepends = [ base glib text ];
libraryPkgconfigDepends = [ GConf ];
- libraryToolDepends = [ gtk2hs-buildtools ];
homepage = "http://projects.haskell.org/gtk2hs/";
description = "Binding to the GNOME configuration database system";
license = stdenv.lib.licenses.lgpl21;
@@ -91601,13 +94908,12 @@ self: {
({ mkDerivation, base, GLUT, OpenGLRaw, Vec }:
mkDerivation {
pname = "gearbox";
- version = "1.0.0.4";
- sha256 = "fdebdad6326aaa5202e1aece1049c06d5c5c91acd57070c5953bf141019723df";
+ version = "1.0.0.5";
+ sha256 = "e4e3547f2cd5eb3f4d46f867c64d370bdcbe23c3f617df8b31741dfcebdabf06";
isLibrary = false;
isExecutable = true;
executableHaskellDepends = [ base GLUT OpenGLRaw Vec ];
- jailbreak = true;
- homepage = "http://code.mathr.co.uk/gearbox";
+ homepage = "https://code.mathr.co.uk/gearbox";
description = "zooming rotating fractal gears graphics demo";
license = stdenv.lib.licenses.gpl3;
hydraPlatforms = [ "x86_64-darwin" ];
@@ -92034,7 +95340,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "generic-deriving" = callPackage
+ "generic-deriving_1_10_4_1" = callPackage
({ mkDerivation, base, containers, ghc-prim, template-haskell }:
mkDerivation {
pname = "generic-deriving";
@@ -92046,6 +95352,36 @@ self: {
homepage = "https://github.com/dreixel/generic-deriving";
description = "Generic programming library for generalised deriving";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "generic-deriving_1_10_5" = callPackage
+ ({ mkDerivation, base, containers, ghc-prim, template-haskell }:
+ mkDerivation {
+ pname = "generic-deriving";
+ version = "1.10.5";
+ sha256 = "f6a2af9a96b22cdf496c7d6ef7bb6e8e365937ec61d788b08068f4fcf6854f0d";
+ libraryHaskellDepends = [
+ base containers ghc-prim template-haskell
+ ];
+ homepage = "https://github.com/dreixel/generic-deriving";
+ description = "Generic programming library for generalised deriving";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "generic-deriving" = callPackage
+ ({ mkDerivation, base, containers, ghc-prim, template-haskell }:
+ mkDerivation {
+ pname = "generic-deriving";
+ version = "1.10.6";
+ sha256 = "be129ff66c91e2e17c62e304c0f30e5e654dc7a1d9a71beaba3219a9f5d1c2fe";
+ libraryHaskellDepends = [
+ base containers ghc-prim template-haskell
+ ];
+ homepage = "https://github.com/dreixel/generic-deriving";
+ description = "Generic programming library for generalised deriving";
+ license = stdenv.lib.licenses.bsd3;
}) {};
"generic-lucid-scaffold" = callPackage
@@ -92110,10 +95446,8 @@ self: {
}:
mkDerivation {
pname = "generic-random";
- version = "0.1.0.0";
- sha256 = "80c44e1d16bbbb1d524a6776ff421fe904f77354a5cbbd8bd5cfc2c2b983c0e2";
- revision = "1";
- editedCabalFile = "758274d60d15c1c553daa7e0e7b87dcde966f954b10325605eb704e9c8ab52b7";
+ version = "0.1.1.0";
+ sha256 = "74780bc4eee28153750b690fd5e4ee46e8f5c2b3c1f35f3e447761a7ca2204a7";
libraryHaskellDepends = [
ad base containers hashable hmatrix ieee754 MonadRandom mtl
QuickCheck transformers unordered-containers vector
@@ -92412,7 +95746,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "generics-sop" = callPackage
+ "generics-sop_0_2_1_0" = callPackage
({ mkDerivation, base, ghc-prim, template-haskell }:
mkDerivation {
pname = "generics-sop";
@@ -92422,16 +95756,27 @@ self: {
testHaskellDepends = [ base ];
description = "Generic Programming using True Sums of Products";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "generics-sop" = callPackage
+ ({ mkDerivation, base, ghc-prim, template-haskell }:
+ mkDerivation {
+ pname = "generics-sop";
+ version = "0.2.2.0";
+ sha256 = "3509e6fd5d9e1337691a88bb7941731f03cf93a42f12a6227dd1a5def9616220";
+ libraryHaskellDepends = [ base ghc-prim template-haskell ];
+ testHaskellDepends = [ base ];
+ description = "Generic Programming using True Sums of Products";
+ license = stdenv.lib.licenses.bsd3;
}) {};
"generics-sop-lens" = callPackage
({ mkDerivation, base, generics-sop, lens }:
mkDerivation {
pname = "generics-sop-lens";
- version = "0.1.1.0";
- sha256 = "77dad1fc8dc9a9e7bd049a46ea4917b5d6e6b1d22a7194f67965126717cfd360";
- revision = "1";
- editedCabalFile = "fc41f76ff2763343ea54274f64907f4343abe3f195a4b271149a524023cfcea0";
+ version = "0.1.2.0";
+ sha256 = "bafd04f0238e19d73da60ae018c1c82cb3e4be49990c61a6049dec2dafff40f6";
libraryHaskellDepends = [ base generics-sop lens ];
homepage = "https://github.com/phadej/generics-sop-lens#readme";
description = "Lenses for types in generics-sop";
@@ -92649,6 +95994,48 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "genvalidity" = callPackage
+ ({ mkDerivation, base, QuickCheck, validity }:
+ mkDerivation {
+ pname = "genvalidity";
+ version = "0.1.0.0";
+ sha256 = "43477a35f12da4d8806b2a152bebb5da563c2cb442b720090597d604fe40c4f6";
+ libraryHaskellDepends = [ base QuickCheck validity ];
+ homepage = "https://github.com/NorfairKing/validity#readme";
+ description = "Testing utilities for the validity library";
+ license = stdenv.lib.licenses.mit;
+ }) {};
+
+ "genvalidity-containers" = callPackage
+ ({ mkDerivation, base, containers, genvalidity, QuickCheck
+ , validity
+ }:
+ mkDerivation {
+ pname = "genvalidity-containers";
+ version = "0.1.0.0";
+ sha256 = "2c44a1b1d0c7a0f9e6107da9fdc31f069d4211cc5cbd88e644edac38a2c6d164";
+ libraryHaskellDepends = [
+ base containers genvalidity QuickCheck validity
+ ];
+ homepage = "https://github.com/NorfairKing/validity#readme";
+ description = "GenValidity support for containers";
+ license = stdenv.lib.licenses.mit;
+ }) {};
+
+ "genvalidity-hspec" = callPackage
+ ({ mkDerivation, base, genvalidity, hspec, QuickCheck, validity }:
+ mkDerivation {
+ pname = "genvalidity-hspec";
+ version = "0.1.0.1";
+ sha256 = "41f102071074cf13cc1635fc80fec7f562900191549b4f68dec24797ef7e6625";
+ libraryHaskellDepends = [
+ base genvalidity hspec QuickCheck validity
+ ];
+ homepage = "https://github.com/NorfairKing/validity#readme";
+ description = "Standard spec's for GenValidity instances";
+ license = stdenv.lib.licenses.mit;
+ }) {};
+
"geo-resolver" = callPackage
({ mkDerivation, aeson, base, base64-bytestring, blaze-builder
, bytestring, http-conduit, http-types, HUnit, QuickCheck
@@ -92769,8 +96156,8 @@ self: {
}:
mkDerivation {
pname = "geoip2";
- version = "0.2.0.0";
- sha256 = "942f7fbb0a5a433d2211a3ffb80911cb1fcef8acd7a5d73f0a25d524cdb0c6e5";
+ version = "0.2.0.1";
+ sha256 = "aea9398ead56cc14ac7e99adacd199918b23fdc633c9adf0837bdcfb9eef72e8";
libraryHaskellDepends = [
base bytestring cereal containers iproute mmap reinterpret-cast
text
@@ -92815,6 +96202,25 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "geolite-csv" = callPackage
+ ({ mkDerivation, base, colonnade, directory, HUnit, ip, pipes
+ , pipes-bytestring, pipes-text, siphon, test-framework
+ , test-framework-hunit, text
+ }:
+ mkDerivation {
+ pname = "geolite-csv";
+ version = "0.1.0";
+ sha256 = "c7c707f20c4f2f42f842bf18485a58555dc3dd62b8ef314cc54a10f003b2baa6";
+ libraryHaskellDepends = [ base colonnade ip pipes siphon text ];
+ testHaskellDepends = [
+ base colonnade directory HUnit pipes pipes-bytestring pipes-text
+ siphon test-framework test-framework-hunit text
+ ];
+ homepage = "https://github.com/andrewthad/colonnade";
+ description = "Initial project template from stack";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
"geom2d" = callPackage
({ mkDerivation, base, ieee754, linear, QuickCheck }:
mkDerivation {
@@ -92920,14 +96326,14 @@ self: {
"gf" = callPackage
({ mkDerivation, alex, array, base, bytestring, Cabal, cgi
, containers, directory, exceptions, filepath, happy, haskeline
- , HTF, httpd-shed, HUnit, json, lifted-base, mtl, network
- , network-uri, old-locale, parallel, pretty, process, random
- , terminfo, time, time-compat, unix, utf8-string
+ , HTF, httpd-shed, HUnit, json, mtl, network, network-uri
+ , old-locale, parallel, pretty, process, random, terminfo, time
+ , time-compat, unix, utf8-string
}:
mkDerivation {
pname = "gf";
- version = "3.7.1";
- sha256 = "150a9f40718689f7dafe962618a39066687b470dcc8aa6478cbe114a6a0094ab";
+ version = "3.8";
+ sha256 = "6f51fd2054fdcf58f62c149d9fc5995759bb227d33f600e594b16c7aea35ba09";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -92937,7 +96343,7 @@ self: {
utf8-string
];
libraryToolDepends = [ alex happy ];
- executableHaskellDepends = [ base containers lifted-base mtl ];
+ executableHaskellDepends = [ base ];
testHaskellDepends = [
base Cabal directory filepath HTF HUnit process
];
@@ -93160,8 +96566,6 @@ self: {
pname = "ghc-exactprint";
version = "0.5.0.1";
sha256 = "ecdae12d521d0997a48a91507f241f80532df468f09095a50cc6f1629cd43ce8";
- isLibrary = true;
- isExecutable = true;
libraryHaskellDepends = [
base containers directory filepath free ghc ghc-paths mtl syb
];
@@ -93184,8 +96588,6 @@ self: {
pname = "ghc-exactprint";
version = "0.5.1.1";
sha256 = "ab88a158b659641a1a940b1ebeaeefe8d41e53f1da2bee139914bbad21f15d8a";
- isLibrary = true;
- isExecutable = true;
libraryHaskellDepends = [
base bytestring containers directory filepath free ghc ghc-boot
ghc-paths mtl syb
@@ -93768,12 +97170,11 @@ self: {
}:
mkDerivation {
pname = "ghc-simple";
- version = "0.3";
- sha256 = "937833e77e0468bd546fc0ff7a1ec6d8d3ea1ee775cc5fe8b06373daf58f208c";
+ version = "0.4";
+ sha256 = "aee9dee0ae551af8932864c3068ca47110450c2f4dd175bcc90406a839e6c941";
libraryHaskellDepends = [
base binary bytestring directory filepath ghc ghc-paths
];
- jailbreak = true;
homepage = "https://github.com/valderman/ghc-simple";
description = "Simplified interface to the GHC API";
license = stdenv.lib.licenses.mit;
@@ -93784,8 +97185,10 @@ self: {
({ mkDerivation, array, base, containers, ghc, hpc }:
mkDerivation {
pname = "ghc-srcspan-plugin";
- version = "0.2.1.0";
- sha256 = "918bf8aa5060db5635c8dbc630001247e1efe7188388c44e4f7bc5077f3266b1";
+ version = "0.2.2.0";
+ sha256 = "e137ecf1d3463bdb806cc681a0375e4a60d054e71839660e223e92906a60aff1";
+ revision = "1";
+ editedCabalFile = "3131594b5f9d1fc3ee35a5d8f87b1361840d02778080a6494beef514250e02c1";
libraryHaskellDepends = [ array base containers ghc hpc ];
description = "Generic GHC Plugin for annotating Haskell code with source location data";
license = stdenv.lib.licenses.bsd3;
@@ -93861,12 +97264,9 @@ self: {
({ mkDerivation, attoparsec, base, containers, text, time }:
mkDerivation {
pname = "ghc-time-alloc-prof";
- version = "0.0.0";
- sha256 = "f9b40315889766b53c0ad03b6e4a2af71da558d217afdb1d6072e9672f006828";
- isLibrary = true;
- isExecutable = true;
+ version = "0.0.0.1";
+ sha256 = "9a3fabe71006ce604945d3195f4d3057bdf24693e483633b688f447819381b98";
libraryHaskellDepends = [ attoparsec base containers text time ];
- executableHaskellDepends = [ attoparsec base containers text ];
homepage = "https://github.com/maoe/ghc-time-alloc-prof";
description = "Library for parsing GHC time and allocation profiling reports";
license = stdenv.lib.licenses.bsd3;
@@ -93891,7 +97291,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "ghc-typelits-extra" = callPackage
+ "ghc-typelits-extra_0_1_1" = callPackage
({ mkDerivation, base, ghc, ghc-tcplugins-extra
, ghc-typelits-natnormalise, tasty, tasty-hunit
}:
@@ -93906,6 +97306,26 @@ self: {
homepage = "http://www.clash-lang.org/";
description = "Additional type-level operations on GHC.TypeLits.Nat";
license = stdenv.lib.licenses.bsd2;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "ghc-typelits-extra" = callPackage
+ ({ mkDerivation, base, ghc, ghc-tcplugins-extra
+ , ghc-typelits-natnormalise, tasty, tasty-hunit, transformers
+ }:
+ mkDerivation {
+ pname = "ghc-typelits-extra";
+ version = "0.1.2";
+ sha256 = "cd054d68809ed73338469afcafacd3955f417edcce93c1ef69b3cd6104062019";
+ libraryHaskellDepends = [
+ base ghc ghc-tcplugins-extra transformers
+ ];
+ testHaskellDepends = [
+ base ghc-typelits-natnormalise tasty tasty-hunit
+ ];
+ homepage = "http://www.clash-lang.org/";
+ description = "Additional type-level operations on GHC.TypeLits.Nat";
+ license = stdenv.lib.licenses.bsd2;
}) {};
"ghc-typelits-natnormalise_0_3" = callPackage
@@ -93955,7 +97375,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "ghc-typelits-natnormalise" = callPackage
+ "ghc-typelits-natnormalise_0_4_1" = callPackage
({ mkDerivation, base, ghc, ghc-tcplugins-extra, tasty, tasty-hunit
}:
mkDerivation {
@@ -93967,6 +97387,21 @@ self: {
homepage = "http://www.clash-lang.org/";
description = "GHC typechecker plugin for types of kind GHC.TypeLits.Nat";
license = stdenv.lib.licenses.bsd2;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "ghc-typelits-natnormalise" = callPackage
+ ({ mkDerivation, base, ghc, ghc-tcplugins-extra, tasty, tasty-hunit
+ }:
+ mkDerivation {
+ pname = "ghc-typelits-natnormalise";
+ version = "0.4.2";
+ sha256 = "b9eb8337e9643c0706352d148ad160edffc01a87f8df784efde71e15f93797a8";
+ libraryHaskellDepends = [ base ghc ghc-tcplugins-extra ];
+ testHaskellDepends = [ base tasty tasty-hunit ];
+ homepage = "http://www.clash-lang.org/";
+ description = "GHC typechecker plugin for types of kind GHC.TypeLits.Nat";
+ license = stdenv.lib.licenses.bsd2;
}) {};
"ghc-vis" = callPackage
@@ -94040,6 +97475,19 @@ self: {
hydraPlatforms = [ "x86_64-darwin" ];
}) {};
+ "ghci-history-parser" = callPackage
+ ({ mkDerivation, base, doctest, hspec, parsec }:
+ mkDerivation {
+ pname = "ghci-history-parser";
+ version = "0.1.0.2";
+ sha256 = "0e6d39875a54a7744fedd73103301d188ec291d9da2f7abc6c85b87143b1f068";
+ libraryHaskellDepends = [ base parsec ];
+ testHaskellDepends = [ base doctest hspec parsec ];
+ description = "parse output of ghci \":history\" command";
+ license = stdenv.lib.licenses.publicDomain;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"ghci-lib" = callPackage
({ mkDerivation, base, ghc, MissingH }:
mkDerivation {
@@ -94311,12 +97759,15 @@ self: {
}) {};
"ghcjs-dom" = callPackage
- ({ mkDerivation, base, jsaddle-dom, text, transformers }:
+ ({ mkDerivation, base, ghcjs-dom-jsaddle, text, transformers }:
mkDerivation {
pname = "ghcjs-dom";
- version = "0.3.0.1";
- sha256 = "9cc468ac3d957289ee09ce0356d3eb0051c792fe5a5e65f49b88045d237e206b";
- libraryHaskellDepends = [ base jsaddle-dom text transformers ];
+ version = "0.3.1.0";
+ sha256 = "74a02471ecc57f3de7e4e85f34630daa663aee2b358522833c305eca81f9c32a";
+ libraryHaskellDepends = [
+ base ghcjs-dom-jsaddle text transformers
+ ];
+ doHaddock = false;
description = "DOM library that supports both GHCJS and WebKitGTK";
license = stdenv.lib.licenses.mit;
hydraPlatforms = [ "x86_64-darwin" ];
@@ -94338,24 +97789,74 @@ self: {
hydraPlatforms = [ "x86_64-darwin" ];
}) {};
+ "ghcjs-dom-jsaddle" = callPackage
+ ({ mkDerivation, jsaddle-dom }:
+ mkDerivation {
+ pname = "ghcjs-dom-jsaddle";
+ version = "0.3.1.0";
+ sha256 = "82ab76c520ad821755c6343d66977cdf7ac728be888717621a03fd999ccaf02e";
+ libraryHaskellDepends = [ jsaddle-dom ];
+ doHaddock = false;
+ description = "DOM library that supports both GHCJS and WebKitGTK using jsaddle";
+ license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "ghcjs-dom-jsffi" = callPackage
+ ({ mkDerivation }:
+ mkDerivation {
+ pname = "ghcjs-dom-jsffi";
+ version = "0.3.1.0";
+ sha256 = "afa04fa73727c0cfe2c80b88cc25d96555021465b022533b328e2ddab00680fc";
+ isLibrary = false;
+ isExecutable = false;
+ description = "DOM library using JSFFI and GHCJS";
+ license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "ghcjs-dom-webkit" = callPackage
+ ({ mkDerivation, base, glib, gtk3, text, transformers, webkitgtk3
+ }:
+ mkDerivation {
+ pname = "ghcjs-dom-webkit";
+ version = "0.3.1.0";
+ sha256 = "5daeb086c811405e20b30315180d689f3f5399a7eec5c1f896d160c9a36891f0";
+ libraryHaskellDepends = [
+ base glib gtk3 text transformers webkitgtk3
+ ];
+ description = "DOM library that supports both GHCJS and WebKitGTK";
+ license = stdenv.lib.licenses.mit;
+ }) {};
+
"ghcjs-hplay" = callPackage
({ mkDerivation, base, containers, ghcjs-perch, mtl, transformers
, transient, transient-universe
}:
mkDerivation {
pname = "ghcjs-hplay";
- version = "0.2";
- sha256 = "26da808173d1d113fa4fc1270d8ee30c7d957e59dfe251d32f9fdb94ee6065ea";
+ version = "0.3.2";
+ sha256 = "13909a7390cc963def4ae053950f0ef8346df85c9370c2ae5a650cb4f29793f6";
libraryHaskellDepends = [
base containers ghcjs-perch mtl transformers transient
transient-universe
];
- jailbreak = true;
- homepage = "https://github.com/agocorona/hplayground";
- description = "monadic, reactive Formlets running in the Web browser";
+ homepage = "https://github.com/agocorona/ghcjs-hplay";
+ description = "client-side Web EDSL for transient nodes running in the Web browser";
license = stdenv.lib.licenses.bsd3;
- broken = true;
- }) {ghcjs-perch = null;};
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "ghcjs-perch" = callPackage
+ ({ mkDerivation, base, transformers }:
+ mkDerivation {
+ pname = "ghcjs-perch";
+ version = "0.3.3";
+ sha256 = "89691df04bf1c056df7f66969a25a15c8ab7edeaaa36afdd01d15b7f21049416";
+ libraryHaskellDepends = [ base transformers ];
+ description = "GHCJS version of Perch library";
+ license = stdenv.lib.licenses.mit;
+ }) {};
"ghcjs-websockets" = callPackage
({ mkDerivation, base, base64-bytestring, binary, bytestring, text
@@ -94456,16 +97957,18 @@ self: {
homepage = "https://github.com/haskell-gi/haskell-gi";
description = "Atk bindings";
license = stdenv.lib.licenses.lgpl21;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {inherit (pkgs) atk;};
- "gi-atk_2_0_4" = callPackage
- ({ mkDerivation, atk, base, bytestring, containers, gi-glib
- , gi-gobject, haskell-gi-base, text, transformers
+ "gi-atk_2_0_6" = callPackage
+ ({ mkDerivation, atk, base, bytestring, Cabal, containers, gi-glib
+ , gi-gobject, haskell-gi, haskell-gi-base, text, transformers
}:
mkDerivation {
pname = "gi-atk";
- version = "2.0.4";
- sha256 = "0ff8915112f0f0f24e1a80e390e780ec81b4dcb4a41bc155743865dc8f49ffca";
+ version = "2.0.6";
+ sha256 = "774a1cdc10424d51c91c37438866a6254bf1af4723a422e96b82fd6b28eeedb2";
+ setupHaskellDepends = [ base Cabal haskell-gi ];
libraryHaskellDepends = [
base bytestring containers gi-glib gi-gobject haskell-gi-base text
transformers
@@ -94497,16 +98000,19 @@ self: {
homepage = "https://github.com/haskell-gi/haskell-gi";
description = "Cairo bindings";
license = stdenv.lib.licenses.lgpl21;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {cairo-gobject = null; inherit (pkgs) gobjectIntrospection;};
- "gi-cairo_1_0_4" = callPackage
- ({ mkDerivation, base, bytestring, cairo-gobject, containers
- , gobjectIntrospection, haskell-gi-base, text, transformers
+ "gi-cairo_1_0_6" = callPackage
+ ({ mkDerivation, base, bytestring, Cabal, cairo-gobject, containers
+ , gobjectIntrospection, haskell-gi, haskell-gi-base, text
+ , transformers
}:
mkDerivation {
pname = "gi-cairo";
- version = "1.0.4";
- sha256 = "6532815f3b225d62c8ed9f865572a6d8ab740fa041adca20ea78b4e9a1735fec";
+ version = "1.0.6";
+ sha256 = "f47f69ac0a09baad360bc24fab8b46261884566e22c975fad2711ab03b537d77";
+ setupHaskellDepends = [ base Cabal haskell-gi ];
libraryHaskellDepends = [
base bytestring containers haskell-gi-base text transformers
];
@@ -94537,17 +98043,19 @@ self: {
homepage = "https://github.com/haskell-gi/haskell-gi";
description = "Gdk bindings";
license = stdenv.lib.licenses.lgpl21;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {gdk3 = null;};
- "gi-gdk_3_0_4" = callPackage
- ({ mkDerivation, base, bytestring, containers, gdk3, gi-cairo
- , gi-gdkpixbuf, gi-gio, gi-glib, gi-gobject, gi-pango
- , haskell-gi-base, text, transformers
+ "gi-gdk_3_0_6" = callPackage
+ ({ mkDerivation, base, bytestring, Cabal, containers, gdk3
+ , gi-cairo, gi-gdkpixbuf, gi-gio, gi-glib, gi-gobject, gi-pango
+ , haskell-gi, haskell-gi-base, text, transformers
}:
mkDerivation {
pname = "gi-gdk";
- version = "3.0.4";
- sha256 = "e6a8fc97a124b625a70002aaf0bbe2ae5d33356bd3a733addbbb2eaebee8473f";
+ version = "3.0.6";
+ sha256 = "9c3c974dfa90533fda145d86494690e92c103bd18f32c1225a7a47098aaf6278";
+ setupHaskellDepends = [ base Cabal haskell-gi ];
libraryHaskellDepends = [
base bytestring containers gi-cairo gi-gdkpixbuf gi-gio gi-glib
gi-gobject gi-pango haskell-gi-base text transformers
@@ -94578,16 +98086,19 @@ self: {
homepage = "https://github.com/haskell-gi/haskell-gi";
description = "GdkPixbuf bindings";
license = stdenv.lib.licenses.lgpl21;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {inherit (pkgs) gdk_pixbuf;};
- "gi-gdkpixbuf_2_0_4" = callPackage
- ({ mkDerivation, base, bytestring, containers, gdk_pixbuf, gi-gio
- , gi-glib, gi-gobject, haskell-gi-base, text, transformers
+ "gi-gdkpixbuf_2_0_6" = callPackage
+ ({ mkDerivation, base, bytestring, Cabal, containers, gdk_pixbuf
+ , gi-gio, gi-glib, gi-gobject, haskell-gi, haskell-gi-base, text
+ , transformers
}:
mkDerivation {
pname = "gi-gdkpixbuf";
- version = "2.0.4";
- sha256 = "434c75e7e200869c084d661f0fcf7c22526ef59fcbf9c2bab6aaae8611cdb9cf";
+ version = "2.0.6";
+ sha256 = "f6901f27a610d675e2770144a47d549702619da6a6f3be3c79315c706aa6fa91";
+ setupHaskellDepends = [ base Cabal haskell-gi ];
libraryHaskellDepends = [
base bytestring containers gi-gio gi-glib gi-gobject
haskell-gi-base text transformers
@@ -94619,16 +98130,19 @@ self: {
homepage = "https://github.com/haskell-gi/haskell-gi";
description = "Gio bindings";
license = stdenv.lib.licenses.lgpl21;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {inherit (pkgs) glib; inherit (pkgs) gobjectIntrospection;};
- "gi-gio_2_0_4" = callPackage
- ({ mkDerivation, base, bytestring, containers, gi-glib, gi-gobject
- , glib, gobjectIntrospection, haskell-gi-base, text, transformers
+ "gi-gio_2_0_6" = callPackage
+ ({ mkDerivation, base, bytestring, Cabal, containers, gi-glib
+ , gi-gobject, glib, gobjectIntrospection, haskell-gi
+ , haskell-gi-base, text, transformers
}:
mkDerivation {
pname = "gi-gio";
- version = "2.0.4";
- sha256 = "197f50d604ccd56dd6610d699657f1926189d5da7685018ef4c1ad33642bcb94";
+ version = "2.0.6";
+ sha256 = "25f5c90a7549f5d0571e749f80b4ae782b3734575cb88dcc355776edf1e99779";
+ setupHaskellDepends = [ base Cabal haskell-gi ];
libraryHaskellDepends = [
base bytestring containers gi-glib gi-gobject haskell-gi-base text
transformers
@@ -94643,13 +98157,15 @@ self: {
}) {inherit (pkgs) glib; inherit (pkgs) gobjectIntrospection;};
"gi-girepository" = callPackage
- ({ mkDerivation, base, bytestring, containers, gi-gobject
- , gobjectIntrospection, haskell-gi-base, text, transformers
+ ({ mkDerivation, base, bytestring, Cabal, containers, gi-gobject
+ , gobjectIntrospection, haskell-gi, haskell-gi-base, text
+ , transformers
}:
mkDerivation {
pname = "gi-girepository";
- version = "1.0.4";
- sha256 = "1c00a09129041157bf1a3a01b3a0167bea4a9ad6b29b84e00583aba269e555ed";
+ version = "1.0.6";
+ sha256 = "dd9333861386a6dff7ee76d12c9e3faae4231a18abf482db2f24ad1b0ff67068";
+ setupHaskellDepends = [ base Cabal haskell-gi ];
libraryHaskellDepends = [
base bytestring containers gi-gobject haskell-gi-base text
transformers
@@ -94659,6 +98175,7 @@ self: {
homepage = "https://github.com/haskell-gi/haskell-gi";
description = "GIRepository (gobject-introspection) bindings";
license = stdenv.lib.licenses.lgpl21;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {inherit (pkgs) gobjectIntrospection;};
"gi-glib" = callPackage
@@ -94680,16 +98197,19 @@ self: {
homepage = "https://github.com/haskell-gi/haskell-gi";
description = "GLib bindings";
license = stdenv.lib.licenses.lgpl21;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {inherit (pkgs) glib; inherit (pkgs) gobjectIntrospection;};
- "gi-glib_2_0_4" = callPackage
- ({ mkDerivation, base, bytestring, containers, glib
- , gobjectIntrospection, haskell-gi-base, text, transformers
+ "gi-glib_2_0_6" = callPackage
+ ({ mkDerivation, base, bytestring, Cabal, containers, glib
+ , gobjectIntrospection, haskell-gi, haskell-gi-base, text
+ , transformers
}:
mkDerivation {
pname = "gi-glib";
- version = "2.0.4";
- sha256 = "3015352ac2ebc49664c2a1618e16418985b09993f3ad20792e17121c9ab1fce7";
+ version = "2.0.6";
+ sha256 = "51d0f914fad2d0f36c19d0a4e39c5908ed106d5d400e9f04ded6ee36a26eabc5";
+ setupHaskellDepends = [ base Cabal haskell-gi ];
libraryHaskellDepends = [
base bytestring containers haskell-gi-base text transformers
];
@@ -94721,16 +98241,19 @@ self: {
homepage = "https://github.com/haskell-gi/haskell-gi";
description = "GObject bindings";
license = stdenv.lib.licenses.lgpl21;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {inherit (pkgs) glib; inherit (pkgs) gobjectIntrospection;};
- "gi-gobject_2_0_4" = callPackage
- ({ mkDerivation, base, bytestring, containers, gi-glib, glib
- , gobjectIntrospection, haskell-gi-base, text, transformers
+ "gi-gobject_2_0_6" = callPackage
+ ({ mkDerivation, base, bytestring, Cabal, containers, gi-glib, glib
+ , gobjectIntrospection, haskell-gi, haskell-gi-base, text
+ , transformers
}:
mkDerivation {
pname = "gi-gobject";
- version = "2.0.4";
- sha256 = "a177cf48261764f3ae2aaa41a900ef5d08b96eaa8813d112c2b7a64588b3ab0f";
+ version = "2.0.6";
+ sha256 = "2f2731932c3168e6239b206de266426e5f43a8e2ad2ed78e06fca97b0712e22c";
+ setupHaskellDepends = [ base Cabal haskell-gi ];
libraryHaskellDepends = [
base bytestring containers gi-glib haskell-gi-base text
transformers
@@ -94745,13 +98268,15 @@ self: {
}) {inherit (pkgs) glib; inherit (pkgs) gobjectIntrospection;};
"gi-gst" = callPackage
- ({ mkDerivation, base, bytestring, containers, gi-glib, gi-gobject
- , gstreamer, haskell-gi-base, text, transformers
+ ({ mkDerivation, base, bytestring, Cabal, containers, gi-glib
+ , gi-gobject, gstreamer, haskell-gi, haskell-gi-base, text
+ , transformers
}:
mkDerivation {
pname = "gi-gst";
- version = "1.0.4";
- sha256 = "6bf1d0d2e85e1c999d7e3ed14e9ff53f1f84ecf61555767db4e09499b95b025c";
+ version = "1.0.6";
+ sha256 = "5cc2ba47575c854bbc66ea37941c9efc53a962e3a611b9ca31d505ae9e9505ed";
+ setupHaskellDepends = [ base Cabal haskell-gi ];
libraryHaskellDepends = [
base bytestring containers gi-glib gi-gobject haskell-gi-base text
transformers
@@ -94761,17 +98286,19 @@ self: {
homepage = "https://github.com/haskell-gi/haskell-gi";
description = "GStreamer bindings";
license = stdenv.lib.licenses.lgpl21;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {inherit (pkgs) gstreamer;};
"gi-gstaudio" = callPackage
- ({ mkDerivation, base, bytestring, containers, gi-glib, gi-gobject
- , gi-gst, gi-gstbase, gst_plugins_base, haskell-gi-base, text
- , transformers
+ ({ mkDerivation, base, bytestring, Cabal, containers, gi-glib
+ , gi-gobject, gi-gst, gi-gstbase, gst_plugins_base, haskell-gi
+ , haskell-gi-base, text, transformers
}:
mkDerivation {
pname = "gi-gstaudio";
- version = "1.0.4";
- sha256 = "63af4a27bbbe5a20d8d4cf0c4c61f051056a52e99635c18105e792c5dc40e0ef";
+ version = "1.0.6";
+ sha256 = "470c68fd68c09df37d12efe93ed250024dea0cd0948eac578b8d1f6c6e24996d";
+ setupHaskellDepends = [ base Cabal haskell-gi ];
libraryHaskellDepends = [
base bytestring containers gi-glib gi-gobject gi-gst gi-gstbase
haskell-gi-base text transformers
@@ -94781,16 +98308,19 @@ self: {
homepage = "https://github.com/haskell-gi/haskell-gi";
description = "GStreamerAudio bindings";
license = stdenv.lib.licenses.lgpl21;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {inherit (pkgs) gst_plugins_base;};
"gi-gstbase" = callPackage
- ({ mkDerivation, base, bytestring, containers, gi-glib, gi-gobject
- , gi-gst, gst_plugins_base, haskell-gi-base, text, transformers
+ ({ mkDerivation, base, bytestring, Cabal, containers, gi-glib
+ , gi-gobject, gi-gst, gst_plugins_base, haskell-gi, haskell-gi-base
+ , text, transformers
}:
mkDerivation {
pname = "gi-gstbase";
- version = "1.0.4";
- sha256 = "ca2ed5d1ee65417f65062010d87d4a90525c7cbb76652b685d1de2f063fd96c3";
+ version = "1.0.6";
+ sha256 = "9130496376c4bbaa230b21a230fd3a4decd971328c9e6b6b90d4d9e78ebd97e2";
+ setupHaskellDepends = [ base Cabal haskell-gi ];
libraryHaskellDepends = [
base bytestring containers gi-glib gi-gobject gi-gst
haskell-gi-base text transformers
@@ -94800,17 +98330,19 @@ self: {
homepage = "https://github.com/haskell-gi/haskell-gi";
description = "GStreamerBase bindings";
license = stdenv.lib.licenses.lgpl21;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {inherit (pkgs) gst_plugins_base;};
"gi-gstvideo" = callPackage
- ({ mkDerivation, base, bytestring, containers, gi-glib, gi-gobject
- , gi-gst, gi-gstbase, gst_plugins_base, haskell-gi-base, text
- , transformers
+ ({ mkDerivation, base, bytestring, Cabal, containers, gi-glib
+ , gi-gobject, gi-gst, gi-gstbase, gst_plugins_base, haskell-gi
+ , haskell-gi-base, text, transformers
}:
mkDerivation {
pname = "gi-gstvideo";
- version = "1.0.4";
- sha256 = "cf02df311648bcedeb377ed386237d0f0695365d09d6be9ec6ae4f26ff74f894";
+ version = "1.0.6";
+ sha256 = "9bd777b6f49d516b63f550ff59c0a32768bf92f097ebec903f478ea3652872ae";
+ setupHaskellDepends = [ base Cabal haskell-gi ];
libraryHaskellDepends = [
base bytestring containers gi-glib gi-gobject gi-gst gi-gstbase
haskell-gi-base text transformers
@@ -94820,9 +98352,10 @@ self: {
homepage = "https://github.com/haskell-gi/haskell-gi";
description = "GStreamerVideo bindings";
license = stdenv.lib.licenses.lgpl21;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {inherit (pkgs) gst_plugins_base;};
- "gi-gtk_3_0_3" = callPackage
+ "gi-gtk" = callPackage
({ mkDerivation, base, bytestring, containers, gi-atk, gi-cairo
, gi-gdk, gi-gdkpixbuf, gi-gio, gi-glib, gi-gobject, gi-pango, gtk3
, haskell-gi, haskell-gi-base, text, transformers
@@ -94844,15 +98377,16 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {gtk3 = pkgs.gnome2.gtk;};
- "gi-gtk" = callPackage
- ({ mkDerivation, base, bytestring, containers, gi-atk, gi-cairo
- , gi-gdk, gi-gdkpixbuf, gi-gio, gi-glib, gi-gobject, gi-pango, gtk3
- , haskell-gi-base, text, transformers
+ "gi-gtk_3_0_6" = callPackage
+ ({ mkDerivation, base, bytestring, Cabal, containers, gi-atk
+ , gi-cairo, gi-gdk, gi-gdkpixbuf, gi-gio, gi-glib, gi-gobject
+ , gi-pango, gtk3, haskell-gi, haskell-gi-base, text, transformers
}:
mkDerivation {
pname = "gi-gtk";
- version = "3.0.4";
- sha256 = "a6527c34665a8d395ea529d44d97742f92f2bf1f55d97d9225e727e39e3ad158";
+ version = "3.0.6";
+ sha256 = "85a001a538a0657b548a5729c2b17ea2265d39b83af718069874eef77202574c";
+ setupHaskellDepends = [ base Cabal haskell-gi ];
libraryHaskellDepends = [
base bytestring containers gi-atk gi-cairo gi-gdk gi-gdkpixbuf
gi-gio gi-glib gi-gobject gi-pango haskell-gi-base text
@@ -94863,6 +98397,7 @@ self: {
homepage = "https://github.com/haskell-gi/haskell-gi";
description = "Gtk bindings";
license = stdenv.lib.licenses.lgpl21;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {gtk3 = pkgs.gnome2.gtk;};
"gi-gtk-hs" = callPackage
@@ -94872,26 +98407,29 @@ self: {
}:
mkDerivation {
pname = "gi-gtk-hs";
- version = "0.2.0.1";
- sha256 = "6d7d6011c0bf3150dd0328469a6bd5f459485c30d5b76bfe2a580f0b170413c7";
+ version = "0.3.1.0";
+ sha256 = "9dbf08bcecc1dfc3cee64073632410a6ece816ffa51fb6326b2c8c7c1ca44742";
libraryHaskellDepends = [
base base-compat containers gi-gdk gi-gdkpixbuf gi-glib gi-gobject
gi-gtk haskell-gi-base mtl text transformers
];
+ jailbreak = true;
homepage = "https://github.com/haskell-gi/gi-gtk-hs";
description = "A wrapper for gi-gtk, adding a few more idiomatic API parts on top";
license = stdenv.lib.licenses.lgpl21;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"gi-gtkosxapplication" = callPackage
- ({ mkDerivation, base, bytestring, containers, gi-gdkpixbuf
- , gi-gobject, gi-gtk, gtk-mac-integration-gtk3, haskell-gi-base
- , text, transformers
+ ({ mkDerivation, base, bytestring, Cabal, containers, gi-gdkpixbuf
+ , gi-gobject, gi-gtk, gtk-mac-integration-gtk3, haskell-gi
+ , haskell-gi-base, text, transformers
}:
mkDerivation {
pname = "gi-gtkosxapplication";
- version = "2.0.4";
- sha256 = "6c41278cdc0829ab06d83245250cd8c9192770e03d4916f2084ca2eb0d5c1b79";
+ version = "2.0.6";
+ sha256 = "e9ad5632649a9b3bb6452116a110e4aef2a332b9091bce411f9c169ade9b5141";
+ setupHaskellDepends = [ base Cabal haskell-gi ];
libraryHaskellDepends = [
base bytestring containers gi-gdkpixbuf gi-gobject gi-gtk
haskell-gi-base text transformers
@@ -94901,17 +98439,20 @@ self: {
homepage = "https://github.com/haskell-gi/haskell-gi";
description = "GtkosxApplication bindings";
license = stdenv.lib.licenses.lgpl21;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {gtk-mac-integration-gtk3 = null;};
"gi-gtksource" = callPackage
- ({ mkDerivation, base, bytestring, containers, gi-atk, gi-cairo
- , gi-gdk, gi-gdkpixbuf, gi-gio, gi-glib, gi-gobject, gi-gtk
- , gi-pango, gtksourceview, haskell-gi-base, text, transformers
+ ({ mkDerivation, base, bytestring, Cabal, containers, gi-atk
+ , gi-cairo, gi-gdk, gi-gdkpixbuf, gi-gio, gi-glib, gi-gobject
+ , gi-gtk, gi-pango, gtksourceview, haskell-gi, haskell-gi-base
+ , text, transformers
}:
mkDerivation {
pname = "gi-gtksource";
- version = "3.0.4";
- sha256 = "aa360eecff313dc03abe6d352f3ee237af5dd1b4df372fab0617fa84b35cadf9";
+ version = "3.0.6";
+ sha256 = "3d97242b370c3937ec34a969548ad968c9b8cc3176a665347adb5014bf2a87b7";
+ setupHaskellDepends = [ base Cabal haskell-gi ];
libraryHaskellDepends = [
base bytestring containers gi-atk gi-cairo gi-gdk gi-gdkpixbuf
gi-gio gi-glib gi-gobject gi-gtk gi-pango haskell-gi-base text
@@ -94922,54 +98463,61 @@ self: {
homepage = "https://github.com/haskell-gi/haskell-gi";
description = "GtkSource bindings";
license = stdenv.lib.licenses.lgpl21;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {inherit (pkgs.gnome) gtksourceview;};
"gi-javascriptcore" = callPackage
- ({ mkDerivation, base, bytestring, containers, haskell-gi-base
- , javascriptcoregtk, text, transformers
+ ({ mkDerivation, base, bytestring, containers, haskell-gi
+ , haskell-gi-base, javascriptcoregtk, text, transformers, webkitgtk
}:
mkDerivation {
pname = "gi-javascriptcore";
- version = "3.0.4";
- sha256 = "33de003d6ae4a8595f1b509618dcf83048ab0e0837b541d33d0610d7f6f6f641";
+ version = "3.0.3";
+ sha256 = "b2d01c9b72c4da8b2ebe28cc515a6ecbf0f1eed23519b5cabe3f7381872df974";
libraryHaskellDepends = [
- base bytestring containers haskell-gi-base text transformers
+ base bytestring containers haskell-gi haskell-gi-base text
+ transformers
];
- libraryPkgconfigDepends = [ javascriptcoregtk ];
+ libraryPkgconfigDepends = [ javascriptcoregtk webkitgtk ];
doHaddock = false;
+ preConfigure = "export HASKELL_GI_GIR_SEARCH_PATH=${webkitgtk}/share/gir-1.0";
homepage = "https://github.com/haskell-gi/haskell-gi";
description = "JavaScriptCore bindings";
license = stdenv.lib.licenses.lgpl21;
- }) {javascriptcoregtk = null;};
+ hydraPlatforms = [ "x86_64-darwin" ];
+ }) {javascriptcoregtk = null; inherit (pkgs) webkitgtk;};
- "gi-javascriptcore_4_0_4" = callPackage
- ({ mkDerivation, base, bytestring, containers, haskell-gi-base
- , javascriptcoregtk, text, transformers
+ "gi-javascriptcore_4_0_6" = callPackage
+ ({ mkDerivation, base, bytestring, Cabal, containers, haskell-gi
+ , haskell-gi-base, javascriptcoregtk, text, transformers, webkitgtk
}:
mkDerivation {
pname = "gi-javascriptcore";
- version = "4.0.4";
- sha256 = "408c500fea9217ddfe84bdd1ff4dfaabe5113def51f19a9e00da17574753a072";
+ version = "4.0.6";
+ sha256 = "50e289b13b10d4a7d1724a8bc5cab500611a0453d55743ec7decb91099c24146";
+ setupHaskellDepends = [ base Cabal haskell-gi ];
libraryHaskellDepends = [
base bytestring containers haskell-gi-base text transformers
];
- libraryPkgconfigDepends = [ javascriptcoregtk ];
+ libraryPkgconfigDepends = [ javascriptcoregtk webkitgtk ];
doHaddock = false;
+ preConfigure = "export HASKELL_GI_GIR_SEARCH_PATH=${webkitgtk}/share/gir-1.0";
homepage = "https://github.com/haskell-gi/haskell-gi";
description = "JavaScriptCore bindings";
license = stdenv.lib.licenses.lgpl21;
hydraPlatforms = stdenv.lib.platforms.none;
- }) {javascriptcoregtk = null;};
+ }) {javascriptcoregtk = null; inherit (pkgs) webkitgtk;};
"gi-notify" = callPackage
- ({ mkDerivation, base, bytestring, containers, gi-gdkpixbuf
- , gi-glib, gi-gobject, haskell-gi-base, libnotify, text
+ ({ mkDerivation, base, bytestring, Cabal, containers, gi-gdkpixbuf
+ , gi-glib, gi-gobject, haskell-gi, haskell-gi-base, libnotify, text
, transformers
}:
mkDerivation {
pname = "gi-notify";
- version = "0.7.4";
- sha256 = "ff72dd988345b970b5fb0258349cebd0178ddbf523389748e1abaf57651965c3";
+ version = "0.7.6";
+ sha256 = "285151350c4354d466c31cff6479913583803913d153d276c0dc76681d66656c";
+ setupHaskellDepends = [ base Cabal haskell-gi ];
libraryHaskellDepends = [
base bytestring containers gi-gdkpixbuf gi-glib gi-gobject
haskell-gi-base text transformers
@@ -94979,6 +98527,7 @@ self: {
homepage = "https://github.com/haskell-gi/haskell-gi";
description = "Libnotify bindings";
license = stdenv.lib.licenses.lgpl21;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {inherit (pkgs) libnotify;};
"gi-pango" = callPackage
@@ -95000,17 +98549,20 @@ self: {
homepage = "https://github.com/haskell-gi/haskell-gi";
description = "Pango bindings";
license = stdenv.lib.licenses.lgpl21;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {inherit (pkgs) gobjectIntrospection;
inherit (pkgs.gnome) pango;};
- "gi-pango_1_0_4" = callPackage
- ({ mkDerivation, base, bytestring, containers, gi-glib, gi-gobject
- , gobjectIntrospection, haskell-gi-base, pango, text, transformers
+ "gi-pango_1_0_6" = callPackage
+ ({ mkDerivation, base, bytestring, Cabal, containers, gi-glib
+ , gi-gobject, gobjectIntrospection, haskell-gi, haskell-gi-base
+ , pango, text, transformers
}:
mkDerivation {
pname = "gi-pango";
- version = "1.0.4";
- sha256 = "692d8d357d24f76f5d386d66f3f3be877f7cc72968c60d0b3f3309007b27dd22";
+ version = "1.0.6";
+ sha256 = "662c5e9df26fbe0e8238d033be49101fc78a0c6c802434f2de23f7c0c3d97c02";
+ setupHaskellDepends = [ base Cabal haskell-gi ];
libraryHaskellDepends = [
base bytestring containers gi-glib gi-gobject haskell-gi-base text
transformers
@@ -95026,13 +98578,15 @@ self: {
inherit (pkgs.gnome) pango;};
"gi-pangocairo" = callPackage
- ({ mkDerivation, base, bytestring, containers, gi-cairo, gi-glib
- , gi-gobject, gi-pango, haskell-gi-base, pango, text, transformers
+ ({ mkDerivation, base, bytestring, Cabal, containers, gi-cairo
+ , gi-glib, gi-gobject, gi-pango, haskell-gi, haskell-gi-base, pango
+ , text, transformers
}:
mkDerivation {
pname = "gi-pangocairo";
- version = "1.0.4";
- sha256 = "e75d3931e3c58f2be33783ac06aa87b9ada8ca6668c5d78e6c0b6fd638a234e6";
+ version = "1.0.6";
+ sha256 = "41409f273ad2a43e2965ee572814c1586c6f9fd25d8f41597ad4a8ff275d238d";
+ setupHaskellDepends = [ base Cabal haskell-gi ];
libraryHaskellDepends = [
base bytestring containers gi-cairo gi-glib gi-gobject gi-pango
haskell-gi-base text transformers
@@ -95042,16 +98596,19 @@ self: {
homepage = "https://github.com/haskell-gi/haskell-gi";
description = "PangoCairo bindings";
license = stdenv.lib.licenses.lgpl21;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {inherit (pkgs.gnome) pango;};
"gi-poppler" = callPackage
- ({ mkDerivation, base, bytestring, containers, gi-cairo, gi-gio
- , gi-glib, gi-gobject, haskell-gi-base, poppler, text, transformers
+ ({ mkDerivation, base, bytestring, Cabal, containers, gi-cairo
+ , gi-gio, gi-glib, gi-gobject, haskell-gi, haskell-gi-base, poppler
+ , text, transformers
}:
mkDerivation {
pname = "gi-poppler";
- version = "0.18.4";
- sha256 = "01bc646881b6275d22ef6633fb95dd5fc49c44738e7c1cc27284fceb4c8ca74d";
+ version = "0.18.6";
+ sha256 = "9c803e86d513a49dbcc70841c52bd0bc1f2c283f7d953c5b563e1ec04f20ae71";
+ setupHaskellDepends = [ base Cabal haskell-gi ];
libraryHaskellDepends = [
base bytestring containers gi-cairo gi-gio gi-glib gi-gobject
haskell-gi-base text transformers
@@ -95061,16 +98618,40 @@ self: {
homepage = "https://github.com/haskell-gi/haskell-gi";
description = "Poppler bindings";
license = stdenv.lib.licenses.lgpl21;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {inherit (pkgs) poppler;};
"gi-soup" = callPackage
({ mkDerivation, base, bytestring, containers, gi-gio, gi-glib
- , gi-gobject, haskell-gi-base, libsoup, text, transformers
+ , gi-gobject, haskell-gi, haskell-gi-base, libsoup, text
+ , transformers
}:
mkDerivation {
pname = "gi-soup";
- version = "2.4.4";
- sha256 = "8284732ddd001d87221992d47fd980d4629ac62e2460b3710a75926b1de5bce6";
+ version = "2.4.3";
+ sha256 = "ee786ad3b35b6468f53f3962611e5316a020bdf98d9b4050a598f7b45a575a4b";
+ libraryHaskellDepends = [
+ base bytestring containers gi-gio gi-glib gi-gobject haskell-gi
+ haskell-gi-base text transformers
+ ];
+ libraryPkgconfigDepends = [ libsoup ];
+ doHaddock = false;
+ homepage = "https://github.com/haskell-gi/haskell-gi";
+ description = "Libsoup bindings";
+ license = stdenv.lib.licenses.lgpl21;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {inherit (pkgs.gnome) libsoup;};
+
+ "gi-soup_2_4_6" = callPackage
+ ({ mkDerivation, base, bytestring, Cabal, containers, gi-gio
+ , gi-glib, gi-gobject, haskell-gi, haskell-gi-base, libsoup, text
+ , transformers
+ }:
+ mkDerivation {
+ pname = "gi-soup";
+ version = "2.4.6";
+ sha256 = "ecca7b24c9f45b0446a5f2aa43d1424c9e9c05fbb93d57e74d486729c4052dcd";
+ setupHaskellDepends = [ base Cabal haskell-gi ];
libraryHaskellDepends = [
base bytestring containers gi-gio gi-glib gi-gobject
haskell-gi-base text transformers
@@ -95080,17 +98661,19 @@ self: {
homepage = "https://github.com/haskell-gi/haskell-gi";
description = "Libsoup bindings";
license = stdenv.lib.licenses.lgpl21;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {inherit (pkgs.gnome) libsoup;};
"gi-vte" = callPackage
- ({ mkDerivation, base, bytestring, containers, gi-atk, gi-gdk
- , gi-gio, gi-glib, gi-gobject, gi-gtk, gi-pango, haskell-gi-base
- , text, transformers, vte
+ ({ mkDerivation, base, bytestring, Cabal, containers, gi-atk
+ , gi-gdk, gi-gio, gi-glib, gi-gobject, gi-gtk, gi-pango, haskell-gi
+ , haskell-gi-base, text, transformers, vte
}:
mkDerivation {
pname = "gi-vte";
- version = "2.91.4";
- sha256 = "82fcc4afa1044e3a9fa975f0950a6b46e16fb11934fefed23b9d14935d2f5259";
+ version = "2.91.6";
+ sha256 = "5976ada26222409159f618af13ac5b8adf40746ee97005ae03459fa79b22c904";
+ setupHaskellDepends = [ base Cabal haskell-gi ];
libraryHaskellDepends = [
base bytestring containers gi-atk gi-gdk gi-gio gi-glib gi-gobject
gi-gtk gi-pango haskell-gi-base text transformers
@@ -95100,18 +98683,43 @@ self: {
homepage = "https://github.com/haskell-gi/haskell-gi";
description = "Vte bindings";
license = stdenv.lib.licenses.lgpl21;
+ hydraPlatforms = [ "x86_64-darwin" ];
}) {inherit (pkgs.gnome) vte;};
"gi-webkit" = callPackage
({ mkDerivation, base, bytestring, containers, gi-atk, gi-cairo
, gi-gdk, gi-gdkpixbuf, gi-gio, gi-glib, gi-gobject, gi-gtk
- , gi-javascriptcore, gi-soup, haskell-gi-base, text, transformers
- , webkit
+ , gi-javascriptcore, gi-soup, haskell-gi, haskell-gi-base, text
+ , transformers, webkit
}:
mkDerivation {
pname = "gi-webkit";
- version = "3.0.4";
- sha256 = "0a2b689e9f8433d4da321be15f9bf488e57e652cbdb47288d3bfaef2e1a65134";
+ version = "3.0.3";
+ sha256 = "8652475bdd3bd713a2eb6ceb55c4ab81bf0939824d707dfe888e007c782fd216";
+ libraryHaskellDepends = [
+ base bytestring containers gi-atk gi-cairo gi-gdk gi-gdkpixbuf
+ gi-gio gi-glib gi-gobject gi-gtk gi-javascriptcore gi-soup
+ haskell-gi haskell-gi-base text transformers
+ ];
+ libraryPkgconfigDepends = [ webkit ];
+ doHaddock = false;
+ homepage = "https://github.com/haskell-gi/haskell-gi";
+ description = "WebKit bindings";
+ license = stdenv.lib.licenses.lgpl21;
+ hydraPlatforms = [ "x86_64-darwin" ];
+ }) {inherit (pkgs) webkit;};
+
+ "gi-webkit_3_0_6" = callPackage
+ ({ mkDerivation, base, bytestring, Cabal, containers, gi-atk
+ , gi-cairo, gi-gdk, gi-gdkpixbuf, gi-gio, gi-glib, gi-gobject
+ , gi-gtk, gi-javascriptcore, gi-soup, haskell-gi, haskell-gi-base
+ , text, transformers, webkit
+ }:
+ mkDerivation {
+ pname = "gi-webkit";
+ version = "3.0.6";
+ sha256 = "b6f97ee8164291fadb69e8aa1e087e9d07250a6d9ed5614629448f96b7044610";
+ setupHaskellDepends = [ base Cabal haskell-gi ];
libraryHaskellDepends = [
base bytestring containers gi-atk gi-cairo gi-gdk gi-gdkpixbuf
gi-gio gi-glib gi-gobject gi-gtk gi-javascriptcore gi-soup
@@ -95122,17 +98730,20 @@ self: {
homepage = "https://github.com/haskell-gi/haskell-gi";
description = "WebKit bindings";
license = stdenv.lib.licenses.lgpl21;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {inherit (pkgs) webkit;};
"gi-webkit2" = callPackage
- ({ mkDerivation, base, bytestring, containers, gi-atk, gi-cairo
- , gi-gdk, gi-gio, gi-glib, gi-gobject, gi-gtk, gi-javascriptcore
- , gi-soup, haskell-gi-base, text, transformers, webkit2gtk
+ ({ mkDerivation, base, bytestring, Cabal, containers, gi-atk
+ , gi-cairo, gi-gdk, gi-gio, gi-glib, gi-gobject, gi-gtk
+ , gi-javascriptcore, gi-soup, haskell-gi, haskell-gi-base, text
+ , transformers, webkit2gtk
}:
mkDerivation {
pname = "gi-webkit2";
- version = "4.0.4";
- sha256 = "3748f8b1d30683822b887527668ac7e87b879d72c2b4d1e2576d51c3dedf0d37";
+ version = "4.0.6";
+ sha256 = "6aa7e0c02ce4ff6686ee71ea956f5fd040d459a5a99957a066b49d938d00f9da";
+ setupHaskellDepends = [ base Cabal haskell-gi ];
libraryHaskellDepends = [
base bytestring containers gi-atk gi-cairo gi-gdk gi-gio gi-glib
gi-gobject gi-gtk gi-javascriptcore gi-soup haskell-gi-base text
@@ -95144,17 +98755,19 @@ self: {
homepage = "https://github.com/haskell-gi/haskell-gi";
description = "WebKit2 bindings";
license = stdenv.lib.licenses.lgpl21;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {webkit2gtk = null;};
"gi-webkit2webextension" = callPackage
- ({ mkDerivation, base, bytestring, containers, gi-gobject, gi-gtk
- , gi-javascriptcore, gi-soup, haskell-gi-base, text, transformers
- , webkit2gtk-web-extension
+ ({ mkDerivation, base, bytestring, Cabal, containers, gi-gobject
+ , gi-gtk, gi-javascriptcore, gi-soup, haskell-gi, haskell-gi-base
+ , text, transformers, webkit2gtk-web-extension
}:
mkDerivation {
pname = "gi-webkit2webextension";
- version = "4.0.4";
- sha256 = "afe4d27191c98d5db379a87953b680d6d8ed508b74a28c5bea0ac37ae5f78493";
+ version = "4.0.6";
+ sha256 = "c3ad70065775cb53c8164a4b9a573a8dfee535e5d0552e91c3cbc93e4b691076";
+ setupHaskellDepends = [ base Cabal haskell-gi ];
libraryHaskellDepends = [
base bytestring containers gi-gobject gi-gtk gi-javascriptcore
gi-soup haskell-gi-base text transformers
@@ -95165,8 +98778,29 @@ self: {
homepage = "https://github.com/haskell-gi/haskell-gi";
description = "WebKit2-WebExtension bindings";
license = stdenv.lib.licenses.lgpl21;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {webkit2gtk-web-extension = null;};
+ "giak" = callPackage
+ ({ mkDerivation, async, base, bytestring, Cabal, containers
+ , directory, extra, filemanip, filepath, mtl, process, semigroups
+ , stm, stm-chans, text, unix, wybor
+ }:
+ mkDerivation {
+ pname = "giak";
+ version = "0.1.0.1";
+ sha256 = "13cbbbec91cf23cc178843525c03cf5bba162842a8ddc4259ab3efdbe18b6073";
+ isLibrary = false;
+ isExecutable = true;
+ executableHaskellDepends = [
+ async base bytestring Cabal containers directory extra filemanip
+ filepath mtl process semigroups stm stm-chans text unix wybor
+ ];
+ homepage = "http://github.com/nmattia/giak";
+ description = "Fuzzy finder for cabal executables";
+ license = stdenv.lib.licenses.mit;
+ }) {};
+
"gimlh" = callPackage
({ mkDerivation, base, split }:
mkDerivation {
@@ -95314,13 +98948,14 @@ self: {
}) {system-glib = pkgs.glib;};
"gio" = callPackage
- ({ mkDerivation, array, base, bytestring, containers, glib, mtl
- , system-glib
+ ({ mkDerivation, array, base, bytestring, Cabal, containers, glib
+ , gtk2hs-buildtools, mtl, system-glib
}:
mkDerivation {
pname = "gio";
version = "0.13.3.0";
sha256 = "f20d17c56ee29cdd102234c00be1cdf0e5c12b7abe6c0a9723668a6f72a57417";
+ setupHaskellDepends = [ base Cabal gtk2hs-buildtools ];
libraryHaskellDepends = [
array base bytestring containers glib mtl
];
@@ -95478,14 +99113,11 @@ self: {
pname = "giphy-api";
version = "0.4.0.0";
sha256 = "bb2952f54232cead3e66350b514ca31aac511bf172be45115b98dd8777859876";
- isLibrary = true;
- isExecutable = true;
libraryHaskellDepends = [
aeson base containers http-api-data http-client http-client-tls
microlens microlens-th mtl network-uri servant servant-client text
transformers
];
- executableHaskellDepends = [ base network-uri text ];
testHaskellDepends = [
aeson base basic-prelude bytestring containers directory hspec lens
network-uri text
@@ -95533,6 +99165,7 @@ self: {
testHaskellDepends = [
base bytedump bytestring hourglass tasty tasty-quickcheck
];
+ doCheck = false;
homepage = "https://github.com/vincenthz/hit";
description = "Git operations in haskell";
license = stdenv.lib.licenses.bsd3;
@@ -95835,7 +99468,7 @@ self: {
"git-annex" = callPackage
({ mkDerivation, aeson, async, aws, base, blaze-builder
- , bloomfilter, bup, byteable, bytestring, case-insensitive
+ , bloomfilter, bup, byteable, bytestring, Cabal, case-insensitive
, clientsession, concurrent-output, conduit, conduit-extra
, containers, crypto-api, cryptonite, curl, data-default, DAV, dbus
, directory, disk-free-space, dlist, dns, edit-distance, esqueleto
@@ -95855,8 +99488,8 @@ self: {
}:
mkDerivation {
pname = "git-annex";
- version = "6.20160527";
- sha256 = "9482a13acd8b6c4cbe4f354243726e94689d0b3f516eabfbc78900e94ad67924";
+ version = "6.20160613";
+ sha256 = "595e1945ea42bdcd55fd6b6096cbdb64646f2391ad34eb9b45ab92190e1d5314";
configureFlags = [
"-fassistant" "-fcryptonite" "-fdbus" "-fdesktopnotify" "-fdns"
"-ffeed" "-finotify" "-fpairing" "-fproduction" "-fquvi" "-fs3"
@@ -95865,6 +99498,10 @@ self: {
];
isLibrary = false;
isExecutable = true;
+ setupHaskellDepends = [
+ base bytestring Cabal data-default directory exceptions filepath
+ hslogger IfElse MissingH process unix unix-compat
+ ];
executableHaskellDepends = [
aeson async aws base blaze-builder bloomfilter byteable bytestring
case-insensitive clientsession concurrent-output conduit
@@ -96289,6 +99926,7 @@ self: {
sha256 = "da5f7c8458321e039f8634cce7ce539bf5c0464e9487072ab79a68fa074d5aa8";
isLibrary = false;
isExecutable = true;
+ setupHaskellDepends = [ base hslogger MissingH ];
executableHaskellDepends = [
base bytestring containers directory exceptions filepath github
hslogger IfElse MissingH mtl network network-uri
@@ -96514,6 +100152,7 @@ self: {
base bytestring directory filepath hslogger HTTP mtl network
network-uri syb url utf8-string
];
+ jailbreak = true;
homepage = "http://gitit.net";
description = "Wiki using happstack, git or darcs, and pandoc";
license = "GPL";
@@ -97331,13 +100970,14 @@ self: {
}) {inherit (pkgs) glib;};
"glib" = callPackage
- ({ mkDerivation, base, bytestring, containers, glib, text
- , utf8-string
+ ({ mkDerivation, base, bytestring, Cabal, containers, glib
+ , gtk2hs-buildtools, text, utf8-string
}:
mkDerivation {
pname = "glib";
version = "0.13.4.0";
sha256 = "8bbc24b8a7f4de0fc02d60f12bf1b5154a151ffcad25964b65e958977100a0d9";
+ setupHaskellDepends = [ base Cabal gtk2hs-buildtools ];
libraryHaskellDepends = [
base bytestring containers text utf8-string
];
@@ -97399,8 +101039,8 @@ self: {
}:
mkDerivation {
pname = "gll";
- version = "0.3.0.10";
- sha256 = "48ebad1da940849343f359fd2ec1a6ed020b381f88a5e813213e20c7f9eba058";
+ version = "0.3.0.9";
+ sha256 = "4c5657403588a489d1a97ee2e85e9ed5e41e029a299918b59778f1e65dfde0e2";
libraryHaskellDepends = [
array base containers pretty regex-applicative text TypeCompose
];
@@ -97524,12 +101164,11 @@ self: {
}:
mkDerivation {
pname = "gloss";
- version = "1.10.1.1";
- sha256 = "a6c4e0391668688c0965e2e5eddff4abaebbcca62606a7b260942a863de34630";
+ version = "1.10.2.2";
+ sha256 = "d8a43a02c8b82481c9b33c3c71e007afca2fd98a3d048b1b4a161cdbd8fab707";
libraryHaskellDepends = [
base bmp bytestring containers ghc-prim gloss-rendering GLUT OpenGL
];
- jailbreak = true;
homepage = "http://gloss.ouroborus.net";
description = "Painless 2D vector graphics, animations and simulations";
license = stdenv.lib.licenses.mit;
@@ -97554,10 +101193,9 @@ self: {
({ mkDerivation, base, containers, ghc-prim, gloss }:
mkDerivation {
pname = "gloss-algorithms";
- version = "1.10.1.1";
- sha256 = "da385e6fa2cdca7ab3b6ce2397d24fac0055896609376c9a8c3acf193e908b0e";
+ version = "1.10.2.1";
+ sha256 = "ae4b966823ad5b3864b6cdb1b62e027e219d49c23e45d1ad2b6853454c65a32e";
libraryHaskellDepends = [ base containers ghc-prim gloss ];
- jailbreak = true;
homepage = "http://gloss.ouroborus.net";
description = "Data structures and algorithms for working with 2D graphics";
license = stdenv.lib.licenses.mit;
@@ -97598,8 +101236,8 @@ self: {
}:
mkDerivation {
pname = "gloss-examples";
- version = "1.10.1.1";
- sha256 = "a08f297c5a38e9d975ac4390c960d5095b58c77033285de744028f3855048c96";
+ version = "1.10.2.1";
+ sha256 = "b690a043d11d111a709a0ab6fb183a0f1618e61958e70853adf1e99914c8aa9e";
isLibrary = false;
isExecutable = true;
executableHaskellDepends = [
@@ -97607,7 +101245,6 @@ self: {
gloss-algorithms gloss-raster gloss-rendering random repa
repa-algorithms repa-io vector
];
- jailbreak = true;
homepage = "http://gloss.ouroborus.net";
description = "Examples using the gloss library";
license = stdenv.lib.licenses.mit;
@@ -97654,12 +101291,11 @@ self: {
}:
mkDerivation {
pname = "gloss-raster";
- version = "1.10.1.1";
- sha256 = "01e68842a6ef911be37556b92ae82786e298a70e86177b3b86472222ad1b01f2";
+ version = "1.10.2.1";
+ sha256 = "7485e0fca77a1ba40cb0064d9dcbb53624a40c0e5fb8124d3f077271d63262bb";
libraryHaskellDepends = [
base containers ghc-prim gloss gloss-rendering repa
];
- jailbreak = true;
homepage = "http://gloss.ouroborus.net";
description = "Parallel rendering of raster images";
license = stdenv.lib.licenses.mit;
@@ -97687,12 +101323,11 @@ self: {
({ mkDerivation, base, bmp, bytestring, containers, GLUT, OpenGL }:
mkDerivation {
pname = "gloss-rendering";
- version = "1.10.1.1";
- sha256 = "279ad168dc44e8432a6e7fb58b97c4514a2d0806806b3e7b71a159b87ace8c5c";
+ version = "1.10.3.1";
+ sha256 = "c39f51b8b026f717e9469716ec0afa17aa7804eb6794a3d0c3eb712b8d8404ba";
libraryHaskellDepends = [
base bmp bytestring containers GLUT OpenGL
];
- jailbreak = true;
description = "Gloss picture data types and rendering functions";
license = stdenv.lib.licenses.mit;
}) {};
@@ -97947,23 +101582,28 @@ self: {
}) {inherit (pkgs.gnome) gnome_vfs; gnome_vfs_module = null;};
"gnss-converters" = callPackage
- ({ mkDerivation, base, basic-prelude, binary-conduit, conduit
- , conduit-extra, lens, resourcet, rtcm, sbp, tasty, tasty-hunit
- , time
+ ({ mkDerivation, base, basic-prelude, binary-conduit, bytestring
+ , conduit, conduit-extra, extra, HUnit-approx, lens, resourcet
+ , rtcm, sbp, tasty, tasty-hunit, time, unordered-containers
}:
mkDerivation {
pname = "gnss-converters";
- version = "0.1.7";
- sha256 = "282402385403fad10b750146f28f41d447a77592ef23d94b287edf51b7336679";
+ version = "0.1.11";
+ sha256 = "30b908f69abc9fceb6b0b510ef764b9ae26020b7e6d1ffeaf7f6582b401c9542";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
- base basic-prelude conduit-extra lens rtcm sbp time
+ base basic-prelude conduit-extra extra lens rtcm sbp time
+ unordered-containers
];
executableHaskellDepends = [
base basic-prelude binary-conduit conduit conduit-extra resourcet
];
- testHaskellDepends = [ base basic-prelude tasty tasty-hunit ];
+ testHaskellDepends = [
+ base basic-prelude binary-conduit bytestring conduit conduit-extra
+ HUnit-approx lens resourcet sbp tasty tasty-hunit
+ unordered-containers
+ ];
homepage = "http://github.com/swift-nav/gnss-converters";
description = "GNSS Converters";
license = stdenv.lib.licenses.bsd3;
@@ -98018,8 +101658,6 @@ self: {
pname = "gnuplot";
version = "0.5.4.1";
sha256 = "fa54c95f5dad96e3af6a13429cf6852bffe97bd52bdd99bdce60ca9e78bee8f7";
- isLibrary = true;
- isExecutable = true;
libraryHaskellDepends = [
array base containers data-accessor data-accessor-transformers
deepseq filepath process temporary time transformers utility-ht
@@ -98195,23 +101833,23 @@ self: {
}) {};
"gogol" = callPackage
- ({ mkDerivation, aeson, base, bytestring, case-insensitive
- , cryptonite, data-default-class, directory, exceptions, filepath
- , gogol-core, http-client, http-conduit, http-media, http-types
- , lens, memory, monad-control, mtl, resourcet, text, time
- , transformers, transformers-base, unordered-containers, x509
- , x509-store
+ ({ mkDerivation, aeson, base, bytestring, case-insensitive, conduit
+ , conduit-extra, cryptonite, data-default-class, directory
+ , exceptions, filepath, gogol-core, http-client, http-conduit
+ , http-media, http-types, lens, memory, mime-types, monad-control
+ , mtl, resourcet, text, time, transformers, transformers-base
+ , unordered-containers, x509, x509-store
}:
mkDerivation {
pname = "gogol";
- version = "0.0.1";
- sha256 = "0e72e4cafcbf21db821f0c38f954baff9f7c5c530feb2f6709ac4848759e252f";
+ version = "0.1.0";
+ sha256 = "3bf4a133da2f9e5343025a272d04290a2d229d3429d748b2a49b9b29b85e398e";
libraryHaskellDepends = [
- aeson base bytestring case-insensitive cryptonite
- data-default-class directory exceptions filepath gogol-core
- http-client http-conduit http-media http-types lens memory
- monad-control mtl resourcet text time transformers
- transformers-base unordered-containers x509 x509-store
+ aeson base bytestring case-insensitive conduit conduit-extra
+ cryptonite data-default-class directory exceptions filepath
+ gogol-core http-client http-conduit http-media http-types lens
+ memory mime-types monad-control mtl resourcet text time
+ transformers transformers-base unordered-containers x509 x509-store
];
homepage = "https://github.com/brendanhay/gogol";
description = "Comprehensive Google Services SDK";
@@ -98223,8 +101861,8 @@ self: {
({ mkDerivation, base, gogol-core }:
mkDerivation {
pname = "gogol-adexchange-buyer";
- version = "0.0.1";
- sha256 = "3ae32fa142150010a668095978c340ab13f128d3819ce9e2c79be5f56305c854";
+ version = "0.1.0";
+ sha256 = "63a778a15a3bdb595e2c0ff46bbe35616891dfda687a8af520dbba219ff09d83";
libraryHaskellDepends = [ base gogol-core ];
homepage = "https://github.com/brendanhay/gogol";
description = "Google Ad Exchange Buyer SDK";
@@ -98236,8 +101874,8 @@ self: {
({ mkDerivation, base, gogol-core }:
mkDerivation {
pname = "gogol-adexchange-seller";
- version = "0.0.1";
- sha256 = "77f2a4c22cdfc407d35f3e59646d79653bd81ff6fa24335222bc6c603e0eadf9";
+ version = "0.1.0";
+ sha256 = "28c81ea7cc984534c445d3fa2278e1306370464e00194e844dc76b8e33a798cc";
libraryHaskellDepends = [ base gogol-core ];
homepage = "https://github.com/brendanhay/gogol";
description = "Google Ad Exchange Seller SDK";
@@ -98249,8 +101887,8 @@ self: {
({ mkDerivation, base, gogol-core }:
mkDerivation {
pname = "gogol-admin-datatransfer";
- version = "0.0.1";
- sha256 = "6143254e54c045a46afd4ecd70881510e87f24768360bd665ce928897b95c450";
+ version = "0.1.0";
+ sha256 = "195ab5e18d789959e559d9f7af4db757b5779cdb4b8e61f96bcb14b3fa4ad97b";
libraryHaskellDepends = [ base gogol-core ];
homepage = "https://github.com/brendanhay/gogol";
description = "Google Admin Data Transfer SDK";
@@ -98262,8 +101900,8 @@ self: {
({ mkDerivation, base, gogol-core }:
mkDerivation {
pname = "gogol-admin-directory";
- version = "0.0.1";
- sha256 = "1d8ff33bf3504f792e24e0a436149c1f100493467d07c8815381f7048576855d";
+ version = "0.1.0";
+ sha256 = "ce8882d955c7646cb9f2ece2a2827f4db0e44cc0d1af6a968e25ce9cf7cf4622";
libraryHaskellDepends = [ base gogol-core ];
homepage = "https://github.com/brendanhay/gogol";
description = "Google Admin Directory SDK";
@@ -98275,8 +101913,8 @@ self: {
({ mkDerivation, base, gogol-core }:
mkDerivation {
pname = "gogol-admin-emailmigration";
- version = "0.0.1";
- sha256 = "5d167cd5406e43ab99ac522de352a3c3dcc493104b262c6c8b2710c1a23cc3cd";
+ version = "0.1.0";
+ sha256 = "15b3cea41e4ba648e952adeea91467981e61d8a01b48b5231e78773d89c0da77";
libraryHaskellDepends = [ base gogol-core ];
homepage = "https://github.com/brendanhay/gogol";
description = "Google Email Migration API v2 SDK";
@@ -98288,8 +101926,8 @@ self: {
({ mkDerivation, base, gogol-core }:
mkDerivation {
pname = "gogol-admin-reports";
- version = "0.0.1";
- sha256 = "1868f5f7ba8e0e90e1c0a74718366fe297c281f8236ac496b1a722727ea4b82f";
+ version = "0.1.0";
+ sha256 = "ce4986e756a1f6d9b5bdf30c1775d32634455ed30c59dd914cc9615be68b785d";
libraryHaskellDepends = [ base gogol-core ];
homepage = "https://github.com/brendanhay/gogol";
description = "Google Admin Reports SDK";
@@ -98301,8 +101939,8 @@ self: {
({ mkDerivation, base, gogol-core }:
mkDerivation {
pname = "gogol-adsense";
- version = "0.0.1";
- sha256 = "2f3d17374c10b04546f455a351b798beae2969f49e4df3c975e4b1f74d9c11c8";
+ version = "0.1.0";
+ sha256 = "2ff7819e65e4378a6e8f875b0dbfe2bc0e839794c738fd3e004957e7a6ac7bde";
libraryHaskellDepends = [ base gogol-core ];
homepage = "https://github.com/brendanhay/gogol";
description = "Google AdSense Management SDK";
@@ -98314,8 +101952,8 @@ self: {
({ mkDerivation, base, gogol-core }:
mkDerivation {
pname = "gogol-adsense-host";
- version = "0.0.1";
- sha256 = "2bf0e157cb703e266efcfde3ca73c64c822c9a9c418be912b26604f8b2abba63";
+ version = "0.1.0";
+ sha256 = "64ff681bd7da5da1fff056678137c82811b3b91dfd6077722f30e5d531b32440";
libraryHaskellDepends = [ base gogol-core ];
homepage = "https://github.com/brendanhay/gogol";
description = "Google AdSense Host SDK";
@@ -98327,8 +101965,8 @@ self: {
({ mkDerivation, base, gogol-core }:
mkDerivation {
pname = "gogol-affiliates";
- version = "0.0.1";
- sha256 = "e49f76204abd9c3d070061c6825a8db2607b506fb125cbfab2663f3b78b99b27";
+ version = "0.1.0";
+ sha256 = "d0800cf733018b75665bbbb382e23f07a033474de438a4064771a541e39e200e";
libraryHaskellDepends = [ base gogol-core ];
homepage = "https://github.com/brendanhay/gogol";
description = "Google Affiliate Network SDK";
@@ -98340,8 +101978,8 @@ self: {
({ mkDerivation, base, gogol-core }:
mkDerivation {
pname = "gogol-analytics";
- version = "0.0.1";
- sha256 = "c72f26573b2530322675bc8cf34cf2b4ffdd8e7bf2ddcd3b175a51dbc4dc058c";
+ version = "0.1.0";
+ sha256 = "e88b9c6b13566cb2d2e1eee62c24b5ec14c0cb96577bbfd690a17f9810b24548";
libraryHaskellDepends = [ base gogol-core ];
homepage = "https://github.com/brendanhay/gogol";
description = "Google Analytics SDK";
@@ -98353,8 +101991,8 @@ self: {
({ mkDerivation, base, gogol-core }:
mkDerivation {
pname = "gogol-android-enterprise";
- version = "0.0.1";
- sha256 = "8ffd8352435e2133873322b20bce2c39b80539448bdff9290828602eea73650b";
+ version = "0.1.0";
+ sha256 = "b71ee2b74419f575c5c5142dd35a23e3762172f664f489f1fa27143e9b8deb9a";
libraryHaskellDepends = [ base gogol-core ];
homepage = "https://github.com/brendanhay/gogol";
description = "Google Play EMM SDK";
@@ -98366,8 +102004,8 @@ self: {
({ mkDerivation, base, gogol-core }:
mkDerivation {
pname = "gogol-android-publisher";
- version = "0.0.1";
- sha256 = "deacfbb32041843d93da6352ee9b75b879a235b2b5b4b08475dbd37179cb20c9";
+ version = "0.1.0";
+ sha256 = "0dbcf500379366d09e434a4f17790d53bf91a6214e2ff31d52216cd6be17437e";
libraryHaskellDepends = [ base gogol-core ];
homepage = "https://github.com/brendanhay/gogol";
description = "Google Play Developer SDK";
@@ -98379,8 +102017,8 @@ self: {
({ mkDerivation, base, gogol-core }:
mkDerivation {
pname = "gogol-appengine";
- version = "0.0.1";
- sha256 = "fde28097b13904a0fdca738f2e25aef6ee3c3e9c329d36f0904eb1f36914a523";
+ version = "0.1.0";
+ sha256 = "3aabc08737482e8f0ef9aa0bec136e827540a8de6f66fbf67a1d8e8167a7d523";
libraryHaskellDepends = [ base gogol-core ];
homepage = "https://github.com/brendanhay/gogol";
description = "Google App Engine Admin SDK";
@@ -98392,8 +102030,8 @@ self: {
({ mkDerivation, base, gogol-core }:
mkDerivation {
pname = "gogol-apps-activity";
- version = "0.0.1";
- sha256 = "f4d6ba2f8d19b9adba8fd80c3675bb446c505079e02623a81f308f2bfd6bd920";
+ version = "0.1.0";
+ sha256 = "f0cbd5847f751d7ed5e448d9d610986d390161ae37899d368107b0fb7c7a5704";
libraryHaskellDepends = [ base gogol-core ];
homepage = "https://github.com/brendanhay/gogol";
description = "Google Apps Activity SDK";
@@ -98405,8 +102043,8 @@ self: {
({ mkDerivation, base, gogol-core }:
mkDerivation {
pname = "gogol-apps-calendar";
- version = "0.0.1";
- sha256 = "853497acc5477ebf072c67bafb38f7ce9d77e8331a4ee3bf011a8c47a55cae3a";
+ version = "0.1.0";
+ sha256 = "4f7d33f1d43d4f9e63d6b1d2077b07280f68a260652fc2d9ed9e5653efa24886";
libraryHaskellDepends = [ base gogol-core ];
homepage = "https://github.com/brendanhay/gogol";
description = "Google Calendar SDK";
@@ -98418,8 +102056,8 @@ self: {
({ mkDerivation, base, gogol-core }:
mkDerivation {
pname = "gogol-apps-licensing";
- version = "0.0.1";
- sha256 = "952de2e69668e608e2afe4234dc3190b34eeb0b375c4578b89bece82161d502a";
+ version = "0.1.0";
+ sha256 = "a037cc3f62f65826e948113f24013349b71b561c97f0d06cd01f8448d136e481";
libraryHaskellDepends = [ base gogol-core ];
homepage = "https://github.com/brendanhay/gogol";
description = "Google Enterprise License Manager SDK";
@@ -98431,8 +102069,8 @@ self: {
({ mkDerivation, base, gogol-core }:
mkDerivation {
pname = "gogol-apps-reseller";
- version = "0.0.1";
- sha256 = "d92ca7bd951f1042e403b52f895b813a73b2ed08cb670b30a99c29f42179d875";
+ version = "0.1.0";
+ sha256 = "8abc6ee6aad16c27d7d7b37c53e9fcc5343d1d6cf50f4fe732fd436c429a71b5";
libraryHaskellDepends = [ base gogol-core ];
homepage = "https://github.com/brendanhay/gogol";
description = "Google Enterprise Apps Reseller SDK";
@@ -98444,8 +102082,8 @@ self: {
({ mkDerivation, base, gogol-core }:
mkDerivation {
pname = "gogol-apps-tasks";
- version = "0.0.1";
- sha256 = "e7af4dee84142c118cd677213e463cffaec46130c6fe32dad5fee0d02bc84825";
+ version = "0.1.0";
+ sha256 = "222060457d7c5b790cea90a74317f4a760ec7381f2561db9da0715e639e53b92";
libraryHaskellDepends = [ base gogol-core ];
homepage = "https://github.com/brendanhay/gogol";
description = "Google Tasks SDK";
@@ -98457,8 +102095,8 @@ self: {
({ mkDerivation, base, gogol-core }:
mkDerivation {
pname = "gogol-appstate";
- version = "0.0.1";
- sha256 = "334e67d5cbae7ac12d5ec00fb7c1a3d66fdbf9efaa8bd9812e090a6790b88e25";
+ version = "0.1.0";
+ sha256 = "63961d638f4716ea2f7a619aa21a5ca528159a514aa72d52c0a3ae54b9bd519a";
libraryHaskellDepends = [ base gogol-core ];
homepage = "https://github.com/brendanhay/gogol";
description = "Google App State SDK";
@@ -98470,8 +102108,8 @@ self: {
({ mkDerivation, base, gogol-core }:
mkDerivation {
pname = "gogol-autoscaler";
- version = "0.0.1";
- sha256 = "0337f8d46c6b52cce6752c0f5c0b58b39af43398ea2e76379ea4001355f08acc";
+ version = "0.1.0";
+ sha256 = "dd7e75cff814b08190add708a014790ab58b1ef8f9456a314e6ce732045f658f";
libraryHaskellDepends = [ base gogol-core ];
homepage = "https://github.com/brendanhay/gogol";
description = "Google Compute Engine Autoscaler SDK";
@@ -98483,8 +102121,8 @@ self: {
({ mkDerivation, base, gogol-core }:
mkDerivation {
pname = "gogol-bigquery";
- version = "0.0.1";
- sha256 = "d2c8db1661bd63ccd7e2bce741fa98aedc38ebeaaa006feaf437f9bff8b1e0b5";
+ version = "0.1.0";
+ sha256 = "b38065d1d83722b6d39124dc87856343ab11af936e9abb9db4efe55fbf5cf1c3";
libraryHaskellDepends = [ base gogol-core ];
homepage = "https://github.com/brendanhay/gogol";
description = "Google BigQuery SDK";
@@ -98496,8 +102134,8 @@ self: {
({ mkDerivation, base, gogol-core }:
mkDerivation {
pname = "gogol-billing";
- version = "0.0.1";
- sha256 = "00f95d2a7457ff464891d502589c66c3328796900ff94884004be9e22a645598";
+ version = "0.1.0";
+ sha256 = "b8da90f45e13fc4fc3d6b717d15805ad9a2431364c9f66be77f22635e76629dd";
libraryHaskellDepends = [ base gogol-core ];
homepage = "https://github.com/brendanhay/gogol";
description = "Google Cloud Billing SDK";
@@ -98509,8 +102147,8 @@ self: {
({ mkDerivation, base, gogol-core }:
mkDerivation {
pname = "gogol-blogger";
- version = "0.0.1";
- sha256 = "f201528036f3b1f66e4b246c6f23d58f25172c86c45d762c099ff3f9b650f15b";
+ version = "0.1.0";
+ sha256 = "ef7105faf8560416fb417b462fb81a21ace2b54983a6c43095f7859a2705277a";
libraryHaskellDepends = [ base gogol-core ];
homepage = "https://github.com/brendanhay/gogol";
description = "Google Blogger SDK";
@@ -98522,8 +102160,8 @@ self: {
({ mkDerivation, base, gogol-core }:
mkDerivation {
pname = "gogol-books";
- version = "0.0.1";
- sha256 = "ed6bba0c502edeb1f10c8d98bfd0d4127152e07967c705e63a64b86ec162d6c4";
+ version = "0.1.0";
+ sha256 = "f3bcdfcf2b5daf79effc5b6b137468af37e8640d63f65ba24929b414b4b1dc22";
libraryHaskellDepends = [ base gogol-core ];
homepage = "https://github.com/brendanhay/gogol";
description = "Google Books SDK";
@@ -98535,8 +102173,8 @@ self: {
({ mkDerivation, base, gogol-core }:
mkDerivation {
pname = "gogol-civicinfo";
- version = "0.0.1";
- sha256 = "0dfe03f89a34317e0c78abdbc84d3b7b105a14b78cc3c53b4407556d21e3a1bf";
+ version = "0.1.0";
+ sha256 = "0553bf55ec3e453e63e6050528614d6dfe5030413b19c27cdeebf273bae58be7";
libraryHaskellDepends = [ base gogol-core ];
homepage = "https://github.com/brendanhay/gogol";
description = "Google Civic Information SDK";
@@ -98548,8 +102186,8 @@ self: {
({ mkDerivation, base, gogol-core }:
mkDerivation {
pname = "gogol-classroom";
- version = "0.0.1";
- sha256 = "7e0e277670d037827a4b5fc6bb8fe0ede3cc9adffe116587ffbf6b318d6cdd21";
+ version = "0.1.0";
+ sha256 = "5b5715d5403614b588053a6341a24546eec8f9f9269c4e7fb08f3ec36da71134";
libraryHaskellDepends = [ base gogol-core ];
homepage = "https://github.com/brendanhay/gogol";
description = "Google Classroom SDK";
@@ -98557,12 +102195,24 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
+ "gogol-cloudmonitoring" = callPackage
+ ({ mkDerivation, base, gogol-core }:
+ mkDerivation {
+ pname = "gogol-cloudmonitoring";
+ version = "0.1.0";
+ sha256 = "c822932fd8ec45eb690ba197e4dfd08734d2288fe0ac55562649509d2d66f32b";
+ libraryHaskellDepends = [ base gogol-core ];
+ homepage = "https://github.com/brendanhay/gogol";
+ description = "Google Cloud Monitoring SDK";
+ license = "unknown";
+ }) {};
+
"gogol-cloudtrace" = callPackage
({ mkDerivation, base, gogol-core }:
mkDerivation {
pname = "gogol-cloudtrace";
- version = "0.0.1";
- sha256 = "b0a308a10e6f366aa72b79db52281b953a0239932ba2287d3971271a1d9d1a03";
+ version = "0.1.0";
+ sha256 = "98c84fc8086cc7defd131a5c99cf1cd307a15343e8ef3d8c038b3e752ceee2b2";
libraryHaskellDepends = [ base gogol-core ];
homepage = "https://github.com/brendanhay/gogol";
description = "Google Cloud Trace SDK";
@@ -98574,8 +102224,8 @@ self: {
({ mkDerivation, base, gogol-core }:
mkDerivation {
pname = "gogol-compute";
- version = "0.0.1";
- sha256 = "19444c4066b1ccb3900f893f05bfd35926701004a46aa4df2cd37976fa31eb19";
+ version = "0.1.0";
+ sha256 = "176bf2c9ae0701bba60f8a9f19d886125a983cd46c05241c4d98778f26926f3b";
libraryHaskellDepends = [ base gogol-core ];
homepage = "https://github.com/brendanhay/gogol";
description = "Google Compute Engine SDK";
@@ -98587,8 +102237,8 @@ self: {
({ mkDerivation, base, gogol-core }:
mkDerivation {
pname = "gogol-container";
- version = "0.0.1";
- sha256 = "a887cb1520240df322ba74b4d8a304209e2269afda16ff390870be3c18f29d1c";
+ version = "0.1.0";
+ sha256 = "e2030647c09d58c90a1770c7841d6a0dd2f9f36b19ed12ee2514c34ba9eb79ec";
libraryHaskellDepends = [ base gogol-core ];
homepage = "https://github.com/brendanhay/gogol";
description = "Google Container Engine SDK";
@@ -98597,24 +102247,25 @@ self: {
}) {};
"gogol-core" = callPackage
- ({ mkDerivation, aeson, attoparsec, base, bytestring
+ ({ mkDerivation, aeson, attoparsec, base, bifunctors, bytestring
, case-insensitive, conduit, dlist, exceptions, hashable
- , http-client, http-media, http-types, lens, resourcet, scientific
- , servant, tasty, text, time, unordered-containers
+ , http-api-data, http-client, http-media, http-types, lens, memory
+ , resourcet, scientific, servant, tasty, text, time
+ , unordered-containers
}:
mkDerivation {
pname = "gogol-core";
- version = "0.0.1";
- sha256 = "5baad8cb7a646cee9490916096ba71bf75168d7f807d79419d350813fc52ef9b";
- revision = "2";
- editedCabalFile = "71b667ad5dd6cc0cbb83311d78f3649ec08e59d50276a382c6b5074e86c8f58b";
+ version = "0.1.0";
+ sha256 = "2284f49106b41cc0ea81c848a5b5c31f0a7bcb2fc5c604519451238cbc3c01b0";
+ revision = "1";
+ editedCabalFile = "11dbfa4b8778e6b446b60ad1add04d9049169936f6f762d45a3e727e92d5a0b6";
libraryHaskellDepends = [
- aeson attoparsec base bytestring case-insensitive conduit dlist
- exceptions hashable http-client http-media http-types lens
- resourcet scientific servant text time unordered-containers
+ aeson attoparsec base bifunctors bytestring case-insensitive
+ conduit dlist exceptions hashable http-api-data http-client
+ http-media http-types lens memory resourcet scientific servant text
+ time unordered-containers
];
testHaskellDepends = [ base tasty ];
- jailbreak = true;
homepage = "https://github.com/brendanhay/gogol";
description = "Core data types and functionality for Gogol libraries";
license = "unknown";
@@ -98625,8 +102276,8 @@ self: {
({ mkDerivation, base, gogol-core }:
mkDerivation {
pname = "gogol-customsearch";
- version = "0.0.1";
- sha256 = "2d8ff2e0b9b881ed586a618dabcf4549c882f5cdfb2a0db3502ead23e5b56544";
+ version = "0.1.0";
+ sha256 = "3b264eed97aea0cb6ce97edc32ec66f962af7f4892f0ea6313413fba1512eee0";
libraryHaskellDepends = [ base gogol-core ];
homepage = "https://github.com/brendanhay/gogol";
description = "Google CustomSearch SDK";
@@ -98638,8 +102289,8 @@ self: {
({ mkDerivation, base, gogol-core }:
mkDerivation {
pname = "gogol-dataflow";
- version = "0.0.1";
- sha256 = "c7d6a8d393143b5d31a212fc0a97e9f36b421e9830072b62869b275fa50da19f";
+ version = "0.1.0";
+ sha256 = "ac82d506a5efd3934f08fde8cd77b4ca387ecbe77409ff4ba2dc657bb7834515";
libraryHaskellDepends = [ base gogol-core ];
homepage = "https://github.com/brendanhay/gogol";
description = "Google Dataflow SDK";
@@ -98647,12 +102298,24 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
+ "gogol-dataproc" = callPackage
+ ({ mkDerivation, base, gogol-core }:
+ mkDerivation {
+ pname = "gogol-dataproc";
+ version = "0.1.0";
+ sha256 = "d4a60220037b16e884499d0944aa6c858889aa322b48783249f7b6006d648b4f";
+ libraryHaskellDepends = [ base gogol-core ];
+ homepage = "https://github.com/brendanhay/gogol";
+ description = "Google Cloud Dataproc SDK";
+ license = "unknown";
+ }) {};
+
"gogol-datastore" = callPackage
({ mkDerivation, base, gogol-core }:
mkDerivation {
pname = "gogol-datastore";
- version = "0.0.1";
- sha256 = "e7d9cf74351dcb5455ea3dcd543096faa69bfb0fee5e34213dbe9c3b13341905";
+ version = "0.1.0";
+ sha256 = "346888db283ed3ff3ffad7310891cd33d230dfe98234ceb006d9b7aea28b5ea4";
libraryHaskellDepends = [ base gogol-core ];
homepage = "https://github.com/brendanhay/gogol";
description = "Google Cloud Datastore SDK";
@@ -98664,8 +102327,8 @@ self: {
({ mkDerivation, base, gogol-core }:
mkDerivation {
pname = "gogol-debugger";
- version = "0.0.1";
- sha256 = "42106728da6d66ce926e607f110e34c730deda08460c1d712075b74c4c0f5472";
+ version = "0.1.0";
+ sha256 = "2f70ed92ff0edd99e7a2e24a00e546a79c1e082f79f97ffbd48b6a24c0f061da";
libraryHaskellDepends = [ base gogol-core ];
homepage = "https://github.com/brendanhay/gogol";
description = "Google Cloud Debugger SDK";
@@ -98677,8 +102340,8 @@ self: {
({ mkDerivation, base, gogol-core }:
mkDerivation {
pname = "gogol-deploymentmanager";
- version = "0.0.1";
- sha256 = "7c135257c4408bc68204bc44867f2dc608c3c2e0d23d9825663f4df744b02c32";
+ version = "0.1.0";
+ sha256 = "a3f03570dc6c3d0d678dd4a98d993a0daf8dfa8151fb75b572d372e7b2f881fb";
libraryHaskellDepends = [ base gogol-core ];
homepage = "https://github.com/brendanhay/gogol";
description = "Google Cloud Deployment Manager SDK";
@@ -98690,8 +102353,8 @@ self: {
({ mkDerivation, base, gogol-core }:
mkDerivation {
pname = "gogol-dfareporting";
- version = "0.0.1";
- sha256 = "da9ded766d253ae199bbc8481b16ebee41d143dc28ce639893320c60ac30ca11";
+ version = "0.1.0";
+ sha256 = "3c42ecab212babf6ff6355f8f0083216897dcf344d26e22d9743c14794466625";
libraryHaskellDepends = [ base gogol-core ];
homepage = "https://github.com/brendanhay/gogol";
description = "Google DCM/DFA Reporting And Trafficking SDK";
@@ -98703,8 +102366,8 @@ self: {
({ mkDerivation, base, gogol-core }:
mkDerivation {
pname = "gogol-discovery";
- version = "0.0.1";
- sha256 = "3f25c64ece94a996c96e66fd2520d8a01f7b41c735ddb42e8f83e83d073eee13";
+ version = "0.1.0";
+ sha256 = "f8f107dedc76a4aeeb6e18874a79e0d6fcb9e0212953b2ff89d1770466f629ac";
libraryHaskellDepends = [ base gogol-core ];
homepage = "https://github.com/brendanhay/gogol";
description = "Google APIs Discovery Service SDK";
@@ -98716,8 +102379,8 @@ self: {
({ mkDerivation, base, gogol-core }:
mkDerivation {
pname = "gogol-dns";
- version = "0.0.1";
- sha256 = "e1d840e711ff29da3dd9f448dcebd45259118f53bb57e793ef69cfe015c28eb8";
+ version = "0.1.0";
+ sha256 = "d07e3fb4f8cdcd079a80509ffe7300b300679900d8234e8833152fd83d378b40";
libraryHaskellDepends = [ base gogol-core ];
homepage = "https://github.com/brendanhay/gogol";
description = "Google Cloud DNS SDK";
@@ -98729,8 +102392,8 @@ self: {
({ mkDerivation, base, gogol-core }:
mkDerivation {
pname = "gogol-doubleclick-bids";
- version = "0.0.1";
- sha256 = "4854269786c5bbbc4ecd49473b1b7c63854db3ffb45b9df6e38b5f6a6bcbf2ae";
+ version = "0.1.0";
+ sha256 = "0ac3d6be06ae897c9dd59fde3cc160708a04f0b1853749df5186a60077590fd5";
libraryHaskellDepends = [ base gogol-core ];
homepage = "https://github.com/brendanhay/gogol";
description = "Google DoubleClick Bid Manager SDK";
@@ -98742,8 +102405,8 @@ self: {
({ mkDerivation, base, gogol-core }:
mkDerivation {
pname = "gogol-doubleclick-search";
- version = "0.0.1";
- sha256 = "4c4daeb8277e635ca04de5849607c8de8f2b85ef9271c398ad9fcd3e09da2e7c";
+ version = "0.1.0";
+ sha256 = "2ed70d962d5c1ca189682a9ec22af0a903ebe08223ffd6d4b9abff414ea239db";
libraryHaskellDepends = [ base gogol-core ];
homepage = "https://github.com/brendanhay/gogol";
description = "Google DoubleClick Search SDK";
@@ -98755,8 +102418,8 @@ self: {
({ mkDerivation, base, gogol-core }:
mkDerivation {
pname = "gogol-drive";
- version = "0.0.1";
- sha256 = "fb3aeda3acf1b43a8fce9abaf69f314b31a5a0b27c8592bfcd644f43ee612268";
+ version = "0.1.0";
+ sha256 = "7cccab1d269aa3ee5d6276ff78c86f29974f85418148a15a13d195ac7fd29ca3";
libraryHaskellDepends = [ base gogol-core ];
homepage = "https://github.com/brendanhay/gogol";
description = "Google Drive SDK";
@@ -98764,12 +102427,24 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
+ "gogol-firebase-rules" = callPackage
+ ({ mkDerivation, base, gogol-core }:
+ mkDerivation {
+ pname = "gogol-firebase-rules";
+ version = "0.1.0";
+ sha256 = "b3f5483c339b0bc5882fdfeb49865d3b13f2c1d61dc7f4e46e25ccc651af2c74";
+ libraryHaskellDepends = [ base gogol-core ];
+ homepage = "https://github.com/brendanhay/gogol";
+ description = "Google Firebase Rules SDK";
+ license = "unknown";
+ }) {};
+
"gogol-fitness" = callPackage
({ mkDerivation, base, gogol-core }:
mkDerivation {
pname = "gogol-fitness";
- version = "0.0.1";
- sha256 = "80c90e5bffbfbe5a16df83e8b367bfa9363c94924617a7a7fb78ad4fda29e6c5";
+ version = "0.1.0";
+ sha256 = "486f83148db7c98021f81c9eff1d2e5adea532246adb9627cc0b824aeedda6cd";
libraryHaskellDepends = [ base gogol-core ];
homepage = "https://github.com/brendanhay/gogol";
description = "Google Fitness SDK";
@@ -98781,8 +102456,8 @@ self: {
({ mkDerivation, base, gogol-core }:
mkDerivation {
pname = "gogol-fonts";
- version = "0.0.1";
- sha256 = "33e2bec3a8f4c7b42a88f006e1adc8142eeba87e0b73ef21fddca7ec5e182cd9";
+ version = "0.1.0";
+ sha256 = "b87b347f22f13e7fd0e809841b4b075bc62169318575b59a0a3a4ff979b41dc9";
libraryHaskellDepends = [ base gogol-core ];
homepage = "https://github.com/brendanhay/gogol";
description = "Google Fonts Developer SDK";
@@ -98794,8 +102469,8 @@ self: {
({ mkDerivation, base, gogol-core }:
mkDerivation {
pname = "gogol-freebasesearch";
- version = "0.0.1";
- sha256 = "ed60a48d748fba875ab7de31b52d69cf1396934f7ace0630248f25b3938292b9";
+ version = "0.1.0";
+ sha256 = "668e8e58a7830a391c8bcd1836436bb0adf606017a71d94a6aef638fe078e33c";
libraryHaskellDepends = [ base gogol-core ];
homepage = "https://github.com/brendanhay/gogol";
description = "Google Freebase Search SDK";
@@ -98807,8 +102482,8 @@ self: {
({ mkDerivation, base, gogol-core }:
mkDerivation {
pname = "gogol-fusiontables";
- version = "0.0.1";
- sha256 = "24106717a51ab367400cfd23cac41dbca269a34101ee0df7e3af6da4e37bd29b";
+ version = "0.1.0";
+ sha256 = "2473bf1d25ae2cbe2af0c454f6dcb20765ab652502770327e4b0be6b72994ff1";
libraryHaskellDepends = [ base gogol-core ];
homepage = "https://github.com/brendanhay/gogol";
description = "Google Fusion Tables SDK";
@@ -98820,8 +102495,8 @@ self: {
({ mkDerivation, base, gogol-core }:
mkDerivation {
pname = "gogol-games";
- version = "0.0.1";
- sha256 = "58a9f71c8c7c78e5221501feff255f8bbecf7d2afd84208d0eaf2fa53e0a29c6";
+ version = "0.1.0";
+ sha256 = "0b20a0a057942b5b99b1060c01c6042017d1db5e3cb49e44a8bf95cd5389ffd6";
libraryHaskellDepends = [ base gogol-core ];
homepage = "https://github.com/brendanhay/gogol";
description = "Google Play Game Services SDK";
@@ -98833,8 +102508,8 @@ self: {
({ mkDerivation, base, gogol-core }:
mkDerivation {
pname = "gogol-games-configuration";
- version = "0.0.1";
- sha256 = "c9a4575a80119969d71a1b14ceb8788ed3b38429176888868717fbe9e7d50af2";
+ version = "0.1.0";
+ sha256 = "8f27ec3b23e704b6cd9d33d4bf41fa336098ef2d06edfc7482daa734ae2aa937";
libraryHaskellDepends = [ base gogol-core ];
homepage = "https://github.com/brendanhay/gogol";
description = "Google Play Game Services Publishing SDK";
@@ -98846,8 +102521,8 @@ self: {
({ mkDerivation, base, gogol-core }:
mkDerivation {
pname = "gogol-games-management";
- version = "0.0.1";
- sha256 = "de22f2fdcc5a65a335d3844670cb3da61017b282a7fbf4